{ "cells": [ { "cell_type": "markdown", "metadata": { "collapsed": false, "deletable": true, "editable": true, "scrolled": true }, "source": [ "# Clustergrammer Widget\n", "\n", "## Gene Expression Example\n", "This example shows how to visualize a matrix of gene expression data saved as a tab-separated-file (e.g. [rc_two_cats.txt](https://github.com/MaayanLab/clustergrammer-widget/blob/master/rc_two_cats.txt)) using the Clustergrammer interactive widget (see the Clustergrammer Jupyter Widget [Documentation](http://clustergrammer.readthedocs.io/clustergrammer_widget.html) for more information)." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false, "deletable": true, "editable": true }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f4bb764377504f0ab222a363ffc11b82" } }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# import clustergrammer_widgets and initialize network object\n", "from clustergrammer_widget import *\n", "net = Network()\n", "\n", "# load matrix file\n", "net.load_file('rc_two_cats.txt')\n", "\n", "# cluster using default parameters\n", "net.make_clust()\n", "\n", "# make interactive widget\n", "clustergrammer_widget(network=net.widget())" ] }, { "cell_type": "markdown", "metadata": { "deletable": true, "editable": true }, "source": [ "## Interactive Features\n", "* zoom/pan\n", "* reorder rows and columns using buttons or by double-clicking row/column/category names\n", "* interactively perform dimensionality reduction (and re-clustering) using row-filter sliders (e.g. filter rows based on variance)\n", "* identify clusters of varying sizes using the interactive row and column dendrograms \n", "* export cluster names or crop matrix to clusters using the dendrogram and dendrogram crop buttons\n", "* search for rows using the search box\n", "* crop the matrix using the brush cropping tool in the sidebar\n", "* take a PNG/SVG snapshot or download a TSV file snapshot of the matrix using the sidebar icons\n", "\n", "## Biollogy-specific Features\n", "Clustergrammer widget has biology-specific features that are activated when rows are given as official gene symbols:\n", "* mouseover gene (row) name to show full name and description (information provided by [Harmonizome](http://amp.pharm.mssm.edu/Harmonizome/))\n", "* find biological information specific to your gene list with enrichment analysis from [Enrichr](http://amp.pharm.mssm.edu/Enrichr/)\n", "\n", "# General Purpose Pandas DataFrame Viewer\n", "Clustergrammer can also be used as a general purpose Pandas dataframe viewer. This example generates a dataframe with random data and visualizes it with Clustergrammer widget:" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true, "deletable": true, "editable": true }, "outputs": [], "source": [ "import numpy as np\n", "import pandas as pd\n", "\n", "# generate random matrix\n", "num_rows = 500\n", "num_cols = 10\n", "np.random.seed(seed=100)\n", "mat = np.random.rand(num_rows, num_cols)\n", "\n", "# make row and col labels\n", "rows = range(num_rows)\n", "cols = range(num_cols)\n", "rows = [str(i) for i in rows]\n", "cols = [str(i) for i in cols]\n", "\n", "# make dataframe \n", "df = pd.DataFrame(data=mat, columns=cols, index=rows)" ] }, { "cell_type": "markdown", "metadata": { "deletable": true, "editable": true }, "source": [ "Initialize the network object, load the dataframe, hierarchically cluster the rows and columns using default parameters, and finally visualize using clustergrammer_widget." ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false, "deletable": true, "editable": true }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "82581f540899409bb231f534c68d2a2b" } }, "metadata": {}, "output_type": "display_data" } ], "source": [ "net = Network()\n", "net.load_df(df)\n", "net.make_clust()\n", "clustergrammer_widget(network=net.widget())" ] }, { "cell_type": "markdown", "metadata": { "deletable": true, "editable": true }, "source": [ "# Installation\n", "Clustergrammer widget is built using the [ipywidgets](https://github.com/ipython/ipywidgets) framework (using the [cookie cutter](https://github.com/jupyter/widget-cookiecutter) template) and can be installed (with pip) and enabled using the following commands:\n", "\n", " pip install clustergrammer_widget\n", " jupyter nbextension enable --py --sys-prefix widgetsnbextension\n", " jupyter nbextension enable --py --sys-prefix clustergrammer_widget\n", " \n", "See the clustergrammer_widget [GitHub](https://github.com/MaayanLab/clustergrammer-widget) for more information. \n", "\n", "# nbviewer\n", "Interactive widgets can also be rendered using Jupyter's [nbviewer](http://nbviewer.jupyter.org/) by using the 'Save Notebook with Widgets' action from the Widgets menu in the notebook (see ipywidgets [documents](http://ipywidgets.readthedocs.io/en/latest/embedding.html#rendering-interactive-widgets-on-nbviewer)). This notebook is being rendered by nbviewer using the Github [repo](https://github.com/MaayanLab/clustergrammer-widget).\n", "\n", "# Clustergrammer Web-app and Libraries\n", "The Clustergrammer project can also be used through:\n", "* a web application: http://amp.pharm.mssm.edu/clustergrammer/ \n", "* and as JavaScript (front-end) and Python (back-end) libraries by developers: [clustergrammer.js](https://github.com/MaayanLab/clustergrammer) and [clustergrammer.py](https://github.com/MaayanLab/clustergrammer-py)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true, "deletable": true, "editable": true }, "outputs": [], "source": [] } ], "metadata": { "anaconda-cloud": {}, "kernelspec": { "display_name": "Python [Root]", "language": "python", "name": "Python [Root]" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.12" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "7bce8a49e87646f4b3086d27494b175e": { "model_module": "jupyter-js-widgets", "model_module_version": "*", "model_name": "LayoutModel", "state": { "_model_module_version": "*", "_view_module_version": "*" } }, "82581f540899409bb231f534c68d2a2b": { "model_module": "clustergrammer_widget", "model_module_version": "*", "model_name": "hello_model", "state": { "_dom_classes": [], "_model_module_version": "*", "_view_module_version": "*", "layout": "IPY_MODEL_7bce8a49e87646f4b3086d27494b175e", "msg_throttle": 1, "network": "{\"row_nodes\": [{\"group\": [213.0, 94.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 213, \"rank\": 134, \"ini\": 500, \"rankvar\": 296}, {\"group\": [277.0, 118.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 276, \"rank\": 191, \"ini\": 499, \"rankvar\": 465}, {\"group\": [333.0, 140.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 332, \"rank\": 88, \"ini\": 498, \"rankvar\": 424}, {\"group\": [283.0, 120.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 281, \"rank\": 280, \"ini\": 497, \"rankvar\": 462}, {\"group\": [92.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"4\", \"clust\": 91, \"rank\": 242, \"ini\": 496, \"rankvar\": 217}, {\"group\": [132.0, 62.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"5\", \"clust\": 129, \"rank\": 144, \"ini\": 495, \"rankvar\": 293}, {\"group\": [381.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 381, \"rank\": 291, \"ini\": 494, \"rankvar\": 207}, {\"group\": [48.0, 27.0, 12.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 48, \"rank\": 238, \"ini\": 493, \"rankvar\": 371}, {\"group\": [216.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 217, \"rank\": 326, \"ini\": 492, \"rankvar\": 178}, {\"group\": [144.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 145, \"rank\": 86, \"ini\": 491, \"rankvar\": 26}, {\"group\": [310.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"10\", \"clust\": 309, \"rank\": 493, \"ini\": 490, \"rankvar\": 169}, {\"group\": [107.0, 54.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"11\", \"clust\": 106, \"rank\": 180, \"ini\": 489, \"rankvar\": 380}, {\"group\": [362.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"12\", \"clust\": 361, \"rank\": 116, \"ini\": 488, \"rankvar\": 9}, {\"group\": [193.0, 88.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"13\", \"clust\": 188, \"rank\": 296, \"ini\": 487, \"rankvar\": 499}, {\"group\": [51.0, 29.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"14\", \"clust\": 50, \"rank\": 228, \"ini\": 486, \"rankvar\": 382}, {\"group\": [432.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"15\", \"clust\": 432, \"rank\": 130, \"ini\": 485, \"rankvar\": 5}, {\"group\": [467.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"16\", \"clust\": 466, \"rank\": 385, \"ini\": 484, \"rankvar\": 45}, {\"group\": [58.0, 34.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"17\", \"clust\": 57, \"rank\": 148, \"ini\": 483, \"rankvar\": 466}, {\"group\": [311.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"18\", \"clust\": 310, \"rank\": 372, \"ini\": 482, \"rankvar\": 113}, {\"group\": [227.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"19\", \"clust\": 228, \"rank\": 440, \"ini\": 481, \"rankvar\": 368}, {\"group\": [116.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"20\", \"clust\": 115, \"rank\": 279, \"ini\": 480, \"rankvar\": 406}, {\"group\": [396.0, 159.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"21\", \"clust\": 396, \"rank\": 430, \"ini\": 479, \"rankvar\": 62}, {\"group\": [474.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"22\", \"clust\": 472, \"rank\": 424, \"ini\": 478, \"rankvar\": 228}, {\"group\": [497.0, 190.0, 51.0, 14.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"23\", \"clust\": 498, \"rank\": 6, \"ini\": 477, \"rankvar\": 396}, {\"group\": [215.0, 94.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"24\", \"clust\": 212, \"rank\": 322, \"ini\": 476, \"rankvar\": 143}, {\"group\": [433.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"25\", \"clust\": 433, \"rank\": 479, \"ini\": 475, \"rankvar\": 75}, {\"group\": [121.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"26\", \"clust\": 118, \"rank\": 307, \"ini\": 474, \"rankvar\": 199}, {\"group\": [130.0, 62.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"27\", \"clust\": 130, \"rank\": 328, \"ini\": 473, \"rankvar\": 431}, {\"group\": [279.0, 119.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"28\", \"clust\": 278, \"rank\": 401, \"ini\": 472, \"rankvar\": 439}, {\"group\": [448.0, 176.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"29\", \"clust\": 447, \"rank\": 73, \"ini\": 471, \"rankvar\": 247}, {\"group\": [13.0, 10.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"30\", \"clust\": 12, \"rank\": 40, \"ini\": 470, \"rankvar\": 324}, {\"group\": [434.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"31\", \"clust\": 434, \"rank\": 168, \"ini\": 469, \"rankvar\": 142}, {\"group\": [29.0, 17.0, 9.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"32\", \"clust\": 29, \"rank\": 37, \"ini\": 468, \"rankvar\": 377}, {\"group\": [352.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"33\", \"clust\": 351, \"rank\": 426, \"ini\": 467, \"rankvar\": 238}, {\"group\": [224.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"34\", \"clust\": 224, \"rank\": 447, \"ini\": 466, \"rankvar\": 46}, {\"group\": [275.0, 116.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"35\", \"clust\": 273, \"rank\": 41, \"ini\": 465, \"rankvar\": 286}, {\"group\": [456.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"36\", \"clust\": 451, \"rank\": 448, \"ini\": 464, \"rankvar\": 407}, {\"group\": [80.0, 42.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"37\", \"clust\": 77, \"rank\": 78, \"ini\": 463, \"rankvar\": 183}, {\"group\": [146.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"38\", \"clust\": 144, \"rank\": 131, \"ini\": 462, \"rankvar\": 177}, {\"group\": [414.0, 167.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"39\", \"clust\": 412, \"rank\": 30, \"ini\": 461, \"rankvar\": 60}, {\"group\": [488.0, 185.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"40\", \"clust\": 488, \"rank\": 413, \"ini\": 460, \"rankvar\": 253}, {\"group\": [290.0, 123.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"41\", \"clust\": 289, \"rank\": 475, \"ini\": 459, \"rankvar\": 155}, {\"group\": [87.0, 45.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"42\", \"clust\": 86, \"rank\": 337, \"ini\": 458, \"rankvar\": 274}, {\"group\": [39.0, 23.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"43\", \"clust\": 31, \"rank\": 72, \"ini\": 457, \"rankvar\": 365}, {\"group\": [226.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"44\", \"clust\": 223, \"rank\": 402, \"ini\": 456, \"rankvar\": 102}, {\"group\": [380.0, 154.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"45\", \"clust\": 376, \"rank\": 178, \"ini\": 455, \"rankvar\": 493}, {\"group\": [99.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"46\", \"clust\": 98, \"rank\": 85, \"ini\": 454, \"rankvar\": 300}, {\"group\": [50.0, 28.0, 12.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"47\", \"clust\": 47, \"rank\": 172, \"ini\": 453, \"rankvar\": 467}, {\"group\": [27.0, 16.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"48\", \"clust\": 26, \"rank\": 190, \"ini\": 452, \"rankvar\": 497}, {\"group\": [322.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"49\", \"clust\": 321, \"rank\": 282, \"ini\": 451, \"rankvar\": 41}, {\"group\": [32.0, 19.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"50\", \"clust\": 33, \"rank\": 83, \"ini\": 450, \"rankvar\": 25}, {\"group\": [83.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"51\", \"clust\": 82, \"rank\": 173, \"ini\": 449, \"rankvar\": 356}, {\"group\": [100.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"52\", \"clust\": 99, \"rank\": 222, \"ini\": 448, \"rankvar\": 355}, {\"group\": [415.0, 168.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"53\", \"clust\": 411, \"rank\": 25, \"ini\": 447, \"rankvar\": 80}, {\"group\": [300.0, 126.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"54\", \"clust\": 296, \"rank\": 109, \"ini\": 446, \"rankvar\": 257}, {\"group\": [262.0, 111.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"55\", \"clust\": 259, \"rank\": 269, \"ini\": 445, \"rankvar\": 427}, {\"group\": [96.0, 48.0, 19.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"56\", \"clust\": 96, \"rank\": 52, \"ini\": 444, \"rankvar\": 126}, {\"group\": [31.0, 18.0, 9.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"57\", \"clust\": 28, \"rank\": 108, \"ini\": 443, \"rankvar\": 264}, {\"group\": [219.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"58\", \"clust\": 215, \"rank\": 234, \"ini\": 442, \"rankvar\": 326}, {\"group\": [37.0, 22.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"59\", \"clust\": 37, \"rank\": 459, \"ini\": 441, \"rankvar\": 359}, {\"group\": [263.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"60\", \"clust\": 262, \"rank\": 405, \"ini\": 440, \"rankvar\": 290}, {\"group\": [339.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"61\", \"clust\": 339, \"rank\": 441, \"ini\": 439, \"rankvar\": 74}, {\"group\": [20.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"62\", \"clust\": 22, \"rank\": 304, \"ini\": 438, \"rankvar\": 362}, {\"group\": [294.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"63\", \"clust\": 293, \"rank\": 410, \"ini\": 437, \"rankvar\": 312}, {\"group\": [307.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"64\", \"clust\": 307, \"rank\": 444, \"ini\": 436, \"rankvar\": 31}, {\"group\": [171.0, 78.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"65\", \"clust\": 168, \"rank\": 342, \"ini\": 435, \"rankvar\": 22}, {\"group\": [284.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"66\", \"clust\": 285, \"rank\": 487, \"ini\": 434, \"rankvar\": 64}, {\"group\": [469.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"67\", \"clust\": 469, \"rank\": 420, \"ini\": 433, \"rankvar\": 120}, {\"group\": [233.0, 99.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"68\", \"clust\": 235, \"rank\": 224, \"ini\": 432, \"rankvar\": 14}, {\"group\": [422.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"69\", \"clust\": 421, \"rank\": 368, \"ini\": 431, \"rankvar\": 428}, {\"group\": [459.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"70\", \"clust\": 458, \"rank\": 400, \"ini\": 430, \"rankvar\": 434}, {\"group\": [169.0, 78.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"71\", \"clust\": 169, \"rank\": 457, \"ini\": 429, \"rankvar\": 92}, {\"group\": [245.0, 103.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"72\", \"clust\": 244, \"rank\": 165, \"ini\": 428, \"rankvar\": 270}, {\"group\": [341.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"73\", \"clust\": 338, \"rank\": 383, \"ini\": 427, \"rankvar\": 51}, {\"group\": [89.0, 46.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"74\", \"clust\": 89, \"rank\": 264, \"ini\": 426, \"rankvar\": 96}, {\"group\": [495.0, 188.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"75\", \"clust\": 494, \"rank\": 35, \"ini\": 425, \"rankvar\": 98}, {\"group\": [428.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"76\", \"clust\": 429, \"rank\": 419, \"ini\": 424, \"rankvar\": 67}, {\"group\": [238.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"77\", \"clust\": 238, \"rank\": 250, \"ini\": 423, \"rankvar\": 123}, {\"group\": [7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"78\", \"clust\": 3, \"rank\": 126, \"ini\": 422, \"rankvar\": 294}, {\"group\": [371.0, 149.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"79\", \"clust\": 372, \"rank\": 406, \"ini\": 421, \"rankvar\": 43}, {\"group\": [126.0, 60.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"80\", \"clust\": 125, \"rank\": 351, \"ini\": 420, \"rankvar\": 496}, {\"group\": [475.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"81\", \"clust\": 471, \"rank\": 292, \"ini\": 419, \"rankvar\": 144}, {\"group\": [491.0, 186.0, 49.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"82\", \"clust\": 491, \"rank\": 32, \"ini\": 418, \"rankvar\": 303}, {\"group\": [328.0, 136.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"83\", \"clust\": 325, \"rank\": 329, \"ini\": 417, \"rankvar\": 229}, {\"group\": [436.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"84\", \"clust\": 431, \"rank\": 271, \"ini\": 416, \"rankvar\": 369}, {\"group\": [276.0, 117.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"85\", \"clust\": 272, \"rank\": 10, \"ini\": 415, \"rankvar\": 288}, {\"group\": [406.0, 163.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"86\", \"clust\": 406, \"rank\": 226, \"ini\": 414, \"rankvar\": 128}, {\"group\": [296.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"87\", \"clust\": 297, \"rank\": 220, \"ini\": 413, \"rankvar\": 131}, {\"group\": [67.0, 38.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"88\", \"clust\": 67, \"rank\": 102, \"ini\": 412, \"rankvar\": 105}, {\"group\": [342.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"89\", \"clust\": 341, \"rank\": 470, \"ini\": 411, \"rankvar\": 148}, {\"group\": [386.0, 157.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"90\", \"clust\": 386, \"rank\": 51, \"ini\": 410, \"rankvar\": 93}, {\"group\": [152.0, 69.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"91\", \"clust\": 151, \"rank\": 127, \"ini\": 409, \"rankvar\": 161}, {\"group\": [211.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"92\", \"clust\": 208, \"rank\": 95, \"ini\": 408, \"rankvar\": 66}, {\"group\": [471.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"93\", \"clust\": 468, \"rank\": 411, \"ini\": 407, \"rankvar\": 447}, {\"group\": [498.0, 191.0, 51.0, 14.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"94\", \"clust\": 499, \"rank\": 53, \"ini\": 406, \"rankvar\": 381}, {\"group\": [135.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"95\", \"clust\": 135, \"rank\": 454, \"ini\": 405, \"rankvar\": 411}, {\"group\": [212.0, 93.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"96\", \"clust\": 207, \"rank\": 436, \"ini\": 404, \"rankvar\": 453}, {\"group\": [125.0, 59.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"97\", \"clust\": 117, \"rank\": 93, \"ini\": 403, \"rankvar\": 421}, {\"group\": [72.0, 40.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"98\", \"clust\": 71, \"rank\": 96, \"ini\": 402, \"rankvar\": 227}, {\"group\": [44.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"99\", \"clust\": 45, \"rank\": 357, \"ini\": 401, \"rankvar\": 430}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"100\", \"clust\": 1, \"rank\": 167, \"ini\": 400, \"rankvar\": 456}, {\"group\": [499.0, 192.0, 52.0, 14.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"101\", \"clust\": 497, \"rank\": 5, \"ini\": 399, \"rankvar\": 268}, {\"group\": [492.0, 186.0, 49.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"102\", \"clust\": 492, \"rank\": 38, \"ini\": 398, \"rankvar\": 352}, {\"group\": [101.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"103\", \"clust\": 100, \"rank\": 80, \"ini\": 397, \"rankvar\": 260}, {\"group\": [437.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"104\", \"clust\": 436, \"rank\": 485, \"ini\": 396, \"rankvar\": 19}, {\"group\": [286.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"105\", \"clust\": 287, \"rank\": 374, \"ini\": 395, \"rankvar\": 325}, {\"group\": [97.0, 49.0, 19.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"106\", \"clust\": 97, \"rank\": 50, \"ini\": 394, \"rankvar\": 179}, {\"group\": [482.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"107\", \"clust\": 482, \"rank\": 497, \"ini\": 393, \"rankvar\": 15}, {\"group\": [323.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"108\", \"clust\": 322, \"rank\": 335, \"ini\": 392, \"rankvar\": 267}, {\"group\": [182.0, 83.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"109\", \"clust\": 181, \"rank\": 147, \"ini\": 391, \"rankvar\": 241}, {\"group\": [304.0, 128.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"110\", \"clust\": 301, \"rank\": 321, \"ini\": 390, \"rankvar\": 425}, {\"group\": [450.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"111\", \"clust\": 449, \"rank\": 274, \"ini\": 389, \"rankvar\": 289}, {\"group\": [435.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"112\", \"clust\": 435, \"rank\": 452, \"ini\": 388, \"rankvar\": 165}, {\"group\": [452.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"113\", \"clust\": 454, \"rank\": 481, \"ini\": 387, \"rankvar\": 438}, {\"group\": [418.0, 170.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"114\", \"clust\": 417, \"rank\": 119, \"ini\": 386, \"rankvar\": 194}, {\"group\": [465.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"115\", \"clust\": 464, \"rank\": 203, \"ini\": 385, \"rankvar\": 30}, {\"group\": [133.0, 63.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"116\", \"clust\": 132, \"rank\": 128, \"ini\": 384, \"rankvar\": 378}, {\"group\": [405.0, 162.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"117\", \"clust\": 401, \"rank\": 55, \"ini\": 383, \"rankvar\": 302}, {\"group\": [163.0, 75.0, 26.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"118\", \"clust\": 162, \"rank\": 59, \"ini\": 382, \"rankvar\": 321}, {\"group\": [53.0, 30.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"119\", \"clust\": 53, \"rank\": 107, \"ini\": 381, \"rankvar\": 77}, {\"group\": [17.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"120\", \"clust\": 14, \"rank\": 33, \"ini\": 380, \"rankvar\": 158}, {\"group\": [321.0, 134.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"121\", \"clust\": 316, \"rank\": 268, \"ini\": 379, \"rankvar\": 90}, {\"group\": [85.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"122\", \"clust\": 84, \"rank\": 371, \"ini\": 378, \"rankvar\": 216}, {\"group\": [3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"123\", \"clust\": 0, \"rank\": 184, \"ini\": 377, \"rankvar\": 498}, {\"group\": [78.0, 42.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"124\", \"clust\": 78, \"rank\": 62, \"ini\": 376, \"rankvar\": 107}, {\"group\": [288.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"125\", \"clust\": 284, \"rank\": 290, \"ini\": 375, \"rankvar\": 485}, {\"group\": [340.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"126\", \"clust\": 340, \"rank\": 453, \"ini\": 374, \"rankvar\": 59}, {\"group\": [108.0, 54.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"127\", \"clust\": 107, \"rank\": 15, \"ini\": 373, \"rankvar\": 27}, {\"group\": [167.0, 76.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"128\", \"clust\": 165, \"rank\": 251, \"ini\": 372, \"rankvar\": 372}, {\"group\": [157.0, 73.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"129\", \"clust\": 156, \"rank\": 188, \"ini\": 371, \"rankvar\": 351}, {\"group\": [485.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"130\", \"clust\": 485, \"rank\": 449, \"ini\": 370, \"rankvar\": 222}, {\"group\": [464.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"131\", \"clust\": 460, \"rank\": 156, \"ini\": 369, \"rankvar\": 205}, {\"group\": [237.0, 101.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"132\", \"clust\": 230, \"rank\": 283, \"ini\": 368, \"rankvar\": 479}, {\"group\": [18.0, 12.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"133\", \"clust\": 18, \"rank\": 42, \"ini\": 367, \"rankvar\": 374}, {\"group\": [289.0, 122.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"134\", \"clust\": 280, \"rank\": 132, \"ini\": 366, \"rankvar\": 197}, {\"group\": [25.0, 15.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"135\", \"clust\": 24, \"rank\": 174, \"ini\": 365, \"rankvar\": 384}, {\"group\": [331.0, 139.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"136\", \"clust\": 330, \"rank\": 192, \"ini\": 364, \"rankvar\": 329}, {\"group\": [103.0, 52.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"137\", \"clust\": 102, \"rank\": 14, \"ini\": 363, \"rankvar\": 48}, {\"group\": [14.0, 10.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"138\", \"clust\": 13, \"rank\": 79, \"ini\": 362, \"rankvar\": 348}, {\"group\": [350.0, 144.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"139\", \"clust\": 348, \"rank\": 391, \"ini\": 361, \"rankvar\": 449}, {\"group\": [175.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"140\", \"clust\": 174, \"rank\": 121, \"ini\": 360, \"rankvar\": 157}, {\"group\": [251.0, 106.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"141\", \"clust\": 251, \"rank\": 151, \"ini\": 359, \"rankvar\": 323}, {\"group\": [69.0, 38.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"142\", \"clust\": 66, \"rank\": 64, \"ini\": 358, \"rankvar\": 318}, {\"group\": [91.0, 46.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"143\", \"clust\": 88, \"rank\": 169, \"ini\": 357, \"rankvar\": 104}, {\"group\": [363.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"144\", \"clust\": 362, \"rank\": 379, \"ini\": 356, \"rankvar\": 47}, {\"group\": [30.0, 17.0, 9.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"145\", \"clust\": 30, \"rank\": 66, \"ini\": 355, \"rankvar\": 452}, {\"group\": [60.0, 35.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"146\", \"clust\": 61, \"rank\": 446, \"ini\": 354, \"rankvar\": 138}, {\"group\": [189.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"147\", \"clust\": 191, \"rank\": 183, \"ini\": 353, \"rankvar\": 388}, {\"group\": [389.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"148\", \"clust\": 389, \"rank\": 235, \"ini\": 352, \"rankvar\": 129}, {\"group\": [348.0, 144.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"149\", \"clust\": 349, \"rank\": 272, \"ini\": 351, \"rankvar\": 298}, {\"group\": [256.0, 108.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"150\", \"clust\": 253, \"rank\": 365, \"ini\": 350, \"rankvar\": 394}, {\"group\": [383.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"151\", \"clust\": 383, \"rank\": 13, \"ini\": 349, \"rankvar\": 187}, {\"group\": [81.0, 43.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"152\", \"clust\": 80, \"rank\": 161, \"ini\": 348, \"rankvar\": 305}, {\"group\": [55.0, 31.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"153\", \"clust\": 52, \"rank\": 11, \"ini\": 347, \"rankvar\": 154}, {\"group\": [265.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"154\", \"clust\": 264, \"rank\": 267, \"ini\": 346, \"rankvar\": 159}, {\"group\": [447.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"155\", \"clust\": 443, \"rank\": 125, \"ini\": 345, \"rankvar\": 280}, {\"group\": [285.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"156\", \"clust\": 286, \"rank\": 248, \"ini\": 344, \"rankvar\": 73}, {\"group\": [179.0, 81.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"157\", \"clust\": 179, \"rank\": 330, \"ini\": 343, \"rankvar\": 494}, {\"group\": [353.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"158\", \"clust\": 352, \"rank\": 422, \"ini\": 342, \"rankvar\": 127}, {\"group\": [431.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"159\", \"clust\": 427, \"rank\": 332, \"ini\": 341, \"rankvar\": 246}, {\"group\": [165.0, 76.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"160\", \"clust\": 166, \"rank\": 186, \"ini\": 340, \"rankvar\": 347}, {\"group\": [401.0, 160.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"161\", \"clust\": 398, \"rank\": 89, \"ini\": 339, \"rankvar\": 101}, {\"group\": [457.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"162\", \"clust\": 456, \"rank\": 84, \"ini\": 338, \"rankvar\": 234}, {\"group\": [42.0, 25.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"163\", \"clust\": 41, \"rank\": 110, \"ini\": 337, \"rankvar\": 186}, {\"group\": [66.0, 37.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"164\", \"clust\": 63, \"rank\": 113, \"ini\": 336, \"rankvar\": 83}, {\"group\": [271.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"165\", \"clust\": 270, \"rank\": 462, \"ini\": 335, \"rankvar\": 58}, {\"group\": [458.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"166\", \"clust\": 457, \"rank\": 43, \"ini\": 334, \"rankvar\": 38}, {\"group\": [470.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"167\", \"clust\": 470, \"rank\": 464, \"ini\": 333, \"rankvar\": 56}, {\"group\": [222.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"168\", \"clust\": 221, \"rank\": 204, \"ini\": 332, \"rankvar\": 0}, {\"group\": [449.0, 176.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"169\", \"clust\": 448, \"rank\": 314, \"ini\": 331, \"rankvar\": 220}, {\"group\": [15.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"170\", \"clust\": 15, \"rank\": 77, \"ini\": 330, \"rankvar\": 306}, {\"group\": [407.0, 163.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"171\", \"clust\": 407, \"rank\": 213, \"ini\": 329, \"rankvar\": 441}, {\"group\": [253.0, 107.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"172\", \"clust\": 250, \"rank\": 7, \"ini\": 328, \"rankvar\": 86}, {\"group\": [172.0, 79.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"173\", \"clust\": 172, \"rank\": 384, \"ini\": 327, \"rankvar\": 236}, {\"group\": [109.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"174\", \"clust\": 109, \"rank\": 369, \"ini\": 326, \"rankvar\": 443}, {\"group\": [26.0, 15.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"175\", \"clust\": 25, \"rank\": 343, \"ini\": 325, \"rankvar\": 203}, {\"group\": [305.0, 129.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"176\", \"clust\": 304, \"rank\": 49, \"ini\": 324, \"rankvar\": 153}, {\"group\": [190.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"177\", \"clust\": 192, \"rank\": 36, \"ini\": 323, \"rankvar\": 132}, {\"group\": [74.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"178\", \"clust\": 73, \"rank\": 181, \"ini\": 322, \"rankvar\": 133}, {\"group\": [84.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"179\", \"clust\": 83, \"rank\": 176, \"ini\": 321, \"rankvar\": 240}, {\"group\": [412.0, 167.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"180\", \"clust\": 413, \"rank\": 366, \"ini\": 320, \"rankvar\": 192}, {\"group\": [387.0, 157.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"181\", \"clust\": 387, \"rank\": 266, \"ini\": 319, \"rankvar\": 349}, {\"group\": [76.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"182\", \"clust\": 75, \"rank\": 460, \"ini\": 318, \"rankvar\": 460}, {\"group\": [105.0, 53.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"183\", \"clust\": 104, \"rank\": 240, \"ini\": 317, \"rankvar\": 176}, {\"group\": [68.0, 38.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"184\", \"clust\": 68, \"rank\": 253, \"ini\": 316, \"rankvar\": 175}, {\"group\": [319.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"185\", \"clust\": 319, \"rank\": 207, \"ini\": 315, \"rankvar\": 263}, {\"group\": [86.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"186\", \"clust\": 85, \"rank\": 193, \"ini\": 314, \"rankvar\": 370}, {\"group\": [139.0, 65.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"187\", \"clust\": 134, \"rank\": 54, \"ini\": 313, \"rankvar\": 285}, {\"group\": [334.0, 140.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"188\", \"clust\": 333, \"rank\": 179, \"ini\": 312, \"rankvar\": 124}, {\"group\": [59.0, 34.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"189\", \"clust\": 58, \"rank\": 241, \"ini\": 311, \"rankvar\": 476}, {\"group\": [326.0, 136.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"190\", \"clust\": 326, \"rank\": 443, \"ini\": 310, \"rankvar\": 442}, {\"group\": [196.0, 89.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"191\", \"clust\": 193, \"rank\": 209, \"ini\": 309, \"rankvar\": 409}, {\"group\": [114.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"192\", \"clust\": 113, \"rank\": 159, \"ini\": 308, \"rankvar\": 386}, {\"group\": [23.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"193\", \"clust\": 20, \"rank\": 0, \"ini\": 307, \"rankvar\": 17}, {\"group\": [478.0, 182.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"194\", \"clust\": 475, \"rank\": 289, \"ini\": 306, \"rankvar\": 391}, {\"group\": [335.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"195\", \"clust\": 334, \"rank\": 451, \"ini\": 305, \"rankvar\": 314}, {\"group\": [220.0, 96.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"196\", \"clust\": 219, \"rank\": 117, \"ini\": 304, \"rankvar\": 214}, {\"group\": [370.0, 148.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"197\", \"clust\": 367, \"rank\": 364, \"ini\": 303, \"rankvar\": 317}, {\"group\": [206.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"198\", \"clust\": 205, \"rank\": 466, \"ini\": 302, \"rankvar\": 94}, {\"group\": [140.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"199\", \"clust\": 139, \"rank\": 298, \"ini\": 301, \"rankvar\": 252}, {\"group\": [6.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"200\", \"clust\": 4, \"rank\": 101, \"ini\": 300, \"rankvar\": 484}, {\"group\": [62.0, 35.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"201\", \"clust\": 60, \"rank\": 480, \"ini\": 299, \"rankvar\": 292}, {\"group\": [298.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"202\", \"clust\": 299, \"rank\": 68, \"ini\": 298, \"rankvar\": 36}, {\"group\": [202.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"203\", \"clust\": 201, \"rank\": 133, \"ini\": 297, \"rankvar\": 301}, {\"group\": [443.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"204\", \"clust\": 440, \"rank\": 273, \"ini\": 296, \"rankvar\": 112}, {\"group\": [199.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"205\", \"clust\": 199, \"rank\": 57, \"ini\": 295, \"rankvar\": 256}, {\"group\": [249.0, 105.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"206\", \"clust\": 248, \"rank\": 175, \"ini\": 294, \"rankvar\": 487}, {\"group\": [148.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"207\", \"clust\": 147, \"rank\": 373, \"ini\": 293, \"rankvar\": 164}, {\"group\": [94.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"208\", \"clust\": 93, \"rank\": 189, \"ini\": 292, \"rankvar\": 231}, {\"group\": [70.0, 39.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"209\", \"clust\": 69, \"rank\": 333, \"ini\": 291, \"rankvar\": 42}, {\"group\": [416.0, 169.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"210\", \"clust\": 415, \"rank\": 323, \"ini\": 290, \"rankvar\": 402}, {\"group\": [118.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"211\", \"clust\": 120, \"rank\": 417, \"ini\": 289, \"rankvar\": 152}, {\"group\": [187.0, 86.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"212\", \"clust\": 186, \"rank\": 91, \"ini\": 288, \"rankvar\": 221}, {\"group\": [267.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"213\", \"clust\": 266, \"rank\": 478, \"ini\": 287, \"rankvar\": 33}, {\"group\": [409.0, 165.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"214\", \"clust\": 409, \"rank\": 118, \"ini\": 286, \"rankvar\": 188}, {\"group\": [460.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"215\", \"clust\": 459, \"rank\": 98, \"ini\": 285, \"rankvar\": 206}, {\"group\": [128.0, 61.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"216\", \"clust\": 127, \"rank\": 67, \"ini\": 284, \"rankvar\": 34}, {\"group\": [430.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"217\", \"clust\": 428, \"rank\": 47, \"ini\": 283, \"rankvar\": 8}, {\"group\": [120.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"218\", \"clust\": 119, \"rank\": 415, \"ini\": 282, \"rankvar\": 413}, {\"group\": [56.0, 32.0, 14.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"219\", \"clust\": 55, \"rank\": 2, \"ini\": 281, \"rankvar\": 44}, {\"group\": [131.0, 62.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"220\", \"clust\": 131, \"rank\": 24, \"ini\": 280, \"rankvar\": 1}, {\"group\": [218.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"221\", \"clust\": 216, \"rank\": 438, \"ini\": 279, \"rankvar\": 291}, {\"group\": [337.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"222\", \"clust\": 336, \"rank\": 214, \"ini\": 278, \"rankvar\": 385}, {\"group\": [150.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"223\", \"clust\": 149, \"rank\": 399, \"ini\": 277, \"rankvar\": 55}, {\"group\": [266.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"224\", \"clust\": 265, \"rank\": 474, \"ini\": 276, \"rankvar\": 489}, {\"group\": [28.0, 16.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"225\", \"clust\": 27, \"rank\": 87, \"ini\": 275, \"rankvar\": 433}, {\"group\": [312.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"226\", \"clust\": 311, \"rank\": 106, \"ini\": 274, \"rankvar\": 11}, {\"group\": [63.0, 36.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"227\", \"clust\": 59, \"rank\": 82, \"ini\": 273, \"rankvar\": 473}, {\"group\": [344.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"228\", \"clust\": 343, \"rank\": 334, \"ini\": 272, \"rankvar\": 262}, {\"group\": [486.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"229\", \"clust\": 486, \"rank\": 455, \"ini\": 271, \"rankvar\": 423}, {\"group\": [500.0, 193.0, 53.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"230\", \"clust\": 490, \"rank\": 9, \"ini\": 270, \"rankvar\": 401}, {\"group\": [93.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"231\", \"clust\": 92, \"rank\": 315, \"ini\": 269, \"rankvar\": 284}, {\"group\": [444.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"232\", \"clust\": 445, \"rank\": 27, \"ini\": 268, \"rankvar\": 307}, {\"group\": [269.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"233\", \"clust\": 268, \"rank\": 270, \"ini\": 267, \"rankvar\": 166}, {\"group\": [194.0, 89.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"234\", \"clust\": 194, \"rank\": 359, \"ini\": 266, \"rankvar\": 354}, {\"group\": [260.0, 111.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"235\", \"clust\": 260, \"rank\": 200, \"ini\": 265, \"rankvar\": 100}, {\"group\": [147.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"236\", \"clust\": 143, \"rank\": 256, \"ini\": 264, \"rankvar\": 336}, {\"group\": [230.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"237\", \"clust\": 226, \"rank\": 356, \"ini\": 263, \"rankvar\": 79}, {\"group\": [184.0, 84.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"238\", \"clust\": 184, \"rank\": 164, \"ini\": 262, \"rankvar\": 357}, {\"group\": [90.0, 46.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"239\", \"clust\": 90, \"rank\": 392, \"ini\": 261, \"rankvar\": 350}, {\"group\": [254.0, 108.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"240\", \"clust\": 254, \"rank\": 208, \"ini\": 260, \"rankvar\": 150}, {\"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"241\", \"clust\": 2, \"rank\": 39, \"ini\": 259, \"rankvar\": 209}, {\"group\": [40.0, 24.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"242\", \"clust\": 39, \"rank\": 19, \"ini\": 258, \"rankvar\": 53}, {\"group\": [164.0, 75.0, 26.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"243\", \"clust\": 163, \"rank\": 70, \"ini\": 257, \"rankvar\": 251}, {\"group\": [259.0, 110.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"244\", \"clust\": 256, \"rank\": 352, \"ini\": 256, \"rankvar\": 404}, {\"group\": [479.0, 183.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"245\", \"clust\": 479, \"rank\": 421, \"ini\": 255, \"rankvar\": 309}, {\"group\": [247.0, 104.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"246\", \"clust\": 246, \"rank\": 237, \"ini\": 254, \"rankvar\": 392}, {\"group\": [173.0, 79.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"247\", \"clust\": 173, \"rank\": 491, \"ini\": 253, \"rankvar\": 170}, {\"group\": [302.0, 128.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"248\", \"clust\": 302, \"rank\": 135, \"ini\": 252, \"rankvar\": 261}, {\"group\": [439.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"249\", \"clust\": 438, \"rank\": 477, \"ini\": 251, \"rankvar\": 118}, {\"group\": [246.0, 103.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"250\", \"clust\": 245, \"rank\": 375, \"ini\": 250, \"rankvar\": 283}, {\"group\": [487.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"251\", \"clust\": 484, \"rank\": 354, \"ini\": 249, \"rankvar\": 400}, {\"group\": [47.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"252\", \"clust\": 43, \"rank\": 81, \"ini\": 248, \"rankvar\": 335}, {\"group\": [346.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"253\", \"clust\": 345, \"rank\": 170, \"ini\": 247, \"rankvar\": 134}, {\"group\": [210.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"254\", \"clust\": 209, \"rank\": 74, \"ini\": 246, \"rankvar\": 137}, {\"group\": [221.0, 96.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"255\", \"clust\": 220, \"rank\": 65, \"ini\": 245, \"rankvar\": 68}, {\"group\": [115.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"256\", \"clust\": 114, \"rank\": 361, \"ini\": 244, \"rankvar\": 444}, {\"group\": [399.0, 160.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"257\", \"clust\": 399, \"rank\": 312, \"ini\": 243, \"rankvar\": 97}, {\"group\": [200.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"258\", \"clust\": 200, \"rank\": 216, \"ini\": 242, \"rankvar\": 282}, {\"group\": [441.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"259\", \"clust\": 441, \"rank\": 363, \"ini\": 241, \"rankvar\": 182}, {\"group\": [329.0, 137.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"260\", \"clust\": 328, \"rank\": 155, \"ini\": 240, \"rankvar\": 353}, {\"group\": [117.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"261\", \"clust\": 116, \"rank\": 136, \"ini\": 239, \"rankvar\": 254}, {\"group\": [366.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"262\", \"clust\": 364, \"rank\": 467, \"ini\": 238, \"rankvar\": 225}, {\"group\": [345.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"263\", \"clust\": 344, \"rank\": 71, \"ini\": 237, \"rankvar\": 87}, {\"group\": [127.0, 60.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"264\", \"clust\": 126, \"rank\": 325, \"ini\": 236, \"rankvar\": 389}, {\"group\": [231.0, 98.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"265\", \"clust\": 231, \"rank\": 111, \"ini\": 235, \"rankvar\": 418}, {\"group\": [82.0, 43.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"266\", \"clust\": 81, \"rank\": 44, \"ini\": 234, \"rankvar\": 210}, {\"group\": [71.0, 39.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"267\", \"clust\": 70, \"rank\": 389, \"ini\": 233, \"rankvar\": 271}, {\"group\": [217.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"268\", \"clust\": 218, \"rank\": 414, \"ini\": 232, \"rankvar\": 313}, {\"group\": [453.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"269\", \"clust\": 455, \"rank\": 486, \"ini\": 231, \"rankvar\": 437}, {\"group\": [234.0, 99.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"270\", \"clust\": 236, \"rank\": 244, \"ini\": 230, \"rankvar\": 18}, {\"group\": [134.0, 63.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"271\", \"clust\": 133, \"rank\": 122, \"ini\": 229, \"rankvar\": 345}, {\"group\": [400.0, 160.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"272\", \"clust\": 400, \"rank\": 287, \"ini\": 228, \"rankvar\": 233}, {\"group\": [244.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"273\", \"clust\": 240, \"rank\": 197, \"ini\": 227, \"rankvar\": 367}, {\"group\": [308.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"274\", \"clust\": 308, \"rank\": 327, \"ini\": 226, \"rankvar\": 185}, {\"group\": [192.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"275\", \"clust\": 189, \"rank\": 218, \"ini\": 225, \"rankvar\": 278}, {\"group\": [397.0, 159.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"276\", \"clust\": 397, \"rank\": 275, \"ini\": 224, \"rankvar\": 174}, {\"group\": [442.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"277\", \"clust\": 442, \"rank\": 349, \"ini\": 223, \"rankvar\": 20}, {\"group\": [468.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"278\", \"clust\": 467, \"rank\": 305, \"ini\": 222, \"rankvar\": 140}, {\"group\": [480.0, 183.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"279\", \"clust\": 480, \"rank\": 140, \"ini\": 221, \"rankvar\": 78}, {\"group\": [388.0, 157.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"280\", \"clust\": 385, \"rank\": 302, \"ini\": 220, \"rankvar\": 358}, {\"group\": [392.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"281\", \"clust\": 393, \"rank\": 472, \"ini\": 219, \"rankvar\": 242}, {\"group\": [413.0, 167.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"282\", \"clust\": 414, \"rank\": 483, \"ini\": 218, \"rankvar\": 436}, {\"group\": [11.0, 8.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"283\", \"clust\": 10, \"rank\": 31, \"ini\": 217, \"rankvar\": 417}, {\"group\": [385.0, 156.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"284\", \"clust\": 380, \"rank\": 17, \"ini\": 216, \"rankvar\": 167}, {\"group\": [161.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"285\", \"clust\": 159, \"rank\": 225, \"ini\": 215, \"rankvar\": 397}, {\"group\": [273.0, 114.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"286\", \"clust\": 274, \"rank\": 141, \"ini\": 214, \"rankvar\": 446}, {\"group\": [204.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"287\", \"clust\": 203, \"rank\": 484, \"ini\": 213, \"rankvar\": 287}, {\"group\": [454.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"288\", \"clust\": 453, \"rank\": 386, \"ini\": 212, \"rankvar\": 189}, {\"group\": [19.0, 12.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"289\", \"clust\": 19, \"rank\": 409, \"ini\": 211, \"rankvar\": 488}, {\"group\": [197.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"290\", \"clust\": 196, \"rank\": 205, \"ini\": 210, \"rankvar\": 224}, {\"group\": [423.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"291\", \"clust\": 422, \"rank\": 380, \"ini\": 209, \"rankvar\": 341}, {\"group\": [185.0, 84.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"292\", \"clust\": 185, \"rank\": 412, \"ini\": 208, \"rankvar\": 316}, {\"group\": [364.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"293\", \"clust\": 365, \"rank\": 428, \"ini\": 207, \"rankvar\": 211}, {\"group\": [153.0, 70.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"294\", \"clust\": 152, \"rank\": 99, \"ini\": 206, \"rankvar\": 121}, {\"group\": [424.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"295\", \"clust\": 423, \"rank\": 403, \"ini\": 205, \"rankvar\": 151}, {\"group\": [417.0, 169.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"296\", \"clust\": 416, \"rank\": 297, \"ini\": 204, \"rankvar\": 478}, {\"group\": [377.0, 153.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"297\", \"clust\": 378, \"rank\": 345, \"ini\": 203, \"rankvar\": 320}, {\"group\": [375.0, 152.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"298\", \"clust\": 374, \"rank\": 21, \"ini\": 202, \"rankvar\": 181}, {\"group\": [16.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"299\", \"clust\": 16, \"rank\": 221, \"ini\": 201, \"rankvar\": 195}, {\"group\": [239.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"300\", \"clust\": 239, \"rank\": 408, \"ini\": 200, \"rankvar\": 330}, {\"group\": [122.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"301\", \"clust\": 123, \"rank\": 211, \"ini\": 199, \"rankvar\": 471}, {\"group\": [207.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"302\", \"clust\": 206, \"rank\": 471, \"ini\": 198, \"rankvar\": 376}, {\"group\": [235.0, 99.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"303\", \"clust\": 234, \"rank\": 258, \"ini\": 197, \"rankvar\": 198}, {\"group\": [10.0, 7.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"304\", \"clust\": 7, \"rank\": 245, \"ini\": 196, \"rankvar\": 486}, {\"group\": [287.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"305\", \"clust\": 288, \"rank\": 243, \"ini\": 195, \"rankvar\": 361}, {\"group\": [292.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"306\", \"clust\": 291, \"rank\": 394, \"ini\": 194, \"rankvar\": 277}, {\"group\": [376.0, 152.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"307\", \"clust\": 375, \"rank\": 319, \"ini\": 193, \"rankvar\": 410}, {\"group\": [248.0, 104.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"308\", \"clust\": 247, \"rank\": 100, \"ini\": 192, \"rankvar\": 339}, {\"group\": [119.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"309\", \"clust\": 121, \"rank\": 476, \"ini\": 191, \"rankvar\": 223}, {\"group\": [272.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"310\", \"clust\": 271, \"rank\": 431, \"ini\": 190, \"rankvar\": 249}, {\"group\": [257.0, 109.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"311\", \"clust\": 257, \"rank\": 150, \"ini\": 189, \"rankvar\": 477}, {\"group\": [354.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"312\", \"clust\": 353, \"rank\": 338, \"ini\": 188, \"rankvar\": 85}, {\"group\": [158.0, 73.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"313\", \"clust\": 157, \"rank\": 3, \"ini\": 187, \"rankvar\": 6}, {\"group\": [156.0, 72.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"314\", \"clust\": 153, \"rank\": 94, \"ini\": 186, \"rankvar\": 408}, {\"group\": [264.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"315\", \"clust\": 263, \"rank\": 404, \"ini\": 185, \"rankvar\": 117}, {\"group\": [365.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"316\", \"clust\": 366, \"rank\": 396, \"ini\": 184, \"rankvar\": 95}, {\"group\": [137.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"317\", \"clust\": 137, \"rank\": 177, \"ini\": 183, \"rankvar\": 432}, {\"group\": [280.0, 119.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"318\", \"clust\": 279, \"rank\": 112, \"ini\": 182, \"rankvar\": 364}, {\"group\": [57.0, 33.0, 14.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"319\", \"clust\": 56, \"rank\": 263, \"ini\": 181, \"rankvar\": 337}, {\"group\": [24.0, 14.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"320\", \"clust\": 17, \"rank\": 223, \"ini\": 180, \"rankvar\": 455}, {\"group\": [425.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"321\", \"clust\": 424, \"rank\": 247, \"ini\": 179, \"rankvar\": 297}, {\"group\": [314.0, 131.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"322\", \"clust\": 314, \"rank\": 217, \"ini\": 178, \"rankvar\": 468}, {\"group\": [145.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"323\", \"clust\": 146, \"rank\": 423, \"ini\": 177, \"rankvar\": 109}, {\"group\": [466.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"324\", \"clust\": 465, \"rank\": 158, \"ini\": 176, \"rankvar\": 91}, {\"group\": [223.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"325\", \"clust\": 222, \"rank\": 498, \"ini\": 175, \"rankvar\": 2}, {\"group\": [472.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"326\", \"clust\": 473, \"rank\": 433, \"ini\": 174, \"rankvar\": 63}, {\"group\": [327.0, 136.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"327\", \"clust\": 327, \"rank\": 311, \"ini\": 173, \"rankvar\": 279}, {\"group\": [451.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"328\", \"clust\": 450, \"rank\": 124, \"ini\": 172, \"rankvar\": 269}, {\"group\": [426.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"329\", \"clust\": 425, \"rank\": 294, \"ini\": 171, \"rankvar\": 331}, {\"group\": [45.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"330\", \"clust\": 46, \"rank\": 171, \"ini\": 170, \"rankvar\": 162}, {\"group\": [372.0, 149.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"331\", \"clust\": 373, \"rank\": 376, \"ini\": 169, \"rankvar\": 245}, {\"group\": [489.0, 185.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"332\", \"clust\": 489, \"rank\": 306, \"ini\": 168, \"rankvar\": 379}, {\"group\": [102.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"333\", \"clust\": 101, \"rank\": 387, \"ini\": 167, \"rankvar\": 334}, {\"group\": [313.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"334\", \"clust\": 312, \"rank\": 310, \"ini\": 166, \"rankvar\": 21}, {\"group\": [4.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"335\", \"clust\": 5, \"rank\": 114, \"ini\": 165, \"rankvar\": 481}, {\"group\": [154.0, 71.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"336\", \"clust\": 154, \"rank\": 468, \"ini\": 164, \"rankvar\": 458}, {\"group\": [73.0, 40.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"337\", \"clust\": 72, \"rank\": 138, \"ini\": 163, \"rankvar\": 322}, {\"group\": [250.0, 105.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"338\", \"clust\": 249, \"rank\": 382, \"ini\": 162, \"rankvar\": 483}, {\"group\": [228.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"339\", \"clust\": 229, \"rank\": 336, \"ini\": 161, \"rankvar\": 265}, {\"group\": [41.0, 24.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"340\", \"clust\": 40, \"rank\": 1, \"ini\": 160, \"rankvar\": 84}, {\"group\": [186.0, 85.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"341\", \"clust\": 183, \"rank\": 23, \"ini\": 159, \"rankvar\": 115}, {\"group\": [155.0, 71.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"342\", \"clust\": 155, \"rank\": 450, \"ini\": 158, \"rankvar\": 480}, {\"group\": [177.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"343\", \"clust\": 176, \"rank\": 284, \"ini\": 157, \"rankvar\": 49}, {\"group\": [46.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"344\", \"clust\": 44, \"rank\": 104, \"ini\": 156, \"rankvar\": 72}, {\"group\": [411.0, 166.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"345\", \"clust\": 408, \"rank\": 137, \"ini\": 155, \"rankvar\": 420}, {\"group\": [438.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"346\", \"clust\": 437, \"rank\": 499, \"ini\": 154, \"rankvar\": 65}, {\"group\": [54.0, 30.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"347\", \"clust\": 54, \"rank\": 56, \"ini\": 153, \"rankvar\": 110}, {\"group\": [281.0, 120.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"348\", \"clust\": 282, \"rank\": 490, \"ini\": 152, \"rankvar\": 332}, {\"group\": [291.0, 123.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"349\", \"clust\": 290, \"rank\": 445, \"ini\": 151, \"rankvar\": 360}, {\"group\": [384.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"350\", \"clust\": 384, \"rank\": 105, \"ini\": 150, \"rankvar\": 215}, {\"group\": [79.0, 42.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"351\", \"clust\": 79, \"rank\": 360, \"ini\": 149, \"rankvar\": 71}, {\"group\": [258.0, 109.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"352\", \"clust\": 258, \"rank\": 262, \"ini\": 148, \"rankvar\": 237}, {\"group\": [198.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"353\", \"clust\": 197, \"rank\": 353, \"ini\": 147, \"rankvar\": 139}, {\"group\": [35.0, 21.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"354\", \"clust\": 35, \"rank\": 316, \"ini\": 146, \"rankvar\": 135}, {\"group\": [395.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"355\", \"clust\": 391, \"rank\": 76, \"ini\": 145, \"rankvar\": 106}, {\"group\": [170.0, 78.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"356\", \"clust\": 170, \"rank\": 303, \"ini\": 144, \"rankvar\": 57}, {\"group\": [368.0, 148.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"357\", \"clust\": 368, \"rank\": 20, \"ini\": 143, \"rankvar\": 29}, {\"group\": [358.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"358\", \"clust\": 356, \"rank\": 344, \"ini\": 142, \"rankvar\": 125}, {\"group\": [106.0, 53.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"359\", \"clust\": 105, \"rank\": 166, \"ini\": 141, \"rankvar\": 461}, {\"group\": [360.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"360\", \"clust\": 359, \"rank\": 378, \"ini\": 140, \"rankvar\": 200}, {\"group\": [149.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"361\", \"clust\": 148, \"rank\": 370, \"ini\": 139, \"rankvar\": 213}, {\"group\": [420.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"362\", \"clust\": 419, \"rank\": 309, \"ini\": 138, \"rankvar\": 191}, {\"group\": [476.0, 182.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"363\", \"clust\": 476, \"rank\": 355, \"ini\": 137, \"rankvar\": 145}, {\"group\": [191.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"364\", \"clust\": 190, \"rank\": 288, \"ini\": 136, \"rankvar\": 435}, {\"group\": [332.0, 139.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"365\", \"clust\": 331, \"rank\": 276, \"ini\": 135, \"rankvar\": 156}, {\"group\": [243.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"366\", \"clust\": 241, \"rank\": 182, \"ini\": 134, \"rankvar\": 50}, {\"group\": [205.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"367\", \"clust\": 204, \"rank\": 492, \"ini\": 133, \"rankvar\": 122}, {\"group\": [98.0, 50.0, 19.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"368\", \"clust\": 95, \"rank\": 60, \"ini\": 132, \"rankvar\": 491}, {\"group\": [349.0, 144.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"369\", \"clust\": 350, \"rank\": 154, \"ini\": 131, \"rankvar\": 219}, {\"group\": [356.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"370\", \"clust\": 357, \"rank\": 308, \"ini\": 130, \"rankvar\": 12}, {\"group\": [473.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"371\", \"clust\": 474, \"rank\": 496, \"ini\": 129, \"rankvar\": 54}, {\"group\": [359.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"372\", \"clust\": 355, \"rank\": 230, \"ini\": 128, \"rankvar\": 387}, {\"group\": [168.0, 77.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"373\", \"clust\": 164, \"rank\": 129, \"ini\": 127, \"rankvar\": 375}, {\"group\": [21.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"374\", \"clust\": 23, \"rank\": 341, \"ini\": 126, \"rankvar\": 226}, {\"group\": [64.0, 37.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"375\", \"clust\": 64, \"rank\": 318, \"ini\": 125, \"rankvar\": 208}, {\"group\": [440.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"376\", \"clust\": 439, \"rank\": 473, \"ini\": 124, \"rankvar\": 201}, {\"group\": [166.0, 76.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"377\", \"clust\": 167, \"rank\": 139, \"ini\": 123, \"rankvar\": 304}, {\"group\": [12.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"378\", \"clust\": 11, \"rank\": 143, \"ini\": 122, \"rankvar\": 459}, {\"group\": [445.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"379\", \"clust\": 446, \"rank\": 34, \"ini\": 121, \"rankvar\": 172}, {\"group\": [379.0, 153.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"380\", \"clust\": 377, \"rank\": 120, \"ini\": 120, \"rankvar\": 412}, {\"group\": [22.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"381\", \"clust\": 21, \"rank\": 347, \"ini\": 119, \"rankvar\": 266}, {\"group\": [390.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"382\", \"clust\": 390, \"rank\": 435, \"ini\": 118, \"rankvar\": 272}, {\"group\": [241.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"383\", \"clust\": 242, \"rank\": 395, \"ini\": 117, \"rankvar\": 250}, {\"group\": [421.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"384\", \"clust\": 420, \"rank\": 277, \"ini\": 116, \"rankvar\": 40}, {\"group\": [178.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"385\", \"clust\": 177, \"rank\": 416, \"ini\": 115, \"rankvar\": 204}, {\"group\": [8.0, 6.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"386\", \"clust\": 8, \"rank\": 48, \"ini\": 114, \"rankvar\": 383}, {\"group\": [36.0, 21.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"387\", \"clust\": 36, \"rank\": 425, \"ini\": 113, \"rankvar\": 163}, {\"group\": [297.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"388\", \"clust\": 298, \"rank\": 254, \"ini\": 112, \"rankvar\": 61}, {\"group\": [49.0, 27.0, 12.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"389\", \"clust\": 49, \"rank\": 115, \"ini\": 111, \"rankvar\": 450}, {\"group\": [477.0, 182.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"390\", \"clust\": 477, \"rank\": 393, \"ini\": 110, \"rankvar\": 311}, {\"group\": [188.0, 86.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"391\", \"clust\": 187, \"rank\": 293, \"ini\": 109, \"rankvar\": 212}, {\"group\": [111.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"392\", \"clust\": 111, \"rank\": 210, \"ini\": 108, \"rankvar\": 470}, {\"group\": [141.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"393\", \"clust\": 140, \"rank\": 145, \"ini\": 107, \"rankvar\": 327}, {\"group\": [278.0, 118.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"394\", \"clust\": 277, \"rank\": 103, \"ini\": 106, \"rankvar\": 472}, {\"group\": [176.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"395\", \"clust\": 175, \"rank\": 199, \"ini\": 105, \"rankvar\": 363}, {\"group\": [343.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"396\", \"clust\": 342, \"rank\": 437, \"ini\": 104, \"rankvar\": 232}, {\"group\": [129.0, 61.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"397\", \"clust\": 128, \"rank\": 397, \"ini\": 103, \"rankvar\": 69}, {\"group\": [293.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"398\", \"clust\": 292, \"rank\": 418, \"ini\": 102, \"rankvar\": 310}, {\"group\": [240.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"399\", \"clust\": 237, \"rank\": 236, \"ini\": 101, \"rankvar\": 399}, {\"group\": [309.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"400\", \"clust\": 306, \"rank\": 246, \"ini\": 100, \"rankvar\": 373}, {\"group\": [242.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"401\", \"clust\": 243, \"rank\": 461, \"ini\": 99, \"rankvar\": 338}, {\"group\": [306.0, 129.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"402\", \"clust\": 305, \"rank\": 427, \"ini\": 98, \"rankvar\": 81}, {\"group\": [410.0, 165.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"403\", \"clust\": 410, \"rank\": 286, \"ini\": 97, \"rankvar\": 342}, {\"group\": [320.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"404\", \"clust\": 320, \"rank\": 390, \"ini\": 96, \"rankvar\": 119}, {\"group\": [299.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"405\", \"clust\": 300, \"rank\": 367, \"ini\": 95, \"rankvar\": 464}, {\"group\": [317.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"406\", \"clust\": 317, \"rank\": 63, \"ini\": 94, \"rankvar\": 24}, {\"group\": [38.0, 22.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"407\", \"clust\": 38, \"rank\": 195, \"ini\": 93, \"rankvar\": 147}, {\"group\": [382.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"408\", \"clust\": 382, \"rank\": 439, \"ini\": 92, \"rankvar\": 193}, {\"group\": [123.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"409\", \"clust\": 124, \"rank\": 350, \"ini\": 91, \"rankvar\": 475}, {\"group\": [484.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"410\", \"clust\": 481, \"rank\": 434, \"ini\": 90, \"rankvar\": 146}, {\"group\": [138.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"411\", \"clust\": 138, \"rank\": 233, \"ini\": 89, \"rankvar\": 454}, {\"group\": [493.0, 187.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"412\", \"clust\": 495, \"rank\": 249, \"ini\": 88, \"rankvar\": 344}, {\"group\": [402.0, 161.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"413\", \"clust\": 403, \"rank\": 198, \"ini\": 87, \"rankvar\": 190}, {\"group\": [324.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"414\", \"clust\": 323, \"rank\": 362, \"ini\": 86, \"rankvar\": 299}, {\"group\": [315.0, 131.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"415\", \"clust\": 315, \"rank\": 153, \"ini\": 85, \"rankvar\": 419}, {\"group\": [330.0, 138.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"416\", \"clust\": 329, \"rank\": 69, \"ini\": 84, \"rankvar\": 171}, {\"group\": [61.0, 35.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"417\", \"clust\": 62, \"rank\": 201, \"ini\": 83, \"rankvar\": 244}, {\"group\": [398.0, 159.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"418\", \"clust\": 395, \"rank\": 300, \"ini\": 82, \"rankvar\": 111}, {\"group\": [252.0, 106.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"419\", \"clust\": 252, \"rank\": 252, \"ini\": 81, \"rankvar\": 346}, {\"group\": [295.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"420\", \"clust\": 294, \"rank\": 340, \"ini\": 80, \"rankvar\": 243}, {\"group\": [419.0, 170.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"421\", \"clust\": 418, \"rank\": 348, \"ini\": 79, \"rankvar\": 495}, {\"group\": [214.0, 94.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"422\", \"clust\": 214, \"rank\": 265, \"ini\": 78, \"rankvar\": 136}, {\"group\": [229.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"423\", \"clust\": 227, \"rank\": 123, \"ini\": 77, \"rankvar\": 3}, {\"group\": [338.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"424\", \"clust\": 337, \"rank\": 97, \"ini\": 76, \"rankvar\": 76}, {\"group\": [180.0, 81.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"425\", \"clust\": 180, \"rank\": 313, \"ini\": 75, \"rankvar\": 492}, {\"group\": [355.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"426\", \"clust\": 354, \"rank\": 494, \"ini\": 74, \"rankvar\": 343}, {\"group\": [159.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"427\", \"clust\": 160, \"rank\": 22, \"ini\": 73, \"rankvar\": 52}, {\"group\": [174.0, 79.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"428\", \"clust\": 171, \"rank\": 232, \"ini\": 72, \"rankvar\": 308}, {\"group\": [52.0, 29.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"429\", \"clust\": 51, \"rank\": 75, \"ini\": 71, \"rankvar\": 445}, {\"group\": [33.0, 19.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"430\", \"clust\": 34, \"rank\": 381, \"ini\": 70, \"rankvar\": 440}, {\"group\": [494.0, 187.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"431\", \"clust\": 496, \"rank\": 331, \"ini\": 69, \"rankvar\": 281}, {\"group\": [483.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"432\", \"clust\": 483, \"rank\": 495, \"ini\": 68, \"rankvar\": 10}, {\"group\": [181.0, 82.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"433\", \"clust\": 178, \"rank\": 92, \"ini\": 67, \"rankvar\": 469}, {\"group\": [5.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"434\", \"clust\": 6, \"rank\": 45, \"ini\": 66, \"rankvar\": 333}, {\"group\": [367.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"435\", \"clust\": 363, \"rank\": 432, \"ini\": 65, \"rankvar\": 463}, {\"group\": [357.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"436\", \"clust\": 358, \"rank\": 29, \"ini\": 64, \"rankvar\": 4}, {\"group\": [162.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"437\", \"clust\": 158, \"rank\": 259, \"ini\": 63, \"rankvar\": 259}, {\"group\": [378.0, 153.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"438\", \"clust\": 379, \"rank\": 206, \"ini\": 62, \"rankvar\": 70}, {\"group\": [142.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"439\", \"clust\": 141, \"rank\": 16, \"ini\": 61, \"rankvar\": 32}, {\"group\": [113.0, 56.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"440\", \"clust\": 108, \"rank\": 227, \"ini\": 60, \"rankvar\": 426}, {\"group\": [325.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"441\", \"clust\": 324, \"rank\": 324, \"ini\": 59, \"rankvar\": 340}, {\"group\": [351.0, 145.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"442\", \"clust\": 347, \"rank\": 163, \"ini\": 58, \"rankvar\": 490}, {\"group\": [461.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"443\", \"clust\": 462, \"rank\": 229, \"ini\": 57, \"rankvar\": 202}, {\"group\": [143.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"444\", \"clust\": 142, \"rank\": 142, \"ini\": 56, \"rankvar\": 89}, {\"group\": [225.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"445\", \"clust\": 225, \"rank\": 488, \"ini\": 55, \"rankvar\": 16}, {\"group\": [490.0, 185.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"446\", \"clust\": 487, \"rank\": 377, \"ini\": 54, \"rankvar\": 414}, {\"group\": [373.0, 150.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"447\", \"clust\": 371, \"rank\": 212, \"ini\": 53, \"rankvar\": 173}, {\"group\": [404.0, 161.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"448\", \"clust\": 402, \"rank\": 26, \"ini\": 52, \"rankvar\": 39}, {\"group\": [429.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"449\", \"clust\": 430, \"rank\": 407, \"ini\": 51, \"rankvar\": 7}, {\"group\": [9.0, 6.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"450\", \"clust\": 9, \"rank\": 215, \"ini\": 50, \"rankvar\": 366}, {\"group\": [77.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"451\", \"clust\": 76, \"rank\": 239, \"ini\": 49, \"rankvar\": 37}, {\"group\": [369.0, 148.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"452\", \"clust\": 369, \"rank\": 465, \"ini\": 48, \"rankvar\": 482}, {\"group\": [361.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"453\", \"clust\": 360, \"rank\": 429, \"ini\": 47, \"rankvar\": 23}, {\"group\": [268.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"454\", \"clust\": 267, \"rank\": 489, \"ini\": 46, \"rankvar\": 13}, {\"group\": [151.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"455\", \"clust\": 150, \"rank\": 482, \"ini\": 45, \"rankvar\": 319}, {\"group\": [496.0, 189.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"456\", \"clust\": 493, \"rank\": 12, \"ini\": 44, \"rankvar\": 196}, {\"group\": [455.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"457\", \"clust\": 452, \"rank\": 398, \"ini\": 43, \"rankvar\": 415}, {\"group\": [301.0, 127.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"458\", \"clust\": 295, \"rank\": 295, \"ini\": 42, \"rankvar\": 405}, {\"group\": [347.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"459\", \"clust\": 346, \"rank\": 58, \"ini\": 41, \"rankvar\": 184}, {\"group\": [446.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"460\", \"clust\": 444, \"rank\": 8, \"ini\": 40, \"rankvar\": 141}, {\"group\": [374.0, 151.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"461\", \"clust\": 370, \"rank\": 90, \"ini\": 39, \"rankvar\": 451}, {\"group\": [274.0, 115.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"462\", \"clust\": 275, \"rank\": 219, \"ini\": 38, \"rankvar\": 429}, {\"group\": [104.0, 52.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"463\", \"clust\": 103, \"rank\": 146, \"ini\": 37, \"rankvar\": 168}, {\"group\": [394.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"464\", \"clust\": 392, \"rank\": 358, \"ini\": 36, \"rankvar\": 130}, {\"group\": [124.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"465\", \"clust\": 122, \"rank\": 320, \"ini\": 35, \"rankvar\": 393}, {\"group\": [183.0, 83.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"466\", \"clust\": 182, \"rank\": 46, \"ini\": 34, \"rankvar\": 273}, {\"group\": [318.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"467\", \"clust\": 318, \"rank\": 346, \"ini\": 33, \"rankvar\": 103}, {\"group\": [462.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"468\", \"clust\": 463, \"rank\": 152, \"ini\": 32, \"rankvar\": 28}, {\"group\": [208.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"469\", \"clust\": 210, \"rank\": 463, \"ini\": 31, \"rankvar\": 114}, {\"group\": [203.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"470\", \"clust\": 202, \"rank\": 301, \"ini\": 30, \"rankvar\": 276}, {\"group\": [88.0, 45.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"471\", \"clust\": 87, \"rank\": 278, \"ini\": 29, \"rankvar\": 422}, {\"group\": [391.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"472\", \"clust\": 388, \"rank\": 299, \"ini\": 28, \"rankvar\": 108}, {\"group\": [393.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"473\", \"clust\": 394, \"rank\": 388, \"ini\": 27, \"rankvar\": 218}, {\"group\": [282.0, 120.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"474\", \"clust\": 283, \"rank\": 255, \"ini\": 26, \"rankvar\": 416}, {\"group\": [270.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"475\", \"clust\": 269, \"rank\": 469, \"ini\": 25, \"rankvar\": 160}, {\"group\": [463.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"476\", \"clust\": 461, \"rank\": 185, \"ini\": 24, \"rankvar\": 239}, {\"group\": [261.0, 111.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"477\", \"clust\": 261, \"rank\": 458, \"ini\": 23, \"rankvar\": 448}, {\"group\": [427.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"478\", \"clust\": 426, \"rank\": 339, \"ini\": 22, \"rankvar\": 403}, {\"group\": [481.0, 183.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"479\", \"clust\": 478, \"rank\": 162, \"ini\": 21, \"rankvar\": 99}, {\"group\": [112.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"480\", \"clust\": 112, \"rank\": 231, \"ini\": 20, \"rankvar\": 88}, {\"group\": [160.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"481\", \"clust\": 161, \"rank\": 257, \"ini\": 19, \"rankvar\": 474}, {\"group\": [201.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"482\", \"clust\": 198, \"rank\": 157, \"ini\": 18, \"rankvar\": 395}, {\"group\": [408.0, 164.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"483\", \"clust\": 405, \"rank\": 61, \"ini\": 17, \"rankvar\": 275}, {\"group\": [34.0, 20.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"484\", \"clust\": 32, \"rank\": 4, \"ini\": 16, \"rankvar\": 82}, {\"group\": [136.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"485\", \"clust\": 136, \"rank\": 281, \"ini\": 15, \"rankvar\": 315}, {\"group\": [403.0, 161.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"486\", \"clust\": 404, \"rank\": 202, \"ini\": 14, \"rankvar\": 398}, {\"group\": [110.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"487\", \"clust\": 110, \"rank\": 18, \"ini\": 13, \"rankvar\": 35}, {\"group\": [255.0, 108.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"488\", \"clust\": 255, \"rank\": 160, \"ini\": 12, \"rankvar\": 258}, {\"group\": [75.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"489\", \"clust\": 74, \"rank\": 442, \"ini\": 11, \"rankvar\": 230}, {\"group\": [95.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"490\", \"clust\": 94, \"rank\": 285, \"ini\": 10, \"rankvar\": 149}, {\"group\": [316.0, 132.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"491\", \"clust\": 313, \"rank\": 28, \"ini\": 9, \"rankvar\": 235}, {\"group\": [236.0, 100.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"492\", \"clust\": 233, \"rank\": 196, \"ini\": 8, \"rankvar\": 248}, {\"group\": [209.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"493\", \"clust\": 211, \"rank\": 456, \"ini\": 7, \"rankvar\": 116}, {\"group\": [232.0, 98.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"494\", \"clust\": 232, \"rank\": 194, \"ini\": 6, \"rankvar\": 255}, {\"group\": [65.0, 37.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"495\", \"clust\": 65, \"rank\": 260, \"ini\": 5, \"rankvar\": 328}, {\"group\": [336.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"496\", \"clust\": 335, \"rank\": 261, \"ini\": 4, \"rankvar\": 180}, {\"group\": [43.0, 25.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"497\", \"clust\": 42, \"rank\": 317, \"ini\": 3, \"rankvar\": 390}, {\"group\": [195.0, 89.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"498\", \"clust\": 195, \"rank\": 149, \"ini\": 2, \"rankvar\": 295}, {\"group\": [303.0, 128.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"499\", \"clust\": 303, \"rank\": 187, \"ini\": 1, \"rankvar\": 457}], \"col_nodes\": [{\"group\": [10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 4.0, 1.0], \"name\": \"0\", \"clust\": 0, \"rank\": 0, \"ini\": 10, \"rankvar\": 1}, {\"group\": [7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 3.0, 1.0], \"name\": \"1\", \"clust\": 8, \"rank\": 1, \"ini\": 9, \"rankvar\": 7}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 3, \"rank\": 3, \"ini\": 8, \"rankvar\": 0}, {\"group\": [8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 3.0, 1.0], \"name\": \"3\", \"clust\": 9, \"rank\": 9, \"ini\": 7, \"rankvar\": 9}, {\"group\": [9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 3.0, 1.0], \"name\": \"4\", \"clust\": 7, \"rank\": 2, \"ini\": 6, \"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\": \"5\", \"clust\": 1, \"rank\": 6, \"ini\": 5, \"rankvar\": 5}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 4, \"rank\": 5, \"ini\": 4, \"rankvar\": 2}, {\"group\": [5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 2.0, 1.0], \"name\": \"7\", \"clust\": 5, \"rank\": 7, \"ini\": 3, \"rankvar\": 6}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 2, \"rank\": 4, \"ini\": 2, \"rankvar\": 3}, {\"group\": [6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 2.0, 1.0], \"name\": \"9\", \"clust\": 6, \"rank\": 8, \"ini\": 1, \"rankvar\": 4}], \"links\": [{\"source\": 0, \"target\": 0, \"value\": 0.5434049417909654}, {\"source\": 0, \"target\": 1, \"value\": 0.27836938509379616}, {\"source\": 0, \"target\": 2, \"value\": 0.4245175907491331}, {\"source\": 0, \"target\": 3, \"value\": 0.8447761323199037}, {\"source\": 0, \"target\": 4, \"value\": 0.004718856190972565}, {\"source\": 0, \"target\": 5, \"value\": 0.12156912078311422}, {\"source\": 0, \"target\": 6, \"value\": 0.6707490847267786}, {\"source\": 0, \"target\": 7, \"value\": 0.8258527551050476}, {\"source\": 0, \"target\": 8, \"value\": 0.13670658968495297}, {\"source\": 0, \"target\": 9, \"value\": 0.57509332942725}, {\"source\": 1, \"target\": 0, \"value\": 0.891321954312264}, {\"source\": 1, \"target\": 1, \"value\": 0.20920212211718958}, {\"source\": 1, \"target\": 2, \"value\": 0.18532821955007506}, {\"source\": 1, \"target\": 3, \"value\": 0.10837689046425514}, {\"source\": 1, \"target\": 4, \"value\": 0.21969749262499216}, {\"source\": 1, \"target\": 5, \"value\": 0.9786237847073697}, {\"source\": 1, \"target\": 6, \"value\": 0.8116831490893233}, {\"source\": 1, \"target\": 7, \"value\": 0.1719410127325942}, {\"source\": 1, \"target\": 8, \"value\": 0.8162247487258399}, {\"source\": 1, \"target\": 9, \"value\": 0.2740737470416992}, {\"source\": 2, \"target\": 0, \"value\": 0.4317041836631217}, {\"source\": 2, \"target\": 1, \"value\": 0.9400298196223746}, {\"source\": 2, \"target\": 2, \"value\": 0.8176493787767274}, {\"source\": 2, \"target\": 3, \"value\": 0.3361119501208987}, {\"source\": 2, \"target\": 4, \"value\": 0.17541045374233666}, {\"source\": 2, \"target\": 5, \"value\": 0.37283204628992317}, {\"source\": 2, \"target\": 6, \"value\": 0.005688507352573424}, {\"source\": 2, \"target\": 7, \"value\": 0.25242635344484043}, {\"source\": 2, \"target\": 8, \"value\": 0.7956625084732873}, {\"source\": 2, \"target\": 9, \"value\": 0.01525497124633901}, {\"source\": 3, \"target\": 0, \"value\": 0.5988433769284929}, {\"source\": 3, \"target\": 1, \"value\": 0.6038045390428536}, {\"source\": 3, \"target\": 2, \"value\": 0.10514768541205632}, {\"source\": 3, \"target\": 3, \"value\": 0.38194344494311006}, {\"source\": 3, \"target\": 4, \"value\": 0.03647605659256892}, {\"source\": 3, \"target\": 5, \"value\": 0.8904115634420757}, {\"source\": 3, \"target\": 6, \"value\": 0.9809208570123115}, {\"source\": 3, \"target\": 7, \"value\": 0.05994198881803725}, {\"source\": 3, \"target\": 8, \"value\": 0.8905459447285041}, {\"source\": 3, \"target\": 9, \"value\": 0.5769014994000329}, {\"source\": 4, \"target\": 0, \"value\": 0.7424796890979773}, {\"source\": 4, \"target\": 1, \"value\": 0.6301839364753761}, {\"source\": 4, \"target\": 2, \"value\": 0.5818421923987779}, {\"source\": 4, \"target\": 3, \"value\": 0.020439132026923157}, {\"source\": 4, \"target\": 4, \"value\": 0.2100265776728606}, {\"source\": 4, \"target\": 5, \"value\": 0.5446848781786475}, {\"source\": 4, \"target\": 6, \"value\": 0.7691151711056516}, {\"source\": 4, \"target\": 7, \"value\": 0.2506952291383959}, {\"source\": 4, \"target\": 8, \"value\": 0.2858956904068647}, {\"source\": 4, \"target\": 9, \"value\": 0.8523950878413064}, {\"source\": 5, \"target\": 0, \"value\": 0.9750064936065875}, {\"source\": 5, \"target\": 1, \"value\": 0.8848532934911055}, {\"source\": 5, \"target\": 2, \"value\": 0.35950784393690227}, {\"source\": 5, \"target\": 3, \"value\": 0.5988589458757472}, {\"source\": 5, \"target\": 4, \"value\": 0.3547956116572998}, {\"source\": 5, \"target\": 5, \"value\": 0.34019021537064575}, {\"source\": 5, \"target\": 6, \"value\": 0.17808098950580487}, {\"source\": 5, \"target\": 7, \"value\": 0.23769420862405044}, {\"source\": 5, \"target\": 8, \"value\": 0.04486228246077528}, {\"source\": 5, \"target\": 9, \"value\": 0.5054314296357892}, {\"source\": 6, \"target\": 0, \"value\": 0.376252454297363}, {\"source\": 6, \"target\": 1, \"value\": 0.5928054009758866}, {\"source\": 6, \"target\": 2, \"value\": 0.6299418755874974}, {\"source\": 6, \"target\": 3, \"value\": 0.14260031444628352}, {\"source\": 6, \"target\": 4, \"value\": 0.933841299466419}, {\"source\": 6, \"target\": 5, \"value\": 0.9463798808091013}, {\"source\": 6, \"target\": 6, \"value\": 0.6022966577308656}, {\"source\": 6, \"target\": 7, \"value\": 0.38776628032663074}, {\"source\": 6, \"target\": 8, \"value\": 0.3631880041093498}, {\"source\": 6, \"target\": 9, \"value\": 0.20434527686864423}, {\"source\": 7, \"target\": 0, \"value\": 0.27676506139633517}, {\"source\": 7, \"target\": 1, \"value\": 0.24653588120354963}, {\"source\": 7, \"target\": 2, \"value\": 0.17360800174020508}, {\"source\": 7, \"target\": 3, \"value\": 0.9666096944873236}, {\"source\": 7, \"target\": 4, \"value\": 0.9570126003527981}, {\"source\": 7, \"target\": 5, \"value\": 0.5979736843289207}, {\"source\": 7, \"target\": 6, \"value\": 0.7313007530599226}, {\"source\": 7, \"target\": 7, \"value\": 0.3403852228374361}, {\"source\": 7, \"target\": 8, \"value\": 0.09205560337723862}, {\"source\": 7, \"target\": 9, \"value\": 0.4634980189371477}, {\"source\": 8, \"target\": 0, \"value\": 0.508698893238194}, {\"source\": 8, \"target\": 1, \"value\": 0.08846017300289077}, {\"source\": 8, \"target\": 2, \"value\": 0.5280352233180474}, {\"source\": 8, \"target\": 3, \"value\": 0.9921580365105283}, {\"source\": 8, \"target\": 4, \"value\": 0.3950359317582296}, {\"source\": 8, \"target\": 5, \"value\": 0.3355964417185683}, {\"source\": 8, \"target\": 6, \"value\": 0.8054505373292797}, {\"source\": 8, \"target\": 7, \"value\": 0.7543489945823536}, {\"source\": 8, \"target\": 8, \"value\": 0.3130664415885097}, {\"source\": 8, \"target\": 9, \"value\": 0.6340366829622751}, {\"source\": 9, \"target\": 0, \"value\": 0.5404045753007164}, {\"source\": 9, \"target\": 1, \"value\": 0.2967937508800147}, {\"source\": 9, \"target\": 2, \"value\": 0.11078790118244575}, {\"source\": 9, \"target\": 3, \"value\": 0.3126402978757431}, {\"source\": 9, \"target\": 4, \"value\": 0.4569791300492658}, {\"source\": 9, \"target\": 5, \"value\": 0.6589400702261969}, {\"source\": 9, \"target\": 6, \"value\": 0.2542575178177181}, {\"source\": 9, \"target\": 7, \"value\": 0.6411012587007017}, {\"source\": 9, \"target\": 8, \"value\": 0.20012360721840317}, {\"source\": 9, \"target\": 9, \"value\": 0.6576248055289837}, {\"source\": 10, \"target\": 0, \"value\": 0.7782892154498485}, {\"source\": 10, \"target\": 1, \"value\": 0.7795983986107496}, {\"source\": 10, \"target\": 2, \"value\": 0.6103281532093938}, {\"source\": 10, \"target\": 3, \"value\": 0.30900034852440217}, {\"source\": 10, \"target\": 4, \"value\": 0.697734907512956}, {\"source\": 10, \"target\": 5, \"value\": 0.8596182957290651}, {\"source\": 10, \"target\": 6, \"value\": 0.6253237577568076}, {\"source\": 10, \"target\": 7, \"value\": 0.9824078296095496}, {\"source\": 10, \"target\": 8, \"value\": 0.9765001270158553}, {\"source\": 10, \"target\": 9, \"value\": 0.16669413119885812}, {\"source\": 11, \"target\": 0, \"value\": 0.02317813647840361}, {\"source\": 11, \"target\": 1, \"value\": 0.16074454850708164}, {\"source\": 11, \"target\": 2, \"value\": 0.9234968252590874}, {\"source\": 11, \"target\": 3, \"value\": 0.953549849879534}, {\"source\": 11, \"target\": 4, \"value\": 0.21097841871844636}, {\"source\": 11, \"target\": 5, \"value\": 0.3605252508146082}, {\"source\": 11, \"target\": 6, \"value\": 0.5493752616276721}, {\"source\": 11, \"target\": 7, \"value\": 0.2718308491769721}, {\"source\": 11, \"target\": 8, \"value\": 0.46060162107485014}, {\"source\": 11, \"target\": 9, \"value\": 0.6961615648233853}, {\"source\": 12, \"target\": 0, \"value\": 0.500355896674865}, {\"source\": 12, \"target\": 1, \"value\": 0.7160709905643361}, {\"source\": 12, \"target\": 2, \"value\": 0.525955936229779}, {\"source\": 12, \"target\": 3, \"value\": 0.0013990231190438296}, {\"source\": 12, \"target\": 4, \"value\": 0.3947002866898355}, {\"source\": 12, \"target\": 5, \"value\": 0.49216696990114994}, {\"source\": 12, \"target\": 6, \"value\": 0.40288033137914214}, {\"source\": 12, \"target\": 7, \"value\": 0.3542983001063206}, {\"source\": 12, \"target\": 8, \"value\": 0.5006143194429532}, {\"source\": 12, \"target\": 9, \"value\": 0.4451766288311383}, {\"source\": 13, \"target\": 0, \"value\": 0.09043278819643585}, {\"source\": 13, \"target\": 1, \"value\": 0.27356292002744065}, {\"source\": 13, \"target\": 2, \"value\": 0.9434770977427269}, {\"source\": 13, \"target\": 3, \"value\": 0.026544641333941965}, {\"source\": 13, \"target\": 4, \"value\": 0.039998689640650786}, {\"source\": 13, \"target\": 5, \"value\": 0.28314035971981955}, {\"source\": 13, \"target\": 6, \"value\": 0.5823441702167689}, {\"source\": 13, \"target\": 7, \"value\": 0.9908928029248271}, {\"source\": 13, \"target\": 8, \"value\": 0.9926422374029681}, {\"source\": 13, \"target\": 9, \"value\": 0.9931173724810448}, {\"source\": 14, \"target\": 0, \"value\": 0.11004833096656297}, {\"source\": 14, \"target\": 1, \"value\": 0.6644814459639401}, {\"source\": 14, \"target\": 2, \"value\": 0.5239868344883128}, {\"source\": 14, \"target\": 3, \"value\": 0.17314990980873102}, {\"source\": 14, \"target\": 4, \"value\": 0.9429602449150257}, {\"source\": 14, \"target\": 5, \"value\": 0.2418600859762523}, {\"source\": 14, \"target\": 6, \"value\": 0.998932268843212}, {\"source\": 14, \"target\": 7, \"value\": 0.5826938151498987}, {\"source\": 14, \"target\": 8, \"value\": 0.18327900063057578}, {\"source\": 14, \"target\": 9, \"value\": 0.38684542191779026}, {\"source\": 15, \"target\": 0, \"value\": 0.1896735289121496}, {\"source\": 15, \"target\": 1, \"value\": 0.41077067302531}, {\"source\": 15, \"target\": 2, \"value\": 0.5946800689017054}, {\"source\": 15, \"target\": 3, \"value\": 0.7165860931283399}, {\"source\": 15, \"target\": 4, \"value\": 0.4868914823691235}, {\"source\": 15, \"target\": 5, \"value\": 0.3095898177667046}, {\"source\": 15, \"target\": 6, \"value\": 0.5774413728278474}, {\"source\": 15, \"target\": 7, \"value\": 0.44170781956874294}, {\"source\": 15, \"target\": 8, \"value\": 0.35967810260053623}, {\"source\": 15, \"target\": 9, \"value\": 0.3213319320088136}, {\"source\": 16, \"target\": 0, \"value\": 0.20820724019602266}, {\"source\": 16, \"target\": 1, \"value\": 0.45125862406183437}, {\"source\": 16, \"target\": 2, \"value\": 0.4918429102640539}, {\"source\": 16, \"target\": 3, \"value\": 0.8990763147937112}, {\"source\": 16, \"target\": 4, \"value\": 0.7293604610294412}, {\"source\": 16, \"target\": 5, \"value\": 0.7700897729196955}, {\"source\": 16, \"target\": 6, \"value\": 0.3754392475619882}, {\"source\": 16, \"target\": 7, \"value\": 0.34373953523538436}, {\"source\": 16, \"target\": 8, \"value\": 0.6550352059993224}, {\"source\": 16, \"target\": 9, \"value\": 0.7110379932104975}, {\"source\": 17, \"target\": 0, \"value\": 0.11353757521867625}, {\"source\": 17, \"target\": 1, \"value\": 0.13302868937357504}, {\"source\": 17, \"target\": 2, \"value\": 0.45603905760612395}, {\"source\": 17, \"target\": 3, \"value\": 0.15973623015851013}, {\"source\": 17, \"target\": 4, \"value\": 0.9616419037746458}, {\"source\": 17, \"target\": 5, \"value\": 0.8376157448618098}, {\"source\": 17, \"target\": 6, \"value\": 0.5201606870379233}, {\"source\": 17, \"target\": 7, \"value\": 0.2182722577281544}, {\"source\": 17, \"target\": 8, \"value\": 0.13491872253239878}, {\"source\": 17, \"target\": 9, \"value\": 0.9790703454838688}, {\"source\": 18, \"target\": 0, \"value\": 0.7070434956891432}, {\"source\": 18, \"target\": 1, \"value\": 0.8599755569456631}, {\"source\": 18, \"target\": 2, \"value\": 0.38717262782863904}, {\"source\": 18, \"target\": 3, \"value\": 0.2508340198317248}, {\"source\": 18, \"target\": 4, \"value\": 0.29943801894470223}, {\"source\": 18, \"target\": 5, \"value\": 0.8568955284050157}, {\"source\": 18, \"target\": 6, \"value\": 0.47298399056822105}, {\"source\": 18, \"target\": 7, \"value\": 0.6632770470161282}, {\"source\": 18, \"target\": 8, \"value\": 0.8057286074367852}, {\"source\": 18, \"target\": 9, \"value\": 0.2529805046497241}, {\"source\": 19, \"target\": 0, \"value\": 0.07957343897032487}, {\"source\": 19, \"target\": 1, \"value\": 0.7327606050157152}, {\"source\": 19, \"target\": 2, \"value\": 0.9613974775036055}, {\"source\": 19, \"target\": 3, \"value\": 0.9538047341676628}, {\"source\": 19, \"target\": 4, \"value\": 0.49049905188389964}, {\"source\": 19, \"target\": 5, \"value\": 0.6321920644327551}, {\"source\": 19, \"target\": 6, \"value\": 0.7329950198379923}, {\"source\": 19, \"target\": 7, \"value\": 0.9024095032479662}, {\"source\": 19, \"target\": 8, \"value\": 0.16224691874820008}, {\"source\": 19, \"target\": 9, \"value\": 0.40588132236756125}, {\"source\": 20, \"target\": 0, \"value\": 0.41709073558366083}, {\"source\": 20, \"target\": 1, \"value\": 0.6955910282920739}, {\"source\": 20, \"target\": 2, \"value\": 0.4248472379248316}, {\"source\": 20, \"target\": 3, \"value\": 0.8581142260514297}, {\"source\": 20, \"target\": 4, \"value\": 0.846932479609419}, {\"source\": 20, \"target\": 5, \"value\": 0.07019911390868883}, {\"source\": 20, \"target\": 6, \"value\": 0.3017524134841485}, {\"source\": 20, \"target\": 7, \"value\": 0.9796236810301702}, {\"source\": 20, \"target\": 8, \"value\": 0.035626996553034807}, {\"source\": 20, \"target\": 9, \"value\": 0.4923926469985821}, {\"source\": 21, \"target\": 0, \"value\": 0.9523768530135464}, {\"source\": 21, \"target\": 1, \"value\": 0.8105737585294711}, {\"source\": 21, \"target\": 2, \"value\": 0.2943304412963712}, {\"source\": 21, \"target\": 3, \"value\": 0.5962335185183412}, {\"source\": 21, \"target\": 4, \"value\": 0.43117785229972994}, {\"source\": 21, \"target\": 5, \"value\": 0.5923975029889863}, {\"source\": 21, \"target\": 6, \"value\": 0.893752104720206}, {\"source\": 21, \"target\": 7, \"value\": 0.5540211897717062}, {\"source\": 21, \"target\": 8, \"value\": 0.4928665073452738}, {\"source\": 21, \"target\": 9, \"value\": 0.3192704571895012}, {\"source\": 22, \"target\": 0, \"value\": 0.263365783050724}, {\"source\": 22, \"target\": 1, \"value\": 0.5422806135357958}, {\"source\": 22, \"target\": 2, \"value\": 0.08226452393202399}, {\"source\": 22, \"target\": 3, \"value\": 0.6356367098253985}, {\"source\": 22, \"target\": 4, \"value\": 0.7964052251862078}, {\"source\": 22, \"target\": 5, \"value\": 0.9547475054308089}, {\"source\": 22, \"target\": 6, \"value\": 0.6846242716927129}, {\"source\": 22, \"target\": 7, \"value\": 0.48829316680509927}, {\"source\": 22, \"target\": 8, \"value\": 0.4854143101843673}, {\"source\": 22, \"target\": 9, \"value\": 0.9666929205829677}, {\"source\": 23, \"target\": 0, \"value\": 0.21134788749712163}, {\"source\": 23, \"target\": 1, \"value\": 0.41164813817783297}, {\"source\": 23, \"target\": 2, \"value\": 0.9896655767792834}, {\"source\": 23, \"target\": 3, \"value\": 0.02841185671325175}, {\"source\": 23, \"target\": 4, \"value\": 0.7013265140935161}, {\"source\": 23, \"target\": 5, \"value\": 0.0251715638848119}, {\"source\": 23, \"target\": 6, \"value\": 0.3208817260865362}, {\"source\": 23, \"target\": 7, \"value\": 0.07352706186557412}, {\"source\": 23, \"target\": 8, \"value\": 0.06088456434663547}, {\"source\": 23, \"target\": 9, \"value\": 0.11140631670405321}, {\"source\": 24, \"target\": 0, \"value\": 0.16926890814543094}, {\"source\": 24, \"target\": 1, \"value\": 0.627686279501054}, {\"source\": 24, \"target\": 2, \"value\": 0.43839309463984333}, {\"source\": 24, \"target\": 3, \"value\": 0.8309037646039747}, {\"source\": 24, \"target\": 4, \"value\": 0.23979218956447224}, {\"source\": 24, \"target\": 5, \"value\": 0.19005270791973705}, {\"source\": 24, \"target\": 6, \"value\": 0.7118996585829157}, {\"source\": 24, \"target\": 7, \"value\": 0.8582949253267775}, {\"source\": 24, \"target\": 8, \"value\": 0.5590558855960195}, {\"source\": 24, \"target\": 9, \"value\": 0.7044204082888571}, {\"source\": 25, \"target\": 0, \"value\": 0.605112035518179}, {\"source\": 25, \"target\": 1, \"value\": 0.5592172832680401}, {\"source\": 25, \"target\": 2, \"value\": 0.8603941909075867}, {\"source\": 25, \"target\": 3, \"value\": 0.9197553591500698}, {\"source\": 25, \"target\": 4, \"value\": 0.8496073257589813}, {\"source\": 25, \"target\": 5, \"value\": 0.2544665354944545}, {\"source\": 25, \"target\": 6, \"value\": 0.8775555422867709}, {\"source\": 25, \"target\": 7, \"value\": 0.43513019009222575}, {\"source\": 25, \"target\": 8, \"value\": 0.729494343964508}, {\"source\": 25, \"target\": 9, \"value\": 0.4126407675387943}, {\"source\": 26, \"target\": 0, \"value\": 0.1908360458112225}, {\"source\": 26, \"target\": 1, \"value\": 0.7060195199561622}, {\"source\": 26, \"target\": 2, \"value\": 0.24063282092985294}, {\"source\": 26, \"target\": 3, \"value\": 0.8513244268329954}, {\"source\": 26, \"target\": 4, \"value\": 0.8241022892585868}, {\"source\": 26, \"target\": 5, \"value\": 0.5252117866139705}, {\"source\": 26, \"target\": 6, \"value\": 0.3863407943061684}, {\"source\": 26, \"target\": 7, \"value\": 0.5908807907349247}, {\"source\": 26, \"target\": 8, \"value\": 0.13752361490782572}, {\"source\": 26, \"target\": 9, \"value\": 0.8082704078916083}, {\"source\": 27, \"target\": 0, \"value\": 0.965825815244485}, {\"source\": 27, \"target\": 1, \"value\": 0.7797958042329348}, {\"source\": 27, \"target\": 2, \"value\": 0.23933508209581977}, {\"source\": 27, \"target\": 3, \"value\": 0.8672604131084306}, {\"source\": 27, \"target\": 4, \"value\": 0.8081150128937004}, {\"source\": 27, \"target\": 5, \"value\": 0.06368112422046845}, {\"source\": 27, \"target\": 6, \"value\": 0.231228304048803}, {\"source\": 27, \"target\": 7, \"value\": 0.5896854487035268}, {\"source\": 27, \"target\": 8, \"value\": 0.13748694797777417}, {\"source\": 27, \"target\": 9, \"value\": 0.6784407043714858}, {\"source\": 28, \"target\": 0, \"value\": 0.9921906895152471}, {\"source\": 28, \"target\": 1, \"value\": 0.28575198481557174}, {\"source\": 28, \"target\": 2, \"value\": 0.7609127595588501}, {\"source\": 28, \"target\": 3, \"value\": 0.046527167666138625}, {\"source\": 28, \"target\": 4, \"value\": 0.33253590652220666}, {\"source\": 28, \"target\": 5, \"value\": 0.9445527910270574}, {\"source\": 28, \"target\": 6, \"value\": 0.6365170412547786}, {\"source\": 28, \"target\": 7, \"value\": 0.6018486061318925}, {\"source\": 28, \"target\": 8, \"value\": 0.9281846814636464}, {\"source\": 28, \"target\": 9, \"value\": 0.18167941079661343}, {\"source\": 29, \"target\": 0, \"value\": 0.017823184026521055}, {\"source\": 29, \"target\": 1, \"value\": 0.1900721761341725}, {\"source\": 29, \"target\": 2, \"value\": 0.5218717978245897}, {\"source\": 29, \"target\": 3, \"value\": 0.49582198590367044}, {\"source\": 29, \"target\": 4, \"value\": 0.8004912055691525}, {\"source\": 29, \"target\": 5, \"value\": 0.8594363114449111}, {\"source\": 29, \"target\": 6, \"value\": 0.21295603224034498}, {\"source\": 29, \"target\": 7, \"value\": 0.43726884144766365}, {\"source\": 29, \"target\": 8, \"value\": 0.42161750906258955}, {\"source\": 29, \"target\": 9, \"value\": 0.0547173770819418}, {\"source\": 30, \"target\": 0, \"value\": 0.009933693670982957}, {\"source\": 30, \"target\": 1, \"value\": 0.7897656793360066}, {\"source\": 30, \"target\": 2, \"value\": 0.27531321879489834}, {\"source\": 30, \"target\": 3, \"value\": 0.7177400045433364}, {\"source\": 30, \"target\": 4, \"value\": 0.4213559217565558}, {\"source\": 30, \"target\": 5, \"value\": 0.14333587216899957}, {\"source\": 30, \"target\": 6, \"value\": 0.19252168025197935}, {\"source\": 30, \"target\": 7, \"value\": 0.3138152333176353}, {\"source\": 30, \"target\": 8, \"value\": 0.8051701673672972}, {\"source\": 30, \"target\": 9, \"value\": 0.012625830357479995}, {\"source\": 31, \"target\": 0, \"value\": 0.0491059726975559}, {\"source\": 31, \"target\": 1, \"value\": 0.5660003849850935}, {\"source\": 31, \"target\": 2, \"value\": 0.686810696154396}, {\"source\": 31, \"target\": 3, \"value\": 0.7268109050517068}, {\"source\": 31, \"target\": 4, \"value\": 0.47969376130167696}, {\"source\": 31, \"target\": 5, \"value\": 0.3676567217785285}, {\"source\": 31, \"target\": 6, \"value\": 0.8399700992017514}, {\"source\": 31, \"target\": 7, \"value\": 0.45416355245100537}, {\"source\": 31, \"target\": 8, \"value\": 0.3213658387821987}, {\"source\": 31, \"target\": 9, \"value\": 0.09271986717104153}, {\"source\": 32, \"target\": 0, \"value\": 0.06043793213558557}, {\"source\": 32, \"target\": 1, \"value\": 0.09095116720087482}, {\"source\": 32, \"target\": 2, \"value\": 0.6827064564283071}, {\"source\": 32, \"target\": 3, \"value\": 0.6807357672306377}, {\"source\": 32, \"target\": 4, \"value\": 0.24317416588742535}, {\"source\": 32, \"target\": 5, \"value\": 0.6404614421560298}, {\"source\": 32, \"target\": 6, \"value\": 0.06913918311155143}, {\"source\": 32, \"target\": 7, \"value\": 0.8729199617462652}, {\"source\": 32, \"target\": 8, \"value\": 0.10960694983251273}, {\"source\": 32, \"target\": 9, \"value\": 0.16905576511943454}, {\"source\": 33, \"target\": 0, \"value\": 0.46737799144534753}, {\"source\": 33, \"target\": 1, \"value\": 0.7759492194033726}, {\"source\": 33, \"target\": 2, \"value\": 0.8544445157050565}, {\"source\": 33, \"target\": 3, \"value\": 0.21038644476715873}, {\"source\": 33, \"target\": 4, \"value\": 0.07664186926890304}, {\"source\": 33, \"target\": 5, \"value\": 0.788914797103218}, {\"source\": 33, \"target\": 6, \"value\": 0.5475000011493021}, {\"source\": 33, \"target\": 7, \"value\": 0.7862548628154125}, {\"source\": 33, \"target\": 8, \"value\": 0.9200470428587104}, {\"source\": 33, \"target\": 9, \"value\": 0.4809727659278811}, {\"source\": 34, \"target\": 0, \"value\": 0.459553670010184}, {\"source\": 34, \"target\": 1, \"value\": 0.5989791554809532}, {\"source\": 34, \"target\": 2, \"value\": 0.5993187807242845}, {\"source\": 34, \"target\": 3, \"value\": 0.5043734512337575}, {\"source\": 34, \"target\": 4, \"value\": 0.30687852974345065}, {\"source\": 34, \"target\": 5, \"value\": 0.5413529803491126}, {\"source\": 34, \"target\": 6, \"value\": 0.9249269434027916}, {\"source\": 34, \"target\": 7, \"value\": 0.9705508020302188}, {\"source\": 34, \"target\": 8, \"value\": 0.39579460989699644}, {\"source\": 34, \"target\": 9, \"value\": 0.7987452725553391}, {\"source\": 35, \"target\": 0, \"value\": 0.6350881477509265}, {\"source\": 35, \"target\": 1, \"value\": 0.2299691652490331}, {\"source\": 35, \"target\": 2, \"value\": 0.05120709286293723}, {\"source\": 35, \"target\": 3, \"value\": 0.028463806171351802}, {\"source\": 35, \"target\": 4, \"value\": 0.1228477519037694}, {\"source\": 35, \"target\": 5, \"value\": 0.2202125178336386}, {\"source\": 35, \"target\": 6, \"value\": 0.8290227537008228}, {\"source\": 35, \"target\": 7, \"value\": 0.28549182770003945}, {\"source\": 35, \"target\": 8, \"value\": 0.7810640826310915}, {\"source\": 35, \"target\": 9, \"value\": 0.5046658125966791}, {\"source\": 36, \"target\": 0, \"value\": 0.1384489237765847}, {\"source\": 36, \"target\": 1, \"value\": 0.778036552333978}, {\"source\": 36, \"target\": 2, \"value\": 0.9213317935208427}, {\"source\": 36, \"target\": 3, \"value\": 0.9430186320361914}, {\"source\": 36, \"target\": 4, \"value\": 0.7044357972639433}, {\"source\": 36, \"target\": 5, \"value\": 0.6939164454759088}, {\"source\": 36, \"target\": 6, \"value\": 0.546551813367495}, {\"source\": 36, \"target\": 7, \"value\": 0.36921722973788307}, {\"source\": 36, \"target\": 8, \"value\": 0.982467574726993}, {\"source\": 36, \"target\": 9, \"value\": 0.0656092254275048}, {\"source\": 37, \"target\": 0, \"value\": 0.8976783107422656}, {\"source\": 37, \"target\": 1, \"value\": 0.26393098909487067}, {\"source\": 37, \"target\": 2, \"value\": 0.5744758420233385}, {\"source\": 37, \"target\": 3, \"value\": 0.5128662680937877}, {\"source\": 37, \"target\": 4, \"value\": 0.554476808071934}, {\"source\": 37, \"target\": 5, \"value\": 0.6471673318283991}, {\"source\": 37, \"target\": 6, \"value\": 0.1854741590544805}, {\"source\": 37, \"target\": 7, \"value\": 0.27197820430902153}, {\"source\": 37, \"target\": 8, \"value\": 0.14843865774278353}, {\"source\": 37, \"target\": 9, \"value\": 0.030304170594405044}, {\"source\": 38, \"target\": 0, \"value\": 0.9392555841521393}, {\"source\": 38, \"target\": 1, \"value\": 0.34675413017620393}, {\"source\": 38, \"target\": 2, \"value\": 0.10956460430560977}, {\"source\": 38, \"target\": 3, \"value\": 0.3783269956614701}, {\"source\": 38, \"target\": 4, \"value\": 0.38407945904141416}, {\"source\": 38, \"target\": 5, \"value\": 0.6654236879194613}, {\"source\": 38, \"target\": 6, \"value\": 0.24449092930615968}, {\"source\": 38, \"target\": 7, \"value\": 0.661480973773685}, {\"source\": 38, \"target\": 8, \"value\": 0.09849288379186216}, {\"source\": 38, \"target\": 9, \"value\": 0.5808627476668515}, {\"source\": 39, \"target\": 0, \"value\": 0.10686550466855071}, {\"source\": 39, \"target\": 1, \"value\": 0.5482545074639875}, {\"source\": 39, \"target\": 2, \"value\": 0.5197517077112073}, {\"source\": 39, \"target\": 3, \"value\": 0.2962341178657576}, {\"source\": 39, \"target\": 4, \"value\": 0.45572905099809846}, {\"source\": 39, \"target\": 5, \"value\": 0.03866652012956684}, {\"source\": 39, \"target\": 6, \"value\": 0.5990030248885009}, {\"source\": 39, \"target\": 7, \"value\": 0.0004867594752598903}, {\"source\": 39, \"target\": 8, \"value\": 0.5018135936855311}, {\"source\": 39, \"target\": 9, \"value\": 0.5017261216916143}, {\"source\": 40, \"target\": 0, \"value\": 0.06066969591495719}, {\"source\": 40, \"target\": 1, \"value\": 0.9498369391498449}, {\"source\": 40, \"target\": 2, \"value\": 0.6086590451398208}, {\"source\": 40, \"target\": 3, \"value\": 0.6720026837921436}, {\"source\": 40, \"target\": 4, \"value\": 0.4627735236945656}, {\"source\": 40, \"target\": 5, \"value\": 0.7042730952349673}, {\"source\": 40, \"target\": 6, \"value\": 0.18106714116610723}, {\"source\": 40, \"target\": 7, \"value\": 0.6475821773323257}, {\"source\": 40, \"target\": 8, \"value\": 0.5681087348454958}, {\"source\": 40, \"target\": 9, \"value\": 0.9541383145344952}, {\"source\": 41, \"target\": 0, \"value\": 0.7966902388813616}, {\"source\": 41, \"target\": 1, \"value\": 0.5853103927119501}, {\"source\": 41, \"target\": 2, \"value\": 0.4553549670732038}, {\"source\": 41, \"target\": 3, \"value\": 0.7384515305314945}, {\"source\": 41, \"target\": 4, \"value\": 0.8122362779627881}, {\"source\": 41, \"target\": 5, \"value\": 0.9272911735521501}, {\"source\": 41, \"target\": 6, \"value\": 0.8263756067215121}, {\"source\": 41, \"target\": 7, \"value\": 0.029956597665086293}, {\"source\": 41, \"target\": 8, \"value\": 0.7728028218089087}, {\"source\": 41, \"target\": 9, \"value\": 0.5217773936163203}, {\"source\": 42, \"target\": 0, \"value\": 0.885387332241226}, {\"source\": 42, \"target\": 1, \"value\": 0.45856166708365387}, {\"source\": 42, \"target\": 2, \"value\": 0.5407225761596202}, {\"source\": 42, \"target\": 3, \"value\": 0.9077649982654136}, {\"source\": 42, \"target\": 4, \"value\": 0.5563100402768733}, {\"source\": 42, \"target\": 5, \"value\": 0.18711472229064618}, {\"source\": 42, \"target\": 6, \"value\": 0.6811113675419537}, {\"source\": 42, \"target\": 7, \"value\": 0.013846685418091642}, {\"source\": 42, \"target\": 8, \"value\": 0.38009165785093446}, {\"source\": 42, \"target\": 9, \"value\": 0.8086844901333918}, {\"source\": 43, \"target\": 0, \"value\": 0.5761254124118753}, {\"source\": 43, \"target\": 1, \"value\": 0.15178450453000336}, {\"source\": 43, \"target\": 2, \"value\": 0.32985476037950434}, {\"source\": 43, \"target\": 3, \"value\": 0.9517731461483258}, {\"source\": 43, \"target\": 4, \"value\": 0.0303847229992098}, {\"source\": 43, \"target\": 5, \"value\": 0.7781735271559485}, {\"source\": 43, \"target\": 6, \"value\": 0.1813838598387736}, {\"source\": 43, \"target\": 7, \"value\": 0.21365686845063014}, {\"source\": 43, \"target\": 8, \"value\": 0.6525962229220905}, {\"source\": 43, \"target\": 9, \"value\": 0.14409194606082942}, {\"source\": 44, \"target\": 0, \"value\": 0.3810072706070531}, {\"source\": 44, \"target\": 1, \"value\": 0.4057345325726489}, {\"source\": 44, \"target\": 2, \"value\": 0.6589654345726036}, {\"source\": 44, \"target\": 3, \"value\": 0.5118226737134436}, {\"source\": 44, \"target\": 4, \"value\": 0.4825851038502419}, {\"source\": 44, \"target\": 5, \"value\": 0.5240217982839889}, {\"source\": 44, \"target\": 6, \"value\": 0.8062858732427213}, {\"source\": 44, \"target\": 7, \"value\": 0.8043910806692938}, {\"source\": 44, \"target\": 8, \"value\": 0.14770043610250894}, {\"source\": 44, \"target\": 9, \"value\": 0.9934535770806974}, {\"source\": 45, \"target\": 0, \"value\": 0.067767735751191}, {\"source\": 45, \"target\": 1, \"value\": 0.9958158069623947}, {\"source\": 45, \"target\": 2, \"value\": 0.12344969265330885}, {\"source\": 45, \"target\": 3, \"value\": 0.06192919793340079}, {\"source\": 45, \"target\": 4, \"value\": 0.7040354417782194}, {\"source\": 45, \"target\": 5, \"value\": 0.9609796529778833}, {\"source\": 45, \"target\": 6, \"value\": 0.712150947902339}, {\"source\": 45, \"target\": 7, \"value\": 0.6630813223207347}, {\"source\": 45, \"target\": 8, \"value\": 0.13367496222456432}, {\"source\": 45, \"target\": 9, \"value\": 0.1803451692283481}, {\"source\": 46, \"target\": 0, \"value\": 0.15671586892228329}, {\"source\": 46, \"target\": 1, \"value\": 0.0904734812788307}, {\"source\": 46, \"target\": 2, \"value\": 0.9718661482450326}, {\"source\": 46, \"target\": 3, \"value\": 0.5098611302849001}, {\"source\": 46, \"target\": 4, \"value\": 0.4508774763010518}, {\"source\": 46, \"target\": 5, \"value\": 0.3297009784972129}, {\"source\": 46, \"target\": 6, \"value\": 0.49351204204947463}, {\"source\": 46, \"target\": 7, \"value\": 0.14360098508058272}, {\"source\": 46, \"target\": 8, \"value\": 0.1509202908404773}, {\"source\": 46, \"target\": 9, \"value\": 0.8153385794598776}, {\"source\": 47, \"target\": 0, \"value\": 0.2112818837963617}, {\"source\": 47, \"target\": 1, \"value\": 0.08654232235729176}, {\"source\": 47, \"target\": 2, \"value\": 0.38725741753121723}, {\"source\": 47, \"target\": 3, \"value\": 0.8934034140221164}, {\"source\": 47, \"target\": 4, \"value\": 0.4286432979428625}, {\"source\": 47, \"target\": 5, \"value\": 0.7663040121802115}, {\"source\": 47, \"target\": 6, \"value\": 0.9952654020174069}, {\"source\": 47, \"target\": 7, \"value\": 0.020062850895111617}, {\"source\": 47, \"target\": 8, \"value\": 0.10819822866909212}, {\"source\": 47, \"target\": 9, \"value\": 0.69474267149362}, {\"source\": 48, \"target\": 0, \"value\": 0.8906640504565513}, {\"source\": 48, \"target\": 1, \"value\": 0.4924763237765829}, {\"source\": 48, \"target\": 2, \"value\": 0.07026799039549492}, {\"source\": 48, \"target\": 3, \"value\": 0.08843736434987892}, {\"source\": 48, \"target\": 4, \"value\": 0.10620815853048937}, {\"source\": 48, \"target\": 5, \"value\": 0.20125887824678435}, {\"source\": 48, \"target\": 6, \"value\": 0.8773640053306407}, {\"source\": 48, \"target\": 7, \"value\": 0.9432225022019286}, {\"source\": 48, \"target\": 8, \"value\": 0.13563613798031937}, {\"source\": 48, \"target\": 9, \"value\": 0.8587269726838475}, {\"source\": 49, \"target\": 0, \"value\": 0.7571582824355558}, {\"source\": 49, \"target\": 1, \"value\": 0.6861716144556532}, {\"source\": 49, \"target\": 2, \"value\": 0.8563933901602275}, {\"source\": 49, \"target\": 3, \"value\": 0.23087775291356172}, {\"source\": 49, \"target\": 4, \"value\": 0.5193379792114721}, {\"source\": 49, \"target\": 5, \"value\": 0.3433334451764454}, {\"source\": 49, \"target\": 6, \"value\": 0.6587729293586823}, {\"source\": 49, \"target\": 7, \"value\": 0.28279025386662415}, {\"source\": 49, \"target\": 8, \"value\": 0.502466433756727}, {\"source\": 49, \"target\": 9, \"value\": 0.30327751955275506}, {\"source\": 50, \"target\": 0, \"value\": 0.5525294234343233}, {\"source\": 50, \"target\": 1, \"value\": 0.16112709705428085}, {\"source\": 50, \"target\": 2, \"value\": 0.568548964618283}, {\"source\": 50, \"target\": 3, \"value\": 0.4857098681067773}, {\"source\": 50, \"target\": 4, \"value\": 0.12751954351366868}, {\"source\": 50, \"target\": 5, \"value\": 0.5436921692300374}, {\"source\": 50, \"target\": 6, \"value\": 0.20049060873265778}, {\"source\": 50, \"target\": 7, \"value\": 0.6701608599998026}, {\"source\": 50, \"target\": 8, \"value\": 0.5581122170361856}, {\"source\": 50, \"target\": 9, \"value\": 0.2323783174916082}, {\"source\": 51, \"target\": 0, \"value\": 0.5155884856098234}, {\"source\": 51, \"target\": 1, \"value\": 0.3149919734186799}, {\"source\": 51, \"target\": 2, \"value\": 0.8465925489214037}, {\"source\": 51, \"target\": 3, \"value\": 0.44737628027740306}, {\"source\": 51, \"target\": 4, \"value\": 0.10008522439470402}, {\"source\": 51, \"target\": 5, \"value\": 0.9015920853941103}, {\"source\": 51, \"target\": 6, \"value\": 0.8560882485516653}, {\"source\": 51, \"target\": 7, \"value\": 0.2863298739118133}, {\"source\": 51, \"target\": 8, \"value\": 0.25901477045356636}, {\"source\": 51, \"target\": 9, \"value\": 0.06637137355819867}, {\"source\": 52, \"target\": 0, \"value\": 0.3176316716278835}, {\"source\": 52, \"target\": 1, \"value\": 0.05184299524331337}, {\"source\": 52, \"target\": 2, \"value\": 0.9441883178319019}, {\"source\": 52, \"target\": 3, \"value\": 0.7172173020432209}, {\"source\": 52, \"target\": 4, \"value\": 0.553659200161456}, {\"source\": 52, \"target\": 5, \"value\": 0.35974476987985604}, {\"source\": 52, \"target\": 6, \"value\": 0.15918230108432907}, {\"source\": 52, \"target\": 7, \"value\": 0.43295804116479997}, {\"source\": 52, \"target\": 8, \"value\": 0.2793621769098912}, {\"source\": 52, \"target\": 9, \"value\": 0.9610376321653145}, {\"source\": 53, \"target\": 0, \"value\": 0.09813215580838908}, {\"source\": 53, \"target\": 1, \"value\": 0.40699555242514285}, {\"source\": 53, \"target\": 2, \"value\": 0.008376446001807092}, {\"source\": 53, \"target\": 3, \"value\": 0.5680589295963213}, {\"source\": 53, \"target\": 4, \"value\": 0.5766097683672401}, {\"source\": 53, \"target\": 5, \"value\": 0.1371442613273378}, {\"source\": 53, \"target\": 6, \"value\": 0.6722185660414206}, {\"source\": 53, \"target\": 7, \"value\": 0.1428737274580416}, {\"source\": 53, \"target\": 8, \"value\": 0.5092314972536864}, {\"source\": 53, \"target\": 9, \"value\": 0.36876195253012645}, {\"source\": 54, \"target\": 0, \"value\": 0.2491073893585356}, {\"source\": 54, \"target\": 1, \"value\": 0.13628212203334145}, {\"source\": 54, \"target\": 2, \"value\": 0.11929113212325759}, {\"source\": 54, \"target\": 3, \"value\": 0.05238812645692448}, {\"source\": 54, \"target\": 4, \"value\": 0.4348993146930489}, {\"source\": 54, \"target\": 5, \"value\": 0.7707053805867863}, {\"source\": 54, \"target\": 6, \"value\": 0.8509141823068277}, {\"source\": 54, \"target\": 7, \"value\": 0.6212826674295909}, {\"source\": 54, \"target\": 8, \"value\": 0.37988768839810483}, {\"source\": 54, \"target\": 9, \"value\": 0.6799110364172396}, {\"source\": 55, \"target\": 0, \"value\": 0.3137655042597186}, {\"source\": 55, \"target\": 1, \"value\": 0.726637982999317}, {\"source\": 55, \"target\": 2, \"value\": 0.9144831910873826}, {\"source\": 55, \"target\": 3, \"value\": 0.094895480739556}, {\"source\": 55, \"target\": 4, \"value\": 0.6649769518322519}, {\"source\": 55, \"target\": 5, \"value\": 0.35687279405119077}, {\"source\": 55, \"target\": 6, \"value\": 0.7622909202623359}, {\"source\": 55, \"target\": 7, \"value\": 0.9450056911510231}, {\"source\": 55, \"target\": 8, \"value\": 0.22374220285139934}, {\"source\": 55, \"target\": 9, \"value\": 0.05725321925421012}, {\"source\": 56, \"target\": 0, \"value\": 0.6428018502331379}, {\"source\": 56, \"target\": 1, \"value\": 0.0887771085528527}, {\"source\": 56, \"target\": 2, \"value\": 0.6679384149986543}, {\"source\": 56, \"target\": 3, \"value\": 0.6072213851311274}, {\"source\": 56, \"target\": 4, \"value\": 0.01959981977284353}, {\"source\": 56, \"target\": 5, \"value\": 0.3937933443577386}, {\"source\": 56, \"target\": 6, \"value\": 0.4595073026861176}, {\"source\": 56, \"target\": 7, \"value\": 0.021136011560755397}, {\"source\": 56, \"target\": 8, \"value\": 0.37369090134501737}, {\"source\": 56, \"target\": 9, \"value\": 0.5655671369760998}, {\"source\": 57, \"target\": 0, \"value\": 0.00887517698156215}, {\"source\": 57, \"target\": 1, \"value\": 0.16284534638833636}, {\"source\": 57, \"target\": 2, \"value\": 0.8981317369729009}, {\"source\": 57, \"target\": 3, \"value\": 0.35543331858117866}, {\"source\": 57, \"target\": 4, \"value\": 0.3097535151674734}, {\"source\": 57, \"target\": 5, \"value\": 0.5821566782631048}, {\"source\": 57, \"target\": 6, \"value\": 0.5221646219283154}, {\"source\": 57, \"target\": 7, \"value\": 0.8824557693517251}, {\"source\": 57, \"target\": 8, \"value\": 0.2723444648400082}, {\"source\": 57, \"target\": 9, \"value\": 0.2998200567828857}, {\"source\": 58, \"target\": 0, \"value\": 0.3083867067948075}, {\"source\": 58, \"target\": 1, \"value\": 0.10100427170620596}, {\"source\": 58, \"target\": 2, \"value\": 0.29502169857893545}, {\"source\": 58, \"target\": 3, \"value\": 0.7289047920416258}, {\"source\": 58, \"target\": 4, \"value\": 0.34187889271524396}, {\"source\": 58, \"target\": 5, \"value\": 0.2860681555183966}, {\"source\": 58, \"target\": 6, \"value\": 0.9563476061071962}, {\"source\": 58, \"target\": 7, \"value\": 0.9994791511322937}, {\"source\": 58, \"target\": 8, \"value\": 0.3373519213932864}, {\"source\": 58, \"target\": 9, \"value\": 0.4751215567999363}, {\"source\": 59, \"target\": 0, \"value\": 0.8296496599906129}, {\"source\": 59, \"target\": 1, \"value\": 0.09940514628180974}, {\"source\": 59, \"target\": 2, \"value\": 0.50811464169943}, {\"source\": 59, \"target\": 3, \"value\": 0.8338365663554891}, {\"source\": 59, \"target\": 4, \"value\": 0.7701229934134927}, {\"source\": 59, \"target\": 5, \"value\": 0.8160003497549749}, {\"source\": 59, \"target\": 6, \"value\": 0.051549976415450005}, {\"source\": 59, \"target\": 7, \"value\": 0.6813237878724938}, {\"source\": 59, \"target\": 8, \"value\": 0.9632936328077967}, {\"source\": 59, \"target\": 9, \"value\": 0.7009474565722479}, {\"source\": 60, \"target\": 0, \"value\": 0.4098464718143954}, {\"source\": 60, \"target\": 1, \"value\": 0.2070405888350909}, {\"source\": 60, \"target\": 2, \"value\": 0.9560226669224692}, {\"source\": 60, \"target\": 3, \"value\": 0.40601117716635504}, {\"source\": 60, \"target\": 4, \"value\": 0.716880130904611}, {\"source\": 60, \"target\": 5, \"value\": 0.6723314084399745}, {\"source\": 60, \"target\": 6, \"value\": 0.8421371025537246}, {\"source\": 60, \"target\": 7, \"value\": 0.940740392297392}, {\"source\": 60, \"target\": 8, \"value\": 0.4698011067009591}, {\"source\": 60, \"target\": 9, \"value\": 0.10771652388871167}, {\"source\": 61, \"target\": 0, \"value\": 0.5666853987413368}, {\"source\": 61, \"target\": 1, \"value\": 0.9797770299024345}, {\"source\": 61, \"target\": 2, \"value\": 0.4339147015301905}, {\"source\": 61, \"target\": 3, \"value\": 0.8180344364829785}, {\"source\": 61, \"target\": 4, \"value\": 0.43724959672412667}, {\"source\": 61, \"target\": 5, \"value\": 0.8105342992752003}, {\"source\": 61, \"target\": 6, \"value\": 0.22960846580858452}, {\"source\": 61, \"target\": 7, \"value\": 0.4109781451687913}, {\"source\": 61, \"target\": 8, \"value\": 0.7309511398181268}, {\"source\": 61, \"target\": 9, \"value\": 0.6373144062380719}, {\"source\": 62, \"target\": 0, \"value\": 0.7691426808213709}, {\"source\": 62, \"target\": 1, \"value\": 0.9562240422458972}, {\"source\": 62, \"target\": 2, \"value\": 0.3760066618461234}, {\"source\": 62, \"target\": 3, \"value\": 0.8957014217970638}, {\"source\": 62, \"target\": 4, \"value\": 0.20848049565757376}, {\"source\": 62, \"target\": 5, \"value\": 0.06319643998308144}, {\"source\": 62, \"target\": 6, \"value\": 0.2394216729185552}, {\"source\": 62, \"target\": 7, \"value\": 0.7801992488254825}, {\"source\": 62, \"target\": 8, \"value\": 0.3760754415175315}, {\"source\": 62, \"target\": 9, \"value\": 0.5814837295524542}, {\"source\": 63, \"target\": 0, \"value\": 0.2417021356737692}, {\"source\": 63, \"target\": 1, \"value\": 0.4385545867531734}, {\"source\": 63, \"target\": 2, \"value\": 0.18045227317063817}, {\"source\": 63, \"target\": 3, \"value\": 0.37312046783579444}, {\"source\": 63, \"target\": 4, \"value\": 0.8639333907383302}, {\"source\": 63, \"target\": 5, \"value\": 0.8559936753056242}, {\"source\": 63, \"target\": 6, \"value\": 0.940079549566491}, {\"source\": 63, \"target\": 7, \"value\": 0.4057399896621089}, {\"source\": 63, \"target\": 8, \"value\": 0.9823102135057693}, {\"source\": 63, \"target\": 9, \"value\": 0.4826039437830758}, {\"source\": 64, \"target\": 0, \"value\": 0.8771207824694917}, {\"source\": 64, \"target\": 1, \"value\": 0.4088792202469834}, {\"source\": 64, \"target\": 2, \"value\": 0.31977322627438365}, {\"source\": 64, \"target\": 3, \"value\": 0.6424685981654128}, {\"source\": 64, \"target\": 4, \"value\": 0.7093654458159975}, {\"source\": 64, \"target\": 5, \"value\": 0.7423468167300954}, {\"source\": 64, \"target\": 6, \"value\": 0.604514627149687}, {\"source\": 64, \"target\": 7, \"value\": 0.8584415473916255}, {\"source\": 64, \"target\": 8, \"value\": 0.6499068382880037}, {\"source\": 64, \"target\": 9, \"value\": 0.270485889197416}, {\"source\": 65, \"target\": 0, \"value\": 0.8584748656310555}, {\"source\": 65, \"target\": 1, \"value\": 0.1808249680067895}, {\"source\": 65, \"target\": 2, \"value\": 0.5377051151480724}, {\"source\": 65, \"target\": 3, \"value\": 0.38692991753348105}, {\"source\": 65, \"target\": 4, \"value\": 0.6195852092738365}, {\"source\": 65, \"target\": 5, \"value\": 0.5485863059731005}, {\"source\": 65, \"target\": 6, \"value\": 0.46389401201881464}, {\"source\": 65, \"target\": 7, \"value\": 0.8264448382313554}, {\"source\": 65, \"target\": 8, \"value\": 0.40099782742517387}, {\"source\": 65, \"target\": 9, \"value\": 0.6195032797683993}, {\"source\": 66, \"target\": 0, \"value\": 0.5007091183337946}, {\"source\": 66, \"target\": 1, \"value\": 0.5008895041536758}, {\"source\": 66, \"target\": 2, \"value\": 0.6089031038167406}, {\"source\": 66, \"target\": 3, \"value\": 0.9953652409958986}, {\"source\": 66, \"target\": 4, \"value\": 0.24794951921663877}, {\"source\": 66, \"target\": 5, \"value\": 0.7384334058920138}, {\"source\": 66, \"target\": 6, \"value\": 0.9300439181805716}, {\"source\": 66, \"target\": 7, \"value\": 0.5844120756954285}, {\"source\": 66, \"target\": 8, \"value\": 0.8806471520789401}, {\"source\": 66, \"target\": 9, \"value\": 0.6920591198056676}, {\"source\": 67, \"target\": 0, \"value\": 0.35141827940417747}, {\"source\": 67, \"target\": 1, \"value\": 0.8206994508517493}, {\"source\": 67, \"target\": 2, \"value\": 0.2370849611913043}, {\"source\": 67, \"target\": 3, \"value\": 0.9216936684824427}, {\"source\": 67, \"target\": 4, \"value\": 0.9188489045540845}, {\"source\": 67, \"target\": 5, \"value\": 0.6295307118357462}, {\"source\": 67, \"target\": 6, \"value\": 0.5122231170341107}, {\"source\": 67, \"target\": 7, \"value\": 0.29985152129987824}, {\"source\": 67, \"target\": 8, \"value\": 0.4510620990884934}, {\"source\": 67, \"target\": 9, \"value\": 0.7171435833472242}, {\"source\": 68, \"target\": 0, \"value\": 0.2897107697174295}, {\"source\": 68, \"target\": 1, \"value\": 0.20884415472966478}, {\"source\": 68, \"target\": 2, \"value\": 0.31653691874943835}, {\"source\": 68, \"target\": 3, \"value\": 0.5732346168518381}, {\"source\": 68, \"target\": 4, \"value\": 0.46252622730189574}, {\"source\": 68, \"target\": 5, \"value\": 0.5026185641627156}, {\"source\": 68, \"target\": 6, \"value\": 0.4872415437421902}, {\"source\": 68, \"target\": 7, \"value\": 0.779227269647643}, {\"source\": 68, \"target\": 8, \"value\": 0.39013589036969454}, {\"source\": 68, \"target\": 9, \"value\": 0.7685351778741765}, {\"source\": 69, \"target\": 0, \"value\": 0.8614682627614487}, {\"source\": 69, \"target\": 1, \"value\": 0.15345044177087064}, {\"source\": 69, \"target\": 2, \"value\": 0.6153544991431779}, {\"source\": 69, \"target\": 3, \"value\": 0.5132315524167129}, {\"source\": 69, \"target\": 4, \"value\": 0.9892656389217689}, {\"source\": 69, \"target\": 5, \"value\": 0.08282528798350319}, {\"source\": 69, \"target\": 6, \"value\": 0.7114699262161587}, {\"source\": 69, \"target\": 7, \"value\": 0.27315441706016785}, {\"source\": 69, \"target\": 8, \"value\": 0.9949414263945612}, {\"source\": 69, \"target\": 9, \"value\": 0.35472791394445913}, {\"source\": 70, \"target\": 0, \"value\": 0.0886254141339946}, {\"source\": 70, \"target\": 1, \"value\": 0.9832503769165538}, {\"source\": 70, \"target\": 2, \"value\": 0.479242981871837}, {\"source\": 70, \"target\": 3, \"value\": 0.4821670204872105}, {\"source\": 70, \"target\": 4, \"value\": 0.5265454160436102}, {\"source\": 70, \"target\": 5, \"value\": 0.9430743268241158}, {\"source\": 70, \"target\": 6, \"value\": 0.4907038517169977}, {\"source\": 70, \"target\": 7, \"value\": 0.030130396160569006}, {\"source\": 70, \"target\": 8, \"value\": 0.9354703428207063}, {\"source\": 70, \"target\": 9, \"value\": 0.7472800008826406}, {\"source\": 71, \"target\": 0, \"value\": 0.7304114921128106}, {\"source\": 71, \"target\": 1, \"value\": 0.10528115445790953}, {\"source\": 71, \"target\": 2, \"value\": 0.7656025630259959}, {\"source\": 71, \"target\": 3, \"value\": 0.7078790446085943}, {\"source\": 71, \"target\": 4, \"value\": 0.9225381437161363}, {\"source\": 71, \"target\": 5, \"value\": 0.5090713624505511}, {\"source\": 71, \"target\": 6, \"value\": 0.7121099683829537}, {\"source\": 71, \"target\": 7, \"value\": 0.8710483215307725}, {\"source\": 71, \"target\": 8, \"value\": 0.43066181495719147}, {\"source\": 71, \"target\": 9, \"value\": 0.48712869117962754}, {\"source\": 72, \"target\": 0, \"value\": 0.12223180018508994}, {\"source\": 72, \"target\": 1, \"value\": 0.1900160836371645}, {\"source\": 72, \"target\": 2, \"value\": 0.5997405304143875}, {\"source\": 72, \"target\": 3, \"value\": 0.2980776286541513}, {\"source\": 72, \"target\": 4, \"value\": 0.18268336777640204}, {\"source\": 72, \"target\": 5, \"value\": 0.5030276903035737}, {\"source\": 72, \"target\": 6, \"value\": 0.9506696371583517}, {\"source\": 72, \"target\": 7, \"value\": 0.2325800919586698}, {\"source\": 72, \"target\": 8, \"value\": 0.7390820442705245}, {\"source\": 72, \"target\": 9, \"value\": 0.7616713142711553}, {\"source\": 73, \"target\": 0, \"value\": 0.7660564796818717}, {\"source\": 73, \"target\": 1, \"value\": 0.9244958016032567}, {\"source\": 73, \"target\": 2, \"value\": 0.3228087260890464}, {\"source\": 73, \"target\": 3, \"value\": 0.6789428837728861}, {\"source\": 73, \"target\": 4, \"value\": 0.1718199895762833}, {\"source\": 73, \"target\": 5, \"value\": 0.7095739437934471}, {\"source\": 73, \"target\": 6, \"value\": 0.4893233847660068}, {\"source\": 73, \"target\": 7, \"value\": 0.441921269249274}, {\"source\": 73, \"target\": 8, \"value\": 0.6465757977985269}, {\"source\": 73, \"target\": 9, \"value\": 0.4784335817739622}, {\"source\": 74, \"target\": 0, \"value\": 0.7809835653732088}, {\"source\": 74, \"target\": 1, \"value\": 0.5637844595472824}, {\"source\": 74, \"target\": 2, \"value\": 0.8491603722968005}, {\"source\": 74, \"target\": 3, \"value\": 0.3324874926307865}, {\"source\": 74, \"target\": 4, \"value\": 0.6876383457298232}, {\"source\": 74, \"target\": 5, \"value\": 0.31032585761982945}, {\"source\": 74, \"target\": 6, \"value\": 0.6607954615137971}, {\"source\": 74, \"target\": 7, \"value\": 0.35447467775251196}, {\"source\": 74, \"target\": 8, \"value\": 0.061312486142167555}, {\"source\": 74, \"target\": 9, \"value\": 0.44390848519873516}, {\"source\": 75, \"target\": 0, \"value\": 0.7083258497660975}, {\"source\": 75, \"target\": 1, \"value\": 0.2574186578134675}, {\"source\": 75, \"target\": 2, \"value\": 0.6183630278806319}, {\"source\": 75, \"target\": 3, \"value\": 0.12162527851495386}, {\"source\": 75, \"target\": 4, \"value\": 0.6373243081047304}, {\"source\": 75, \"target\": 5, \"value\": 0.05829174691838146}, {\"source\": 75, \"target\": 6, \"value\": 0.04762410122741678}, {\"source\": 75, \"target\": 7, \"value\": 0.511944559203932}, {\"source\": 75, \"target\": 8, \"value\": 0.29931499088474944}, {\"source\": 75, \"target\": 9, \"value\": 0.34643613534056983}, {\"source\": 76, \"target\": 0, \"value\": 0.6492174346036962}, {\"source\": 76, \"target\": 1, \"value\": 0.9488882701086157}, {\"source\": 76, \"target\": 2, \"value\": 0.5162418791778752}, {\"source\": 76, \"target\": 3, \"value\": 0.7135434407602232}, {\"source\": 76, \"target\": 4, \"value\": 0.5861612487888144}, {\"source\": 76, \"target\": 5, \"value\": 0.39493583813539335}, {\"source\": 76, \"target\": 6, \"value\": 0.671816525290099}, {\"source\": 76, \"target\": 7, \"value\": 0.23717057627672355}, {\"source\": 76, \"target\": 8, \"value\": 0.8482091462350475}, {\"source\": 76, \"target\": 9, \"value\": 0.2924731670105124}, {\"source\": 77, \"target\": 0, \"value\": 0.12065632604964383}, {\"source\": 77, \"target\": 1, \"value\": 0.4311841945956453}, {\"source\": 77, \"target\": 2, \"value\": 0.2719515607303118}, {\"source\": 77, \"target\": 3, \"value\": 0.2737262760819733}, {\"source\": 77, \"target\": 4, \"value\": 0.6422025693611261}, {\"source\": 77, \"target\": 5, \"value\": 0.44991232849801055}, {\"source\": 77, \"target\": 6, \"value\": 0.9084847728691557}, {\"source\": 77, \"target\": 7, \"value\": 0.7753971680607056}, {\"source\": 77, \"target\": 8, \"value\": 0.33911251996550873}, {\"source\": 77, \"target\": 9, \"value\": 0.7037406503612524}, {\"source\": 78, \"target\": 0, \"value\": 0.23911862145194263}, {\"source\": 78, \"target\": 1, \"value\": 0.20516107579979725}, {\"source\": 78, \"target\": 2, \"value\": 0.6839686008379533}, {\"source\": 78, \"target\": 3, \"value\": 0.41669528896656205}, {\"source\": 78, \"target\": 4, \"value\": 0.19521144746509556}, {\"source\": 78, \"target\": 5, \"value\": 0.3903295752782401}, {\"source\": 78, \"target\": 6, \"value\": 0.09852342315710272}, {\"source\": 78, \"target\": 7, \"value\": 0.32254437988658846}, {\"source\": 78, \"target\": 8, \"value\": 0.8894781356759724}, {\"source\": 78, \"target\": 9, \"value\": 0.9422719149629099}, {\"source\": 79, \"target\": 0, \"value\": 0.6574707574441057}, {\"source\": 79, \"target\": 1, \"value\": 0.1956287488018773}, {\"source\": 79, \"target\": 2, \"value\": 0.5256787607410369}, {\"source\": 79, \"target\": 3, \"value\": 0.3108091040925598}, {\"source\": 79, \"target\": 4, \"value\": 0.5553483943313786}, {\"source\": 79, \"target\": 5, \"value\": 0.5355298073676616}, {\"source\": 79, \"target\": 6, \"value\": 0.4651129288983915}, {\"source\": 79, \"target\": 7, \"value\": 0.7678645943333149}, {\"source\": 79, \"target\": 8, \"value\": 0.8869469716865482}, {\"source\": 79, \"target\": 9, \"value\": 0.8298093684181447}, {\"source\": 80, \"target\": 0, \"value\": 0.9588430789564042}, {\"source\": 80, \"target\": 1, \"value\": 0.9110639960968554}, {\"source\": 80, \"target\": 2, \"value\": 0.1196747838441613}, {\"source\": 80, \"target\": 3, \"value\": 0.11446859495951}, {\"source\": 80, \"target\": 4, \"value\": 0.9969650063282696}, {\"source\": 80, \"target\": 5, \"value\": 0.04000832595810755}, {\"source\": 80, \"target\": 6, \"value\": 0.8595637445186795}, {\"source\": 80, \"target\": 7, \"value\": 0.46550503372369256}, {\"source\": 80, \"target\": 8, \"value\": 0.2889983273891915}, {\"source\": 80, \"target\": 9, \"value\": 0.7332639578005105}, {\"source\": 81, \"target\": 0, \"value\": 0.47219244963377505}, {\"source\": 81, \"target\": 1, \"value\": 0.36603378202458836}, {\"source\": 81, \"target\": 2, \"value\": 0.07374308587639289}, {\"source\": 81, \"target\": 3, \"value\": 0.8212053023334988}, {\"source\": 81, \"target\": 4, \"value\": 0.48801691478932074}, {\"source\": 81, \"target\": 5, \"value\": 0.7570620648656129}, {\"source\": 81, \"target\": 6, \"value\": 0.37107807260930714}, {\"source\": 81, \"target\": 7, \"value\": 0.2695048247626399}, {\"source\": 81, \"target\": 8, \"value\": 0.7345946354267014}, {\"source\": 81, \"target\": 9, \"value\": 0.8465645262987437}, {\"source\": 82, \"target\": 0, \"value\": 0.7731597126964512}, {\"source\": 82, \"target\": 1, \"value\": 0.09726311997082848}, {\"source\": 82, \"target\": 2, \"value\": 0.3128848054042207}, {\"source\": 82, \"target\": 3, \"value\": 0.054297371248047455}, {\"source\": 82, \"target\": 4, \"value\": 0.9964178644970716}, {\"source\": 82, \"target\": 5, \"value\": 0.177698734352288}, {\"source\": 82, \"target\": 6, \"value\": 0.37123100482185356}, {\"source\": 82, \"target\": 7, \"value\": 0.3589325920964376}, {\"source\": 82, \"target\": 8, \"value\": 0.23918094189867656}, {\"source\": 82, \"target\": 9, \"value\": 0.19412444639857296}, {\"source\": 83, \"target\": 0, \"value\": 0.7221568697894736}, {\"source\": 83, \"target\": 1, \"value\": 0.9963498623999889}, {\"source\": 83, \"target\": 2, \"value\": 0.6578810615587287}, {\"source\": 83, \"target\": 3, \"value\": 0.18964066816521796}, {\"source\": 83, \"target\": 4, \"value\": 0.7960500133787225}, {\"source\": 83, \"target\": 5, \"value\": 0.6331488340440541}, {\"source\": 83, \"target\": 6, \"value\": 0.05997465943644009}, {\"source\": 83, \"target\": 7, \"value\": 0.45123696414113945}, {\"source\": 83, \"target\": 8, \"value\": 0.3981555798526656}, {\"source\": 83, \"target\": 9, \"value\": 0.4574877112189486}, {\"source\": 84, \"target\": 0, \"value\": 0.17329540858703296}, {\"source\": 84, \"target\": 1, \"value\": 0.5551602246692062}, {\"source\": 84, \"target\": 2, \"value\": 0.675575702816968}, {\"source\": 84, \"target\": 3, \"value\": 0.8264278406303862}, {\"source\": 84, \"target\": 4, \"value\": 0.753975346409477}, {\"source\": 84, \"target\": 5, \"value\": 0.03806626488278475}, {\"source\": 84, \"target\": 6, \"value\": 0.795113651901603}, {\"source\": 84, \"target\": 7, \"value\": 0.6539318070808459}, {\"source\": 84, \"target\": 8, \"value\": 0.6049933023598654}, {\"source\": 84, \"target\": 9, \"value\": 0.00079912648846725}, {\"source\": 85, \"target\": 0, \"value\": 0.013114781463635872}, {\"source\": 85, \"target\": 1, \"value\": 0.14710484933761359}, {\"source\": 85, \"target\": 2, \"value\": 0.26562391867980684}, {\"source\": 85, \"target\": 3, \"value\": 0.06049450827851821}, {\"source\": 85, \"target\": 4, \"value\": 0.2578656308496723}, {\"source\": 85, \"target\": 5, \"value\": 0.22906133301836384}, {\"source\": 85, \"target\": 6, \"value\": 0.8240837710969812}, {\"source\": 85, \"target\": 7, \"value\": 0.20185448655187266}, {\"source\": 85, \"target\": 8, \"value\": 0.881092325628702}, {\"source\": 85, \"target\": 9, \"value\": 0.21436450568575982}, {\"source\": 86, \"target\": 0, \"value\": 0.09124750057287223}, {\"source\": 86, \"target\": 1, \"value\": 0.7458057935231055}, {\"source\": 86, \"target\": 2, \"value\": 0.5043400350526346}, {\"source\": 86, \"target\": 3, \"value\": 0.5862020432833676}, {\"source\": 86, \"target\": 4, \"value\": 0.36415611319487795}, {\"source\": 86, \"target\": 5, \"value\": 0.5532539595411161}, {\"source\": 86, \"target\": 6, \"value\": 0.8128446991062696}, {\"source\": 86, \"target\": 7, \"value\": 0.14007325741439247}, {\"source\": 86, \"target\": 8, \"value\": 0.26762510211969903}, {\"source\": 86, \"target\": 9, \"value\": 0.7395485502578282}, {\"source\": 87, \"target\": 0, \"value\": 0.273796078111771}, {\"source\": 87, \"target\": 1, \"value\": 0.5968614644069085}, {\"source\": 87, \"target\": 2, \"value\": 0.33862246805035456}, {\"source\": 87, \"target\": 3, \"value\": 0.07160379461501021}, {\"source\": 87, \"target\": 4, \"value\": 0.49859687569685474}, {\"source\": 87, \"target\": 5, \"value\": 0.7144913096107074}, {\"source\": 87, \"target\": 6, \"value\": 0.9906342627731619}, {\"source\": 87, \"target\": 7, \"value\": 0.30616421419444173}, {\"source\": 87, \"target\": 8, \"value\": 0.43181899369392907}, {\"source\": 87, \"target\": 9, \"value\": 0.5481835598658806}, {\"source\": 88, \"target\": 0, \"value\": 0.5922789121550232}, {\"source\": 88, \"target\": 1, \"value\": 0.10793438223331675}, {\"source\": 88, \"target\": 2, \"value\": 0.7218030237835277}, {\"source\": 88, \"target\": 3, \"value\": 0.28781493382595613}, {\"source\": 88, \"target\": 4, \"value\": 0.7101954909298428}, {\"source\": 88, \"target\": 5, \"value\": 0.26491733998837474}, {\"source\": 88, \"target\": 6, \"value\": 0.32929177720525493}, {\"source\": 88, \"target\": 7, \"value\": 0.15393928318285965}, {\"source\": 88, \"target\": 8, \"value\": 0.30573627751887034}, {\"source\": 88, \"target\": 9, \"value\": 0.767593568436209}, {\"source\": 89, \"target\": 0, \"value\": 0.5738480440000739}, {\"source\": 89, \"target\": 1, \"value\": 0.9717102350944524}, {\"source\": 89, \"target\": 2, \"value\": 0.6918493680668857}, {\"source\": 89, \"target\": 3, \"value\": 0.49136225796249566}, {\"source\": 89, \"target\": 4, \"value\": 0.4189538130977012}, {\"source\": 89, \"target\": 5, \"value\": 0.9528784220570516}, {\"source\": 89, \"target\": 6, \"value\": 0.14422252170336136}, {\"source\": 89, \"target\": 7, \"value\": 0.5212103058543409}, {\"source\": 89, \"target\": 8, \"value\": 0.8891494541942766}, {\"source\": 89, \"target\": 9, \"value\": 0.7243161529127102}, {\"source\": 90, \"target\": 0, \"value\": 0.6524273028079878}, {\"source\": 90, \"target\": 1, \"value\": 0.5732108771943734}, {\"source\": 90, \"target\": 2, \"value\": 0.18508275660219697}, {\"source\": 90, \"target\": 3, \"value\": 0.6138808688662424}, {\"source\": 90, \"target\": 4, \"value\": 0.07695021292315907}, {\"source\": 90, \"target\": 5, \"value\": 0.6680945170106404}, {\"source\": 90, \"target\": 6, \"value\": 0.23147976471742693}, {\"source\": 90, \"target\": 7, \"value\": 0.2237384718444413}, {\"source\": 90, \"target\": 8, \"value\": 0.07931564343308894}, {\"source\": 90, \"target\": 9, \"value\": 0.5290531406613654}, {\"source\": 91, \"target\": 0, \"value\": 0.292207224946918}, {\"source\": 91, \"target\": 1, \"value\": 0.5347443302731564}, {\"source\": 91, \"target\": 2, \"value\": 0.4966394675328142}, {\"source\": 91, \"target\": 3, \"value\": 0.43871374689137466}, {\"source\": 91, \"target\": 4, \"value\": 0.40966714178368036}, {\"source\": 91, \"target\": 5, \"value\": 0.2606110148444858}, {\"source\": 91, \"target\": 6, \"value\": 0.08937483777810629}, {\"source\": 91, \"target\": 7, \"value\": 0.8066866320537381}, {\"source\": 91, \"target\": 8, \"value\": 0.15657531573242267}, {\"source\": 91, \"target\": 9, \"value\": 0.9139261452578302}, {\"source\": 92, \"target\": 0, \"value\": 0.44666536992172634}, {\"source\": 92, \"target\": 1, \"value\": 0.44940086096850873}, {\"source\": 92, \"target\": 2, \"value\": 0.08179437299051329}, {\"source\": 92, \"target\": 3, \"value\": 0.6964934161855384}, {\"source\": 92, \"target\": 4, \"value\": 0.20657215375013938}, {\"source\": 92, \"target\": 5, \"value\": 0.09570310018074724}, {\"source\": 92, \"target\": 6, \"value\": 0.7220107222790408}, {\"source\": 92, \"target\": 7, \"value\": 0.3936551862994325}, {\"source\": 92, \"target\": 8, \"value\": 0.5911130758518441}, {\"source\": 92, \"target\": 9, \"value\": 0.5127646181849301}, {\"source\": 93, \"target\": 0, \"value\": 0.024792440847191677}, {\"source\": 93, \"target\": 1, \"value\": 0.7627946139093299}, {\"source\": 93, \"target\": 2, \"value\": 0.26576180603378574}, {\"source\": 93, \"target\": 3, \"value\": 0.9788268401766658}, {\"source\": 93, \"target\": 4, \"value\": 0.9486860068478548}, {\"source\": 93, \"target\": 5, \"value\": 0.7256699734894949}, {\"source\": 93, \"target\": 6, \"value\": 0.7255050205514576}, {\"source\": 93, \"target\": 7, \"value\": 0.050824790816173304}, {\"source\": 93, \"target\": 8, \"value\": 0.5940661143252837}, {\"source\": 93, \"target\": 9, \"value\": 0.7171266563833804}, {\"source\": 94, \"target\": 0, \"value\": 0.04187295085349507}, {\"source\": 94, \"target\": 1, \"value\": 0.4858483334364002}, {\"source\": 94, \"target\": 2, \"value\": 0.9868242589438908}, {\"source\": 94, \"target\": 3, \"value\": 0.04782633490074317}, {\"source\": 94, \"target\": 4, \"value\": 0.5788519741372516}, {\"source\": 94, \"target\": 5, \"value\": 0.07155939791943544}, {\"source\": 94, \"target\": 6, \"value\": 0.28014174429830796}, {\"source\": 94, \"target\": 7, \"value\": 0.7018218260054466}, {\"source\": 94, \"target\": 8, \"value\": 0.16232193959804986}, {\"source\": 94, \"target\": 9, \"value\": 0.49228648720154566}, {\"source\": 95, \"target\": 0, \"value\": 0.9545457112974848}, {\"source\": 95, \"target\": 1, \"value\": 0.5893551623652425}, {\"source\": 95, \"target\": 2, \"value\": 0.6066268202107414}, {\"source\": 95, \"target\": 3, \"value\": 0.8679865440385066}, {\"source\": 95, \"target\": 4, \"value\": 0.9365479368445849}, {\"source\": 95, \"target\": 5, \"value\": 0.14416045993162074}, {\"source\": 95, \"target\": 6, \"value\": 0.2770071902007831}, {\"source\": 95, \"target\": 7, \"value\": 0.12532193725528784}, {\"source\": 95, \"target\": 8, \"value\": 0.884720788157515}, {\"source\": 95, \"target\": 9, \"value\": 0.8267377704644704}, {\"source\": 96, \"target\": 0, \"value\": 0.9953588810927804}, {\"source\": 96, \"target\": 1, \"value\": 0.8138696157910104}, {\"source\": 96, \"target\": 2, \"value\": 0.11914570059659024}, {\"source\": 96, \"target\": 3, \"value\": 0.9315367835142864}, {\"source\": 96, \"target\": 4, \"value\": 0.006986692731106969}, {\"source\": 96, \"target\": 5, \"value\": 0.5383962494524664}, {\"source\": 96, \"target\": 6, \"value\": 0.7825015421974374}, {\"source\": 96, \"target\": 7, \"value\": 0.8888692517279119}, {\"source\": 96, \"target\": 8, \"value\": 0.30537562757152403}, {\"source\": 96, \"target\": 9, \"value\": 0.6446775039355818}, {\"source\": 97, \"target\": 0, \"value\": 0.12491934664885951}, {\"source\": 97, \"target\": 1, \"value\": 0.608584300362758}, {\"source\": 97, \"target\": 2, \"value\": 0.18949843940084687}, {\"source\": 97, \"target\": 3, \"value\": 0.4390658193797916}, {\"source\": 97, \"target\": 4, \"value\": 0.9704126030213763}, {\"source\": 97, \"target\": 5, \"value\": 0.06809275523457425}, {\"source\": 97, \"target\": 6, \"value\": 0.2051728622611535}, {\"source\": 97, \"target\": 7, \"value\": 0.5075719409410157}, {\"source\": 97, \"target\": 8, \"value\": 0.14050011761810988}, {\"source\": 97, \"target\": 9, \"value\": 0.9337383557266488}, {\"source\": 98, \"target\": 0, \"value\": 0.6065454317067481}, {\"source\": 98, \"target\": 1, \"value\": 0.46153152916886886}, {\"source\": 98, \"target\": 2, \"value\": 0.8015021709095485}, {\"source\": 98, \"target\": 3, \"value\": 0.6987073120764528}, {\"source\": 98, \"target\": 4, \"value\": 0.7445573429189948}, {\"source\": 98, \"target\": 5, \"value\": 0.32516377858166023}, {\"source\": 98, \"target\": 6, \"value\": 0.17845078715926477}, {\"source\": 98, \"target\": 7, \"value\": 0.014351502625561174}, {\"source\": 98, \"target\": 8, \"value\": 0.10704972728076023}, {\"source\": 98, \"target\": 9, \"value\": 0.2730517009310389}, {\"source\": 99, \"target\": 0, \"value\": 0.6165217754396433}, {\"source\": 99, \"target\": 1, \"value\": 0.9475792237640892}, {\"source\": 99, \"target\": 2, \"value\": 0.9064723688429247}, {\"source\": 99, \"target\": 3, \"value\": 0.965094028213592}, {\"source\": 99, \"target\": 4, \"value\": 0.33762107364119875}, {\"source\": 99, \"target\": 5, \"value\": 0.6564030876691848}, {\"source\": 99, \"target\": 6, \"value\": 0.291455780992926}, {\"source\": 99, \"target\": 7, \"value\": 0.15086922353097754}, {\"source\": 99, \"target\": 8, \"value\": 0.036932063464012566}, {\"source\": 99, \"target\": 9, \"value\": 0.5979637425112644}, {\"source\": 100, \"target\": 0, \"value\": 0.027732277525769122}, {\"source\": 100, \"target\": 1, \"value\": 0.38223726411047276}, {\"source\": 100, \"target\": 2, \"value\": 0.953250912037412}, {\"source\": 100, \"target\": 3, \"value\": 0.22219852722772315}, {\"source\": 100, \"target\": 4, \"value\": 0.3051261201740513}, {\"source\": 100, \"target\": 5, \"value\": 0.8193198019179616}, {\"source\": 100, \"target\": 6, \"value\": 0.5784698159078305}, {\"source\": 100, \"target\": 7, \"value\": 0.027617184503319403}, {\"source\": 100, \"target\": 8, \"value\": 0.9543877717509077}, {\"source\": 100, \"target\": 9, \"value\": 0.31213882462326004}, {\"source\": 101, \"target\": 0, \"value\": 0.18407287867767852}, {\"source\": 101, \"target\": 1, \"value\": 0.016469626666622994}, {\"source\": 101, \"target\": 2, \"value\": 0.5240609701557668}, {\"source\": 101, \"target\": 3, \"value\": 0.1669567665617232}, {\"source\": 101, \"target\": 4, \"value\": 0.8129420468290551}, {\"source\": 101, \"target\": 5, \"value\": 0.002833802567491883}, {\"source\": 101, \"target\": 6, \"value\": 0.09923761951162091}, {\"source\": 101, \"target\": 7, \"value\": 0.4233708029190698}, {\"source\": 101, \"target\": 8, \"value\": 0.005809099357757863}, {\"source\": 101, \"target\": 9, \"value\": 0.6439284323771901}, {\"source\": 102, \"target\": 0, \"value\": 0.5258895714533903}, {\"source\": 102, \"target\": 1, \"value\": 0.2490888842079948}, {\"source\": 102, \"target\": 2, \"value\": 0.2711950546864559}, {\"source\": 102, \"target\": 3, \"value\": 0.058806340020986836}, {\"source\": 102, \"target\": 4, \"value\": 0.9601897819139968}, {\"source\": 102, \"target\": 5, \"value\": 0.16091193476589405}, {\"source\": 102, \"target\": 6, \"value\": 0.7945575900083599}, {\"source\": 102, \"target\": 7, \"value\": 0.41541396961113675}, {\"source\": 102, \"target\": 8, \"value\": 0.1296549158742949}, {\"source\": 102, \"target\": 9, \"value\": 0.05663718070504464}, {\"source\": 103, \"target\": 0, \"value\": 0.19695621838288735}, {\"source\": 103, \"target\": 1, \"value\": 0.04679972200788496}, {\"source\": 103, \"target\": 2, \"value\": 0.902222208240269}, {\"source\": 103, \"target\": 3, \"value\": 0.8373716439277921}, {\"source\": 103, \"target\": 4, \"value\": 0.4782820685984708}, {\"source\": 103, \"target\": 5, \"value\": 0.12772435899875278}, {\"source\": 103, \"target\": 6, \"value\": 0.3407632394872363}, {\"source\": 103, \"target\": 7, \"value\": 0.46090247442919585}, {\"source\": 103, \"target\": 8, \"value\": 0.17987906200264803}, {\"source\": 103, \"target\": 9, \"value\": 0.5210110938516268}, {\"source\": 104, \"target\": 0, \"value\": 0.7694249110707195}, {\"source\": 104, \"target\": 1, \"value\": 0.7472272782341517}, {\"source\": 104, \"target\": 2, \"value\": 0.8646791692914033}, {\"source\": 104, \"target\": 3, \"value\": 0.7641218393814242}, {\"source\": 104, \"target\": 4, \"value\": 0.8525234424576078}, {\"source\": 104, \"target\": 5, \"value\": 0.2678974353482877}, {\"source\": 104, \"target\": 6, \"value\": 0.7291903264982751}, {\"source\": 104, \"target\": 7, \"value\": 0.6876453619109382}, {\"source\": 104, \"target\": 8, \"value\": 0.35088076292166537}, {\"source\": 104, \"target\": 9, \"value\": 0.629399160560595}, {\"source\": 105, \"target\": 0, \"value\": 0.39055618282314364}, {\"source\": 105, \"target\": 1, \"value\": 0.5144285940785093}, {\"source\": 105, \"target\": 2, \"value\": 0.30396353564287937}, {\"source\": 105, \"target\": 3, \"value\": 0.796999760528667}, {\"source\": 105, \"target\": 4, \"value\": 0.1078230751698096}, {\"source\": 105, \"target\": 5, \"value\": 0.747514681460955}, {\"source\": 105, \"target\": 6, \"value\": 0.9669085740081871}, {\"source\": 105, \"target\": 7, \"value\": 0.15715650744429033}, {\"source\": 105, \"target\": 8, \"value\": 0.8728958517621116}, {\"source\": 105, \"target\": 9, \"value\": 0.7144418335142413}, {\"source\": 106, \"target\": 0, \"value\": 0.3493239230792018}, {\"source\": 106, \"target\": 1, \"value\": 0.1880779700571047}, {\"source\": 106, \"target\": 2, \"value\": 0.8916780035328351}, {\"source\": 106, \"target\": 3, \"value\": 0.345322979056069}, {\"source\": 106, \"target\": 4, \"value\": 0.20544091259836594}, {\"source\": 106, \"target\": 5, \"value\": 0.10939673778824666}, {\"source\": 106, \"target\": 6, \"value\": 0.6899335017791751}, {\"source\": 106, \"target\": 7, \"value\": 0.03433567998445264}, {\"source\": 106, \"target\": 8, \"value\": 0.4797710800309031}, {\"source\": 106, \"target\": 9, \"value\": 0.518306674989326}, {\"source\": 107, \"target\": 0, \"value\": 0.5591845358793935}, {\"source\": 107, \"target\": 1, \"value\": 0.956846570030116}, {\"source\": 107, \"target\": 2, \"value\": 0.772936672798466}, {\"source\": 107, \"target\": 3, \"value\": 0.7233024985247449}, {\"source\": 107, \"target\": 4, \"value\": 0.8783149241161254}, {\"source\": 107, \"target\": 5, \"value\": 0.9657986414149771}, {\"source\": 107, \"target\": 6, \"value\": 0.3397007022845787}, {\"source\": 107, \"target\": 7, \"value\": 0.7268852163083745}, {\"source\": 107, \"target\": 8, \"value\": 0.6262387503008751}, {\"source\": 107, \"target\": 9, \"value\": 0.8093780377555375}, {\"source\": 108, \"target\": 0, \"value\": 0.8314790236531127}, {\"source\": 108, \"target\": 1, \"value\": 0.9229724002354529}, {\"source\": 108, \"target\": 2, \"value\": 0.8141044732498339}, {\"source\": 108, \"target\": 3, \"value\": 0.28506368515962255}, {\"source\": 108, \"target\": 4, \"value\": 0.6058657432561324}, {\"source\": 108, \"target\": 5, \"value\": 0.26099723471697966}, {\"source\": 108, \"target\": 6, \"value\": 0.8146459943707198}, {\"source\": 108, \"target\": 7, \"value\": 0.46446744385825733}, {\"source\": 108, \"target\": 8, \"value\": 0.2732828358110101}, {\"source\": 108, \"target\": 9, \"value\": 0.13449313291469356}, {\"source\": 109, \"target\": 0, \"value\": 0.1447138451653326}, {\"source\": 109, \"target\": 1, \"value\": 0.19670375571606524}, {\"source\": 109, \"target\": 2, \"value\": 0.4978025146393892}, {\"source\": 109, \"target\": 3, \"value\": 0.20619006742896495}, {\"source\": 109, \"target\": 4, \"value\": 0.7673694729405008}, {\"source\": 109, \"target\": 5, \"value\": 0.2566315513368608}, {\"source\": 109, \"target\": 6, \"value\": 0.2626287020702287}, {\"source\": 109, \"target\": 7, \"value\": 0.6426574367170579}, {\"source\": 109, \"target\": 8, \"value\": 0.995231024299065}, {\"source\": 109, \"target\": 9, \"value\": 0.5425098909424161}, {\"source\": 110, \"target\": 0, \"value\": 0.7326035042447868}, {\"source\": 110, \"target\": 1, \"value\": 0.3662981200304196}, {\"source\": 110, \"target\": 2, \"value\": 0.07446874484611776}, {\"source\": 110, \"target\": 3, \"value\": 0.19520093883369538}, {\"source\": 110, \"target\": 4, \"value\": 0.9749543589033207}, {\"source\": 110, \"target\": 5, \"value\": 0.5042012781591255}, {\"source\": 110, \"target\": 6, \"value\": 0.9856369123402908}, {\"source\": 110, \"target\": 7, \"value\": 0.334422581623805}, {\"source\": 110, \"target\": 8, \"value\": 0.86694362905042}, {\"source\": 110, \"target\": 9, \"value\": 0.28202920165468537}, {\"source\": 111, \"target\": 0, \"value\": 0.4885436412125148}, {\"source\": 111, \"target\": 1, \"value\": 0.5561720792318058}, {\"source\": 111, \"target\": 2, \"value\": 0.812180581360391}, {\"source\": 111, \"target\": 3, \"value\": 0.8528719503750717}, {\"source\": 111, \"target\": 4, \"value\": 0.4933303107049156}, {\"source\": 111, \"target\": 5, \"value\": 0.9592919689890541}, {\"source\": 111, \"target\": 6, \"value\": 0.15876446829484048}, {\"source\": 111, \"target\": 7, \"value\": 0.03595437830372339}, {\"source\": 111, \"target\": 8, \"value\": 0.4064802430234328}, {\"source\": 111, \"target\": 9, \"value\": 0.34281852029003423}, {\"source\": 112, \"target\": 0, \"value\": 0.2758183089465416}, {\"source\": 112, \"target\": 1, \"value\": 0.5726782675403487}, {\"source\": 112, \"target\": 2, \"value\": 0.6694290959505409}, {\"source\": 112, \"target\": 3, \"value\": 0.9043172319742855}, {\"source\": 112, \"target\": 4, \"value\": 0.8639552899987842}, {\"source\": 112, \"target\": 5, \"value\": 0.746258835174717}, {\"source\": 112, \"target\": 6, \"value\": 0.9492467284607887}, {\"source\": 112, \"target\": 7, \"value\": 0.468747178954116}, {\"source\": 112, \"target\": 8, \"value\": 0.5701748164979206}, {\"source\": 112, \"target\": 9, \"value\": 0.14759840951683112}, {\"source\": 113, \"target\": 0, \"value\": 0.09653126310157434}, {\"source\": 113, \"target\": 1, \"value\": 0.9838887736072565}, {\"source\": 113, \"target\": 2, \"value\": 0.9458575454453456}, {\"source\": 113, \"target\": 3, \"value\": 0.9288750130436264}, {\"source\": 113, \"target\": 4, \"value\": 0.9869588615998884}, {\"source\": 113, \"target\": 5, \"value\": 0.8094706569653018}, {\"source\": 113, \"target\": 6, \"value\": 0.1140920029082878}, {\"source\": 113, \"target\": 7, \"value\": 0.5407398333085283}, {\"source\": 113, \"target\": 8, \"value\": 0.6819381025437358}, {\"source\": 113, \"target\": 9, \"value\": 0.4830458673119201}, {\"source\": 114, \"target\": 0, \"value\": 0.004595190708636343}, {\"source\": 114, \"target\": 1, \"value\": 0.8572907370223923}, {\"source\": 114, \"target\": 2, \"value\": 0.23395180665149862}, {\"source\": 114, \"target\": 3, \"value\": 0.6112923842303966}, {\"source\": 114, \"target\": 4, \"value\": 0.6823449232001844}, {\"source\": 114, \"target\": 5, \"value\": 0.3019335919896844}, {\"source\": 114, \"target\": 6, \"value\": 0.5972929760556739}, {\"source\": 114, \"target\": 7, \"value\": 0.3909920066291014}, {\"source\": 114, \"target\": 8, \"value\": 0.5554582470745515}, {\"source\": 114, \"target\": 9, \"value\": 0.1033241162198455}, {\"source\": 115, \"target\": 0, \"value\": 0.029660839697256525}, {\"source\": 115, \"target\": 1, \"value\": 0.33356079941615535}, {\"source\": 115, \"target\": 2, \"value\": 0.5554181190642097}, {\"source\": 115, \"target\": 3, \"value\": 0.5118634831863179}, {\"source\": 115, \"target\": 4, \"value\": 0.5902068697566979}, {\"source\": 115, \"target\": 5, \"value\": 0.645462711355599}, {\"source\": 115, \"target\": 6, \"value\": 0.4984087925270697}, {\"source\": 115, \"target\": 7, \"value\": 0.35312914266820894}, {\"source\": 115, \"target\": 8, \"value\": 0.3880098002267456}, {\"source\": 115, \"target\": 9, \"value\": 0.8037323056232524}, {\"source\": 116, \"target\": 0, \"value\": 0.5179470332325185}, {\"source\": 116, \"target\": 1, \"value\": 0.6583970857505594}, {\"source\": 116, \"target\": 2, \"value\": 0.08820184374051021}, {\"source\": 116, \"target\": 3, \"value\": 0.4723690419759815}, {\"source\": 116, \"target\": 4, \"value\": 0.9010194296302003}, {\"source\": 116, \"target\": 5, \"value\": 0.4459973271210179}, {\"source\": 116, \"target\": 6, \"value\": 0.14448085597899885}, {\"source\": 116, \"target\": 7, \"value\": 0.06380619591282344}, {\"source\": 116, \"target\": 8, \"value\": 0.19612708867628437}, {\"source\": 116, \"target\": 9, \"value\": 0.9185279393141138}, {\"source\": 117, \"target\": 0, \"value\": 0.694884446482893}, {\"source\": 117, \"target\": 1, \"value\": 0.03056749698032979}, {\"source\": 117, \"target\": 2, \"value\": 0.06791435244989796}, {\"source\": 117, \"target\": 3, \"value\": 0.43617104714271937}, {\"source\": 117, \"target\": 4, \"value\": 0.6090955817303455}, {\"source\": 117, \"target\": 5, \"value\": 0.676250271780259}, {\"source\": 117, \"target\": 6, \"value\": 0.8371891425391603}, {\"source\": 117, \"target\": 7, \"value\": 0.23862618241982758}, {\"source\": 117, \"target\": 8, \"value\": 0.24913496546619573}, {\"source\": 117, \"target\": 9, \"value\": 0.052347175321606154}, {\"source\": 118, \"target\": 0, \"value\": 0.8472404043737314}, {\"source\": 118, \"target\": 1, \"value\": 0.2415222455550552}, {\"source\": 118, \"target\": 2, \"value\": 0.07540841951641519}, {\"source\": 118, \"target\": 3, \"value\": 0.9165669493642231}, {\"source\": 118, \"target\": 4, \"value\": 0.4733851293003041}, {\"source\": 118, \"target\": 5, \"value\": 0.08418607219698104}, {\"source\": 118, \"target\": 6, \"value\": 0.3636516664196304}, {\"source\": 118, \"target\": 7, \"value\": 0.5805528232392523}, {\"source\": 118, \"target\": 8, \"value\": 0.17429071474182234}, {\"source\": 118, \"target\": 9, \"value\": 0.17666784836273353}, {\"source\": 119, \"target\": 0, \"value\": 0.34412769179470815}, {\"source\": 119, \"target\": 1, \"value\": 0.3213995357532248}, {\"source\": 119, \"target\": 2, \"value\": 0.4309950595248051}, {\"source\": 119, \"target\": 3, \"value\": 0.3124940335097408}, {\"source\": 119, \"target\": 4, \"value\": 0.4727755088550235}, {\"source\": 119, \"target\": 5, \"value\": 0.5423789698700843}, {\"source\": 119, \"target\": 6, \"value\": 0.9645954235922461}, {\"source\": 119, \"target\": 7, \"value\": 0.5054182909725616}, {\"source\": 119, \"target\": 8, \"value\": 0.0465058802370133}, {\"source\": 119, \"target\": 9, \"value\": 0.34182506172610416}, {\"source\": 120, \"target\": 0, \"value\": 0.043127461275494716}, {\"source\": 120, \"target\": 1, \"value\": 0.9268488873639289}, {\"source\": 120, \"target\": 2, \"value\": 0.4296766587702835}, {\"source\": 120, \"target\": 3, \"value\": 0.6309861183627159}, {\"source\": 120, \"target\": 4, \"value\": 0.0957237815526587}, {\"source\": 120, \"target\": 5, \"value\": 0.30722255572453205}, {\"source\": 120, \"target\": 6, \"value\": 0.14752476290399075}, {\"source\": 120, \"target\": 7, \"value\": 0.3633183183475094}, {\"source\": 120, \"target\": 8, \"value\": 0.36308321950214617}, {\"source\": 120, \"target\": 9, \"value\": 0.27314856463667603}, {\"source\": 121, \"target\": 0, \"value\": 0.4043345183671677}, {\"source\": 121, \"target\": 1, \"value\": 0.32444097465690613}, {\"source\": 121, \"target\": 2, \"value\": 0.7445941350749908}, {\"source\": 121, \"target\": 3, \"value\": 0.5872001214065696}, {\"source\": 121, \"target\": 4, \"value\": 0.9868090759112832}, {\"source\": 121, \"target\": 5, \"value\": 0.1898225634915962}, {\"source\": 121, \"target\": 6, \"value\": 0.3282203113868418}, {\"source\": 121, \"target\": 7, \"value\": 0.6682544685756434}, {\"source\": 121, \"target\": 8, \"value\": 0.5047614280324786}, {\"source\": 121, \"target\": 9, \"value\": 0.3205978240951538}, {\"source\": 122, \"target\": 0, \"value\": 0.5908992500329834}, {\"source\": 122, \"target\": 1, \"value\": 0.045013643554354554}, {\"source\": 122, \"target\": 2, \"value\": 0.8065343708610963}, {\"source\": 122, \"target\": 3, \"value\": 0.7083443690542887}, {\"source\": 122, \"target\": 4, \"value\": 0.40390638494042763}, {\"source\": 122, \"target\": 5, \"value\": 0.6884186271559142}, {\"source\": 122, \"target\": 6, \"value\": 0.9666012794681541}, {\"source\": 122, \"target\": 7, \"value\": 0.43950560029715846}, {\"source\": 122, \"target\": 8, \"value\": 0.22306735881608875}, {\"source\": 122, \"target\": 9, \"value\": 0.6820494371283002}, {\"source\": 123, \"target\": 0, \"value\": 0.20219566003039902}, {\"source\": 123, \"target\": 1, \"value\": 0.857130710326257}, {\"source\": 123, \"target\": 2, \"value\": 0.9693214000612176}, {\"source\": 123, \"target\": 3, \"value\": 0.11242939810689823}, {\"source\": 123, \"target\": 4, \"value\": 0.07619969237688307}, {\"source\": 123, \"target\": 5, \"value\": 0.09806819764144159}, {\"source\": 123, \"target\": 6, \"value\": 0.5282139430979407}, {\"source\": 123, \"target\": 7, \"value\": 0.838305880694594}, {\"source\": 123, \"target\": 8, \"value\": 0.942659482323939}, {\"source\": 123, \"target\": 9, \"value\": 0.002835846809639664}, {\"source\": 124, \"target\": 0, \"value\": 0.9647929364145552}, {\"source\": 124, \"target\": 1, \"value\": 0.1648086672872523}, {\"source\": 124, \"target\": 2, \"value\": 0.4570346902612229}, {\"source\": 124, \"target\": 3, \"value\": 0.36539121047938006}, {\"source\": 124, \"target\": 4, \"value\": 0.6760659094155328}, {\"source\": 124, \"target\": 5, \"value\": 0.3239645232791929}, {\"source\": 124, \"target\": 6, \"value\": 0.3125493404857592}, {\"source\": 124, \"target\": 7, \"value\": 0.23106270390588401}, {\"source\": 124, \"target\": 8, \"value\": 0.31127917786451764}, {\"source\": 124, \"target\": 9, \"value\": 0.16279475850671998}, {\"source\": 125, \"target\": 0, \"value\": 0.127917768362672}, {\"source\": 125, \"target\": 1, \"value\": 0.15689529828736704}, {\"source\": 125, \"target\": 2, \"value\": 0.2735830882278494}, {\"source\": 125, \"target\": 3, \"value\": 0.8957214235390746}, {\"source\": 125, \"target\": 4, \"value\": 0.08042689939010506}, {\"source\": 125, \"target\": 5, \"value\": 0.9740086085498837}, {\"source\": 125, \"target\": 6, \"value\": 0.8010806667307246}, {\"source\": 125, \"target\": 7, \"value\": 0.5806227397691704}, {\"source\": 125, \"target\": 8, \"value\": 0.985655020684721}, {\"source\": 125, \"target\": 9, \"value\": 0.298826380498185}, {\"source\": 126, \"target\": 0, \"value\": 0.7864113718393063}, {\"source\": 126, \"target\": 1, \"value\": 0.896762717687554}, {\"source\": 126, \"target\": 2, \"value\": 0.4955134635203138}, {\"source\": 126, \"target\": 3, \"value\": 0.8660219501541154}, {\"source\": 126, \"target\": 4, \"value\": 0.3408456398893982}, {\"source\": 126, \"target\": 5, \"value\": 0.6806954984815332}, {\"source\": 126, \"target\": 6, \"value\": 0.23652257739278038}, {\"source\": 126, \"target\": 7, \"value\": 0.6819635898833647}, {\"source\": 126, \"target\": 8, \"value\": 0.7729989406788915}, {\"source\": 126, \"target\": 9, \"value\": 0.4448573606706874}, {\"source\": 127, \"target\": 0, \"value\": 0.11834558553834251}, {\"source\": 127, \"target\": 1, \"value\": 0.07073650135967524}, {\"source\": 127, \"target\": 2, \"value\": 0.7004533027154985}, {\"source\": 127, \"target\": 3, \"value\": 0.5153906181477727}, {\"source\": 127, \"target\": 4, \"value\": 0.11487586627336277}, {\"source\": 127, \"target\": 5, \"value\": 0.24198990320542724}, {\"source\": 127, \"target\": 6, \"value\": 0.4661502110623361}, {\"source\": 127, \"target\": 7, \"value\": 0.40617990347057664}, {\"source\": 127, \"target\": 8, \"value\": 0.21219603630014694}, {\"source\": 127, \"target\": 9, \"value\": 0.37818775387810644}, {\"source\": 128, \"target\": 0, \"value\": 0.6666985316556433}, {\"source\": 128, \"target\": 1, \"value\": 0.18323767728674134}, {\"source\": 128, \"target\": 2, \"value\": 0.5246458717058053}, {\"source\": 128, \"target\": 3, \"value\": 0.7361756641436525}, {\"source\": 128, \"target\": 4, \"value\": 0.7691806543037816}, {\"source\": 128, \"target\": 5, \"value\": 0.12430065059756668}, {\"source\": 128, \"target\": 6, \"value\": 0.05003444557329528}, {\"source\": 128, \"target\": 7, \"value\": 0.8882765396191937}, {\"source\": 128, \"target\": 8, \"value\": 0.2147040239772653}, {\"source\": 128, \"target\": 9, \"value\": 0.7636379599454243}, {\"source\": 129, \"target\": 0, \"value\": 0.6488401379005407}, {\"source\": 129, \"target\": 1, \"value\": 0.7129585744044429}, {\"source\": 129, \"target\": 2, \"value\": 0.8140129380314727}, {\"source\": 129, \"target\": 3, \"value\": 0.5503742045883477}, {\"source\": 129, \"target\": 4, \"value\": 0.07900096567370696}, {\"source\": 129, \"target\": 5, \"value\": 0.36885365127731673}, {\"source\": 129, \"target\": 6, \"value\": 0.06569738215567489}, {\"source\": 129, \"target\": 7, \"value\": 0.22359774593810555}, {\"source\": 129, \"target\": 8, \"value\": 0.2510128913790576}, {\"source\": 129, \"target\": 9, \"value\": 0.9417483681506288}, {\"source\": 130, \"target\": 0, \"value\": 0.11820477185579958}, {\"source\": 130, \"target\": 1, \"value\": 0.8140722634423122}, {\"source\": 130, \"target\": 2, \"value\": 0.3405579581286743}, {\"source\": 130, \"target\": 3, \"value\": 0.7993524219638825}, {\"source\": 130, \"target\": 4, \"value\": 0.9487278229798501}, {\"source\": 130, \"target\": 5, \"value\": 0.8943866639567004}, {\"source\": 130, \"target\": 6, \"value\": 0.30116602109723356}, {\"source\": 130, \"target\": 7, \"value\": 0.7609560951132712}, {\"source\": 130, \"target\": 8, \"value\": 0.5878348029656312}, {\"source\": 130, \"target\": 9, \"value\": 0.5804217117136151}, {\"source\": 131, \"target\": 0, \"value\": 0.05710912609433716}, {\"source\": 131, \"target\": 1, \"value\": 0.5170513513178424}, {\"source\": 131, \"target\": 2, \"value\": 0.2128185737872721}, {\"source\": 131, \"target\": 3, \"value\": 0.9630421660494675}, {\"source\": 131, \"target\": 4, \"value\": 0.4317232317800034}, {\"source\": 131, \"target\": 5, \"value\": 0.6105133245670897}, {\"source\": 131, \"target\": 6, \"value\": 0.5671314726036369}, {\"source\": 131, \"target\": 7, \"value\": 0.4699418199152442}, {\"source\": 131, \"target\": 8, \"value\": 0.6380480697678184}, {\"source\": 131, \"target\": 9, \"value\": 0.09299600469894664}, {\"source\": 132, \"target\": 0, \"value\": 0.1456658259076853}, {\"source\": 132, \"target\": 1, \"value\": 0.22690455327666803}, {\"source\": 132, \"target\": 2, \"value\": 0.08429111728710181}, {\"source\": 132, \"target\": 3, \"value\": 0.8358357265563577}, {\"source\": 132, \"target\": 4, \"value\": 0.8448248361522572}, {\"source\": 132, \"target\": 5, \"value\": 0.9862113096080316}, {\"source\": 132, \"target\": 6, \"value\": 0.546782964496524}, {\"source\": 132, \"target\": 7, \"value\": 0.9392472675098845}, {\"source\": 132, \"target\": 8, \"value\": 0.07931879423077193}, {\"source\": 132, \"target\": 9, \"value\": 0.45235156403029386}, {\"source\": 133, \"target\": 0, \"value\": 0.44215574420970083}, {\"source\": 133, \"target\": 1, \"value\": 0.6463431777897269}, {\"source\": 133, \"target\": 2, \"value\": 0.5320953414506272}, {\"source\": 133, \"target\": 3, \"value\": 0.8308280039269477}, {\"source\": 133, \"target\": 4, \"value\": 0.09978922277938285}, {\"source\": 133, \"target\": 5, \"value\": 0.09231727725165173}, {\"source\": 133, \"target\": 6, \"value\": 0.01943814467802829}, {\"source\": 133, \"target\": 7, \"value\": 0.7944725754181657}, {\"source\": 133, \"target\": 8, \"value\": 0.15114005118685736}, {\"source\": 133, \"target\": 9, \"value\": 0.08056769323883384}, {\"source\": 134, \"target\": 0, \"value\": 0.6993870140415632}, {\"source\": 134, \"target\": 1, \"value\": 0.04486947834046273}, {\"source\": 134, \"target\": 2, \"value\": 0.26535090230946934}, {\"source\": 134, \"target\": 3, \"value\": 0.5041891650733383}, {\"source\": 134, \"target\": 4, \"value\": 0.03725369760647268}, {\"source\": 134, \"target\": 5, \"value\": 0.5815092829577229}, {\"source\": 134, \"target\": 6, \"value\": 0.5176607214517689}, {\"source\": 134, \"target\": 7, \"value\": 0.42670078132930045}, {\"source\": 134, \"target\": 8, \"value\": 0.915265982128146}, {\"source\": 134, \"target\": 9, \"value\": 0.42578973327401537}, {\"source\": 135, \"target\": 0, \"value\": 0.8091907448684172}, {\"source\": 135, \"target\": 1, \"value\": 0.05986801407147202}, {\"source\": 135, \"target\": 2, \"value\": 0.08836754606338981}, {\"source\": 135, \"target\": 3, \"value\": 0.35528457190814045}, {\"source\": 135, \"target\": 4, \"value\": 0.14768798737654676}, {\"source\": 135, \"target\": 5, \"value\": 0.6922308925419512}, {\"source\": 135, \"target\": 6, \"value\": 0.7852921531926841}, {\"source\": 135, \"target\": 7, \"value\": 0.41713798480711617}, {\"source\": 135, \"target\": 8, \"value\": 0.32334777976822204}, {\"source\": 135, \"target\": 9, \"value\": 0.9161070471289745}, {\"source\": 136, \"target\": 0, \"value\": 0.8374127257063032}, {\"source\": 136, \"target\": 1, \"value\": 0.5969601778190344}, {\"source\": 136, \"target\": 2, \"value\": 0.7463076974487743}, {\"source\": 136, \"target\": 3, \"value\": 0.6305271386408652}, {\"source\": 136, \"target\": 4, \"value\": 0.014564648683674575}, {\"source\": 136, \"target\": 5, \"value\": 0.162958976912583}, {\"source\": 136, \"target\": 6, \"value\": 0.5898012570649305}, {\"source\": 136, \"target\": 7, \"value\": 0.012068090599244852}, {\"source\": 136, \"target\": 8, \"value\": 0.7149064512408312}, {\"source\": 136, \"target\": 9, \"value\": 0.36959453264081377}, {\"source\": 137, \"target\": 0, \"value\": 0.12650565087492793}, {\"source\": 137, \"target\": 1, \"value\": 0.42042276836062964}, {\"source\": 137, \"target\": 2, \"value\": 0.7588124637085341}, {\"source\": 137, \"target\": 3, \"value\": 0.3469572220414767}, {\"source\": 137, \"target\": 4, \"value\": 0.03715162245427206}, {\"source\": 137, \"target\": 5, \"value\": 0.24055078631697824}, {\"source\": 137, \"target\": 6, \"value\": 0.3433113487499746}, {\"source\": 137, \"target\": 7, \"value\": 0.20665322400899522}, {\"source\": 137, \"target\": 8, \"value\": 0.13497435176171535}, {\"source\": 137, \"target\": 9, \"value\": 0.5947527303974159}, {\"source\": 138, \"target\": 0, \"value\": 0.12108586299268276}, {\"source\": 138, \"target\": 1, \"value\": 0.8388159091661036}, {\"source\": 138, \"target\": 2, \"value\": 0.5126124257747235}, {\"source\": 138, \"target\": 3, \"value\": 0.7586251370594909}, {\"source\": 138, \"target\": 4, \"value\": 0.38447178764497225}, {\"source\": 138, \"target\": 5, \"value\": 0.0562714074949604}, {\"source\": 138, \"target\": 6, \"value\": 0.0975104980386301}, {\"source\": 138, \"target\": 7, \"value\": 0.4317877076626605}, {\"source\": 138, \"target\": 8, \"value\": 0.7938852627781126}, {\"source\": 138, \"target\": 9, \"value\": 0.09413405762539107}, {\"source\": 139, \"target\": 0, \"value\": 0.16093008160881916}, {\"source\": 139, \"target\": 1, \"value\": 0.9571977325908012}, {\"source\": 139, \"target\": 2, \"value\": 0.8388889849042083}, {\"source\": 139, \"target\": 3, \"value\": 0.8398109505704496}, {\"source\": 139, \"target\": 4, \"value\": 0.10295876027227957}, {\"source\": 139, \"target\": 5, \"value\": 0.6856409658986224}, {\"source\": 139, \"target\": 6, \"value\": 0.09785302580422561}, {\"source\": 139, \"target\": 7, \"value\": 0.44432134422631864}, {\"source\": 139, \"target\": 8, \"value\": 0.9640918840154705}, {\"source\": 139, \"target\": 9, \"value\": 0.5756136860367139}, {\"source\": 140, \"target\": 0, \"value\": 0.45584837494961117}, {\"source\": 140, \"target\": 1, \"value\": 0.4302903041270809}, {\"source\": 140, \"target\": 2, \"value\": 0.40566811545828285}, {\"source\": 140, \"target\": 3, \"value\": 0.9463604828314498}, {\"source\": 140, \"target\": 4, \"value\": 0.17242229436065704}, {\"source\": 140, \"target\": 5, \"value\": 0.29771289070252427}, {\"source\": 140, \"target\": 6, \"value\": 0.07667765781353608}, {\"source\": 140, \"target\": 7, \"value\": 0.6363713001376592}, {\"source\": 140, \"target\": 8, \"value\": 0.23536361920034266}, {\"source\": 140, \"target\": 9, \"value\": 0.6909316621432756}, {\"source\": 141, \"target\": 0, \"value\": 0.7015335978710713}, {\"source\": 141, \"target\": 1, \"value\": 0.47540202960351596}, {\"source\": 141, \"target\": 2, \"value\": 0.6893410684832622}, {\"source\": 141, \"target\": 3, \"value\": 0.08475154030616894}, {\"source\": 141, \"target\": 4, \"value\": 0.1324622216120035}, {\"source\": 141, \"target\": 5, \"value\": 0.07182242396503291}, {\"source\": 141, \"target\": 6, \"value\": 0.8956030168442797}, {\"source\": 141, \"target\": 7, \"value\": 0.7568922196607772}, {\"source\": 141, \"target\": 8, \"value\": 0.4900850406845839}, {\"source\": 141, \"target\": 9, \"value\": 0.23730527626653974}, {\"source\": 142, \"target\": 0, \"value\": 0.2145297621306409}, {\"source\": 142, \"target\": 1, \"value\": 0.06250730932954607}, {\"source\": 142, \"target\": 2, \"value\": 0.5927779539873572}, {\"source\": 142, \"target\": 3, \"value\": 0.06964838004500751}, {\"source\": 142, \"target\": 4, \"value\": 0.9223842180163473}, {\"source\": 142, \"target\": 5, \"value\": 0.23753140740166812}, {\"source\": 142, \"target\": 6, \"value\": 0.40479556442536746}, {\"source\": 142, \"target\": 7, \"value\": 0.12864217486021978}, {\"source\": 142, \"target\": 8, \"value\": 0.5837530683447337}, {\"source\": 142, \"target\": 9, \"value\": 0.7602826619787227}, {\"source\": 143, \"target\": 0, \"value\": 0.8697862544625122}, {\"source\": 143, \"target\": 1, \"value\": 0.4348144317626571}, {\"source\": 143, \"target\": 2, \"value\": 0.738259519583478}, {\"source\": 143, \"target\": 3, \"value\": 0.35804424867880524}, {\"source\": 143, \"target\": 4, \"value\": 0.2892032106712854}, {\"source\": 143, \"target\": 5, \"value\": 0.48032645868757706}, {\"source\": 143, \"target\": 6, \"value\": 0.49164959157051935}, {\"source\": 143, \"target\": 7, \"value\": 0.06163112225500966}, {\"source\": 143, \"target\": 8, \"value\": 0.19831772464269637}, {\"source\": 143, \"target\": 9, \"value\": 0.6633388980909064}, {\"source\": 144, \"target\": 0, \"value\": 0.6297530059271857}, {\"source\": 144, \"target\": 1, \"value\": 0.9147730689048182}, {\"source\": 144, \"target\": 2, \"value\": 0.5927506222890787}, {\"source\": 144, \"target\": 3, \"value\": 0.10826676390227397}, {\"source\": 144, \"target\": 4, \"value\": 0.4301458457573194}, {\"source\": 144, \"target\": 5, \"value\": 0.4559617884843352}, {\"source\": 144, \"target\": 6, \"value\": 0.5844589087736212}, {\"source\": 144, \"target\": 7, \"value\": 0.704852179096061}, {\"source\": 144, \"target\": 8, \"value\": 0.4192877288709209}, {\"source\": 144, \"target\": 9, \"value\": 0.7652662905437458}, {\"source\": 145, \"target\": 0, \"value\": 0.0853604213652005}, {\"source\": 145, \"target\": 1, \"value\": 0.041539517909284784}, {\"source\": 145, \"target\": 2, \"value\": 0.7174223113138415}, {\"source\": 145, \"target\": 3, \"value\": 0.7488860054923755}, {\"source\": 145, \"target\": 4, \"value\": 0.19963555418176315}, {\"source\": 145, \"target\": 5, \"value\": 0.775771987590196}, {\"source\": 145, \"target\": 6, \"value\": 0.08771443368466891}, {\"source\": 145, \"target\": 7, \"value\": 0.9344260936903641}, {\"source\": 145, \"target\": 8, \"value\": 0.1885454361644201}, {\"source\": 145, \"target\": 9, \"value\": 0.20542177471275935}, {\"source\": 146, \"target\": 0, \"value\": 0.49059253667421354}, {\"source\": 146, \"target\": 1, \"value\": 0.2131561037619666}, {\"source\": 146, \"target\": 2, \"value\": 0.7791089303303229}, {\"source\": 146, \"target\": 3, \"value\": 0.6176318905070121}, {\"source\": 146, \"target\": 4, \"value\": 0.8323605229667264}, {\"source\": 146, \"target\": 5, \"value\": 0.7057282253394926}, {\"source\": 146, \"target\": 6, \"value\": 0.7709237432042608}, {\"source\": 146, \"target\": 7, \"value\": 0.5096475656235996}, {\"source\": 146, \"target\": 8, \"value\": 0.19775464997302106}, {\"source\": 146, \"target\": 9, \"value\": 0.9822717983762823}, {\"source\": 147, \"target\": 0, \"value\": 0.2043010970422382}, {\"source\": 147, \"target\": 1, \"value\": 0.2322868658847227}, {\"source\": 147, \"target\": 2, \"value\": 0.6184525100750756}, {\"source\": 147, \"target\": 3, \"value\": 0.4395175508792293}, {\"source\": 147, \"target\": 4, \"value\": 0.12758722965346203}, {\"source\": 147, \"target\": 5, \"value\": 0.12584313590294993}, {\"source\": 147, \"target\": 6, \"value\": 0.2602057588729648}, {\"source\": 147, \"target\": 7, \"value\": 0.9101874398628068}, {\"source\": 147, \"target\": 8, \"value\": 0.8957269920353753}, {\"source\": 147, \"target\": 9, \"value\": 0.8126174949915472}, {\"source\": 148, \"target\": 0, \"value\": 0.6317560011519652}, {\"source\": 148, \"target\": 1, \"value\": 0.5989363310078548}, {\"source\": 148, \"target\": 2, \"value\": 0.5992868745046224}, {\"source\": 148, \"target\": 3, \"value\": 0.482854339158022}, {\"source\": 148, \"target\": 4, \"value\": 0.08726980720125277}, {\"source\": 148, \"target\": 5, \"value\": 0.8661832493943904}, {\"source\": 148, \"target\": 6, \"value\": 0.6766178256179671}, {\"source\": 148, \"target\": 7, \"value\": 0.5564320324447113}, {\"source\": 148, \"target\": 8, \"value\": 0.17544272033285924}, {\"source\": 148, \"target\": 9, \"value\": 0.16143223769702575}, {\"source\": 149, \"target\": 0, \"value\": 0.2790616736185413}, {\"source\": 149, \"target\": 1, \"value\": 0.6528830327546721}, {\"source\": 149, \"target\": 2, \"value\": 0.3829984087443473}, {\"source\": 149, \"target\": 3, \"value\": 0.45991724219743657}, {\"source\": 149, \"target\": 4, \"value\": 0.11707636333427196}, {\"source\": 149, \"target\": 5, \"value\": 0.8204981873469402}, {\"source\": 149, \"target\": 6, \"value\": 0.02655423484553987}, {\"source\": 149, \"target\": 7, \"value\": 0.7377063639967417}, {\"source\": 149, \"target\": 8, \"value\": 0.8583150773034638}, {\"source\": 149, \"target\": 9, \"value\": 0.744456366732507}, {\"source\": 150, \"target\": 0, \"value\": 0.10651011570669222}, {\"source\": 150, \"target\": 1, \"value\": 0.41089965514041216}, {\"source\": 150, \"target\": 2, \"value\": 0.3370358882273331}, {\"source\": 150, \"target\": 3, \"value\": 0.09983706037309492}, {\"source\": 150, \"target\": 4, \"value\": 0.9230915772665108}, {\"source\": 150, \"target\": 5, \"value\": 0.830181945734501}, {\"source\": 150, \"target\": 6, \"value\": 0.5537843326640277}, {\"source\": 150, \"target\": 7, \"value\": 0.9794814548692318}, {\"source\": 150, \"target\": 8, \"value\": 0.8232151473431631}, {\"source\": 150, \"target\": 9, \"value\": 0.4778798025702956}, {\"source\": 151, \"target\": 0, \"value\": 0.11595665038767311}, {\"source\": 151, \"target\": 1, \"value\": 0.41787763983526427}, {\"source\": 151, \"target\": 2, \"value\": 0.3519281282911385}, {\"source\": 151, \"target\": 3, \"value\": 0.12828257726667525}, {\"source\": 151, \"target\": 4, \"value\": 0.7866713711469354}, {\"source\": 151, \"target\": 5, \"value\": 0.7784570087820499}, {\"source\": 151, \"target\": 6, \"value\": 0.19634363388427167}, {\"source\": 151, \"target\": 7, \"value\": 0.148166485732948}, {\"source\": 151, \"target\": 8, \"value\": 0.24329311523853114}, {\"source\": 151, \"target\": 9, \"value\": 0.018907757619146537}, {\"source\": 152, \"target\": 0, \"value\": 0.7887235696986324}, {\"source\": 152, \"target\": 1, \"value\": 0.5919007353819586}, {\"source\": 152, \"target\": 2, \"value\": 0.7719944216859853}, {\"source\": 152, \"target\": 3, \"value\": 0.09646404569367384}, {\"source\": 152, \"target\": 4, \"value\": 0.23238036804449025}, {\"source\": 152, \"target\": 5, \"value\": 0.6090650631020644}, {\"source\": 152, \"target\": 6, \"value\": 0.8731671291223512}, {\"source\": 152, \"target\": 7, \"value\": 0.22716420523466796}, {\"source\": 152, \"target\": 8, \"value\": 0.2858733062756499}, {\"source\": 152, \"target\": 9, \"value\": 0.09639433157822408}, {\"source\": 153, \"target\": 0, \"value\": 0.2154327264775281}, {\"source\": 153, \"target\": 1, \"value\": 0.337793399223163}, {\"source\": 153, \"target\": 2, \"value\": 0.0017505579531380544}, {\"source\": 153, \"target\": 3, \"value\": 0.30354283512806424}, {\"source\": 153, \"target\": 4, \"value\": 0.5510943572651079}, {\"source\": 153, \"target\": 5, \"value\": 0.1494500079351202}, {\"source\": 153, \"target\": 6, \"value\": 0.867433930095133}, {\"source\": 153, \"target\": 7, \"value\": 0.4801642257995826}, {\"source\": 153, \"target\": 8, \"value\": 0.23391783551093526}, {\"source\": 153, \"target\": 9, \"value\": 0.01983731229124519}, {\"source\": 154, \"target\": 0, \"value\": 0.2933212131132146}, {\"source\": 154, \"target\": 1, \"value\": 0.1184178724184225}, {\"source\": 154, \"target\": 2, \"value\": 0.9028970120432158}, {\"source\": 154, \"target\": 3, \"value\": 0.2069976728617}, {\"source\": 154, \"target\": 4, \"value\": 0.5753065428327402}, {\"source\": 154, \"target\": 5, \"value\": 0.6862042632714385}, {\"source\": 154, \"target\": 6, \"value\": 0.7426784306013686}, {\"source\": 154, \"target\": 7, \"value\": 0.46333524909134305}, {\"source\": 154, \"target\": 8, \"value\": 0.7434495633630782}, {\"source\": 154, \"target\": 9, \"value\": 0.32585486152174437}, {\"source\": 155, \"target\": 0, \"value\": 0.18245493386583045}, {\"source\": 155, \"target\": 1, \"value\": 0.05052287489939211}, {\"source\": 155, \"target\": 2, \"value\": 0.2525652414968621}, {\"source\": 155, \"target\": 3, \"value\": 0.9290751334299893}, {\"source\": 155, \"target\": 4, \"value\": 0.68984836768444}, {\"source\": 155, \"target\": 5, \"value\": 0.3190887360581468}, {\"source\": 155, \"target\": 6, \"value\": 0.49173868436696255}, {\"source\": 155, \"target\": 7, \"value\": 0.35238821656573716}, {\"source\": 155, \"target\": 8, \"value\": 0.8539662477370906}, {\"source\": 155, \"target\": 9, \"value\": 0.25328364291666694}, {\"source\": 156, \"target\": 0, \"value\": 0.28375590099136805}, {\"source\": 156, \"target\": 1, \"value\": 0.19077280208308}, {\"source\": 156, \"target\": 2, \"value\": 0.5499010945896263}, {\"source\": 156, \"target\": 3, \"value\": 0.5219624084603138}, {\"source\": 156, \"target\": 4, \"value\": 0.1489389365975453}, {\"source\": 156, \"target\": 5, \"value\": 0.6885045051822761}, {\"source\": 156, \"target\": 6, \"value\": 0.9104803241382844}, {\"source\": 156, \"target\": 7, \"value\": 0.4813584452023837}, {\"source\": 156, \"target\": 8, \"value\": 0.575242432194514}, {\"source\": 156, \"target\": 9, \"value\": 0.5589103673672454}, {\"source\": 157, \"target\": 0, \"value\": 0.8725507559729314}, {\"source\": 157, \"target\": 1, \"value\": 0.01371471790141976}, {\"source\": 157, \"target\": 2, \"value\": 0.016639330095987392}, {\"source\": 157, \"target\": 3, \"value\": 0.8681934138221536}, {\"source\": 157, \"target\": 4, \"value\": 0.592290016588266}, {\"source\": 157, \"target\": 5, \"value\": 0.5770605834985535}, {\"source\": 157, \"target\": 6, \"value\": 0.028684206670741674}, {\"source\": 157, \"target\": 7, \"value\": 0.9443838416688595}, {\"source\": 157, \"target\": 8, \"value\": 0.5681345511188453}, {\"source\": 157, \"target\": 9, \"value\": 0.8865756095454737}, {\"source\": 158, \"target\": 0, \"value\": 0.7537010224353393}, {\"source\": 158, \"target\": 1, \"value\": 0.6379974546955551}, {\"source\": 158, \"target\": 2, \"value\": 0.9853559842180729}, {\"source\": 158, \"target\": 3, \"value\": 0.19093278049335827}, {\"source\": 158, \"target\": 4, \"value\": 0.1273990234827762}, {\"source\": 158, \"target\": 5, \"value\": 0.6784859799187648}, {\"source\": 158, \"target\": 6, \"value\": 0.6304470241964537}, {\"source\": 158, \"target\": 7, \"value\": 0.5595490832773791}, {\"source\": 158, \"target\": 8, \"value\": 0.7342130236741296}, {\"source\": 158, \"target\": 9, \"value\": 0.5872283593772153}, {\"source\": 159, \"target\": 0, \"value\": 0.3550932770195837}, {\"source\": 159, \"target\": 1, \"value\": 0.977767190433424}, {\"source\": 159, \"target\": 2, \"value\": 0.36575723127821635}, {\"source\": 159, \"target\": 3, \"value\": 0.9181994079313377}, {\"source\": 159, \"target\": 4, \"value\": 0.5454225873294846}, {\"source\": 159, \"target\": 5, \"value\": 0.3516849520431552}, {\"source\": 159, \"target\": 6, \"value\": 0.8707298186852601}, {\"source\": 159, \"target\": 7, \"value\": 0.1298304644260122}, {\"source\": 159, \"target\": 8, \"value\": 0.47853735836353173}, {\"source\": 159, \"target\": 9, \"value\": 0.38033127399814604}, {\"source\": 160, \"target\": 0, \"value\": 0.886905875847613}, {\"source\": 160, \"target\": 1, \"value\": 0.061331482822904015}, {\"source\": 160, \"target\": 2, \"value\": 0.3672211295339659}, {\"source\": 160, \"target\": 3, \"value\": 0.8471495050543999}, {\"source\": 160, \"target\": 4, \"value\": 0.4960939674558972}, {\"source\": 160, \"target\": 5, \"value\": 0.06355241209802098}, {\"source\": 160, \"target\": 6, \"value\": 0.09287280289558064}, {\"source\": 160, \"target\": 7, \"value\": 0.6923425209160122}, {\"source\": 160, \"target\": 8, \"value\": 0.5440423565249032}, {\"source\": 160, \"target\": 9, \"value\": 0.587100881928441}, {\"source\": 161, \"target\": 0, \"value\": 0.4450912520160012}, {\"source\": 161, \"target\": 1, \"value\": 0.8195527949923502}, {\"source\": 161, \"target\": 2, \"value\": 0.323718076838446}, {\"source\": 161, \"target\": 3, \"value\": 0.5303653881592052}, {\"source\": 161, \"target\": 4, \"value\": 0.17519178472515318}, {\"source\": 161, \"target\": 5, \"value\": 0.7146216983697448}, {\"source\": 161, \"target\": 6, \"value\": 0.5537541800172477}, {\"source\": 161, \"target\": 7, \"value\": 0.08031751020516298}, {\"source\": 161, \"target\": 8, \"value\": 0.12316668887681803}, {\"source\": 161, \"target\": 9, \"value\": 0.38302110928849664}, {\"source\": 162, \"target\": 0, \"value\": 0.15754180339214707}, {\"source\": 162, \"target\": 1, \"value\": 0.7763894969243599}, {\"source\": 162, \"target\": 2, \"value\": 0.026330654536360187}, {\"source\": 162, \"target\": 3, \"value\": 0.2758512154957846}, {\"source\": 162, \"target\": 4, \"value\": 0.365678358762094}, {\"source\": 162, \"target\": 5, \"value\": 0.7563461624831234}, {\"source\": 162, \"target\": 6, \"value\": 0.4483012134726938}, {\"source\": 162, \"target\": 7, \"value\": 0.14348024611147636}, {\"source\": 162, \"target\": 8, \"value\": 0.34277206667942994}, {\"source\": 162, \"target\": 9, \"value\": 0.814809768100405}, {\"source\": 163, \"target\": 0, \"value\": 0.4120857288322747}, {\"source\": 163, \"target\": 1, \"value\": 0.4857327107942673}, {\"source\": 163, \"target\": 2, \"value\": 0.8916795272463165}, {\"source\": 163, \"target\": 3, \"value\": 0.6390767106203653}, {\"source\": 163, \"target\": 4, \"value\": 0.040417230138025895}, {\"source\": 163, \"target\": 5, \"value\": 0.6670131109896916}, {\"source\": 163, \"target\": 6, \"value\": 0.3241648919579989}, {\"source\": 163, \"target\": 7, \"value\": 0.08228583369579201}, {\"source\": 163, \"target\": 8, \"value\": 0.5451948508118483}, {\"source\": 163, \"target\": 9, \"value\": 0.22131630987183093}, {\"source\": 164, \"target\": 0, \"value\": 0.3650210268621755}, {\"source\": 164, \"target\": 1, \"value\": 0.2982399205631847}, {\"source\": 164, \"target\": 2, \"value\": 0.8334165657040538}, {\"source\": 164, \"target\": 3, \"value\": 0.07882672853579642}, {\"source\": 164, \"target\": 4, \"value\": 0.5819697937931237}, {\"source\": 164, \"target\": 5, \"value\": 0.5623643228632432}, {\"source\": 164, \"target\": 6, \"value\": 0.25183309348991334}, {\"source\": 164, \"target\": 7, \"value\": 0.15555720519293115}, {\"source\": 164, \"target\": 8, \"value\": 0.5882943049137013}, {\"source\": 164, \"target\": 9, \"value\": 0.6068434720047579}, {\"source\": 165, \"target\": 0, \"value\": 0.7298698061516581}, {\"source\": 165, \"target\": 1, \"value\": 0.3061248038746077}, {\"source\": 165, \"target\": 2, \"value\": 0.7610780026256496}, {\"source\": 165, \"target\": 3, \"value\": 0.9356990552990209}, {\"source\": 165, \"target\": 4, \"value\": 0.39721291542204684}, {\"source\": 165, \"target\": 5, \"value\": 0.8464486627561191}, {\"source\": 165, \"target\": 6, \"value\": 0.6495632235169532}, {\"source\": 165, \"target\": 7, \"value\": 0.5630146389495626}, {\"source\": 165, \"target\": 8, \"value\": 0.7951795515895268}, {\"source\": 165, \"target\": 9, \"value\": 0.30162759524009275}, {\"source\": 166, \"target\": 0, \"value\": 0.2759233219685666}, {\"source\": 166, \"target\": 1, \"value\": 0.5551414148533019}, {\"source\": 166, \"target\": 2, \"value\": 0.06406926298173499}, {\"source\": 166, \"target\": 3, \"value\": 0.49651249747023685}, {\"source\": 166, \"target\": 4, \"value\": 0.37716756782925553}, {\"source\": 166, \"target\": 5, \"value\": 0.7575026311952173}, {\"source\": 166, \"target\": 6, \"value\": 0.29912515287415486}, {\"source\": 166, \"target\": 7, \"value\": 0.04604263263760111}, {\"source\": 166, \"target\": 8, \"value\": 0.3600287574832888}, {\"source\": 166, \"target\": 9, \"value\": 0.4724654910962154}, {\"source\": 167, \"target\": 0, \"value\": 0.5648880519674413}, {\"source\": 167, \"target\": 1, \"value\": 0.9024501263027814}, {\"source\": 167, \"target\": 2, \"value\": 0.39127235458254184}, {\"source\": 167, \"target\": 3, \"value\": 0.7957281280869193}, {\"source\": 167, \"target\": 4, \"value\": 0.8447887208051053}, {\"source\": 167, \"target\": 5, \"value\": 0.7445751977964121}, {\"source\": 167, \"target\": 6, \"value\": 0.33253268962415483}, {\"source\": 167, \"target\": 7, \"value\": 0.2629621406856023}, {\"source\": 167, \"target\": 8, \"value\": 0.7366659404853271}, {\"source\": 167, \"target\": 9, \"value\": 0.7270530032353811}, {\"source\": 168, \"target\": 0, \"value\": 0.3915881311517817}, {\"source\": 168, \"target\": 1, \"value\": 0.5468822042503823}, {\"source\": 168, \"target\": 2, \"value\": 0.46789812091144234}, {\"source\": 168, \"target\": 3, \"value\": 0.38026409120714566}, {\"source\": 168, \"target\": 4, \"value\": 0.5043063534675264}, {\"source\": 168, \"target\": 5, \"value\": 0.5688078551862473}, {\"source\": 168, \"target\": 6, \"value\": 0.6812192775196247}, {\"source\": 168, \"target\": 7, \"value\": 0.4383981314698904}, {\"source\": 168, \"target\": 8, \"value\": 0.20239890216743617}, {\"source\": 168, \"target\": 9, \"value\": 0.5335261751601627}, {\"source\": 169, \"target\": 0, \"value\": 0.3050680863694162}, {\"source\": 169, \"target\": 1, \"value\": 0.46200547061266406}, {\"source\": 169, \"target\": 2, \"value\": 0.6806209437570724}, {\"source\": 169, \"target\": 3, \"value\": 0.5765409822601587}, {\"source\": 169, \"target\": 4, \"value\": 0.6515647753729796}, {\"source\": 169, \"target\": 5, \"value\": 0.9164802415218937}, {\"source\": 169, \"target\": 6, \"value\": 0.20589112270377286}, {\"source\": 169, \"target\": 7, \"value\": 0.6542542313489111}, {\"source\": 169, \"target\": 8, \"value\": 0.8215391368800607}, {\"source\": 169, \"target\": 9, \"value\": 0.024451941142285882}, {\"source\": 170, \"target\": 0, \"value\": 0.2959171895035504}, {\"source\": 170, \"target\": 1, \"value\": 0.9156516399958622}, {\"source\": 170, \"target\": 2, \"value\": 0.40686829052482176}, {\"source\": 170, \"target\": 3, \"value\": 0.8629013880380523}, {\"source\": 170, \"target\": 4, \"value\": 0.040859679547244454}, {\"source\": 170, \"target\": 5, \"value\": 0.08125681618730818}, {\"source\": 170, \"target\": 6, \"value\": 0.21955814449136513}, {\"source\": 170, \"target\": 7, \"value\": 0.21718808633475506}, {\"source\": 170, \"target\": 8, \"value\": 0.47443203850296645}, {\"source\": 170, \"target\": 9, \"value\": 0.5601106470057243}, {\"source\": 171, \"target\": 0, \"value\": 0.08004825615153155}, {\"source\": 171, \"target\": 1, \"value\": 0.9249400372981288}, {\"source\": 171, \"target\": 2, \"value\": 0.308187007499244}, {\"source\": 171, \"target\": 3, \"value\": 0.8171868370414485}, {\"source\": 171, \"target\": 4, \"value\": 0.1641422271218057}, {\"source\": 171, \"target\": 5, \"value\": 0.30410744977128823}, {\"source\": 171, \"target\": 6, \"value\": 0.948582726208013}, {\"source\": 171, \"target\": 7, \"value\": 0.11045469779821704}, {\"source\": 171, \"target\": 8, \"value\": 0.3661472491997434}, {\"source\": 171, \"target\": 9, \"value\": 0.716952883436237}, {\"source\": 172, \"target\": 0, \"value\": 0.5454071658770696}, {\"source\": 172, \"target\": 1, \"value\": 0.0037417365806980962}, {\"source\": 172, \"target\": 2, \"value\": 0.300781202855432}, {\"source\": 172, \"target\": 3, \"value\": 0.08521927897368686}, {\"source\": 172, \"target\": 4, \"value\": 0.005071200245123086}, {\"source\": 172, \"target\": 5, \"value\": 0.056036595574382564}, {\"source\": 172, \"target\": 6, \"value\": 0.4718011627838419}, {\"source\": 172, \"target\": 7, \"value\": 0.6309917870351522}, {\"source\": 172, \"target\": 8, \"value\": 0.4639582710711576}, {\"source\": 172, \"target\": 9, \"value\": 0.4073525194867701}, {\"source\": 173, \"target\": 0, \"value\": 0.9914125203241955}, {\"source\": 173, \"target\": 1, \"value\": 0.2188988440859546}, {\"source\": 173, \"target\": 2, \"value\": 0.5889406379392631}, {\"source\": 173, \"target\": 3, \"value\": 0.7445276206326205}, {\"source\": 173, \"target\": 4, \"value\": 0.21967283120828462}, {\"source\": 173, \"target\": 5, \"value\": 0.3168151295382132}, {\"source\": 173, \"target\": 6, \"value\": 0.46704039944431797}, {\"source\": 173, \"target\": 7, \"value\": 0.7879872977910313}, {\"source\": 173, \"target\": 8, \"value\": 0.38664379330053433}, {\"source\": 173, \"target\": 9, \"value\": 0.9128408919669123}, {\"source\": 174, \"target\": 0, \"value\": 0.020766840969381084}, {\"source\": 174, \"target\": 1, \"value\": 0.3739770514485993}, {\"source\": 174, \"target\": 2, \"value\": 0.6387418609845392}, {\"source\": 174, \"target\": 3, \"value\": 0.7599586089819333}, {\"source\": 174, \"target\": 4, \"value\": 0.8252116968833481}, {\"source\": 174, \"target\": 5, \"value\": 0.04036757201841579}, {\"source\": 174, \"target\": 6, \"value\": 0.7845387866794015}, {\"source\": 174, \"target\": 7, \"value\": 0.8472255816972825}, {\"source\": 174, \"target\": 8, \"value\": 0.30325874923900253}, {\"source\": 174, \"target\": 9, \"value\": 0.9563790410760188}, {\"source\": 175, \"target\": 0, \"value\": 0.8948024729019779}, {\"source\": 175, \"target\": 1, \"value\": 0.3119883759669304}, {\"source\": 175, \"target\": 2, \"value\": 0.39128122492319817}, {\"source\": 175, \"target\": 3, \"value\": 0.15731596384769897}, {\"source\": 175, \"target\": 4, \"value\": 0.4339206195076274}, {\"source\": 175, \"target\": 5, \"value\": 0.8011474111147}, {\"source\": 175, \"target\": 6, \"value\": 0.9635398275290793}, {\"source\": 175, \"target\": 7, \"value\": 0.4249585202100451}, {\"source\": 175, \"target\": 8, \"value\": 0.35910709921227113}, {\"source\": 175, \"target\": 9, \"value\": 0.7083323374622483}, {\"source\": 176, \"target\": 0, \"value\": 0.5704191782481358}, {\"source\": 176, \"target\": 1, \"value\": 0.13223461565123995}, {\"source\": 176, \"target\": 2, \"value\": 0.4855449158630295}, {\"source\": 176, \"target\": 3, \"value\": 0.05460812646444879}, {\"source\": 176, \"target\": 4, \"value\": 0.42601901258106467}, {\"source\": 176, \"target\": 5, \"value\": 0.36269535530580277}, {\"source\": 176, \"target\": 6, \"value\": 0.07308414264947238}, {\"source\": 176, \"target\": 7, \"value\": 0.6743236624241954}, {\"source\": 176, \"target\": 8, \"value\": 0.8126630696545818}, {\"source\": 176, \"target\": 9, \"value\": 0.20026393873204962}, {\"source\": 177, \"target\": 0, \"value\": 0.07916731196328397}, {\"source\": 177, \"target\": 1, \"value\": 0.19981058963164633}, {\"source\": 177, \"target\": 2, \"value\": 0.36822032910131}, {\"source\": 177, \"target\": 3, \"value\": 0.5067871001227255}, {\"source\": 177, \"target\": 4, \"value\": 0.14058524786469662}, {\"source\": 177, \"target\": 5, \"value\": 0.05078004607033515}, {\"source\": 177, \"target\": 6, \"value\": 0.24636008097314388}, {\"source\": 177, \"target\": 7, \"value\": 0.6421703743662839}, {\"source\": 177, \"target\": 8, \"value\": 0.6000810064866912}, {\"source\": 177, \"target\": 9, \"value\": 0.7801973338627389}, {\"source\": 178, \"target\": 0, \"value\": 0.6982572339051518}, {\"source\": 178, \"target\": 1, \"value\": 0.018213733823873257}, {\"source\": 178, \"target\": 2, \"value\": 0.8054832798453885}, {\"source\": 178, \"target\": 3, \"value\": 0.4422431290505465}, {\"source\": 178, \"target\": 4, \"value\": 0.5465889550886365}, {\"source\": 178, \"target\": 5, \"value\": 0.6450281001731681}, {\"source\": 178, \"target\": 6, \"value\": 0.5729185409486494}, {\"source\": 178, \"target\": 7, \"value\": 0.1240039896374181}, {\"source\": 178, \"target\": 8, \"value\": 0.23176279734252414}, {\"source\": 178, \"target\": 9, \"value\": 0.5364367693555155}, {\"source\": 179, \"target\": 0, \"value\": 0.6312250548286611}, {\"source\": 179, \"target\": 1, \"value\": 0.17644685621795753}, {\"source\": 179, \"target\": 2, \"value\": 0.539684098327374}, {\"source\": 179, \"target\": 3, \"value\": 0.5534636640945929}, {\"source\": 179, \"target\": 4, \"value\": 0.30105262765753793}, {\"source\": 179, \"target\": 5, \"value\": 0.8266670591474441}, {\"source\": 179, \"target\": 6, \"value\": 0.9564175589796371}, {\"source\": 179, \"target\": 7, \"value\": 0.2638651341010789}, {\"source\": 179, \"target\": 8, \"value\": 0.1527476843698471}, {\"source\": 179, \"target\": 9, \"value\": 0.19749037480973175}, {\"source\": 180, \"target\": 0, \"value\": 0.40396493514143694}, {\"source\": 180, \"target\": 1, \"value\": 0.5901039895562964}, {\"source\": 180, \"target\": 2, \"value\": 0.4990986327911373}, {\"source\": 180, \"target\": 3, \"value\": 0.659828800707639}, {\"source\": 180, \"target\": 4, \"value\": 0.9016900344399646}, {\"source\": 180, \"target\": 5, \"value\": 0.2921143529378859}, {\"source\": 180, \"target\": 6, \"value\": 0.6495707520130387}, {\"source\": 180, \"target\": 7, \"value\": 0.014168824303448568}, {\"source\": 180, \"target\": 8, \"value\": 0.618378568467013}, {\"source\": 180, \"target\": 9, \"value\": 0.9161656659488783}, {\"source\": 181, \"target\": 0, \"value\": 0.9478205005121242}, {\"source\": 181, \"target\": 1, \"value\": 0.6290902738204465}, {\"source\": 181, \"target\": 2, \"value\": 0.6001827342178175}, {\"source\": 181, \"target\": 3, \"value\": 0.5915273271485825}, {\"source\": 181, \"target\": 4, \"value\": 0.18868927871291186}, {\"source\": 181, \"target\": 5, \"value\": 0.9244395293158961}, {\"source\": 181, \"target\": 6, \"value\": 0.4442758239214587}, {\"source\": 181, \"target\": 7, \"value\": 0.15396540244292078}, {\"source\": 181, \"target\": 8, \"value\": 0.016430337740410472}, {\"source\": 181, \"target\": 9, \"value\": 0.5496568918204324}, {\"source\": 182, \"target\": 0, \"value\": 0.8541683278504687}, {\"source\": 182, \"target\": 1, \"value\": 0.3608788193413194}, {\"source\": 182, \"target\": 2, \"value\": 0.9957789289327361}, {\"source\": 182, \"target\": 3, \"value\": 0.09731385901693734}, {\"source\": 182, \"target\": 4, \"value\": 0.9188277651132398}, {\"source\": 182, \"target\": 5, \"value\": 0.921295483383637}, {\"source\": 182, \"target\": 6, \"value\": 0.883961989743447}, {\"source\": 182, \"target\": 7, \"value\": 0.7594806851861584}, {\"source\": 182, \"target\": 8, \"value\": 0.1276467196058899}, {\"source\": 182, \"target\": 9, \"value\": 0.34199134786529617}, {\"source\": 183, \"target\": 0, \"value\": 0.3499317509869526}, {\"source\": 183, \"target\": 1, \"value\": 0.617678078301821}, {\"source\": 183, \"target\": 2, \"value\": 0.6992968158973774}, {\"source\": 183, \"target\": 3, \"value\": 0.8822161987712565}, {\"source\": 183, \"target\": 4, \"value\": 0.1376503009310157}, {\"source\": 183, \"target\": 5, \"value\": 0.16092337086890018}, {\"source\": 183, \"target\": 6, \"value\": 0.7451074956769483}, {\"source\": 183, \"target\": 7, \"value\": 0.446478054187578}, {\"source\": 183, \"target\": 8, \"value\": 0.1846027115706076}, {\"source\": 183, \"target\": 9, \"value\": 0.6371273885301344}, {\"source\": 184, \"target\": 0, \"value\": 0.43824444947585184}, {\"source\": 184, \"target\": 1, \"value\": 0.17705311643855182}, {\"source\": 184, \"target\": 2, \"value\": 0.8107612017571371}, {\"source\": 184, \"target\": 3, \"value\": 0.22082111085492484}, {\"source\": 184, \"target\": 4, \"value\": 0.9140206379408494}, {\"source\": 184, \"target\": 5, \"value\": 0.4356318947662089}, {\"source\": 184, \"target\": 6, \"value\": 0.6641673205834571}, {\"source\": 184, \"target\": 7, \"value\": 0.1597780337715501}, {\"source\": 184, \"target\": 8, \"value\": 0.4093835349833469}, {\"source\": 184, \"target\": 9, \"value\": 0.6969778864808872}, {\"source\": 185, \"target\": 0, \"value\": 0.08556265376101913}, {\"source\": 185, \"target\": 1, \"value\": 0.5638321959204443}, {\"source\": 185, \"target\": 2, \"value\": 0.8984872701583924}, {\"source\": 185, \"target\": 3, \"value\": 0.16817945379935728}, {\"source\": 185, \"target\": 4, \"value\": 0.8373883332607979}, {\"source\": 185, \"target\": 5, \"value\": 0.25443883808052625}, {\"source\": 185, \"target\": 6, \"value\": 0.3812397568591399}, {\"source\": 185, \"target\": 7, \"value\": 0.675700530154275}, {\"source\": 185, \"target\": 8, \"value\": 0.6514128895305223}, {\"source\": 185, \"target\": 9, \"value\": 0.2052258348660383}, {\"source\": 186, \"target\": 0, \"value\": 0.6710741679479317}, {\"source\": 186, \"target\": 1, \"value\": 0.10714136790002304}, {\"source\": 186, \"target\": 2, \"value\": 0.8173516102824737}, {\"source\": 186, \"target\": 3, \"value\": 0.6987406783647956}, {\"source\": 186, \"target\": 4, \"value\": 0.3380328800516371}, {\"source\": 186, \"target\": 5, \"value\": 0.4765944291293035}, {\"source\": 186, \"target\": 6, \"value\": 0.9815565592526944}, {\"source\": 186, \"target\": 7, \"value\": 0.07646146467614179}, {\"source\": 186, \"target\": 8, \"value\": 0.14574018054468485}, {\"source\": 186, \"target\": 9, \"value\": 0.3629299944063139}, {\"source\": 187, \"target\": 0, \"value\": 0.8138041560661805}, {\"source\": 187, \"target\": 1, \"value\": 0.3584318965269644}, {\"source\": 187, \"target\": 2, \"value\": 0.05030207005093934}, {\"source\": 187, \"target\": 3, \"value\": 0.8976827736457577}, {\"source\": 187, \"target\": 4, \"value\": 0.1733365760677703}, {\"source\": 187, \"target\": 5, \"value\": 0.10943071442689445}, {\"source\": 187, \"target\": 6, \"value\": 0.2975430616943381}, {\"source\": 187, \"target\": 7, \"value\": 0.1171665828523556}, {\"source\": 187, \"target\": 8, \"value\": 0.5261571725521126}, {\"source\": 187, \"target\": 9, \"value\": 0.5146060868729868}, {\"source\": 188, \"target\": 0, \"value\": 0.7034625740594908}, {\"source\": 188, \"target\": 1, \"value\": 0.7523594326041453}, {\"source\": 188, \"target\": 2, \"value\": 0.673284983987057}, {\"source\": 188, \"target\": 3, \"value\": 0.3108937011089108}, {\"source\": 188, \"target\": 4, \"value\": 0.17774588338447128}, {\"source\": 188, \"target\": 5, \"value\": 0.6138015426492349}, {\"source\": 188, \"target\": 6, \"value\": 0.22045902217665336}, {\"source\": 188, \"target\": 7, \"value\": 0.244384925930636}, {\"source\": 188, \"target\": 8, \"value\": 0.7452991092209448}, {\"source\": 188, \"target\": 9, \"value\": 0.16703319389924176}, {\"source\": 189, \"target\": 0, \"value\": 0.14380516459334203}, {\"source\": 189, \"target\": 1, \"value\": 0.23715997868332128}, {\"source\": 189, \"target\": 2, \"value\": 0.2546771514048032}, {\"source\": 189, \"target\": 3, \"value\": 0.0020534030666630176}, {\"source\": 189, \"target\": 4, \"value\": 0.9656402405014504}, {\"source\": 189, \"target\": 5, \"value\": 0.9891942799248072}, {\"source\": 189, \"target\": 6, \"value\": 0.7219908214112213}, {\"source\": 189, \"target\": 7, \"value\": 0.543662982573609}, {\"source\": 189, \"target\": 8, \"value\": 0.20446783363901966}, {\"source\": 189, \"target\": 9, \"value\": 0.8222104730849156}, {\"source\": 190, \"target\": 0, \"value\": 0.7131783359024162}, {\"source\": 190, \"target\": 1, \"value\": 0.9158173007203071}, {\"source\": 190, \"target\": 2, \"value\": 0.8053258746331298}, {\"source\": 190, \"target\": 3, \"value\": 0.22417691316827437}, {\"source\": 190, \"target\": 4, \"value\": 0.850401500666481}, {\"source\": 190, \"target\": 5, \"value\": 0.5279844469127071}, {\"source\": 190, \"target\": 6, \"value\": 0.06641486674245389}, {\"source\": 190, \"target\": 7, \"value\": 0.14349750984086118}, {\"source\": 190, \"target\": 8, \"value\": 0.9986783860190713}, {\"source\": 190, \"target\": 9, \"value\": 0.8122988225447514}, {\"source\": 191, \"target\": 0, \"value\": 0.0915527210989594}, {\"source\": 191, \"target\": 1, \"value\": 0.38347195638175957}, {\"source\": 191, \"target\": 2, \"value\": 0.9777236387186733}, {\"source\": 191, \"target\": 3, \"value\": 0.5742523431850622}, {\"source\": 191, \"target\": 4, \"value\": 0.18946085842758398}, {\"source\": 191, \"target\": 5, \"value\": 0.010051317893928657}, {\"source\": 191, \"target\": 6, \"value\": 0.5675848387066655}, {\"source\": 191, \"target\": 7, \"value\": 0.9721110397773164}, {\"source\": 191, \"target\": 8, \"value\": 0.5162818245530992}, {\"source\": 191, \"target\": 9, \"value\": 0.44451878804335954}, {\"source\": 192, \"target\": 0, \"value\": 0.2986435063331716}, {\"source\": 192, \"target\": 1, \"value\": 0.8312720974593166}, {\"source\": 192, \"target\": 2, \"value\": 0.2851994647121774}, {\"source\": 192, \"target\": 3, \"value\": 0.898335714365996}, {\"source\": 192, \"target\": 4, \"value\": 0.7287406574031726}, {\"source\": 192, \"target\": 5, \"value\": 0.20633145152536092}, {\"source\": 192, \"target\": 6, \"value\": 0.2957191125103177}, {\"source\": 192, \"target\": 7, \"value\": 0.7973630112759776}, {\"source\": 192, \"target\": 8, \"value\": 0.20020588459891409}, {\"source\": 192, \"target\": 9, \"value\": 0.02620846097085372}, {\"source\": 193, \"target\": 0, \"value\": 0.5431568905703503}, {\"source\": 193, \"target\": 1, \"value\": 0.5777040204355484}, {\"source\": 193, \"target\": 2, \"value\": 0.15200806526233057}, {\"source\": 193, \"target\": 3, \"value\": 0.2725427750740519}, {\"source\": 193, \"target\": 4, \"value\": 0.03662305194546234}, {\"source\": 193, \"target\": 5, \"value\": 0.05133639369518328}, {\"source\": 193, \"target\": 6, \"value\": 0.05712496865427308}, {\"source\": 193, \"target\": 7, \"value\": 0.37231996313739224}, {\"source\": 193, \"target\": 8, \"value\": 0.2548307573538706}, {\"source\": 193, \"target\": 9, \"value\": 0.16462940389050695}, {\"source\": 194, \"target\": 0, \"value\": 0.3398786119915532}, {\"source\": 194, \"target\": 1, \"value\": 0.871567245508808}, {\"source\": 194, \"target\": 2, \"value\": 0.1397068785709682}, {\"source\": 194, \"target\": 3, \"value\": 0.5331281286599089}, {\"source\": 194, \"target\": 4, \"value\": 0.6849422929054022}, {\"source\": 194, \"target\": 5, \"value\": 0.6223906840564851}, {\"source\": 194, \"target\": 6, \"value\": 0.019078121050941754}, {\"source\": 194, \"target\": 7, \"value\": 0.8873488186791072}, {\"source\": 194, \"target\": 8, \"value\": 0.8577773915330854}, {\"source\": 194, \"target\": 9, \"value\": 0.20857333611045292}, {\"source\": 195, \"target\": 0, \"value\": 0.6790349192006192}, {\"source\": 195, \"target\": 1, \"value\": 0.8185992366419753}, {\"source\": 195, \"target\": 2, \"value\": 0.8973628498079843}, {\"source\": 195, \"target\": 3, \"value\": 0.7414784633379479}, {\"source\": 195, \"target\": 4, \"value\": 0.5721261518896795}, {\"source\": 195, \"target\": 5, \"value\": 0.32278634071353574}, {\"source\": 195, \"target\": 6, \"value\": 0.03232687649813493}, {\"source\": 195, \"target\": 7, \"value\": 0.3172564743457189}, {\"source\": 195, \"target\": 8, \"value\": 0.9883302752515059}, {\"source\": 195, \"target\": 9, \"value\": 0.7918540226769053}, {\"source\": 196, \"target\": 0, \"value\": 0.09506381009565323}, {\"source\": 196, \"target\": 1, \"value\": 0.8202220024456158}, {\"source\": 196, \"target\": 2, \"value\": 0.16225500023868}, {\"source\": 196, \"target\": 3, \"value\": 0.5992742458026277}, {\"source\": 196, \"target\": 4, \"value\": 0.3113685497084473}, {\"source\": 196, \"target\": 5, \"value\": 0.5329207660499793}, {\"source\": 196, \"target\": 6, \"value\": 0.46673565089989444}, {\"source\": 196, \"target\": 7, \"value\": 0.8988117636699073}, {\"source\": 196, \"target\": 8, \"value\": 0.2177850216685484}, {\"source\": 196, \"target\": 9, \"value\": 0.23125797083160604}, {\"source\": 197, \"target\": 0, \"value\": 0.7433728980680342}, {\"source\": 197, \"target\": 1, \"value\": 0.6632412071811885}, {\"source\": 197, \"target\": 2, \"value\": 0.5581448239637844}, {\"source\": 197, \"target\": 3, \"value\": 0.2550647545278367}, {\"source\": 197, \"target\": 4, \"value\": 0.05915876411861998}, {\"source\": 197, \"target\": 5, \"value\": 0.17780840861390823}, {\"source\": 197, \"target\": 6, \"value\": 0.6454916272159624}, {\"source\": 197, \"target\": 7, \"value\": 0.8804282741206442}, {\"source\": 197, \"target\": 8, \"value\": 0.5629594701317471}, {\"source\": 197, \"target\": 9, \"value\": 0.9919971311237004}, {\"source\": 198, \"target\": 0, \"value\": 0.6785249854371967}, {\"source\": 198, \"target\": 1, \"value\": 0.7653488403885151}, {\"source\": 198, \"target\": 2, \"value\": 0.2631448297212461}, {\"source\": 198, \"target\": 3, \"value\": 0.7804889882753501}, {\"source\": 198, \"target\": 4, \"value\": 0.19560288879104415}, {\"source\": 198, \"target\": 5, \"value\": 0.7260414147528189}, {\"source\": 198, \"target\": 6, \"value\": 0.5772746745667372}, {\"source\": 198, \"target\": 7, \"value\": 0.9919550821521026}, {\"source\": 198, \"target\": 8, \"value\": 0.7913816050131551}, {\"source\": 198, \"target\": 9, \"value\": 0.5693031343716985}, {\"source\": 199, \"target\": 0, \"value\": 0.6308910140753623}, {\"source\": 199, \"target\": 1, \"value\": 0.47895484044536685}, {\"source\": 199, \"target\": 2, \"value\": 0.1407954883790784}, {\"source\": 199, \"target\": 3, \"value\": 0.3291101703342819}, {\"source\": 199, \"target\": 4, \"value\": 0.7756162615317937}, {\"source\": 199, \"target\": 5, \"value\": 0.6330310027454176}, {\"source\": 199, \"target\": 6, \"value\": 0.1052474723561807}, {\"source\": 199, \"target\": 7, \"value\": 0.9808978183405757}, {\"source\": 199, \"target\": 8, \"value\": 0.36479809161456167}, {\"source\": 199, \"target\": 9, \"value\": 0.7785646967742146}, {\"source\": 200, \"target\": 0, \"value\": 0.2594435326293577}, {\"source\": 200, \"target\": 1, \"value\": 0.023003180209186458}, {\"source\": 200, \"target\": 2, \"value\": 0.6544074202619792}, {\"source\": 200, \"target\": 3, \"value\": 0.9692163349537062}, {\"source\": 200, \"target\": 4, \"value\": 0.6989515422096302}, {\"source\": 200, \"target\": 5, \"value\": 0.032054355256436184}, {\"source\": 200, \"target\": 6, \"value\": 0.0032952104887360445}, {\"source\": 200, \"target\": 7, \"value\": 0.12231043996273894}, {\"source\": 200, \"target\": 8, \"value\": 0.7298922953426757}, {\"source\": 200, \"target\": 9, \"value\": 0.7436470839738786}, {\"source\": 201, \"target\": 0, \"value\": 0.18750252857598404}, {\"source\": 201, \"target\": 1, \"value\": 0.9931725782867362}, {\"source\": 201, \"target\": 2, \"value\": 0.9542128532755146}, {\"source\": 201, \"target\": 3, \"value\": 0.5957933768787373}, {\"source\": 201, \"target\": 4, \"value\": 0.9082754243695769}, {\"source\": 201, \"target\": 5, \"value\": 0.7124463928687869}, {\"source\": 201, \"target\": 6, \"value\": 0.781594609232123}, {\"source\": 201, \"target\": 7, \"value\": 0.3520683987821648}, {\"source\": 201, \"target\": 8, \"value\": 0.2400062123778116}, {\"source\": 201, \"target\": 9, \"value\": 0.8245203788915858}, {\"source\": 202, \"target\": 0, \"value\": 0.2836099674377627}, {\"source\": 202, \"target\": 1, \"value\": 0.362982614735323}, {\"source\": 202, \"target\": 2, \"value\": 0.2691349278274844}, {\"source\": 202, \"target\": 3, \"value\": 0.02608450521388661}, {\"source\": 202, \"target\": 4, \"value\": 0.5180305222142246}, {\"source\": 202, \"target\": 5, \"value\": 0.4194305856739128}, {\"source\": 202, \"target\": 6, \"value\": 0.7508763792029006}, {\"source\": 202, \"target\": 7, \"value\": 0.20100074834398907}, {\"source\": 202, \"target\": 8, \"value\": 0.5523906788763029}, {\"source\": 202, \"target\": 9, \"value\": 0.6040591907560541}, {\"source\": 203, \"target\": 0, \"value\": 0.4857312500965575}, {\"source\": 203, \"target\": 1, \"value\": 0.23290084863554672}, {\"source\": 203, \"target\": 2, \"value\": 0.07787312807432722}, {\"source\": 203, \"target\": 3, \"value\": 0.9243188843604245}, {\"source\": 203, \"target\": 4, \"value\": 0.09067431054700836}, {\"source\": 203, \"target\": 5, \"value\": 0.44983453435497744}, {\"source\": 203, \"target\": 6, \"value\": 0.3939192360886443}, {\"source\": 203, \"target\": 7, \"value\": 0.9245314389365357}, {\"source\": 203, \"target\": 8, \"value\": 0.5630057949334659}, {\"source\": 203, \"target\": 9, \"value\": 0.2820000056984462}, {\"source\": 204, \"target\": 0, \"value\": 0.5428420257936462}, {\"source\": 204, \"target\": 1, \"value\": 0.39875987886033937}, {\"source\": 204, \"target\": 2, \"value\": 0.5478176282442799}, {\"source\": 204, \"target\": 3, \"value\": 0.8854636731975245}, {\"source\": 204, \"target\": 4, \"value\": 0.6662693512479771}, {\"source\": 204, \"target\": 5, \"value\": 0.09984372141584175}, {\"source\": 204, \"target\": 6, \"value\": 0.710156375884973}, {\"source\": 204, \"target\": 7, \"value\": 0.3734194347283716}, {\"source\": 204, \"target\": 8, \"value\": 0.16055212943487662}, {\"source\": 204, \"target\": 9, \"value\": 0.6988050885201809}, {\"source\": 205, \"target\": 0, \"value\": 0.002672665330745394}, {\"source\": 205, \"target\": 1, \"value\": 0.16640160508574275}, {\"source\": 205, \"target\": 2, \"value\": 0.5380157128537876}, {\"source\": 205, \"target\": 3, \"value\": 0.49687534696167823}, {\"source\": 205, \"target\": 4, \"value\": 0.017574424913487152}, {\"source\": 205, \"target\": 5, \"value\": 0.4986497064156463}, {\"source\": 205, \"target\": 6, \"value\": 0.31401940546590157}, {\"source\": 205, \"target\": 7, \"value\": 0.7968416048079975}, {\"source\": 205, \"target\": 8, \"value\": 0.8151485933609602}, {\"source\": 205, \"target\": 9, \"value\": 0.26252433724944624}, {\"source\": 206, \"target\": 0, \"value\": 0.5407134354310187}, {\"source\": 206, \"target\": 1, \"value\": 1.4618569125435243e-05}, {\"source\": 206, \"target\": 2, \"value\": 0.8093150681003541}, {\"source\": 206, \"target\": 3, \"value\": 0.045508039793436206}, {\"source\": 206, \"target\": 4, \"value\": 0.25629991665119023}, {\"source\": 206, \"target\": 5, \"value\": 0.35560447016713537}, {\"source\": 206, \"target\": 6, \"value\": 0.9530732704218641}, {\"source\": 206, \"target\": 7, \"value\": 0.8205020004331068}, {\"source\": 206, \"target\": 8, \"value\": 0.8008886057192945}, {\"source\": 206, \"target\": 9, \"value\": 0.015089138239770206}, {\"source\": 207, \"target\": 0, \"value\": 0.770562144087494}, {\"source\": 207, \"target\": 1, \"value\": 0.7650469073388174}, {\"source\": 207, \"target\": 2, \"value\": 0.4628122217034205}, {\"source\": 207, \"target\": 3, \"value\": 0.39402609948987466}, {\"source\": 207, \"target\": 4, \"value\": 0.8876316340170005}, {\"source\": 207, \"target\": 5, \"value\": 0.21645237638769343}, {\"source\": 207, \"target\": 6, \"value\": 0.5300959147617336}, {\"source\": 207, \"target\": 7, \"value\": 0.8732192360441522}, {\"source\": 207, \"target\": 8, \"value\": 0.12685584353317425}, {\"source\": 207, \"target\": 9, \"value\": 0.5434537372094468}, {\"source\": 208, \"target\": 0, \"value\": 0.7515114119036026}, {\"source\": 208, \"target\": 1, \"value\": 0.266315931547758}, {\"source\": 208, \"target\": 2, \"value\": 0.6667465790517696}, {\"source\": 208, \"target\": 3, \"value\": 0.21050473325195218}, {\"source\": 208, \"target\": 4, \"value\": 0.2824607616957353}, {\"source\": 208, \"target\": 5, \"value\": 0.34654213607829387}, {\"source\": 208, \"target\": 6, \"value\": 0.8337264327472219}, {\"source\": 208, \"target\": 7, \"value\": 0.3638541361586677}, {\"source\": 208, \"target\": 8, \"value\": 0.07869956236862585}, {\"source\": 208, \"target\": 9, \"value\": 0.8560395808582769}, {\"source\": 209, \"target\": 0, \"value\": 0.5192207688470212}, {\"source\": 209, \"target\": 1, \"value\": 0.3482899075664113}, {\"source\": 209, \"target\": 2, \"value\": 0.8625745467341314}, {\"source\": 209, \"target\": 3, \"value\": 0.5734262048173026}, {\"source\": 209, \"target\": 4, \"value\": 0.9677973579214795}, {\"source\": 209, \"target\": 5, \"value\": 0.5695403475078948}, {\"source\": 209, \"target\": 6, \"value\": 0.38346390774230155}, {\"source\": 209, \"target\": 7, \"value\": 0.30752865937488716}, {\"source\": 209, \"target\": 8, \"value\": 0.3819607307369235}, {\"source\": 209, \"target\": 9, \"value\": 0.46557901441782223}, {\"source\": 210, \"target\": 0, \"value\": 0.3353674465984774}, {\"source\": 210, \"target\": 1, \"value\": 0.764980237020071}, {\"source\": 210, \"target\": 2, \"value\": 0.16068374526410678}, {\"source\": 210, \"target\": 3, \"value\": 0.9300552614494864}, {\"source\": 210, \"target\": 4, \"value\": 0.22737639298927315}, {\"source\": 210, \"target\": 5, \"value\": 0.7016464035702573}, {\"source\": 210, \"target\": 6, \"value\": 0.9984844236684975}, {\"source\": 210, \"target\": 7, \"value\": 0.27829640611775397}, {\"source\": 210, \"target\": 8, \"value\": 0.752809799271659}, {\"source\": 210, \"target\": 9, \"value\": 0.1898077487466926}, {\"source\": 211, \"target\": 0, \"value\": 0.23046085183139786}, {\"source\": 211, \"target\": 1, \"value\": 0.6048166615225908}, {\"source\": 211, \"target\": 2, \"value\": 0.290845869112794}, {\"source\": 211, \"target\": 3, \"value\": 0.9509250129531898}, {\"source\": 211, \"target\": 4, \"value\": 0.966635668779411}, {\"source\": 211, \"target\": 5, \"value\": 0.36845017053044204}, {\"source\": 211, \"target\": 6, \"value\": 0.40448372748277506}, {\"source\": 211, \"target\": 7, \"value\": 0.7171468269102675}, {\"source\": 211, \"target\": 8, \"value\": 0.5626054333742214}, {\"source\": 211, \"target\": 9, \"value\": 0.7481292040315868}, {\"source\": 212, \"target\": 0, \"value\": 0.20653317339123856}, {\"source\": 212, \"target\": 1, \"value\": 0.22806056323149027}, {\"source\": 212, \"target\": 2, \"value\": 0.21994411396937763}, {\"source\": 212, \"target\": 3, \"value\": 0.16430764224030026}, {\"source\": 212, \"target\": 4, \"value\": 0.36218579884556146}, {\"source\": 212, \"target\": 5, \"value\": 0.13765585436174343}, {\"source\": 212, \"target\": 6, \"value\": 0.5868051409599079}, {\"source\": 212, \"target\": 7, \"value\": 0.9497437108540498}, {\"source\": 212, \"target\": 8, \"value\": 0.5482130831668744}, {\"source\": 212, \"target\": 9, \"value\": 0.7533100606885773}, {\"source\": 213, \"target\": 0, \"value\": 0.35192458207673105}, {\"source\": 213, \"target\": 1, \"value\": 0.5727635681861636}, {\"source\": 213, \"target\": 2, \"value\": 0.6754753119859666}, {\"source\": 213, \"target\": 3, \"value\": 0.8176137398775479}, {\"source\": 213, \"target\": 4, \"value\": 0.6358401156789826}, {\"source\": 213, \"target\": 5, \"value\": 0.7167177800551369}, {\"source\": 213, \"target\": 6, \"value\": 0.8105864105140452}, {\"source\": 213, \"target\": 7, \"value\": 0.7949029676758996}, {\"source\": 213, \"target\": 8, \"value\": 0.8903678963361087}, {\"source\": 213, \"target\": 9, \"value\": 0.2336624331230749}, {\"source\": 214, \"target\": 0, \"value\": 0.2412545437265191}, {\"source\": 214, \"target\": 1, \"value\": 0.35261580938960346}, {\"source\": 214, \"target\": 2, \"value\": 0.4544400707304983}, {\"source\": 214, \"target\": 3, \"value\": 0.7115178367273345}, {\"source\": 214, \"target\": 4, \"value\": 0.1281668584839094}, {\"source\": 214, \"target\": 5, \"value\": 0.22883973848329298}, {\"source\": 214, \"target\": 6, \"value\": 0.5844753579356021}, {\"source\": 214, \"target\": 7, \"value\": 0.09543423950082541}, {\"source\": 214, \"target\": 8, \"value\": 0.9091163691515806}, {\"source\": 214, \"target\": 9, \"value\": 0.6307079804432513}, {\"source\": 215, \"target\": 0, \"value\": 0.3078826385903731}, {\"source\": 215, \"target\": 1, \"value\": 0.5247973334167065}, {\"source\": 215, \"target\": 2, \"value\": 0.2897295077440365}, {\"source\": 215, \"target\": 3, \"value\": 0.6084320943956814}, {\"source\": 215, \"target\": 4, \"value\": 0.0764104060652595}, {\"source\": 215, \"target\": 5, \"value\": 0.8475174249468796}, {\"source\": 215, \"target\": 6, \"value\": 0.23360708067672897}, {\"source\": 215, \"target\": 7, \"value\": 0.019387398777342746}, {\"source\": 215, \"target\": 8, \"value\": 0.6409338654953225}, {\"source\": 215, \"target\": 9, \"value\": 0.6654685309415327}, {\"source\": 216, \"target\": 0, \"value\": 0.5943065310905141}, {\"source\": 216, \"target\": 1, \"value\": 0.44533515800044876}, {\"source\": 216, \"target\": 2, \"value\": 0.07469032032480893}, {\"source\": 216, \"target\": 3, \"value\": 0.401100028168074}, {\"source\": 216, \"target\": 4, \"value\": 0.8525327041073555}, {\"source\": 216, \"target\": 5, \"value\": 0.25262939796864503}, {\"source\": 216, \"target\": 6, \"value\": 0.3123323050623388}, {\"source\": 216, \"target\": 7, \"value\": 0.46390156570624697}, {\"source\": 216, \"target\": 8, \"value\": 0.28476264645187166}, {\"source\": 216, \"target\": 9, \"value\": 0.3052918618829372}, {\"source\": 217, \"target\": 0, \"value\": 0.3625126367788257}, {\"source\": 217, \"target\": 1, \"value\": 0.49907591404944784}, {\"source\": 217, \"target\": 2, \"value\": 0.49792989522818076}, {\"source\": 217, \"target\": 3, \"value\": 0.5957168092689705}, {\"source\": 217, \"target\": 4, \"value\": 0.22200967523221804}, {\"source\": 217, \"target\": 5, \"value\": 0.23535112037612793}, {\"source\": 217, \"target\": 6, \"value\": 0.5859301337174048}, {\"source\": 217, \"target\": 7, \"value\": 0.1613104856987082}, {\"source\": 217, \"target\": 8, \"value\": 0.4679176678813113}, {\"source\": 217, \"target\": 9, \"value\": 0.1145515862745623}, {\"source\": 218, \"target\": 0, \"value\": 0.41636573679494426}, {\"source\": 218, \"target\": 1, \"value\": 0.942382582651995}, {\"source\": 218, \"target\": 2, \"value\": 0.025091704171444018}, {\"source\": 218, \"target\": 3, \"value\": 0.9357182912274614}, {\"source\": 218, \"target\": 4, \"value\": 0.8132064065193544}, {\"source\": 218, \"target\": 5, \"value\": 0.13459574894612336}, {\"source\": 218, \"target\": 6, \"value\": 0.4091091105972787}, {\"source\": 218, \"target\": 7, \"value\": 0.7058834132773564}, {\"source\": 218, \"target\": 8, \"value\": 0.5708037497295287}, {\"source\": 218, \"target\": 9, \"value\": 0.8749119594634782}, {\"source\": 219, \"target\": 0, \"value\": 0.2706290879470359}, {\"source\": 219, \"target\": 1, \"value\": 0.09702058777751155}, {\"source\": 219, \"target\": 2, \"value\": 0.6522409918052661}, {\"source\": 219, \"target\": 3, \"value\": 0.005203073975072692}, {\"source\": 219, \"target\": 4, \"value\": 0.15086539116832764}, {\"source\": 219, \"target\": 5, \"value\": 0.4236759029084156}, {\"source\": 219, \"target\": 6, \"value\": 0.4458204023580169}, {\"source\": 219, \"target\": 7, \"value\": 0.08046099668339912}, {\"source\": 219, \"target\": 8, \"value\": 0.05145020139440426}, {\"source\": 219, \"target\": 9, \"value\": 0.47533841998715687}, {\"source\": 220, \"target\": 0, \"value\": 0.5291527807694956}, {\"source\": 220, \"target\": 1, \"value\": 0.49269179543648156}, {\"source\": 220, \"target\": 2, \"value\": 0.2473668355534463}, {\"source\": 220, \"target\": 3, \"value\": 0.44897748607713794}, {\"source\": 220, \"target\": 4, \"value\": 0.3328932772496799}, {\"source\": 220, \"target\": 5, \"value\": 0.16047108722286296}, {\"source\": 220, \"target\": 6, \"value\": 0.34623774994421674}, {\"source\": 220, \"target\": 7, \"value\": 0.22901510582177353}, {\"source\": 220, \"target\": 8, \"value\": 0.21662916842470836}, {\"source\": 220, \"target\": 9, \"value\": 0.4561311391377837}, {\"source\": 221, \"target\": 0, \"value\": 0.45173989125895353}, {\"source\": 221, \"target\": 1, \"value\": 0.07960235853485786}, {\"source\": 221, \"target\": 2, \"value\": 0.8150120049988917}, {\"source\": 221, \"target\": 3, \"value\": 0.8848887860691418}, {\"source\": 221, \"target\": 4, \"value\": 0.6335484849141201}, {\"source\": 221, \"target\": 5, \"value\": 0.2764147339902171}, {\"source\": 221, \"target\": 6, \"value\": 0.9817325535709899}, {\"source\": 221, \"target\": 7, \"value\": 0.5118255125703508}, {\"source\": 221, \"target\": 8, \"value\": 0.4843064548311369}, {\"source\": 221, \"target\": 9, \"value\": 0.9285521372598071}, {\"source\": 222, \"target\": 0, \"value\": 0.33689442498637645}, {\"source\": 222, \"target\": 1, \"value\": 0.9245228357092432}, {\"source\": 222, \"target\": 2, \"value\": 0.5915650008571212}, {\"source\": 222, \"target\": 3, \"value\": 0.7522088669290156}, {\"source\": 222, \"target\": 4, \"value\": 0.4375030509791197}, {\"source\": 222, \"target\": 5, \"value\": 0.3436161195971681}, {\"source\": 222, \"target\": 6, \"value\": 0.25467388472943486}, {\"source\": 222, \"target\": 7, \"value\": 0.012575507413269404}, {\"source\": 222, \"target\": 8, \"value\": 0.9430014177502497}, {\"source\": 222, \"target\": 9, \"value\": 0.14856950583285822}, {\"source\": 223, \"target\": 0, \"value\": 0.7143340537135638}, {\"source\": 223, \"target\": 1, \"value\": 0.6858507827768542}, {\"source\": 223, \"target\": 2, \"value\": 0.6486366265744806}, {\"source\": 223, \"target\": 3, \"value\": 0.28799525781942414}, {\"source\": 223, \"target\": 4, \"value\": 0.59115646861928}, {\"source\": 223, \"target\": 5, \"value\": 0.5147538512541976}, {\"source\": 223, \"target\": 6, \"value\": 0.45042970700776097}, {\"source\": 223, \"target\": 7, \"value\": 0.8181232959646325}, {\"source\": 223, \"target\": 8, \"value\": 0.13927806466646442}, {\"source\": 223, \"target\": 9, \"value\": 0.851854733324543}, {\"source\": 224, \"target\": 0, \"value\": 0.45061785469983695}, {\"source\": 224, \"target\": 1, \"value\": 0.03662727406180233}, {\"source\": 224, \"target\": 2, \"value\": 0.9327621594377898}, {\"source\": 224, \"target\": 3, \"value\": 0.304886397499472}, {\"source\": 224, \"target\": 4, \"value\": 0.958806106656108}, {\"source\": 224, \"target\": 5, \"value\": 0.9526535896987909}, {\"source\": 224, \"target\": 6, \"value\": 0.7610703807122494}, {\"source\": 224, \"target\": 7, \"value\": 0.9353231758787479}, {\"source\": 224, \"target\": 8, \"value\": 0.9863852082106924}, {\"source\": 224, \"target\": 9, \"value\": 0.13954883297607346}, {\"source\": 225, \"target\": 0, \"value\": 0.8870320979791305}, {\"source\": 225, \"target\": 1, \"value\": 0.11819067017180895}, {\"source\": 225, \"target\": 2, \"value\": 0.2760398005370779}, {\"source\": 225, \"target\": 3, \"value\": 0.0069583711883747235}, {\"source\": 225, \"target\": 4, \"value\": 0.16538952467146173}, {\"source\": 225, \"target\": 5, \"value\": 0.4512520970424314}, {\"source\": 225, \"target\": 6, \"value\": 0.8490279588788628}, {\"source\": 225, \"target\": 7, \"value\": 0.6471746696556094}, {\"source\": 225, \"target\": 8, \"value\": 0.04075840423574817}, {\"source\": 225, \"target\": 9, \"value\": 0.6909498763897505}, {\"source\": 226, \"target\": 0, \"value\": 0.7441680671811592}, {\"source\": 226, \"target\": 1, \"value\": 0.3448158945577048}, {\"source\": 226, \"target\": 2, \"value\": 0.3172051888332129}, {\"source\": 226, \"target\": 3, \"value\": 0.2732720808479592}, {\"source\": 226, \"target\": 4, \"value\": 0.3836347281483473}, {\"source\": 226, \"target\": 5, \"value\": 0.3429443771606364}, {\"source\": 226, \"target\": 6, \"value\": 0.3828357427843052}, {\"source\": 226, \"target\": 7, \"value\": 0.5249487804090842}, {\"source\": 226, \"target\": 8, \"value\": 0.753293121352816}, {\"source\": 226, \"target\": 9, \"value\": 0.2121466007802807}, {\"source\": 227, \"target\": 0, \"value\": 0.06340251029432908}, {\"source\": 227, \"target\": 1, \"value\": 0.20029870973498776}, {\"source\": 227, \"target\": 2, \"value\": 0.7605464746775035}, {\"source\": 227, \"target\": 3, \"value\": 0.19856429735250858}, {\"source\": 227, \"target\": 4, \"value\": 0.6122263910643544}, {\"source\": 227, \"target\": 5, \"value\": 0.4187915850577416}, {\"source\": 227, \"target\": 6, \"value\": 0.8949985111515791}, {\"source\": 227, \"target\": 7, \"value\": 0.01689601281780917}, {\"source\": 227, \"target\": 8, \"value\": 0.02062156743238608}, {\"source\": 227, \"target\": 9, \"value\": 0.9102495841372956}, {\"source\": 228, \"target\": 0, \"value\": 0.7953979123471587}, {\"source\": 228, \"target\": 1, \"value\": 0.6577472482374399}, {\"source\": 228, \"target\": 2, \"value\": 0.31616392997861165}, {\"source\": 228, \"target\": 3, \"value\": 0.8209459407422248}, {\"source\": 228, \"target\": 4, \"value\": 0.17723509046691155}, {\"source\": 228, \"target\": 5, \"value\": 0.6896777716830361}, {\"source\": 228, \"target\": 6, \"value\": 0.4222191997176712}, {\"source\": 228, \"target\": 7, \"value\": 0.5163173983800496}, {\"source\": 228, \"target\": 8, \"value\": 0.9295643122087116}, {\"source\": 228, \"target\": 9, \"value\": 0.056704766984395416}, {\"source\": 229, \"target\": 0, \"value\": 0.03144768733468084}, {\"source\": 229, \"target\": 1, \"value\": 0.9670960144720566}, {\"source\": 229, \"target\": 2, \"value\": 0.4015717971062214}, {\"source\": 229, \"target\": 3, \"value\": 0.490315827249873}, {\"source\": 229, \"target\": 4, \"value\": 0.9296960119511068}, {\"source\": 229, \"target\": 5, \"value\": 0.6634649992179605}, {\"source\": 229, \"target\": 6, \"value\": 0.1778926661908593}, {\"source\": 229, \"target\": 7, \"value\": 0.9479533138524914}, {\"source\": 229, \"target\": 8, \"value\": 0.8165756774209241}, {\"source\": 229, \"target\": 9, \"value\": 0.7930260744974811}, {\"source\": 230, \"target\": 0, \"value\": 0.02185304367291596}, {\"source\": 230, \"target\": 1, \"value\": 0.32185584402371425}, {\"source\": 230, \"target\": 2, \"value\": 0.0036998166333738203}, {\"source\": 230, \"target\": 3, \"value\": 0.14475142988667833}, {\"source\": 230, \"target\": 4, \"value\": 0.8731166623475363}, {\"source\": 230, \"target\": 5, \"value\": 0.4798556947604594}, {\"source\": 230, \"target\": 6, \"value\": 0.017025966905112044}, {\"source\": 230, \"target\": 7, \"value\": 0.7898298481667602}, {\"source\": 230, \"target\": 8, \"value\": 0.3403444973946407}, {\"source\": 230, \"target\": 9, \"value\": 0.00795039393567476}, {\"source\": 231, \"target\": 0, \"value\": 0.7461915624607544}, {\"source\": 231, \"target\": 1, \"value\": 0.8394455428383856}, {\"source\": 231, \"target\": 2, \"value\": 0.7919325350725064}, {\"source\": 231, \"target\": 3, \"value\": 0.0966121872765563}, {\"source\": 231, \"target\": 4, \"value\": 0.2651478911621784}, {\"source\": 231, \"target\": 5, \"value\": 0.4457274241395298}, {\"source\": 231, \"target\": 6, \"value\": 0.7853799116612096}, {\"source\": 231, \"target\": 7, \"value\": 0.5800451090963726}, {\"source\": 231, \"target\": 8, \"value\": 0.06099062093881569}, {\"source\": 231, \"target\": 9, \"value\": 0.6883378295494899}, {\"source\": 232, \"target\": 0, \"value\": 0.10366423970530214}, {\"source\": 232, \"target\": 1, \"value\": 0.27742988194769447}, {\"source\": 232, \"target\": 2, \"value\": 0.05643949472414145}, {\"source\": 232, \"target\": 3, \"value\": 0.9678545145304126}, {\"source\": 232, \"target\": 4, \"value\": 0.624726276453655}, {\"source\": 232, \"target\": 5, \"value\": 0.47809312861168796}, {\"source\": 232, \"target\": 6, \"value\": 0.14646408767768204}, {\"source\": 232, \"target\": 7, \"value\": 0.11329694092875797}, {\"source\": 232, \"target\": 8, \"value\": 0.6035369896730978}, {\"source\": 232, \"target\": 9, \"value\": 0.17073787264815177}, {\"source\": 233, \"target\": 0, \"value\": 0.20063517707944478}, {\"source\": 233, \"target\": 1, \"value\": 0.13856583908401732}, {\"source\": 233, \"target\": 2, \"value\": 0.9402405052822462}, {\"source\": 233, \"target\": 3, \"value\": 0.7027689415983841}, {\"source\": 233, \"target\": 4, \"value\": 0.5331213685889172}, {\"source\": 233, \"target\": 5, \"value\": 0.554859030576247}, {\"source\": 233, \"target\": 6, \"value\": 0.6123445118530052}, {\"source\": 233, \"target\": 7, \"value\": 0.7576796103562834}, {\"source\": 233, \"target\": 8, \"value\": 0.42910816103989646}, {\"source\": 233, \"target\": 9, \"value\": 0.19366464653169946}, {\"source\": 234, \"target\": 0, \"value\": 0.28038557355816296}, {\"source\": 234, \"target\": 1, \"value\": 0.23694955465767964}, {\"source\": 234, \"target\": 2, \"value\": 0.9199667981173002}, {\"source\": 234, \"target\": 3, \"value\": 0.8253203490263497}, {\"source\": 234, \"target\": 4, \"value\": 0.29447607671102527}, {\"source\": 234, \"target\": 5, \"value\": 0.2820242774392092}, {\"source\": 234, \"target\": 6, \"value\": 0.48156702447359634}, {\"source\": 234, \"target\": 7, \"value\": 0.9166560001332638}, {\"source\": 234, \"target\": 8, \"value\": 0.9539839041866526}, {\"source\": 234, \"target\": 9, \"value\": 0.3169583192708948}, {\"source\": 235, \"target\": 0, \"value\": 0.22809483780106887}, {\"source\": 235, \"target\": 1, \"value\": 0.5412091492520292}, {\"source\": 235, \"target\": 2, \"value\": 0.8761109132979057}, {\"source\": 235, \"target\": 3, \"value\": 0.023600910560752975}, {\"source\": 235, \"target\": 4, \"value\": 0.39044797224745775}, {\"source\": 235, \"target\": 5, \"value\": 0.6000104710401283}, {\"source\": 235, \"target\": 6, \"value\": 0.6972906167482215}, {\"source\": 235, \"target\": 7, \"value\": 0.6066335396350918}, {\"source\": 235, \"target\": 8, \"value\": 0.4260621698165866}, {\"source\": 235, \"target\": 9, \"value\": 0.30593479609002894}, {\"source\": 236, \"target\": 0, \"value\": 0.9556736231018814}, {\"source\": 236, \"target\": 1, \"value\": 0.03679420099038733}, {\"source\": 236, \"target\": 2, \"value\": 0.24258509272969575}, {\"source\": 236, \"target\": 3, \"value\": 0.616451253989398}, {\"source\": 236, \"target\": 4, \"value\": 0.5215987939359118}, {\"source\": 236, \"target\": 5, \"value\": 0.6335908537177422}, {\"source\": 236, \"target\": 6, \"value\": 0.3543078156483338}, {\"source\": 236, \"target\": 7, \"value\": 0.37426031579134955}, {\"source\": 236, \"target\": 8, \"value\": 0.2285575181174644}, {\"source\": 236, \"target\": 9, \"value\": 0.9797319991102094}, {\"source\": 237, \"target\": 0, \"value\": 0.12853723219767765}, {\"source\": 237, \"target\": 1, \"value\": 0.44056339165796143}, {\"source\": 237, \"target\": 2, \"value\": 0.684666782722396}, {\"source\": 237, \"target\": 3, \"value\": 0.5425275252145465}, {\"source\": 237, \"target\": 4, \"value\": 0.448222574806899}, {\"source\": 237, \"target\": 5, \"value\": 0.8895617038829644}, {\"source\": 237, \"target\": 6, \"value\": 0.7918201402916235}, {\"source\": 237, \"target\": 7, \"value\": 0.7838410892462168}, {\"source\": 237, \"target\": 8, \"value\": 0.3643392479252143}, {\"source\": 237, \"target\": 9, \"value\": 0.4256265908151078}, {\"source\": 238, \"target\": 0, \"value\": 0.015820593498559132}, {\"source\": 238, \"target\": 1, \"value\": 0.24444032378142655}, {\"source\": 238, \"target\": 2, \"value\": 0.47088784953752605}, {\"source\": 238, \"target\": 3, \"value\": 0.3712670166683891}, {\"source\": 238, \"target\": 4, \"value\": 0.7720551066582874}, {\"source\": 238, \"target\": 5, \"value\": 0.05937789742296018}, {\"source\": 238, \"target\": 6, \"value\": 0.841919475607738}, {\"source\": 238, \"target\": 7, \"value\": 0.3150825225293239}, {\"source\": 238, \"target\": 8, \"value\": 0.8912494568709831}, {\"source\": 238, \"target\": 9, \"value\": 0.5962823935099183}, {\"source\": 239, \"target\": 0, \"value\": 0.7901166206571988}, {\"source\": 239, \"target\": 1, \"value\": 0.6146042453827153}, {\"source\": 239, \"target\": 2, \"value\": 0.9718343038157988}, {\"source\": 239, \"target\": 3, \"value\": 0.762789363406736}, {\"source\": 239, \"target\": 4, \"value\": 0.5736170026283548}, {\"source\": 239, \"target\": 5, \"value\": 0.38604855282929296}, {\"source\": 239, \"target\": 6, \"value\": 0.8693629359866054}, {\"source\": 239, \"target\": 7, \"value\": 0.03901633822948336}, {\"source\": 239, \"target\": 8, \"value\": 0.10375327712615157}, {\"source\": 239, \"target\": 9, \"value\": 0.5563158298106623}, {\"source\": 240, \"target\": 0, \"value\": 0.22056705681425048}, {\"source\": 240, \"target\": 1, \"value\": 0.3311014881716753}, {\"source\": 240, \"target\": 2, \"value\": 0.32037670948883}, {\"source\": 240, \"target\": 3, \"value\": 0.39961784707770476}, {\"source\": 240, \"target\": 4, \"value\": 0.3673632600939444}, {\"source\": 240, \"target\": 5, \"value\": 0.9479612621488066}, {\"source\": 240, \"target\": 6, \"value\": 0.2576509775293214}, {\"source\": 240, \"target\": 7, \"value\": 0.7958459583945529}, {\"source\": 240, \"target\": 8, \"value\": 0.7725335516022769}, {\"source\": 240, \"target\": 9, \"value\": 0.31090564288954226}, {\"source\": 241, \"target\": 0, \"value\": 0.08099745631534916}, {\"source\": 241, \"target\": 1, \"value\": 0.6216811653970534}, {\"source\": 241, \"target\": 2, \"value\": 0.904762512364175}, {\"source\": 241, \"target\": 3, \"value\": 0.2861780606650647}, {\"source\": 241, \"target\": 4, \"value\": 0.21054545869360497}, {\"source\": 241, \"target\": 5, \"value\": 0.4798146391740634}, {\"source\": 241, \"target\": 6, \"value\": 0.4014646465624785}, {\"source\": 241, \"target\": 7, \"value\": 0.013717811514686096}, {\"source\": 241, \"target\": 8, \"value\": 0.5364208807382449}, {\"source\": 241, \"target\": 9, \"value\": 0.13881434717543362}, {\"source\": 242, \"target\": 0, \"value\": 0.5095770494106563}, {\"source\": 242, \"target\": 1, \"value\": 0.2785618827398362}, {\"source\": 242, \"target\": 2, \"value\": 0.3958155481859754}, {\"source\": 242, \"target\": 3, \"value\": 0.34173687143077025}, {\"source\": 242, \"target\": 4, \"value\": 0.19432596267190305}, {\"source\": 242, \"target\": 5, \"value\": 0.8761180352633642}, {\"source\": 242, \"target\": 6, \"value\": 0.2716286257013535}, {\"source\": 242, \"target\": 7, \"value\": 0.13918571097442733}, {\"source\": 242, \"target\": 8, \"value\": 0.1424350600659997}, {\"source\": 242, \"target\": 9, \"value\": 0.1714812942156091}, {\"source\": 243, \"target\": 0, \"value\": 0.9545359757706492}, {\"source\": 243, \"target\": 1, \"value\": 0.29451999055406075}, {\"source\": 243, \"target\": 2, \"value\": 0.3192035869056269}, {\"source\": 243, \"target\": 3, \"value\": 0.5738405061740646}, {\"source\": 243, \"target\": 4, \"value\": 0.34506605824920145}, {\"source\": 243, \"target\": 5, \"value\": 0.12878323808093017}, {\"source\": 243, \"target\": 6, \"value\": 0.5085285148287476}, {\"source\": 243, \"target\": 7, \"value\": 0.7097775159090698}, {\"source\": 243, \"target\": 8, \"value\": 0.07610722372444756}, {\"source\": 243, \"target\": 9, \"value\": 0.08043814640208524}, {\"source\": 244, \"target\": 0, \"value\": 0.30280153616295735}, {\"source\": 244, \"target\": 1, \"value\": 0.9433230513370252}, {\"source\": 244, \"target\": 2, \"value\": 0.39904138969451086}, {\"source\": 244, \"target\": 3, \"value\": 0.0895425221778009}, {\"source\": 244, \"target\": 4, \"value\": 0.11751047601304176}, {\"source\": 244, \"target\": 5, \"value\": 0.6439922272573311}, {\"source\": 244, \"target\": 6, \"value\": 0.9974241331803013}, {\"source\": 244, \"target\": 7, \"value\": 0.8926783890783363}, {\"source\": 244, \"target\": 8, \"value\": 0.5815977760607558}, {\"source\": 244, \"target\": 9, \"value\": 0.5220302588784088}, {\"source\": 245, \"target\": 0, \"value\": 0.08912626575904858}, {\"source\": 245, \"target\": 1, \"value\": 0.4820881658667566}, {\"source\": 245, \"target\": 2, \"value\": 0.9616925301347673}, {\"source\": 245, \"target\": 3, \"value\": 0.9220878958723683}, {\"source\": 245, \"target\": 4, \"value\": 0.8357930270094618}, {\"source\": 245, \"target\": 5, \"value\": 0.4642586890431126}, {\"source\": 245, \"target\": 6, \"value\": 0.1607405107073231}, {\"source\": 245, \"target\": 7, \"value\": 0.4920373240428465}, {\"source\": 245, \"target\": 8, \"value\": 0.7744022135569184}, {\"source\": 245, \"target\": 9, \"value\": 0.6779560380684447}, {\"source\": 246, \"target\": 0, \"value\": 0.015462335820540019}, {\"source\": 246, \"target\": 1, \"value\": 0.08214387023670255}, {\"source\": 246, \"target\": 2, \"value\": 0.5382123683416508}, {\"source\": 246, \"target\": 3, \"value\": 0.3540718562104176}, {\"source\": 246, \"target\": 4, \"value\": 0.14082287173999786}, {\"source\": 246, \"target\": 5, \"value\": 0.6421134547976385}, {\"source\": 246, \"target\": 6, \"value\": 0.8686846975093611}, {\"source\": 246, \"target\": 7, \"value\": 0.9154216232713642}, {\"source\": 246, \"target\": 8, \"value\": 0.7046417053996429}, {\"source\": 246, \"target\": 9, \"value\": 0.5796314628207054}, {\"source\": 247, \"target\": 0, \"value\": 0.9315091640318046}, {\"source\": 247, \"target\": 1, \"value\": 0.684441452228487}, {\"source\": 247, \"target\": 2, \"value\": 0.8205806892116522}, {\"source\": 247, \"target\": 3, \"value\": 0.875768576125234}, {\"source\": 247, \"target\": 4, \"value\": 0.44582203828480504}, {\"source\": 247, \"target\": 5, \"value\": 0.4257662324395818}, {\"source\": 247, \"target\": 6, \"value\": 0.5180952245545035}, {\"source\": 247, \"target\": 7, \"value\": 0.9641657035944424}, {\"source\": 247, \"target\": 8, \"value\": 0.18264909124385276}, {\"source\": 247, \"target\": 9, \"value\": 0.894790897665899}, {\"source\": 248, \"target\": 0, \"value\": 0.8232269902042144}, {\"source\": 248, \"target\": 1, \"value\": 0.3923854320811532}, {\"source\": 248, \"target\": 2, \"value\": 0.06636653104425716}, {\"source\": 248, \"target\": 3, \"value\": 0.2863731194791076}, {\"source\": 248, \"target\": 4, \"value\": 0.7918512329736273}, {\"source\": 248, \"target\": 5, \"value\": 0.2543070475020095}, {\"source\": 248, \"target\": 6, \"value\": 0.554435424737161}, {\"source\": 248, \"target\": 7, \"value\": 0.431773388589465}, {\"source\": 248, \"target\": 8, \"value\": 0.7840066348165186}, {\"source\": 248, \"target\": 9, \"value\": 0.0432215502885146}, {\"source\": 249, \"target\": 0, \"value\": 0.5140557045492697}, {\"source\": 249, \"target\": 1, \"value\": 0.9271850595954131}, {\"source\": 249, \"target\": 2, \"value\": 0.958549192577499}, {\"source\": 249, \"target\": 3, \"value\": 0.6372252060067868}, {\"source\": 249, \"target\": 4, \"value\": 0.8104252801166582}, {\"source\": 249, \"target\": 5, \"value\": 0.2000896634699173}, {\"source\": 249, \"target\": 6, \"value\": 0.9190826408189865}, {\"source\": 249, \"target\": 7, \"value\": 0.478302014222035}, {\"source\": 249, \"target\": 8, \"value\": 0.6359119313727073}, {\"source\": 249, \"target\": 9, \"value\": 0.4185737201437755}, {\"source\": 250, \"target\": 0, \"value\": 0.24952643886544024}, {\"source\": 250, \"target\": 1, \"value\": 0.2672687466331788}, {\"source\": 250, \"target\": 2, \"value\": 0.6210494338674541}, {\"source\": 250, \"target\": 3, \"value\": 0.15010421269138918}, {\"source\": 250, \"target\": 4, \"value\": 0.39101395566189867}, {\"source\": 250, \"target\": 5, \"value\": 0.6563956863947911}, {\"source\": 250, \"target\": 6, \"value\": 0.9456083829929318}, {\"source\": 250, \"target\": 7, \"value\": 0.49623319916241193}, {\"source\": 250, \"target\": 8, \"value\": 0.8325120676300366}, {\"source\": 250, \"target\": 9, \"value\": 0.9710683135758011}, {\"source\": 251, \"target\": 0, \"value\": 0.23292126131247748}, {\"source\": 251, \"target\": 1, \"value\": 0.6759696662834684}, {\"source\": 251, \"target\": 2, \"value\": 0.1399721087360294}, {\"source\": 251, \"target\": 3, \"value\": 0.31292814055118456}, {\"source\": 251, \"target\": 4, \"value\": 0.7742541257998876}, {\"source\": 251, \"target\": 5, \"value\": 0.9260614755649513}, {\"source\": 251, \"target\": 6, \"value\": 0.05717566955595754}, {\"source\": 251, \"target\": 7, \"value\": 0.7648751979191251}, {\"source\": 251, \"target\": 8, \"value\": 0.8189834873796155}, {\"source\": 251, \"target\": 9, \"value\": 0.7926183492717546}, {\"source\": 252, \"target\": 0, \"value\": 0.491799200621745}, {\"source\": 252, \"target\": 1, \"value\": 0.8408446208375253}, {\"source\": 252, \"target\": 2, \"value\": 0.7977879558425162}, {\"source\": 252, \"target\": 3, \"value\": 0.6987589240756513}, {\"source\": 252, \"target\": 4, \"value\": 0.010213974909632495}, {\"source\": 252, \"target\": 5, \"value\": 0.5400112781371519}, {\"source\": 252, \"target\": 6, \"value\": 0.2627415379432153}, {\"source\": 252, \"target\": 7, \"value\": 0.2979749721807413}, {\"source\": 252, \"target\": 8, \"value\": 0.059404238449915936}, {\"source\": 252, \"target\": 9, \"value\": 0.09542242498635645}, {\"source\": 253, \"target\": 0, \"value\": 0.7786640511127683}, {\"source\": 253, \"target\": 1, \"value\": 0.7292905826953794}, {\"source\": 253, \"target\": 2, \"value\": 0.0870849762626903}, {\"source\": 253, \"target\": 3, \"value\": 0.3498516345567655}, {\"source\": 253, \"target\": 4, \"value\": 0.36575231764678484}, {\"source\": 253, \"target\": 5, \"value\": 0.6040876883714359}, {\"source\": 253, \"target\": 6, \"value\": 0.07478022475826818}, {\"source\": 253, \"target\": 7, \"value\": 0.5626769053866878}, {\"source\": 253, \"target\": 8, \"value\": 0.7139452586838683}, {\"source\": 253, \"target\": 9, \"value\": 0.32085742344543877}, {\"source\": 254, \"target\": 0, \"value\": 0.6832531122524246}, {\"source\": 254, \"target\": 1, \"value\": 0.20371440997822887}, {\"source\": 254, \"target\": 2, \"value\": 0.10437891450677905}, {\"source\": 254, \"target\": 3, \"value\": 0.47582210398336033}, {\"source\": 254, \"target\": 4, \"value\": 0.18577475805838295}, {\"source\": 254, \"target\": 5, \"value\": 0.014392036959330445}, {\"source\": 254, \"target\": 6, \"value\": 0.7254789967110697}, {\"source\": 254, \"target\": 7, \"value\": 0.6580264845202392}, {\"source\": 254, \"target\": 8, \"value\": 0.4577732138048901}, {\"source\": 254, \"target\": 9, \"value\": 0.5379360541037149}, {\"source\": 255, \"target\": 0, \"value\": 0.03638953778037246}, {\"source\": 255, \"target\": 1, \"value\": 0.4492356662699035}, {\"source\": 255, \"target\": 2, \"value\": 0.3072540096627726}, {\"source\": 255, \"target\": 3, \"value\": 0.5397166540765201}, {\"source\": 255, \"target\": 4, \"value\": 0.3647516237739823}, {\"source\": 255, \"target\": 5, \"value\": 0.34239671492882306}, {\"source\": 255, \"target\": 6, \"value\": 0.6363379653461602}, {\"source\": 255, \"target\": 7, \"value\": 0.8352262764291084}, {\"source\": 255, \"target\": 8, \"value\": 0.16178256824768245}, {\"source\": 255, \"target\": 9, \"value\": 0.31067412595790045}, {\"source\": 256, \"target\": 0, \"value\": 0.7007658178416907}, {\"source\": 256, \"target\": 1, \"value\": 0.9005512440019678}, {\"source\": 256, \"target\": 2, \"value\": 0.13540363618875417}, {\"source\": 256, \"target\": 3, \"value\": 0.9761058750978355}, {\"source\": 256, \"target\": 4, \"value\": 0.9200684867348882}, {\"source\": 256, \"target\": 5, \"value\": 0.25376408368599257}, {\"source\": 256, \"target\": 6, \"value\": 0.6026831742286612}, {\"source\": 256, \"target\": 7, \"value\": 0.7141980556986955}, {\"source\": 256, \"target\": 8, \"value\": 0.07895079206480937}, {\"source\": 256, \"target\": 9, \"value\": 0.24613650742721693}, {\"source\": 257, \"target\": 0, \"value\": 0.8157407187909166}, {\"source\": 257, \"target\": 1, \"value\": 0.831344511495044}, {\"source\": 257, \"target\": 2, \"value\": 0.3706086693190853}, {\"source\": 257, \"target\": 3, \"value\": 0.6506278332468842}, {\"source\": 257, \"target\": 4, \"value\": 0.6236731918427947}, {\"source\": 257, \"target\": 5, \"value\": 0.7715221559400885}, {\"source\": 257, \"target\": 6, \"value\": 0.5066171406105014}, {\"source\": 257, \"target\": 7, \"value\": 0.2872403489883184}, {\"source\": 257, \"target\": 8, \"value\": 0.1369716221522661}, {\"source\": 257, \"target\": 9, \"value\": 0.2973569322399049}, {\"source\": 258, \"target\": 0, \"value\": 0.12249895415895928}, {\"source\": 258, \"target\": 1, \"value\": 0.2551110943991781}, {\"source\": 258, \"target\": 2, \"value\": 0.5143577810513121}, {\"source\": 258, \"target\": 3, \"value\": 0.49731565954689083}, {\"source\": 258, \"target\": 4, \"value\": 0.08768369960037459}, {\"source\": 258, \"target\": 5, \"value\": 0.6612351990020634}, {\"source\": 258, \"target\": 6, \"value\": 0.3135402051073427}, {\"source\": 258, \"target\": 7, \"value\": 0.910517381825028}, {\"source\": 258, \"target\": 8, \"value\": 0.9347414247182452}, {\"source\": 258, \"target\": 9, \"value\": 0.4529214451629219}, {\"source\": 259, \"target\": 0, \"value\": 0.3790126497611779}, {\"source\": 259, \"target\": 1, \"value\": 0.5992174466529797}, {\"source\": 259, \"target\": 2, \"value\": 0.7519743378324731}, {\"source\": 259, \"target\": 3, \"value\": 0.9093840997558206}, {\"source\": 259, \"target\": 4, \"value\": 0.6208744980663268}, {\"source\": 259, \"target\": 5, \"value\": 0.30394458412205494}, {\"source\": 259, \"target\": 6, \"value\": 0.8254867143274259}, {\"source\": 259, \"target\": 7, \"value\": 0.08369165698115288}, {\"source\": 259, \"target\": 8, \"value\": 0.3147760153500946}, {\"source\": 259, \"target\": 9, \"value\": 0.7483166622329899}, {\"source\": 260, \"target\": 0, \"value\": 0.9837943923230349}, {\"source\": 260, \"target\": 1, \"value\": 0.26398438565638704}, {\"source\": 260, \"target\": 2, \"value\": 0.7376669099889789}, {\"source\": 260, \"target\": 3, \"value\": 0.211368281947089}, {\"source\": 260, \"target\": 4, \"value\": 0.5601538030444015}, {\"source\": 260, \"target\": 5, \"value\": 0.5888427541587591}, {\"source\": 260, \"target\": 6, \"value\": 0.10051757104738823}, {\"source\": 260, \"target\": 7, \"value\": 0.2664804453829398}, {\"source\": 260, \"target\": 8, \"value\": 0.7612151643912564}, {\"source\": 260, \"target\": 9, \"value\": 0.08577363447630515}, {\"source\": 261, \"target\": 0, \"value\": 0.4659145021876733}, {\"source\": 261, \"target\": 1, \"value\": 0.5264937084456227}, {\"source\": 261, \"target\": 2, \"value\": 0.06446601516412498}, {\"source\": 261, \"target\": 3, \"value\": 0.6351852929184406}, {\"source\": 261, \"target\": 4, \"value\": 0.5765942083088607}, {\"source\": 261, \"target\": 5, \"value\": 0.09688186716381908}, {\"source\": 261, \"target\": 6, \"value\": 0.5183340989376374}, {\"source\": 261, \"target\": 7, \"value\": 0.9975952706906955}, {\"source\": 261, \"target\": 8, \"value\": 0.1085247063115522}, {\"source\": 261, \"target\": 9, \"value\": 0.44076577326836397}, {\"source\": 262, \"target\": 0, \"value\": 0.39233819957689275}, {\"source\": 262, \"target\": 1, \"value\": 0.5942778529318382}, {\"source\": 262, \"target\": 2, \"value\": 0.8693198619198667}, {\"source\": 262, \"target\": 3, \"value\": 0.1269320722590238}, {\"source\": 262, \"target\": 4, \"value\": 0.6456972634222421}, {\"source\": 262, \"target\": 5, \"value\": 0.9065650602113924}, {\"source\": 262, \"target\": 6, \"value\": 0.2700753092117417}, {\"source\": 262, \"target\": 7, \"value\": 0.8420780103408804}, {\"source\": 262, \"target\": 8, \"value\": 0.8365983966871195}, {\"source\": 262, \"target\": 9, \"value\": 0.8620979220765765}, {\"source\": 263, \"target\": 0, \"value\": 0.6585238875455374}, {\"source\": 263, \"target\": 1, \"value\": 0.45668981157215083}, {\"source\": 263, \"target\": 2, \"value\": 0.22279849292375964}, {\"source\": 263, \"target\": 3, \"value\": 0.6589639038053486}, {\"source\": 263, \"target\": 4, \"value\": 0.15126158196943063}, {\"source\": 263, \"target\": 5, \"value\": 0.4308200782706879}, {\"source\": 263, \"target\": 6, \"value\": 0.03296633002384386}, {\"source\": 263, \"target\": 7, \"value\": 0.3868141579211959}, {\"source\": 263, \"target\": 8, \"value\": 0.759014316128235}, {\"source\": 263, \"target\": 9, \"value\": 0.24422838535899782}, {\"source\": 264, \"target\": 0, \"value\": 0.8196759850008302}, {\"source\": 264, \"target\": 1, \"value\": 0.8788868840092652}, {\"source\": 264, \"target\": 2, \"value\": 0.18856183723681252}, {\"source\": 264, \"target\": 3, \"value\": 0.2967089075794386}, {\"source\": 264, \"target\": 4, \"value\": 0.7474707134050175}, {\"source\": 264, \"target\": 5, \"value\": 0.015171598985419199}, {\"source\": 264, \"target\": 6, \"value\": 0.870860092904115}, {\"source\": 264, \"target\": 7, \"value\": 0.42307504314897615}, {\"source\": 264, \"target\": 8, \"value\": 0.3220404688406783}, {\"source\": 264, \"target\": 9, \"value\": 0.7792861653749196}, {\"source\": 265, \"target\": 0, \"value\": 0.02165872260776691}, {\"source\": 265, \"target\": 1, \"value\": 0.04892475352489234}, {\"source\": 265, \"target\": 2, \"value\": 0.17751407177957346}, {\"source\": 265, \"target\": 3, \"value\": 0.9451697159388819}, {\"source\": 265, \"target\": 4, \"value\": 0.07022427327670122}, {\"source\": 265, \"target\": 5, \"value\": 0.5586150347139839}, {\"source\": 265, \"target\": 6, \"value\": 0.4275701816482139}, {\"source\": 265, \"target\": 7, \"value\": 0.685115164211735}, {\"source\": 265, \"target\": 8, \"value\": 0.7045980638246907}, {\"source\": 265, \"target\": 9, \"value\": 0.6776445786801458}, {\"source\": 266, \"target\": 0, \"value\": 0.7941092292303752}, {\"source\": 266, \"target\": 1, \"value\": 0.22846856894917789}, {\"source\": 266, \"target\": 2, \"value\": 0.7326328882855573}, {\"source\": 266, \"target\": 3, \"value\": 0.3805693410576406}, {\"source\": 266, \"target\": 4, \"value\": 0.0007218087096738657}, {\"source\": 266, \"target\": 5, \"value\": 0.5194288906642984}, {\"source\": 266, \"target\": 6, \"value\": 0.5635681802866149}, {\"source\": 266, \"target\": 7, \"value\": 0.22935193241392904}, {\"source\": 266, \"target\": 8, \"value\": 0.24388324687048724}, {\"source\": 266, \"target\": 9, \"value\": 0.018031915510372754}, {\"source\": 267, \"target\": 0, \"value\": 0.6015078938277175}, {\"source\": 267, \"target\": 1, \"value\": 0.24238373802764712}, {\"source\": 267, \"target\": 2, \"value\": 0.9399615938795939}, {\"source\": 267, \"target\": 3, \"value\": 0.5913145511149421}, {\"source\": 267, \"target\": 4, \"value\": 0.8028499458635372}, {\"source\": 267, \"target\": 5, \"value\": 0.9018797450779238}, {\"source\": 267, \"target\": 6, \"value\": 0.08001627306367454}, {\"source\": 267, \"target\": 7, \"value\": 0.2291541094593501}, {\"source\": 267, \"target\": 8, \"value\": 0.6018363368503079}, {\"source\": 267, \"target\": 9, \"value\": 0.6671536734476181}, {\"source\": 268, \"target\": 0, \"value\": 0.4981369907105857}, {\"source\": 268, \"target\": 1, \"value\": 0.27337289701473766}, {\"source\": 268, \"target\": 2, \"value\": 0.6312361779306195}, {\"source\": 268, \"target\": 3, \"value\": 0.9210800577394697}, {\"source\": 268, \"target\": 4, \"value\": 0.5303802430384137}, {\"source\": 268, \"target\": 5, \"value\": 0.29605982187836544}, {\"source\": 268, \"target\": 6, \"value\": 0.8037915437267352}, {\"source\": 268, \"target\": 7, \"value\": 0.8935412681392788}, {\"source\": 268, \"target\": 8, \"value\": 0.06456489927913889}, {\"source\": 268, \"target\": 9, \"value\": 0.9100407415418862}, {\"source\": 269, \"target\": 0, \"value\": 0.33815204367757445}, {\"source\": 269, \"target\": 1, \"value\": 0.8224963182146898}, {\"source\": 269, \"target\": 2, \"value\": 0.9946133575002484}, {\"source\": 269, \"target\": 3, \"value\": 0.9934041090703486}, {\"source\": 269, \"target\": 4, \"value\": 0.989212396438714}, {\"source\": 269, \"target\": 5, \"value\": 0.975147761030176}, {\"source\": 269, \"target\": 6, \"value\": 0.017939547974418102}, {\"source\": 269, \"target\": 7, \"value\": 0.44185480896398754}, {\"source\": 269, \"target\": 8, \"value\": 0.5764657577350942}, {\"source\": 269, \"target\": 9, \"value\": 0.516484908724901}, {\"source\": 270, \"target\": 0, \"value\": 0.38600509148323114}, {\"source\": 270, \"target\": 1, \"value\": 0.2368519295072462}, {\"source\": 270, \"target\": 2, \"value\": 0.23715510956154606}, {\"source\": 270, \"target\": 3, \"value\": 0.4095811233829447}, {\"source\": 270, \"target\": 4, \"value\": 0.31214401468751785}, {\"source\": 270, \"target\": 5, \"value\": 0.7773791405188846}, {\"source\": 270, \"target\": 6, \"value\": 0.6472152088652817}, {\"source\": 270, \"target\": 7, \"value\": 0.5949531622791119}, {\"source\": 270, \"target\": 8, \"value\": 0.5610972606205763}, {\"source\": 270, \"target\": 9, \"value\": 0.7355784779381703}, {\"source\": 271, \"target\": 0, \"value\": 0.5451156491946942}, {\"source\": 271, \"target\": 1, \"value\": 0.5383595917854905}, {\"source\": 271, \"target\": 2, \"value\": 0.09069105818026468}, {\"source\": 271, \"target\": 3, \"value\": 0.8513082163979817}, {\"source\": 271, \"target\": 4, \"value\": 0.7395000912287865}, {\"source\": 271, \"target\": 5, \"value\": 0.2942601943853046}, {\"source\": 271, \"target\": 6, \"value\": 0.1915741130864207}, {\"source\": 271, \"target\": 7, \"value\": 0.01772261360184757}, {\"source\": 271, \"target\": 8, \"value\": 0.23419860611674237}, {\"source\": 271, \"target\": 9, \"value\": 0.8454451977287034}, {\"source\": 272, \"target\": 0, \"value\": 0.4066891073961172}, {\"source\": 272, \"target\": 1, \"value\": 0.9622592377554835}, {\"source\": 272, \"target\": 2, \"value\": 0.21533640226784123}, {\"source\": 272, \"target\": 3, \"value\": 0.8793422582271972}, {\"source\": 272, \"target\": 4, \"value\": 0.7444552796672067}, {\"source\": 272, \"target\": 5, \"value\": 0.6311704009588655}, {\"source\": 272, \"target\": 6, \"value\": 0.5793232569176942}, {\"source\": 272, \"target\": 7, \"value\": 0.3026152810857222}, {\"source\": 272, \"target\": 8, \"value\": 0.2378983250322375}, {\"source\": 272, \"target\": 9, \"value\": 0.19961631366742272}, {\"source\": 273, \"target\": 0, \"value\": 0.017283885391191744}, {\"source\": 273, \"target\": 1, \"value\": 0.417219399282841}, {\"source\": 273, \"target\": 2, \"value\": 0.043441024088140545}, {\"source\": 273, \"target\": 3, \"value\": 0.5157761815619474}, {\"source\": 273, \"target\": 4, \"value\": 0.6767732447596515}, {\"source\": 273, \"target\": 5, \"value\": 0.286809416121265}, {\"source\": 273, \"target\": 6, \"value\": 0.31116770889324663}, {\"source\": 273, \"target\": 7, \"value\": 0.6476217766122244}, {\"source\": 273, \"target\": 8, \"value\": 0.7762547881397559}, {\"source\": 273, \"target\": 9, \"value\": 0.9958772704933289}, {\"source\": 274, \"target\": 0, \"value\": 0.6726088399557574}, {\"source\": 274, \"target\": 1, \"value\": 0.27274476890395627}, {\"source\": 274, \"target\": 2, \"value\": 0.10795460143831048}, {\"source\": 274, \"target\": 3, \"value\": 0.45526125338041423}, {\"source\": 274, \"target\": 4, \"value\": 0.6144806684872237}, {\"source\": 274, \"target\": 5, \"value\": 0.6641831960958837}, {\"source\": 274, \"target\": 6, \"value\": 0.7214549869891034}, {\"source\": 274, \"target\": 7, \"value\": 0.7350681632095265}, {\"source\": 274, \"target\": 8, \"value\": 0.9332670840231287}, {\"source\": 274, \"target\": 9, \"value\": 0.18335400742286057}, {\"source\": 275, \"target\": 0, \"value\": 0.3226005195386681}, {\"source\": 275, \"target\": 1, \"value\": 0.004173921791854163}, {\"source\": 275, \"target\": 2, \"value\": 0.5890246126120723}, {\"source\": 275, \"target\": 3, \"value\": 0.6539929330457755}, {\"source\": 275, \"target\": 4, \"value\": 0.004663928408825901}, {\"source\": 275, \"target\": 5, \"value\": 0.343584705765835}, {\"source\": 275, \"target\": 6, \"value\": 0.6027057057520094}, {\"source\": 275, \"target\": 7, \"value\": 0.672283292328443}, {\"source\": 275, \"target\": 8, \"value\": 0.853559508151387}, {\"source\": 275, \"target\": 9, \"value\": 0.7125304444516043}, {\"source\": 276, \"target\": 0, \"value\": 0.8063081608531667}, {\"source\": 276, \"target\": 1, \"value\": 0.6156329510092914}, {\"source\": 276, \"target\": 2, \"value\": 0.16051244597168468}, {\"source\": 276, \"target\": 3, \"value\": 0.6375254017155958}, {\"source\": 276, \"target\": 4, \"value\": 0.3955989794211001}, {\"source\": 276, \"target\": 5, \"value\": 0.64389180535824}, {\"source\": 276, \"target\": 6, \"value\": 0.8895956700014357}, {\"source\": 276, \"target\": 7, \"value\": 0.3931075899664861}, {\"source\": 276, \"target\": 8, \"value\": 0.523839335500476}, {\"source\": 276, \"target\": 9, \"value\": 0.041947274536512924}, {\"source\": 277, \"target\": 0, \"value\": 0.6188202350963825}, {\"source\": 277, \"target\": 1, \"value\": 0.69357669013982}, {\"source\": 277, \"target\": 2, \"value\": 0.6055006960270516}, {\"source\": 277, \"target\": 3, \"value\": 0.9434762405569417}, {\"source\": 277, \"target\": 4, \"value\": 0.6203797917861642}, {\"source\": 277, \"target\": 5, \"value\": 0.32076286035672985}, {\"source\": 277, \"target\": 6, \"value\": 0.5768084354320425}, {\"source\": 277, \"target\": 7, \"value\": 0.2614745377826343}, {\"source\": 277, \"target\": 8, \"value\": 0.3601485717650933}, {\"source\": 277, \"target\": 9, \"value\": 0.4774934755011888}, {\"source\": 278, \"target\": 0, \"value\": 0.22071149342572804}, {\"source\": 278, \"target\": 1, \"value\": 0.36848454339301795}, {\"source\": 278, \"target\": 2, \"value\": 0.5652572653432373}, {\"source\": 278, \"target\": 3, \"value\": 0.9409342909123225}, {\"source\": 278, \"target\": 4, \"value\": 0.39216743411474153}, {\"source\": 278, \"target\": 5, \"value\": 0.6826981394029895}, {\"source\": 278, \"target\": 6, \"value\": 0.6116747701693505}, {\"source\": 278, \"target\": 7, \"value\": 0.08266016212663585}, {\"source\": 278, \"target\": 8, \"value\": 0.6083957198509534}, {\"source\": 278, \"target\": 9, \"value\": 0.7729969709829575}, {\"source\": 279, \"target\": 0, \"value\": 0.08613885311776848}, {\"source\": 279, \"target\": 1, \"value\": 0.5169536615837607}, {\"source\": 279, \"target\": 2, \"value\": 0.4889649199088896}, {\"source\": 279, \"target\": 3, \"value\": 0.651355997007518}, {\"source\": 279, \"target\": 4, \"value\": 0.573329167574035}, {\"source\": 279, \"target\": 5, \"value\": 0.17219306101819098}, {\"source\": 279, \"target\": 6, \"value\": 0.23308087777226716}, {\"source\": 279, \"target\": 7, \"value\": 0.2904316351499857}, {\"source\": 279, \"target\": 8, \"value\": 0.6678936319174373}, {\"source\": 279, \"target\": 9, \"value\": 0.772451568358978}, {\"source\": 280, \"target\": 0, \"value\": 0.7787699004676302}, {\"source\": 280, \"target\": 1, \"value\": 0.6310015524807833}, {\"source\": 280, \"target\": 2, \"value\": 0.16841153863287117}, {\"source\": 280, \"target\": 3, \"value\": 0.5346381283974605}, {\"source\": 280, \"target\": 4, \"value\": 0.47343039518518193}, {\"source\": 280, \"target\": 5, \"value\": 0.9933037590144704}, {\"source\": 280, \"target\": 6, \"value\": 0.28066393770183007}, {\"source\": 280, \"target\": 7, \"value\": 0.33794404072873774}, {\"source\": 280, \"target\": 8, \"value\": 0.09446344331760037}, {\"source\": 280, \"target\": 9, \"value\": 0.9470427268799692}, {\"source\": 281, \"target\": 0, \"value\": 0.8575640144537084}, {\"source\": 281, \"target\": 1, \"value\": 0.8664027294817501}, {\"source\": 281, \"target\": 2, \"value\": 0.4351278304653141}, {\"source\": 281, \"target\": 3, \"value\": 0.9964855167142939}, {\"source\": 281, \"target\": 4, \"value\": 0.39457498196186114}, {\"source\": 281, \"target\": 5, \"value\": 0.9929426032846842}, {\"source\": 281, \"target\": 6, \"value\": 0.6142795686156971}, {\"source\": 281, \"target\": 7, \"value\": 0.7172210027719278}, {\"source\": 281, \"target\": 8, \"value\": 0.2642126026864562}, {\"source\": 281, \"target\": 9, \"value\": 0.27194338336672075}, {\"source\": 282, \"target\": 0, \"value\": 0.46628230934049997}, {\"source\": 282, \"target\": 1, \"value\": 0.9677979086981793}, {\"source\": 282, \"target\": 2, \"value\": 0.4750972462521632}, {\"source\": 282, \"target\": 3, \"value\": 0.9152594755302146}, {\"source\": 282, \"target\": 4, \"value\": 0.8741872701009891}, {\"source\": 282, \"target\": 5, \"value\": 0.22888544647187425}, {\"source\": 282, \"target\": 6, \"value\": 0.8081616351979097}, {\"source\": 282, \"target\": 7, \"value\": 0.025483799177075328}, {\"source\": 282, \"target\": 8, \"value\": 0.874274620440791}, {\"source\": 282, \"target\": 9, \"value\": 0.9754484845270189}, {\"source\": 283, \"target\": 0, \"value\": 0.09056954630311631}, {\"source\": 283, \"target\": 1, \"value\": 0.9320170513444823}, {\"source\": 283, \"target\": 2, \"value\": 0.06845976915007468}, {\"source\": 283, \"target\": 3, \"value\": 0.397946494291728}, {\"source\": 283, \"target\": 4, \"value\": 0.18215889779512073}, {\"source\": 283, \"target\": 5, \"value\": 0.05140677469446042}, {\"source\": 283, \"target\": 6, \"value\": 0.8149969562824613}, {\"source\": 283, \"target\": 7, \"value\": 0.678415199039637}, {\"source\": 283, \"target\": 8, \"value\": 0.1854435206667826}, {\"source\": 283, \"target\": 9, \"value\": 0.17201554316193168}, {\"source\": 284, \"target\": 0, \"value\": 0.20351976349115342}, {\"source\": 284, \"target\": 1, \"value\": 0.29432277097556037}, {\"source\": 284, \"target\": 2, \"value\": 0.08658826588977342}, {\"source\": 284, \"target\": 3, \"value\": 0.08637269440727657}, {\"source\": 284, \"target\": 4, \"value\": 0.8586664115414566}, {\"source\": 284, \"target\": 5, \"value\": 0.6459895249379269}, {\"source\": 284, \"target\": 6, \"value\": 0.43068155067488256}, {\"source\": 284, \"target\": 7, \"value\": 0.44775798672980904}, {\"source\": 284, \"target\": 8, \"value\": 0.08822849927331733}, {\"source\": 284, \"target\": 9, \"value\": 0.12830490810518436}, {\"source\": 285, \"target\": 0, \"value\": 0.5844186328793489}, {\"source\": 285, \"target\": 1, \"value\": 0.39585827969480036}, {\"source\": 285, \"target\": 2, \"value\": 0.8712510719778082}, {\"source\": 285, \"target\": 3, \"value\": 0.6607536617529775}, {\"source\": 285, \"target\": 4, \"value\": 0.8084008509248238}, {\"source\": 285, \"target\": 5, \"value\": 0.31470820081441586}, {\"source\": 285, \"target\": 6, \"value\": 0.04047899268329891}, {\"source\": 285, \"target\": 7, \"value\": 0.010851183164456879}, {\"source\": 285, \"target\": 8, \"value\": 0.2401335383907386}, {\"source\": 285, \"target\": 9, \"value\": 0.8553569849863487}, {\"source\": 286, \"target\": 0, \"value\": 0.5473124579693897}, {\"source\": 286, \"target\": 1, \"value\": 0.3829183782109321}, {\"source\": 286, \"target\": 2, \"value\": 0.12260644659473585}, {\"source\": 286, \"target\": 3, \"value\": 0.16038266887406782}, {\"source\": 286, \"target\": 4, \"value\": 0.6799338466634918}, {\"source\": 286, \"target\": 5, \"value\": 0.09261779697510608}, {\"source\": 286, \"target\": 6, \"value\": 0.968901939078866}, {\"source\": 286, \"target\": 7, \"value\": 0.011367739816966371}, {\"source\": 286, \"target\": 8, \"value\": 0.9058531363538583}, {\"source\": 286, \"target\": 9, \"value\": 0.5940783828153899}, {\"source\": 287, \"target\": 0, \"value\": 0.8073028607259749}, {\"source\": 287, \"target\": 1, \"value\": 0.7132765189686544}, {\"source\": 287, \"target\": 2, \"value\": 0.7221980640335451}, {\"source\": 287, \"target\": 3, \"value\": 0.9627344638568245}, {\"source\": 287, \"target\": 4, \"value\": 0.18893500741735536}, {\"source\": 287, \"target\": 5, \"value\": 0.8181412463154899}, {\"source\": 287, \"target\": 6, \"value\": 0.7659890353115191}, {\"source\": 287, \"target\": 7, \"value\": 0.8933435119588254}, {\"source\": 287, \"target\": 8, \"value\": 0.7092241515458911}, {\"source\": 287, \"target\": 9, \"value\": 0.057967984961489805}, {\"source\": 288, \"target\": 0, \"value\": 0.3247393725669143}, {\"source\": 288, \"target\": 1, \"value\": 0.8974313666606741}, {\"source\": 288, \"target\": 2, \"value\": 0.6697537374244523}, {\"source\": 288, \"target\": 3, \"value\": 0.6196537439321038}, {\"source\": 288, \"target\": 4, \"value\": 0.7152073564771931}, {\"source\": 288, \"target\": 5, \"value\": 0.8674736347035827}, {\"source\": 288, \"target\": 6, \"value\": 0.2550124196179382}, {\"source\": 288, \"target\": 7, \"value\": 0.14258006358326003}, {\"source\": 288, \"target\": 8, \"value\": 0.7825899806769525}, {\"source\": 288, \"target\": 9, \"value\": 0.36225915189423863}, {\"source\": 289, \"target\": 0, \"value\": 0.8810323893494452}, {\"source\": 289, \"target\": 1, \"value\": 0.9182174994180772}, {\"source\": 289, \"target\": 2, \"value\": 0.9080509215948284}, {\"source\": 289, \"target\": 3, \"value\": 0.9169549477922516}, {\"source\": 289, \"target\": 4, \"value\": 0.06721310913729794}, {\"source\": 289, \"target\": 5, \"value\": 0.31392512224203384}, {\"source\": 289, \"target\": 6, \"value\": 0.14761200379872152}, {\"source\": 289, \"target\": 7, \"value\": 0.906502784357636}, {\"source\": 289, \"target\": 8, \"value\": 0.5772028849391525}, {\"source\": 289, \"target\": 9, \"value\": 0.12357335798711244}, {\"source\": 290, \"target\": 0, \"value\": 0.03212877574511441}, {\"source\": 290, \"target\": 1, \"value\": 0.08395215796271172}, {\"source\": 290, \"target\": 2, \"value\": 0.6321457223876036}, {\"source\": 290, \"target\": 3, \"value\": 0.6950698577709074}, {\"source\": 290, \"target\": 4, \"value\": 0.35823138340232896}, {\"source\": 290, \"target\": 5, \"value\": 0.654898199402412}, {\"source\": 290, \"target\": 6, \"value\": 0.1743443956484153}, {\"source\": 290, \"target\": 7, \"value\": 0.6304333220152808}, {\"source\": 290, \"target\": 8, \"value\": 0.7675821477467607}, {\"source\": 290, \"target\": 9, \"value\": 0.6901522073884271}, {\"source\": 291, \"target\": 0, \"value\": 0.8012991204700752}, {\"source\": 291, \"target\": 1, \"value\": 0.1719430641683869}, {\"source\": 291, \"target\": 2, \"value\": 0.5037033726220054}, {\"source\": 291, \"target\": 3, \"value\": 0.9489804361299601}, {\"source\": 291, \"target\": 4, \"value\": 0.9439734710437789}, {\"source\": 291, \"target\": 5, \"value\": 0.13271727834340008}, {\"source\": 291, \"target\": 6, \"value\": 0.7664753096898277}, {\"source\": 291, \"target\": 7, \"value\": 0.3243637264105066}, {\"source\": 291, \"target\": 8, \"value\": 0.6928395366901161}, {\"source\": 291, \"target\": 9, \"value\": 0.3226744359020013}, {\"source\": 292, \"target\": 0, \"value\": 0.15092504643321536}, {\"source\": 292, \"target\": 1, \"value\": 0.6280113382365953}, {\"source\": 292, \"target\": 2, \"value\": 0.9312317173475148}, {\"source\": 292, \"target\": 3, \"value\": 0.32641849638105036}, {\"source\": 292, \"target\": 4, \"value\": 0.8062634856610995}, {\"source\": 292, \"target\": 5, \"value\": 0.10658944552026695}, {\"source\": 292, \"target\": 6, \"value\": 0.7264721798841266}, {\"source\": 292, \"target\": 7, \"value\": 0.5012956379182346}, {\"source\": 292, \"target\": 8, \"value\": 0.9614337733929351}, {\"source\": 292, \"target\": 9, \"value\": 0.6633977181122226}, {\"source\": 293, \"target\": 0, \"value\": 0.7170129609107512}, {\"source\": 293, \"target\": 1, \"value\": 0.8851304704566882}, {\"source\": 293, \"target\": 2, \"value\": 0.8694624772048082}, {\"source\": 293, \"target\": 3, \"value\": 0.11547209657321311}, {\"source\": 293, \"target\": 4, \"value\": 0.46728149939552155}, {\"source\": 293, \"target\": 5, \"value\": 0.5351803661170166}, {\"source\": 293, \"target\": 6, \"value\": 0.14493225809820032}, {\"source\": 293, \"target\": 7, \"value\": 0.817735360022012}, {\"source\": 293, \"target\": 8, \"value\": 0.6675065929327456}, {\"source\": 293, \"target\": 9, \"value\": 0.6937265839807941}, {\"source\": 294, \"target\": 0, \"value\": 0.5377566442122961}, {\"source\": 294, \"target\": 1, \"value\": 0.5242804601635627}, {\"source\": 294, \"target\": 2, \"value\": 0.8354333301637958}, {\"source\": 294, \"target\": 3, \"value\": 0.18145623358293483}, {\"source\": 294, \"target\": 4, \"value\": 0.3390435603465828}, {\"source\": 294, \"target\": 5, \"value\": 0.3439951748345875}, {\"source\": 294, \"target\": 6, \"value\": 0.01956878202737189}, {\"source\": 294, \"target\": 7, \"value\": 0.7184864934033994}, {\"source\": 294, \"target\": 8, \"value\": 0.19011657234317914}, {\"source\": 294, \"target\": 9, \"value\": 0.5382397531430673}, {\"source\": 295, \"target\": 0, \"value\": 0.7645125809980263}, {\"source\": 295, \"target\": 1, \"value\": 0.8680168826399001}, {\"source\": 295, \"target\": 2, \"value\": 0.17078114424692714}, {\"source\": 295, \"target\": 3, \"value\": 0.9097745330276235}, {\"source\": 295, \"target\": 4, \"value\": 0.698185764566963}, {\"source\": 295, \"target\": 5, \"value\": 0.3495674221650682}, {\"source\": 295, \"target\": 6, \"value\": 0.7479141776296794}, {\"source\": 295, \"target\": 7, \"value\": 0.35146347677857825}, {\"source\": 295, \"target\": 8, \"value\": 0.5523012706562587}, {\"source\": 295, \"target\": 9, \"value\": 0.30559166802280224}, {\"source\": 296, \"target\": 0, \"value\": 0.3151368697260237}, {\"source\": 296, \"target\": 1, \"value\": 0.9034883304369009}, {\"source\": 296, \"target\": 2, \"value\": 0.08300867261319345}, {\"source\": 296, \"target\": 3, \"value\": 0.9548382421769848}, {\"source\": 296, \"target\": 4, \"value\": 0.398701660036911}, {\"source\": 296, \"target\": 5, \"value\": 0.4513084532535492}, {\"source\": 296, \"target\": 6, \"value\": 0.8262458565477107}, {\"source\": 296, \"target\": 7, \"value\": 0.23957130593245923}, {\"source\": 296, \"target\": 8, \"value\": 0.9982876830083148}, {\"source\": 296, \"target\": 9, \"value\": 0.04728784470918712}, {\"source\": 297, \"target\": 0, \"value\": 0.39737892483856097}, {\"source\": 297, \"target\": 1, \"value\": 0.9287078560321131}, {\"source\": 297, \"target\": 2, \"value\": 0.6085916305942212}, {\"source\": 297, \"target\": 3, \"value\": 0.411685745612281}, {\"source\": 297, \"target\": 4, \"value\": 0.5164001540787545}, {\"source\": 297, \"target\": 5, \"value\": 0.9552098422460883}, {\"source\": 297, \"target\": 6, \"value\": 0.8751273745669877}, {\"source\": 297, \"target\": 7, \"value\": 0.5177322187121811}, {\"source\": 297, \"target\": 8, \"value\": 0.14496375493257974}, {\"source\": 297, \"target\": 9, \"value\": 0.09478550567249455}, {\"source\": 298, \"target\": 0, \"value\": 0.00943276853151509}, {\"source\": 298, \"target\": 1, \"value\": 0.8858041382889495}, {\"source\": 298, \"target\": 2, \"value\": 0.2629413255642111}, {\"source\": 298, \"target\": 3, \"value\": 0.42027292382738046}, {\"source\": 298, \"target\": 4, \"value\": 0.5985040383071013}, {\"source\": 298, \"target\": 5, \"value\": 0.4428805569666894}, {\"source\": 298, \"target\": 6, \"value\": 0.18811611092112512}, {\"source\": 298, \"target\": 7, \"value\": 0.40734908446787177}, {\"source\": 298, \"target\": 8, \"value\": 0.07251246413387269}, {\"source\": 298, \"target\": 9, \"value\": 0.10049803522335565}, {\"source\": 299, \"target\": 0, \"value\": 0.24337835180858391}, {\"source\": 299, \"target\": 1, \"value\": 0.9350694479779181}, {\"source\": 299, \"target\": 2, \"value\": 0.4585394616957209}, {\"source\": 299, \"target\": 3, \"value\": 0.9434846416246228}, {\"source\": 299, \"target\": 4, \"value\": 0.2528045295119128}, {\"source\": 299, \"target\": 5, \"value\": 0.20567162758862145}, {\"source\": 299, \"target\": 6, \"value\": 0.3000881115354581}, {\"source\": 299, \"target\": 7, \"value\": 0.3528870528578042}, {\"source\": 299, \"target\": 8, \"value\": 0.6021985496384737}, {\"source\": 299, \"target\": 9, \"value\": 0.47820803558914005}, {\"source\": 300, \"target\": 0, \"value\": 0.0767354550543764}, {\"source\": 300, \"target\": 1, \"value\": 0.5689124903678172}, {\"source\": 300, \"target\": 2, \"value\": 0.40011815264877715}, {\"source\": 300, \"target\": 3, \"value\": 0.3088978723705127}, {\"source\": 300, \"target\": 4, \"value\": 0.928405015938131}, {\"source\": 300, \"target\": 5, \"value\": 0.23497768519031925}, {\"source\": 300, \"target\": 6, \"value\": 0.9018688902756336}, {\"source\": 300, \"target\": 7, \"value\": 0.8439084810496378}, {\"source\": 300, \"target\": 8, \"value\": 0.6279511989340865}, {\"source\": 300, \"target\": 9, \"value\": 0.8580739387869661}, {\"source\": 301, \"target\": 0, \"value\": 0.4616006646152805}, {\"source\": 301, \"target\": 1, \"value\": 0.6912278809161522}, {\"source\": 301, \"target\": 2, \"value\": 0.01783470661356268}, {\"source\": 301, \"target\": 3, \"value\": 0.766161322236003}, {\"source\": 301, \"target\": 4, \"value\": 0.5261151751825425}, {\"source\": 301, \"target\": 5, \"value\": 0.02957762710160705}, {\"source\": 301, \"target\": 6, \"value\": 0.3015611492701388}, {\"source\": 301, \"target\": 7, \"value\": 0.9373049262811762}, {\"source\": 301, \"target\": 8, \"value\": 0.07293591526448362}, {\"source\": 301, \"target\": 9, \"value\": 0.9298821881512901}, {\"source\": 302, \"target\": 0, \"value\": 0.32450278076184347}, {\"source\": 302, \"target\": 1, \"value\": 0.9241495914801713}, {\"source\": 302, \"target\": 2, \"value\": 0.2246044456475873}, {\"source\": 302, \"target\": 3, \"value\": 0.9203965204490315}, {\"source\": 302, \"target\": 4, \"value\": 0.11164436121469723}, {\"source\": 302, \"target\": 5, \"value\": 0.615646451065804}, {\"source\": 302, \"target\": 6, \"value\": 0.8765675634612167}, {\"source\": 302, \"target\": 7, \"value\": 0.8048403909764992}, {\"source\": 302, \"target\": 8, \"value\": 0.9761498674772556}, {\"source\": 302, \"target\": 9, \"value\": 0.6224958330595045}, {\"source\": 303, \"target\": 0, \"value\": 0.17414928262803486}, {\"source\": 303, \"target\": 1, \"value\": 0.43815628468491785}, {\"source\": 303, \"target\": 2, \"value\": 0.486434298694998}, {\"source\": 303, \"target\": 3, \"value\": 0.3997858650112901}, {\"source\": 303, \"target\": 4, \"value\": 0.2401059378530931}, {\"source\": 303, \"target\": 5, \"value\": 0.8780536266168156}, {\"source\": 303, \"target\": 6, \"value\": 0.5339104785692542}, {\"source\": 303, \"target\": 7, \"value\": 0.9252716179094037}, {\"source\": 303, \"target\": 8, \"value\": 0.17621204791798795}, {\"source\": 303, \"target\": 9, \"value\": 0.7356485462322964}, {\"source\": 304, \"target\": 0, \"value\": 0.06415325580725639}, {\"source\": 304, \"target\": 1, \"value\": 0.9183174844620484}, {\"source\": 304, \"target\": 2, \"value\": 0.3077105804197051}, {\"source\": 304, \"target\": 3, \"value\": 0.33473838937973155}, {\"source\": 304, \"target\": 4, \"value\": 0.041554291643639885}, {\"source\": 304, \"target\": 5, \"value\": 0.19856137676438568}, {\"source\": 304, \"target\": 6, \"value\": 0.3388143646477867}, {\"source\": 304, \"target\": 7, \"value\": 0.8564141124947188}, {\"source\": 304, \"target\": 8, \"value\": 0.8782972255028699}, {\"source\": 304, \"target\": 9, \"value\": 0.9624990766394315}, {\"source\": 305, \"target\": 0, \"value\": 0.15389546252805775}, {\"source\": 305, \"target\": 1, \"value\": 0.39364193438965045}, {\"source\": 305, \"target\": 2, \"value\": 0.04837794550084007}, {\"source\": 305, \"target\": 3, \"value\": 0.9138631314159824}, {\"source\": 305, \"target\": 4, \"value\": 0.30801312114402435}, {\"source\": 305, \"target\": 5, \"value\": 0.748500015345463}, {\"source\": 305, \"target\": 6, \"value\": 0.6796024656956827}, {\"source\": 305, \"target\": 7, \"value\": 0.160135024616459}, {\"source\": 305, \"target\": 8, \"value\": 0.8430565234043921}, {\"source\": 305, \"target\": 9, \"value\": 0.646092628652368}, {\"source\": 306, \"target\": 0, \"value\": 0.5860712367026841}, {\"source\": 306, \"target\": 1, \"value\": 0.034345124080193745}, {\"source\": 306, \"target\": 2, \"value\": 0.23263307394723132}, {\"source\": 306, \"target\": 3, \"value\": 0.3104186249619345}, {\"source\": 306, \"target\": 4, \"value\": 0.7421455047014198}, {\"source\": 306, \"target\": 5, \"value\": 0.8638941485370315}, {\"source\": 306, \"target\": 6, \"value\": 0.6976712924539286}, {\"source\": 306, \"target\": 7, \"value\": 0.5071330708563492}, {\"source\": 306, \"target\": 8, \"value\": 0.9534827493796051}, {\"source\": 306, \"target\": 9, \"value\": 0.7441761636339125}, {\"source\": 307, \"target\": 0, \"value\": 0.380477900383843}, {\"source\": 307, \"target\": 1, \"value\": 0.9969244354630328}, {\"source\": 307, \"target\": 2, \"value\": 0.5814588443249542}, {\"source\": 307, \"target\": 3, \"value\": 0.5567696568909914}, {\"source\": 307, \"target\": 4, \"value\": 0.9758059019526365}, {\"source\": 307, \"target\": 5, \"value\": 0.8533640152650352}, {\"source\": 307, \"target\": 6, \"value\": 0.13448945523834133}, {\"source\": 307, \"target\": 7, \"value\": 0.3691849851868271}, {\"source\": 307, \"target\": 8, \"value\": 0.046852294604047606}, {\"source\": 307, \"target\": 9, \"value\": 0.4182914572913733}, {\"source\": 308, \"target\": 0, \"value\": 0.13388850061742563}, {\"source\": 308, \"target\": 1, \"value\": 0.1949195002285815}, {\"source\": 308, \"target\": 2, \"value\": 0.34841268798315306}, {\"source\": 308, \"target\": 3, \"value\": 0.18999613060306453}, {\"source\": 308, \"target\": 4, \"value\": 0.029022084212992016}, {\"source\": 308, \"target\": 5, \"value\": 0.5526127067337212}, {\"source\": 308, \"target\": 6, \"value\": 0.9344438663474166}, {\"source\": 308, \"target\": 7, \"value\": 0.9012947558883783}, {\"source\": 308, \"target\": 8, \"value\": 0.48880120872566546}, {\"source\": 308, \"target\": 9, \"value\": 0.4579148789559062}, {\"source\": 309, \"target\": 0, \"value\": 0.29342702928728936}, {\"source\": 309, \"target\": 1, \"value\": 0.7490340885628752}, {\"source\": 309, \"target\": 2, \"value\": 0.48401521474395426}, {\"source\": 309, \"target\": 3, \"value\": 0.9562245899605981}, {\"source\": 309, \"target\": 4, \"value\": 0.9060086047346549}, {\"source\": 309, \"target\": 5, \"value\": 0.09511854479213222}, {\"source\": 309, \"target\": 6, \"value\": 0.6689959837269737}, {\"source\": 309, \"target\": 7, \"value\": 0.8016771765321802}, {\"source\": 309, \"target\": 8, \"value\": 0.6339808706023717}, {\"source\": 309, \"target\": 9, \"value\": 0.8831262789358043}, {\"source\": 310, \"target\": 0, \"value\": 0.6155732653320052}, {\"source\": 310, \"target\": 1, \"value\": 0.04434361412756371}, {\"source\": 310, \"target\": 2, \"value\": 0.7458668945345438}, {\"source\": 310, \"target\": 3, \"value\": 0.8929188008093082}, {\"source\": 310, \"target\": 4, \"value\": 0.3252194086045678}, {\"source\": 310, \"target\": 5, \"value\": 0.6786840534650372}, {\"source\": 310, \"target\": 6, \"value\": 0.8858791259397133}, {\"source\": 310, \"target\": 7, \"value\": 0.8911833971092472}, {\"source\": 310, \"target\": 8, \"value\": 0.5532887378577952}, {\"source\": 310, \"target\": 9, \"value\": 0.3233608242054875}, {\"source\": 311, \"target\": 0, \"value\": 0.20180018508656106}, {\"source\": 311, \"target\": 1, \"value\": 0.5682935239105305}, {\"source\": 311, \"target\": 2, \"value\": 0.4513867472745412}, {\"source\": 311, \"target\": 3, \"value\": 0.015269221750754736}, {\"source\": 311, \"target\": 4, \"value\": 0.0180509994171838}, {\"source\": 311, \"target\": 5, \"value\": 0.9985962947638763}, {\"source\": 311, \"target\": 6, \"value\": 0.45441103468935073}, {\"source\": 311, \"target\": 7, \"value\": 0.9001440957937189}, {\"source\": 311, \"target\": 8, \"value\": 0.8148120801679335}, {\"source\": 311, \"target\": 9, \"value\": 0.10701853258602934}, {\"source\": 312, \"target\": 0, \"value\": 0.9220278614968505}, {\"source\": 312, \"target\": 1, \"value\": 0.418720197997032}, {\"source\": 312, \"target\": 2, \"value\": 0.5618896245090537}, {\"source\": 312, \"target\": 3, \"value\": 0.2980474261457875}, {\"source\": 312, \"target\": 4, \"value\": 0.10588135068542859}, {\"source\": 312, \"target\": 5, \"value\": 0.5720156880278601}, {\"source\": 312, \"target\": 6, \"value\": 0.8307559196296056}, {\"source\": 312, \"target\": 7, \"value\": 0.49385501053143344}, {\"source\": 312, \"target\": 8, \"value\": 0.6824721567944138}, {\"source\": 312, \"target\": 9, \"value\": 0.5340312992027583}, {\"source\": 313, \"target\": 0, \"value\": 0.41530805441531315}, {\"source\": 313, \"target\": 1, \"value\": 0.25293347957585}, {\"source\": 313, \"target\": 2, \"value\": 0.28482729273305796}, {\"source\": 313, \"target\": 3, \"value\": 0.16487699115257992}, {\"source\": 313, \"target\": 4, \"value\": 0.18607188549918807}, {\"source\": 313, \"target\": 5, \"value\": 0.22663422625891305}, {\"source\": 313, \"target\": 6, \"value\": 0.03515564079489497}, {\"source\": 313, \"target\": 7, \"value\": 0.26751197741204}, {\"source\": 313, \"target\": 8, \"value\": 0.20774769561612927}, {\"source\": 313, \"target\": 9, \"value\": 0.6512052898081938}, {\"source\": 314, \"target\": 0, \"value\": 0.09579402327107234}, {\"source\": 314, \"target\": 1, \"value\": 0.8409666219617217}, {\"source\": 314, \"target\": 2, \"value\": 0.5915942642561067}, {\"source\": 314, \"target\": 3, \"value\": 0.09089146277874915}, {\"source\": 314, \"target\": 4, \"value\": 0.5064321765382}, {\"source\": 314, \"target\": 5, \"value\": 0.6961342124445962}, {\"source\": 314, \"target\": 6, \"value\": 0.057036942097795085}, {\"source\": 314, \"target\": 7, \"value\": 0.404411334017154}, {\"source\": 314, \"target\": 8, \"value\": 0.04673240597027817}, {\"source\": 314, \"target\": 9, \"value\": 0.8639324771182381}, {\"source\": 315, \"target\": 0, \"value\": 0.38711037182472785}, {\"source\": 315, \"target\": 1, \"value\": 0.318239468277712}, {\"source\": 315, \"target\": 2, \"value\": 0.9282670966376587}, {\"source\": 315, \"target\": 3, \"value\": 0.2770785291136665}, {\"source\": 315, \"target\": 4, \"value\": 0.7804579341352116}, {\"source\": 315, \"target\": 5, \"value\": 0.7178666487758103}, {\"source\": 315, \"target\": 6, \"value\": 0.765699350896666}, {\"source\": 315, \"target\": 7, \"value\": 0.7976621911556362}, {\"source\": 315, \"target\": 8, \"value\": 0.504759140142618}, {\"source\": 315, \"target\": 9, \"value\": 0.24926797520915334}, {\"source\": 316, \"target\": 0, \"value\": 0.5696580167417423}, {\"source\": 316, \"target\": 1, \"value\": 0.7375741610201063}, {\"source\": 316, \"target\": 2, \"value\": 0.729082509136085}, {\"source\": 316, \"target\": 3, \"value\": 0.05552985723019688}, {\"source\": 316, \"target\": 4, \"value\": 0.561903511121254}, {\"source\": 316, \"target\": 5, \"value\": 0.603607642290988}, {\"source\": 316, \"target\": 6, \"value\": 0.2009040054362965}, {\"source\": 316, \"target\": 7, \"value\": 0.690098805406087}, {\"source\": 316, \"target\": 8, \"value\": 0.7566598495517464}, {\"source\": 316, \"target\": 9, \"value\": 0.7707102621236266}, {\"source\": 317, \"target\": 0, \"value\": 0.8072702241445144}, {\"source\": 317, \"target\": 1, \"value\": 0.696064830667161}, {\"source\": 317, \"target\": 2, \"value\": 0.011811387285786568}, {\"source\": 317, \"target\": 3, \"value\": 0.5929857428169605}, {\"source\": 317, \"target\": 4, \"value\": 0.747596322174867}, {\"source\": 317, \"target\": 5, \"value\": 0.22005076504806687}, {\"source\": 317, \"target\": 6, \"value\": 0.02092914510432109}, {\"source\": 317, \"target\": 7, \"value\": 0.11914691100898134}, {\"source\": 317, \"target\": 8, \"value\": 0.8714230425846465}, {\"source\": 317, \"target\": 9, \"value\": 0.5130912621916098}, {\"source\": 318, \"target\": 0, \"value\": 0.541239572222135}, {\"source\": 318, \"target\": 1, \"value\": 0.203809009835223}, {\"source\": 318, \"target\": 2, \"value\": 0.5821979570609466}, {\"source\": 318, \"target\": 3, \"value\": 0.00827288348524069}, {\"source\": 318, \"target\": 4, \"value\": 0.31871351607196774}, {\"source\": 318, \"target\": 5, \"value\": 0.9464337083821684}, {\"source\": 318, \"target\": 6, \"value\": 0.8604197132093869}, {\"source\": 318, \"target\": 7, \"value\": 0.14340153481832596}, {\"source\": 318, \"target\": 8, \"value\": 0.54535644744212}, {\"source\": 318, \"target\": 9, \"value\": 0.16775987525685998}, {\"source\": 319, \"target\": 0, \"value\": 0.47981450866614317}, {\"source\": 319, \"target\": 1, \"value\": 0.5459326996422507}, {\"source\": 319, \"target\": 2, \"value\": 0.8687499221384756}, {\"source\": 319, \"target\": 3, \"value\": 0.22306722250330424}, {\"source\": 319, \"target\": 4, \"value\": 0.28416304206865206}, {\"source\": 319, \"target\": 5, \"value\": 0.9413186603475371}, {\"source\": 319, \"target\": 6, \"value\": 0.3673957075906944}, {\"source\": 319, \"target\": 7, \"value\": 0.04951311600188657}, {\"source\": 319, \"target\": 8, \"value\": 0.37233576286363557}, {\"source\": 319, \"target\": 9, \"value\": 0.9097760663498503}, {\"source\": 320, \"target\": 0, \"value\": 0.46022169528832246}, {\"source\": 320, \"target\": 1, \"value\": 0.9138703015065245}, {\"source\": 320, \"target\": 2, \"value\": 0.0625402710083448}, {\"source\": 320, \"target\": 3, \"value\": 0.9973839720458062}, {\"source\": 320, \"target\": 4, \"value\": 0.33110129487168005}, {\"source\": 320, \"target\": 5, \"value\": 0.704346401476205}, {\"source\": 320, \"target\": 6, \"value\": 0.20560593086815737}, {\"source\": 320, \"target\": 7, \"value\": 0.805993477840309}, {\"source\": 320, \"target\": 8, \"value\": 0.19715940225245565}, {\"source\": 320, \"target\": 9, \"value\": 0.10027047211645412}, {\"source\": 321, \"target\": 0, \"value\": 0.5798614760950306}, {\"source\": 321, \"target\": 1, \"value\": 0.7528466540892133}, {\"source\": 321, \"target\": 2, \"value\": 0.149196445085102}, {\"source\": 321, \"target\": 3, \"value\": 0.9077982411104494}, {\"source\": 321, \"target\": 4, \"value\": 0.667036748686577}, {\"source\": 321, \"target\": 5, \"value\": 0.06344488187742447}, {\"source\": 321, \"target\": 6, \"value\": 0.6941002268893607}, {\"source\": 321, \"target\": 7, \"value\": 0.42875541727989197}, {\"source\": 321, \"target\": 8, \"value\": 0.5873863012968566}, {\"source\": 321, \"target\": 9, \"value\": 0.07929727487020388}, {\"source\": 322, \"target\": 0, \"value\": 0.7022365552103637}, {\"source\": 322, \"target\": 1, \"value\": 0.8018297825412914}, {\"source\": 322, \"target\": 2, \"value\": 0.016026208042624224}, {\"source\": 322, \"target\": 3, \"value\": 0.22823963747026854}, {\"source\": 322, \"target\": 4, \"value\": 0.8676663003459556}, {\"source\": 322, \"target\": 5, \"value\": 0.3748967621633994}, {\"source\": 322, \"target\": 6, \"value\": 0.15539556605375515}, {\"source\": 322, \"target\": 7, \"value\": 0.5589981339605954}, {\"source\": 322, \"target\": 8, \"value\": 0.9940483903600492}, {\"source\": 322, \"target\": 9, \"value\": 0.05155665652869024}, {\"source\": 323, \"target\": 0, \"value\": 0.6900300242064804}, {\"source\": 323, \"target\": 1, \"value\": 0.31580551863502626}, {\"source\": 323, \"target\": 2, \"value\": 0.39443910889959277}, {\"source\": 323, \"target\": 3, \"value\": 0.33099456471795374}, {\"source\": 323, \"target\": 4, \"value\": 0.6898059931012642}, {\"source\": 323, \"target\": 5, \"value\": 0.9945987371172688}, {\"source\": 323, \"target\": 6, \"value\": 0.5625892163969478}, {\"source\": 323, \"target\": 7, \"value\": 0.7313104683794479}, {\"source\": 323, \"target\": 8, \"value\": 0.29662144897789267}, {\"source\": 323, \"target\": 9, \"value\": 0.8905235590258739}, {\"source\": 324, \"target\": 0, \"value\": 0.0042580480050598}, {\"source\": 324, \"target\": 1, \"value\": 0.3104528271105296}, {\"source\": 324, \"target\": 2, \"value\": 0.46535740905190115}, {\"source\": 324, \"target\": 3, \"value\": 0.7233730443139263}, {\"source\": 324, \"target\": 4, \"value\": 0.27121216197458897}, {\"source\": 324, \"target\": 5, \"value\": 0.6964516699604011}, {\"source\": 324, \"target\": 6, \"value\": 0.43016169577285035}, {\"source\": 324, \"target\": 7, \"value\": 0.48513521625289757}, {\"source\": 324, \"target\": 8, \"value\": 0.35989925728200056}, {\"source\": 324, \"target\": 9, \"value\": 0.818587892391081}, {\"source\": 325, \"target\": 0, \"value\": 0.6528941377998366}, {\"source\": 325, \"target\": 1, \"value\": 0.7919175514677614}, {\"source\": 325, \"target\": 2, \"value\": 0.6553507724524359}, {\"source\": 325, \"target\": 3, \"value\": 0.6064524785047586}, {\"source\": 325, \"target\": 4, \"value\": 0.9255888178869496}, {\"source\": 325, \"target\": 5, \"value\": 0.7830029056093124}, {\"source\": 325, \"target\": 6, \"value\": 0.9146308929342767}, {\"source\": 325, \"target\": 7, \"value\": 0.8333468863964227}, {\"source\": 325, \"target\": 8, \"value\": 0.5248821573215225}, {\"source\": 325, \"target\": 9, \"value\": 0.7275480131279776}, {\"source\": 326, \"target\": 0, \"value\": 0.35281025875433014}, {\"source\": 326, \"target\": 1, \"value\": 0.5472911938328292}, {\"source\": 326, \"target\": 2, \"value\": 0.1574488353271627}, {\"source\": 326, \"target\": 3, \"value\": 0.6572494860849271}, {\"source\": 326, \"target\": 4, \"value\": 0.9346424799019621}, {\"source\": 326, \"target\": 5, \"value\": 0.6847295828997049}, {\"source\": 326, \"target\": 6, \"value\": 0.8209950654742223}, {\"source\": 326, \"target\": 7, \"value\": 0.454526807332543}, {\"source\": 326, \"target\": 8, \"value\": 0.70628793475419}, {\"source\": 326, \"target\": 9, \"value\": 0.6749352701430158}, {\"source\": 327, \"target\": 0, \"value\": 0.6983016626710172}, {\"source\": 327, \"target\": 1, \"value\": 0.8202197445584664}, {\"source\": 327, \"target\": 2, \"value\": 0.936581990019032}, {\"source\": 327, \"target\": 3, \"value\": 0.23941067543584038}, {\"source\": 327, \"target\": 4, \"value\": 0.6983326749685438}, {\"source\": 327, \"target\": 5, \"value\": 0.38693016822761717}, {\"source\": 327, \"target\": 6, \"value\": 0.13280676950581538}, {\"source\": 327, \"target\": 7, \"value\": 0.10932397276692629}, {\"source\": 327, \"target\": 8, \"value\": 0.5438478964625042}, {\"source\": 327, \"target\": 9, \"value\": 0.7250115269923619}, {\"source\": 328, \"target\": 0, \"value\": 0.19916002378787379}, {\"source\": 328, \"target\": 1, \"value\": 0.44764843720959335}, {\"source\": 328, \"target\": 2, \"value\": 0.7528370355104432}, {\"source\": 328, \"target\": 3, \"value\": 0.9163554485360832}, {\"source\": 328, \"target\": 4, \"value\": 0.7217539549673463}, {\"source\": 328, \"target\": 5, \"value\": 0.5690914697574876}, {\"source\": 328, \"target\": 6, \"value\": 0.14389899534804917}, {\"source\": 328, \"target\": 7, \"value\": 0.05543035987246836}, {\"source\": 328, \"target\": 8, \"value\": 0.3344664292680045}, {\"source\": 328, \"target\": 9, \"value\": 0.2231948231655111}, {\"source\": 329, \"target\": 0, \"value\": 0.7374574519332397}, {\"source\": 329, \"target\": 1, \"value\": 0.7267106239561595}, {\"source\": 329, \"target\": 2, \"value\": 0.4772098273987816}, {\"source\": 329, \"target\": 3, \"value\": 0.9264507177803328}, {\"source\": 329, \"target\": 4, \"value\": 0.7397240095952018}, {\"source\": 329, \"target\": 5, \"value\": 0.06181717173757861}, {\"source\": 329, \"target\": 6, \"value\": 0.44775328617806043}, {\"source\": 329, \"target\": 7, \"value\": 0.18489111592147356}, {\"source\": 329, \"target\": 8, \"value\": 0.7771848116260716}, {\"source\": 329, \"target\": 9, \"value\": 0.12411710694787759}, {\"source\": 330, \"target\": 0, \"value\": 0.5399756305486695}, {\"source\": 330, \"target\": 1, \"value\": 0.6301622694667762}, {\"source\": 330, \"target\": 2, \"value\": 0.6448170341548904}, {\"source\": 330, \"target\": 3, \"value\": 0.7418136271940827}, {\"source\": 330, \"target\": 4, \"value\": 0.040272171003550294}, {\"source\": 330, \"target\": 5, \"value\": 0.7189456981962595}, {\"source\": 330, \"target\": 6, \"value\": 0.3527157124310063}, {\"source\": 330, \"target\": 7, \"value\": 0.0627013313695226}, {\"source\": 330, \"target\": 8, \"value\": 0.2479647025113313}, {\"source\": 330, \"target\": 9, \"value\": 0.6117348680200969}, {\"source\": 331, \"target\": 0, \"value\": 0.47140898130392916}, {\"source\": 331, \"target\": 1, \"value\": 0.26436054518913654}, {\"source\": 331, \"target\": 2, \"value\": 0.7019243622426855}, {\"source\": 331, \"target\": 3, \"value\": 0.07470821583779053}, {\"source\": 331, \"target\": 4, \"value\": 0.21075689310852452}, {\"source\": 331, \"target\": 5, \"value\": 0.9085277986943485}, {\"source\": 331, \"target\": 6, \"value\": 0.6431951563596114}, {\"source\": 331, \"target\": 7, \"value\": 0.7252686579486645}, {\"source\": 331, \"target\": 8, \"value\": 0.7603836053581087}, {\"source\": 331, \"target\": 9, \"value\": 0.8294899053769389}, {\"source\": 332, \"target\": 0, \"value\": 0.076921349296449}, {\"source\": 332, \"target\": 1, \"value\": 0.6827876130927102}, {\"source\": 332, \"target\": 2, \"value\": 0.49065752418026753}, {\"source\": 332, \"target\": 3, \"value\": 0.574253196214858}, {\"source\": 332, \"target\": 4, \"value\": 0.6447932926177968}, {\"source\": 332, \"target\": 5, \"value\": 0.9327667576996066}, {\"source\": 332, \"target\": 6, \"value\": 0.0466802142646231}, {\"source\": 332, \"target\": 7, \"value\": 0.23679348666837008}, {\"source\": 332, \"target\": 8, \"value\": 0.6195434958548709}, {\"source\": 332, \"target\": 9, \"value\": 0.9475609136441051}, {\"source\": 333, \"target\": 0, \"value\": 0.6168272683071517}, {\"source\": 333, \"target\": 1, \"value\": 0.1020091773258307}, {\"source\": 333, \"target\": 2, \"value\": 0.9790547536271857}, {\"source\": 333, \"target\": 3, \"value\": 0.8710751017072622}, {\"source\": 333, \"target\": 4, \"value\": 0.5956677083923587}, {\"source\": 333, \"target\": 5, \"value\": 0.44573663800952446}, {\"source\": 333, \"target\": 6, \"value\": 0.6047497465962456}, {\"source\": 333, \"target\": 7, \"value\": 0.7761454296740579}, {\"source\": 333, \"target\": 8, \"value\": 0.009730371605181976}, {\"source\": 333, \"target\": 9, \"value\": 0.6433899584240115}, {\"source\": 334, \"target\": 0, \"value\": 0.8882534214130201}, {\"source\": 334, \"target\": 1, \"value\": 0.6682552345590833}, {\"source\": 334, \"target\": 2, \"value\": 0.1755202551160795}, {\"source\": 334, \"target\": 3, \"value\": 0.30604016145825186}, {\"source\": 334, \"target\": 4, \"value\": 0.4501618935382171}, {\"source\": 334, \"target\": 5, \"value\": 0.4582480311913656}, {\"source\": 334, \"target\": 6, \"value\": 0.6280530721719063}, {\"source\": 334, \"target\": 7, \"value\": 0.5502574109204256}, {\"source\": 334, \"target\": 8, \"value\": 0.6851778640898017}, {\"source\": 334, \"target\": 9, \"value\": 0.4648615164314638}, {\"source\": 335, \"target\": 0, \"value\": 0.1361323787029738}, {\"source\": 335, \"target\": 1, \"value\": 0.062078609212579905}, {\"source\": 335, \"target\": 2, \"value\": 0.6836566678262886}, {\"source\": 335, \"target\": 3, \"value\": 0.4084693743563709}, {\"source\": 335, \"target\": 4, \"value\": 0.8620890836583517}, {\"source\": 335, \"target\": 5, \"value\": 0.010805643231453055}, {\"source\": 335, \"target\": 6, \"value\": 0.34237429978407696}, {\"source\": 335, \"target\": 7, \"value\": 0.04352566324125806}, {\"source\": 335, \"target\": 8, \"value\": 0.903329720747623}, {\"source\": 335, \"target\": 9, \"value\": 0.8735982922293931}, {\"source\": 336, \"target\": 0, \"value\": 0.6075895270507318}, {\"source\": 336, \"target\": 1, \"value\": 0.4932606888856209}, {\"source\": 336, \"target\": 2, \"value\": 0.9509045975772971}, {\"source\": 336, \"target\": 3, \"value\": 0.04984474982586551}, {\"source\": 336, \"target\": 4, \"value\": 0.9262762026453243}, {\"source\": 336, \"target\": 5, \"value\": 0.9852741384255843}, {\"source\": 336, \"target\": 6, \"value\": 0.3951187733931676}, {\"source\": 336, \"target\": 7, \"value\": 0.9958134779081461}, {\"source\": 336, \"target\": 8, \"value\": 0.15774315373900694}, {\"source\": 336, \"target\": 9, \"value\": 0.8137128785690586}, {\"source\": 337, \"target\": 0, \"value\": 0.6341110418178695}, {\"source\": 337, \"target\": 1, \"value\": 0.3938873423009035}, {\"source\": 337, \"target\": 2, \"value\": 0.9764073996599943}, {\"source\": 337, \"target\": 3, \"value\": 0.40336303125781126}, {\"source\": 337, \"target\": 4, \"value\": 0.8645604013043835}, {\"source\": 337, \"target\": 5, \"value\": 0.3975709871574373}, {\"source\": 337, \"target\": 6, \"value\": 0.3418058436048982}, {\"source\": 337, \"target\": 7, \"value\": 0.07745808294446166}, {\"source\": 337, \"target\": 8, \"value\": 0.3153480587928216}, {\"source\": 337, \"target\": 9, \"value\": 0.027795818762520796}, {\"source\": 338, \"target\": 0, \"value\": 0.5800226927295421}, {\"source\": 338, \"target\": 1, \"value\": 0.25888897314038584}, {\"source\": 338, \"target\": 2, \"value\": 0.8772588572420371}, {\"source\": 338, \"target\": 3, \"value\": 0.13874805745907137}, {\"source\": 338, \"target\": 4, \"value\": 0.001170178319344961}, {\"source\": 338, \"target\": 5, \"value\": 0.8145215970120142}, {\"source\": 338, \"target\": 6, \"value\": 0.9757472681020326}, {\"source\": 338, \"target\": 7, \"value\": 0.7405121003254266}, {\"source\": 338, \"target\": 8, \"value\": 0.9853854321344099}, {\"source\": 338, \"target\": 9, \"value\": 0.24787740440895745}, {\"source\": 339, \"target\": 0, \"value\": 0.06163824736129586}, {\"source\": 339, \"target\": 1, \"value\": 0.672157137984315}, {\"source\": 339, \"target\": 2, \"value\": 0.8992310788402962}, {\"source\": 339, \"target\": 3, \"value\": 0.7168935961651909}, {\"source\": 339, \"target\": 4, \"value\": 0.21089504352678745}, {\"source\": 339, \"target\": 5, \"value\": 0.5483496856104392}, {\"source\": 339, \"target\": 6, \"value\": 0.9146560341208844}, {\"source\": 339, \"target\": 7, \"value\": 0.6986505717119796}, {\"source\": 339, \"target\": 8, \"value\": 0.2732327120088671}, {\"source\": 339, \"target\": 9, \"value\": 0.4139552165100233}, {\"source\": 340, \"target\": 0, \"value\": 0.3335446912745732}, {\"source\": 340, \"target\": 1, \"value\": 0.045043915604796925}, {\"source\": 340, \"target\": 2, \"value\": 0.6376657530977887}, {\"source\": 340, \"target\": 3, \"value\": 0.2033652992540046}, {\"source\": 340, \"target\": 4, \"value\": 0.07699913366110478}, {\"source\": 340, \"target\": 5, \"value\": 0.7149695799864549}, {\"source\": 340, \"target\": 6, \"value\": 0.10727880683977609}, {\"source\": 340, \"target\": 7, \"value\": 0.16102716707426556}, {\"source\": 340, \"target\": 8, \"value\": 0.12065290177735977}, {\"source\": 340, \"target\": 9, \"value\": 0.1106750598760603}, {\"source\": 341, \"target\": 0, \"value\": 0.01294702071887599}, {\"source\": 341, \"target\": 1, \"value\": 0.13511675712837412}, {\"source\": 341, \"target\": 2, \"value\": 0.478826512728457}, {\"source\": 341, \"target\": 3, \"value\": 0.10848421194606805}, {\"source\": 341, \"target\": 4, \"value\": 0.5799231838092979}, {\"source\": 341, \"target\": 5, \"value\": 0.043464291437499636}, {\"source\": 341, \"target\": 6, \"value\": 0.5332297858432239}, {\"source\": 341, \"target\": 7, \"value\": 0.70721853707581}, {\"source\": 341, \"target\": 8, \"value\": 0.5151563914691777}, {\"source\": 341, \"target\": 9, \"value\": 0.32583801261736844}, {\"source\": 342, \"target\": 0, \"value\": 0.01340670587219761}, {\"source\": 342, \"target\": 1, \"value\": 0.8274969745696679}, {\"source\": 342, \"target\": 2, \"value\": 0.6837768771947794}, {\"source\": 342, \"target\": 3, \"value\": 0.1888072695138192}, {\"source\": 342, \"target\": 4, \"value\": 0.9832119971132599}, {\"source\": 342, \"target\": 5, \"value\": 0.926462171372805}, {\"source\": 342, \"target\": 6, \"value\": 0.6178640829362115}, {\"source\": 342, \"target\": 7, \"value\": 0.848950653623243}, {\"source\": 342, \"target\": 8, \"value\": 0.12823143308397766}, {\"source\": 342, \"target\": 9, \"value\": 0.9401086415310071}, {\"source\": 343, \"target\": 0, \"value\": 0.5895796705228339}, {\"source\": 343, \"target\": 1, \"value\": 0.6189737074184799}, {\"source\": 343, \"target\": 2, \"value\": 0.4149882285385572}, {\"source\": 343, \"target\": 3, \"value\": 0.5908659480530694}, {\"source\": 343, \"target\": 4, \"value\": 0.3450966677269387}, {\"source\": 343, \"target\": 5, \"value\": 0.5622610143296046}, {\"source\": 343, \"target\": 6, \"value\": 0.018770696343873294}, {\"source\": 343, \"target\": 7, \"value\": 0.8291811884523649}, {\"source\": 343, \"target\": 8, \"value\": 0.4655213084584856}, {\"source\": 343, \"target\": 9, \"value\": 0.7156185907583295}, {\"source\": 344, \"target\": 0, \"value\": 0.23902790182505784}, {\"source\": 344, \"target\": 1, \"value\": 0.4973007924737206}, {\"source\": 344, \"target\": 2, \"value\": 0.833866605712485}, {\"source\": 344, \"target\": 3, \"value\": 0.7086837602132495}, {\"source\": 344, \"target\": 4, \"value\": 0.2826587789250887}, {\"source\": 344, \"target\": 5, \"value\": 0.604767853846978}, {\"source\": 344, \"target\": 6, \"value\": 0.16085585058728102}, {\"source\": 344, \"target\": 7, \"value\": 0.38871811764111597}, {\"source\": 344, \"target\": 8, \"value\": 0.16781737519460282}, {\"source\": 344, \"target\": 9, \"value\": 0.3649358436975535}, {\"source\": 345, \"target\": 0, \"value\": 0.4692793548930365}, {\"source\": 345, \"target\": 1, \"value\": 0.29237888420184877}, {\"source\": 345, \"target\": 2, \"value\": 0.12642445019965654}, {\"source\": 345, \"target\": 3, \"value\": 0.6515009953788311}, {\"source\": 345, \"target\": 4, \"value\": 0.35743394904653314}, {\"source\": 345, \"target\": 5, \"value\": 0.0010182415290899138}, {\"source\": 345, \"target\": 6, \"value\": 0.6832249061953275}, {\"source\": 345, \"target\": 7, \"value\": 0.053303480095931444}, {\"source\": 345, \"target\": 8, \"value\": 0.869686102068406}, {\"source\": 345, \"target\": 9, \"value\": 0.9278785982390937}, {\"source\": 346, \"target\": 0, \"value\": 0.9410990089269421}, {\"source\": 346, \"target\": 1, \"value\": 0.8234655596586465}, {\"source\": 346, \"target\": 2, \"value\": 0.9018137382191799}, {\"source\": 346, \"target\": 3, \"value\": 0.7916713926859088}, {\"source\": 346, \"target\": 4, \"value\": 0.9134041684044999}, {\"source\": 346, \"target\": 5, \"value\": 0.26305072760022263}, {\"source\": 346, \"target\": 6, \"value\": 0.7409314258662268}, {\"source\": 346, \"target\": 7, \"value\": 0.9274803636892189}, {\"source\": 346, \"target\": 8, \"value\": 0.4184798388622938}, {\"source\": 346, \"target\": 9, \"value\": 0.7175308460954616}, {\"source\": 347, \"target\": 0, \"value\": 0.38533536034139904}, {\"source\": 347, \"target\": 1, \"value\": 0.2346527311036135}, {\"source\": 347, \"target\": 2, \"value\": 0.4785905282402515}, {\"source\": 347, \"target\": 3, \"value\": 0.3090249544341571}, {\"source\": 347, \"target\": 4, \"value\": 0.5726056531118191}, {\"source\": 347, \"target\": 5, \"value\": 0.1159516282187365}, {\"source\": 347, \"target\": 6, \"value\": 0.9132457587636686}, {\"source\": 347, \"target\": 7, \"value\": 0.5559173475859541}, {\"source\": 347, \"target\": 8, \"value\": 0.07571900889276684}, {\"source\": 347, \"target\": 9, \"value\": 0.26581254163533474}, {\"source\": 348, \"target\": 0, \"value\": 0.759191767077669}, {\"source\": 348, \"target\": 1, \"value\": 0.8846958708872955}, {\"source\": 348, \"target\": 2, \"value\": 0.791405830574018}, {\"source\": 348, \"target\": 3, \"value\": 0.7300522962460669}, {\"source\": 348, \"target\": 4, \"value\": 0.06846163922456228}, {\"source\": 348, \"target\": 5, \"value\": 0.8998973052666157}, {\"source\": 348, \"target\": 6, \"value\": 0.9223473388332029}, {\"source\": 348, \"target\": 7, \"value\": 0.3673594182825406}, {\"source\": 348, \"target\": 8, \"value\": 0.9807234940209526}, {\"source\": 348, \"target\": 9, \"value\": 0.3272513161552978}, {\"source\": 349, \"target\": 0, \"value\": 0.884173900569017}, {\"source\": 349, \"target\": 1, \"value\": 0.749988797242001}, {\"source\": 349, \"target\": 2, \"value\": 0.20446254631702687}, {\"source\": 349, \"target\": 3, \"value\": 0.34287428503656125}, {\"source\": 349, \"target\": 4, \"value\": 0.7155183825692403}, {\"source\": 349, \"target\": 5, \"value\": 0.9972294215828127}, {\"source\": 349, \"target\": 6, \"value\": 0.41193082796659475}, {\"source\": 349, \"target\": 7, \"value\": 0.14777530057158028}, {\"source\": 349, \"target\": 8, \"value\": 0.9821487397885854}, {\"source\": 349, \"target\": 9, \"value\": 0.6563132883755693}, {\"source\": 350, \"target\": 0, \"value\": 0.037460517375903835}, {\"source\": 350, \"target\": 1, \"value\": 0.7389582635138288}, {\"source\": 350, \"target\": 2, \"value\": 0.48462580447391534}, {\"source\": 350, \"target\": 3, \"value\": 0.20737847713763558}, {\"source\": 350, \"target\": 4, \"value\": 0.7624522934066793}, {\"source\": 350, \"target\": 5, \"value\": 0.8624025811124506}, {\"source\": 350, \"target\": 6, \"value\": 0.30595201848034204}, {\"source\": 350, \"target\": 7, \"value\": 0.1668058372297334}, {\"source\": 350, \"target\": 8, \"value\": 0.3443598574976472}, {\"source\": 350, \"target\": 9, \"value\": 0.3610468041382988}, {\"source\": 351, \"target\": 0, \"value\": 0.9446924713563756}, {\"source\": 351, \"target\": 1, \"value\": 0.24377511705055832}, {\"source\": 351, \"target\": 2, \"value\": 0.4998861718507911}, {\"source\": 351, \"target\": 3, \"value\": 0.7677299462776365}, {\"source\": 351, \"target\": 4, \"value\": 0.812142937640493}, {\"source\": 351, \"target\": 5, \"value\": 0.48089638179778416}, {\"source\": 351, \"target\": 6, \"value\": 0.46956515587503633}, {\"source\": 351, \"target\": 7, \"value\": 0.236538867978053}, {\"source\": 351, \"target\": 8, \"value\": 0.5139951868727205}, {\"source\": 351, \"target\": 9, \"value\": 0.5428191085910015}, {\"source\": 352, \"target\": 0, \"value\": 0.0801015053940527}, {\"source\": 352, \"target\": 1, \"value\": 0.5859549243216655}, {\"source\": 352, \"target\": 2, \"value\": 0.5980419194333357}, {\"source\": 352, \"target\": 3, \"value\": 0.17245554402076335}, {\"source\": 352, \"target\": 4, \"value\": 0.31030570680603253}, {\"source\": 352, \"target\": 5, \"value\": 0.61987771499303}, {\"source\": 352, \"target\": 6, \"value\": 0.7599611225145587}, {\"source\": 352, \"target\": 7, \"value\": 0.6954668879701837}, {\"source\": 352, \"target\": 8, \"value\": 0.9611030582565571}, {\"source\": 352, \"target\": 9, \"value\": 0.25836068646599275}, {\"source\": 353, \"target\": 0, \"value\": 0.23563831182785766}, {\"source\": 353, \"target\": 1, \"value\": 0.06343141944143904}, {\"source\": 353, \"target\": 2, \"value\": 0.6126921391619774}, {\"source\": 353, \"target\": 3, \"value\": 0.6744806810717933}, {\"source\": 353, \"target\": 4, \"value\": 0.5348514776202881}, {\"source\": 353, \"target\": 5, \"value\": 0.6835223753029407}, {\"source\": 353, \"target\": 6, \"value\": 0.445233024545015}, {\"source\": 353, \"target\": 7, \"value\": 0.8833222939755787}, {\"source\": 353, \"target\": 8, \"value\": 0.8735981112881064}, {\"source\": 353, \"target\": 9, \"value\": 0.4844398795945749}, {\"source\": 354, \"target\": 0, \"value\": 0.5005662757243282}, {\"source\": 354, \"target\": 1, \"value\": 0.19011828510199114}, {\"source\": 354, \"target\": 2, \"value\": 0.7553775658593394}, {\"source\": 354, \"target\": 3, \"value\": 0.6026483790231929}, {\"source\": 354, \"target\": 4, \"value\": 0.4439394046770513}, {\"source\": 354, \"target\": 5, \"value\": 0.9206196781418334}, {\"source\": 354, \"target\": 6, \"value\": 0.09392705314892746}, {\"source\": 354, \"target\": 7, \"value\": 0.6366954916472348}, {\"source\": 354, \"target\": 8, \"value\": 0.4102647527959765}, {\"source\": 354, \"target\": 9, \"value\": 0.7548119963268666}, {\"source\": 355, \"target\": 0, \"value\": 0.5124304234506701}, {\"source\": 355, \"target\": 1, \"value\": 0.6948321761364246}, {\"source\": 355, \"target\": 2, \"value\": 0.07430611801118658}, {\"source\": 355, \"target\": 3, \"value\": 0.3725731369345303}, {\"source\": 355, \"target\": 4, \"value\": 0.35742236115177395}, {\"source\": 355, \"target\": 5, \"value\": 0.7446005352989584}, {\"source\": 355, \"target\": 6, \"value\": 0.269318656460774}, {\"source\": 355, \"target\": 7, \"value\": 0.7158638907572866}, {\"source\": 355, \"target\": 8, \"value\": 0.10831431600380503}, {\"source\": 355, \"target\": 9, \"value\": 0.22347588839543497}, {\"source\": 356, \"target\": 0, \"value\": 0.7972951581704367}, {\"source\": 356, \"target\": 1, \"value\": 0.07211168715558947}, {\"source\": 356, \"target\": 2, \"value\": 0.35333411109362456}, {\"source\": 356, \"target\": 3, \"value\": 0.6145697542940247}, {\"source\": 356, \"target\": 4, \"value\": 0.6661781005113243}, {\"source\": 356, \"target\": 5, \"value\": 0.2772158982588693}, {\"source\": 356, \"target\": 6, \"value\": 0.6611184655834369}, {\"source\": 356, \"target\": 7, \"value\": 0.6984820784771925}, {\"source\": 356, \"target\": 8, \"value\": 0.4562987556582744}, {\"source\": 356, \"target\": 9, \"value\": 0.6477968496551854}, {\"source\": 357, \"target\": 0, \"value\": 0.47283941771480165}, {\"source\": 357, \"target\": 1, \"value\": 0.4059194913184946}, {\"source\": 357, \"target\": 2, \"value\": 0.5128950980570783}, {\"source\": 357, \"target\": 3, \"value\": 0.023932237794699773}, {\"source\": 357, \"target\": 4, \"value\": 0.09096309324861618}, {\"source\": 357, \"target\": 5, \"value\": 0.1412227142651109}, {\"source\": 357, \"target\": 6, \"value\": 0.2193004123544432}, {\"source\": 357, \"target\": 7, \"value\": 0.48142742809410266}, {\"source\": 357, \"target\": 8, \"value\": 0.6730694851976026}, {\"source\": 357, \"target\": 9, \"value\": 0.31951851159899824}, {\"source\": 358, \"target\": 0, \"value\": 0.524023109190432}, {\"source\": 358, \"target\": 1, \"value\": 0.6875265382256065}, {\"source\": 358, \"target\": 2, \"value\": 0.619411574133505}, {\"source\": 358, \"target\": 3, \"value\": 0.21740302129457278}, {\"source\": 358, \"target\": 4, \"value\": 0.18091393776190978}, {\"source\": 358, \"target\": 5, \"value\": 0.9812294284757717}, {\"source\": 358, \"target\": 6, \"value\": 0.7163153166047714}, {\"source\": 358, \"target\": 7, \"value\": 0.25361817407227083}, {\"source\": 358, \"target\": 8, \"value\": 0.6437842878258576}, {\"source\": 358, \"target\": 9, \"value\": 0.6260239411242177}, {\"source\": 359, \"target\": 0, \"value\": 0.16649429964100526}, {\"source\": 359, \"target\": 1, \"value\": 0.4203787774783516}, {\"source\": 359, \"target\": 2, \"value\": 0.9523411467197096}, {\"source\": 359, \"target\": 3, \"value\": 0.9593585653787046}, {\"source\": 359, \"target\": 4, \"value\": 0.217509718200529}, {\"source\": 359, \"target\": 5, \"value\": 0.007201957329799447}, {\"source\": 359, \"target\": 6, \"value\": 0.5666648818511774}, {\"source\": 359, \"target\": 7, \"value\": 0.4239776088255305}, {\"source\": 359, \"target\": 8, \"value\": 0.062258042558605564}, {\"source\": 359, \"target\": 9, \"value\": 0.803796353694566}, {\"source\": 360, \"target\": 0, \"value\": 0.4120077686802246}, {\"source\": 360, \"target\": 1, \"value\": 0.9865000324387878}, {\"source\": 360, \"target\": 2, \"value\": 0.57034158498893}, {\"source\": 360, \"target\": 3, \"value\": 0.20916806072487992}, {\"source\": 360, \"target\": 4, \"value\": 0.057892043346637334}, {\"source\": 360, \"target\": 5, \"value\": 0.6961863522303418}, {\"source\": 360, \"target\": 6, \"value\": 0.519120226898313}, {\"source\": 360, \"target\": 7, \"value\": 0.7258285169519475}, {\"source\": 360, \"target\": 8, \"value\": 0.6833390855689072}, {\"source\": 360, \"target\": 9, \"value\": 0.7446261461622693}, {\"source\": 361, \"target\": 0, \"value\": 0.8260927219358049}, {\"source\": 361, \"target\": 1, \"value\": 0.9373451523506802}, {\"source\": 361, \"target\": 2, \"value\": 0.44254072144748957}, {\"source\": 361, \"target\": 3, \"value\": 0.4472990249656551}, {\"source\": 361, \"target\": 4, \"value\": 0.7610830750222651}, {\"source\": 361, \"target\": 5, \"value\": 0.19304848613625036}, {\"source\": 361, \"target\": 6, \"value\": 0.4175444103452459}, {\"source\": 361, \"target\": 7, \"value\": 0.6496627433934211}, {\"source\": 361, \"target\": 8, \"value\": 0.10660404630171616}, {\"source\": 361, \"target\": 9, \"value\": 0.7699698596253883}, {\"source\": 362, \"target\": 0, \"value\": 0.7165027446114908}, {\"source\": 362, \"target\": 1, \"value\": 0.24628917301594977}, {\"source\": 362, \"target\": 2, \"value\": 0.7540098751690375}, {\"source\": 362, \"target\": 3, \"value\": 0.554387124088507}, {\"source\": 362, \"target\": 4, \"value\": 0.898328733272755}, {\"source\": 362, \"target\": 5, \"value\": 0.5041222733111309}, {\"source\": 362, \"target\": 6, \"value\": 0.796365821988846}, {\"source\": 362, \"target\": 7, \"value\": 0.18522273882125262}, {\"source\": 362, \"target\": 8, \"value\": 0.500177005682909}, {\"source\": 362, \"target\": 9, \"value\": 0.11860324556382396}, {\"source\": 363, \"target\": 0, \"value\": 0.2948216505147149}, {\"source\": 363, \"target\": 1, \"value\": 0.6648756438357519}, {\"source\": 363, \"target\": 2, \"value\": 0.1889977133802695}, {\"source\": 363, \"target\": 3, \"value\": 0.5165858167435424}, {\"source\": 363, \"target\": 4, \"value\": 0.8048425586922942}, {\"source\": 363, \"target\": 5, \"value\": 0.22853714854345542}, {\"source\": 363, \"target\": 6, \"value\": 0.5039296705945367}, {\"source\": 363, \"target\": 7, \"value\": 0.9622356932713397}, {\"source\": 363, \"target\": 8, \"value\": 0.7969038145572159}, {\"source\": 363, \"target\": 9, \"value\": 0.5379551335706627}, {\"source\": 364, \"target\": 0, \"value\": 0.07641012040980077}, {\"source\": 364, \"target\": 1, \"value\": 0.10222708539246617}, {\"source\": 364, \"target\": 2, \"value\": 0.7622372603896458}, {\"source\": 364, \"target\": 3, \"value\": 0.7846846872598848}, {\"source\": 364, \"target\": 4, \"value\": 0.26346198353139505}, {\"source\": 364, \"target\": 5, \"value\": 0.154171634316843}, {\"source\": 364, \"target\": 6, \"value\": 0.5983682261667791}, {\"source\": 364, \"target\": 7, \"value\": 0.8079187222547036}, {\"source\": 364, \"target\": 8, \"value\": 0.611363974252976}, {\"source\": 364, \"target\": 9, \"value\": 0.999338882552342}, {\"source\": 365, \"target\": 0, \"value\": 0.8162397434403579}, {\"source\": 365, \"target\": 1, \"value\": 0.9859728952134363}, {\"source\": 365, \"target\": 2, \"value\": 0.7247997512397161}, {\"source\": 365, \"target\": 3, \"value\": 0.5471422774696008}, {\"source\": 365, \"target\": 4, \"value\": 0.337268805029015}, {\"source\": 365, \"target\": 5, \"value\": 0.14463336662899617}, {\"source\": 365, \"target\": 6, \"value\": 0.4055992091922126}, {\"source\": 365, \"target\": 7, \"value\": 0.23977193630012728}, {\"source\": 365, \"target\": 8, \"value\": 0.43991382630050524}, {\"source\": 365, \"target\": 9, \"value\": 0.46742471970057253}, {\"source\": 366, \"target\": 0, \"value\": 0.056860663574915815}, {\"source\": 366, \"target\": 1, \"value\": 0.3596085529536521}, {\"source\": 366, \"target\": 2, \"value\": 0.1970585736025744}, {\"source\": 366, \"target\": 3, \"value\": 0.36131527529933194}, {\"source\": 366, \"target\": 4, \"value\": 0.4919280002002362}, {\"source\": 366, \"target\": 5, \"value\": 0.5763331923463884}, {\"source\": 366, \"target\": 6, \"value\": 0.5027817154556106}, {\"source\": 366, \"target\": 7, \"value\": 0.5738075643212366}, {\"source\": 366, \"target\": 8, \"value\": 0.7284219848850636}, {\"source\": 366, \"target\": 9, \"value\": 0.773859671044387}, {\"source\": 367, \"target\": 0, \"value\": 0.8194525914652697}, {\"source\": 367, \"target\": 1, \"value\": 0.9327455495685842}, {\"source\": 367, \"target\": 2, \"value\": 0.6090247290097126}, {\"source\": 367, \"target\": 3, \"value\": 0.9430367662469061}, {\"source\": 367, \"target\": 4, \"value\": 0.3762546726628926}, {\"source\": 367, \"target\": 5, \"value\": 0.4779483048217791}, {\"source\": 367, \"target\": 6, \"value\": 0.7191233935941231}, {\"source\": 367, \"target\": 7, \"value\": 0.930318977083641}, {\"source\": 367, \"target\": 8, \"value\": 0.7452787805416894}, {\"source\": 367, \"target\": 9, \"value\": 0.20621991266022976}, {\"source\": 368, \"target\": 0, \"value\": 0.24907712851088293}, {\"source\": 368, \"target\": 1, \"value\": 0.0318517915129648}, {\"source\": 368, \"target\": 2, \"value\": 0.9269465549607258}, {\"source\": 368, \"target\": 3, \"value\": 0.9941428024433522}, {\"source\": 368, \"target\": 4, \"value\": 0.005678709695250195}, {\"source\": 368, \"target\": 5, \"value\": 0.1757305666294965}, {\"source\": 368, \"target\": 6, \"value\": 0.5277269814850294}, {\"source\": 368, \"target\": 7, \"value\": 0.01686468751044523}, {\"source\": 368, \"target\": 8, \"value\": 0.7612566177802116}, {\"source\": 368, \"target\": 9, \"value\": 0.26430191216362375}, {\"source\": 369, \"target\": 0, \"value\": 0.25193153530531787}, {\"source\": 369, \"target\": 1, \"value\": 0.6120429184999058}, {\"source\": 369, \"target\": 2, \"value\": 0.22897900598429688}, {\"source\": 369, \"target\": 3, \"value\": 0.6237918367374978}, {\"source\": 369, \"target\": 4, \"value\": 0.1174411821079755}, {\"source\": 369, \"target\": 5, \"value\": 0.6734138221368593}, {\"source\": 369, \"target\": 6, \"value\": 0.05733819241963889}, {\"source\": 369, \"target\": 7, \"value\": 0.3962912900381125}, {\"source\": 369, \"target\": 8, \"value\": 0.7859247747454564}, {\"source\": 369, \"target\": 9, \"value\": 0.8094938006929581}, {\"source\": 370, \"target\": 0, \"value\": 0.6184747558918282}, {\"source\": 370, \"target\": 1, \"value\": 0.5296162687209861}, {\"source\": 370, \"target\": 2, \"value\": 0.5866568007798189}, {\"source\": 370, \"target\": 3, \"value\": 0.20859460258305063}, {\"source\": 370, \"target\": 4, \"value\": 0.3372989910165355}, {\"source\": 370, \"target\": 5, \"value\": 0.8562675106767095}, {\"source\": 370, \"target\": 6, \"value\": 0.6991327989479822}, {\"source\": 370, \"target\": 7, \"value\": 0.371145531698441}, {\"source\": 370, \"target\": 8, \"value\": 0.5930591005534557}, {\"source\": 370, \"target\": 9, \"value\": 0.4672298242760503}, {\"source\": 371, \"target\": 0, \"value\": 0.726985757183767}, {\"source\": 371, \"target\": 1, \"value\": 0.6852802020522948}, {\"source\": 371, \"target\": 2, \"value\": 0.30565569567657436}, {\"source\": 371, \"target\": 3, \"value\": 0.9715031894410965}, {\"source\": 371, \"target\": 4, \"value\": 0.9222343324162675}, {\"source\": 371, \"target\": 5, \"value\": 0.8402358809892946}, {\"source\": 371, \"target\": 6, \"value\": 0.7404106729054525}, {\"source\": 371, \"target\": 7, \"value\": 0.4058085402145868}, {\"source\": 371, \"target\": 8, \"value\": 0.7755387995086137}, {\"source\": 371, \"target\": 9, \"value\": 0.9797990410257125}, {\"source\": 372, \"target\": 0, \"value\": 0.7184501429799963}, {\"source\": 372, \"target\": 1, \"value\": 0.5557220216819992}, {\"source\": 372, \"target\": 2, \"value\": 0.7361610710474886}, {\"source\": 372, \"target\": 3, \"value\": 0.06241034208148144}, {\"source\": 372, \"target\": 4, \"value\": 0.0222557172328679}, {\"source\": 372, \"target\": 5, \"value\": 0.9415029359770652}, {\"source\": 372, \"target\": 6, \"value\": 0.4581340349711128}, {\"source\": 372, \"target\": 7, \"value\": 0.08709593980539376}, {\"source\": 372, \"target\": 8, \"value\": 0.6501394016778537}, {\"source\": 372, \"target\": 9, \"value\": 0.5857085008371313}, {\"source\": 373, \"target\": 0, \"value\": 0.4120672239563815}, {\"source\": 373, \"target\": 1, \"value\": 0.03282915081905691}, {\"source\": 373, \"target\": 2, \"value\": 0.28467387644847286}, {\"source\": 373, \"target\": 3, \"value\": 0.8289397127040454}, {\"source\": 373, \"target\": 4, \"value\": 0.7553950923862458}, {\"source\": 373, \"target\": 5, \"value\": 0.06613149672365215}, {\"source\": 373, \"target\": 6, \"value\": 0.4127037830968304}, {\"source\": 373, \"target\": 7, \"value\": 0.9811841927967342}, {\"source\": 373, \"target\": 8, \"value\": 0.289360894895755}, {\"source\": 373, \"target\": 9, \"value\": 0.34488819843801877}, {\"source\": 374, \"target\": 0, \"value\": 0.8797227016832677}, {\"source\": 374, \"target\": 1, \"value\": 0.7786633577754813}, {\"source\": 374, \"target\": 2, \"value\": 0.2804866361959011}, {\"source\": 374, \"target\": 3, \"value\": 0.7517701646034439}, {\"source\": 374, \"target\": 4, \"value\": 0.2603887289197666}, {\"source\": 374, \"target\": 5, \"value\": 0.16705585242860765}, {\"source\": 374, \"target\": 6, \"value\": 0.2953970452701249}, {\"source\": 374, \"target\": 7, \"value\": 0.8834325413095694}, {\"source\": 374, \"target\": 8, \"value\": 0.7031678453380407}, {\"source\": 374, \"target\": 9, \"value\": 0.4416112950589831}, {\"source\": 375, \"target\": 0, \"value\": 0.8897965086399187}, {\"source\": 375, \"target\": 1, \"value\": 0.4874252028028109}, {\"source\": 375, \"target\": 2, \"value\": 0.6876035760300794}, {\"source\": 375, \"target\": 3, \"value\": 0.01051046773193165}, {\"source\": 375, \"target\": 4, \"value\": 0.740979707282126}, {\"source\": 375, \"target\": 5, \"value\": 0.5368693752765974}, {\"source\": 375, \"target\": 6, \"value\": 0.2960085782416638}, {\"source\": 375, \"target\": 7, \"value\": 0.2660386181557606}, {\"source\": 375, \"target\": 8, \"value\": 0.5709589435829431}, {\"source\": 375, \"target\": 9, \"value\": 0.8263286295538593}, {\"source\": 376, \"target\": 0, \"value\": 0.6748336175069196}, {\"source\": 376, \"target\": 1, \"value\": 0.8883241902637379}, {\"source\": 376, \"target\": 2, \"value\": 0.8111923484753356}, {\"source\": 376, \"target\": 3, \"value\": 0.596306056208816}, {\"source\": 376, \"target\": 4, \"value\": 0.9783061217963704}, {\"source\": 376, \"target\": 5, \"value\": 0.06541326482490595}, {\"source\": 376, \"target\": 6, \"value\": 0.894288454046853}, {\"source\": 376, \"target\": 7, \"value\": 0.6224326154433744}, {\"source\": 376, \"target\": 8, \"value\": 0.47382629937656673}, {\"source\": 376, \"target\": 9, \"value\": 0.4236216771604042}, {\"source\": 377, \"target\": 0, \"value\": 0.6276829594872813}, {\"source\": 377, \"target\": 1, \"value\": 0.21735280319429962}, {\"source\": 377, \"target\": 2, \"value\": 0.23340070385746503}, {\"source\": 377, \"target\": 3, \"value\": 0.895059520224982}, {\"source\": 377, \"target\": 4, \"value\": 0.6001659184543665}, {\"source\": 377, \"target\": 5, \"value\": 0.10779849531429575}, {\"source\": 377, \"target\": 6, \"value\": 0.019898645798142933}, {\"source\": 377, \"target\": 7, \"value\": 0.7756230372603214}, {\"source\": 377, \"target\": 8, \"value\": 0.6464704736571971}, {\"source\": 377, \"target\": 9, \"value\": 0.32243079244561546}, {\"source\": 378, \"target\": 0, \"value\": 0.00827528343369388}, {\"source\": 378, \"target\": 1, \"value\": 0.9757853697629362}, {\"source\": 378, \"target\": 2, \"value\": 0.27138645752512425}, {\"source\": 378, \"target\": 3, \"value\": 0.36400738143058375}, {\"source\": 378, \"target\": 4, \"value\": 0.15940904866793348}, {\"source\": 378, \"target\": 5, \"value\": 0.14726543653889135}, {\"source\": 378, \"target\": 6, \"value\": 0.7285127110100412}, {\"source\": 378, \"target\": 7, \"value\": 0.833190710784765}, {\"source\": 378, \"target\": 8, \"value\": 0.17105298653695178}, {\"source\": 378, \"target\": 9, \"value\": 0.8096563634620185}, {\"source\": 379, \"target\": 0, \"value\": 0.17502356166094213}, {\"source\": 379, \"target\": 1, \"value\": 0.18172466583957747}, {\"source\": 379, \"target\": 2, \"value\": 0.3458601506848955}, {\"source\": 379, \"target\": 3, \"value\": 0.8755615868178226}, {\"source\": 379, \"target\": 4, \"value\": 0.5790925922515858}, {\"source\": 379, \"target\": 5, \"value\": 0.3903151215726385}, {\"source\": 379, \"target\": 6, \"value\": 0.08719301589644601}, {\"source\": 379, \"target\": 7, \"value\": 0.18859161127239132}, {\"source\": 379, \"target\": 8, \"value\": 0.6632941135331283}, {\"source\": 379, \"target\": 9, \"value\": 0.10184875581571684}, {\"source\": 380, \"target\": 0, \"value\": 0.6116802288670027}, {\"source\": 380, \"target\": 1, \"value\": 0.6383021149545194}, {\"source\": 380, \"target\": 2, \"value\": 0.23093959744827297}, {\"source\": 380, \"target\": 3, \"value\": 0.1002645319936224}, {\"source\": 380, \"target\": 4, \"value\": 0.5576630782503988}, {\"source\": 380, \"target\": 5, \"value\": 0.9982396444683229}, {\"source\": 380, \"target\": 6, \"value\": 0.599504206575504}, {\"source\": 380, \"target\": 7, \"value\": 0.594634469065537}, {\"source\": 380, \"target\": 8, \"value\": 0.007709674652210952}, {\"source\": 380, \"target\": 9, \"value\": 0.0063886625151666765}, {\"source\": 381, \"target\": 0, \"value\": 0.4982187074058382}, {\"source\": 381, \"target\": 1, \"value\": 0.9794351543302695}, {\"source\": 381, \"target\": 2, \"value\": 0.14542256159467082}, {\"source\": 381, \"target\": 3, \"value\": 0.7748136509229163}, {\"source\": 381, \"target\": 4, \"value\": 0.37891434262091805}, {\"source\": 381, \"target\": 5, \"value\": 0.172675432483527}, {\"source\": 381, \"target\": 6, \"value\": 0.567157113476133}, {\"source\": 381, \"target\": 7, \"value\": 0.9644102744617203}, {\"source\": 381, \"target\": 8, \"value\": 0.5721706859866449}, {\"source\": 381, \"target\": 9, \"value\": 0.3986495412597012}, {\"source\": 382, \"target\": 0, \"value\": 0.6341271960779946}, {\"source\": 382, \"target\": 1, \"value\": 0.6702165089260885}, {\"source\": 382, \"target\": 2, \"value\": 0.6420942046164073}, {\"source\": 382, \"target\": 3, \"value\": 0.9198292111820436}, {\"source\": 382, \"target\": 4, \"value\": 0.14907617946520102}, {\"source\": 382, \"target\": 5, \"value\": 0.9910962851504207}, {\"source\": 382, \"target\": 6, \"value\": 0.80708654174802}, {\"source\": 382, \"target\": 7, \"value\": 0.577815575884554}, {\"source\": 382, \"target\": 8, \"value\": 0.08762633770785222}, {\"source\": 382, \"target\": 9, \"value\": 0.521778597820698}, {\"source\": 383, \"target\": 0, \"value\": 0.2140572888219735}, {\"source\": 383, \"target\": 1, \"value\": 0.4893243827011713}, {\"source\": 383, \"target\": 2, \"value\": 0.043020819880799865}, {\"source\": 383, \"target\": 3, \"value\": 0.5065330833524632}, {\"source\": 383, \"target\": 4, \"value\": 0.6168226730657989}, {\"source\": 383, \"target\": 5, \"value\": 0.4973389992256009}, {\"source\": 383, \"target\": 6, \"value\": 0.8889963598415455}, {\"source\": 383, \"target\": 7, \"value\": 0.7440402773745123}, {\"source\": 383, \"target\": 8, \"value\": 0.9901273403775731}, {\"source\": 383, \"target\": 9, \"value\": 0.6822679180096551}, {\"source\": 384, \"target\": 0, \"value\": 0.4200190445429508}, {\"source\": 384, \"target\": 1, \"value\": 0.217225258996269}, {\"source\": 384, \"target\": 2, \"value\": 0.7289083000309508}, {\"source\": 384, \"target\": 3, \"value\": 0.7371508215027333}, {\"source\": 384, \"target\": 4, \"value\": 0.6738956375298228}, {\"source\": 384, \"target\": 5, \"value\": 0.5278208817451826}, {\"source\": 384, \"target\": 6, \"value\": 0.6494501004515998}, {\"source\": 384, \"target\": 7, \"value\": 0.21687837774004626}, {\"source\": 384, \"target\": 8, \"value\": 0.6962012180853653}, {\"source\": 384, \"target\": 9, \"value\": 0.2517194897975803}, {\"source\": 385, \"target\": 0, \"value\": 0.4780583457518879}, {\"source\": 385, \"target\": 1, \"value\": 0.4358292755697277}, {\"source\": 385, \"target\": 2, \"value\": 0.5846788413110799}, {\"source\": 385, \"target\": 3, \"value\": 0.9452988440600031}, {\"source\": 385, \"target\": 4, \"value\": 0.36778107993041054}, {\"source\": 385, \"target\": 5, \"value\": 0.8476902070187115}, {\"source\": 385, \"target\": 6, \"value\": 0.02938485179522843}, {\"source\": 385, \"target\": 7, \"value\": 0.829575637293351}, {\"source\": 385, \"target\": 8, \"value\": 0.763040520898297}, {\"source\": 385, \"target\": 9, \"value\": 0.55321813728559}, {\"source\": 386, \"target\": 0, \"value\": 0.2788134565446866}, {\"source\": 386, \"target\": 1, \"value\": 0.5332320309229552}, {\"source\": 386, \"target\": 2, \"value\": 0.2043067232659287}, {\"source\": 386, \"target\": 3, \"value\": 0.02945626892902309}, {\"source\": 386, \"target\": 4, \"value\": 0.11287023222000059}, {\"source\": 386, \"target\": 5, \"value\": 0.25393998233530624}, {\"source\": 386, \"target\": 6, \"value\": 0.5629163687921508}, {\"source\": 386, \"target\": 7, \"value\": 0.06890273824206083}, {\"source\": 386, \"target\": 8, \"value\": 0.9920313024213158}, {\"source\": 386, \"target\": 9, \"value\": 0.7482283213717233}, {\"source\": 387, \"target\": 0, \"value\": 0.6885251928321457}, {\"source\": 387, \"target\": 1, \"value\": 0.3895637282142068}, {\"source\": 387, \"target\": 2, \"value\": 0.9361654850044699}, {\"source\": 387, \"target\": 3, \"value\": 0.5619838802956427}, {\"source\": 387, \"target\": 4, \"value\": 0.1441826396160154}, {\"source\": 387, \"target\": 5, \"value\": 0.7448931612694191}, {\"source\": 387, \"target\": 6, \"value\": 0.25994895598211576}, {\"source\": 387, \"target\": 7, \"value\": 0.5290489663644535}, {\"source\": 387, \"target\": 8, \"value\": 0.7343753194695397}, {\"source\": 387, \"target\": 9, \"value\": 0.9144921539431903}, {\"source\": 388, \"target\": 0, \"value\": 0.5806707183764669}, {\"source\": 388, \"target\": 1, \"value\": 0.619768214668613}, {\"source\": 388, \"target\": 2, \"value\": 0.2690363583569447}, {\"source\": 388, \"target\": 3, \"value\": 0.22717104964510593}, {\"source\": 388, \"target\": 4, \"value\": 0.3796614271806059}, {\"source\": 388, \"target\": 5, \"value\": 0.6746972099819418}, {\"source\": 388, \"target\": 6, \"value\": 0.9069129682998033}, {\"source\": 388, \"target\": 7, \"value\": 0.2229595125648487}, {\"source\": 388, \"target\": 8, \"value\": 0.4035500654189743}, {\"source\": 388, \"target\": 9, \"value\": 0.6542884240038098}, {\"source\": 389, \"target\": 0, \"value\": 0.4176687099041577}, {\"source\": 389, \"target\": 1, \"value\": 0.09040704667810018}, {\"source\": 389, \"target\": 2, \"value\": 0.1744812180303833}, {\"source\": 389, \"target\": 3, \"value\": 0.44212487449570503}, {\"source\": 389, \"target\": 4, \"value\": 0.9375478698893622}, {\"source\": 389, \"target\": 5, \"value\": 0.6677043444619853}, {\"source\": 389, \"target\": 6, \"value\": 0.9885901815839115}, {\"source\": 389, \"target\": 7, \"value\": 0.09535194877919939}, {\"source\": 389, \"target\": 8, \"value\": 0.022498416130331433}, {\"source\": 389, \"target\": 9, \"value\": 0.4930396968864933}, {\"source\": 390, \"target\": 0, \"value\": 0.0758494287462822}, {\"source\": 390, \"target\": 1, \"value\": 0.7571409036922156}, {\"source\": 390, \"target\": 2, \"value\": 0.3299648292125712}, {\"source\": 390, \"target\": 3, \"value\": 0.792094675769865}, {\"source\": 390, \"target\": 4, \"value\": 0.7565675455357435}, {\"source\": 390, \"target\": 5, \"value\": 0.43575451695162004}, {\"source\": 390, \"target\": 6, \"value\": 0.3574795424666741}, {\"source\": 390, \"target\": 7, \"value\": 0.8620644948548838}, {\"source\": 390, \"target\": 8, \"value\": 0.9985378675101645}, {\"source\": 390, \"target\": 9, \"value\": 0.30404327153392663}, {\"source\": 391, \"target\": 0, \"value\": 0.4040784871992449}, {\"source\": 391, \"target\": 1, \"value\": 0.2675674817627909}, {\"source\": 391, \"target\": 2, \"value\": 0.7310730244739782}, {\"source\": 391, \"target\": 3, \"value\": 0.2129163679750845}, {\"source\": 391, \"target\": 4, \"value\": 0.4914674915866083}, {\"source\": 391, \"target\": 5, \"value\": 0.19381786293659997}, {\"source\": 391, \"target\": 6, \"value\": 0.5159075097390502}, {\"source\": 391, \"target\": 7, \"value\": 0.9440088324447474}, {\"source\": 391, \"target\": 8, \"value\": 0.4865028778498274}, {\"source\": 391, \"target\": 9, \"value\": 0.9539542172034756}, {\"source\": 392, \"target\": 0, \"value\": 0.15406400426913502}, {\"source\": 392, \"target\": 1, \"value\": 0.2140172274462151}, {\"source\": 392, \"target\": 2, \"value\": 0.9501780923336565}, {\"source\": 392, \"target\": 3, \"value\": 0.6898523222240528}, {\"source\": 392, \"target\": 4, \"value\": 0.8335303547080137}, {\"source\": 392, \"target\": 5, \"value\": 0.03965475947747055}, {\"source\": 392, \"target\": 6, \"value\": 0.9050439051510505}, {\"source\": 392, \"target\": 7, \"value\": 0.5835922025863391}, {\"source\": 392, \"target\": 8, \"value\": 0.07774166396677684}, {\"source\": 392, \"target\": 9, \"value\": 0.28269469494904265}, {\"source\": 393, \"target\": 0, \"value\": 0.7976954983955169}, {\"source\": 393, \"target\": 1, \"value\": 0.3066178854589059}, {\"source\": 393, \"target\": 2, \"value\": 0.05599734192068917}, {\"source\": 393, \"target\": 3, \"value\": 0.09420594387830583}, {\"source\": 393, \"target\": 4, \"value\": 0.5690927200357608}, {\"source\": 393, \"target\": 5, \"value\": 0.4659392789897978}, {\"source\": 393, \"target\": 6, \"value\": 0.0964216538966517}, {\"source\": 393, \"target\": 7, \"value\": 0.8797361245330241}, {\"source\": 393, \"target\": 8, \"value\": 0.4659259623791574}, {\"source\": 393, \"target\": 9, \"value\": 0.7617114759641018}, {\"source\": 394, \"target\": 0, \"value\": 0.8352916640610947}, {\"source\": 394, \"target\": 1, \"value\": 0.009982139113042021}, {\"source\": 394, \"target\": 2, \"value\": 0.19904418917542155}, {\"source\": 394, \"target\": 3, \"value\": 0.09685453112595055}, {\"source\": 394, \"target\": 4, \"value\": 0.2403048205103241}, {\"source\": 394, \"target\": 5, \"value\": 0.7314530924696033}, {\"source\": 394, \"target\": 6, \"value\": 0.7918591727237821}, {\"source\": 394, \"target\": 7, \"value\": 0.07370738303747526}, {\"source\": 394, \"target\": 8, \"value\": 0.9373076068609756}, {\"source\": 394, \"target\": 9, \"value\": 0.32576646397175624}, {\"source\": 395, \"target\": 0, \"value\": 0.4638025944554337}, {\"source\": 395, \"target\": 1, \"value\": 0.39013399030014506}, {\"source\": 395, \"target\": 2, \"value\": 0.09222735440610874}, {\"source\": 395, \"target\": 3, \"value\": 0.8921888181897849}, {\"source\": 395, \"target\": 4, \"value\": 0.25254408262495853}, {\"source\": 395, \"target\": 5, \"value\": 0.4170868840048312}, {\"source\": 395, \"target\": 6, \"value\": 0.02336102323598166}, {\"source\": 395, \"target\": 7, \"value\": 0.9517239279237867}, {\"source\": 395, \"target\": 8, \"value\": 0.45229036532931244}, {\"source\": 395, \"target\": 9, \"value\": 0.7581251728052458}, {\"source\": 396, \"target\": 0, \"value\": 0.8032478833482913}, {\"source\": 396, \"target\": 1, \"value\": 0.9812837153463666}, {\"source\": 396, \"target\": 2, \"value\": 0.5158774502699105}, {\"source\": 396, \"target\": 3, \"value\": 0.47096783101318695}, {\"source\": 396, \"target\": 4, \"value\": 0.578137235496567}, {\"source\": 396, \"target\": 5, \"value\": 0.5711873724955207}, {\"source\": 396, \"target\": 6, \"value\": 0.08490662572175678}, {\"source\": 396, \"target\": 7, \"value\": 0.2880026988205292}, {\"source\": 396, \"target\": 8, \"value\": 0.9114235881559389}, {\"source\": 396, \"target\": 9, \"value\": 0.8275573075245061}, {\"source\": 397, \"target\": 0, \"value\": 0.8382441602580809}, {\"source\": 397, \"target\": 1, \"value\": 0.48788441444337294}, {\"source\": 397, \"target\": 2, \"value\": 0.08350203637694709}, {\"source\": 397, \"target\": 3, \"value\": 0.6213209577819411}, {\"source\": 397, \"target\": 4, \"value\": 0.7686753602965744}, {\"source\": 397, \"target\": 5, \"value\": 0.5198189533069096}, {\"source\": 397, \"target\": 6, \"value\": 0.45358523116156235}, {\"source\": 397, \"target\": 7, \"value\": 0.5452317899019625}, {\"source\": 397, \"target\": 8, \"value\": 0.4821353121469584}, {\"source\": 397, \"target\": 9, \"value\": 0.8804429579619466}, {\"source\": 398, \"target\": 0, \"value\": 0.5247532417730639}, {\"source\": 398, \"target\": 1, \"value\": 0.10950089109627714}, {\"source\": 398, \"target\": 2, \"value\": 0.4016072504782723}, {\"source\": 398, \"target\": 3, \"value\": 0.5537667398856523}, {\"source\": 398, \"target\": 4, \"value\": 0.8689683421763135}, {\"source\": 398, \"target\": 5, \"value\": 0.8387110550819716}, {\"source\": 398, \"target\": 6, \"value\": 0.6570918086957713}, {\"source\": 398, \"target\": 7, \"value\": 0.1200489440552508}, {\"source\": 398, \"target\": 8, \"value\": 0.9397932392027201}, {\"source\": 398, \"target\": 9, \"value\": 0.844045784830814}, {\"source\": 399, \"target\": 0, \"value\": 0.0681086870887162}, {\"source\": 399, \"target\": 1, \"value\": 0.4943393063817342}, {\"source\": 399, \"target\": 2, \"value\": 0.13020617332500262}, {\"source\": 399, \"target\": 3, \"value\": 0.5380300830043582}, {\"source\": 399, \"target\": 4, \"value\": 0.5745676774735616}, {\"source\": 399, \"target\": 5, \"value\": 0.07832076737457105}, {\"source\": 399, \"target\": 6, \"value\": 0.8473012440155853}, {\"source\": 399, \"target\": 7, \"value\": 0.7932888276528983}, {\"source\": 399, \"target\": 8, \"value\": 0.34831905570878063}, {\"source\": 399, \"target\": 9, \"value\": 0.9661669719839227}, {\"source\": 400, \"target\": 0, \"value\": 0.7696199555627325}, {\"source\": 400, \"target\": 1, \"value\": 0.043596851898683786}, {\"source\": 400, \"target\": 2, \"value\": 0.19151391584598532}, {\"source\": 400, \"target\": 3, \"value\": 0.12118627903937218}, {\"source\": 400, \"target\": 4, \"value\": 0.7608430512675556}, {\"source\": 400, \"target\": 5, \"value\": 0.6238377794338953}, {\"source\": 400, \"target\": 6, \"value\": 0.4628548423556488}, {\"source\": 400, \"target\": 7, \"value\": 0.7281465425284142}, {\"source\": 400, \"target\": 8, \"value\": 0.939782760082446}, {\"source\": 400, \"target\": 9, \"value\": 0.2676263472436272}, {\"source\": 401, \"target\": 0, \"value\": 0.1057867117700646}, {\"source\": 401, \"target\": 1, \"value\": 0.8321300791054518}, {\"source\": 401, \"target\": 2, \"value\": 0.11892376655611359}, {\"source\": 401, \"target\": 3, \"value\": 0.5500508423415753}, {\"source\": 401, \"target\": 4, \"value\": 0.6507091962439051}, {\"source\": 401, \"target\": 5, \"value\": 0.5525249031412237}, {\"source\": 401, \"target\": 6, \"value\": 0.9704740047924837}, {\"source\": 401, \"target\": 7, \"value\": 0.821002241247897}, {\"source\": 401, \"target\": 8, \"value\": 0.6912133695466914}, {\"source\": 401, \"target\": 9, \"value\": 0.971189086632068}, {\"source\": 402, \"target\": 0, \"value\": 0.5528165624897052}, {\"source\": 402, \"target\": 1, \"value\": 0.3802142241962153}, {\"source\": 402, \"target\": 2, \"value\": 0.673018283939911}, {\"source\": 402, \"target\": 3, \"value\": 0.3097768456055956}, {\"source\": 402, \"target\": 4, \"value\": 0.7259498086660109}, {\"source\": 402, \"target\": 5, \"value\": 0.5613515325585243}, {\"source\": 402, \"target\": 6, \"value\": 0.45735504114224346}, {\"source\": 402, \"target\": 7, \"value\": 0.9241499195077018}, {\"source\": 402, \"target\": 8, \"value\": 0.9894844264382239}, {\"source\": 402, \"target\": 9, \"value\": 0.3359563504552079}, {\"source\": 403, \"target\": 0, \"value\": 0.5324835443968507}, {\"source\": 403, \"target\": 1, \"value\": 0.18427103904439424}, {\"source\": 403, \"target\": 2, \"value\": 0.7142546547490884}, {\"source\": 403, \"target\": 3, \"value\": 0.8433928328033535}, {\"source\": 403, \"target\": 4, \"value\": 0.22721506915527678}, {\"source\": 403, \"target\": 5, \"value\": 0.3493998422553707}, {\"source\": 403, \"target\": 6, \"value\": 0.7972858278474074}, {\"source\": 403, \"target\": 7, \"value\": 0.00858583638013799}, {\"source\": 403, \"target\": 8, \"value\": 0.9125496198062027}, {\"source\": 403, \"target\": 9, \"value\": 0.5883198493340703}, {\"source\": 404, \"target\": 0, \"value\": 0.392697527587233}, {\"source\": 404, \"target\": 1, \"value\": 0.7958675878218519}, {\"source\": 404, \"target\": 2, \"value\": 0.817116489848168}, {\"source\": 404, \"target\": 3, \"value\": 0.33383914449294494}, {\"source\": 404, \"target\": 4, \"value\": 0.9212631208597141}, {\"source\": 404, \"target\": 5, \"value\": 0.398119564451594}, {\"source\": 404, \"target\": 6, \"value\": 0.18978501430909533}, {\"source\": 404, \"target\": 7, \"value\": 0.5501753434986876}, {\"source\": 404, \"target\": 8, \"value\": 0.8241723711580338}, {\"source\": 404, \"target\": 9, \"value\": 0.4406728470852489}, {\"source\": 405, \"target\": 0, \"value\": 0.3503634937589606}, {\"source\": 405, \"target\": 1, \"value\": 0.6469089315520176}, {\"source\": 405, \"target\": 2, \"value\": 0.02575297993275283}, {\"source\": 405, \"target\": 3, \"value\": 0.057608545642456765}, {\"source\": 405, \"target\": 4, \"value\": 0.980730682944214}, {\"source\": 405, \"target\": 5, \"value\": 0.8444060483118773}, {\"source\": 405, \"target\": 6, \"value\": 0.8896394484782392}, {\"source\": 405, \"target\": 7, \"value\": 0.2342854704087587}, {\"source\": 405, \"target\": 8, \"value\": 0.7792225868288619}, {\"source\": 405, \"target\": 9, \"value\": 0.7369462658937502}, {\"source\": 406, \"target\": 0, \"value\": 0.43287716819953126}, {\"source\": 406, \"target\": 1, \"value\": 0.4960844540720014}, {\"source\": 406, \"target\": 2, \"value\": 0.7476177197343447}, {\"source\": 406, \"target\": 3, \"value\": 0.2773556915756019}, {\"source\": 406, \"target\": 4, \"value\": 0.4046758967118279}, {\"source\": 406, \"target\": 5, \"value\": 0.09277502883455435}, {\"source\": 406, \"target\": 6, \"value\": 0.2018849144473306}, {\"source\": 406, \"target\": 7, \"value\": 0.3443998052119628}, {\"source\": 406, \"target\": 8, \"value\": 0.6842990275506152}, {\"source\": 406, \"target\": 9, \"value\": 0.2911781933487929}, {\"source\": 407, \"target\": 0, \"value\": 0.6222603238990508}, {\"source\": 407, \"target\": 1, \"value\": 0.06355081927375505}, {\"source\": 407, \"target\": 2, \"value\": 0.612310231501081}, {\"source\": 407, \"target\": 3, \"value\": 0.8639781282871019}, {\"source\": 407, \"target\": 4, \"value\": 0.4168712101855}, {\"source\": 407, \"target\": 5, \"value\": 0.8194724003070676}, {\"source\": 407, \"target\": 6, \"value\": 0.17122056620850146}, {\"source\": 407, \"target\": 7, \"value\": 0.2989379562526029}, {\"source\": 407, \"target\": 8, \"value\": 0.4039371029959943}, {\"source\": 407, \"target\": 9, \"value\": 0.4132202046067609}, {\"source\": 408, \"target\": 0, \"value\": 0.7911243357099367}, {\"source\": 408, \"target\": 1, \"value\": 0.6618075609599049}, {\"source\": 408, \"target\": 2, \"value\": 0.49900585261267305}, {\"source\": 408, \"target\": 3, \"value\": 0.34639346002540095}, {\"source\": 408, \"target\": 4, \"value\": 0.975803209736935}, {\"source\": 408, \"target\": 5, \"value\": 0.9827667037522138}, {\"source\": 408, \"target\": 6, \"value\": 0.7096407604978503}, {\"source\": 408, \"target\": 7, \"value\": 0.2344355986756701}, {\"source\": 408, \"target\": 8, \"value\": 0.5921964305651116}, {\"source\": 408, \"target\": 9, \"value\": 0.2596253010278733}, {\"source\": 409, \"target\": 0, \"value\": 0.25280584944432716}, {\"source\": 409, \"target\": 1, \"value\": 0.9700529666691916}, {\"source\": 409, \"target\": 2, \"value\": 0.14789857556566122}, {\"source\": 409, \"target\": 3, \"value\": 0.7609764858743637}, {\"source\": 409, \"target\": 4, \"value\": 0.7084255690127601}, {\"source\": 409, \"target\": 5, \"value\": 0.09679132069789054}, {\"source\": 409, \"target\": 6, \"value\": 0.5537330152151749}, {\"source\": 409, \"target\": 7, \"value\": 0.9696113822576335}, {\"source\": 409, \"target\": 8, \"value\": 0.11575215293141139}, {\"source\": 409, \"target\": 9, \"value\": 0.9057967784774786}, {\"source\": 410, \"target\": 0, \"value\": 0.4769858762715158}, {\"source\": 410, \"target\": 1, \"value\": 0.6039210503064552}, {\"source\": 410, \"target\": 2, \"value\": 0.14718132094077618}, {\"source\": 410, \"target\": 3, \"value\": 0.6860005229954544}, {\"source\": 410, \"target\": 4, \"value\": 0.9928110080379562}, {\"source\": 410, \"target\": 5, \"value\": 0.7020397880517472}, {\"source\": 410, \"target\": 6, \"value\": 0.20686154541967217}, {\"source\": 410, \"target\": 7, \"value\": 0.6591370601832655}, {\"source\": 410, \"target\": 8, \"value\": 0.6824917263685351}, {\"source\": 410, \"target\": 9, \"value\": 0.8355945760269449}, {\"source\": 411, \"target\": 0, \"value\": 0.9204304895808588}, {\"source\": 411, \"target\": 1, \"value\": 0.6357875236757518}, {\"source\": 411, \"target\": 2, \"value\": 0.03087580220716546}, {\"source\": 411, \"target\": 3, \"value\": 0.7668178517398145}, {\"source\": 411, \"target\": 4, \"value\": 0.5588210943522002}, {\"source\": 411, \"target\": 5, \"value\": 0.10273628939378965}, {\"source\": 411, \"target\": 6, \"value\": 0.017459268677865625}, {\"source\": 411, \"target\": 7, \"value\": 0.2453884345914511}, {\"source\": 411, \"target\": 8, \"value\": 0.6759230131716527}, {\"source\": 411, \"target\": 9, \"value\": 0.8659881939873884}, {\"source\": 412, \"target\": 0, \"value\": 0.6376730744998167}, {\"source\": 412, \"target\": 1, \"value\": 0.03184519531687846}, {\"source\": 412, \"target\": 2, \"value\": 0.9000463659467018}, {\"source\": 412, \"target\": 3, \"value\": 0.38331692633746683}, {\"source\": 412, \"target\": 4, \"value\": 0.7740714630758336}, {\"source\": 412, \"target\": 5, \"value\": 0.5602076604013801}, {\"source\": 412, \"target\": 6, \"value\": 0.28625478404225957}, {\"source\": 412, \"target\": 7, \"value\": 0.8796336199596632}, {\"source\": 412, \"target\": 8, \"value\": 0.37731308648752526}, {\"source\": 412, \"target\": 9, \"value\": 0.08288868675420369}, {\"source\": 413, \"target\": 0, \"value\": 0.5724073287020459}, {\"source\": 413, \"target\": 1, \"value\": 0.5180906353926344}, {\"source\": 413, \"target\": 2, \"value\": 0.2912354044349371}, {\"source\": 413, \"target\": 3, \"value\": 0.7682530160218776}, {\"source\": 413, \"target\": 4, \"value\": 0.6449709470881697}, {\"source\": 413, \"target\": 5, \"value\": 0.9075393934997619}, {\"source\": 413, \"target\": 6, \"value\": 0.3461181188114161}, {\"source\": 413, \"target\": 7, \"value\": 0.4404071956280048}, {\"source\": 413, \"target\": 8, \"value\": 0.19064043181815304}, {\"source\": 413, \"target\": 9, \"value\": 0.009943720419837376}, {\"source\": 414, \"target\": 0, \"value\": 0.9559433858915988}, {\"source\": 414, \"target\": 1, \"value\": 0.8839636820439624}, {\"source\": 414, \"target\": 2, \"value\": 0.6902228787587673}, {\"source\": 414, \"target\": 3, \"value\": 0.21081624568817914}, {\"source\": 414, \"target\": 4, \"value\": 0.6791590174568184}, {\"source\": 414, \"target\": 5, \"value\": 0.509164386042649}, {\"source\": 414, \"target\": 6, \"value\": 0.5340709442812587}, {\"source\": 414, \"target\": 7, \"value\": 0.25564547844691554}, {\"source\": 414, \"target\": 8, \"value\": 0.7574080490121983}, {\"source\": 414, \"target\": 9, \"value\": 0.05420751058546558}, {\"source\": 415, \"target\": 0, \"value\": 0.565146754794389}, {\"source\": 415, \"target\": 1, \"value\": 0.6551559655746562}, {\"source\": 415, \"target\": 2, \"value\": 0.19654046620189658}, {\"source\": 415, \"target\": 3, \"value\": 0.07002201542245501}, {\"source\": 415, \"target\": 4, \"value\": 0.9793977081707717}, {\"source\": 415, \"target\": 5, \"value\": 0.7498245602063323}, {\"source\": 415, \"target\": 6, \"value\": 0.08819977636122245}, {\"source\": 415, \"target\": 7, \"value\": 0.5177466856971149}, {\"source\": 415, \"target\": 8, \"value\": 0.6879380325053254}, {\"source\": 415, \"target\": 9, \"value\": 0.045019969479451305}, {\"source\": 416, \"target\": 0, \"value\": 0.7665483615375129}, {\"source\": 416, \"target\": 1, \"value\": 0.4428709174607124}, {\"source\": 416, \"target\": 2, \"value\": 0.46978414078155384}, {\"source\": 416, \"target\": 3, \"value\": 0.3318759811445803}, {\"source\": 416, \"target\": 4, \"value\": 0.29042390120818173}, {\"source\": 416, \"target\": 5, \"value\": 0.22162478536330033}, {\"source\": 416, \"target\": 6, \"value\": 0.3925165281254055}, {\"source\": 416, \"target\": 7, \"value\": 0.1785552861342241}, {\"source\": 416, \"target\": 8, \"value\": 0.8944153935147514}, {\"source\": 416, \"target\": 9, \"value\": 0.0008885864936769572}, {\"source\": 417, \"target\": 0, \"value\": 0.12150400632872693}, {\"source\": 417, \"target\": 1, \"value\": 0.2739563925789331}, {\"source\": 417, \"target\": 2, \"value\": 0.9142014072130672}, {\"source\": 417, \"target\": 3, \"value\": 0.4343391702475162}, {\"source\": 417, \"target\": 4, \"value\": 0.8306872239338481}, {\"source\": 417, \"target\": 5, \"value\": 0.5598990169472468}, {\"source\": 417, \"target\": 6, \"value\": 0.523573797928366}, {\"source\": 417, \"target\": 7, \"value\": 0.3618327190922589}, {\"source\": 417, \"target\": 8, \"value\": 0.027974260450854382}, {\"source\": 417, \"target\": 9, \"value\": 0.6528294495053223}, {\"source\": 418, \"target\": 0, \"value\": 0.9907879432771821}, {\"source\": 418, \"target\": 1, \"value\": 0.8110132634968505}, {\"source\": 418, \"target\": 2, \"value\": 0.2643744506166703}, {\"source\": 418, \"target\": 3, \"value\": 0.27125315153483953}, {\"source\": 418, \"target\": 4, \"value\": 0.5660942465673655}, {\"source\": 418, \"target\": 5, \"value\": 0.5655308764834088}, {\"source\": 418, \"target\": 6, \"value\": 0.6406007316071667}, {\"source\": 418, \"target\": 7, \"value\": 0.19993182718423652}, {\"source\": 418, \"target\": 8, \"value\": 0.42510554190396677}, {\"source\": 418, \"target\": 9, \"value\": 0.4875906132585702}, {\"source\": 419, \"target\": 0, \"value\": 0.6502994310185635}, {\"source\": 419, \"target\": 1, \"value\": 0.13648315017852974}, {\"source\": 419, \"target\": 2, \"value\": 0.7864576394567309}, {\"source\": 419, \"target\": 3, \"value\": 0.10682997652724369}, {\"source\": 419, \"target\": 4, \"value\": 0.27374022284000654}, {\"source\": 419, \"target\": 5, \"value\": 0.2927611404104229}, {\"source\": 419, \"target\": 6, \"value\": 0.9603629027976692}, {\"source\": 419, \"target\": 7, \"value\": 0.8364052304748724}, {\"source\": 419, \"target\": 8, \"value\": 0.27804498546970235}, {\"source\": 419, \"target\": 9, \"value\": 0.6027543897973795}, {\"source\": 420, \"target\": 0, \"value\": 0.35005072935099957}, {\"source\": 420, \"target\": 1, \"value\": 0.5339196457663224}, {\"source\": 420, \"target\": 2, \"value\": 0.3387986144234957}, {\"source\": 420, \"target\": 3, \"value\": 0.36738569841205204}, {\"source\": 420, \"target\": 4, \"value\": 0.9874286829409733}, {\"source\": 420, \"target\": 5, \"value\": 0.8565742428193498}, {\"source\": 420, \"target\": 6, \"value\": 0.4790254855802303}, {\"source\": 420, \"target\": 7, \"value\": 0.250123955443581}, {\"source\": 420, \"target\": 8, \"value\": 0.9701743582272538}, {\"source\": 420, \"target\": 9, \"value\": 0.3018023777346004}, {\"source\": 421, \"target\": 0, \"value\": 0.07462461513109997}, {\"source\": 421, \"target\": 1, \"value\": 0.9928464389748293}, {\"source\": 421, \"target\": 2, \"value\": 0.12205318178049007}, {\"source\": 421, \"target\": 3, \"value\": 0.8196828084942588}, {\"source\": 421, \"target\": 4, \"value\": 0.7817653330690416}, {\"source\": 421, \"target\": 5, \"value\": 0.346153644727204}, {\"source\": 421, \"target\": 6, \"value\": 0.9432765400405572}, {\"source\": 421, \"target\": 7, \"value\": 0.8905305653234193}, {\"source\": 421, \"target\": 8, \"value\": 0.48832664896307654}, {\"source\": 421, \"target\": 9, \"value\": 0.015602915715837273}, {\"source\": 422, \"target\": 0, \"value\": 0.5209569527745419}, {\"source\": 422, \"target\": 1, \"value\": 0.4839624182802025}, {\"source\": 422, \"target\": 2, \"value\": 0.3123732116813195}, {\"source\": 422, \"target\": 3, \"value\": 0.7392112530646515}, {\"source\": 422, \"target\": 4, \"value\": 0.0552254895427754}, {\"source\": 422, \"target\": 5, \"value\": 0.2741785225362351}, {\"source\": 422, \"target\": 6, \"value\": 0.6116657616016977}, {\"source\": 422, \"target\": 7, \"value\": 0.9217461340959203}, {\"source\": 422, \"target\": 8, \"value\": 0.39076871525089096}, {\"source\": 422, \"target\": 9, \"value\": 0.7352963330226533}, {\"source\": 423, \"target\": 0, \"value\": 0.2337936812816812}, {\"source\": 423, \"target\": 1, \"value\": 0.4860831147351443}, {\"source\": 423, \"target\": 2, \"value\": 0.6725684544158439}, {\"source\": 423, \"target\": 3, \"value\": 0.4337514844286562}, {\"source\": 423, \"target\": 4, \"value\": 0.284118920715246}, {\"source\": 423, \"target\": 5, \"value\": 0.4396888581679659}, {\"source\": 423, \"target\": 6, \"value\": 0.5169188870465539}, {\"source\": 423, \"target\": 7, \"value\": 0.5772700925072071}, {\"source\": 423, \"target\": 8, \"value\": 0.3537328497118917}, {\"source\": 423, \"target\": 9, \"value\": 0.36235925756292797}, {\"source\": 424, \"target\": 0, \"value\": 0.4480860317866716}, {\"source\": 424, \"target\": 1, \"value\": 0.4577683317578003}, {\"source\": 424, \"target\": 2, \"value\": 0.2874107482008258}, {\"source\": 424, \"target\": 3, \"value\": 0.7680596007712127}, {\"source\": 424, \"target\": 4, \"value\": 0.34774592498048806}, {\"source\": 424, \"target\": 5, \"value\": 0.3835832693158918}, {\"source\": 424, \"target\": 6, \"value\": 0.23432808748158296}, {\"source\": 424, \"target\": 7, \"value\": 0.12598780704586365}, {\"source\": 424, \"target\": 8, \"value\": 0.8745818854491288}, {\"source\": 424, \"target\": 9, \"value\": 0.28380829470746116}, {\"source\": 425, \"target\": 0, \"value\": 0.9871338987648821}, {\"source\": 425, \"target\": 1, \"value\": 0.0579841921770079}, {\"source\": 425, \"target\": 2, \"value\": 0.07959958138365553}, {\"source\": 425, \"target\": 3, \"value\": 0.6728980445802132}, {\"source\": 425, \"target\": 4, \"value\": 0.1617849844822682}, {\"source\": 425, \"target\": 5, \"value\": 0.8434761089802308}, {\"source\": 425, \"target\": 6, \"value\": 0.2830594497343437}, {\"source\": 425, \"target\": 7, \"value\": 0.9472816881805342}, {\"source\": 425, \"target\": 8, \"value\": 0.3413262551223891}, {\"source\": 425, \"target\": 9, \"value\": 0.9190904571210906}, {\"source\": 426, \"target\": 0, \"value\": 0.973176257298332}, {\"source\": 426, \"target\": 1, \"value\": 0.6335769803907755}, {\"source\": 426, \"target\": 2, \"value\": 0.7391123613150206}, {\"source\": 426, \"target\": 3, \"value\": 0.3286923145649565}, {\"source\": 426, \"target\": 4, \"value\": 0.003224724071306917}, {\"source\": 426, \"target\": 5, \"value\": 0.8307569849880635}, {\"source\": 426, \"target\": 6, \"value\": 0.97613022856276}, {\"source\": 426, \"target\": 7, \"value\": 0.6442473062875326}, {\"source\": 426, \"target\": 8, \"value\": 0.8216858797063489}, {\"source\": 426, \"target\": 9, \"value\": 0.932891682432638}, {\"source\": 427, \"target\": 0, \"value\": 0.5252685144823055}, {\"source\": 427, \"target\": 1, \"value\": 0.2595066345288115}, {\"source\": 427, \"target\": 2, \"value\": 0.6743697086427345}, {\"source\": 427, \"target\": 3, \"value\": 0.496152428911834}, {\"source\": 427, \"target\": 4, \"value\": 0.37786902484540486}, {\"source\": 427, \"target\": 5, \"value\": 0.06185680333536492}, {\"source\": 427, \"target\": 6, \"value\": 0.0807383419378197}, {\"source\": 427, \"target\": 7, \"value\": 0.38283016854964647}, {\"source\": 427, \"target\": 8, \"value\": 0.027565192426478702}, {\"source\": 427, \"target\": 9, \"value\": 0.5166443507707259}, {\"source\": 428, \"target\": 0, \"value\": 0.9155573349604588}, {\"source\": 428, \"target\": 1, \"value\": 0.019979386954918965}, {\"source\": 428, \"target\": 2, \"value\": 0.6374012834313206}, {\"source\": 428, \"target\": 3, \"value\": 0.8161720706566629}, {\"source\": 428, \"target\": 4, \"value\": 0.3474454479020722}, {\"source\": 428, \"target\": 5, \"value\": 0.4110538698365215}, {\"source\": 428, \"target\": 6, \"value\": 0.08433144705351814}, {\"source\": 428, \"target\": 7, \"value\": 0.5519643009504052}, {\"source\": 428, \"target\": 8, \"value\": 0.29763464433446907}, {\"source\": 428, \"target\": 9, \"value\": 0.7363299526625274}, {\"source\": 429, \"target\": 0, \"value\": 0.02507504075263578}, {\"source\": 429, \"target\": 1, \"value\": 0.8012131084736832}, {\"source\": 429, \"target\": 2, \"value\": 0.6416216313753851}, {\"source\": 429, \"target\": 3, \"value\": 0.35534472711120824}, {\"source\": 429, \"target\": 4, \"value\": 0.8922977935616121}, {\"source\": 429, \"target\": 5, \"value\": 0.17921511469270046}, {\"source\": 429, \"target\": 6, \"value\": 0.7884551150447701}, {\"source\": 429, \"target\": 7, \"value\": 0.07819382195753277}, {\"source\": 429, \"target\": 8, \"value\": 0.018824750312966487}, {\"source\": 429, \"target\": 9, \"value\": 0.2749587688497862}, {\"source\": 430, \"target\": 0, \"value\": 0.9944255893564178}, {\"source\": 430, \"target\": 1, \"value\": 0.3516792152766752}, {\"source\": 430, \"target\": 2, \"value\": 0.48069350496906105}, {\"source\": 430, \"target\": 3, \"value\": 0.9022422246440599}, {\"source\": 430, \"target\": 4, \"value\": 0.05861115575995601}, {\"source\": 430, \"target\": 5, \"value\": 0.9495776984135543}, {\"source\": 430, \"target\": 6, \"value\": 0.3001455261734056}, {\"source\": 430, \"target\": 7, \"value\": 0.8004959581351038}, {\"source\": 430, \"target\": 8, \"value\": 0.6204915895126796}, {\"source\": 430, \"target\": 9, \"value\": 0.1559762560447172}, {\"source\": 431, \"target\": 0, \"value\": 0.8053753693120859}, {\"source\": 431, \"target\": 1, \"value\": 0.520965794591048}, {\"source\": 431, \"target\": 2, \"value\": 0.5541119125193691}, {\"source\": 431, \"target\": 3, \"value\": 0.36473526635646647}, {\"source\": 431, \"target\": 4, \"value\": 0.9568898675066357}, {\"source\": 431, \"target\": 5, \"value\": 0.6127047055883952}, {\"source\": 431, \"target\": 6, \"value\": 0.2301357215486478}, {\"source\": 431, \"target\": 7, \"value\": 0.9462151927819888}, {\"source\": 431, \"target\": 8, \"value\": 0.1913092221828706}, {\"source\": 431, \"target\": 9, \"value\": 0.18938133885316466}, {\"source\": 432, \"target\": 0, \"value\": 0.7117744139054097}, {\"source\": 432, \"target\": 1, \"value\": 0.7796618386179023}, {\"source\": 432, \"target\": 2, \"value\": 0.5029186074182913}, {\"source\": 432, \"target\": 3, \"value\": 0.7102122578821382}, {\"source\": 432, \"target\": 4, \"value\": 0.9304470368002522}, {\"source\": 432, \"target\": 5, \"value\": 0.9844755678521847}, {\"source\": 432, \"target\": 6, \"value\": 0.37129588624686427}, {\"source\": 432, \"target\": 7, \"value\": 0.7623151582292143}, {\"source\": 432, \"target\": 8, \"value\": 0.5787127287051622}, {\"source\": 432, \"target\": 9, \"value\": 0.7805223996555467}, {\"source\": 433, \"target\": 0, \"value\": 0.5710089661740461}, {\"source\": 433, \"target\": 1, \"value\": 0.004856415936503766}, {\"source\": 433, \"target\": 2, \"value\": 0.02497966855054612}, {\"source\": 433, \"target\": 3, \"value\": 0.9566910893504315}, {\"source\": 433, \"target\": 4, \"value\": 0.12720417171737863}, {\"source\": 433, \"target\": 5, \"value\": 0.24593173549071246}, {\"source\": 433, \"target\": 6, \"value\": 0.30671133080131285}, {\"source\": 433, \"target\": 7, \"value\": 0.6250251839926964}, {\"source\": 433, \"target\": 8, \"value\": 0.31243411099425267}, {\"source\": 433, \"target\": 9, \"value\": 0.9953213502083968}, {\"source\": 434, \"target\": 0, \"value\": 0.1015748080322324}, {\"source\": 434, \"target\": 1, \"value\": 0.0018906837226940754}, {\"source\": 434, \"target\": 2, \"value\": 0.4499281118493691}, {\"source\": 434, \"target\": 3, \"value\": 0.4749941659946677}, {\"source\": 434, \"target\": 4, \"value\": 0.4901573768116112}, {\"source\": 434, \"target\": 5, \"value\": 0.0345756689200869}, {\"source\": 434, \"target\": 6, \"value\": 0.23436873503950184}, {\"source\": 434, \"target\": 7, \"value\": 0.23454806425377728}, {\"source\": 434, \"target\": 8, \"value\": 0.812617591765527}, {\"source\": 434, \"target\": 9, \"value\": 0.89249328426152}, {\"source\": 435, \"target\": 0, \"value\": 0.6640325874666535}, {\"source\": 435, \"target\": 1, \"value\": 0.769301131147565}, {\"source\": 435, \"target\": 2, \"value\": 0.5691484583471125}, {\"source\": 435, \"target\": 3, \"value\": 0.06034768844231064}, {\"source\": 435, \"target\": 4, \"value\": 0.03738798333729276}, {\"source\": 435, \"target\": 5, \"value\": 0.8769059155795412}, {\"source\": 435, \"target\": 6, \"value\": 0.25723639320732195}, {\"source\": 435, \"target\": 7, \"value\": 0.8219366620287619}, {\"source\": 435, \"target\": 8, \"value\": 0.9454685347426725}, {\"source\": 435, \"target\": 9, \"value\": 0.9691453351304951}, {\"source\": 436, \"target\": 0, \"value\": 0.32747527300362267}, {\"source\": 436, \"target\": 1, \"value\": 0.3207438357119452}, {\"source\": 436, \"target\": 2, \"value\": 0.3750085593022612}, {\"source\": 436, \"target\": 3, \"value\": 0.16768034412721589}, {\"source\": 436, \"target\": 4, \"value\": 0.11487359182202539}, {\"source\": 436, \"target\": 5, \"value\": 0.6141909723282872}, {\"source\": 436, \"target\": 6, \"value\": 0.46972090767172026}, {\"source\": 436, \"target\": 7, \"value\": 0.32847524403183015}, {\"source\": 436, \"target\": 8, \"value\": 0.4692668630988672}, {\"source\": 436, \"target\": 9, \"value\": 0.3618281945922751}, {\"source\": 437, \"target\": 0, \"value\": 0.6125809880402271}, {\"source\": 437, \"target\": 1, \"value\": 0.5357465372820215}, {\"source\": 437, \"target\": 2, \"value\": 0.5167322033966755}, {\"source\": 437, \"target\": 3, \"value\": 0.9442807318258564}, {\"source\": 437, \"target\": 4, \"value\": 0.4984751112275496}, {\"source\": 437, \"target\": 5, \"value\": 0.35665827079612933}, {\"source\": 437, \"target\": 6, \"value\": 0.09594232292882976}, {\"source\": 437, \"target\": 7, \"value\": 0.37408010234911515}, {\"source\": 437, \"target\": 8, \"value\": 0.1192775071309976}, {\"source\": 437, \"target\": 9, \"value\": 0.9495057107837073}, {\"source\": 438, \"target\": 0, \"value\": 0.34997084768641495}, {\"source\": 438, \"target\": 1, \"value\": 0.703705708284037}, {\"source\": 438, \"target\": 2, \"value\": 0.5639763742776562}, {\"source\": 438, \"target\": 3, \"value\": 0.31907995035807535}, {\"source\": 438, \"target\": 4, \"value\": 0.6938419289472239}, {\"source\": 438, \"target\": 5, \"value\": 0.6297413317598017}, {\"source\": 438, \"target\": 6, \"value\": 0.5558497585166068}, {\"source\": 438, \"target\": 7, \"value\": 0.6736163725122737}, {\"source\": 438, \"target\": 8, \"value\": 0.09176055587785426}, {\"source\": 438, \"target\": 9, \"value\": 0.13770455616586674}, {\"source\": 439, \"target\": 0, \"value\": 0.2936272021078883}, {\"source\": 439, \"target\": 1, \"value\": 0.4460539332085919}, {\"source\": 439, \"target\": 2, \"value\": 0.13656944056558595}, {\"source\": 439, \"target\": 3, \"value\": 0.12287909822850485}, {\"source\": 439, \"target\": 4, \"value\": 0.6312130421778563}, {\"source\": 439, \"target\": 5, \"value\": 0.3951385997821789}, {\"source\": 439, \"target\": 6, \"value\": 0.08356149729565865}, {\"source\": 439, \"target\": 7, \"value\": 0.6504752716412221}, {\"source\": 439, \"target\": 8, \"value\": 0.10983517114590591}, {\"source\": 439, \"target\": 9, \"value\": 0.3933853839816339}, {\"source\": 440, \"target\": 0, \"value\": 0.5104772931379652}, {\"source\": 440, \"target\": 1, \"value\": 0.03967771123573771}, {\"source\": 440, \"target\": 2, \"value\": 0.2751285994523518}, {\"source\": 440, \"target\": 3, \"value\": 0.5493121812093378}, {\"source\": 440, \"target\": 4, \"value\": 0.7624001116613601}, {\"source\": 440, \"target\": 5, \"value\": 0.20117434717697724}, {\"source\": 440, \"target\": 6, \"value\": 0.8096652444857516}, {\"source\": 440, \"target\": 7, \"value\": 0.6919976210632205}, {\"source\": 440, \"target\": 8, \"value\": 0.006613690706852138}, {\"source\": 440, \"target\": 9, \"value\": 0.9602404956534323}, {\"source\": 441, \"target\": 0, \"value\": 0.7912028742028057}, {\"source\": 441, \"target\": 1, \"value\": 0.9017541072924814}, {\"source\": 441, \"target\": 2, \"value\": 0.871514300525325}, {\"source\": 441, \"target\": 3, \"value\": 0.2565235321171512}, {\"source\": 441, \"target\": 4, \"value\": 0.8492641603350861}, {\"source\": 441, \"target\": 5, \"value\": 0.5599595568909911}, {\"source\": 441, \"target\": 6, \"value\": 0.32359351835194283}, {\"source\": 441, \"target\": 7, \"value\": 0.4501713468380403}, {\"source\": 441, \"target\": 8, \"value\": 0.33358713775602755}, {\"source\": 441, \"target\": 9, \"value\": 0.003524593390617614}, {\"source\": 442, \"target\": 0, \"value\": 0.5813594629294997}, {\"source\": 442, \"target\": 1, \"value\": 0.9105394256367438}, {\"source\": 442, \"target\": 2, \"value\": 0.016236431523620976}, {\"source\": 442, \"target\": 3, \"value\": 0.22822413793336782}, {\"source\": 442, \"target\": 4, \"value\": 0.06268127089644338}, {\"source\": 442, \"target\": 5, \"value\": 0.8201013644359831}, {\"source\": 442, \"target\": 6, \"value\": 0.016990748569461478}, {\"source\": 442, \"target\": 7, \"value\": 0.2651858501544966}, {\"source\": 442, \"target\": 8, \"value\": 0.8141795515275004}, {\"source\": 442, \"target\": 9, \"value\": 0.8609805847428426}, {\"source\": 443, \"target\": 0, \"value\": 0.13609402440729568}, {\"source\": 443, \"target\": 1, \"value\": 0.4215173056372813}, {\"source\": 443, \"target\": 2, \"value\": 0.1351684088602194}, {\"source\": 443, \"target\": 3, \"value\": 0.730343101720765}, {\"source\": 443, \"target\": 4, \"value\": 0.6816853974888364}, {\"source\": 443, \"target\": 5, \"value\": 0.8826033015704872}, {\"source\": 443, \"target\": 6, \"value\": 0.5866738642156635}, {\"source\": 443, \"target\": 7, \"value\": 0.3849253672506101}, {\"source\": 443, \"target\": 8, \"value\": 0.698287573547409}, {\"source\": 443, \"target\": 9, \"value\": 0.15748517247226956}, {\"source\": 444, \"target\": 0, \"value\": 0.44636807608085194}, {\"source\": 444, \"target\": 1, \"value\": 0.5606035629392307}, {\"source\": 444, \"target\": 2, \"value\": 0.35116911200498746}, {\"source\": 444, \"target\": 3, \"value\": 0.07489275430531817}, {\"source\": 444, \"target\": 4, \"value\": 0.6496432787855547}, {\"source\": 444, \"target\": 5, \"value\": 0.7260601298880782}, {\"source\": 444, \"target\": 6, \"value\": 0.10624305224846475}, {\"source\": 444, \"target\": 7, \"value\": 0.681556958351289}, {\"source\": 444, \"target\": 8, \"value\": 0.23804684421249345}, {\"source\": 444, \"target\": 9, \"value\": 0.6339388348684178}, {\"source\": 445, \"target\": 0, \"value\": 0.43533635520703295}, {\"source\": 445, \"target\": 1, \"value\": 0.8206218628390998}, {\"source\": 445, \"target\": 2, \"value\": 0.7661042610326763}, {\"source\": 445, \"target\": 3, \"value\": 0.623286415855092}, {\"source\": 445, \"target\": 4, \"value\": 0.5188907899787495}, {\"source\": 445, \"target\": 5, \"value\": 0.6570939016285359}, {\"source\": 445, \"target\": 6, \"value\": 0.7313145822221552}, {\"source\": 445, \"target\": 7, \"value\": 0.9838498042280532}, {\"source\": 445, \"target\": 8, \"value\": 0.3441254086089489}, {\"source\": 445, \"target\": 9, \"value\": 0.8268113703915212}, {\"source\": 446, \"target\": 0, \"value\": 0.0515718880515319}, {\"source\": 446, \"target\": 1, \"value\": 0.5134550394595472}, {\"source\": 446, \"target\": 2, \"value\": 0.797539133195124}, {\"source\": 446, \"target\": 3, \"value\": 0.6378484858030682}, {\"source\": 446, \"target\": 4, \"value\": 0.7487241552570952}, {\"source\": 446, \"target\": 5, \"value\": 0.8476169686421501}, {\"source\": 446, \"target\": 6, \"value\": 0.09153970627527186}, {\"source\": 446, \"target\": 7, \"value\": 0.6924017577266445}, {\"source\": 446, \"target\": 8, \"value\": 0.2208715418901943}, {\"source\": 446, \"target\": 9, \"value\": 0.9907638636799936}, {\"source\": 447, \"target\": 0, \"value\": 0.6830495975125264}, {\"source\": 447, \"target\": 1, \"value\": 0.017192669830508933}, {\"source\": 447, \"target\": 2, \"value\": 0.407751674861891}, {\"source\": 447, \"target\": 3, \"value\": 0.26978201662148515}, {\"source\": 447, \"target\": 4, \"value\": 0.47224892653441997}, {\"source\": 447, \"target\": 5, \"value\": 0.9815084515687357}, {\"source\": 447, \"target\": 6, \"value\": 0.2648120936085857}, {\"source\": 447, \"target\": 7, \"value\": 0.6835363334758093}, {\"source\": 447, \"target\": 8, \"value\": 0.5064878136975983}, {\"source\": 447, \"target\": 9, \"value\": 0.44928160421203345}, {\"source\": 448, \"target\": 0, \"value\": 0.5170063665230019}, {\"source\": 448, \"target\": 1, \"value\": 0.1990058027038406}, {\"source\": 448, \"target\": 2, \"value\": 0.27414069332635116}, {\"source\": 448, \"target\": 3, \"value\": 0.43502431552728116}, {\"source\": 448, \"target\": 4, \"value\": 0.6013754581633067}, {\"source\": 448, \"target\": 5, \"value\": 0.7222114296485876}, {\"source\": 448, \"target\": 6, \"value\": 0.4013350830997312}, {\"source\": 448, \"target\": 7, \"value\": 0.09363847079512178}, {\"source\": 448, \"target\": 8, \"value\": 0.18067094947702}, {\"source\": 448, \"target\": 9, \"value\": 0.09892322469912174}, {\"source\": 449, \"target\": 0, \"value\": 0.5646001175166273}, {\"source\": 449, \"target\": 1, \"value\": 0.6874893138039815}, {\"source\": 449, \"target\": 2, \"value\": 0.6144071596775139}, {\"source\": 449, \"target\": 3, \"value\": 0.8921956516199789}, {\"source\": 449, \"target\": 4, \"value\": 0.5799293002364627}, {\"source\": 449, \"target\": 5, \"value\": 0.5309213293131381}, {\"source\": 449, \"target\": 6, \"value\": 0.4705136251745662}, {\"source\": 449, \"target\": 7, \"value\": 0.4276138700778668}, {\"source\": 449, \"target\": 8, \"value\": 0.7167533168952069}, {\"source\": 449, \"target\": 9, \"value\": 0.26006397671974835}, {\"source\": 450, \"target\": 0, \"value\": 0.4651356410291233}, {\"source\": 450, \"target\": 1, \"value\": 0.8144826297772444}, {\"source\": 450, \"target\": 2, \"value\": 0.23068721707822248}, {\"source\": 450, \"target\": 3, \"value\": 0.24509647603476414}, {\"source\": 450, \"target\": 4, \"value\": 0.11712168194223904}, {\"source\": 450, \"target\": 5, \"value\": 0.3479265328720995}, {\"source\": 450, \"target\": 6, \"value\": 0.6809042486867187}, {\"source\": 450, \"target\": 7, \"value\": 0.09278676288671661}, {\"source\": 450, \"target\": 8, \"value\": 0.7957089383246094}, {\"source\": 450, \"target\": 9, \"value\": 0.9560073665426374}, {\"source\": 451, \"target\": 0, \"value\": 0.7922797422625669}, {\"source\": 451, \"target\": 1, \"value\": 0.34425977023402277}, {\"source\": 451, \"target\": 2, \"value\": 0.7848277973051715}, {\"source\": 451, \"target\": 3, \"value\": 0.2501863905088719}, {\"source\": 451, \"target\": 4, \"value\": 0.5922466820893508}, {\"source\": 451, \"target\": 5, \"value\": 0.6336608807839985}, {\"source\": 451, \"target\": 6, \"value\": 0.46204575978012963}, {\"source\": 451, \"target\": 7, \"value\": 0.46090490227730907}, {\"source\": 451, \"target\": 8, \"value\": 0.15221525060652985}, {\"source\": 451, \"target\": 9, \"value\": 0.3861917433830988}, {\"source\": 452, \"target\": 0, \"value\": 0.8820012045067323}, {\"source\": 452, \"target\": 1, \"value\": 0.8542502672464372}, {\"source\": 452, \"target\": 2, \"value\": 0.9493157163501341}, {\"source\": 452, \"target\": 3, \"value\": 0.1534600633146549}, {\"source\": 452, \"target\": 4, \"value\": 0.043448709910246186}, {\"source\": 452, \"target\": 5, \"value\": 0.41864492828916355}, {\"source\": 452, \"target\": 6, \"value\": 0.2710237532884693}, {\"source\": 452, \"target\": 7, \"value\": 0.8165878134238872}, {\"source\": 452, \"target\": 8, \"value\": 0.9799227892948208}, {\"source\": 452, \"target\": 9, \"value\": 0.9608867901053741}, {\"source\": 453, \"target\": 0, \"value\": 0.5736238465625104}, {\"source\": 453, \"target\": 1, \"value\": 0.7981267316746852}, {\"source\": 453, \"target\": 2, \"value\": 0.513964428291312}, {\"source\": 453, \"target\": 3, \"value\": 0.17793184665329265}, {\"source\": 453, \"target\": 4, \"value\": 0.32314913108891985}, {\"source\": 453, \"target\": 5, \"value\": 0.6724801554992781}, {\"source\": 453, \"target\": 6, \"value\": 0.6684688858803213}, {\"source\": 453, \"target\": 7, \"value\": 0.664989249276531}, {\"source\": 453, \"target\": 8, \"value\": 0.7275284798725469}, {\"source\": 453, \"target\": 9, \"value\": 0.8046407817317797}, {\"source\": 454, \"target\": 0, \"value\": 0.48199824425601057}, {\"source\": 454, \"target\": 1, \"value\": 0.4478952439492898}, {\"source\": 454, \"target\": 2, \"value\": 0.6647297712525874}, {\"source\": 454, \"target\": 3, \"value\": 0.60475773170084}, {\"source\": 454, \"target\": 4, \"value\": 0.6244027670483191}, {\"source\": 454, \"target\": 5, \"value\": 0.8863401829053482}, {\"source\": 454, \"target\": 6, \"value\": 0.7308304308044903}, {\"source\": 454, \"target\": 7, \"value\": 0.8436066733112644}, {\"source\": 454, \"target\": 8, \"value\": 0.9869620552426701}, {\"source\": 454, \"target\": 9, \"value\": 0.45168788035592966}, {\"source\": 455, \"target\": 0, \"value\": 0.8023986291659936}, {\"source\": 455, \"target\": 1, \"value\": 0.9857090752797414}, {\"source\": 455, \"target\": 2, \"value\": 0.9462651690440098}, {\"source\": 455, \"target\": 3, \"value\": 0.34128731820955494}, {\"source\": 455, \"target\": 4, \"value\": 0.7820432261098095}, {\"source\": 455, \"target\": 5, \"value\": 0.21308992481749978}, {\"source\": 455, \"target\": 6, \"value\": 0.34972160982225287}, {\"source\": 455, \"target\": 7, \"value\": 0.9188369627325602}, {\"source\": 455, \"target\": 8, \"value\": 0.3553721876279059}, {\"source\": 455, \"target\": 9, \"value\": 0.8872715387847202}, {\"source\": 456, \"target\": 0, \"value\": 0.5086783830212045}, {\"source\": 456, \"target\": 1, \"value\": 0.31226737108186065}, {\"source\": 456, \"target\": 2, \"value\": 0.31240644368563997}, {\"source\": 456, \"target\": 3, \"value\": 0.16026719313147386}, {\"source\": 456, \"target\": 4, \"value\": 0.5609502161033747}, {\"source\": 456, \"target\": 5, \"value\": 0.039193187256461925}, {\"source\": 456, \"target\": 6, \"value\": 0.289703713451813}, {\"source\": 456, \"target\": 7, \"value\": 0.8882027210410095}, {\"source\": 456, \"target\": 8, \"value\": 0.07685503475200284}, {\"source\": 456, \"target\": 9, \"value\": 0.022620413390599836}, {\"source\": 457, \"target\": 0, \"value\": 0.11170950021798653}, {\"source\": 457, \"target\": 1, \"value\": 0.9967049316140486}, {\"source\": 457, \"target\": 2, \"value\": 0.47056876418191085}, {\"source\": 457, \"target\": 3, \"value\": 0.9902850419677164}, {\"source\": 457, \"target\": 4, \"value\": 0.7361837383174811}, {\"source\": 457, \"target\": 5, \"value\": 0.8695102711037196}, {\"source\": 457, \"target\": 6, \"value\": 0.3001103909148266}, {\"source\": 457, \"target\": 7, \"value\": 0.43864571627647275}, {\"source\": 457, \"target\": 8, \"value\": 0.6392729071628418}, {\"source\": 457, \"target\": 9, \"value\": 0.13510875698485347}, {\"source\": 458, \"target\": 0, \"value\": 0.08964837046891139}, {\"source\": 458, \"target\": 1, \"value\": 0.6942744990488146}, {\"source\": 458, \"target\": 2, \"value\": 0.11633477366663103}, {\"source\": 458, \"target\": 3, \"value\": 0.3436702415005206}, {\"source\": 458, \"target\": 4, \"value\": 0.42969199910920963}, {\"source\": 458, \"target\": 5, \"value\": 0.9963915637313879}, {\"source\": 458, \"target\": 6, \"value\": 0.9946316287321006}, {\"source\": 458, \"target\": 7, \"value\": 0.4849103788153182}, {\"source\": 458, \"target\": 8, \"value\": 0.7485759379609649}, {\"source\": 458, \"target\": 9, \"value\": 0.3108878258865586}, {\"source\": 459, \"target\": 0, \"value\": 0.8328489976132092}, {\"source\": 459, \"target\": 1, \"value\": 0.5767207796163231}, {\"source\": 459, \"target\": 2, \"value\": 0.04820320377657139}, {\"source\": 459, \"target\": 3, \"value\": 0.46310037255210523}, {\"source\": 459, \"target\": 4, \"value\": 0.16109129089418706}, {\"source\": 459, \"target\": 5, \"value\": 0.7413167666553273}, {\"source\": 459, \"target\": 6, \"value\": 0.06338033864463322}, {\"source\": 459, \"target\": 7, \"value\": 0.39909387436413635}, {\"source\": 459, \"target\": 8, \"value\": 0.3906089050918061}, {\"source\": 459, \"target\": 9, \"value\": 0.24731326735181292}, {\"source\": 460, \"target\": 0, \"value\": 0.046593752175254854}, {\"source\": 460, \"target\": 1, \"value\": 0.24242060291205858}, {\"source\": 460, \"target\": 2, \"value\": 0.261772651963589}, {\"source\": 460, \"target\": 3, \"value\": 0.9210519662329456}, {\"source\": 460, \"target\": 4, \"value\": 0.30339252544534445}, {\"source\": 460, \"target\": 5, \"value\": 0.3140533026225598}, {\"source\": 460, \"target\": 6, \"value\": 0.048031493058950825}, {\"source\": 460, \"target\": 7, \"value\": 0.32883516269448576}, {\"source\": 460, \"target\": 8, \"value\": 0.4665352684500724}, {\"source\": 460, \"target\": 9, \"value\": 0.05322488120247948}, {\"source\": 461, \"target\": 0, \"value\": 0.7735854012130973}, {\"source\": 461, \"target\": 1, \"value\": 1.720079628964033e-05}, {\"source\": 461, \"target\": 2, \"value\": 0.3313189263812566}, {\"source\": 461, \"target\": 3, \"value\": 0.04980676628399816}, {\"source\": 461, \"target\": 4, \"value\": 0.06117160200664162}, {\"source\": 461, \"target\": 5, \"value\": 0.745585682217386}, {\"source\": 461, \"target\": 6, \"value\": 0.12854872506187542}, {\"source\": 461, \"target\": 7, \"value\": 0.7901109785546051}, {\"source\": 461, \"target\": 8, \"value\": 0.4136491483474385}, {\"source\": 461, \"target\": 9, \"value\": 0.8591001245848786}, {\"source\": 462, \"target\": 0, \"value\": 0.3026458492616819}, {\"source\": 462, \"target\": 1, \"value\": 0.04902749133618789}, {\"source\": 462, \"target\": 2, \"value\": 0.15372690334093841}, {\"source\": 462, \"target\": 3, \"value\": 0.23332106479893788}, {\"source\": 462, \"target\": 4, \"value\": 0.682091807331664}, {\"source\": 462, \"target\": 5, \"value\": 0.2058508321434861}, {\"source\": 462, \"target\": 6, \"value\": 0.8822339987292729}, {\"source\": 462, \"target\": 7, \"value\": 0.4664982812741435}, {\"source\": 462, \"target\": 8, \"value\": 0.8998001078262853}, {\"source\": 462, \"target\": 9, \"value\": 0.8939032476431882}, {\"source\": 463, \"target\": 0, \"value\": 0.05860350024611771}, {\"source\": 463, \"target\": 1, \"value\": 0.48779881960069826}, {\"source\": 463, \"target\": 2, \"value\": 0.9252779953481715}, {\"source\": 463, \"target\": 3, \"value\": 0.37275221215607557}, {\"source\": 463, \"target\": 4, \"value\": 0.05806212602617966}, {\"source\": 463, \"target\": 5, \"value\": 0.36100497128735387}, {\"source\": 463, \"target\": 6, \"value\": 0.6468294455249275}, {\"source\": 463, \"target\": 7, \"value\": 0.5590621716013247}, {\"source\": 463, \"target\": 8, \"value\": 0.386999291480273}, {\"source\": 463, \"target\": 9, \"value\": 0.6414708116752723}, {\"source\": 464, \"target\": 0, \"value\": 0.8805913487416911}, {\"source\": 464, \"target\": 1, \"value\": 0.8286958618388178}, {\"source\": 464, \"target\": 2, \"value\": 0.3879485952769428}, {\"source\": 464, \"target\": 3, \"value\": 0.47119703964194914}, {\"source\": 464, \"target\": 4, \"value\": 0.32976292359011605}, {\"source\": 464, \"target\": 5, \"value\": 0.6361486909428841}, {\"source\": 464, \"target\": 6, \"value\": 0.5966102346033438}, {\"source\": 464, \"target\": 7, \"value\": 0.8886766075215832}, {\"source\": 464, \"target\": 8, \"value\": 0.15905444820149284}, {\"source\": 464, \"target\": 9, \"value\": 0.3284454848397068}, {\"source\": 465, \"target\": 0, \"value\": 0.2961990624503258}, {\"source\": 465, \"target\": 1, \"value\": 0.9956318084723376}, {\"source\": 465, \"target\": 2, \"value\": 0.008747309147212112}, {\"source\": 465, \"target\": 3, \"value\": 0.5926599325262673}, {\"source\": 465, \"target\": 4, \"value\": 0.5214205851540731}, {\"source\": 465, \"target\": 5, \"value\": 0.46825275238182185}, {\"source\": 465, \"target\": 6, \"value\": 0.2438072932957256}, {\"source\": 465, \"target\": 7, \"value\": 0.9338393968076598}, {\"source\": 465, \"target\": 8, \"value\": 0.37115190713776325}, {\"source\": 465, \"target\": 9, \"value\": 0.882651742943542}, {\"source\": 466, \"target\": 0, \"value\": 0.0004886924274608573}, {\"source\": 466, \"target\": 1, \"value\": 0.07717345075191362}, {\"source\": 466, \"target\": 2, \"value\": 0.6236390141687617}, {\"source\": 466, \"target\": 3, \"value\": 0.06993127910970487}, {\"source\": 466, \"target\": 4, \"value\": 0.4817818566773051}, {\"source\": 466, \"target\": 5, \"value\": 0.1938800840329582}, {\"source\": 466, \"target\": 6, \"value\": 0.21837558709981642}, {\"source\": 466, \"target\": 7, \"value\": 0.5420821043210109}, {\"source\": 466, \"target\": 8, \"value\": 0.7391811019753175}, {\"source\": 466, \"target\": 9, \"value\": 0.7839732892331056}, {\"source\": 467, \"target\": 0, \"value\": 0.5713734750720398}, {\"source\": 467, \"target\": 1, \"value\": 0.5383641754360348}, {\"source\": 467, \"target\": 2, \"value\": 0.9602073141566235}, {\"source\": 467, \"target\": 3, \"value\": 0.5073292218147}, {\"source\": 467, \"target\": 4, \"value\": 0.6167363241251183}, {\"source\": 467, \"target\": 5, \"value\": 0.298162419621783}, {\"source\": 467, \"target\": 6, \"value\": 0.5059790231905684}, {\"source\": 467, \"target\": 7, \"value\": 0.5347904814621048}, {\"source\": 467, \"target\": 8, \"value\": 0.8447565184309861}, {\"source\": 467, \"target\": 9, \"value\": 0.07394846478217565}, {\"source\": 468, \"target\": 0, \"value\": 0.1289445719634048}, {\"source\": 468, \"target\": 1, \"value\": 0.49972517351548484}, {\"source\": 468, \"target\": 2, \"value\": 0.2719089269789119}, {\"source\": 468, \"target\": 3, \"value\": 0.6183316455270188}, {\"source\": 468, \"target\": 4, \"value\": 0.6123103620945316}, {\"source\": 468, \"target\": 5, \"value\": 0.8202867718465067}, {\"source\": 468, \"target\": 6, \"value\": 0.5433966341891365}, {\"source\": 468, \"target\": 7, \"value\": 0.24139600725183807}, {\"source\": 468, \"target\": 8, \"value\": 0.43458819399582693}, {\"source\": 468, \"target\": 9, \"value\": 0.3729401584853125}, {\"source\": 469, \"target\": 0, \"value\": 0.9851224905538141}, {\"source\": 469, \"target\": 1, \"value\": 0.7479539822206186}, {\"source\": 469, \"target\": 2, \"value\": 0.4124815110153829}, {\"source\": 469, \"target\": 3, \"value\": 0.47257874332515415}, {\"source\": 469, \"target\": 4, \"value\": 0.32004086133267995}, {\"source\": 469, \"target\": 5, \"value\": 0.36343019827593226}, {\"source\": 469, \"target\": 6, \"value\": 0.9226014967443072}, {\"source\": 469, \"target\": 7, \"value\": 0.9341968828389035}, {\"source\": 469, \"target\": 8, \"value\": 0.5748977548136631}, {\"source\": 469, \"target\": 9, \"value\": 0.555036144606739}, {\"source\": 470, \"target\": 0, \"value\": 0.6434103416200734}, {\"source\": 470, \"target\": 1, \"value\": 0.3159601440844191}, {\"source\": 470, \"target\": 2, \"value\": 0.25593760773604113}, {\"source\": 470, \"target\": 3, \"value\": 0.9329389999017859}, {\"source\": 470, \"target\": 4, \"value\": 0.1578765294507758}, {\"source\": 470, \"target\": 5, \"value\": 0.4224074957599222}, {\"source\": 470, \"target\": 6, \"value\": 0.6780316273670275}, {\"source\": 470, \"target\": 7, \"value\": 0.9508515346553025}, {\"source\": 470, \"target\": 8, \"value\": 0.6794444365519283}, {\"source\": 470, \"target\": 9, \"value\": 0.19126206440363813}, {\"source\": 471, \"target\": 0, \"value\": 0.9106907517197451}, {\"source\": 471, \"target\": 1, \"value\": 0.2808085750669125}, {\"source\": 471, \"target\": 2, \"value\": 0.5242343001156469}, {\"source\": 471, \"target\": 3, \"value\": 0.5566739075580038}, {\"source\": 471, \"target\": 4, \"value\": 0.6359029468572325}, {\"source\": 471, \"target\": 5, \"value\": 0.011959397585476594}, {\"source\": 471, \"target\": 6, \"value\": 0.8114191855459318}, {\"source\": 471, \"target\": 7, \"value\": 0.06291998040289326}, {\"source\": 471, \"target\": 8, \"value\": 0.3611931154648851}, {\"source\": 471, \"target\": 9, \"value\": 0.9662645193925595}, {\"source\": 472, \"target\": 0, \"value\": 0.6443589109210255}, {\"source\": 472, \"target\": 1, \"value\": 0.8168258878867455}, {\"source\": 472, \"target\": 2, \"value\": 0.7659104919925245}, {\"source\": 472, \"target\": 3, \"value\": 0.5332198745661074}, {\"source\": 472, \"target\": 4, \"value\": 0.22583743390920485}, {\"source\": 472, \"target\": 5, \"value\": 0.6500369253750198}, {\"source\": 472, \"target\": 6, \"value\": 0.6038401788098747}, {\"source\": 472, \"target\": 7, \"value\": 0.5933146265223629}, {\"source\": 472, \"target\": 8, \"value\": 0.009138636198466443}, {\"source\": 472, \"target\": 9, \"value\": 0.377956263909058}, {\"source\": 473, \"target\": 0, \"value\": 0.5407304215240435}, {\"source\": 473, \"target\": 1, \"value\": 0.8477667601904502}, {\"source\": 473, \"target\": 2, \"value\": 0.4049150089202401}, {\"source\": 473, \"target\": 3, \"value\": 0.7754546398113391}, {\"source\": 473, \"target\": 4, \"value\": 0.17740543366382178}, {\"source\": 473, \"target\": 5, \"value\": 0.8065730792416056}, {\"source\": 473, \"target\": 6, \"value\": 0.5834879988804471}, {\"source\": 473, \"target\": 7, \"value\": 0.9770380633793472}, {\"source\": 473, \"target\": 8, \"value\": 0.23835026367760515}, {\"source\": 473, \"target\": 9, \"value\": 0.30577178163334007}, {\"source\": 474, \"target\": 0, \"value\": 0.4407016464852117}, {\"source\": 474, \"target\": 1, \"value\": 0.2880791754545079}, {\"source\": 474, \"target\": 2, \"value\": 0.5174147598757649}, {\"source\": 474, \"target\": 3, \"value\": 0.5386837264672701}, {\"source\": 474, \"target\": 4, \"value\": 0.0566421037631476}, {\"source\": 474, \"target\": 5, \"value\": 0.8301651757944467}, {\"source\": 474, \"target\": 6, \"value\": 0.9965486185120302}, {\"source\": 474, \"target\": 7, \"value\": 0.13583936040137168}, {\"source\": 474, \"target\": 8, \"value\": 0.9164637467427801}, {\"source\": 474, \"target\": 9, \"value\": 0.22009329669405286}, {\"source\": 475, \"target\": 0, \"value\": 0.35223441718369686}, {\"source\": 475, \"target\": 1, \"value\": 0.257793675181073}, {\"source\": 475, \"target\": 2, \"value\": 0.9531199933472155}, {\"source\": 475, \"target\": 3, \"value\": 0.9684473454418256}, {\"source\": 475, \"target\": 4, \"value\": 0.6018574663213551}, {\"source\": 475, \"target\": 5, \"value\": 0.9808876005108796}, {\"source\": 475, \"target\": 6, \"value\": 0.7133590318458898}, {\"source\": 475, \"target\": 7, \"value\": 0.5822508605647269}, {\"source\": 475, \"target\": 8, \"value\": 0.5765899816880865}, {\"source\": 475, \"target\": 9, \"value\": 0.39040404254458605}, {\"source\": 476, \"target\": 0, \"value\": 0.146114400037887}, {\"source\": 476, \"target\": 1, \"value\": 0.19406517952093016}, {\"source\": 476, \"target\": 2, \"value\": 0.11242949999414564}, {\"source\": 476, \"target\": 3, \"value\": 0.9619406632690995}, {\"source\": 476, \"target\": 4, \"value\": 0.541229247377691}, {\"source\": 476, \"target\": 5, \"value\": 0.8559998322724599}, {\"source\": 476, \"target\": 6, \"value\": 0.5740736754884095}, {\"source\": 476, \"target\": 7, \"value\": 0.36176517588211377}, {\"source\": 476, \"target\": 8, \"value\": 0.46734209457102716}, {\"source\": 476, \"target\": 9, \"value\": 0.4230190282940597}, {\"source\": 477, \"target\": 0, \"value\": 0.7544108622278297}, {\"source\": 477, \"target\": 1, \"value\": 0.7149317707524366}, {\"source\": 477, \"target\": 2, \"value\": 0.9679872800006379}, {\"source\": 477, \"target\": 3, \"value\": 0.01572083695208859}, {\"source\": 477, \"target\": 4, \"value\": 0.39751327028237826}, {\"source\": 477, \"target\": 5, \"value\": 0.8301435519010392}, {\"source\": 477, \"target\": 6, \"value\": 0.8966462771909057}, {\"source\": 477, \"target\": 7, \"value\": 0.9401139261119227}, {\"source\": 477, \"target\": 8, \"value\": 0.6562817006838447}, {\"source\": 477, \"target\": 9, \"value\": 0.07953820820871171}, {\"source\": 478, \"target\": 0, \"value\": 0.5819462428967744}, {\"source\": 478, \"target\": 1, \"value\": 0.7557038069662283}, {\"source\": 478, \"target\": 2, \"value\": 0.5614388300929142}, {\"source\": 478, \"target\": 3, \"value\": 0.9834421227225204}, {\"source\": 478, \"target\": 4, \"value\": 0.988816965235859}, {\"source\": 478, \"target\": 5, \"value\": 0.013656916560138455}, {\"source\": 478, \"target\": 6, \"value\": 0.6003431259491467}, {\"source\": 478, \"target\": 7, \"value\": 0.3746505476856734}, {\"source\": 478, \"target\": 8, \"value\": 0.4830064655464228}, {\"source\": 478, \"target\": 9, \"value\": 0.0854020707274864}, {\"source\": 479, \"target\": 0, \"value\": 0.025622600802855056}, {\"source\": 479, \"target\": 1, \"value\": 0.7402718108078884}, {\"source\": 479, \"target\": 2, \"value\": 0.5888435888672486}, {\"source\": 479, \"target\": 3, \"value\": 0.3329653627327408}, {\"source\": 479, \"target\": 4, \"value\": 0.5763170172714841}, {\"source\": 479, \"target\": 5, \"value\": 0.1216127363046845}, {\"source\": 479, \"target\": 6, \"value\": 0.3077562811469088}, {\"source\": 479, \"target\": 7, \"value\": 0.568404377688435}, {\"source\": 479, \"target\": 8, \"value\": 0.5876997087178192}, {\"source\": 479, \"target\": 9, \"value\": 0.7249556960861108}, {\"source\": 480, \"target\": 0, \"value\": 0.20303319851933488}, {\"source\": 480, \"target\": 1, \"value\": 0.22848007160451156}, {\"source\": 480, \"target\": 2, \"value\": 0.5818070478141101}, {\"source\": 480, \"target\": 3, \"value\": 0.6542041926448069}, {\"source\": 480, \"target\": 4, \"value\": 0.9324429672527287}, {\"source\": 480, \"target\": 5, \"value\": 0.3813820253250546}, {\"source\": 480, \"target\": 6, \"value\": 0.683748329124691}, {\"source\": 480, \"target\": 7, \"value\": 0.5857653064776114}, {\"source\": 480, \"target\": 8, \"value\": 0.2522735510320361}, {\"source\": 480, \"target\": 9, \"value\": 0.31452657639455817}, {\"source\": 481, \"target\": 0, \"value\": 0.9286848357243354}, {\"source\": 481, \"target\": 1, \"value\": 0.12002792967825837}, {\"source\": 481, \"target\": 2, \"value\": 0.8087155235038498}, {\"source\": 481, \"target\": 3, \"value\": 0.8756328851183076}, {\"source\": 481, \"target\": 4, \"value\": 0.7795259292847623}, {\"source\": 481, \"target\": 5, \"value\": 0.2727051933831067}, {\"source\": 481, \"target\": 6, \"value\": 0.047276640873516684}, {\"source\": 481, \"target\": 7, \"value\": 0.26119008344399264}, {\"source\": 481, \"target\": 8, \"value\": 0.11767230995468458}, {\"source\": 481, \"target\": 9, \"value\": 0.7587299686251403}, {\"source\": 482, \"target\": 0, \"value\": 0.029439177563962415}, {\"source\": 482, \"target\": 1, \"value\": 0.596108174934397}, {\"source\": 482, \"target\": 2, \"value\": 0.7015859806712161}, {\"source\": 482, \"target\": 3, \"value\": 0.4287540603331247}, {\"source\": 482, \"target\": 4, \"value\": 0.04577623642884676}, {\"source\": 482, \"target\": 5, \"value\": 0.45878334940767185}, {\"source\": 482, \"target\": 6, \"value\": 0.041654006966895585}, {\"source\": 482, \"target\": 7, \"value\": 0.8489642627031437}, {\"source\": 482, \"target\": 8, \"value\": 0.8894876592549044}, {\"source\": 482, \"target\": 9, \"value\": 0.52030539907847}, {\"source\": 483, \"target\": 0, \"value\": 0.4026942108396103}, {\"source\": 483, \"target\": 1, \"value\": 0.688039656954462}, {\"source\": 483, \"target\": 2, \"value\": 0.34237211648435906}, {\"source\": 483, \"target\": 3, \"value\": 0.6371133790941388}, {\"source\": 483, \"target\": 4, \"value\": 0.13608272211065564}, {\"source\": 483, \"target\": 5, \"value\": 0.0526229828728666}, {\"source\": 483, \"target\": 6, \"value\": 0.43716609853423793}, {\"source\": 483, \"target\": 7, \"value\": 0.10979807788762619}, {\"source\": 483, \"target\": 8, \"value\": 0.1859374151563189}, {\"source\": 483, \"target\": 9, \"value\": 0.9635322080363944}, {\"source\": 484, \"target\": 0, \"value\": 0.4194124450268869}, {\"source\": 484, \"target\": 1, \"value\": 0.05408596692107004}, {\"source\": 484, \"target\": 2, \"value\": 0.5476762154286366}, {\"source\": 484, \"target\": 3, \"value\": 0.16844951296946853}, {\"source\": 484, \"target\": 4, \"value\": 0.05507189107200827}, {\"source\": 484, \"target\": 5, \"value\": 0.6061889389385975}, {\"source\": 484, \"target\": 6, \"value\": 0.0005255558956696049}, {\"source\": 484, \"target\": 7, \"value\": 0.456279301275592}, {\"source\": 484, \"target\": 8, \"value\": 0.4680894985766837}, {\"source\": 484, \"target\": 9, \"value\": 0.060644958597188325}, {\"source\": 485, \"target\": 0, \"value\": 0.8821775778719767}, {\"source\": 485, \"target\": 1, \"value\": 0.4506551430432977}, {\"source\": 485, \"target\": 2, \"value\": 0.3470526177976545}, {\"source\": 485, \"target\": 3, \"value\": 0.8828718338956142}, {\"source\": 485, \"target\": 4, \"value\": 0.9437861053876953}, {\"source\": 485, \"target\": 5, \"value\": 0.11019515794787149}, {\"source\": 485, \"target\": 6, \"value\": 0.1126854538106673}, {\"source\": 485, \"target\": 7, \"value\": 0.38757306929568347}, {\"source\": 485, \"target\": 8, \"value\": 0.5236403758229934}, {\"source\": 485, \"target\": 9, \"value\": 0.49686827611047346}, {\"source\": 486, \"target\": 0, \"value\": 0.5611101876951452}, {\"source\": 486, \"target\": 1, \"value\": 0.477931193944226}, {\"source\": 486, \"target\": 2, \"value\": 0.3137283202140865}, {\"source\": 486, \"target\": 3, \"value\": 0.8253816814907955}, {\"source\": 486, \"target\": 4, \"value\": 0.8701400113664454}, {\"source\": 486, \"target\": 5, \"value\": 0.9509952012528295}, {\"source\": 486, \"target\": 6, \"value\": 0.1253957699337266}, {\"source\": 486, \"target\": 7, \"value\": 0.3873774711893274}, {\"source\": 486, \"target\": 8, \"value\": 0.1003257930064837}, {\"source\": 486, \"target\": 9, \"value\": 0.09698013825332275}, {\"source\": 487, \"target\": 0, \"value\": 0.022567225328819496}, {\"source\": 487, \"target\": 1, \"value\": 0.09655195187448762}, {\"source\": 487, \"target\": 2, \"value\": 0.47956029221108587}, {\"source\": 487, \"target\": 3, \"value\": 0.5938580331426626}, {\"source\": 487, \"target\": 4, \"value\": 0.5346428597518127}, {\"source\": 487, \"target\": 5, \"value\": 0.043276257224001524}, {\"source\": 487, \"target\": 6, \"value\": 0.3776370625617005}, {\"source\": 487, \"target\": 7, \"value\": 0.4816722254571868}, {\"source\": 487, \"target\": 8, \"value\": 0.22285913587318684}, {\"source\": 487, \"target\": 9, \"value\": 0.42437682387737474}, {\"source\": 488, \"target\": 0, \"value\": 0.23859006570519115}, {\"source\": 488, \"target\": 1, \"value\": 0.23201980399044286}, {\"source\": 488, \"target\": 2, \"value\": 0.17261188549673023}, {\"source\": 488, \"target\": 3, \"value\": 0.35238459055689453}, {\"source\": 488, \"target\": 4, \"value\": 0.42041971886683716}, {\"source\": 488, \"target\": 5, \"value\": 0.855451597625636}, {\"source\": 488, \"target\": 6, \"value\": 0.7413204822186833}, {\"source\": 488, \"target\": 7, \"value\": 0.7740857482648662}, {\"source\": 488, \"target\": 8, \"value\": 0.7184082603136298}, {\"source\": 488, \"target\": 9, \"value\": 0.06559436619446213}, {\"source\": 489, \"target\": 0, \"value\": 0.8116716541392975}, {\"source\": 489, \"target\": 1, \"value\": 0.028439565089112384}, {\"source\": 489, \"target\": 2, \"value\": 0.9676203395564424}, {\"source\": 489, \"target\": 3, \"value\": 0.37384542314171854}, {\"source\": 489, \"target\": 4, \"value\": 0.8270790869547139}, {\"source\": 489, \"target\": 5, \"value\": 0.8435275700625602}, {\"source\": 489, \"target\": 6, \"value\": 0.6454167253864743}, {\"source\": 489, \"target\": 7, \"value\": 0.4854382200497753}, {\"source\": 489, \"target\": 8, \"value\": 0.41986299575932917}, {\"source\": 489, \"target\": 9, \"value\": 0.6542047393795531}, {\"source\": 490, \"target\": 0, \"value\": 0.9303633899561088}, {\"source\": 490, \"target\": 1, \"value\": 0.3812282010029968}, {\"source\": 490, \"target\": 2, \"value\": 0.5244407955988836}, {\"source\": 490, \"target\": 3, \"value\": 0.39541725249060655}, {\"source\": 490, \"target\": 4, \"value\": 0.6458944967496207}, {\"source\": 490, \"target\": 5, \"value\": 0.2260466774208123}, {\"source\": 490, \"target\": 6, \"value\": 0.7395837636388003}, {\"source\": 490, \"target\": 7, \"value\": 0.48906722591619156}, {\"source\": 490, \"target\": 8, \"value\": 0.06697227916516835}, {\"source\": 490, \"target\": 9, \"value\": 0.7567378685938397}, {\"source\": 491, \"target\": 0, \"value\": 0.8304405808423131}, {\"source\": 491, \"target\": 1, \"value\": 0.5046533591338485}, {\"source\": 491, \"target\": 2, \"value\": 0.03160327193817891}, {\"source\": 491, \"target\": 3, \"value\": 0.06849239561072018}, {\"source\": 491, \"target\": 4, \"value\": 0.6980105112380578}, {\"source\": 491, \"target\": 5, \"value\": 0.19784533669907778}, {\"source\": 491, \"target\": 6, \"value\": 0.11856272849265515}, {\"source\": 491, \"target\": 7, \"value\": 0.1311944211413424}, {\"source\": 491, \"target\": 8, \"value\": 0.5567999390164814}, {\"source\": 491, \"target\": 9, \"value\": 0.40494427606156}, {\"source\": 492, \"target\": 0, \"value\": 0.18443030773588054}, {\"source\": 492, \"target\": 1, \"value\": 0.11215595151907298}, {\"source\": 492, \"target\": 2, \"value\": 0.25619025482314994}, {\"source\": 492, \"target\": 3, \"value\": 0.5075284933212627}, {\"source\": 492, \"target\": 4, \"value\": 0.6298199685886965}, {\"source\": 492, \"target\": 5, \"value\": 0.9023417174836763}, {\"source\": 492, \"target\": 6, \"value\": 0.13707202186257228}, {\"source\": 492, \"target\": 7, \"value\": 0.730064812689322}, {\"source\": 492, \"target\": 8, \"value\": 0.4515022565397566}, {\"source\": 492, \"target\": 9, \"value\": 0.7768572411232086}, {\"source\": 493, \"target\": 0, \"value\": 0.9502083436803261}, {\"source\": 493, \"target\": 1, \"value\": 0.6579366853793198}, {\"source\": 493, \"target\": 2, \"value\": 0.43297115170902833}, {\"source\": 493, \"target\": 3, \"value\": 0.6833788667761647}, {\"source\": 493, \"target\": 4, \"value\": 0.33079730362638726}, {\"source\": 493, \"target\": 5, \"value\": 0.188098223296031}, {\"source\": 493, \"target\": 6, \"value\": 0.972838462120685}, {\"source\": 493, \"target\": 7, \"value\": 0.587081494788093}, {\"source\": 493, \"target\": 8, \"value\": 0.6270978242075201}, {\"source\": 493, \"target\": 9, \"value\": 0.7900037269806754}, {\"source\": 494, \"target\": 0, \"value\": 0.07911038591226038}, {\"source\": 494, \"target\": 1, \"value\": 0.021957923588029615}, {\"source\": 494, \"target\": 2, \"value\": 0.258591375680585}, {\"source\": 494, \"target\": 3, \"value\": 0.9047825004996636}, {\"source\": 494, \"target\": 4, \"value\": 0.4200924816769118}, {\"source\": 494, \"target\": 5, \"value\": 0.6810013194348898}, {\"source\": 494, \"target\": 6, \"value\": 0.5403596694752524}, {\"source\": 494, \"target\": 7, \"value\": 0.7597749736142}, {\"source\": 494, \"target\": 8, \"value\": 0.3957186429288072}, {\"source\": 494, \"target\": 9, \"value\": 0.6215996888471178}, {\"source\": 495, \"target\": 0, \"value\": 0.830472906719183}, {\"source\": 495, \"target\": 1, \"value\": 0.23902613464860567}, {\"source\": 495, \"target\": 2, \"value\": 0.5985989197940188}, {\"source\": 495, \"target\": 3, \"value\": 0.06950815397846088}, {\"source\": 495, \"target\": 4, \"value\": 0.7539550218346326}, {\"source\": 495, \"target\": 5, \"value\": 0.7221882363496455}, {\"source\": 495, \"target\": 6, \"value\": 0.3167277927372256}, {\"source\": 495, \"target\": 7, \"value\": 0.050677379308961656}, {\"source\": 495, \"target\": 8, \"value\": 0.5861036235612243}, {\"source\": 495, \"target\": 9, \"value\": 0.8410004068839212}, {\"source\": 496, \"target\": 0, \"value\": 0.6793994225918436}, {\"source\": 496, \"target\": 1, \"value\": 0.7267865268231529}, {\"source\": 496, \"target\": 2, \"value\": 0.7305729719171864}, {\"source\": 496, \"target\": 3, \"value\": 0.8339208732426682}, {\"source\": 496, \"target\": 4, \"value\": 0.4945944007620964}, {\"source\": 496, \"target\": 5, \"value\": 0.2376941574586391}, {\"source\": 496, \"target\": 6, \"value\": 0.10389760957836791}, {\"source\": 496, \"target\": 7, \"value\": 0.14461742874493255}, {\"source\": 496, \"target\": 8, \"value\": 0.6875123720128022}, {\"source\": 496, \"target\": 9, \"value\": 0.37344099712199263}, {\"source\": 497, \"target\": 0, \"value\": 0.7904536090641923}, {\"source\": 497, \"target\": 1, \"value\": 0.4032918017325534}, {\"source\": 497, \"target\": 2, \"value\": 0.9834969174884588}, {\"source\": 497, \"target\": 3, \"value\": 0.6883928036693491}, {\"source\": 497, \"target\": 4, \"value\": 0.11599582550832954}, {\"source\": 497, \"target\": 5, \"value\": 0.9793006894338498}, {\"source\": 497, \"target\": 6, \"value\": 0.4692267463327773}, {\"source\": 497, \"target\": 7, \"value\": 0.19365438057872553}, {\"source\": 497, \"target\": 8, \"value\": 0.5006378307939012}, {\"source\": 497, \"target\": 9, \"value\": 0.18776824611228637}, {\"source\": 498, \"target\": 0, \"value\": 0.29671224354313863}, {\"source\": 498, \"target\": 1, \"value\": 0.4681351957777037}, {\"source\": 498, \"target\": 2, \"value\": 0.641893319806585}, {\"source\": 498, \"target\": 3, \"value\": 0.755232542376447}, {\"source\": 498, \"target\": 4, \"value\": 0.40047160424367545}, {\"source\": 498, \"target\": 5, \"value\": 0.009940916295467006}, {\"source\": 498, \"target\": 6, \"value\": 0.19541181463782376}, {\"source\": 498, \"target\": 7, \"value\": 0.9537386798153763}, {\"source\": 498, \"target\": 8, \"value\": 0.6543429494190276}, {\"source\": 498, \"target\": 9, \"value\": 0.1441358411548248}, {\"source\": 499, \"target\": 0, \"value\": 0.6450816842414866}, {\"source\": 499, \"target\": 1, \"value\": 0.22058462346809538}, {\"source\": 499, \"target\": 2, \"value\": 0.01754883138531027}, {\"source\": 499, \"target\": 3, \"value\": 0.15526614149004048}, {\"source\": 499, \"target\": 4, \"value\": 0.9774656111967579}, {\"source\": 499, \"target\": 5, \"value\": 0.23709239200325627}, {\"source\": 499, \"target\": 6, \"value\": 0.7686739862692902}, {\"source\": 499, \"target\": 7, \"value\": 0.6508029991369624}, {\"source\": 499, \"target\": 8, \"value\": 0.8615797304155128}, {\"source\": 499, \"target\": 9, \"value\": 0.10883902623995434}], \"views\": [{\"N_row_sum\": \"all\", \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"group\": [213.0, 94.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 213, \"rank\": 134, \"ini\": 500, \"rankvar\": 296}, {\"group\": [277.0, 118.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 276, \"rank\": 191, \"ini\": 499, \"rankvar\": 465}, {\"group\": [333.0, 140.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 332, \"rank\": 88, \"ini\": 498, \"rankvar\": 424}, {\"group\": [283.0, 120.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 281, \"rank\": 280, \"ini\": 497, \"rankvar\": 462}, {\"group\": [92.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"4\", \"clust\": 91, \"rank\": 242, \"ini\": 496, \"rankvar\": 217}, {\"group\": [132.0, 62.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"5\", \"clust\": 129, \"rank\": 144, \"ini\": 495, \"rankvar\": 293}, {\"group\": [381.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 381, \"rank\": 291, \"ini\": 494, \"rankvar\": 207}, {\"group\": [48.0, 27.0, 12.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 48, \"rank\": 238, \"ini\": 493, \"rankvar\": 371}, {\"group\": [216.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 217, \"rank\": 326, \"ini\": 492, \"rankvar\": 178}, {\"group\": [144.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 145, \"rank\": 86, \"ini\": 491, \"rankvar\": 26}, {\"group\": [310.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"10\", \"clust\": 309, \"rank\": 493, \"ini\": 490, \"rankvar\": 169}, {\"group\": [107.0, 54.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"11\", \"clust\": 106, \"rank\": 180, \"ini\": 489, \"rankvar\": 380}, {\"group\": [362.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"12\", \"clust\": 361, \"rank\": 116, \"ini\": 488, \"rankvar\": 9}, {\"group\": [193.0, 88.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"13\", \"clust\": 188, \"rank\": 296, \"ini\": 487, \"rankvar\": 499}, {\"group\": [51.0, 29.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"14\", \"clust\": 50, \"rank\": 228, \"ini\": 486, \"rankvar\": 382}, {\"group\": [432.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"15\", \"clust\": 432, \"rank\": 130, \"ini\": 485, \"rankvar\": 5}, {\"group\": [467.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"16\", \"clust\": 466, \"rank\": 385, \"ini\": 484, \"rankvar\": 45}, {\"group\": [58.0, 34.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"17\", \"clust\": 57, \"rank\": 148, \"ini\": 483, \"rankvar\": 466}, {\"group\": [311.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"18\", \"clust\": 310, \"rank\": 372, \"ini\": 482, \"rankvar\": 113}, {\"group\": [227.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"19\", \"clust\": 228, \"rank\": 440, \"ini\": 481, \"rankvar\": 368}, {\"group\": [116.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"20\", \"clust\": 115, \"rank\": 279, \"ini\": 480, \"rankvar\": 406}, {\"group\": [396.0, 159.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"21\", \"clust\": 396, \"rank\": 430, \"ini\": 479, \"rankvar\": 62}, {\"group\": [474.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"22\", \"clust\": 472, \"rank\": 424, \"ini\": 478, \"rankvar\": 228}, {\"group\": [497.0, 190.0, 51.0, 14.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"23\", \"clust\": 498, \"rank\": 6, \"ini\": 477, \"rankvar\": 396}, {\"group\": [215.0, 94.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"24\", \"clust\": 212, \"rank\": 322, \"ini\": 476, \"rankvar\": 143}, {\"group\": [433.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"25\", \"clust\": 433, \"rank\": 479, \"ini\": 475, \"rankvar\": 75}, {\"group\": [121.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"26\", \"clust\": 118, \"rank\": 307, \"ini\": 474, \"rankvar\": 199}, {\"group\": [130.0, 62.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"27\", \"clust\": 130, \"rank\": 328, \"ini\": 473, \"rankvar\": 431}, {\"group\": [279.0, 119.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"28\", \"clust\": 278, \"rank\": 401, \"ini\": 472, \"rankvar\": 439}, {\"group\": [448.0, 176.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"29\", \"clust\": 447, \"rank\": 73, \"ini\": 471, \"rankvar\": 247}, {\"group\": [13.0, 10.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"30\", \"clust\": 12, \"rank\": 40, \"ini\": 470, \"rankvar\": 324}, {\"group\": [434.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"31\", \"clust\": 434, \"rank\": 168, \"ini\": 469, \"rankvar\": 142}, {\"group\": [29.0, 17.0, 9.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"32\", \"clust\": 29, \"rank\": 37, \"ini\": 468, \"rankvar\": 377}, {\"group\": [352.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"33\", \"clust\": 351, \"rank\": 426, \"ini\": 467, \"rankvar\": 238}, {\"group\": [224.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"34\", \"clust\": 224, \"rank\": 447, \"ini\": 466, \"rankvar\": 46}, {\"group\": [275.0, 116.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"35\", \"clust\": 273, \"rank\": 41, \"ini\": 465, \"rankvar\": 286}, {\"group\": [456.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"36\", \"clust\": 451, \"rank\": 448, \"ini\": 464, \"rankvar\": 407}, {\"group\": [80.0, 42.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"37\", \"clust\": 77, \"rank\": 78, \"ini\": 463, \"rankvar\": 183}, {\"group\": [146.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"38\", \"clust\": 144, \"rank\": 131, \"ini\": 462, \"rankvar\": 177}, {\"group\": [414.0, 167.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"39\", \"clust\": 412, \"rank\": 30, \"ini\": 461, \"rankvar\": 60}, {\"group\": [488.0, 185.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"40\", \"clust\": 488, \"rank\": 413, \"ini\": 460, \"rankvar\": 253}, {\"group\": [290.0, 123.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"41\", \"clust\": 289, \"rank\": 475, \"ini\": 459, \"rankvar\": 155}, {\"group\": [87.0, 45.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"42\", \"clust\": 86, \"rank\": 337, \"ini\": 458, \"rankvar\": 274}, {\"group\": [39.0, 23.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"43\", \"clust\": 31, \"rank\": 72, \"ini\": 457, \"rankvar\": 365}, {\"group\": [226.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"44\", \"clust\": 223, \"rank\": 402, \"ini\": 456, \"rankvar\": 102}, {\"group\": [380.0, 154.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"45\", \"clust\": 376, \"rank\": 178, \"ini\": 455, \"rankvar\": 493}, {\"group\": [99.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"46\", \"clust\": 98, \"rank\": 85, \"ini\": 454, \"rankvar\": 300}, {\"group\": [50.0, 28.0, 12.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"47\", \"clust\": 47, \"rank\": 172, \"ini\": 453, \"rankvar\": 467}, {\"group\": [27.0, 16.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"48\", \"clust\": 26, \"rank\": 190, \"ini\": 452, \"rankvar\": 497}, {\"group\": [322.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"49\", \"clust\": 321, \"rank\": 282, \"ini\": 451, \"rankvar\": 41}, {\"group\": [32.0, 19.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"50\", \"clust\": 33, \"rank\": 83, \"ini\": 450, \"rankvar\": 25}, {\"group\": [83.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"51\", \"clust\": 82, \"rank\": 173, \"ini\": 449, \"rankvar\": 356}, {\"group\": [100.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"52\", \"clust\": 99, \"rank\": 222, \"ini\": 448, \"rankvar\": 355}, {\"group\": [415.0, 168.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"53\", \"clust\": 411, \"rank\": 25, \"ini\": 447, \"rankvar\": 80}, {\"group\": [300.0, 126.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"54\", \"clust\": 296, \"rank\": 109, \"ini\": 446, \"rankvar\": 257}, {\"group\": [262.0, 111.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"55\", \"clust\": 259, \"rank\": 269, \"ini\": 445, \"rankvar\": 427}, {\"group\": [96.0, 48.0, 19.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"56\", \"clust\": 96, \"rank\": 52, \"ini\": 444, \"rankvar\": 126}, {\"group\": [31.0, 18.0, 9.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"57\", \"clust\": 28, \"rank\": 108, \"ini\": 443, \"rankvar\": 264}, {\"group\": [219.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"58\", \"clust\": 215, \"rank\": 234, \"ini\": 442, \"rankvar\": 326}, {\"group\": [37.0, 22.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"59\", \"clust\": 37, \"rank\": 459, \"ini\": 441, \"rankvar\": 359}, {\"group\": [263.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"60\", \"clust\": 262, \"rank\": 405, \"ini\": 440, \"rankvar\": 290}, {\"group\": [339.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"61\", \"clust\": 339, \"rank\": 441, \"ini\": 439, \"rankvar\": 74}, {\"group\": [20.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"62\", \"clust\": 22, \"rank\": 304, \"ini\": 438, \"rankvar\": 362}, {\"group\": [294.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"63\", \"clust\": 293, \"rank\": 410, \"ini\": 437, \"rankvar\": 312}, {\"group\": [307.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"64\", \"clust\": 307, \"rank\": 444, \"ini\": 436, \"rankvar\": 31}, {\"group\": [171.0, 78.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"65\", \"clust\": 168, \"rank\": 342, \"ini\": 435, \"rankvar\": 22}, {\"group\": [284.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"66\", \"clust\": 285, \"rank\": 487, \"ini\": 434, \"rankvar\": 64}, {\"group\": [469.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"67\", \"clust\": 469, \"rank\": 420, \"ini\": 433, \"rankvar\": 120}, {\"group\": [233.0, 99.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"68\", \"clust\": 235, \"rank\": 224, \"ini\": 432, \"rankvar\": 14}, {\"group\": [422.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"69\", \"clust\": 421, \"rank\": 368, \"ini\": 431, \"rankvar\": 428}, {\"group\": [459.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"70\", \"clust\": 458, \"rank\": 400, \"ini\": 430, \"rankvar\": 434}, {\"group\": [169.0, 78.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"71\", \"clust\": 169, \"rank\": 457, \"ini\": 429, \"rankvar\": 92}, {\"group\": [245.0, 103.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"72\", \"clust\": 244, \"rank\": 165, \"ini\": 428, \"rankvar\": 270}, {\"group\": [341.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"73\", \"clust\": 338, \"rank\": 383, \"ini\": 427, \"rankvar\": 51}, {\"group\": [89.0, 46.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"74\", \"clust\": 89, \"rank\": 264, \"ini\": 426, \"rankvar\": 96}, {\"group\": [495.0, 188.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"75\", \"clust\": 494, \"rank\": 35, \"ini\": 425, \"rankvar\": 98}, {\"group\": [428.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"76\", \"clust\": 429, \"rank\": 419, \"ini\": 424, \"rankvar\": 67}, {\"group\": [238.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"77\", \"clust\": 238, \"rank\": 250, \"ini\": 423, \"rankvar\": 123}, {\"group\": [7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"78\", \"clust\": 3, \"rank\": 126, \"ini\": 422, \"rankvar\": 294}, {\"group\": [371.0, 149.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"79\", \"clust\": 372, \"rank\": 406, \"ini\": 421, \"rankvar\": 43}, {\"group\": [126.0, 60.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"80\", \"clust\": 125, \"rank\": 351, \"ini\": 420, \"rankvar\": 496}, {\"group\": [475.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"81\", \"clust\": 471, \"rank\": 292, \"ini\": 419, \"rankvar\": 144}, {\"group\": [491.0, 186.0, 49.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"82\", \"clust\": 491, \"rank\": 32, \"ini\": 418, \"rankvar\": 303}, {\"group\": [328.0, 136.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"83\", \"clust\": 325, \"rank\": 329, \"ini\": 417, \"rankvar\": 229}, {\"group\": [436.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"84\", \"clust\": 431, \"rank\": 271, \"ini\": 416, \"rankvar\": 369}, {\"group\": [276.0, 117.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"85\", \"clust\": 272, \"rank\": 10, \"ini\": 415, \"rankvar\": 288}, {\"group\": [406.0, 163.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"86\", \"clust\": 406, \"rank\": 226, \"ini\": 414, \"rankvar\": 128}, {\"group\": [296.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"87\", \"clust\": 297, \"rank\": 220, \"ini\": 413, \"rankvar\": 131}, {\"group\": [67.0, 38.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"88\", \"clust\": 67, \"rank\": 102, \"ini\": 412, \"rankvar\": 105}, {\"group\": [342.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"89\", \"clust\": 341, \"rank\": 470, \"ini\": 411, \"rankvar\": 148}, {\"group\": [386.0, 157.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"90\", \"clust\": 386, \"rank\": 51, \"ini\": 410, \"rankvar\": 93}, {\"group\": [152.0, 69.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"91\", \"clust\": 151, \"rank\": 127, \"ini\": 409, \"rankvar\": 161}, {\"group\": [211.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"92\", \"clust\": 208, \"rank\": 95, \"ini\": 408, \"rankvar\": 66}, {\"group\": [471.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"93\", \"clust\": 468, \"rank\": 411, \"ini\": 407, \"rankvar\": 447}, {\"group\": [498.0, 191.0, 51.0, 14.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"94\", \"clust\": 499, \"rank\": 53, \"ini\": 406, \"rankvar\": 381}, {\"group\": [135.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"95\", \"clust\": 135, \"rank\": 454, \"ini\": 405, \"rankvar\": 411}, {\"group\": [212.0, 93.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"96\", \"clust\": 207, \"rank\": 436, \"ini\": 404, \"rankvar\": 453}, {\"group\": [125.0, 59.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"97\", \"clust\": 117, \"rank\": 93, \"ini\": 403, \"rankvar\": 421}, {\"group\": [72.0, 40.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"98\", \"clust\": 71, \"rank\": 96, \"ini\": 402, \"rankvar\": 227}, {\"group\": [44.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"99\", \"clust\": 45, \"rank\": 357, \"ini\": 401, \"rankvar\": 430}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"100\", \"clust\": 1, \"rank\": 167, \"ini\": 400, \"rankvar\": 456}, {\"group\": [499.0, 192.0, 52.0, 14.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"101\", \"clust\": 497, \"rank\": 5, \"ini\": 399, \"rankvar\": 268}, {\"group\": [492.0, 186.0, 49.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"102\", \"clust\": 492, \"rank\": 38, \"ini\": 398, \"rankvar\": 352}, {\"group\": [101.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"103\", \"clust\": 100, \"rank\": 80, \"ini\": 397, \"rankvar\": 260}, {\"group\": [437.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"104\", \"clust\": 436, \"rank\": 485, \"ini\": 396, \"rankvar\": 19}, {\"group\": [286.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"105\", \"clust\": 287, \"rank\": 374, \"ini\": 395, \"rankvar\": 325}, {\"group\": [97.0, 49.0, 19.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"106\", \"clust\": 97, \"rank\": 50, \"ini\": 394, \"rankvar\": 179}, {\"group\": [482.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"107\", \"clust\": 482, \"rank\": 497, \"ini\": 393, \"rankvar\": 15}, {\"group\": [323.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"108\", \"clust\": 322, \"rank\": 335, \"ini\": 392, \"rankvar\": 267}, {\"group\": [182.0, 83.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"109\", \"clust\": 181, \"rank\": 147, \"ini\": 391, \"rankvar\": 241}, {\"group\": [304.0, 128.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"110\", \"clust\": 301, \"rank\": 321, \"ini\": 390, \"rankvar\": 425}, {\"group\": [450.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"111\", \"clust\": 449, \"rank\": 274, \"ini\": 389, \"rankvar\": 289}, {\"group\": [435.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"112\", \"clust\": 435, \"rank\": 452, \"ini\": 388, \"rankvar\": 165}, {\"group\": [452.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"113\", \"clust\": 454, \"rank\": 481, \"ini\": 387, \"rankvar\": 438}, {\"group\": [418.0, 170.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"114\", \"clust\": 417, \"rank\": 119, \"ini\": 386, \"rankvar\": 194}, {\"group\": [465.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"115\", \"clust\": 464, \"rank\": 203, \"ini\": 385, \"rankvar\": 30}, {\"group\": [133.0, 63.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"116\", \"clust\": 132, \"rank\": 128, \"ini\": 384, \"rankvar\": 378}, {\"group\": [405.0, 162.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"117\", \"clust\": 401, \"rank\": 55, \"ini\": 383, \"rankvar\": 302}, {\"group\": [163.0, 75.0, 26.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"118\", \"clust\": 162, \"rank\": 59, \"ini\": 382, \"rankvar\": 321}, {\"group\": [53.0, 30.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"119\", \"clust\": 53, \"rank\": 107, \"ini\": 381, \"rankvar\": 77}, {\"group\": [17.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"120\", \"clust\": 14, \"rank\": 33, \"ini\": 380, \"rankvar\": 158}, {\"group\": [321.0, 134.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"121\", \"clust\": 316, \"rank\": 268, \"ini\": 379, \"rankvar\": 90}, {\"group\": [85.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"122\", \"clust\": 84, \"rank\": 371, \"ini\": 378, \"rankvar\": 216}, {\"group\": [3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"123\", \"clust\": 0, \"rank\": 184, \"ini\": 377, \"rankvar\": 498}, {\"group\": [78.0, 42.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"124\", \"clust\": 78, \"rank\": 62, \"ini\": 376, \"rankvar\": 107}, {\"group\": [288.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"125\", \"clust\": 284, \"rank\": 290, \"ini\": 375, \"rankvar\": 485}, {\"group\": [340.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"126\", \"clust\": 340, \"rank\": 453, \"ini\": 374, \"rankvar\": 59}, {\"group\": [108.0, 54.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"127\", \"clust\": 107, \"rank\": 15, \"ini\": 373, \"rankvar\": 27}, {\"group\": [167.0, 76.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"128\", \"clust\": 165, \"rank\": 251, \"ini\": 372, \"rankvar\": 372}, {\"group\": [157.0, 73.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"129\", \"clust\": 156, \"rank\": 188, \"ini\": 371, \"rankvar\": 351}, {\"group\": [485.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"130\", \"clust\": 485, \"rank\": 449, \"ini\": 370, \"rankvar\": 222}, {\"group\": [464.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"131\", \"clust\": 460, \"rank\": 156, \"ini\": 369, \"rankvar\": 205}, {\"group\": [237.0, 101.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"132\", \"clust\": 230, \"rank\": 283, \"ini\": 368, \"rankvar\": 479}, {\"group\": [18.0, 12.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"133\", \"clust\": 18, \"rank\": 42, \"ini\": 367, \"rankvar\": 374}, {\"group\": [289.0, 122.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"134\", \"clust\": 280, \"rank\": 132, \"ini\": 366, \"rankvar\": 197}, {\"group\": [25.0, 15.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"135\", \"clust\": 24, \"rank\": 174, \"ini\": 365, \"rankvar\": 384}, {\"group\": [331.0, 139.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"136\", \"clust\": 330, \"rank\": 192, \"ini\": 364, \"rankvar\": 329}, {\"group\": [103.0, 52.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"137\", \"clust\": 102, \"rank\": 14, \"ini\": 363, \"rankvar\": 48}, {\"group\": [14.0, 10.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"138\", \"clust\": 13, \"rank\": 79, \"ini\": 362, \"rankvar\": 348}, {\"group\": [350.0, 144.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"139\", \"clust\": 348, \"rank\": 391, \"ini\": 361, \"rankvar\": 449}, {\"group\": [175.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"140\", \"clust\": 174, \"rank\": 121, \"ini\": 360, \"rankvar\": 157}, {\"group\": [251.0, 106.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"141\", \"clust\": 251, \"rank\": 151, \"ini\": 359, \"rankvar\": 323}, {\"group\": [69.0, 38.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"142\", \"clust\": 66, \"rank\": 64, \"ini\": 358, \"rankvar\": 318}, {\"group\": [91.0, 46.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"143\", \"clust\": 88, \"rank\": 169, \"ini\": 357, \"rankvar\": 104}, {\"group\": [363.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"144\", \"clust\": 362, \"rank\": 379, \"ini\": 356, \"rankvar\": 47}, {\"group\": [30.0, 17.0, 9.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"145\", \"clust\": 30, \"rank\": 66, \"ini\": 355, \"rankvar\": 452}, {\"group\": [60.0, 35.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"146\", \"clust\": 61, \"rank\": 446, \"ini\": 354, \"rankvar\": 138}, {\"group\": [189.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"147\", \"clust\": 191, \"rank\": 183, \"ini\": 353, \"rankvar\": 388}, {\"group\": [389.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"148\", \"clust\": 389, \"rank\": 235, \"ini\": 352, \"rankvar\": 129}, {\"group\": [348.0, 144.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"149\", \"clust\": 349, \"rank\": 272, \"ini\": 351, \"rankvar\": 298}, {\"group\": [256.0, 108.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"150\", \"clust\": 253, \"rank\": 365, \"ini\": 350, \"rankvar\": 394}, {\"group\": [383.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"151\", \"clust\": 383, \"rank\": 13, \"ini\": 349, \"rankvar\": 187}, {\"group\": [81.0, 43.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"152\", \"clust\": 80, \"rank\": 161, \"ini\": 348, \"rankvar\": 305}, {\"group\": [55.0, 31.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"153\", \"clust\": 52, \"rank\": 11, \"ini\": 347, \"rankvar\": 154}, {\"group\": [265.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"154\", \"clust\": 264, \"rank\": 267, \"ini\": 346, \"rankvar\": 159}, {\"group\": [447.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"155\", \"clust\": 443, \"rank\": 125, \"ini\": 345, \"rankvar\": 280}, {\"group\": [285.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"156\", \"clust\": 286, \"rank\": 248, \"ini\": 344, \"rankvar\": 73}, {\"group\": [179.0, 81.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"157\", \"clust\": 179, \"rank\": 330, \"ini\": 343, \"rankvar\": 494}, {\"group\": [353.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"158\", \"clust\": 352, \"rank\": 422, \"ini\": 342, \"rankvar\": 127}, {\"group\": [431.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"159\", \"clust\": 427, \"rank\": 332, \"ini\": 341, \"rankvar\": 246}, {\"group\": [165.0, 76.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"160\", \"clust\": 166, \"rank\": 186, \"ini\": 340, \"rankvar\": 347}, {\"group\": [401.0, 160.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"161\", \"clust\": 398, \"rank\": 89, \"ini\": 339, \"rankvar\": 101}, {\"group\": [457.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"162\", \"clust\": 456, \"rank\": 84, \"ini\": 338, \"rankvar\": 234}, {\"group\": [42.0, 25.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"163\", \"clust\": 41, \"rank\": 110, \"ini\": 337, \"rankvar\": 186}, {\"group\": [66.0, 37.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"164\", \"clust\": 63, \"rank\": 113, \"ini\": 336, \"rankvar\": 83}, {\"group\": [271.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"165\", \"clust\": 270, \"rank\": 462, \"ini\": 335, \"rankvar\": 58}, {\"group\": [458.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"166\", \"clust\": 457, \"rank\": 43, \"ini\": 334, \"rankvar\": 38}, {\"group\": [470.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"167\", \"clust\": 470, \"rank\": 464, \"ini\": 333, \"rankvar\": 56}, {\"group\": [222.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"168\", \"clust\": 221, \"rank\": 204, \"ini\": 332, \"rankvar\": 0}, {\"group\": [449.0, 176.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"169\", \"clust\": 448, \"rank\": 314, \"ini\": 331, \"rankvar\": 220}, {\"group\": [15.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"170\", \"clust\": 15, \"rank\": 77, \"ini\": 330, \"rankvar\": 306}, {\"group\": [407.0, 163.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"171\", \"clust\": 407, \"rank\": 213, \"ini\": 329, \"rankvar\": 441}, {\"group\": [253.0, 107.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"172\", \"clust\": 250, \"rank\": 7, \"ini\": 328, \"rankvar\": 86}, {\"group\": [172.0, 79.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"173\", \"clust\": 172, \"rank\": 384, \"ini\": 327, \"rankvar\": 236}, {\"group\": [109.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"174\", \"clust\": 109, \"rank\": 369, \"ini\": 326, \"rankvar\": 443}, {\"group\": [26.0, 15.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"175\", \"clust\": 25, \"rank\": 343, \"ini\": 325, \"rankvar\": 203}, {\"group\": [305.0, 129.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"176\", \"clust\": 304, \"rank\": 49, \"ini\": 324, \"rankvar\": 153}, {\"group\": [190.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"177\", \"clust\": 192, \"rank\": 36, \"ini\": 323, \"rankvar\": 132}, {\"group\": [74.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"178\", \"clust\": 73, \"rank\": 181, \"ini\": 322, \"rankvar\": 133}, {\"group\": [84.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"179\", \"clust\": 83, \"rank\": 176, \"ini\": 321, \"rankvar\": 240}, {\"group\": [412.0, 167.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"180\", \"clust\": 413, \"rank\": 366, \"ini\": 320, \"rankvar\": 192}, {\"group\": [387.0, 157.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"181\", \"clust\": 387, \"rank\": 266, \"ini\": 319, \"rankvar\": 349}, {\"group\": [76.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"182\", \"clust\": 75, \"rank\": 460, \"ini\": 318, \"rankvar\": 460}, {\"group\": [105.0, 53.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"183\", \"clust\": 104, \"rank\": 240, \"ini\": 317, \"rankvar\": 176}, {\"group\": [68.0, 38.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"184\", \"clust\": 68, \"rank\": 253, \"ini\": 316, \"rankvar\": 175}, {\"group\": [319.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"185\", \"clust\": 319, \"rank\": 207, \"ini\": 315, \"rankvar\": 263}, {\"group\": [86.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"186\", \"clust\": 85, \"rank\": 193, \"ini\": 314, \"rankvar\": 370}, {\"group\": [139.0, 65.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"187\", \"clust\": 134, \"rank\": 54, \"ini\": 313, \"rankvar\": 285}, {\"group\": [334.0, 140.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"188\", \"clust\": 333, \"rank\": 179, \"ini\": 312, \"rankvar\": 124}, {\"group\": [59.0, 34.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"189\", \"clust\": 58, \"rank\": 241, \"ini\": 311, \"rankvar\": 476}, {\"group\": [326.0, 136.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"190\", \"clust\": 326, \"rank\": 443, \"ini\": 310, \"rankvar\": 442}, {\"group\": [196.0, 89.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"191\", \"clust\": 193, \"rank\": 209, \"ini\": 309, \"rankvar\": 409}, {\"group\": [114.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"192\", \"clust\": 113, \"rank\": 159, \"ini\": 308, \"rankvar\": 386}, {\"group\": [23.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"193\", \"clust\": 20, \"rank\": 0, \"ini\": 307, \"rankvar\": 17}, {\"group\": [478.0, 182.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"194\", \"clust\": 475, \"rank\": 289, \"ini\": 306, \"rankvar\": 391}, {\"group\": [335.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"195\", \"clust\": 334, \"rank\": 451, \"ini\": 305, \"rankvar\": 314}, {\"group\": [220.0, 96.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"196\", \"clust\": 219, \"rank\": 117, \"ini\": 304, \"rankvar\": 214}, {\"group\": [370.0, 148.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"197\", \"clust\": 367, \"rank\": 364, \"ini\": 303, \"rankvar\": 317}, {\"group\": [206.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"198\", \"clust\": 205, \"rank\": 466, \"ini\": 302, \"rankvar\": 94}, {\"group\": [140.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"199\", \"clust\": 139, \"rank\": 298, \"ini\": 301, \"rankvar\": 252}, {\"group\": [6.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"200\", \"clust\": 4, \"rank\": 101, \"ini\": 300, \"rankvar\": 484}, {\"group\": [62.0, 35.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"201\", \"clust\": 60, \"rank\": 480, \"ini\": 299, \"rankvar\": 292}, {\"group\": [298.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"202\", \"clust\": 299, \"rank\": 68, \"ini\": 298, \"rankvar\": 36}, {\"group\": [202.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"203\", \"clust\": 201, \"rank\": 133, \"ini\": 297, \"rankvar\": 301}, {\"group\": [443.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"204\", \"clust\": 440, \"rank\": 273, \"ini\": 296, \"rankvar\": 112}, {\"group\": [199.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"205\", \"clust\": 199, \"rank\": 57, \"ini\": 295, \"rankvar\": 256}, {\"group\": [249.0, 105.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"206\", \"clust\": 248, \"rank\": 175, \"ini\": 294, \"rankvar\": 487}, {\"group\": [148.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"207\", \"clust\": 147, \"rank\": 373, \"ini\": 293, \"rankvar\": 164}, {\"group\": [94.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"208\", \"clust\": 93, \"rank\": 189, \"ini\": 292, \"rankvar\": 231}, {\"group\": [70.0, 39.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"209\", \"clust\": 69, \"rank\": 333, \"ini\": 291, \"rankvar\": 42}, {\"group\": [416.0, 169.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"210\", \"clust\": 415, \"rank\": 323, \"ini\": 290, \"rankvar\": 402}, {\"group\": [118.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"211\", \"clust\": 120, \"rank\": 417, \"ini\": 289, \"rankvar\": 152}, {\"group\": [187.0, 86.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"212\", \"clust\": 186, \"rank\": 91, \"ini\": 288, \"rankvar\": 221}, {\"group\": [267.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"213\", \"clust\": 266, \"rank\": 478, \"ini\": 287, \"rankvar\": 33}, {\"group\": [409.0, 165.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"214\", \"clust\": 409, \"rank\": 118, \"ini\": 286, \"rankvar\": 188}, {\"group\": [460.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"215\", \"clust\": 459, \"rank\": 98, \"ini\": 285, \"rankvar\": 206}, {\"group\": [128.0, 61.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"216\", \"clust\": 127, \"rank\": 67, \"ini\": 284, \"rankvar\": 34}, {\"group\": [430.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"217\", \"clust\": 428, \"rank\": 47, \"ini\": 283, \"rankvar\": 8}, {\"group\": [120.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"218\", \"clust\": 119, \"rank\": 415, \"ini\": 282, \"rankvar\": 413}, {\"group\": [56.0, 32.0, 14.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"219\", \"clust\": 55, \"rank\": 2, \"ini\": 281, \"rankvar\": 44}, {\"group\": [131.0, 62.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"220\", \"clust\": 131, \"rank\": 24, \"ini\": 280, \"rankvar\": 1}, {\"group\": [218.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"221\", \"clust\": 216, \"rank\": 438, \"ini\": 279, \"rankvar\": 291}, {\"group\": [337.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"222\", \"clust\": 336, \"rank\": 214, \"ini\": 278, \"rankvar\": 385}, {\"group\": [150.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"223\", \"clust\": 149, \"rank\": 399, \"ini\": 277, \"rankvar\": 55}, {\"group\": [266.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"224\", \"clust\": 265, \"rank\": 474, \"ini\": 276, \"rankvar\": 489}, {\"group\": [28.0, 16.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"225\", \"clust\": 27, \"rank\": 87, \"ini\": 275, \"rankvar\": 433}, {\"group\": [312.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"226\", \"clust\": 311, \"rank\": 106, \"ini\": 274, \"rankvar\": 11}, {\"group\": [63.0, 36.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"227\", \"clust\": 59, \"rank\": 82, \"ini\": 273, \"rankvar\": 473}, {\"group\": [344.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"228\", \"clust\": 343, \"rank\": 334, \"ini\": 272, \"rankvar\": 262}, {\"group\": [486.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"229\", \"clust\": 486, \"rank\": 455, \"ini\": 271, \"rankvar\": 423}, {\"group\": [500.0, 193.0, 53.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"230\", \"clust\": 490, \"rank\": 9, \"ini\": 270, \"rankvar\": 401}, {\"group\": [93.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"231\", \"clust\": 92, \"rank\": 315, \"ini\": 269, \"rankvar\": 284}, {\"group\": [444.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"232\", \"clust\": 445, \"rank\": 27, \"ini\": 268, \"rankvar\": 307}, {\"group\": [269.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"233\", \"clust\": 268, \"rank\": 270, \"ini\": 267, \"rankvar\": 166}, {\"group\": [194.0, 89.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"234\", \"clust\": 194, \"rank\": 359, \"ini\": 266, \"rankvar\": 354}, {\"group\": [260.0, 111.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"235\", \"clust\": 260, \"rank\": 200, \"ini\": 265, \"rankvar\": 100}, {\"group\": [147.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"236\", \"clust\": 143, \"rank\": 256, \"ini\": 264, \"rankvar\": 336}, {\"group\": [230.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"237\", \"clust\": 226, \"rank\": 356, \"ini\": 263, \"rankvar\": 79}, {\"group\": [184.0, 84.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"238\", \"clust\": 184, \"rank\": 164, \"ini\": 262, \"rankvar\": 357}, {\"group\": [90.0, 46.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"239\", \"clust\": 90, \"rank\": 392, \"ini\": 261, \"rankvar\": 350}, {\"group\": [254.0, 108.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"240\", \"clust\": 254, \"rank\": 208, \"ini\": 260, \"rankvar\": 150}, {\"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"241\", \"clust\": 2, \"rank\": 39, \"ini\": 259, \"rankvar\": 209}, {\"group\": [40.0, 24.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"242\", \"clust\": 39, \"rank\": 19, \"ini\": 258, \"rankvar\": 53}, {\"group\": [164.0, 75.0, 26.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"243\", \"clust\": 163, \"rank\": 70, \"ini\": 257, \"rankvar\": 251}, {\"group\": [259.0, 110.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"244\", \"clust\": 256, \"rank\": 352, \"ini\": 256, \"rankvar\": 404}, {\"group\": [479.0, 183.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"245\", \"clust\": 479, \"rank\": 421, \"ini\": 255, \"rankvar\": 309}, {\"group\": [247.0, 104.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"246\", \"clust\": 246, \"rank\": 237, \"ini\": 254, \"rankvar\": 392}, {\"group\": [173.0, 79.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"247\", \"clust\": 173, \"rank\": 491, \"ini\": 253, \"rankvar\": 170}, {\"group\": [302.0, 128.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"248\", \"clust\": 302, \"rank\": 135, \"ini\": 252, \"rankvar\": 261}, {\"group\": [439.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"249\", \"clust\": 438, \"rank\": 477, \"ini\": 251, \"rankvar\": 118}, {\"group\": [246.0, 103.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"250\", \"clust\": 245, \"rank\": 375, \"ini\": 250, \"rankvar\": 283}, {\"group\": [487.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"251\", \"clust\": 484, \"rank\": 354, \"ini\": 249, \"rankvar\": 400}, {\"group\": [47.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"252\", \"clust\": 43, \"rank\": 81, \"ini\": 248, \"rankvar\": 335}, {\"group\": [346.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"253\", \"clust\": 345, \"rank\": 170, \"ini\": 247, \"rankvar\": 134}, {\"group\": [210.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"254\", \"clust\": 209, \"rank\": 74, \"ini\": 246, \"rankvar\": 137}, {\"group\": [221.0, 96.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"255\", \"clust\": 220, \"rank\": 65, \"ini\": 245, \"rankvar\": 68}, {\"group\": [115.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"256\", \"clust\": 114, \"rank\": 361, \"ini\": 244, \"rankvar\": 444}, {\"group\": [399.0, 160.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"257\", \"clust\": 399, \"rank\": 312, \"ini\": 243, \"rankvar\": 97}, {\"group\": [200.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"258\", \"clust\": 200, \"rank\": 216, \"ini\": 242, \"rankvar\": 282}, {\"group\": [441.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"259\", \"clust\": 441, \"rank\": 363, \"ini\": 241, \"rankvar\": 182}, {\"group\": [329.0, 137.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"260\", \"clust\": 328, \"rank\": 155, \"ini\": 240, \"rankvar\": 353}, {\"group\": [117.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"261\", \"clust\": 116, \"rank\": 136, \"ini\": 239, \"rankvar\": 254}, {\"group\": [366.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"262\", \"clust\": 364, \"rank\": 467, \"ini\": 238, \"rankvar\": 225}, {\"group\": [345.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"263\", \"clust\": 344, \"rank\": 71, \"ini\": 237, \"rankvar\": 87}, {\"group\": [127.0, 60.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"264\", \"clust\": 126, \"rank\": 325, \"ini\": 236, \"rankvar\": 389}, {\"group\": [231.0, 98.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"265\", \"clust\": 231, \"rank\": 111, \"ini\": 235, \"rankvar\": 418}, {\"group\": [82.0, 43.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"266\", \"clust\": 81, \"rank\": 44, \"ini\": 234, \"rankvar\": 210}, {\"group\": [71.0, 39.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"267\", \"clust\": 70, \"rank\": 389, \"ini\": 233, \"rankvar\": 271}, {\"group\": [217.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"268\", \"clust\": 218, \"rank\": 414, \"ini\": 232, \"rankvar\": 313}, {\"group\": [453.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"269\", \"clust\": 455, \"rank\": 486, \"ini\": 231, \"rankvar\": 437}, {\"group\": [234.0, 99.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"270\", \"clust\": 236, \"rank\": 244, \"ini\": 230, \"rankvar\": 18}, {\"group\": [134.0, 63.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"271\", \"clust\": 133, \"rank\": 122, \"ini\": 229, \"rankvar\": 345}, {\"group\": [400.0, 160.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"272\", \"clust\": 400, \"rank\": 287, \"ini\": 228, \"rankvar\": 233}, {\"group\": [244.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"273\", \"clust\": 240, \"rank\": 197, \"ini\": 227, \"rankvar\": 367}, {\"group\": [308.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"274\", \"clust\": 308, \"rank\": 327, \"ini\": 226, \"rankvar\": 185}, {\"group\": [192.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"275\", \"clust\": 189, \"rank\": 218, \"ini\": 225, \"rankvar\": 278}, {\"group\": [397.0, 159.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"276\", \"clust\": 397, \"rank\": 275, \"ini\": 224, \"rankvar\": 174}, {\"group\": [442.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"277\", \"clust\": 442, \"rank\": 349, \"ini\": 223, \"rankvar\": 20}, {\"group\": [468.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"278\", \"clust\": 467, \"rank\": 305, \"ini\": 222, \"rankvar\": 140}, {\"group\": [480.0, 183.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"279\", \"clust\": 480, \"rank\": 140, \"ini\": 221, \"rankvar\": 78}, {\"group\": [388.0, 157.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"280\", \"clust\": 385, \"rank\": 302, \"ini\": 220, \"rankvar\": 358}, {\"group\": [392.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"281\", \"clust\": 393, \"rank\": 472, \"ini\": 219, \"rankvar\": 242}, {\"group\": [413.0, 167.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"282\", \"clust\": 414, \"rank\": 483, \"ini\": 218, \"rankvar\": 436}, {\"group\": [11.0, 8.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"283\", \"clust\": 10, \"rank\": 31, \"ini\": 217, \"rankvar\": 417}, {\"group\": [385.0, 156.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"284\", \"clust\": 380, \"rank\": 17, \"ini\": 216, \"rankvar\": 167}, {\"group\": [161.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"285\", \"clust\": 159, \"rank\": 225, \"ini\": 215, \"rankvar\": 397}, {\"group\": [273.0, 114.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"286\", \"clust\": 274, \"rank\": 141, \"ini\": 214, \"rankvar\": 446}, {\"group\": [204.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"287\", \"clust\": 203, \"rank\": 484, \"ini\": 213, \"rankvar\": 287}, {\"group\": [454.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"288\", \"clust\": 453, \"rank\": 386, \"ini\": 212, \"rankvar\": 189}, {\"group\": [19.0, 12.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"289\", \"clust\": 19, \"rank\": 409, \"ini\": 211, \"rankvar\": 488}, {\"group\": [197.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"290\", \"clust\": 196, \"rank\": 205, \"ini\": 210, \"rankvar\": 224}, {\"group\": [423.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"291\", \"clust\": 422, \"rank\": 380, \"ini\": 209, \"rankvar\": 341}, {\"group\": [185.0, 84.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"292\", \"clust\": 185, \"rank\": 412, \"ini\": 208, \"rankvar\": 316}, {\"group\": [364.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"293\", \"clust\": 365, \"rank\": 428, \"ini\": 207, \"rankvar\": 211}, {\"group\": [153.0, 70.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"294\", \"clust\": 152, \"rank\": 99, \"ini\": 206, \"rankvar\": 121}, {\"group\": [424.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"295\", \"clust\": 423, \"rank\": 403, \"ini\": 205, \"rankvar\": 151}, {\"group\": [417.0, 169.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"296\", \"clust\": 416, \"rank\": 297, \"ini\": 204, \"rankvar\": 478}, {\"group\": [377.0, 153.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"297\", \"clust\": 378, \"rank\": 345, \"ini\": 203, \"rankvar\": 320}, {\"group\": [375.0, 152.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"298\", \"clust\": 374, \"rank\": 21, \"ini\": 202, \"rankvar\": 181}, {\"group\": [16.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"299\", \"clust\": 16, \"rank\": 221, \"ini\": 201, \"rankvar\": 195}, {\"group\": [239.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"300\", \"clust\": 239, \"rank\": 408, \"ini\": 200, \"rankvar\": 330}, {\"group\": [122.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"301\", \"clust\": 123, \"rank\": 211, \"ini\": 199, \"rankvar\": 471}, {\"group\": [207.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"302\", \"clust\": 206, \"rank\": 471, \"ini\": 198, \"rankvar\": 376}, {\"group\": [235.0, 99.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"303\", \"clust\": 234, \"rank\": 258, \"ini\": 197, \"rankvar\": 198}, {\"group\": [10.0, 7.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"304\", \"clust\": 7, \"rank\": 245, \"ini\": 196, \"rankvar\": 486}, {\"group\": [287.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"305\", \"clust\": 288, \"rank\": 243, \"ini\": 195, \"rankvar\": 361}, {\"group\": [292.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"306\", \"clust\": 291, \"rank\": 394, \"ini\": 194, \"rankvar\": 277}, {\"group\": [376.0, 152.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"307\", \"clust\": 375, \"rank\": 319, \"ini\": 193, \"rankvar\": 410}, {\"group\": [248.0, 104.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"308\", \"clust\": 247, \"rank\": 100, \"ini\": 192, \"rankvar\": 339}, {\"group\": [119.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"309\", \"clust\": 121, \"rank\": 476, \"ini\": 191, \"rankvar\": 223}, {\"group\": [272.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"310\", \"clust\": 271, \"rank\": 431, \"ini\": 190, \"rankvar\": 249}, {\"group\": [257.0, 109.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"311\", \"clust\": 257, \"rank\": 150, \"ini\": 189, \"rankvar\": 477}, {\"group\": [354.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"312\", \"clust\": 353, \"rank\": 338, \"ini\": 188, \"rankvar\": 85}, {\"group\": [158.0, 73.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"313\", \"clust\": 157, \"rank\": 3, \"ini\": 187, \"rankvar\": 6}, {\"group\": [156.0, 72.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"314\", \"clust\": 153, \"rank\": 94, \"ini\": 186, \"rankvar\": 408}, {\"group\": [264.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"315\", \"clust\": 263, \"rank\": 404, \"ini\": 185, \"rankvar\": 117}, {\"group\": [365.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"316\", \"clust\": 366, \"rank\": 396, \"ini\": 184, \"rankvar\": 95}, {\"group\": [137.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"317\", \"clust\": 137, \"rank\": 177, \"ini\": 183, \"rankvar\": 432}, {\"group\": [280.0, 119.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"318\", \"clust\": 279, \"rank\": 112, \"ini\": 182, \"rankvar\": 364}, {\"group\": [57.0, 33.0, 14.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"319\", \"clust\": 56, \"rank\": 263, \"ini\": 181, \"rankvar\": 337}, {\"group\": [24.0, 14.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"320\", \"clust\": 17, \"rank\": 223, \"ini\": 180, \"rankvar\": 455}, {\"group\": [425.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"321\", \"clust\": 424, \"rank\": 247, \"ini\": 179, \"rankvar\": 297}, {\"group\": [314.0, 131.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"322\", \"clust\": 314, \"rank\": 217, \"ini\": 178, \"rankvar\": 468}, {\"group\": [145.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"323\", \"clust\": 146, \"rank\": 423, \"ini\": 177, \"rankvar\": 109}, {\"group\": [466.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"324\", \"clust\": 465, \"rank\": 158, \"ini\": 176, \"rankvar\": 91}, {\"group\": [223.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"325\", \"clust\": 222, \"rank\": 498, \"ini\": 175, \"rankvar\": 2}, {\"group\": [472.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"326\", \"clust\": 473, \"rank\": 433, \"ini\": 174, \"rankvar\": 63}, {\"group\": [327.0, 136.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"327\", \"clust\": 327, \"rank\": 311, \"ini\": 173, \"rankvar\": 279}, {\"group\": [451.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"328\", \"clust\": 450, \"rank\": 124, \"ini\": 172, \"rankvar\": 269}, {\"group\": [426.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"329\", \"clust\": 425, \"rank\": 294, \"ini\": 171, \"rankvar\": 331}, {\"group\": [45.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"330\", \"clust\": 46, \"rank\": 171, \"ini\": 170, \"rankvar\": 162}, {\"group\": [372.0, 149.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"331\", \"clust\": 373, \"rank\": 376, \"ini\": 169, \"rankvar\": 245}, {\"group\": [489.0, 185.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"332\", \"clust\": 489, \"rank\": 306, \"ini\": 168, \"rankvar\": 379}, {\"group\": [102.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"333\", \"clust\": 101, \"rank\": 387, \"ini\": 167, \"rankvar\": 334}, {\"group\": [313.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"334\", \"clust\": 312, \"rank\": 310, \"ini\": 166, \"rankvar\": 21}, {\"group\": [4.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"335\", \"clust\": 5, \"rank\": 114, \"ini\": 165, \"rankvar\": 481}, {\"group\": [154.0, 71.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"336\", \"clust\": 154, \"rank\": 468, \"ini\": 164, \"rankvar\": 458}, {\"group\": [73.0, 40.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"337\", \"clust\": 72, \"rank\": 138, \"ini\": 163, \"rankvar\": 322}, {\"group\": [250.0, 105.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"338\", \"clust\": 249, \"rank\": 382, \"ini\": 162, \"rankvar\": 483}, {\"group\": [228.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"339\", \"clust\": 229, \"rank\": 336, \"ini\": 161, \"rankvar\": 265}, {\"group\": [41.0, 24.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"340\", \"clust\": 40, \"rank\": 1, \"ini\": 160, \"rankvar\": 84}, {\"group\": [186.0, 85.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"341\", \"clust\": 183, \"rank\": 23, \"ini\": 159, \"rankvar\": 115}, {\"group\": [155.0, 71.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"342\", \"clust\": 155, \"rank\": 450, \"ini\": 158, \"rankvar\": 480}, {\"group\": [177.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"343\", \"clust\": 176, \"rank\": 284, \"ini\": 157, \"rankvar\": 49}, {\"group\": [46.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"344\", \"clust\": 44, \"rank\": 104, \"ini\": 156, \"rankvar\": 72}, {\"group\": [411.0, 166.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"345\", \"clust\": 408, \"rank\": 137, \"ini\": 155, \"rankvar\": 420}, {\"group\": [438.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"346\", \"clust\": 437, \"rank\": 499, \"ini\": 154, \"rankvar\": 65}, {\"group\": [54.0, 30.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"347\", \"clust\": 54, \"rank\": 56, \"ini\": 153, \"rankvar\": 110}, {\"group\": [281.0, 120.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"348\", \"clust\": 282, \"rank\": 490, \"ini\": 152, \"rankvar\": 332}, {\"group\": [291.0, 123.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"349\", \"clust\": 290, \"rank\": 445, \"ini\": 151, \"rankvar\": 360}, {\"group\": [384.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"350\", \"clust\": 384, \"rank\": 105, \"ini\": 150, \"rankvar\": 215}, {\"group\": [79.0, 42.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"351\", \"clust\": 79, \"rank\": 360, \"ini\": 149, \"rankvar\": 71}, {\"group\": [258.0, 109.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"352\", \"clust\": 258, \"rank\": 262, \"ini\": 148, \"rankvar\": 237}, {\"group\": [198.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"353\", \"clust\": 197, \"rank\": 353, \"ini\": 147, \"rankvar\": 139}, {\"group\": [35.0, 21.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"354\", \"clust\": 35, \"rank\": 316, \"ini\": 146, \"rankvar\": 135}, {\"group\": [395.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"355\", \"clust\": 391, \"rank\": 76, \"ini\": 145, \"rankvar\": 106}, {\"group\": [170.0, 78.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"356\", \"clust\": 170, \"rank\": 303, \"ini\": 144, \"rankvar\": 57}, {\"group\": [368.0, 148.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"357\", \"clust\": 368, \"rank\": 20, \"ini\": 143, \"rankvar\": 29}, {\"group\": [358.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"358\", \"clust\": 356, \"rank\": 344, \"ini\": 142, \"rankvar\": 125}, {\"group\": [106.0, 53.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"359\", \"clust\": 105, \"rank\": 166, \"ini\": 141, \"rankvar\": 461}, {\"group\": [360.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"360\", \"clust\": 359, \"rank\": 378, \"ini\": 140, \"rankvar\": 200}, {\"group\": [149.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"361\", \"clust\": 148, \"rank\": 370, \"ini\": 139, \"rankvar\": 213}, {\"group\": [420.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"362\", \"clust\": 419, \"rank\": 309, \"ini\": 138, \"rankvar\": 191}, {\"group\": [476.0, 182.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"363\", \"clust\": 476, \"rank\": 355, \"ini\": 137, \"rankvar\": 145}, {\"group\": [191.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"364\", \"clust\": 190, \"rank\": 288, \"ini\": 136, \"rankvar\": 435}, {\"group\": [332.0, 139.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"365\", \"clust\": 331, \"rank\": 276, \"ini\": 135, \"rankvar\": 156}, {\"group\": [243.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"366\", \"clust\": 241, \"rank\": 182, \"ini\": 134, \"rankvar\": 50}, {\"group\": [205.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"367\", \"clust\": 204, \"rank\": 492, \"ini\": 133, \"rankvar\": 122}, {\"group\": [98.0, 50.0, 19.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"368\", \"clust\": 95, \"rank\": 60, \"ini\": 132, \"rankvar\": 491}, {\"group\": [349.0, 144.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"369\", \"clust\": 350, \"rank\": 154, \"ini\": 131, \"rankvar\": 219}, {\"group\": [356.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"370\", \"clust\": 357, \"rank\": 308, \"ini\": 130, \"rankvar\": 12}, {\"group\": [473.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"371\", \"clust\": 474, \"rank\": 496, \"ini\": 129, \"rankvar\": 54}, {\"group\": [359.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"372\", \"clust\": 355, \"rank\": 230, \"ini\": 128, \"rankvar\": 387}, {\"group\": [168.0, 77.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"373\", \"clust\": 164, \"rank\": 129, \"ini\": 127, \"rankvar\": 375}, {\"group\": [21.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"374\", \"clust\": 23, \"rank\": 341, \"ini\": 126, \"rankvar\": 226}, {\"group\": [64.0, 37.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"375\", \"clust\": 64, \"rank\": 318, \"ini\": 125, \"rankvar\": 208}, {\"group\": [440.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"376\", \"clust\": 439, \"rank\": 473, \"ini\": 124, \"rankvar\": 201}, {\"group\": [166.0, 76.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"377\", \"clust\": 167, \"rank\": 139, \"ini\": 123, \"rankvar\": 304}, {\"group\": [12.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"378\", \"clust\": 11, \"rank\": 143, \"ini\": 122, \"rankvar\": 459}, {\"group\": [445.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"379\", \"clust\": 446, \"rank\": 34, \"ini\": 121, \"rankvar\": 172}, {\"group\": [379.0, 153.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"380\", \"clust\": 377, \"rank\": 120, \"ini\": 120, \"rankvar\": 412}, {\"group\": [22.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"381\", \"clust\": 21, \"rank\": 347, \"ini\": 119, \"rankvar\": 266}, {\"group\": [390.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"382\", \"clust\": 390, \"rank\": 435, \"ini\": 118, \"rankvar\": 272}, {\"group\": [241.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"383\", \"clust\": 242, \"rank\": 395, \"ini\": 117, \"rankvar\": 250}, {\"group\": [421.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"384\", \"clust\": 420, \"rank\": 277, \"ini\": 116, \"rankvar\": 40}, {\"group\": [178.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"385\", \"clust\": 177, \"rank\": 416, \"ini\": 115, \"rankvar\": 204}, {\"group\": [8.0, 6.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"386\", \"clust\": 8, \"rank\": 48, \"ini\": 114, \"rankvar\": 383}, {\"group\": [36.0, 21.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"387\", \"clust\": 36, \"rank\": 425, \"ini\": 113, \"rankvar\": 163}, {\"group\": [297.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"388\", \"clust\": 298, \"rank\": 254, \"ini\": 112, \"rankvar\": 61}, {\"group\": [49.0, 27.0, 12.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"389\", \"clust\": 49, \"rank\": 115, \"ini\": 111, \"rankvar\": 450}, {\"group\": [477.0, 182.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"390\", \"clust\": 477, \"rank\": 393, \"ini\": 110, \"rankvar\": 311}, {\"group\": [188.0, 86.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"391\", \"clust\": 187, \"rank\": 293, \"ini\": 109, \"rankvar\": 212}, {\"group\": [111.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"392\", \"clust\": 111, \"rank\": 210, \"ini\": 108, \"rankvar\": 470}, {\"group\": [141.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"393\", \"clust\": 140, \"rank\": 145, \"ini\": 107, \"rankvar\": 327}, {\"group\": [278.0, 118.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"394\", \"clust\": 277, \"rank\": 103, \"ini\": 106, \"rankvar\": 472}, {\"group\": [176.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"395\", \"clust\": 175, \"rank\": 199, \"ini\": 105, \"rankvar\": 363}, {\"group\": [343.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"396\", \"clust\": 342, \"rank\": 437, \"ini\": 104, \"rankvar\": 232}, {\"group\": [129.0, 61.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"397\", \"clust\": 128, \"rank\": 397, \"ini\": 103, \"rankvar\": 69}, {\"group\": [293.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"398\", \"clust\": 292, \"rank\": 418, \"ini\": 102, \"rankvar\": 310}, {\"group\": [240.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"399\", \"clust\": 237, \"rank\": 236, \"ini\": 101, \"rankvar\": 399}, {\"group\": [309.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"400\", \"clust\": 306, \"rank\": 246, \"ini\": 100, \"rankvar\": 373}, {\"group\": [242.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"401\", \"clust\": 243, \"rank\": 461, \"ini\": 99, \"rankvar\": 338}, {\"group\": [306.0, 129.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"402\", \"clust\": 305, \"rank\": 427, \"ini\": 98, \"rankvar\": 81}, {\"group\": [410.0, 165.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"403\", \"clust\": 410, \"rank\": 286, \"ini\": 97, \"rankvar\": 342}, {\"group\": [320.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"404\", \"clust\": 320, \"rank\": 390, \"ini\": 96, \"rankvar\": 119}, {\"group\": [299.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"405\", \"clust\": 300, \"rank\": 367, \"ini\": 95, \"rankvar\": 464}, {\"group\": [317.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"406\", \"clust\": 317, \"rank\": 63, \"ini\": 94, \"rankvar\": 24}, {\"group\": [38.0, 22.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"407\", \"clust\": 38, \"rank\": 195, \"ini\": 93, \"rankvar\": 147}, {\"group\": [382.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"408\", \"clust\": 382, \"rank\": 439, \"ini\": 92, \"rankvar\": 193}, {\"group\": [123.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"409\", \"clust\": 124, \"rank\": 350, \"ini\": 91, \"rankvar\": 475}, {\"group\": [484.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"410\", \"clust\": 481, \"rank\": 434, \"ini\": 90, \"rankvar\": 146}, {\"group\": [138.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"411\", \"clust\": 138, \"rank\": 233, \"ini\": 89, \"rankvar\": 454}, {\"group\": [493.0, 187.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"412\", \"clust\": 495, \"rank\": 249, \"ini\": 88, \"rankvar\": 344}, {\"group\": [402.0, 161.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"413\", \"clust\": 403, \"rank\": 198, \"ini\": 87, \"rankvar\": 190}, {\"group\": [324.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"414\", \"clust\": 323, \"rank\": 362, \"ini\": 86, \"rankvar\": 299}, {\"group\": [315.0, 131.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"415\", \"clust\": 315, \"rank\": 153, \"ini\": 85, \"rankvar\": 419}, {\"group\": [330.0, 138.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"416\", \"clust\": 329, \"rank\": 69, \"ini\": 84, \"rankvar\": 171}, {\"group\": [61.0, 35.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"417\", \"clust\": 62, \"rank\": 201, \"ini\": 83, \"rankvar\": 244}, {\"group\": [398.0, 159.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"418\", \"clust\": 395, \"rank\": 300, \"ini\": 82, \"rankvar\": 111}, {\"group\": [252.0, 106.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"419\", \"clust\": 252, \"rank\": 252, \"ini\": 81, \"rankvar\": 346}, {\"group\": [295.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"420\", \"clust\": 294, \"rank\": 340, \"ini\": 80, \"rankvar\": 243}, {\"group\": [419.0, 170.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"421\", \"clust\": 418, \"rank\": 348, \"ini\": 79, \"rankvar\": 495}, {\"group\": [214.0, 94.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"422\", \"clust\": 214, \"rank\": 265, \"ini\": 78, \"rankvar\": 136}, {\"group\": [229.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"423\", \"clust\": 227, \"rank\": 123, \"ini\": 77, \"rankvar\": 3}, {\"group\": [338.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"424\", \"clust\": 337, \"rank\": 97, \"ini\": 76, \"rankvar\": 76}, {\"group\": [180.0, 81.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"425\", \"clust\": 180, \"rank\": 313, \"ini\": 75, \"rankvar\": 492}, {\"group\": [355.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"426\", \"clust\": 354, \"rank\": 494, \"ini\": 74, \"rankvar\": 343}, {\"group\": [159.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"427\", \"clust\": 160, \"rank\": 22, \"ini\": 73, \"rankvar\": 52}, {\"group\": [174.0, 79.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"428\", \"clust\": 171, \"rank\": 232, \"ini\": 72, \"rankvar\": 308}, {\"group\": [52.0, 29.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"429\", \"clust\": 51, \"rank\": 75, \"ini\": 71, \"rankvar\": 445}, {\"group\": [33.0, 19.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"430\", \"clust\": 34, \"rank\": 381, \"ini\": 70, \"rankvar\": 440}, {\"group\": [494.0, 187.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"431\", \"clust\": 496, \"rank\": 331, \"ini\": 69, \"rankvar\": 281}, {\"group\": [483.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"432\", \"clust\": 483, \"rank\": 495, \"ini\": 68, \"rankvar\": 10}, {\"group\": [181.0, 82.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"433\", \"clust\": 178, \"rank\": 92, \"ini\": 67, \"rankvar\": 469}, {\"group\": [5.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"434\", \"clust\": 6, \"rank\": 45, \"ini\": 66, \"rankvar\": 333}, {\"group\": [367.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"435\", \"clust\": 363, \"rank\": 432, \"ini\": 65, \"rankvar\": 463}, {\"group\": [357.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"436\", \"clust\": 358, \"rank\": 29, \"ini\": 64, \"rankvar\": 4}, {\"group\": [162.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"437\", \"clust\": 158, \"rank\": 259, \"ini\": 63, \"rankvar\": 259}, {\"group\": [378.0, 153.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"438\", \"clust\": 379, \"rank\": 206, \"ini\": 62, \"rankvar\": 70}, {\"group\": [142.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"439\", \"clust\": 141, \"rank\": 16, \"ini\": 61, \"rankvar\": 32}, {\"group\": [113.0, 56.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"440\", \"clust\": 108, \"rank\": 227, \"ini\": 60, \"rankvar\": 426}, {\"group\": [325.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"441\", \"clust\": 324, \"rank\": 324, \"ini\": 59, \"rankvar\": 340}, {\"group\": [351.0, 145.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"442\", \"clust\": 347, \"rank\": 163, \"ini\": 58, \"rankvar\": 490}, {\"group\": [461.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"443\", \"clust\": 462, \"rank\": 229, \"ini\": 57, \"rankvar\": 202}, {\"group\": [143.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"444\", \"clust\": 142, \"rank\": 142, \"ini\": 56, \"rankvar\": 89}, {\"group\": [225.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"445\", \"clust\": 225, \"rank\": 488, \"ini\": 55, \"rankvar\": 16}, {\"group\": [490.0, 185.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"446\", \"clust\": 487, \"rank\": 377, \"ini\": 54, \"rankvar\": 414}, {\"group\": [373.0, 150.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"447\", \"clust\": 371, \"rank\": 212, \"ini\": 53, \"rankvar\": 173}, {\"group\": [404.0, 161.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"448\", \"clust\": 402, \"rank\": 26, \"ini\": 52, \"rankvar\": 39}, {\"group\": [429.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"449\", \"clust\": 430, \"rank\": 407, \"ini\": 51, \"rankvar\": 7}, {\"group\": [9.0, 6.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"450\", \"clust\": 9, \"rank\": 215, \"ini\": 50, \"rankvar\": 366}, {\"group\": [77.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"451\", \"clust\": 76, \"rank\": 239, \"ini\": 49, \"rankvar\": 37}, {\"group\": [369.0, 148.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"452\", \"clust\": 369, \"rank\": 465, \"ini\": 48, \"rankvar\": 482}, {\"group\": [361.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"453\", \"clust\": 360, \"rank\": 429, \"ini\": 47, \"rankvar\": 23}, {\"group\": [268.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"454\", \"clust\": 267, \"rank\": 489, \"ini\": 46, \"rankvar\": 13}, {\"group\": [151.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"455\", \"clust\": 150, \"rank\": 482, \"ini\": 45, \"rankvar\": 319}, {\"group\": [496.0, 189.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"456\", \"clust\": 493, \"rank\": 12, \"ini\": 44, \"rankvar\": 196}, {\"group\": [455.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"457\", \"clust\": 452, \"rank\": 398, \"ini\": 43, \"rankvar\": 415}, {\"group\": [301.0, 127.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"458\", \"clust\": 295, \"rank\": 295, \"ini\": 42, \"rankvar\": 405}, {\"group\": [347.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"459\", \"clust\": 346, \"rank\": 58, \"ini\": 41, \"rankvar\": 184}, {\"group\": [446.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"460\", \"clust\": 444, \"rank\": 8, \"ini\": 40, \"rankvar\": 141}, {\"group\": [374.0, 151.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"461\", \"clust\": 370, \"rank\": 90, \"ini\": 39, \"rankvar\": 451}, {\"group\": [274.0, 115.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"462\", \"clust\": 275, \"rank\": 219, \"ini\": 38, \"rankvar\": 429}, {\"group\": [104.0, 52.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"463\", \"clust\": 103, \"rank\": 146, \"ini\": 37, \"rankvar\": 168}, {\"group\": [394.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"464\", \"clust\": 392, \"rank\": 358, \"ini\": 36, \"rankvar\": 130}, {\"group\": [124.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"465\", \"clust\": 122, \"rank\": 320, \"ini\": 35, \"rankvar\": 393}, {\"group\": [183.0, 83.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"466\", \"clust\": 182, \"rank\": 46, \"ini\": 34, \"rankvar\": 273}, {\"group\": [318.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"467\", \"clust\": 318, \"rank\": 346, \"ini\": 33, \"rankvar\": 103}, {\"group\": [462.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"468\", \"clust\": 463, \"rank\": 152, \"ini\": 32, \"rankvar\": 28}, {\"group\": [208.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"469\", \"clust\": 210, \"rank\": 463, \"ini\": 31, \"rankvar\": 114}, {\"group\": [203.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"470\", \"clust\": 202, \"rank\": 301, \"ini\": 30, \"rankvar\": 276}, {\"group\": [88.0, 45.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"471\", \"clust\": 87, \"rank\": 278, \"ini\": 29, \"rankvar\": 422}, {\"group\": [391.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"472\", \"clust\": 388, \"rank\": 299, \"ini\": 28, \"rankvar\": 108}, {\"group\": [393.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"473\", \"clust\": 394, \"rank\": 388, \"ini\": 27, \"rankvar\": 218}, {\"group\": [282.0, 120.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"474\", \"clust\": 283, \"rank\": 255, \"ini\": 26, \"rankvar\": 416}, {\"group\": [270.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"475\", \"clust\": 269, \"rank\": 469, \"ini\": 25, \"rankvar\": 160}, {\"group\": [463.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"476\", \"clust\": 461, \"rank\": 185, \"ini\": 24, \"rankvar\": 239}, {\"group\": [261.0, 111.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"477\", \"clust\": 261, \"rank\": 458, \"ini\": 23, \"rankvar\": 448}, {\"group\": [427.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"478\", \"clust\": 426, \"rank\": 339, \"ini\": 22, \"rankvar\": 403}, {\"group\": [481.0, 183.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"479\", \"clust\": 478, \"rank\": 162, \"ini\": 21, \"rankvar\": 99}, {\"group\": [112.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"480\", \"clust\": 112, \"rank\": 231, \"ini\": 20, \"rankvar\": 88}, {\"group\": [160.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"481\", \"clust\": 161, \"rank\": 257, \"ini\": 19, \"rankvar\": 474}, {\"group\": [201.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"482\", \"clust\": 198, \"rank\": 157, \"ini\": 18, \"rankvar\": 395}, {\"group\": [408.0, 164.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"483\", \"clust\": 405, \"rank\": 61, \"ini\": 17, \"rankvar\": 275}, {\"group\": [34.0, 20.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"484\", \"clust\": 32, \"rank\": 4, \"ini\": 16, \"rankvar\": 82}, {\"group\": [136.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"485\", \"clust\": 136, \"rank\": 281, \"ini\": 15, \"rankvar\": 315}, {\"group\": [403.0, 161.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"486\", \"clust\": 404, \"rank\": 202, \"ini\": 14, \"rankvar\": 398}, {\"group\": [110.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"487\", \"clust\": 110, \"rank\": 18, \"ini\": 13, \"rankvar\": 35}, {\"group\": [255.0, 108.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"488\", \"clust\": 255, \"rank\": 160, \"ini\": 12, \"rankvar\": 258}, {\"group\": [75.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"489\", \"clust\": 74, \"rank\": 442, \"ini\": 11, \"rankvar\": 230}, {\"group\": [95.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"490\", \"clust\": 94, \"rank\": 285, \"ini\": 10, \"rankvar\": 149}, {\"group\": [316.0, 132.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"491\", \"clust\": 313, \"rank\": 28, \"ini\": 9, \"rankvar\": 235}, {\"group\": [236.0, 100.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"492\", \"clust\": 233, \"rank\": 196, \"ini\": 8, \"rankvar\": 248}, {\"group\": [209.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"493\", \"clust\": 211, \"rank\": 456, \"ini\": 7, \"rankvar\": 116}, {\"group\": [232.0, 98.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"494\", \"clust\": 232, \"rank\": 194, \"ini\": 6, \"rankvar\": 255}, {\"group\": [65.0, 37.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"495\", \"clust\": 65, \"rank\": 260, \"ini\": 5, \"rankvar\": 328}, {\"group\": [336.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"496\", \"clust\": 335, \"rank\": 261, \"ini\": 4, \"rankvar\": 180}, {\"group\": [43.0, 25.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"497\", \"clust\": 42, \"rank\": 317, \"ini\": 3, \"rankvar\": 390}, {\"group\": [195.0, 89.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"498\", \"clust\": 195, \"rank\": 149, \"ini\": 2, \"rankvar\": 295}, {\"group\": [303.0, 128.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"499\", \"clust\": 303, \"rank\": 187, \"ini\": 1, \"rankvar\": 457}], \"col_nodes\": [{\"group\": [10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 4.0, 1.0], \"name\": \"0\", \"clust\": 0, \"rank\": 0, \"ini\": 10, \"rankvar\": 1}, {\"group\": [7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 3.0, 1.0], \"name\": \"1\", \"clust\": 8, \"rank\": 1, \"ini\": 9, \"rankvar\": 7}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 3, \"rank\": 3, \"ini\": 8, \"rankvar\": 0}, {\"group\": [8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 3.0, 1.0], \"name\": \"3\", \"clust\": 9, \"rank\": 9, \"ini\": 7, \"rankvar\": 9}, {\"group\": [9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 3.0, 1.0], \"name\": \"4\", \"clust\": 7, \"rank\": 2, \"ini\": 6, \"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\": \"5\", \"clust\": 1, \"rank\": 6, \"ini\": 5, \"rankvar\": 5}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 4, \"rank\": 5, \"ini\": 4, \"rankvar\": 2}, {\"group\": [5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 2.0, 1.0], \"name\": \"7\", \"clust\": 5, \"rank\": 7, \"ini\": 3, \"rankvar\": 6}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 2, \"rank\": 4, \"ini\": 2, \"rankvar\": 3}, {\"group\": [6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 2.0, 1.0], \"name\": \"9\", \"clust\": 6, \"rank\": 8, \"ini\": 1, \"rankvar\": 4}]}}, {\"N_row_sum\": 250, \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"group\": [28.0, 16.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"346\", \"clust\": 27, \"rank\": 249, \"ini\": 250, \"rankvar\": 33}, {\"group\": [176.0, 93.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"325\", \"clust\": 173, \"rank\": 248, \"ini\": 249, \"rankvar\": 0}, {\"group\": [174.0, 93.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"107\", \"clust\": 174, \"rank\": 247, \"ini\": 248, \"rankvar\": 5}, {\"group\": [179.0, 95.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"371\", \"clust\": 180, \"rank\": 246, \"ini\": 247, \"rankvar\": 23}, {\"group\": [175.0, 93.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"432\", \"clust\": 175, \"rank\": 245, \"ini\": 246, \"rankvar\": 2}, {\"group\": [132.0, 70.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"426\", \"clust\": 131, \"rank\": 244, \"ini\": 245, \"rankvar\": 177}, {\"group\": [97.0, 52.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"10\", \"clust\": 97, \"rank\": 243, \"ini\": 244, \"rankvar\": 87}, {\"group\": [92.0, 49.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"367\", \"clust\": 95, \"rank\": 242, \"ini\": 243, \"rankvar\": 61}, {\"group\": [122.0, 65.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"247\", \"clust\": 122, \"rank\": 241, \"ini\": 242, \"rankvar\": 88}, {\"group\": [65.0, 34.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"348\", \"clust\": 67, \"rank\": 240, \"ini\": 241, \"rankvar\": 169}, {\"group\": [156.0, 81.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"454\", \"clust\": 159, \"rank\": 239, \"ini\": 240, \"rankvar\": 4}, {\"group\": [106.0, 58.0, 20.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"445\", \"clust\": 106, \"rank\": 238, \"ini\": 239, \"rankvar\": 6}, {\"group\": [63.0, 33.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"66\", \"clust\": 65, \"rank\": 237, \"ini\": 238, \"rankvar\": 32}, {\"group\": [237.0, 129.0, 41.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"269\", \"clust\": 240, \"rank\": 236, \"ini\": 237, \"rankvar\": 219}, {\"group\": [29.0, 16.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"104\", \"clust\": 28, \"rank\": 235, \"ini\": 236, \"rankvar\": 7}, {\"group\": [93.0, 49.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"287\", \"clust\": 96, \"rank\": 234, \"ini\": 235, \"rankvar\": 147}, {\"group\": [185.0, 97.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"282\", \"clust\": 184, \"rank\": 233, \"ini\": 234, \"rankvar\": 218}, {\"group\": [14.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"455\", \"clust\": 14, \"rank\": 232, \"ini\": 233, \"rankvar\": 163}, {\"group\": [238.0, 129.0, 41.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"113\", \"clust\": 241, \"rank\": 231, \"ini\": 232, \"rankvar\": 220}, {\"group\": [102.0, 55.0, 20.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"201\", \"clust\": 101, \"rank\": 230, \"ini\": 231, \"rankvar\": 151}, {\"group\": [32.0, 16.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"25\", \"clust\": 29, \"rank\": 229, \"ini\": 230, \"rankvar\": 38}, {\"group\": [157.0, 81.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"213\", \"clust\": 160, \"rank\": 228, \"ini\": 229, \"rankvar\": 13}, {\"group\": [30.0, 16.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"249\", \"clust\": 30, \"rank\": 227, \"ini\": 228, \"rankvar\": 58}, {\"group\": [6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"309\", \"clust\": 7, \"rank\": 226, \"ini\": 227, \"rankvar\": 114}, {\"group\": [190.0, 99.0, 33.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"41\", \"clust\": 189, \"rank\": 225, \"ini\": 226, \"rankvar\": 79}, {\"group\": [154.0, 80.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"224\", \"clust\": 154, \"rank\": 224, \"ini\": 225, \"rankvar\": 244}, {\"group\": [31.0, 16.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"376\", \"clust\": 31, \"rank\": 223, \"ini\": 224, \"rankvar\": 102}, {\"group\": [88.0, 47.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"281\", \"clust\": 90, \"rank\": 222, \"ini\": 223, \"rankvar\": 125}, {\"group\": [76.0, 41.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"302\", \"clust\": 76, \"rank\": 221, \"ini\": 222, \"rankvar\": 189}, {\"group\": [231.0, 125.0, 40.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"89\", \"clust\": 231, \"rank\": 220, \"ini\": 221, \"rankvar\": 75}, {\"group\": [148.0, 79.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"475\", \"clust\": 148, \"rank\": 219, \"ini\": 220, \"rankvar\": 82}, {\"group\": [162.0, 84.0, 28.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"336\", \"clust\": 162, \"rank\": 218, \"ini\": 219, \"rankvar\": 230}, {\"group\": [127.0, 67.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"262\", \"clust\": 124, \"rank\": 217, \"ini\": 218, \"rankvar\": 115}, {\"group\": [77.0, 41.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"198\", \"clust\": 77, \"rank\": 216, \"ini\": 217, \"rankvar\": 44}, {\"group\": [128.0, 68.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"452\", \"clust\": 127, \"rank\": 215, \"ini\": 216, \"rankvar\": 240}, {\"group\": [187.0, 98.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"167\", \"clust\": 187, \"rank\": 214, \"ini\": 215, \"rankvar\": 25}, {\"group\": [70.0, 38.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"469\", \"clust\": 71, \"rank\": 213, \"ini\": 214, \"rankvar\": 55}, {\"group\": [150.0, 79.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"165\", \"clust\": 150, \"rank\": 212, \"ini\": 213, \"rankvar\": 27}, {\"group\": [207.0, 109.0, 35.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"401\", \"clust\": 206, \"rank\": 211, \"ini\": 212, \"rankvar\": 173}, {\"group\": [164.0, 86.0, 28.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"182\", \"clust\": 161, \"rank\": 210, \"ini\": 211, \"rankvar\": 231}, {\"group\": [220.0, 119.0, 38.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"59\", \"clust\": 214, \"rank\": 209, \"ini\": 210, \"rankvar\": 183}, {\"group\": [147.0, 78.0, 26.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"477\", \"clust\": 144, \"rank\": 208, \"ini\": 209, \"rankvar\": 227}, {\"group\": [119.0, 64.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"71\", \"clust\": 120, \"rank\": 207, \"ini\": 208, \"rankvar\": 43}, {\"group\": [71.0, 38.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"493\", \"clust\": 72, \"rank\": 206, \"ini\": 207, \"rankvar\": 56}, {\"group\": [198.0, 105.0, 34.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"229\", \"clust\": 199, \"rank\": 205, \"ini\": 206, \"rankvar\": 210}, {\"group\": [41.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"95\", \"clust\": 41, \"rank\": 204, \"ini\": 205, \"rankvar\": 204}, {\"group\": [228.0, 125.0, 40.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"126\", \"clust\": 229, \"rank\": 203, \"ini\": 204, \"rankvar\": 28}, {\"group\": [59.0, 30.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"112\", \"clust\": 60, \"rank\": 202, \"ini\": 203, \"rankvar\": 85}, {\"group\": [225.0, 123.0, 40.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"195\", \"clust\": 225, \"rank\": 201, \"ini\": 202, \"rankvar\": 159}, {\"group\": [103.0, 56.0, 20.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"342\", \"clust\": 102, \"rank\": 200, \"ini\": 201, \"rankvar\": 239}, {\"group\": [199.0, 105.0, 34.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"130\", \"clust\": 200, \"rank\": 199, \"ini\": 200, \"rankvar\": 113}, {\"group\": [60.0, 30.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"36\", \"clust\": 61, \"rank\": 198, \"ini\": 199, \"rankvar\": 202}, {\"group\": [107.0, 58.0, 20.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"34\", \"clust\": 107, \"rank\": 197, \"ini\": 198, \"rankvar\": 19}, {\"group\": [113.0, 62.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"146\", \"clust\": 113, \"rank\": 196, \"ini\": 197, \"rankvar\": 68}, {\"group\": [191.0, 100.0, 33.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"349\", \"clust\": 190, \"rank\": 195, \"ini\": 196, \"rankvar\": 184}, {\"group\": [99.0, 53.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"64\", \"clust\": 99, \"rank\": 194, \"ini\": 195, \"rankvar\": 12}, {\"group\": [221.0, 120.0, 39.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"190\", \"clust\": 222, \"rank\": 193, \"ini\": 194, \"rankvar\": 223}, {\"group\": [171.0, 91.0, 30.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"489\", \"clust\": 171, \"rank\": 192, \"ini\": 193, \"rankvar\": 119}, {\"group\": [229.0, 125.0, 40.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"61\", \"clust\": 230, \"rank\": 191, \"ini\": 192, \"rankvar\": 37}, {\"group\": [104.0, 57.0, 20.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"19\", \"clust\": 103, \"rank\": 190, \"ini\": 191, \"rankvar\": 186}, {\"group\": [20.0, 11.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"408\", \"clust\": 20, \"rank\": 189, \"ini\": 190, \"rankvar\": 98}, {\"group\": [117.0, 63.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"221\", \"clust\": 116, \"rank\": 188, \"ini\": 189, \"rankvar\": 150}, {\"group\": [232.0, 125.0, 40.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"396\", \"clust\": 232, \"rank\": 187, \"ini\": 188, \"rankvar\": 120}, {\"group\": [91.0, 48.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"96\", \"clust\": 86, \"rank\": 186, \"ini\": 187, \"rankvar\": 229}, {\"group\": [86.0, 46.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"382\", \"clust\": 87, \"rank\": 185, \"ini\": 186, \"rankvar\": 139}, {\"group\": [177.0, 94.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"410\", \"clust\": 176, \"rank\": 184, \"ini\": 185, \"rankvar\": 74}, {\"group\": [180.0, 95.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"326\", \"clust\": 181, \"rank\": 183, \"ini\": 184, \"rankvar\": 31}, {\"group\": [129.0, 68.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"435\", \"clust\": 128, \"rank\": 182, \"ini\": 183, \"rankvar\": 233}, {\"group\": [151.0, 79.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"310\", \"clust\": 151, \"rank\": 181, \"ini\": 182, \"rankvar\": 129}, {\"group\": [82.0, 44.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"21\", \"clust\": 82, \"rank\": 180, \"ini\": 181, \"rankvar\": 30}, {\"group\": [136.0, 71.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"453\", \"clust\": 137, \"rank\": 179, \"ini\": 180, \"rankvar\": 11}, {\"group\": [125.0, 67.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"293\", \"clust\": 125, \"rank\": 178, \"ini\": 179, \"rankvar\": 107}, {\"group\": [159.0, 81.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"402\", \"clust\": 157, \"rank\": 177, \"ini\": 178, \"rankvar\": 40}, {\"group\": [130.0, 69.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"33\", \"clust\": 129, \"rank\": 176, \"ini\": 177, \"rankvar\": 124}, {\"group\": [215.0, 116.0, 38.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"387\", \"clust\": 215, \"rank\": 175, \"ini\": 176, \"rankvar\": 83}, {\"group\": [181.0, 95.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"22\", \"clust\": 179, \"rank\": 174, \"ini\": 175, \"rankvar\": 117}, {\"group\": [163.0, 85.0, 28.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"323\", \"clust\": 163, \"rank\": 173, \"ini\": 174, \"rankvar\": 51}, {\"group\": [131.0, 69.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"158\", \"clust\": 130, \"rank\": 172, \"ini\": 173, \"rankvar\": 64}, {\"group\": [241.0, 130.0, 41.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"245\", \"clust\": 237, \"rank\": 171, \"ini\": 172, \"rankvar\": 154}, {\"group\": [188.0, 98.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"67\", \"clust\": 188, \"rank\": 170, \"ini\": 171, \"rankvar\": 60}, {\"group\": [55.0, 29.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"76\", \"clust\": 55, \"rank\": 169, \"ini\": 170, \"rankvar\": 34}, {\"group\": [192.0, 101.0, 33.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"398\", \"clust\": 191, \"rank\": 168, \"ini\": 169, \"rankvar\": 155}, {\"group\": [7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"211\", \"clust\": 8, \"rank\": 167, \"ini\": 168, \"rankvar\": 78}, {\"group\": [217.0, 117.0, 38.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"385\", \"clust\": 218, \"rank\": 166, \"ini\": 167, \"rankvar\": 104}, {\"group\": [8.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"218\", \"clust\": 6, \"rank\": 165, \"ini\": 166, \"rankvar\": 205}, {\"group\": [115.0, 63.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"268\", \"clust\": 117, \"rank\": 164, \"ini\": 165, \"rankvar\": 158}, {\"group\": [234.0, 127.0, 41.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"40\", \"clust\": 235, \"rank\": 163, \"ini\": 164, \"rankvar\": 132}, {\"group\": [50.0, 26.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"292\", \"clust\": 47, \"rank\": 162, \"ini\": 163, \"rankvar\": 161}, {\"group\": [189.0, 98.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"93\", \"clust\": 186, \"rank\": 161, \"ini\": 162, \"rankvar\": 226}, {\"group\": [194.0, 102.0, 33.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"63\", \"clust\": 195, \"rank\": 160, \"ini\": 161, \"rankvar\": 157}, {\"group\": [101.0, 54.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"289\", \"clust\": 69, \"rank\": 159, \"ini\": 160, \"rankvar\": 243}, {\"group\": [205.0, 109.0, 35.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"300\", \"clust\": 204, \"rank\": 158, \"ini\": 159, \"rankvar\": 167}, {\"group\": [56.0, 29.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"449\", \"clust\": 56, \"rank\": 157, \"ini\": 158, \"rankvar\": 1}, {\"group\": [142.0, 74.0, 25.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"79\", \"clust\": 142, \"rank\": 156, \"ini\": 157, \"rankvar\": 17}, {\"group\": [152.0, 80.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"60\", \"clust\": 152, \"rank\": 155, \"ini\": 156, \"rankvar\": 149}, {\"group\": [153.0, 80.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"315\", \"clust\": 153, \"rank\": 154, \"ini\": 155, \"rankvar\": 57}, {\"group\": [57.0, 29.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"295\", \"clust\": 57, \"rank\": 153, \"ini\": 154, \"rankvar\": 77}, {\"group\": [108.0, 58.0, 20.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"44\", \"clust\": 105, \"rank\": 152, \"ini\": 153, \"rankvar\": 48}, {\"group\": [145.0, 77.0, 26.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"28\", \"clust\": 145, \"rank\": 151, \"ini\": 152, \"rankvar\": 221}, {\"group\": [242.0, 131.0, 42.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"70\", \"clust\": 233, \"rank\": 150, \"ini\": 151, \"rankvar\": 216}, {\"group\": [15.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"223\", \"clust\": 15, \"rank\": 149, \"ini\": 150, \"rankvar\": 24}, {\"group\": [240.0, 129.0, 41.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"457\", \"clust\": 238, \"rank\": 148, \"ini\": 149, \"rankvar\": 207}, {\"group\": [178.0, 94.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"397\", \"clust\": 177, \"rank\": 147, \"ini\": 148, \"rankvar\": 35}, {\"group\": [126.0, 67.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"316\", \"clust\": 126, \"rank\": 146, \"ini\": 147, \"rankvar\": 45}, {\"group\": [208.0, 109.0, 35.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"383\", \"clust\": 207, \"rank\": 145, \"ini\": 146, \"rankvar\": 130}, {\"group\": [193.0, 101.0, 33.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"306\", \"clust\": 192, \"rank\": 144, \"ini\": 145, \"rankvar\": 142}, {\"group\": [201.0, 106.0, 34.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"390\", \"clust\": 202, \"rank\": 143, \"ini\": 144, \"rankvar\": 156}, {\"group\": [36.0, 18.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"239\", \"clust\": 36, \"rank\": 142, \"ini\": 143, \"rankvar\": 180}, {\"group\": [233.0, 126.0, 40.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"139\", \"clust\": 227, \"rank\": 141, \"ini\": 142, \"rankvar\": 228}, {\"group\": [224.0, 122.0, 39.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"404\", \"clust\": 220, \"rank\": 140, \"ini\": 141, \"rankvar\": 59}, {\"group\": [169.0, 90.0, 30.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"267\", \"clust\": 169, \"rank\": 139, \"ini\": 140, \"rankvar\": 138}, {\"group\": [89.0, 47.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"473\", \"clust\": 91, \"rank\": 138, \"ini\": 139, \"rankvar\": 111}, {\"group\": [118.0, 63.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"333\", \"clust\": 115, \"rank\": 137, \"ini\": 138, \"rankvar\": 170}, {\"group\": [239.0, 129.0, 41.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"288\", \"clust\": 239, \"rank\": 136, \"ini\": 137, \"rankvar\": 95}, {\"group\": [183.0, 96.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"16\", \"clust\": 182, \"rank\": 135, \"ini\": 136, \"rankvar\": 18}, {\"group\": [123.0, 65.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"173\", \"clust\": 123, \"rank\": 134, \"ini\": 135, \"rankvar\": 122}, {\"group\": [230.0, 125.0, 40.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"73\", \"clust\": 228, \"rank\": 133, \"ini\": 134, \"rankvar\": 22}, {\"group\": [146.0, 77.0, 26.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"338\", \"clust\": 146, \"rank\": 132, \"ini\": 133, \"rankvar\": 241}, {\"group\": [96.0, 51.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"430\", \"clust\": 92, \"rank\": 131, \"ini\": 132, \"rankvar\": 222}, {\"group\": [46.0, 23.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"291\", \"clust\": 45, \"rank\": 130, \"ini\": 131, \"rankvar\": 175}, {\"group\": [138.0, 71.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"144\", \"clust\": 136, \"rank\": 129, \"ini\": 130, \"rankvar\": 20}, {\"group\": [137.0, 71.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"360\", \"clust\": 138, \"rank\": 128, \"ini\": 129, \"rankvar\": 101}, {\"group\": [236.0, 128.0, 41.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"446\", \"clust\": 234, \"rank\": 127, \"ini\": 128, \"rankvar\": 206}, {\"group\": [140.0, 73.0, 25.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"331\", \"clust\": 140, \"rank\": 126, \"ini\": 127, \"rankvar\": 127}, {\"group\": [141.0, 73.0, 25.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"250\", \"clust\": 141, \"rank\": 125, \"ini\": 126, \"rankvar\": 145}, {\"group\": [64.0, 33.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"105\", \"clust\": 66, \"rank\": 124, \"ini\": 125, \"rankvar\": 165}, {\"group\": [12.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"207\", \"clust\": 12, \"rank\": 123, \"ini\": 124, \"rankvar\": 84}, {\"group\": [98.0, 52.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"18\", \"clust\": 98, \"rank\": 122, \"ini\": 123, \"rankvar\": 54}, {\"group\": [114.0, 62.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"122\", \"clust\": 114, \"rank\": 121, \"ini\": 122, \"rankvar\": 110}, {\"group\": [13.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"361\", \"clust\": 13, \"rank\": 120, \"ini\": 121, \"rankvar\": 109}, {\"group\": [111.0, 60.0, 21.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"174\", \"clust\": 110, \"rank\": 119, \"ini\": 120, \"rankvar\": 224}, {\"group\": [47.0, 23.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"69\", \"clust\": 46, \"rank\": 118, \"ini\": 119, \"rankvar\": 213}, {\"group\": [195.0, 102.0, 33.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"405\", \"clust\": 196, \"rank\": 117, \"ini\": 118, \"rankvar\": 234}, {\"group\": [186.0, 97.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"180\", \"clust\": 185, \"rank\": 116, \"ini\": 117, \"rankvar\": 97}, {\"group\": [204.0, 108.0, 34.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"150\", \"clust\": 197, \"rank\": 115, \"ini\": 116, \"rankvar\": 195}, {\"group\": [72.0, 39.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"197\", \"clust\": 70, \"rank\": 114, \"ini\": 115, \"rankvar\": 162}, {\"group\": [33.0, 17.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"259\", \"clust\": 33, \"rank\": 113, \"ini\": 114, \"rankvar\": 93}, {\"group\": [25.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"414\", \"clust\": 25, \"rank\": 112, \"ini\": 113, \"rankvar\": 153}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"256\", \"clust\": 1, \"rank\": 111, \"ini\": 112, \"rankvar\": 225}, {\"group\": [43.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"351\", \"clust\": 40, \"rank\": 110, \"ini\": 111, \"rankvar\": 36}, {\"group\": [161.0, 83.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"234\", \"clust\": 147, \"rank\": 109, \"ini\": 110, \"rankvar\": 181}, {\"group\": [90.0, 47.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"464\", \"clust\": 89, \"rank\": 108, \"ini\": 109, \"rankvar\": 65}, {\"group\": [213.0, 114.0, 37.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"99\", \"clust\": 212, \"rank\": 107, \"ini\": 108, \"rankvar\": 214}, {\"group\": [109.0, 59.0, 20.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"237\", \"clust\": 108, \"rank\": 106, \"ini\": 107, \"rankvar\": 39}, {\"group\": [202.0, 106.0, 34.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"363\", \"clust\": 203, \"rank\": 105, \"ini\": 106, \"rankvar\": 73}, {\"group\": [200.0, 105.0, 34.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"251\", \"clust\": 198, \"rank\": 104, \"ini\": 105, \"rankvar\": 196}, {\"group\": [158.0, 81.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"353\", \"clust\": 158, \"rank\": 103, \"ini\": 104, \"rankvar\": 69}, {\"group\": [139.0, 72.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"244\", \"clust\": 135, \"rank\": 102, \"ini\": 103, \"rankvar\": 199}, {\"group\": [10.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"80\", \"clust\": 9, \"rank\": 101, \"ini\": 102, \"rankvar\": 248}, {\"group\": [4.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"409\", \"clust\": 3, \"rank\": 100, \"ini\": 101, \"rankvar\": 236}, {\"group\": [34.0, 17.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"277\", \"clust\": 34, \"rank\": 99, \"ini\": 100, \"rankvar\": 8}, {\"group\": [62.0, 32.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"421\", \"clust\": 50, \"rank\": 98, \"ini\": 99, \"rankvar\": 247}, {\"group\": [75.0, 40.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"381\", \"clust\": 73, \"rank\": 97, \"ini\": 98, \"rankvar\": 136}, {\"group\": [48.0, 24.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"467\", \"clust\": 48, \"rank\": 96, \"ini\": 97, \"rankvar\": 49}, {\"group\": [22.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"297\", \"clust\": 19, \"rank\": 95, \"ini\": 96, \"rankvar\": 164}, {\"group\": [134.0, 70.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"358\", \"clust\": 133, \"rank\": 94, \"ini\": 95, \"rankvar\": 63}, {\"group\": [80.0, 43.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"175\", \"clust\": 80, \"rank\": 93, \"ini\": 94, \"rankvar\": 103}, {\"group\": [121.0, 64.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"65\", \"clust\": 119, \"rank\": 92, \"ini\": 93, \"rankvar\": 10}, {\"group\": [73.0, 40.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"374\", \"clust\": 74, \"rank\": 91, \"ini\": 92, \"rankvar\": 116}, {\"group\": [196.0, 103.0, 33.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"420\", \"clust\": 194, \"rank\": 90, \"ini\": 91, \"rankvar\": 126}, {\"group\": [53.0, 28.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"478\", \"clust\": 53, \"rank\": 89, \"ini\": 90, \"rankvar\": 198}, {\"group\": [133.0, 70.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"312\", \"clust\": 132, \"rank\": 88, \"ini\": 89, \"rankvar\": 41}, {\"group\": [39.0, 20.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"42\", \"clust\": 38, \"rank\": 87, \"ini\": 88, \"rankvar\": 140}, {\"group\": [105.0, 57.0, 20.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"339\", \"clust\": 104, \"rank\": 86, \"ini\": 87, \"rankvar\": 135}, {\"group\": [23.0, 13.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"108\", \"clust\": 23, \"rank\": 85, \"ini\": 86, \"rankvar\": 137}, {\"group\": [94.0, 49.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"228\", \"clust\": 94, \"rank\": 84, \"ini\": 85, \"rankvar\": 134}, {\"group\": [170.0, 90.0, 30.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"209\", \"clust\": 170, \"rank\": 83, \"ini\": 84, \"rankvar\": 16}, {\"group\": [58.0, 29.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"159\", \"clust\": 58, \"rank\": 82, \"ini\": 83, \"rankvar\": 128}, {\"group\": [165.0, 87.0, 29.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"431\", \"clust\": 164, \"rank\": 81, \"ini\": 82, \"rankvar\": 144}, {\"group\": [246.0, 135.0, 44.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"157\", \"clust\": 248, \"rank\": 80, \"ini\": 81, \"rankvar\": 246}, {\"group\": [223.0, 121.0, 39.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"83\", \"clust\": 221, \"rank\": 79, \"ini\": 80, \"rankvar\": 118}, {\"group\": [3.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"27\", \"clust\": 0, \"rank\": 78, \"ini\": 79, \"rankvar\": 215}, {\"group\": [100.0, 53.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"274\", \"clust\": 100, \"rank\": 77, \"ini\": 78, \"rankvar\": 94}, {\"group\": [116.0, 63.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 118, \"rank\": 76, \"ini\": 77, \"rankvar\": 91}, {\"group\": [11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"264\", \"clust\": 10, \"rank\": 75, \"ini\": 76, \"rankvar\": 191}, {\"group\": [26.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"441\", \"clust\": 26, \"rank\": 74, \"ini\": 75, \"rankvar\": 174}, {\"group\": [51.0, 27.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"210\", \"clust\": 51, \"rank\": 73, \"ini\": 74, \"rankvar\": 197}, {\"group\": [78.0, 42.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"24\", \"clust\": 78, \"rank\": 72, \"ini\": 73, \"rankvar\": 71}, {\"group\": [197.0, 104.0, 33.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"110\", \"clust\": 193, \"rank\": 71, \"ini\": 72, \"rankvar\": 211}, {\"group\": [5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"465\", \"clust\": 4, \"rank\": 70, \"ini\": 71, \"rankvar\": 194}, {\"group\": [19.0, 10.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"307\", \"clust\": 16, \"rank\": 69, \"ini\": 70, \"rankvar\": 203}, {\"group\": [167.0, 89.0, 30.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"375\", \"clust\": 167, \"rank\": 68, \"ini\": 69, \"rankvar\": 106}, {\"group\": [211.0, 112.0, 37.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"497\", \"clust\": 210, \"rank\": 67, \"ini\": 68, \"rankvar\": 192}, {\"group\": [216.0, 116.0, 38.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"354\", \"clust\": 216, \"rank\": 66, \"ini\": 67, \"rankvar\": 66}, {\"group\": [16.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"231\", \"clust\": 11, \"rank\": 65, \"ini\": 66, \"rankvar\": 146}, {\"group\": [160.0, 82.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"169\", \"clust\": 156, \"rank\": 64, \"ini\": 65, \"rankvar\": 112}, {\"group\": [247.0, 135.0, 44.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"425\", \"clust\": 249, \"rank\": 63, \"ini\": 64, \"rankvar\": 245}, {\"group\": [17.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"257\", \"clust\": 17, \"rank\": 62, \"ini\": 63, \"rankvar\": 47}, {\"group\": [222.0, 120.0, 39.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"327\", \"clust\": 223, \"rank\": 61, \"ini\": 62, \"rankvar\": 143}, {\"group\": [84.0, 45.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"334\", \"clust\": 84, \"rank\": 60, \"ini\": 61, \"rankvar\": 9}, {\"group\": [44.0, 22.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"362\", \"clust\": 43, \"rank\": 59, \"ini\": 60, \"rankvar\": 96}, {\"group\": [135.0, 70.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"370\", \"clust\": 134, \"rank\": 58, \"ini\": 59, \"rankvar\": 3}, {\"group\": [9.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"26\", \"clust\": 5, \"rank\": 57, \"ini\": 58, \"rankvar\": 100}, {\"group\": [235.0, 127.0, 41.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"332\", \"clust\": 236, \"rank\": 56, \"ini\": 57, \"rankvar\": 190}, {\"group\": [184.0, 96.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"278\", \"clust\": 183, \"rank\": 55, \"ini\": 56, \"rankvar\": 70}, {\"group\": [74.0, 40.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"62\", \"clust\": 75, \"rank\": 54, \"ini\": 55, \"rankvar\": 185}, {\"group\": [120.0, 64.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"356\", \"clust\": 121, \"rank\": 53, \"ini\": 54, \"rankvar\": 26}, {\"group\": [249.0, 137.0, 45.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"280\", \"clust\": 246, \"rank\": 52, \"ini\": 53, \"rankvar\": 182}, {\"group\": [95.0, 50.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"470\", \"clust\": 93, \"rank\": 51, \"ini\": 52, \"rankvar\": 141}, {\"group\": [85.0, 45.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"418\", \"clust\": 85, \"rank\": 50, \"ini\": 51, \"rankvar\": 52}, {\"group\": [87.0, 46.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"472\", \"clust\": 88, \"rank\": 49, \"ini\": 50, \"rankvar\": 50}, {\"group\": [166.0, 88.0, 29.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"199\", \"clust\": 165, \"rank\": 48, \"ini\": 49, \"rankvar\": 131}, {\"group\": [52.0, 27.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"296\", \"clust\": 52, \"rank\": 47, \"ini\": 48, \"rankvar\": 237}, {\"group\": [144.0, 76.0, 25.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"13\", \"clust\": 139, \"rank\": 46, \"ini\": 47, \"rankvar\": 249}, {\"group\": [209.0, 110.0, 36.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"458\", \"clust\": 208, \"rank\": 45, \"ini\": 46, \"rankvar\": 200}, {\"group\": [54.0, 28.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"329\", \"clust\": 54, \"rank\": 44, \"ini\": 45, \"rankvar\": 168}, {\"group\": [143.0, 75.0, 25.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"391\", \"clust\": 143, \"rank\": 43, \"ini\": 44, \"rankvar\": 108}, {\"group\": [182.0, 95.0, 32.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"81\", \"clust\": 178, \"rank\": 42, \"ini\": 43, \"rankvar\": 72}, {\"group\": [21.0, 11.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 21, \"rank\": 41, \"ini\": 42, \"rankvar\": 105}, {\"group\": [69.0, 37.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"125\", \"clust\": 62, \"rank\": 40, \"ini\": 41, \"rankvar\": 242}, {\"group\": [203.0, 107.0, 34.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"194\", \"clust\": 201, \"rank\": 39, \"ini\": 40, \"rankvar\": 193}, {\"group\": [112.0, 61.0, 21.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"364\", \"clust\": 111, \"rank\": 38, \"ini\": 39, \"rankvar\": 217}, {\"group\": [18.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"272\", \"clust\": 18, \"rank\": 37, \"ini\": 38, \"rankvar\": 121}, {\"group\": [68.0, 36.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"403\", \"clust\": 63, \"rank\": 36, \"ini\": 37, \"rankvar\": 176}, {\"group\": [38.0, 19.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"490\", \"clust\": 35, \"rank\": 35, \"ini\": 36, \"rankvar\": 76}, {\"group\": [218.0, 117.0, 38.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"343\", \"clust\": 219, \"rank\": 34, \"ini\": 35, \"rankvar\": 21}, {\"group\": [250.0, 138.0, 46.0, 13.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"132\", \"clust\": 242, \"rank\": 33, \"ini\": 34, \"rankvar\": 238}, {\"group\": [24.0, 13.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"49\", \"clust\": 24, \"rank\": 32, \"ini\": 33, \"rankvar\": 15}, {\"group\": [42.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"485\", \"clust\": 42, \"rank\": 31, \"ini\": 32, \"rankvar\": 160}, {\"group\": [67.0, 35.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 64, \"rank\": 30, \"ini\": 31, \"rankvar\": 232}, {\"group\": [2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"20\", \"clust\": 2, \"rank\": 29, \"ini\": 30, \"rankvar\": 201}, {\"group\": [40.0, 20.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"471\", \"clust\": 39, \"rank\": 28, \"ini\": 29, \"rankvar\": 209}, {\"group\": [45.0, 22.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"384\", \"clust\": 44, \"rank\": 27, \"ini\": 28, \"rankvar\": 14}, {\"group\": [227.0, 124.0, 40.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"365\", \"clust\": 224, \"rank\": 26, \"ini\": 27, \"rankvar\": 80}, {\"group\": [83.0, 44.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"276\", \"clust\": 83, \"rank\": 25, \"ini\": 26, \"rankvar\": 89}, {\"group\": [212.0, 113.0, 37.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"111\", \"clust\": 211, \"rank\": 24, \"ini\": 25, \"rankvar\": 148}, {\"group\": [35.0, 17.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"204\", \"clust\": 32, \"rank\": 23, \"ini\": 24, \"rankvar\": 53}, {\"group\": [219.0, 118.0, 38.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"149\", \"clust\": 217, \"rank\": 22, \"ini\": 23, \"rankvar\": 152}, {\"group\": [61.0, 31.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"84\", \"clust\": 59, \"rank\": 21, \"ini\": 22, \"rankvar\": 187}, {\"group\": [149.0, 79.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"233\", \"clust\": 149, \"rank\": 20, \"ini\": 21, \"rankvar\": 86}, {\"group\": [27.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"55\", \"clust\": 22, \"rank\": 19, \"ini\": 20, \"rankvar\": 212}, {\"group\": [49.0, 25.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"121\", \"clust\": 49, \"rank\": 18, \"ini\": 19, \"rankvar\": 42}, {\"group\": [155.0, 80.0, 27.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"154\", \"clust\": 155, \"rank\": 17, \"ini\": 18, \"rankvar\": 81}, {\"group\": [214.0, 115.0, 37.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"181\", \"clust\": 213, \"rank\": 16, \"ini\": 17, \"rankvar\": 179}, {\"group\": [79.0, 42.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"422\", \"clust\": 79, \"rank\": 15, \"ini\": 16, \"rankvar\": 67}, {\"group\": [37.0, 18.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"74\", \"clust\": 37, \"rank\": 14, \"ini\": 15, \"rankvar\": 46}, {\"group\": [173.0, 92.0, 31.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"319\", \"clust\": 166, \"rank\": 13, \"ini\": 14, \"rankvar\": 172}, {\"group\": [210.0, 111.0, 36.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"352\", \"clust\": 209, \"rank\": 12, \"ini\": 13, \"rankvar\": 123}, {\"group\": [226.0, 123.0, 40.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"496\", \"clust\": 226, \"rank\": 11, \"ini\": 12, \"rankvar\": 92}, {\"group\": [168.0, 89.0, 30.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"495\", \"clust\": 168, \"rank\": 10, \"ini\": 11, \"rankvar\": 166}, {\"group\": [243.0, 132.0, 43.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"437\", \"clust\": 244, \"rank\": 9, \"ini\": 10, \"rankvar\": 133}, {\"group\": [110.0, 59.0, 20.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"303\", \"clust\": 109, \"rank\": 8, \"ini\": 9, \"rankvar\": 99}, {\"group\": [244.0, 133.0, 43.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"481\", \"clust\": 245, \"rank\": 7, \"ini\": 8, \"rankvar\": 235}, {\"group\": [248.0, 136.0, 44.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"236\", \"clust\": 247, \"rank\": 6, \"ini\": 7, \"rankvar\": 171}, {\"group\": [66.0, 34.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"474\", \"clust\": 68, \"rank\": 5, \"ini\": 6, \"rankvar\": 208}, {\"group\": [81.0, 43.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"388\", \"clust\": 81, \"rank\": 4, \"ini\": 5, \"rankvar\": 29}, {\"group\": [172.0, 91.0, 30.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"184\", \"clust\": 172, \"rank\": 3, \"ini\": 4, \"rankvar\": 90}, {\"group\": [124.0, 66.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"419\", \"clust\": 112, \"rank\": 2, \"ini\": 3, \"rankvar\": 178}, {\"group\": [245.0, 134.0, 43.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"128\", \"clust\": 243, \"rank\": 1, \"ini\": 2, \"rankvar\": 188}, {\"group\": [206.0, 109.0, 35.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"77\", \"clust\": 205, \"rank\": 0, \"ini\": 1, \"rankvar\": 62}], \"col_nodes\": [{\"group\": [7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 6.0, 5.0, 3.0, 1.0], \"name\": \"0\", \"clust\": 6, \"rank\": 0, \"ini\": 10, \"rankvar\": 1}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 3.0, 3.0, 2.0, 1.0], \"name\": \"1\", \"clust\": 4, \"rank\": 9, \"ini\": 9, \"rankvar\": 5}, {\"group\": [8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 7.0, 6.0, 3.0, 1.0], \"name\": \"2\", \"clust\": 7, \"rank\": 1, \"ini\": 8, \"rankvar\": 0}, {\"group\": [5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 4.0, 3.0, 2.0, 1.0], \"name\": \"3\", \"clust\": 5, \"rank\": 8, \"ini\": 7, \"rankvar\": 9}, {\"group\": [6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 5.0, 4.0, 2.0, 1.0], \"name\": \"4\", \"clust\": 3, \"rank\": 6, \"ini\": 6, \"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\": \"5\", \"clust\": 1, \"rank\": 7, \"ini\": 5, \"rankvar\": 6}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 0, \"rank\": 2, \"ini\": 4, \"rankvar\": 3}, {\"group\": [9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 8.0, 7.0, 4.0, 1.0], \"name\": \"7\", \"clust\": 8, \"rank\": 5, \"ini\": 3, \"rankvar\": 7}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 2, \"rank\": 3, \"ini\": 2, \"rankvar\": 4}, {\"group\": [10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 9.0, 8.0, 4.0, 1.0], \"name\": \"9\", \"clust\": 9, \"rank\": 4, \"ini\": 1, \"rankvar\": 2}]}}, {\"N_row_sum\": 100, \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"group\": [42.0, 28.0, 15.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"346\", \"clust\": 43, \"rank\": 99, \"ini\": 100, \"rankvar\": 19}, {\"group\": [20.0, 13.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"325\", \"clust\": 17, \"rank\": 98, \"ini\": 99, \"rankvar\": 0}, {\"group\": [18.0, 13.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"107\", \"clust\": 18, \"rank\": 97, \"ini\": 98, \"rankvar\": 4}, {\"group\": [21.0, 14.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"371\", \"clust\": 21, \"rank\": 96, \"ini\": 97, \"rankvar\": 12}, {\"group\": [19.0, 13.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"432\", \"clust\": 19, \"rank\": 95, \"ini\": 96, \"rankvar\": 2}, {\"group\": [63.0, 42.0, 21.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"426\", \"clust\": 63, \"rank\": 94, \"ini\": 95, \"rankvar\": 75}, {\"group\": [82.0, 55.0, 26.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"10\", \"clust\": 82, \"rank\": 93, \"ini\": 94, \"rankvar\": 44}, {\"group\": [97.0, 65.0, 30.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"367\", \"clust\": 98, \"rank\": 92, \"ini\": 93, \"rankvar\": 33}, {\"group\": [56.0, 36.0, 18.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"247\", \"clust\": 56, \"rank\": 91, \"ini\": 92, \"rankvar\": 45}, {\"group\": [99.0, 66.0, 30.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"348\", \"clust\": 97, \"rank\": 90, \"ini\": 91, \"rankvar\": 73}, {\"group\": [80.0, 54.0, 26.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"454\", \"clust\": 80, \"rank\": 89, \"ini\": 90, \"rankvar\": 3}, {\"group\": [53.0, 35.0, 18.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"445\", \"clust\": 54, \"rank\": 88, \"ini\": 89, \"rankvar\": 5}, {\"group\": [96.0, 64.0, 30.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"66\", \"clust\": 94, \"rank\": 87, \"ini\": 88, \"rankvar\": 18}, {\"group\": [27.0, 17.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"269\", \"clust\": 27, \"rank\": 86, \"ini\": 87, \"rankvar\": 86}, {\"group\": [43.0, 28.0, 15.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"104\", \"clust\": 44, \"rank\": 85, \"ini\": 86, \"rankvar\": 6}, {\"group\": [98.0, 65.0, 30.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"287\", \"clust\": 99, \"rank\": 84, \"ini\": 85, \"rankvar\": 61}, {\"group\": [13.0, 10.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"282\", \"clust\": 12, \"rank\": 83, \"ini\": 84, \"rankvar\": 85}, {\"group\": [47.0, 29.0, 15.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"455\", \"clust\": 42, \"rank\": 82, \"ini\": 83, \"rankvar\": 71}, {\"group\": [28.0, 17.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"113\", \"clust\": 28, \"rank\": 81, \"ini\": 82, \"rankvar\": 87}, {\"group\": [40.0, 26.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"201\", \"clust\": 39, \"rank\": 80, \"ini\": 81, \"rankvar\": 64}, {\"group\": [46.0, 28.0, 15.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"25\", \"clust\": 45, \"rank\": 79, \"ini\": 80, \"rankvar\": 22}, {\"group\": [81.0, 54.0, 26.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"213\", \"clust\": 81, \"rank\": 78, \"ini\": 79, \"rankvar\": 9}, {\"group\": [44.0, 28.0, 15.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"249\", \"clust\": 46, \"rank\": 77, \"ini\": 78, \"rankvar\": 31}, {\"group\": [15.0, 12.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"309\", \"clust\": 15, \"rank\": 76, \"ini\": 77, \"rankvar\": 51}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"41\", \"clust\": 2, \"rank\": 75, \"ini\": 76, \"rankvar\": 40}, {\"group\": [73.0, 48.0, 23.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"224\", \"clust\": 71, \"rank\": 74, \"ini\": 75, \"rankvar\": 99}, {\"group\": [45.0, 28.0, 15.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"376\", \"clust\": 47, \"rank\": 73, \"ini\": 74, \"rankvar\": 47}, {\"group\": [85.0, 57.0, 27.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"281\", \"clust\": 85, \"rank\": 72, \"ini\": 73, \"rankvar\": 57}, {\"group\": [94.0, 63.0, 30.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"302\", \"clust\": 95, \"rank\": 71, \"ini\": 72, \"rankvar\": 79}, {\"group\": [35.0, 21.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"89\", \"clust\": 32, \"rank\": 70, \"ini\": 71, \"rankvar\": 37}, {\"group\": [77.0, 52.0, 25.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"475\", \"clust\": 77, \"rank\": 69, \"ini\": 70, \"rankvar\": 41}, {\"group\": [38.0, 24.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"336\", \"clust\": 37, \"rank\": 68, \"ini\": 69, \"rankvar\": 93}, {\"group\": [59.0, 39.0, 20.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"262\", \"clust\": 58, \"rank\": 67, \"ini\": 68, \"rankvar\": 52}, {\"group\": [95.0, 63.0, 30.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"198\", \"clust\": 96, \"rank\": 66, \"ini\": 67, \"rankvar\": 25}, {\"group\": [65.0, 43.0, 21.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"452\", \"clust\": 66, \"rank\": 65, \"ini\": 66, \"rankvar\": 97}, {\"group\": [24.0, 15.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"167\", \"clust\": 24, \"rank\": 64, \"ini\": 65, \"rankvar\": 13}, {\"group\": [87.0, 58.0, 28.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"469\", \"clust\": 88, \"rank\": 63, \"ini\": 64, \"rankvar\": 28}, {\"group\": [78.0, 52.0, 25.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"165\", \"clust\": 78, \"rank\": 62, \"ini\": 63, \"rankvar\": 14}, {\"group\": [11.0, 8.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"401\", \"clust\": 10, \"rank\": 61, \"ini\": 62, \"rankvar\": 74}, {\"group\": [74.0, 49.0, 23.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"182\", \"clust\": 70, \"rank\": 60, \"ini\": 61, \"rankvar\": 94}, {\"group\": [36.0, 22.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"59\", \"clust\": 35, \"rank\": 59, \"ini\": 60, \"rankvar\": 76}, {\"group\": [69.0, 46.0, 22.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"477\", \"clust\": 68, \"rank\": 58, \"ini\": 59, \"rankvar\": 91}, {\"group\": [51.0, 33.0, 17.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"71\", \"clust\": 49, \"rank\": 57, \"ini\": 58, \"rankvar\": 24}, {\"group\": [88.0, 58.0, 28.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"493\", \"clust\": 89, \"rank\": 56, \"ini\": 57, \"rankvar\": 29}, {\"group\": [30.0, 19.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"229\", \"clust\": 30, \"rank\": 55, \"ini\": 56, \"rankvar\": 83}, {\"group\": [10.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"95\", \"clust\": 6, \"rank\": 54, \"ini\": 55, \"rankvar\": 81}, {\"group\": [33.0, 21.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"126\", \"clust\": 33, \"rank\": 53, \"ini\": 54, \"rankvar\": 15}, {\"group\": [75.0, 50.0, 24.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"112\", \"clust\": 74, \"rank\": 52, \"ini\": 53, \"rankvar\": 43}, {\"group\": [9.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"195\", \"clust\": 7, \"rank\": 51, \"ini\": 52, \"rankvar\": 69}, {\"group\": [41.0, 27.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"342\", \"clust\": 40, \"rank\": 50, \"ini\": 51, \"rankvar\": 96}, {\"group\": [31.0, 19.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"130\", \"clust\": 31, \"rank\": 49, \"ini\": 50, \"rankvar\": 50}, {\"group\": [76.0, 51.0, 24.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"36\", \"clust\": 75, \"rank\": 48, \"ini\": 49, \"rankvar\": 80}, {\"group\": [54.0, 35.0, 18.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"34\", \"clust\": 55, \"rank\": 47, \"ini\": 48, \"rankvar\": 11}, {\"group\": [49.0, 31.0, 17.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"146\", \"clust\": 50, \"rank\": 46, \"ini\": 47, \"rankvar\": 35}, {\"group\": [3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"349\", \"clust\": 1, \"rank\": 45, \"ini\": 46, \"rankvar\": 77}, {\"group\": [84.0, 56.0, 26.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"64\", \"clust\": 79, \"rank\": 44, \"ini\": 45, \"rankvar\": 8}, {\"group\": [7.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"190\", \"clust\": 8, \"rank\": 43, \"ini\": 44, \"rankvar\": 89}, {\"group\": [50.0, 32.0, 17.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"489\", \"clust\": 51, \"rank\": 42, \"ini\": 43, \"rankvar\": 54}, {\"group\": [34.0, 21.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"61\", \"clust\": 34, \"rank\": 41, \"ini\": 42, \"rankvar\": 21}, {\"group\": [58.0, 38.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"19\", \"clust\": 52, \"rank\": 40, \"ini\": 41, \"rankvar\": 78}, {\"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"408\", \"clust\": 3, \"rank\": 39, \"ini\": 40, \"rankvar\": 46}, {\"group\": [52.0, 34.0, 17.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"221\", \"clust\": 48, \"rank\": 38, \"ini\": 39, \"rankvar\": 63}, {\"group\": [8.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"396\", \"clust\": 9, \"rank\": 37, \"ini\": 38, \"rankvar\": 55}, {\"group\": [89.0, 59.0, 28.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"96\", \"clust\": 87, \"rank\": 36, \"ini\": 37, \"rankvar\": 92}, {\"group\": [86.0, 57.0, 27.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"382\", \"clust\": 86, \"rank\": 35, \"ini\": 36, \"rankvar\": 60}, {\"group\": [26.0, 16.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"410\", \"clust\": 23, \"rank\": 34, \"ini\": 35, \"rankvar\": 36}, {\"group\": [22.0, 14.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"326\", \"clust\": 22, \"rank\": 33, \"ini\": 34, \"rankvar\": 17}, {\"group\": [67.0, 44.0, 21.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"435\", \"clust\": 65, \"rank\": 32, \"ini\": 33, \"rankvar\": 95}, {\"group\": [79.0, 53.0, 25.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"310\", \"clust\": 76, \"rank\": 31, \"ini\": 32, \"rankvar\": 58}, {\"group\": [92.0, 61.0, 29.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"21\", \"clust\": 92, \"rank\": 30, \"ini\": 31, \"rankvar\": 16}, {\"group\": [64.0, 42.0, 21.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"453\", \"clust\": 64, \"rank\": 29, \"ini\": 30, \"rankvar\": 7}, {\"group\": [66.0, 43.0, 21.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"293\", \"clust\": 67, \"rank\": 28, \"ini\": 29, \"rankvar\": 49}, {\"group\": [83.0, 55.0, 26.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"402\", \"clust\": 83, \"rank\": 27, \"ini\": 28, \"rankvar\": 23}, {\"group\": [61.0, 41.0, 21.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"33\", \"clust\": 61, \"rank\": 26, \"ini\": 27, \"rankvar\": 56}, {\"group\": [68.0, 45.0, 21.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"387\", \"clust\": 60, \"rank\": 25, \"ini\": 26, \"rankvar\": 42}, {\"group\": [23.0, 14.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"22\", \"clust\": 20, \"rank\": 24, \"ini\": 25, \"rankvar\": 53}, {\"group\": [39.0, 25.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"323\", \"clust\": 38, \"rank\": 23, \"ini\": 24, \"rankvar\": 27}, {\"group\": [62.0, 41.0, 21.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"158\", \"clust\": 62, \"rank\": 22, \"ini\": 23, \"rankvar\": 34}, {\"group\": [29.0, 18.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"245\", \"clust\": 26, \"rank\": 21, \"ini\": 22, \"rankvar\": 65}, {\"group\": [25.0, 15.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"67\", \"clust\": 25, \"rank\": 20, \"ini\": 21, \"rankvar\": 32}, {\"group\": [90.0, 60.0, 29.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"76\", \"clust\": 90, \"rank\": 19, \"ini\": 20, \"rankvar\": 20}, {\"group\": [4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"398\", \"clust\": 4, \"rank\": 18, \"ini\": 19, \"rankvar\": 66}, {\"group\": [16.0, 12.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"211\", \"clust\": 16, \"rank\": 17, \"ini\": 18, \"rankvar\": 39}, {\"group\": [37.0, 23.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"385\", \"clust\": 36, \"rank\": 16, \"ini\": 17, \"rankvar\": 48}, {\"group\": [17.0, 12.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"218\", \"clust\": 14, \"rank\": 15, \"ini\": 16, \"rankvar\": 82}, {\"group\": [57.0, 37.0, 18.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"268\", \"clust\": 57, \"rank\": 14, \"ini\": 15, \"rankvar\": 68}, {\"group\": [32.0, 20.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"40\", \"clust\": 29, \"rank\": 13, \"ini\": 14, \"rankvar\": 59}, {\"group\": [48.0, 30.0, 16.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"292\", \"clust\": 41, \"rank\": 12, \"ini\": 13, \"rankvar\": 70}, {\"group\": [14.0, 11.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"93\", \"clust\": 13, \"rank\": 11, \"ini\": 12, \"rankvar\": 90}, {\"group\": [5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"63\", \"clust\": 5, \"rank\": 10, \"ini\": 11, \"rankvar\": 67}, {\"group\": [100.0, 67.0, 31.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"289\", \"clust\": 84, \"rank\": 9, \"ini\": 10, \"rankvar\": 98}, {\"group\": [12.0, 9.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"300\", \"clust\": 11, \"rank\": 8, \"ini\": 9, \"rankvar\": 72}, {\"group\": [91.0, 60.0, 29.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"449\", \"clust\": 91, \"rank\": 7, \"ini\": 8, \"rankvar\": 1}, {\"group\": [60.0, 40.0, 20.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"79\", \"clust\": 59, \"rank\": 6, \"ini\": 7, \"rankvar\": 10}, {\"group\": [71.0, 48.0, 23.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"60\", \"clust\": 72, \"rank\": 5, \"ini\": 6, \"rankvar\": 62}, {\"group\": [72.0, 48.0, 23.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"315\", \"clust\": 73, \"rank\": 4, \"ini\": 5, \"rankvar\": 30}, {\"group\": [93.0, 62.0, 29.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"295\", \"clust\": 93, \"rank\": 3, \"ini\": 4, \"rankvar\": 38}, {\"group\": [55.0, 35.0, 18.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"44\", \"clust\": 53, \"rank\": 2, \"ini\": 3, \"rankvar\": 26}, {\"group\": [70.0, 47.0, 22.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"28\", \"clust\": 69, \"rank\": 1, \"ini\": 2, \"rankvar\": 88}, {\"group\": [6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"70\", \"clust\": 0, \"rank\": 0, \"ini\": 1, \"rankvar\": 84}], \"col_nodes\": [{\"group\": [8.0, 8.0, 8.0, 8.0, 8.0, 6.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 5, \"rank\": 0, \"ini\": 10, \"rankvar\": 6}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 3, \"rank\": 9, \"ini\": 9, \"rankvar\": 4}, {\"group\": [6.0, 6.0, 6.0, 6.0, 6.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 6, \"rank\": 3, \"ini\": 8, \"rankvar\": 3}, {\"group\": [9.0, 9.0, 9.0, 9.0, 9.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 8, \"rank\": 5, \"ini\": 7, \"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\": \"4\", \"clust\": 0, \"rank\": 4, \"ini\": 6, \"rankvar\": 9}, {\"group\": [5.0, 5.0, 5.0, 5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"5\", \"clust\": 2, \"rank\": 8, \"ini\": 5, \"rankvar\": 1}, {\"group\": [10.0, 10.0, 10.0, 10.0, 10.0, 8.0, 7.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 9, \"rank\": 1, \"ini\": 4, \"rankvar\": 7}, {\"group\": [7.0, 7.0, 7.0, 7.0, 7.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 7, \"rank\": 6, \"ini\": 3, \"rankvar\": 2}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 4, \"rank\": 7, \"ini\": 2, \"rankvar\": 0}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 1, \"rank\": 2, \"ini\": 1, \"rankvar\": 5}]}}, {\"N_row_sum\": 50, \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"group\": [23.0, 18.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"346\", \"clust\": 24, \"rank\": 49, \"ini\": 50, \"rankvar\": 12}, {\"group\": [21.0, 17.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"325\", \"clust\": 22, \"rank\": 48, \"ini\": 49, \"rankvar\": 0}, {\"group\": [36.0, 27.0, 19.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"107\", \"clust\": 37, \"rank\": 47, \"ini\": 48, \"rankvar\": 3}, {\"group\": [38.0, 28.0, 19.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"371\", \"clust\": 39, \"rank\": 46, \"ini\": 47, \"rankvar\": 7}, {\"group\": [37.0, 27.0, 19.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"432\", \"clust\": 38, \"rank\": 45, \"ini\": 46, \"rankvar\": 1}, {\"group\": [15.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"426\", \"clust\": 15, \"rank\": 44, \"ini\": 45, \"rankvar\": 36}, {\"group\": [43.0, 32.0, 22.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"10\", \"clust\": 44, \"rank\": 43, \"ini\": 44, \"rankvar\": 24}, {\"group\": [10.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"367\", \"clust\": 11, \"rank\": 42, \"ini\": 43, \"rankvar\": 19}, {\"group\": [19.0, 15.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"247\", \"clust\": 19, \"rank\": 41, \"ini\": 42, \"rankvar\": 25}, {\"group\": [16.0, 12.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"348\", \"clust\": 16, \"rank\": 40, \"ini\": 41, \"rankvar\": 34}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"454\", \"clust\": 4, \"rank\": 39, \"ini\": 40, \"rankvar\": 2}, {\"group\": [22.0, 17.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"445\", \"clust\": 23, \"rank\": 38, \"ini\": 39, \"rankvar\": 4}, {\"group\": [5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"66\", \"clust\": 3, \"rank\": 37, \"ini\": 38, \"rankvar\": 11}, {\"group\": [34.0, 26.0, 18.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"269\", \"clust\": 35, \"rank\": 36, \"ini\": 37, \"rankvar\": 42}, {\"group\": [24.0, 18.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"104\", \"clust\": 25, \"rank\": 35, \"ini\": 36, \"rankvar\": 5}, {\"group\": [11.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"287\", \"clust\": 12, \"rank\": 34, \"ini\": 35, \"rankvar\": 30}, {\"group\": [31.0, 23.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"282\", \"clust\": 29, \"rank\": 33, \"ini\": 34, \"rankvar\": 41}, {\"group\": [20.0, 16.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"455\", \"clust\": 20, \"rank\": 32, \"ini\": 33, \"rankvar\": 33}, {\"group\": [35.0, 26.0, 18.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"113\", \"clust\": 36, \"rank\": 31, \"ini\": 32, \"rankvar\": 43}, {\"group\": [48.0, 37.0, 25.0, 11.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"201\", \"clust\": 48, \"rank\": 30, \"ini\": 31, \"rankvar\": 31}, {\"group\": [27.0, 19.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"25\", \"clust\": 26, \"rank\": 29, \"ini\": 30, \"rankvar\": 13}, {\"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"213\", \"clust\": 5, \"rank\": 28, \"ini\": 29, \"rankvar\": 6}, {\"group\": [25.0, 19.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"249\", \"clust\": 27, \"rank\": 27, \"ini\": 28, \"rankvar\": 18}, {\"group\": [17.0, 13.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"309\", \"clust\": 17, \"rank\": 26, \"ini\": 27, \"rankvar\": 27}, {\"group\": [7.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"41\", \"clust\": 1, \"rank\": 25, \"ini\": 26, \"rankvar\": 21}, {\"group\": [45.0, 34.0, 23.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"224\", \"clust\": 43, \"rank\": 24, \"ini\": 25, \"rankvar\": 49}, {\"group\": [26.0, 19.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"376\", \"clust\": 28, \"rank\": 23, \"ini\": 24, \"rankvar\": 26}, {\"group\": [12.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"281\", \"clust\": 10, \"rank\": 22, \"ini\": 23, \"rankvar\": 29}, {\"group\": [8.0, 6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"302\", \"clust\": 8, \"rank\": 21, \"ini\": 22, \"rankvar\": 38}, {\"group\": [40.0, 29.0, 20.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"89\", \"clust\": 41, \"rank\": 20, \"ini\": 21, \"rankvar\": 20}, {\"group\": [3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"475\", \"clust\": 6, \"rank\": 19, \"ini\": 20, \"rankvar\": 22}, {\"group\": [46.0, 35.0, 24.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"336\", \"clust\": 46, \"rank\": 18, \"ini\": 19, \"rankvar\": 45}, {\"group\": [32.0, 24.0, 16.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"262\", \"clust\": 33, \"rank\": 17, \"ini\": 18, \"rankvar\": 28}, {\"group\": [9.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"198\", \"clust\": 9, \"rank\": 16, \"ini\": 17, \"rankvar\": 15}, {\"group\": [50.0, 39.0, 26.0, 12.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"452\", \"clust\": 0, \"rank\": 15, \"ini\": 16, \"rankvar\": 48}, {\"group\": [39.0, 28.0, 19.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"167\", \"clust\": 40, \"rank\": 14, \"ini\": 15, \"rankvar\": 8}, {\"group\": [13.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"469\", \"clust\": 13, \"rank\": 13, \"ini\": 14, \"rankvar\": 16}, {\"group\": [4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"165\", \"clust\": 7, \"rank\": 12, \"ini\": 13, \"rankvar\": 9}, {\"group\": [18.0, 14.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"401\", \"clust\": 18, \"rank\": 11, \"ini\": 12, \"rankvar\": 35}, {\"group\": [47.0, 36.0, 24.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"182\", \"clust\": 47, \"rank\": 10, \"ini\": 11, \"rankvar\": 46}, {\"group\": [42.0, 31.0, 21.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"59\", \"clust\": 32, \"rank\": 9, \"ini\": 10, \"rankvar\": 37}, {\"group\": [44.0, 33.0, 22.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"477\", \"clust\": 45, \"rank\": 8, \"ini\": 9, \"rankvar\": 44}, {\"group\": [28.0, 20.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"71\", \"clust\": 21, \"rank\": 7, \"ini\": 8, \"rankvar\": 14}, {\"group\": [14.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"493\", \"clust\": 14, \"rank\": 6, \"ini\": 7, \"rankvar\": 17}, {\"group\": [33.0, 25.0, 17.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"229\", \"clust\": 34, \"rank\": 5, \"ini\": 6, \"rankvar\": 40}, {\"group\": [29.0, 21.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"95\", \"clust\": 30, \"rank\": 4, \"ini\": 5, \"rankvar\": 39}, {\"group\": [41.0, 30.0, 20.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"126\", \"clust\": 42, \"rank\": 3, \"ini\": 4, \"rankvar\": 10}, {\"group\": [6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"112\", \"clust\": 2, \"rank\": 2, \"ini\": 3, \"rankvar\": 23}, {\"group\": [30.0, 22.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"195\", \"clust\": 31, \"rank\": 1, \"ini\": 2, \"rankvar\": 32}, {\"group\": [49.0, 38.0, 25.0, 11.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"342\", \"clust\": 49, \"rank\": 0, \"ini\": 1, \"rankvar\": 47}], \"col_nodes\": [{\"group\": [8.0, 8.0, 8.0, 8.0, 8.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 6, \"rank\": 1, \"ini\": 10, \"rankvar\": 4}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 2, \"rank\": 9, \"ini\": 9, \"rankvar\": 1}, {\"group\": [5.0, 5.0, 5.0, 5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 8, \"rank\": 8, \"ini\": 8, \"rankvar\": 0}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 4, \"rank\": 6, \"ini\": 7, \"rankvar\": 6}, {\"group\": [9.0, 9.0, 9.0, 9.0, 9.0, 7.0, 5.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"4\", \"clust\": 1, \"rank\": 3, \"ini\": 6, \"rankvar\": 9}, {\"group\": [7.0, 7.0, 7.0, 7.0, 7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"5\", \"clust\": 7, \"rank\": 4, \"ini\": 5, \"rankvar\": 7}, {\"group\": [10.0, 10.0, 10.0, 10.0, 10.0, 8.0, 6.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 0, \"rank\": 2, \"ini\": 4, \"rankvar\": 8}, {\"group\": [6.0, 6.0, 6.0, 6.0, 6.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 9, \"rank\": 7, \"ini\": 3, \"rankvar\": 3}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 5, \"rank\": 5, \"ini\": 2, \"rankvar\": 2}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 3, \"rank\": 0, \"ini\": 1, \"rankvar\": 5}]}}, {\"N_row_sum\": 20, \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"group\": [16.0, 13.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"346\", \"clust\": 18, \"rank\": 19, \"ini\": 20, \"rankvar\": 8}, {\"group\": [14.0, 11.0, 8.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"325\", \"clust\": 14, \"rank\": 18, \"ini\": 19, \"rankvar\": 0}, {\"group\": [12.0, 10.0, 8.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"107\", \"clust\": 12, \"rank\": 17, \"ini\": 18, \"rankvar\": 3}, {\"group\": [10.0, 8.0, 6.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"371\", \"clust\": 9, \"rank\": 16, \"ini\": 17, \"rankvar\": 6}, {\"group\": [13.0, 10.0, 8.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"432\", \"clust\": 13, \"rank\": 15, \"ini\": 16, \"rankvar\": 1}, {\"group\": [7.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"426\", \"clust\": 0, \"rank\": 14, \"ini\": 15, \"rankvar\": 16}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"10\", \"clust\": 1, \"rank\": 13, \"ini\": 14, \"rankvar\": 10}, {\"group\": [3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"367\", \"clust\": 3, \"rank\": 12, \"ini\": 13, \"rankvar\": 9}, {\"group\": [18.0, 14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"247\", \"clust\": 17, \"rank\": 11, \"ini\": 12, \"rankvar\": 11}, {\"group\": [5.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"348\", \"clust\": 5, \"rank\": 10, \"ini\": 11, \"rankvar\": 15}, {\"group\": [2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"454\", \"clust\": 2, \"rank\": 9, \"ini\": 10, \"rankvar\": 2}, {\"group\": [15.0, 12.0, 8.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"445\", \"clust\": 15, \"rank\": 8, \"ini\": 9, \"rankvar\": 4}, {\"group\": [6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"66\", \"clust\": 6, \"rank\": 7, \"ini\": 8, \"rankvar\": 7}, {\"group\": [8.0, 7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"269\", \"clust\": 7, \"rank\": 6, \"ini\": 7, \"rankvar\": 18}, {\"group\": [17.0, 13.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"104\", \"clust\": 19, \"rank\": 5, \"ini\": 6, \"rankvar\": 5}, {\"group\": [4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"287\", \"clust\": 4, \"rank\": 4, \"ini\": 5, \"rankvar\": 12}, {\"group\": [11.0, 9.0, 7.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"282\", \"clust\": 10, \"rank\": 3, \"ini\": 4, \"rankvar\": 17}, {\"group\": [19.0, 15.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"455\", \"clust\": 16, \"rank\": 2, \"ini\": 3, \"rankvar\": 14}, {\"group\": [9.0, 7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"113\", \"clust\": 8, \"rank\": 1, \"ini\": 2, \"rankvar\": 19}, {\"group\": [20.0, 16.0, 10.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"201\", \"clust\": 11, \"rank\": 0, \"ini\": 1, \"rankvar\": 13}], \"col_nodes\": [{\"group\": [5.0, 5.0, 5.0, 4.0, 4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 5, \"rank\": 1, \"ini\": 10, \"rankvar\": 3}, {\"group\": [7.0, 7.0, 7.0, 5.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 8, \"rank\": 9, \"ini\": 9, \"rankvar\": 0}, {\"group\": [8.0, 8.0, 7.0, 5.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 9, \"rank\": 7, \"ini\": 8, \"rankvar\": 1}, {\"group\": [9.0, 9.0, 8.0, 5.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 7, \"rank\": 8, \"ini\": 7, \"rankvar\": 2}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"4\", \"clust\": 0, \"rank\": 4, \"ini\": 6, \"rankvar\": 9}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"5\", \"clust\": 2, \"rank\": 5, \"ini\": 5, \"rankvar\": 6}, {\"group\": [10.0, 10.0, 9.0, 6.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 4, \"rank\": 2, \"ini\": 4, \"rankvar\": 7}, {\"group\": [6.0, 6.0, 6.0, 4.0, 4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 6, \"rank\": 6, \"ini\": 3, \"rankvar\": 5}, {\"group\": [4.0, 4.0, 4.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 3, \"rank\": 0, \"ini\": 2, \"rankvar\": 4}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 1, \"rank\": 3, \"ini\": 1, \"rankvar\": 8}]}}, {\"N_row_sum\": 10, \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"group\": [5.0, 5.0, 5.0, 5.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"346\", \"clust\": 4, \"rank\": 9, \"ini\": 10, \"rankvar\": 4}, {\"group\": [9.0, 8.0, 7.0, 6.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"325\", \"clust\": 7, \"rank\": 8, \"ini\": 9, \"rankvar\": 0}, {\"group\": [7.0, 7.0, 6.0, 6.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"107\", \"clust\": 8, \"rank\": 7, \"ini\": 8, \"rankvar\": 2}, {\"group\": [10.0, 9.0, 8.0, 6.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"371\", \"clust\": 6, \"rank\": 6, \"ini\": 7, \"rankvar\": 3}, {\"group\": [8.0, 7.0, 6.0, 6.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"432\", \"clust\": 9, \"rank\": 5, \"ini\": 6, \"rankvar\": 1}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"426\", \"clust\": 0, \"rank\": 4, \"ini\": 5, \"rankvar\": 9}, {\"group\": [3.0, 3.0, 3.0, 3.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"10\", \"clust\": 2, \"rank\": 3, \"ini\": 4, \"rankvar\": 6}, {\"group\": [4.0, 4.0, 4.0, 4.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"367\", \"clust\": 3, \"rank\": 2, \"ini\": 3, \"rankvar\": 5}, {\"group\": [6.0, 6.0, 5.0, 5.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"247\", \"clust\": 5, \"rank\": 1, \"ini\": 2, \"rankvar\": 7}, {\"group\": [2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"348\", \"clust\": 1, \"rank\": 0, \"ini\": 1, \"rankvar\": 8}], \"col_nodes\": [{\"group\": [3.0, 3.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 8, \"rank\": 8, \"ini\": 10, \"rankvar\": 1}, {\"group\": [5.0, 5.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 7, \"rank\": 9, \"ini\": 9, \"rankvar\": 0}, {\"group\": [4.0, 4.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 9, \"rank\": 3, \"ini\": 8, \"rankvar\": 2}, {\"group\": [8.0, 8.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 4, \"rank\": 5, \"ini\": 7, \"rankvar\": 5}, {\"group\": [10.0, 10.0, 6.0, 5.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"4\", \"clust\": 0, \"rank\": 0, \"ini\": 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\": \"5\", \"clust\": 2, \"rank\": 6, \"ini\": 5, \"rankvar\": 7}, {\"group\": [7.0, 7.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 5, \"rank\": 4, \"ini\": 4, \"rankvar\": 4}, {\"group\": [6.0, 6.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 6, \"rank\": 7, \"ini\": 3, \"rankvar\": 3}, {\"group\": [2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 3, \"rank\": 2, \"ini\": 2, \"rankvar\": 6}, {\"group\": [9.0, 9.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 1, \"rank\": 1, \"ini\": 1, \"rankvar\": 8}]}}, {\"N_row_var\": \"all\", \"nodes\": {\"row_nodes\": [{\"group\": [213.0, 94.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 213, \"rank\": 134, \"ini\": 500, \"rankvar\": 296}, {\"group\": [277.0, 118.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 276, \"rank\": 191, \"ini\": 499, \"rankvar\": 465}, {\"group\": [333.0, 140.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 332, \"rank\": 88, \"ini\": 498, \"rankvar\": 424}, {\"group\": [283.0, 120.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 281, \"rank\": 280, \"ini\": 497, \"rankvar\": 462}, {\"group\": [92.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"4\", \"clust\": 91, \"rank\": 242, \"ini\": 496, \"rankvar\": 217}, {\"group\": [132.0, 62.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"5\", \"clust\": 129, \"rank\": 144, \"ini\": 495, \"rankvar\": 293}, {\"group\": [381.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 381, \"rank\": 291, \"ini\": 494, \"rankvar\": 207}, {\"group\": [48.0, 27.0, 12.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 48, \"rank\": 238, \"ini\": 493, \"rankvar\": 371}, {\"group\": [216.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 217, \"rank\": 326, \"ini\": 492, \"rankvar\": 178}, {\"group\": [144.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 145, \"rank\": 86, \"ini\": 491, \"rankvar\": 26}, {\"group\": [310.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"10\", \"clust\": 309, \"rank\": 493, \"ini\": 490, \"rankvar\": 169}, {\"group\": [107.0, 54.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"11\", \"clust\": 106, \"rank\": 180, \"ini\": 489, \"rankvar\": 380}, {\"group\": [362.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"12\", \"clust\": 361, \"rank\": 116, \"ini\": 488, \"rankvar\": 9}, {\"group\": [193.0, 88.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"13\", \"clust\": 188, \"rank\": 296, \"ini\": 487, \"rankvar\": 499}, {\"group\": [51.0, 29.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"14\", \"clust\": 50, \"rank\": 228, \"ini\": 486, \"rankvar\": 382}, {\"group\": [432.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"15\", \"clust\": 432, \"rank\": 130, \"ini\": 485, \"rankvar\": 5}, {\"group\": [467.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"16\", \"clust\": 466, \"rank\": 385, \"ini\": 484, \"rankvar\": 45}, {\"group\": [58.0, 34.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"17\", \"clust\": 57, \"rank\": 148, \"ini\": 483, \"rankvar\": 466}, {\"group\": [311.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"18\", \"clust\": 310, \"rank\": 372, \"ini\": 482, \"rankvar\": 113}, {\"group\": [227.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"19\", \"clust\": 228, \"rank\": 440, \"ini\": 481, \"rankvar\": 368}, {\"group\": [116.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"20\", \"clust\": 115, \"rank\": 279, \"ini\": 480, \"rankvar\": 406}, {\"group\": [396.0, 159.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"21\", \"clust\": 396, \"rank\": 430, \"ini\": 479, \"rankvar\": 62}, {\"group\": [474.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"22\", \"clust\": 472, \"rank\": 424, \"ini\": 478, \"rankvar\": 228}, {\"group\": [497.0, 190.0, 51.0, 14.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"23\", \"clust\": 498, \"rank\": 6, \"ini\": 477, \"rankvar\": 396}, {\"group\": [215.0, 94.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"24\", \"clust\": 212, \"rank\": 322, \"ini\": 476, \"rankvar\": 143}, {\"group\": [433.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"25\", \"clust\": 433, \"rank\": 479, \"ini\": 475, \"rankvar\": 75}, {\"group\": [121.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"26\", \"clust\": 118, \"rank\": 307, \"ini\": 474, \"rankvar\": 199}, {\"group\": [130.0, 62.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"27\", \"clust\": 130, \"rank\": 328, \"ini\": 473, \"rankvar\": 431}, {\"group\": [279.0, 119.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"28\", \"clust\": 278, \"rank\": 401, \"ini\": 472, \"rankvar\": 439}, {\"group\": [448.0, 176.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"29\", \"clust\": 447, \"rank\": 73, \"ini\": 471, \"rankvar\": 247}, {\"group\": [13.0, 10.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"30\", \"clust\": 12, \"rank\": 40, \"ini\": 470, \"rankvar\": 324}, {\"group\": [434.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"31\", \"clust\": 434, \"rank\": 168, \"ini\": 469, \"rankvar\": 142}, {\"group\": [29.0, 17.0, 9.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"32\", \"clust\": 29, \"rank\": 37, \"ini\": 468, \"rankvar\": 377}, {\"group\": [352.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"33\", \"clust\": 351, \"rank\": 426, \"ini\": 467, \"rankvar\": 238}, {\"group\": [224.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"34\", \"clust\": 224, \"rank\": 447, \"ini\": 466, \"rankvar\": 46}, {\"group\": [275.0, 116.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"35\", \"clust\": 273, \"rank\": 41, \"ini\": 465, \"rankvar\": 286}, {\"group\": [456.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"36\", \"clust\": 451, \"rank\": 448, \"ini\": 464, \"rankvar\": 407}, {\"group\": [80.0, 42.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"37\", \"clust\": 77, \"rank\": 78, \"ini\": 463, \"rankvar\": 183}, {\"group\": [146.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"38\", \"clust\": 144, \"rank\": 131, \"ini\": 462, \"rankvar\": 177}, {\"group\": [414.0, 167.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"39\", \"clust\": 412, \"rank\": 30, \"ini\": 461, \"rankvar\": 60}, {\"group\": [488.0, 185.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"40\", \"clust\": 488, \"rank\": 413, \"ini\": 460, \"rankvar\": 253}, {\"group\": [290.0, 123.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"41\", \"clust\": 289, \"rank\": 475, \"ini\": 459, \"rankvar\": 155}, {\"group\": [87.0, 45.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"42\", \"clust\": 86, \"rank\": 337, \"ini\": 458, \"rankvar\": 274}, {\"group\": [39.0, 23.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"43\", \"clust\": 31, \"rank\": 72, \"ini\": 457, \"rankvar\": 365}, {\"group\": [226.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"44\", \"clust\": 223, \"rank\": 402, \"ini\": 456, \"rankvar\": 102}, {\"group\": [380.0, 154.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"45\", \"clust\": 376, \"rank\": 178, \"ini\": 455, \"rankvar\": 493}, {\"group\": [99.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"46\", \"clust\": 98, \"rank\": 85, \"ini\": 454, \"rankvar\": 300}, {\"group\": [50.0, 28.0, 12.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"47\", \"clust\": 47, \"rank\": 172, \"ini\": 453, \"rankvar\": 467}, {\"group\": [27.0, 16.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"48\", \"clust\": 26, \"rank\": 190, \"ini\": 452, \"rankvar\": 497}, {\"group\": [322.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"49\", \"clust\": 321, \"rank\": 282, \"ini\": 451, \"rankvar\": 41}, {\"group\": [32.0, 19.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"50\", \"clust\": 33, \"rank\": 83, \"ini\": 450, \"rankvar\": 25}, {\"group\": [83.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"51\", \"clust\": 82, \"rank\": 173, \"ini\": 449, \"rankvar\": 356}, {\"group\": [100.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"52\", \"clust\": 99, \"rank\": 222, \"ini\": 448, \"rankvar\": 355}, {\"group\": [415.0, 168.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"53\", \"clust\": 411, \"rank\": 25, \"ini\": 447, \"rankvar\": 80}, {\"group\": [300.0, 126.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"54\", \"clust\": 296, \"rank\": 109, \"ini\": 446, \"rankvar\": 257}, {\"group\": [262.0, 111.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"55\", \"clust\": 259, \"rank\": 269, \"ini\": 445, \"rankvar\": 427}, {\"group\": [96.0, 48.0, 19.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"56\", \"clust\": 96, \"rank\": 52, \"ini\": 444, \"rankvar\": 126}, {\"group\": [31.0, 18.0, 9.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"57\", \"clust\": 28, \"rank\": 108, \"ini\": 443, \"rankvar\": 264}, {\"group\": [219.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"58\", \"clust\": 215, \"rank\": 234, \"ini\": 442, \"rankvar\": 326}, {\"group\": [37.0, 22.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"59\", \"clust\": 37, \"rank\": 459, \"ini\": 441, \"rankvar\": 359}, {\"group\": [263.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"60\", \"clust\": 262, \"rank\": 405, \"ini\": 440, \"rankvar\": 290}, {\"group\": [339.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"61\", \"clust\": 339, \"rank\": 441, \"ini\": 439, \"rankvar\": 74}, {\"group\": [20.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"62\", \"clust\": 22, \"rank\": 304, \"ini\": 438, \"rankvar\": 362}, {\"group\": [294.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"63\", \"clust\": 293, \"rank\": 410, \"ini\": 437, \"rankvar\": 312}, {\"group\": [307.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"64\", \"clust\": 307, \"rank\": 444, \"ini\": 436, \"rankvar\": 31}, {\"group\": [171.0, 78.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"65\", \"clust\": 168, \"rank\": 342, \"ini\": 435, \"rankvar\": 22}, {\"group\": [284.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"66\", \"clust\": 285, \"rank\": 487, \"ini\": 434, \"rankvar\": 64}, {\"group\": [469.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"67\", \"clust\": 469, \"rank\": 420, \"ini\": 433, \"rankvar\": 120}, {\"group\": [233.0, 99.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"68\", \"clust\": 235, \"rank\": 224, \"ini\": 432, \"rankvar\": 14}, {\"group\": [422.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"69\", \"clust\": 421, \"rank\": 368, \"ini\": 431, \"rankvar\": 428}, {\"group\": [459.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"70\", \"clust\": 458, \"rank\": 400, \"ini\": 430, \"rankvar\": 434}, {\"group\": [169.0, 78.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"71\", \"clust\": 169, \"rank\": 457, \"ini\": 429, \"rankvar\": 92}, {\"group\": [245.0, 103.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"72\", \"clust\": 244, \"rank\": 165, \"ini\": 428, \"rankvar\": 270}, {\"group\": [341.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"73\", \"clust\": 338, \"rank\": 383, \"ini\": 427, \"rankvar\": 51}, {\"group\": [89.0, 46.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"74\", \"clust\": 89, \"rank\": 264, \"ini\": 426, \"rankvar\": 96}, {\"group\": [495.0, 188.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"75\", \"clust\": 494, \"rank\": 35, \"ini\": 425, \"rankvar\": 98}, {\"group\": [428.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"76\", \"clust\": 429, \"rank\": 419, \"ini\": 424, \"rankvar\": 67}, {\"group\": [238.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"77\", \"clust\": 238, \"rank\": 250, \"ini\": 423, \"rankvar\": 123}, {\"group\": [7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"78\", \"clust\": 3, \"rank\": 126, \"ini\": 422, \"rankvar\": 294}, {\"group\": [371.0, 149.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"79\", \"clust\": 372, \"rank\": 406, \"ini\": 421, \"rankvar\": 43}, {\"group\": [126.0, 60.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"80\", \"clust\": 125, \"rank\": 351, \"ini\": 420, \"rankvar\": 496}, {\"group\": [475.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"81\", \"clust\": 471, \"rank\": 292, \"ini\": 419, \"rankvar\": 144}, {\"group\": [491.0, 186.0, 49.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"82\", \"clust\": 491, \"rank\": 32, \"ini\": 418, \"rankvar\": 303}, {\"group\": [328.0, 136.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"83\", \"clust\": 325, \"rank\": 329, \"ini\": 417, \"rankvar\": 229}, {\"group\": [436.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"84\", \"clust\": 431, \"rank\": 271, \"ini\": 416, \"rankvar\": 369}, {\"group\": [276.0, 117.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"85\", \"clust\": 272, \"rank\": 10, \"ini\": 415, \"rankvar\": 288}, {\"group\": [406.0, 163.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"86\", \"clust\": 406, \"rank\": 226, \"ini\": 414, \"rankvar\": 128}, {\"group\": [296.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"87\", \"clust\": 297, \"rank\": 220, \"ini\": 413, \"rankvar\": 131}, {\"group\": [67.0, 38.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"88\", \"clust\": 67, \"rank\": 102, \"ini\": 412, \"rankvar\": 105}, {\"group\": [342.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"89\", \"clust\": 341, \"rank\": 470, \"ini\": 411, \"rankvar\": 148}, {\"group\": [386.0, 157.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"90\", \"clust\": 386, \"rank\": 51, \"ini\": 410, \"rankvar\": 93}, {\"group\": [152.0, 69.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"91\", \"clust\": 151, \"rank\": 127, \"ini\": 409, \"rankvar\": 161}, {\"group\": [211.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"92\", \"clust\": 208, \"rank\": 95, \"ini\": 408, \"rankvar\": 66}, {\"group\": [471.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"93\", \"clust\": 468, \"rank\": 411, \"ini\": 407, \"rankvar\": 447}, {\"group\": [498.0, 191.0, 51.0, 14.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"94\", \"clust\": 499, \"rank\": 53, \"ini\": 406, \"rankvar\": 381}, {\"group\": [135.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"95\", \"clust\": 135, \"rank\": 454, \"ini\": 405, \"rankvar\": 411}, {\"group\": [212.0, 93.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"96\", \"clust\": 207, \"rank\": 436, \"ini\": 404, \"rankvar\": 453}, {\"group\": [125.0, 59.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"97\", \"clust\": 117, \"rank\": 93, \"ini\": 403, \"rankvar\": 421}, {\"group\": [72.0, 40.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"98\", \"clust\": 71, \"rank\": 96, \"ini\": 402, \"rankvar\": 227}, {\"group\": [44.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"99\", \"clust\": 45, \"rank\": 357, \"ini\": 401, \"rankvar\": 430}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"100\", \"clust\": 1, \"rank\": 167, \"ini\": 400, \"rankvar\": 456}, {\"group\": [499.0, 192.0, 52.0, 14.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"101\", \"clust\": 497, \"rank\": 5, \"ini\": 399, \"rankvar\": 268}, {\"group\": [492.0, 186.0, 49.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"102\", \"clust\": 492, \"rank\": 38, \"ini\": 398, \"rankvar\": 352}, {\"group\": [101.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"103\", \"clust\": 100, \"rank\": 80, \"ini\": 397, \"rankvar\": 260}, {\"group\": [437.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"104\", \"clust\": 436, \"rank\": 485, \"ini\": 396, \"rankvar\": 19}, {\"group\": [286.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"105\", \"clust\": 287, \"rank\": 374, \"ini\": 395, \"rankvar\": 325}, {\"group\": [97.0, 49.0, 19.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"106\", \"clust\": 97, \"rank\": 50, \"ini\": 394, \"rankvar\": 179}, {\"group\": [482.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"107\", \"clust\": 482, \"rank\": 497, \"ini\": 393, \"rankvar\": 15}, {\"group\": [323.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"108\", \"clust\": 322, \"rank\": 335, \"ini\": 392, \"rankvar\": 267}, {\"group\": [182.0, 83.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"109\", \"clust\": 181, \"rank\": 147, \"ini\": 391, \"rankvar\": 241}, {\"group\": [304.0, 128.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"110\", \"clust\": 301, \"rank\": 321, \"ini\": 390, \"rankvar\": 425}, {\"group\": [450.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"111\", \"clust\": 449, \"rank\": 274, \"ini\": 389, \"rankvar\": 289}, {\"group\": [435.0, 173.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"112\", \"clust\": 435, \"rank\": 452, \"ini\": 388, \"rankvar\": 165}, {\"group\": [452.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"113\", \"clust\": 454, \"rank\": 481, \"ini\": 387, \"rankvar\": 438}, {\"group\": [418.0, 170.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"114\", \"clust\": 417, \"rank\": 119, \"ini\": 386, \"rankvar\": 194}, {\"group\": [465.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"115\", \"clust\": 464, \"rank\": 203, \"ini\": 385, \"rankvar\": 30}, {\"group\": [133.0, 63.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"116\", \"clust\": 132, \"rank\": 128, \"ini\": 384, \"rankvar\": 378}, {\"group\": [405.0, 162.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"117\", \"clust\": 401, \"rank\": 55, \"ini\": 383, \"rankvar\": 302}, {\"group\": [163.0, 75.0, 26.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"118\", \"clust\": 162, \"rank\": 59, \"ini\": 382, \"rankvar\": 321}, {\"group\": [53.0, 30.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"119\", \"clust\": 53, \"rank\": 107, \"ini\": 381, \"rankvar\": 77}, {\"group\": [17.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"120\", \"clust\": 14, \"rank\": 33, \"ini\": 380, \"rankvar\": 158}, {\"group\": [321.0, 134.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"121\", \"clust\": 316, \"rank\": 268, \"ini\": 379, \"rankvar\": 90}, {\"group\": [85.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"122\", \"clust\": 84, \"rank\": 371, \"ini\": 378, \"rankvar\": 216}, {\"group\": [3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"123\", \"clust\": 0, \"rank\": 184, \"ini\": 377, \"rankvar\": 498}, {\"group\": [78.0, 42.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"124\", \"clust\": 78, \"rank\": 62, \"ini\": 376, \"rankvar\": 107}, {\"group\": [288.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"125\", \"clust\": 284, \"rank\": 290, \"ini\": 375, \"rankvar\": 485}, {\"group\": [340.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"126\", \"clust\": 340, \"rank\": 453, \"ini\": 374, \"rankvar\": 59}, {\"group\": [108.0, 54.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"127\", \"clust\": 107, \"rank\": 15, \"ini\": 373, \"rankvar\": 27}, {\"group\": [167.0, 76.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"128\", \"clust\": 165, \"rank\": 251, \"ini\": 372, \"rankvar\": 372}, {\"group\": [157.0, 73.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"129\", \"clust\": 156, \"rank\": 188, \"ini\": 371, \"rankvar\": 351}, {\"group\": [485.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"130\", \"clust\": 485, \"rank\": 449, \"ini\": 370, \"rankvar\": 222}, {\"group\": [464.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"131\", \"clust\": 460, \"rank\": 156, \"ini\": 369, \"rankvar\": 205}, {\"group\": [237.0, 101.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"132\", \"clust\": 230, \"rank\": 283, \"ini\": 368, \"rankvar\": 479}, {\"group\": [18.0, 12.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"133\", \"clust\": 18, \"rank\": 42, \"ini\": 367, \"rankvar\": 374}, {\"group\": [289.0, 122.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"134\", \"clust\": 280, \"rank\": 132, \"ini\": 366, \"rankvar\": 197}, {\"group\": [25.0, 15.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"135\", \"clust\": 24, \"rank\": 174, \"ini\": 365, \"rankvar\": 384}, {\"group\": [331.0, 139.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"136\", \"clust\": 330, \"rank\": 192, \"ini\": 364, \"rankvar\": 329}, {\"group\": [103.0, 52.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"137\", \"clust\": 102, \"rank\": 14, \"ini\": 363, \"rankvar\": 48}, {\"group\": [14.0, 10.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"138\", \"clust\": 13, \"rank\": 79, \"ini\": 362, \"rankvar\": 348}, {\"group\": [350.0, 144.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"139\", \"clust\": 348, \"rank\": 391, \"ini\": 361, \"rankvar\": 449}, {\"group\": [175.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"140\", \"clust\": 174, \"rank\": 121, \"ini\": 360, \"rankvar\": 157}, {\"group\": [251.0, 106.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"141\", \"clust\": 251, \"rank\": 151, \"ini\": 359, \"rankvar\": 323}, {\"group\": [69.0, 38.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"142\", \"clust\": 66, \"rank\": 64, \"ini\": 358, \"rankvar\": 318}, {\"group\": [91.0, 46.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"143\", \"clust\": 88, \"rank\": 169, \"ini\": 357, \"rankvar\": 104}, {\"group\": [363.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"144\", \"clust\": 362, \"rank\": 379, \"ini\": 356, \"rankvar\": 47}, {\"group\": [30.0, 17.0, 9.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"145\", \"clust\": 30, \"rank\": 66, \"ini\": 355, \"rankvar\": 452}, {\"group\": [60.0, 35.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"146\", \"clust\": 61, \"rank\": 446, \"ini\": 354, \"rankvar\": 138}, {\"group\": [189.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"147\", \"clust\": 191, \"rank\": 183, \"ini\": 353, \"rankvar\": 388}, {\"group\": [389.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"148\", \"clust\": 389, \"rank\": 235, \"ini\": 352, \"rankvar\": 129}, {\"group\": [348.0, 144.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"149\", \"clust\": 349, \"rank\": 272, \"ini\": 351, \"rankvar\": 298}, {\"group\": [256.0, 108.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"150\", \"clust\": 253, \"rank\": 365, \"ini\": 350, \"rankvar\": 394}, {\"group\": [383.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"151\", \"clust\": 383, \"rank\": 13, \"ini\": 349, \"rankvar\": 187}, {\"group\": [81.0, 43.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"152\", \"clust\": 80, \"rank\": 161, \"ini\": 348, \"rankvar\": 305}, {\"group\": [55.0, 31.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"153\", \"clust\": 52, \"rank\": 11, \"ini\": 347, \"rankvar\": 154}, {\"group\": [265.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"154\", \"clust\": 264, \"rank\": 267, \"ini\": 346, \"rankvar\": 159}, {\"group\": [447.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"155\", \"clust\": 443, \"rank\": 125, \"ini\": 345, \"rankvar\": 280}, {\"group\": [285.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"156\", \"clust\": 286, \"rank\": 248, \"ini\": 344, \"rankvar\": 73}, {\"group\": [179.0, 81.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"157\", \"clust\": 179, \"rank\": 330, \"ini\": 343, \"rankvar\": 494}, {\"group\": [353.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"158\", \"clust\": 352, \"rank\": 422, \"ini\": 342, \"rankvar\": 127}, {\"group\": [431.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"159\", \"clust\": 427, \"rank\": 332, \"ini\": 341, \"rankvar\": 246}, {\"group\": [165.0, 76.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"160\", \"clust\": 166, \"rank\": 186, \"ini\": 340, \"rankvar\": 347}, {\"group\": [401.0, 160.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"161\", \"clust\": 398, \"rank\": 89, \"ini\": 339, \"rankvar\": 101}, {\"group\": [457.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"162\", \"clust\": 456, \"rank\": 84, \"ini\": 338, \"rankvar\": 234}, {\"group\": [42.0, 25.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"163\", \"clust\": 41, \"rank\": 110, \"ini\": 337, \"rankvar\": 186}, {\"group\": [66.0, 37.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"164\", \"clust\": 63, \"rank\": 113, \"ini\": 336, \"rankvar\": 83}, {\"group\": [271.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"165\", \"clust\": 270, \"rank\": 462, \"ini\": 335, \"rankvar\": 58}, {\"group\": [458.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"166\", \"clust\": 457, \"rank\": 43, \"ini\": 334, \"rankvar\": 38}, {\"group\": [470.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"167\", \"clust\": 470, \"rank\": 464, \"ini\": 333, \"rankvar\": 56}, {\"group\": [222.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"168\", \"clust\": 221, \"rank\": 204, \"ini\": 332, \"rankvar\": 0}, {\"group\": [449.0, 176.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"169\", \"clust\": 448, \"rank\": 314, \"ini\": 331, \"rankvar\": 220}, {\"group\": [15.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"170\", \"clust\": 15, \"rank\": 77, \"ini\": 330, \"rankvar\": 306}, {\"group\": [407.0, 163.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"171\", \"clust\": 407, \"rank\": 213, \"ini\": 329, \"rankvar\": 441}, {\"group\": [253.0, 107.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"172\", \"clust\": 250, \"rank\": 7, \"ini\": 328, \"rankvar\": 86}, {\"group\": [172.0, 79.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"173\", \"clust\": 172, \"rank\": 384, \"ini\": 327, \"rankvar\": 236}, {\"group\": [109.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"174\", \"clust\": 109, \"rank\": 369, \"ini\": 326, \"rankvar\": 443}, {\"group\": [26.0, 15.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"175\", \"clust\": 25, \"rank\": 343, \"ini\": 325, \"rankvar\": 203}, {\"group\": [305.0, 129.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"176\", \"clust\": 304, \"rank\": 49, \"ini\": 324, \"rankvar\": 153}, {\"group\": [190.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"177\", \"clust\": 192, \"rank\": 36, \"ini\": 323, \"rankvar\": 132}, {\"group\": [74.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"178\", \"clust\": 73, \"rank\": 181, \"ini\": 322, \"rankvar\": 133}, {\"group\": [84.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"179\", \"clust\": 83, \"rank\": 176, \"ini\": 321, \"rankvar\": 240}, {\"group\": [412.0, 167.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"180\", \"clust\": 413, \"rank\": 366, \"ini\": 320, \"rankvar\": 192}, {\"group\": [387.0, 157.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"181\", \"clust\": 387, \"rank\": 266, \"ini\": 319, \"rankvar\": 349}, {\"group\": [76.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"182\", \"clust\": 75, \"rank\": 460, \"ini\": 318, \"rankvar\": 460}, {\"group\": [105.0, 53.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"183\", \"clust\": 104, \"rank\": 240, \"ini\": 317, \"rankvar\": 176}, {\"group\": [68.0, 38.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"184\", \"clust\": 68, \"rank\": 253, \"ini\": 316, \"rankvar\": 175}, {\"group\": [319.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"185\", \"clust\": 319, \"rank\": 207, \"ini\": 315, \"rankvar\": 263}, {\"group\": [86.0, 44.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"186\", \"clust\": 85, \"rank\": 193, \"ini\": 314, \"rankvar\": 370}, {\"group\": [139.0, 65.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"187\", \"clust\": 134, \"rank\": 54, \"ini\": 313, \"rankvar\": 285}, {\"group\": [334.0, 140.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"188\", \"clust\": 333, \"rank\": 179, \"ini\": 312, \"rankvar\": 124}, {\"group\": [59.0, 34.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"189\", \"clust\": 58, \"rank\": 241, \"ini\": 311, \"rankvar\": 476}, {\"group\": [326.0, 136.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"190\", \"clust\": 326, \"rank\": 443, \"ini\": 310, \"rankvar\": 442}, {\"group\": [196.0, 89.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"191\", \"clust\": 193, \"rank\": 209, \"ini\": 309, \"rankvar\": 409}, {\"group\": [114.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"192\", \"clust\": 113, \"rank\": 159, \"ini\": 308, \"rankvar\": 386}, {\"group\": [23.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"193\", \"clust\": 20, \"rank\": 0, \"ini\": 307, \"rankvar\": 17}, {\"group\": [478.0, 182.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"194\", \"clust\": 475, \"rank\": 289, \"ini\": 306, \"rankvar\": 391}, {\"group\": [335.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"195\", \"clust\": 334, \"rank\": 451, \"ini\": 305, \"rankvar\": 314}, {\"group\": [220.0, 96.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"196\", \"clust\": 219, \"rank\": 117, \"ini\": 304, \"rankvar\": 214}, {\"group\": [370.0, 148.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"197\", \"clust\": 367, \"rank\": 364, \"ini\": 303, \"rankvar\": 317}, {\"group\": [206.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"198\", \"clust\": 205, \"rank\": 466, \"ini\": 302, \"rankvar\": 94}, {\"group\": [140.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"199\", \"clust\": 139, \"rank\": 298, \"ini\": 301, \"rankvar\": 252}, {\"group\": [6.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"200\", \"clust\": 4, \"rank\": 101, \"ini\": 300, \"rankvar\": 484}, {\"group\": [62.0, 35.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"201\", \"clust\": 60, \"rank\": 480, \"ini\": 299, \"rankvar\": 292}, {\"group\": [298.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"202\", \"clust\": 299, \"rank\": 68, \"ini\": 298, \"rankvar\": 36}, {\"group\": [202.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"203\", \"clust\": 201, \"rank\": 133, \"ini\": 297, \"rankvar\": 301}, {\"group\": [443.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"204\", \"clust\": 440, \"rank\": 273, \"ini\": 296, \"rankvar\": 112}, {\"group\": [199.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"205\", \"clust\": 199, \"rank\": 57, \"ini\": 295, \"rankvar\": 256}, {\"group\": [249.0, 105.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"206\", \"clust\": 248, \"rank\": 175, \"ini\": 294, \"rankvar\": 487}, {\"group\": [148.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"207\", \"clust\": 147, \"rank\": 373, \"ini\": 293, \"rankvar\": 164}, {\"group\": [94.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"208\", \"clust\": 93, \"rank\": 189, \"ini\": 292, \"rankvar\": 231}, {\"group\": [70.0, 39.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"209\", \"clust\": 69, \"rank\": 333, \"ini\": 291, \"rankvar\": 42}, {\"group\": [416.0, 169.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"210\", \"clust\": 415, \"rank\": 323, \"ini\": 290, \"rankvar\": 402}, {\"group\": [118.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"211\", \"clust\": 120, \"rank\": 417, \"ini\": 289, \"rankvar\": 152}, {\"group\": [187.0, 86.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"212\", \"clust\": 186, \"rank\": 91, \"ini\": 288, \"rankvar\": 221}, {\"group\": [267.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"213\", \"clust\": 266, \"rank\": 478, \"ini\": 287, \"rankvar\": 33}, {\"group\": [409.0, 165.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"214\", \"clust\": 409, \"rank\": 118, \"ini\": 286, \"rankvar\": 188}, {\"group\": [460.0, 178.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"215\", \"clust\": 459, \"rank\": 98, \"ini\": 285, \"rankvar\": 206}, {\"group\": [128.0, 61.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"216\", \"clust\": 127, \"rank\": 67, \"ini\": 284, \"rankvar\": 34}, {\"group\": [430.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"217\", \"clust\": 428, \"rank\": 47, \"ini\": 283, \"rankvar\": 8}, {\"group\": [120.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"218\", \"clust\": 119, \"rank\": 415, \"ini\": 282, \"rankvar\": 413}, {\"group\": [56.0, 32.0, 14.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"219\", \"clust\": 55, \"rank\": 2, \"ini\": 281, \"rankvar\": 44}, {\"group\": [131.0, 62.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"220\", \"clust\": 131, \"rank\": 24, \"ini\": 280, \"rankvar\": 1}, {\"group\": [218.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"221\", \"clust\": 216, \"rank\": 438, \"ini\": 279, \"rankvar\": 291}, {\"group\": [337.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"222\", \"clust\": 336, \"rank\": 214, \"ini\": 278, \"rankvar\": 385}, {\"group\": [150.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"223\", \"clust\": 149, \"rank\": 399, \"ini\": 277, \"rankvar\": 55}, {\"group\": [266.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"224\", \"clust\": 265, \"rank\": 474, \"ini\": 276, \"rankvar\": 489}, {\"group\": [28.0, 16.0, 8.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"225\", \"clust\": 27, \"rank\": 87, \"ini\": 275, \"rankvar\": 433}, {\"group\": [312.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"226\", \"clust\": 311, \"rank\": 106, \"ini\": 274, \"rankvar\": 11}, {\"group\": [63.0, 36.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"227\", \"clust\": 59, \"rank\": 82, \"ini\": 273, \"rankvar\": 473}, {\"group\": [344.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"228\", \"clust\": 343, \"rank\": 334, \"ini\": 272, \"rankvar\": 262}, {\"group\": [486.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"229\", \"clust\": 486, \"rank\": 455, \"ini\": 271, \"rankvar\": 423}, {\"group\": [500.0, 193.0, 53.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"230\", \"clust\": 490, \"rank\": 9, \"ini\": 270, \"rankvar\": 401}, {\"group\": [93.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"231\", \"clust\": 92, \"rank\": 315, \"ini\": 269, \"rankvar\": 284}, {\"group\": [444.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"232\", \"clust\": 445, \"rank\": 27, \"ini\": 268, \"rankvar\": 307}, {\"group\": [269.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"233\", \"clust\": 268, \"rank\": 270, \"ini\": 267, \"rankvar\": 166}, {\"group\": [194.0, 89.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"234\", \"clust\": 194, \"rank\": 359, \"ini\": 266, \"rankvar\": 354}, {\"group\": [260.0, 111.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"235\", \"clust\": 260, \"rank\": 200, \"ini\": 265, \"rankvar\": 100}, {\"group\": [147.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"236\", \"clust\": 143, \"rank\": 256, \"ini\": 264, \"rankvar\": 336}, {\"group\": [230.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"237\", \"clust\": 226, \"rank\": 356, \"ini\": 263, \"rankvar\": 79}, {\"group\": [184.0, 84.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"238\", \"clust\": 184, \"rank\": 164, \"ini\": 262, \"rankvar\": 357}, {\"group\": [90.0, 46.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"239\", \"clust\": 90, \"rank\": 392, \"ini\": 261, \"rankvar\": 350}, {\"group\": [254.0, 108.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"240\", \"clust\": 254, \"rank\": 208, \"ini\": 260, \"rankvar\": 150}, {\"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"241\", \"clust\": 2, \"rank\": 39, \"ini\": 259, \"rankvar\": 209}, {\"group\": [40.0, 24.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"242\", \"clust\": 39, \"rank\": 19, \"ini\": 258, \"rankvar\": 53}, {\"group\": [164.0, 75.0, 26.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"243\", \"clust\": 163, \"rank\": 70, \"ini\": 257, \"rankvar\": 251}, {\"group\": [259.0, 110.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"244\", \"clust\": 256, \"rank\": 352, \"ini\": 256, \"rankvar\": 404}, {\"group\": [479.0, 183.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"245\", \"clust\": 479, \"rank\": 421, \"ini\": 255, \"rankvar\": 309}, {\"group\": [247.0, 104.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"246\", \"clust\": 246, \"rank\": 237, \"ini\": 254, \"rankvar\": 392}, {\"group\": [173.0, 79.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"247\", \"clust\": 173, \"rank\": 491, \"ini\": 253, \"rankvar\": 170}, {\"group\": [302.0, 128.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"248\", \"clust\": 302, \"rank\": 135, \"ini\": 252, \"rankvar\": 261}, {\"group\": [439.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"249\", \"clust\": 438, \"rank\": 477, \"ini\": 251, \"rankvar\": 118}, {\"group\": [246.0, 103.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"250\", \"clust\": 245, \"rank\": 375, \"ini\": 250, \"rankvar\": 283}, {\"group\": [487.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"251\", \"clust\": 484, \"rank\": 354, \"ini\": 249, \"rankvar\": 400}, {\"group\": [47.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"252\", \"clust\": 43, \"rank\": 81, \"ini\": 248, \"rankvar\": 335}, {\"group\": [346.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"253\", \"clust\": 345, \"rank\": 170, \"ini\": 247, \"rankvar\": 134}, {\"group\": [210.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"254\", \"clust\": 209, \"rank\": 74, \"ini\": 246, \"rankvar\": 137}, {\"group\": [221.0, 96.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"255\", \"clust\": 220, \"rank\": 65, \"ini\": 245, \"rankvar\": 68}, {\"group\": [115.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"256\", \"clust\": 114, \"rank\": 361, \"ini\": 244, \"rankvar\": 444}, {\"group\": [399.0, 160.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"257\", \"clust\": 399, \"rank\": 312, \"ini\": 243, \"rankvar\": 97}, {\"group\": [200.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"258\", \"clust\": 200, \"rank\": 216, \"ini\": 242, \"rankvar\": 282}, {\"group\": [441.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"259\", \"clust\": 441, \"rank\": 363, \"ini\": 241, \"rankvar\": 182}, {\"group\": [329.0, 137.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"260\", \"clust\": 328, \"rank\": 155, \"ini\": 240, \"rankvar\": 353}, {\"group\": [117.0, 57.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"261\", \"clust\": 116, \"rank\": 136, \"ini\": 239, \"rankvar\": 254}, {\"group\": [366.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"262\", \"clust\": 364, \"rank\": 467, \"ini\": 238, \"rankvar\": 225}, {\"group\": [345.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"263\", \"clust\": 344, \"rank\": 71, \"ini\": 237, \"rankvar\": 87}, {\"group\": [127.0, 60.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"264\", \"clust\": 126, \"rank\": 325, \"ini\": 236, \"rankvar\": 389}, {\"group\": [231.0, 98.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"265\", \"clust\": 231, \"rank\": 111, \"ini\": 235, \"rankvar\": 418}, {\"group\": [82.0, 43.0, 17.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"266\", \"clust\": 81, \"rank\": 44, \"ini\": 234, \"rankvar\": 210}, {\"group\": [71.0, 39.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"267\", \"clust\": 70, \"rank\": 389, \"ini\": 233, \"rankvar\": 271}, {\"group\": [217.0, 95.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"268\", \"clust\": 218, \"rank\": 414, \"ini\": 232, \"rankvar\": 313}, {\"group\": [453.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"269\", \"clust\": 455, \"rank\": 486, \"ini\": 231, \"rankvar\": 437}, {\"group\": [234.0, 99.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"270\", \"clust\": 236, \"rank\": 244, \"ini\": 230, \"rankvar\": 18}, {\"group\": [134.0, 63.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"271\", \"clust\": 133, \"rank\": 122, \"ini\": 229, \"rankvar\": 345}, {\"group\": [400.0, 160.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"272\", \"clust\": 400, \"rank\": 287, \"ini\": 228, \"rankvar\": 233}, {\"group\": [244.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"273\", \"clust\": 240, \"rank\": 197, \"ini\": 227, \"rankvar\": 367}, {\"group\": [308.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"274\", \"clust\": 308, \"rank\": 327, \"ini\": 226, \"rankvar\": 185}, {\"group\": [192.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"275\", \"clust\": 189, \"rank\": 218, \"ini\": 225, \"rankvar\": 278}, {\"group\": [397.0, 159.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"276\", \"clust\": 397, \"rank\": 275, \"ini\": 224, \"rankvar\": 174}, {\"group\": [442.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"277\", \"clust\": 442, \"rank\": 349, \"ini\": 223, \"rankvar\": 20}, {\"group\": [468.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"278\", \"clust\": 467, \"rank\": 305, \"ini\": 222, \"rankvar\": 140}, {\"group\": [480.0, 183.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"279\", \"clust\": 480, \"rank\": 140, \"ini\": 221, \"rankvar\": 78}, {\"group\": [388.0, 157.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"280\", \"clust\": 385, \"rank\": 302, \"ini\": 220, \"rankvar\": 358}, {\"group\": [392.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"281\", \"clust\": 393, \"rank\": 472, \"ini\": 219, \"rankvar\": 242}, {\"group\": [413.0, 167.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"282\", \"clust\": 414, \"rank\": 483, \"ini\": 218, \"rankvar\": 436}, {\"group\": [11.0, 8.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"283\", \"clust\": 10, \"rank\": 31, \"ini\": 217, \"rankvar\": 417}, {\"group\": [385.0, 156.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"284\", \"clust\": 380, \"rank\": 17, \"ini\": 216, \"rankvar\": 167}, {\"group\": [161.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"285\", \"clust\": 159, \"rank\": 225, \"ini\": 215, \"rankvar\": 397}, {\"group\": [273.0, 114.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"286\", \"clust\": 274, \"rank\": 141, \"ini\": 214, \"rankvar\": 446}, {\"group\": [204.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"287\", \"clust\": 203, \"rank\": 484, \"ini\": 213, \"rankvar\": 287}, {\"group\": [454.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"288\", \"clust\": 453, \"rank\": 386, \"ini\": 212, \"rankvar\": 189}, {\"group\": [19.0, 12.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"289\", \"clust\": 19, \"rank\": 409, \"ini\": 211, \"rankvar\": 488}, {\"group\": [197.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"290\", \"clust\": 196, \"rank\": 205, \"ini\": 210, \"rankvar\": 224}, {\"group\": [423.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"291\", \"clust\": 422, \"rank\": 380, \"ini\": 209, \"rankvar\": 341}, {\"group\": [185.0, 84.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"292\", \"clust\": 185, \"rank\": 412, \"ini\": 208, \"rankvar\": 316}, {\"group\": [364.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"293\", \"clust\": 365, \"rank\": 428, \"ini\": 207, \"rankvar\": 211}, {\"group\": [153.0, 70.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"294\", \"clust\": 152, \"rank\": 99, \"ini\": 206, \"rankvar\": 121}, {\"group\": [424.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"295\", \"clust\": 423, \"rank\": 403, \"ini\": 205, \"rankvar\": 151}, {\"group\": [417.0, 169.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"296\", \"clust\": 416, \"rank\": 297, \"ini\": 204, \"rankvar\": 478}, {\"group\": [377.0, 153.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"297\", \"clust\": 378, \"rank\": 345, \"ini\": 203, \"rankvar\": 320}, {\"group\": [375.0, 152.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"298\", \"clust\": 374, \"rank\": 21, \"ini\": 202, \"rankvar\": 181}, {\"group\": [16.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"299\", \"clust\": 16, \"rank\": 221, \"ini\": 201, \"rankvar\": 195}, {\"group\": [239.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"300\", \"clust\": 239, \"rank\": 408, \"ini\": 200, \"rankvar\": 330}, {\"group\": [122.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"301\", \"clust\": 123, \"rank\": 211, \"ini\": 199, \"rankvar\": 471}, {\"group\": [207.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"302\", \"clust\": 206, \"rank\": 471, \"ini\": 198, \"rankvar\": 376}, {\"group\": [235.0, 99.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"303\", \"clust\": 234, \"rank\": 258, \"ini\": 197, \"rankvar\": 198}, {\"group\": [10.0, 7.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"304\", \"clust\": 7, \"rank\": 245, \"ini\": 196, \"rankvar\": 486}, {\"group\": [287.0, 121.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"305\", \"clust\": 288, \"rank\": 243, \"ini\": 195, \"rankvar\": 361}, {\"group\": [292.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"306\", \"clust\": 291, \"rank\": 394, \"ini\": 194, \"rankvar\": 277}, {\"group\": [376.0, 152.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"307\", \"clust\": 375, \"rank\": 319, \"ini\": 193, \"rankvar\": 410}, {\"group\": [248.0, 104.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"308\", \"clust\": 247, \"rank\": 100, \"ini\": 192, \"rankvar\": 339}, {\"group\": [119.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"309\", \"clust\": 121, \"rank\": 476, \"ini\": 191, \"rankvar\": 223}, {\"group\": [272.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"310\", \"clust\": 271, \"rank\": 431, \"ini\": 190, \"rankvar\": 249}, {\"group\": [257.0, 109.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"311\", \"clust\": 257, \"rank\": 150, \"ini\": 189, \"rankvar\": 477}, {\"group\": [354.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"312\", \"clust\": 353, \"rank\": 338, \"ini\": 188, \"rankvar\": 85}, {\"group\": [158.0, 73.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"313\", \"clust\": 157, \"rank\": 3, \"ini\": 187, \"rankvar\": 6}, {\"group\": [156.0, 72.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"314\", \"clust\": 153, \"rank\": 94, \"ini\": 186, \"rankvar\": 408}, {\"group\": [264.0, 112.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"315\", \"clust\": 263, \"rank\": 404, \"ini\": 185, \"rankvar\": 117}, {\"group\": [365.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"316\", \"clust\": 366, \"rank\": 396, \"ini\": 184, \"rankvar\": 95}, {\"group\": [137.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"317\", \"clust\": 137, \"rank\": 177, \"ini\": 183, \"rankvar\": 432}, {\"group\": [280.0, 119.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"318\", \"clust\": 279, \"rank\": 112, \"ini\": 182, \"rankvar\": 364}, {\"group\": [57.0, 33.0, 14.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"319\", \"clust\": 56, \"rank\": 263, \"ini\": 181, \"rankvar\": 337}, {\"group\": [24.0, 14.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"320\", \"clust\": 17, \"rank\": 223, \"ini\": 180, \"rankvar\": 455}, {\"group\": [425.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"321\", \"clust\": 424, \"rank\": 247, \"ini\": 179, \"rankvar\": 297}, {\"group\": [314.0, 131.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"322\", \"clust\": 314, \"rank\": 217, \"ini\": 178, \"rankvar\": 468}, {\"group\": [145.0, 67.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"323\", \"clust\": 146, \"rank\": 423, \"ini\": 177, \"rankvar\": 109}, {\"group\": [466.0, 180.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"324\", \"clust\": 465, \"rank\": 158, \"ini\": 176, \"rankvar\": 91}, {\"group\": [223.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"325\", \"clust\": 222, \"rank\": 498, \"ini\": 175, \"rankvar\": 2}, {\"group\": [472.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"326\", \"clust\": 473, \"rank\": 433, \"ini\": 174, \"rankvar\": 63}, {\"group\": [327.0, 136.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"327\", \"clust\": 327, \"rank\": 311, \"ini\": 173, \"rankvar\": 279}, {\"group\": [451.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"328\", \"clust\": 450, \"rank\": 124, \"ini\": 172, \"rankvar\": 269}, {\"group\": [426.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"329\", \"clust\": 425, \"rank\": 294, \"ini\": 171, \"rankvar\": 331}, {\"group\": [45.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"330\", \"clust\": 46, \"rank\": 171, \"ini\": 170, \"rankvar\": 162}, {\"group\": [372.0, 149.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"331\", \"clust\": 373, \"rank\": 376, \"ini\": 169, \"rankvar\": 245}, {\"group\": [489.0, 185.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"332\", \"clust\": 489, \"rank\": 306, \"ini\": 168, \"rankvar\": 379}, {\"group\": [102.0, 51.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"333\", \"clust\": 101, \"rank\": 387, \"ini\": 167, \"rankvar\": 334}, {\"group\": [313.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"334\", \"clust\": 312, \"rank\": 310, \"ini\": 166, \"rankvar\": 21}, {\"group\": [4.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"335\", \"clust\": 5, \"rank\": 114, \"ini\": 165, \"rankvar\": 481}, {\"group\": [154.0, 71.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"336\", \"clust\": 154, \"rank\": 468, \"ini\": 164, \"rankvar\": 458}, {\"group\": [73.0, 40.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"337\", \"clust\": 72, \"rank\": 138, \"ini\": 163, \"rankvar\": 322}, {\"group\": [250.0, 105.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"338\", \"clust\": 249, \"rank\": 382, \"ini\": 162, \"rankvar\": 483}, {\"group\": [228.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"339\", \"clust\": 229, \"rank\": 336, \"ini\": 161, \"rankvar\": 265}, {\"group\": [41.0, 24.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"340\", \"clust\": 40, \"rank\": 1, \"ini\": 160, \"rankvar\": 84}, {\"group\": [186.0, 85.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"341\", \"clust\": 183, \"rank\": 23, \"ini\": 159, \"rankvar\": 115}, {\"group\": [155.0, 71.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"342\", \"clust\": 155, \"rank\": 450, \"ini\": 158, \"rankvar\": 480}, {\"group\": [177.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"343\", \"clust\": 176, \"rank\": 284, \"ini\": 157, \"rankvar\": 49}, {\"group\": [46.0, 26.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"344\", \"clust\": 44, \"rank\": 104, \"ini\": 156, \"rankvar\": 72}, {\"group\": [411.0, 166.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"345\", \"clust\": 408, \"rank\": 137, \"ini\": 155, \"rankvar\": 420}, {\"group\": [438.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"346\", \"clust\": 437, \"rank\": 499, \"ini\": 154, \"rankvar\": 65}, {\"group\": [54.0, 30.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"347\", \"clust\": 54, \"rank\": 56, \"ini\": 153, \"rankvar\": 110}, {\"group\": [281.0, 120.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"348\", \"clust\": 282, \"rank\": 490, \"ini\": 152, \"rankvar\": 332}, {\"group\": [291.0, 123.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"349\", \"clust\": 290, \"rank\": 445, \"ini\": 151, \"rankvar\": 360}, {\"group\": [384.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"350\", \"clust\": 384, \"rank\": 105, \"ini\": 150, \"rankvar\": 215}, {\"group\": [79.0, 42.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"351\", \"clust\": 79, \"rank\": 360, \"ini\": 149, \"rankvar\": 71}, {\"group\": [258.0, 109.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"352\", \"clust\": 258, \"rank\": 262, \"ini\": 148, \"rankvar\": 237}, {\"group\": [198.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"353\", \"clust\": 197, \"rank\": 353, \"ini\": 147, \"rankvar\": 139}, {\"group\": [35.0, 21.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"354\", \"clust\": 35, \"rank\": 316, \"ini\": 146, \"rankvar\": 135}, {\"group\": [395.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"355\", \"clust\": 391, \"rank\": 76, \"ini\": 145, \"rankvar\": 106}, {\"group\": [170.0, 78.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"356\", \"clust\": 170, \"rank\": 303, \"ini\": 144, \"rankvar\": 57}, {\"group\": [368.0, 148.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"357\", \"clust\": 368, \"rank\": 20, \"ini\": 143, \"rankvar\": 29}, {\"group\": [358.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"358\", \"clust\": 356, \"rank\": 344, \"ini\": 142, \"rankvar\": 125}, {\"group\": [106.0, 53.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"359\", \"clust\": 105, \"rank\": 166, \"ini\": 141, \"rankvar\": 461}, {\"group\": [360.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"360\", \"clust\": 359, \"rank\": 378, \"ini\": 140, \"rankvar\": 200}, {\"group\": [149.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"361\", \"clust\": 148, \"rank\": 370, \"ini\": 139, \"rankvar\": 213}, {\"group\": [420.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"362\", \"clust\": 419, \"rank\": 309, \"ini\": 138, \"rankvar\": 191}, {\"group\": [476.0, 182.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"363\", \"clust\": 476, \"rank\": 355, \"ini\": 137, \"rankvar\": 145}, {\"group\": [191.0, 87.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"364\", \"clust\": 190, \"rank\": 288, \"ini\": 136, \"rankvar\": 435}, {\"group\": [332.0, 139.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"365\", \"clust\": 331, \"rank\": 276, \"ini\": 135, \"rankvar\": 156}, {\"group\": [243.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"366\", \"clust\": 241, \"rank\": 182, \"ini\": 134, \"rankvar\": 50}, {\"group\": [205.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"367\", \"clust\": 204, \"rank\": 492, \"ini\": 133, \"rankvar\": 122}, {\"group\": [98.0, 50.0, 19.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"368\", \"clust\": 95, \"rank\": 60, \"ini\": 132, \"rankvar\": 491}, {\"group\": [349.0, 144.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"369\", \"clust\": 350, \"rank\": 154, \"ini\": 131, \"rankvar\": 219}, {\"group\": [356.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"370\", \"clust\": 357, \"rank\": 308, \"ini\": 130, \"rankvar\": 12}, {\"group\": [473.0, 181.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"371\", \"clust\": 474, \"rank\": 496, \"ini\": 129, \"rankvar\": 54}, {\"group\": [359.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"372\", \"clust\": 355, \"rank\": 230, \"ini\": 128, \"rankvar\": 387}, {\"group\": [168.0, 77.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"373\", \"clust\": 164, \"rank\": 129, \"ini\": 127, \"rankvar\": 375}, {\"group\": [21.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"374\", \"clust\": 23, \"rank\": 341, \"ini\": 126, \"rankvar\": 226}, {\"group\": [64.0, 37.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"375\", \"clust\": 64, \"rank\": 318, \"ini\": 125, \"rankvar\": 208}, {\"group\": [440.0, 174.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"376\", \"clust\": 439, \"rank\": 473, \"ini\": 124, \"rankvar\": 201}, {\"group\": [166.0, 76.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"377\", \"clust\": 167, \"rank\": 139, \"ini\": 123, \"rankvar\": 304}, {\"group\": [12.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"378\", \"clust\": 11, \"rank\": 143, \"ini\": 122, \"rankvar\": 459}, {\"group\": [445.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"379\", \"clust\": 446, \"rank\": 34, \"ini\": 121, \"rankvar\": 172}, {\"group\": [379.0, 153.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"380\", \"clust\": 377, \"rank\": 120, \"ini\": 120, \"rankvar\": 412}, {\"group\": [22.0, 13.0, 7.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"381\", \"clust\": 21, \"rank\": 347, \"ini\": 119, \"rankvar\": 266}, {\"group\": [390.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"382\", \"clust\": 390, \"rank\": 435, \"ini\": 118, \"rankvar\": 272}, {\"group\": [241.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"383\", \"clust\": 242, \"rank\": 395, \"ini\": 117, \"rankvar\": 250}, {\"group\": [421.0, 171.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"384\", \"clust\": 420, \"rank\": 277, \"ini\": 116, \"rankvar\": 40}, {\"group\": [178.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"385\", \"clust\": 177, \"rank\": 416, \"ini\": 115, \"rankvar\": 204}, {\"group\": [8.0, 6.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"386\", \"clust\": 8, \"rank\": 48, \"ini\": 114, \"rankvar\": 383}, {\"group\": [36.0, 21.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"387\", \"clust\": 36, \"rank\": 425, \"ini\": 113, \"rankvar\": 163}, {\"group\": [297.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"388\", \"clust\": 298, \"rank\": 254, \"ini\": 112, \"rankvar\": 61}, {\"group\": [49.0, 27.0, 12.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"389\", \"clust\": 49, \"rank\": 115, \"ini\": 111, \"rankvar\": 450}, {\"group\": [477.0, 182.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"390\", \"clust\": 477, \"rank\": 393, \"ini\": 110, \"rankvar\": 311}, {\"group\": [188.0, 86.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"391\", \"clust\": 187, \"rank\": 293, \"ini\": 109, \"rankvar\": 212}, {\"group\": [111.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"392\", \"clust\": 111, \"rank\": 210, \"ini\": 108, \"rankvar\": 470}, {\"group\": [141.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"393\", \"clust\": 140, \"rank\": 145, \"ini\": 107, \"rankvar\": 327}, {\"group\": [278.0, 118.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"394\", \"clust\": 277, \"rank\": 103, \"ini\": 106, \"rankvar\": 472}, {\"group\": [176.0, 80.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"395\", \"clust\": 175, \"rank\": 199, \"ini\": 105, \"rankvar\": 363}, {\"group\": [343.0, 142.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"396\", \"clust\": 342, \"rank\": 437, \"ini\": 104, \"rankvar\": 232}, {\"group\": [129.0, 61.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"397\", \"clust\": 128, \"rank\": 397, \"ini\": 103, \"rankvar\": 69}, {\"group\": [293.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"398\", \"clust\": 292, \"rank\": 418, \"ini\": 102, \"rankvar\": 310}, {\"group\": [240.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"399\", \"clust\": 237, \"rank\": 236, \"ini\": 101, \"rankvar\": 399}, {\"group\": [309.0, 130.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"400\", \"clust\": 306, \"rank\": 246, \"ini\": 100, \"rankvar\": 373}, {\"group\": [242.0, 102.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"401\", \"clust\": 243, \"rank\": 461, \"ini\": 99, \"rankvar\": 338}, {\"group\": [306.0, 129.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"402\", \"clust\": 305, \"rank\": 427, \"ini\": 98, \"rankvar\": 81}, {\"group\": [410.0, 165.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"403\", \"clust\": 410, \"rank\": 286, \"ini\": 97, \"rankvar\": 342}, {\"group\": [320.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"404\", \"clust\": 320, \"rank\": 390, \"ini\": 96, \"rankvar\": 119}, {\"group\": [299.0, 125.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"405\", \"clust\": 300, \"rank\": 367, \"ini\": 95, \"rankvar\": 464}, {\"group\": [317.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"406\", \"clust\": 317, \"rank\": 63, \"ini\": 94, \"rankvar\": 24}, {\"group\": [38.0, 22.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"407\", \"clust\": 38, \"rank\": 195, \"ini\": 93, \"rankvar\": 147}, {\"group\": [382.0, 155.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"408\", \"clust\": 382, \"rank\": 439, \"ini\": 92, \"rankvar\": 193}, {\"group\": [123.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"409\", \"clust\": 124, \"rank\": 350, \"ini\": 91, \"rankvar\": 475}, {\"group\": [484.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"410\", \"clust\": 481, \"rank\": 434, \"ini\": 90, \"rankvar\": 146}, {\"group\": [138.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"411\", \"clust\": 138, \"rank\": 233, \"ini\": 89, \"rankvar\": 454}, {\"group\": [493.0, 187.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"412\", \"clust\": 495, \"rank\": 249, \"ini\": 88, \"rankvar\": 344}, {\"group\": [402.0, 161.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"413\", \"clust\": 403, \"rank\": 198, \"ini\": 87, \"rankvar\": 190}, {\"group\": [324.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"414\", \"clust\": 323, \"rank\": 362, \"ini\": 86, \"rankvar\": 299}, {\"group\": [315.0, 131.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"415\", \"clust\": 315, \"rank\": 153, \"ini\": 85, \"rankvar\": 419}, {\"group\": [330.0, 138.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"416\", \"clust\": 329, \"rank\": 69, \"ini\": 84, \"rankvar\": 171}, {\"group\": [61.0, 35.0, 15.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"417\", \"clust\": 62, \"rank\": 201, \"ini\": 83, \"rankvar\": 244}, {\"group\": [398.0, 159.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"418\", \"clust\": 395, \"rank\": 300, \"ini\": 82, \"rankvar\": 111}, {\"group\": [252.0, 106.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"419\", \"clust\": 252, \"rank\": 252, \"ini\": 81, \"rankvar\": 346}, {\"group\": [295.0, 124.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"420\", \"clust\": 294, \"rank\": 340, \"ini\": 80, \"rankvar\": 243}, {\"group\": [419.0, 170.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"421\", \"clust\": 418, \"rank\": 348, \"ini\": 79, \"rankvar\": 495}, {\"group\": [214.0, 94.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"422\", \"clust\": 214, \"rank\": 265, \"ini\": 78, \"rankvar\": 136}, {\"group\": [229.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"423\", \"clust\": 227, \"rank\": 123, \"ini\": 77, \"rankvar\": 3}, {\"group\": [338.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"424\", \"clust\": 337, \"rank\": 97, \"ini\": 76, \"rankvar\": 76}, {\"group\": [180.0, 81.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"425\", \"clust\": 180, \"rank\": 313, \"ini\": 75, \"rankvar\": 492}, {\"group\": [355.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"426\", \"clust\": 354, \"rank\": 494, \"ini\": 74, \"rankvar\": 343}, {\"group\": [159.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"427\", \"clust\": 160, \"rank\": 22, \"ini\": 73, \"rankvar\": 52}, {\"group\": [174.0, 79.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"428\", \"clust\": 171, \"rank\": 232, \"ini\": 72, \"rankvar\": 308}, {\"group\": [52.0, 29.0, 13.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"429\", \"clust\": 51, \"rank\": 75, \"ini\": 71, \"rankvar\": 445}, {\"group\": [33.0, 19.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"430\", \"clust\": 34, \"rank\": 381, \"ini\": 70, \"rankvar\": 440}, {\"group\": [494.0, 187.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"431\", \"clust\": 496, \"rank\": 331, \"ini\": 69, \"rankvar\": 281}, {\"group\": [483.0, 184.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"432\", \"clust\": 483, \"rank\": 495, \"ini\": 68, \"rankvar\": 10}, {\"group\": [181.0, 82.0, 27.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"433\", \"clust\": 178, \"rank\": 92, \"ini\": 67, \"rankvar\": 469}, {\"group\": [5.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"434\", \"clust\": 6, \"rank\": 45, \"ini\": 66, \"rankvar\": 333}, {\"group\": [367.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"435\", \"clust\": 363, \"rank\": 432, \"ini\": 65, \"rankvar\": 463}, {\"group\": [357.0, 146.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"436\", \"clust\": 358, \"rank\": 29, \"ini\": 64, \"rankvar\": 4}, {\"group\": [162.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"437\", \"clust\": 158, \"rank\": 259, \"ini\": 63, \"rankvar\": 259}, {\"group\": [378.0, 153.0, 42.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"438\", \"clust\": 379, \"rank\": 206, \"ini\": 62, \"rankvar\": 70}, {\"group\": [142.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"439\", \"clust\": 141, \"rank\": 16, \"ini\": 61, \"rankvar\": 32}, {\"group\": [113.0, 56.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"440\", \"clust\": 108, \"rank\": 227, \"ini\": 60, \"rankvar\": 426}, {\"group\": [325.0, 135.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"441\", \"clust\": 324, \"rank\": 324, \"ini\": 59, \"rankvar\": 340}, {\"group\": [351.0, 145.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"442\", \"clust\": 347, \"rank\": 163, \"ini\": 58, \"rankvar\": 490}, {\"group\": [461.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"443\", \"clust\": 462, \"rank\": 229, \"ini\": 57, \"rankvar\": 202}, {\"group\": [143.0, 66.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"444\", \"clust\": 142, \"rank\": 142, \"ini\": 56, \"rankvar\": 89}, {\"group\": [225.0, 97.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"445\", \"clust\": 225, \"rank\": 488, \"ini\": 55, \"rankvar\": 16}, {\"group\": [490.0, 185.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"446\", \"clust\": 487, \"rank\": 377, \"ini\": 54, \"rankvar\": 414}, {\"group\": [373.0, 150.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"447\", \"clust\": 371, \"rank\": 212, \"ini\": 53, \"rankvar\": 173}, {\"group\": [404.0, 161.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"448\", \"clust\": 402, \"rank\": 26, \"ini\": 52, \"rankvar\": 39}, {\"group\": [429.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"449\", \"clust\": 430, \"rank\": 407, \"ini\": 51, \"rankvar\": 7}, {\"group\": [9.0, 6.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"450\", \"clust\": 9, \"rank\": 215, \"ini\": 50, \"rankvar\": 366}, {\"group\": [77.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"451\", \"clust\": 76, \"rank\": 239, \"ini\": 49, \"rankvar\": 37}, {\"group\": [369.0, 148.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"452\", \"clust\": 369, \"rank\": 465, \"ini\": 48, \"rankvar\": 482}, {\"group\": [361.0, 147.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"453\", \"clust\": 360, \"rank\": 429, \"ini\": 47, \"rankvar\": 23}, {\"group\": [268.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"454\", \"clust\": 267, \"rank\": 489, \"ini\": 46, \"rankvar\": 13}, {\"group\": [151.0, 68.0, 24.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"455\", \"clust\": 150, \"rank\": 482, \"ini\": 45, \"rankvar\": 319}, {\"group\": [496.0, 189.0, 50.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"456\", \"clust\": 493, \"rank\": 12, \"ini\": 44, \"rankvar\": 196}, {\"group\": [455.0, 177.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"457\", \"clust\": 452, \"rank\": 398, \"ini\": 43, \"rankvar\": 415}, {\"group\": [301.0, 127.0, 37.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"458\", \"clust\": 295, \"rank\": 295, \"ini\": 42, \"rankvar\": 405}, {\"group\": [347.0, 143.0, 40.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"459\", \"clust\": 346, \"rank\": 58, \"ini\": 41, \"rankvar\": 184}, {\"group\": [446.0, 175.0, 47.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"460\", \"clust\": 444, \"rank\": 8, \"ini\": 40, \"rankvar\": 141}, {\"group\": [374.0, 151.0, 41.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"461\", \"clust\": 370, \"rank\": 90, \"ini\": 39, \"rankvar\": 451}, {\"group\": [274.0, 115.0, 34.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"462\", \"clust\": 275, \"rank\": 219, \"ini\": 38, \"rankvar\": 429}, {\"group\": [104.0, 52.0, 20.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"463\", \"clust\": 103, \"rank\": 146, \"ini\": 37, \"rankvar\": 168}, {\"group\": [394.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"464\", \"clust\": 392, \"rank\": 358, \"ini\": 36, \"rankvar\": 130}, {\"group\": [124.0, 58.0, 22.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"465\", \"clust\": 122, \"rank\": 320, \"ini\": 35, \"rankvar\": 393}, {\"group\": [183.0, 83.0, 28.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"466\", \"clust\": 182, \"rank\": 46, \"ini\": 34, \"rankvar\": 273}, {\"group\": [318.0, 133.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"467\", \"clust\": 318, \"rank\": 346, \"ini\": 33, \"rankvar\": 103}, {\"group\": [462.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"468\", \"clust\": 463, \"rank\": 152, \"ini\": 32, \"rankvar\": 28}, {\"group\": [208.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"469\", \"clust\": 210, \"rank\": 463, \"ini\": 31, \"rankvar\": 114}, {\"group\": [203.0, 91.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"470\", \"clust\": 202, \"rank\": 301, \"ini\": 30, \"rankvar\": 276}, {\"group\": [88.0, 45.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"471\", \"clust\": 87, \"rank\": 278, \"ini\": 29, \"rankvar\": 422}, {\"group\": [391.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"472\", \"clust\": 388, \"rank\": 299, \"ini\": 28, \"rankvar\": 108}, {\"group\": [393.0, 158.0, 43.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"473\", \"clust\": 394, \"rank\": 388, \"ini\": 27, \"rankvar\": 218}, {\"group\": [282.0, 120.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"474\", \"clust\": 283, \"rank\": 255, \"ini\": 26, \"rankvar\": 416}, {\"group\": [270.0, 113.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"475\", \"clust\": 269, \"rank\": 469, \"ini\": 25, \"rankvar\": 160}, {\"group\": [463.0, 179.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"476\", \"clust\": 461, \"rank\": 185, \"ini\": 24, \"rankvar\": 239}, {\"group\": [261.0, 111.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"477\", \"clust\": 261, \"rank\": 458, \"ini\": 23, \"rankvar\": 448}, {\"group\": [427.0, 172.0, 46.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"478\", \"clust\": 426, \"rank\": 339, \"ini\": 22, \"rankvar\": 403}, {\"group\": [481.0, 183.0, 48.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"479\", \"clust\": 478, \"rank\": 162, \"ini\": 21, \"rankvar\": 99}, {\"group\": [112.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"480\", \"clust\": 112, \"rank\": 231, \"ini\": 20, \"rankvar\": 88}, {\"group\": [160.0, 74.0, 25.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"481\", \"clust\": 161, \"rank\": 257, \"ini\": 19, \"rankvar\": 474}, {\"group\": [201.0, 90.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"482\", \"clust\": 198, \"rank\": 157, \"ini\": 18, \"rankvar\": 395}, {\"group\": [408.0, 164.0, 45.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"483\", \"clust\": 405, \"rank\": 61, \"ini\": 17, \"rankvar\": 275}, {\"group\": [34.0, 20.0, 10.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"484\", \"clust\": 32, \"rank\": 4, \"ini\": 16, \"rankvar\": 82}, {\"group\": [136.0, 64.0, 23.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"485\", \"clust\": 136, \"rank\": 281, \"ini\": 15, \"rankvar\": 315}, {\"group\": [403.0, 161.0, 44.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"486\", \"clust\": 404, \"rank\": 202, \"ini\": 14, \"rankvar\": 398}, {\"group\": [110.0, 55.0, 21.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"487\", \"clust\": 110, \"rank\": 18, \"ini\": 13, \"rankvar\": 35}, {\"group\": [255.0, 108.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"488\", \"clust\": 255, \"rank\": 160, \"ini\": 12, \"rankvar\": 258}, {\"group\": [75.0, 41.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"489\", \"clust\": 74, \"rank\": 442, \"ini\": 11, \"rankvar\": 230}, {\"group\": [95.0, 47.0, 18.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"490\", \"clust\": 94, \"rank\": 285, \"ini\": 10, \"rankvar\": 149}, {\"group\": [316.0, 132.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"491\", \"clust\": 313, \"rank\": 28, \"ini\": 9, \"rankvar\": 235}, {\"group\": [236.0, 100.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"492\", \"clust\": 233, \"rank\": 196, \"ini\": 8, \"rankvar\": 248}, {\"group\": [209.0, 92.0, 30.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"493\", \"clust\": 211, \"rank\": 456, \"ini\": 7, \"rankvar\": 116}, {\"group\": [232.0, 98.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"494\", \"clust\": 232, \"rank\": 194, \"ini\": 6, \"rankvar\": 255}, {\"group\": [65.0, 37.0, 16.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"495\", \"clust\": 65, \"rank\": 260, \"ini\": 5, \"rankvar\": 328}, {\"group\": [336.0, 141.0, 39.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"496\", \"clust\": 335, \"rank\": 261, \"ini\": 4, \"rankvar\": 180}, {\"group\": [43.0, 25.0, 11.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"497\", \"clust\": 42, \"rank\": 317, \"ini\": 3, \"rankvar\": 390}, {\"group\": [195.0, 89.0, 29.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"498\", \"clust\": 195, \"rank\": 149, \"ini\": 2, \"rankvar\": 295}, {\"group\": [303.0, 128.0, 38.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"499\", \"clust\": 303, \"rank\": 187, \"ini\": 1, \"rankvar\": 457}], \"col_nodes\": [{\"group\": [10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 4.0, 1.0], \"name\": \"0\", \"clust\": 0, \"rank\": 0, \"ini\": 10, \"rankvar\": 1}, {\"group\": [7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 3.0, 1.0], \"name\": \"1\", \"clust\": 8, \"rank\": 1, \"ini\": 9, \"rankvar\": 7}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 3, \"rank\": 3, \"ini\": 8, \"rankvar\": 0}, {\"group\": [8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 3.0, 1.0], \"name\": \"3\", \"clust\": 9, \"rank\": 9, \"ini\": 7, \"rankvar\": 9}, {\"group\": [9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 3.0, 1.0], \"name\": \"4\", \"clust\": 7, \"rank\": 2, \"ini\": 6, \"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\": \"5\", \"clust\": 1, \"rank\": 6, \"ini\": 5, \"rankvar\": 5}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 4, \"rank\": 5, \"ini\": 4, \"rankvar\": 2}, {\"group\": [5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 2.0, 1.0], \"name\": \"7\", \"clust\": 5, \"rank\": 7, \"ini\": 3, \"rankvar\": 6}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 2, \"rank\": 4, \"ini\": 2, \"rankvar\": 3}, {\"group\": [6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 2.0, 1.0], \"name\": \"9\", \"clust\": 6, \"rank\": 8, \"ini\": 1, \"rankvar\": 4}]}, \"dist\": \"cos\"}, {\"N_row_var\": 250, \"nodes\": {\"row_nodes\": [{\"group\": [205.0, 112.0, 44.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"13\", \"clust\": 206, \"rank\": 154, \"ini\": 250, \"rankvar\": 249}, {\"group\": [197.0, 108.0, 43.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"123\", \"clust\": 193, \"rank\": 89, \"ini\": 249, \"rankvar\": 248}, {\"group\": [228.0, 126.0, 50.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"48\", \"clust\": 228, \"rank\": 93, \"ini\": 248, \"rankvar\": 247}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"80\", \"clust\": 0, \"rank\": 183, \"ini\": 247, \"rankvar\": 246}, {\"group\": [110.0, 61.0, 24.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"421\", \"clust\": 109, \"rank\": 181, \"ini\": 246, \"rankvar\": 245}, {\"group\": [82.0, 46.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"157\", \"clust\": 83, \"rank\": 172, \"ini\": 245, \"rankvar\": 244}, {\"group\": [176.0, 95.0, 37.0, 13.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"45\", \"clust\": 173, \"rank\": 86, \"ini\": 244, \"rankvar\": 243}, {\"group\": [83.0, 46.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"425\", \"clust\": 84, \"rank\": 162, \"ini\": 243, \"rankvar\": 242}, {\"group\": [164.0, 87.0, 34.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"368\", \"clust\": 164, \"rank\": 20, \"ini\": 242, \"rankvar\": 241}, {\"group\": [41.0, 24.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"442\", \"clust\": 19, \"rank\": 76, \"ini\": 241, \"rankvar\": 240}, {\"group\": [184.0, 101.0, 40.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"224\", \"clust\": 184, \"rank\": 241, \"ini\": 240, \"rankvar\": 239}, {\"group\": [70.0, 39.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"289\", \"clust\": 69, \"rank\": 213, \"ini\": 239, \"rankvar\": 238}, {\"group\": [241.0, 134.0, 53.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"206\", \"clust\": 240, \"rank\": 84, \"ini\": 238, \"rankvar\": 237}, {\"group\": [109.0, 60.0, 23.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"304\", \"clust\": 106, \"rank\": 126, \"ini\": 237, \"rankvar\": 236}, {\"group\": [216.0, 118.0, 46.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"125\", \"clust\": 214, \"rank\": 151, \"ini\": 236, \"rankvar\": 235}, {\"group\": [169.0, 90.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"200\", \"clust\": 167, \"rank\": 40, \"ini\": 235, \"rankvar\": 234}, {\"group\": [242.0, 134.0, 53.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"338\", \"clust\": 241, \"rank\": 200, \"ini\": 234, \"rankvar\": 233}, {\"group\": [245.0, 135.0, 54.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"452\", \"clust\": 244, \"rank\": 238, \"ini\": 233, \"rankvar\": 232}, {\"group\": [167.0, 89.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"335\", \"clust\": 168, \"rank\": 46, \"ini\": 232, \"rankvar\": 231}, {\"group\": [130.0, 69.0, 27.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"342\", \"clust\": 130, \"rank\": 230, \"ini\": 231, \"rankvar\": 230}, {\"group\": [217.0, 119.0, 47.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"132\", \"clust\": 213, \"rank\": 147, \"ini\": 230, \"rankvar\": 229}, {\"group\": [33.0, 21.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"296\", \"clust\": 34, \"rank\": 155, \"ini\": 229, \"rankvar\": 228}, {\"group\": [238.0, 132.0, 52.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"311\", \"clust\": 235, \"rank\": 68, \"ini\": 228, \"rankvar\": 227}, {\"group\": [142.0, 75.0, 29.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"189\", \"clust\": 142, \"rank\": 124, \"ini\": 227, \"rankvar\": 226}, {\"group\": [116.0, 63.0, 25.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"409\", \"clust\": 118, \"rank\": 182, \"ini\": 226, \"rankvar\": 225}, {\"group\": [51.0, 29.0, 12.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"481\", \"clust\": 51, \"rank\": 134, \"ini\": 225, \"rankvar\": 224}, {\"group\": [144.0, 76.0, 29.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"227\", \"clust\": 141, \"rank\": 31, \"ini\": 224, \"rankvar\": 223}, {\"group\": [11.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"394\", \"clust\": 11, \"rank\": 41, \"ini\": 223, \"rankvar\": 222}, {\"group\": [117.0, 63.0, 25.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"301\", \"clust\": 119, \"rank\": 104, \"ini\": 222, \"rankvar\": 221}, {\"group\": [192.0, 105.0, 41.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"392\", \"clust\": 190, \"rank\": 103, \"ini\": 221, \"rankvar\": 220}, {\"group\": [85.0, 47.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"433\", \"clust\": 81, \"rank\": 36, \"ini\": 220, \"rankvar\": 219}, {\"group\": [5.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"322\", \"clust\": 4, \"rank\": 109, \"ini\": 219, \"rankvar\": 218}, {\"group\": [147.0, 78.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"47\", \"clust\": 145, \"rank\": 81, \"ini\": 218, \"rankvar\": 217}, {\"group\": [143.0, 75.0, 29.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"17\", \"clust\": 143, \"rank\": 66, \"ini\": 217, \"rankvar\": 216}, {\"group\": [12.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 12, \"rank\": 94, \"ini\": 216, \"rankvar\": 215}, {\"group\": [16.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"405\", \"clust\": 15, \"rank\": 192, \"ini\": 215, \"rankvar\": 214}, {\"group\": [246.0, 135.0, 54.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"435\", \"clust\": 245, \"rank\": 222, \"ini\": 214, \"rankvar\": 213}, {\"group\": [40.0, 23.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 38, \"rank\": 145, \"ini\": 213, \"rankvar\": 212}, {\"group\": [151.0, 81.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"359\", \"clust\": 151, \"rank\": 79, \"ini\": 212, \"rankvar\": 211}, {\"group\": [187.0, 102.0, 40.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"182\", \"clust\": 187, \"rank\": 236, \"ini\": 211, \"rankvar\": 210}, {\"group\": [107.0, 58.0, 23.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"378\", \"clust\": 107, \"rank\": 63, \"ini\": 210, \"rankvar\": 209}, {\"group\": [188.0, 102.0, 40.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"336\", \"clust\": 188, \"rank\": 239, \"ini\": 209, \"rankvar\": 208}, {\"group\": [7.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"499\", \"clust\": 8, \"rank\": 91, \"ini\": 208, \"rankvar\": 207}, {\"group\": [227.0, 125.0, 49.0, 16.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"100\", \"clust\": 224, \"rank\": 80, \"ini\": 207, \"rankvar\": 206}, {\"group\": [75.0, 42.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"320\", \"clust\": 71, \"rank\": 113, \"ini\": 206, \"rankvar\": 205}, {\"group\": [46.0, 26.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"411\", \"clust\": 46, \"rank\": 119, \"ini\": 205, \"rankvar\": 204}, {\"group\": [74.0, 41.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"96\", \"clust\": 72, \"rank\": 224, \"ini\": 204, \"rankvar\": 203}, {\"group\": [209.0, 114.0, 45.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"145\", \"clust\": 208, \"rank\": 23, \"ini\": 203, \"rankvar\": 202}, {\"group\": [88.0, 49.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"461\", \"clust\": 85, \"rank\": 35, \"ini\": 202, \"rankvar\": 201}, {\"group\": [145.0, 77.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"389\", \"clust\": 146, \"rank\": 47, \"ini\": 201, \"rankvar\": 200}, {\"group\": [201.0, 110.0, 44.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"139\", \"clust\": 200, \"rank\": 203, \"ini\": 200, \"rankvar\": 199}, {\"group\": [243.0, 134.0, 53.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"477\", \"clust\": 242, \"rank\": 234, \"ini\": 199, \"rankvar\": 198}, {\"group\": [30.0, 19.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"93\", \"clust\": 31, \"rank\": 215, \"ini\": 198, \"rankvar\": 197}, {\"group\": [22.0, 11.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"286\", \"clust\": 25, \"rank\": 62, \"ini\": 197, \"rankvar\": 196}, {\"group\": [190.0, 104.0, 41.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"429\", \"clust\": 191, \"rank\": 26, \"ini\": 196, \"rankvar\": 195}, {\"group\": [112.0, 62.0, 25.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"256\", \"clust\": 111, \"rank\": 188, \"ini\": 195, \"rankvar\": 194}, {\"group\": [103.0, 56.0, 22.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"174\", \"clust\": 100, \"rank\": 194, \"ini\": 194, \"rankvar\": 193}, {\"group\": [57.0, 32.0, 13.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"190\", \"clust\": 58, \"rank\": 227, \"ini\": 193, \"rankvar\": 192}, {\"group\": [29.0, 18.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"171\", \"clust\": 27, \"rank\": 105, \"ini\": 192, \"rankvar\": 191}, {\"group\": [68.0, 37.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"430\", \"clust\": 66, \"rank\": 199, \"ini\": 191, \"rankvar\": 190}, {\"group\": [244.0, 134.0, 53.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"28\", \"clust\": 243, \"rank\": 210, \"ini\": 190, \"rankvar\": 189}, {\"group\": [137.0, 74.0, 28.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"113\", \"clust\": 137, \"rank\": 243, \"ini\": 189, \"rankvar\": 188}, {\"group\": [138.0, 74.0, 28.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"269\", \"clust\": 138, \"rank\": 247, \"ini\": 188, \"rankvar\": 187}, {\"group\": [31.0, 19.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"282\", \"clust\": 32, \"rank\": 245, \"ini\": 187, \"rankvar\": 186}, {\"group\": [203.0, 111.0, 44.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"364\", \"clust\": 202, \"rank\": 149, \"ini\": 186, \"rankvar\": 185}, {\"group\": [32.0, 20.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"70\", \"clust\": 30, \"rank\": 209, \"ini\": 185, \"rankvar\": 184}, {\"group\": [229.0, 126.0, 50.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"225\", \"clust\": 229, \"rank\": 33, \"ini\": 184, \"rankvar\": 183}, {\"group\": [47.0, 26.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"317\", \"clust\": 47, \"rank\": 85, \"ini\": 183, \"rankvar\": 182}, {\"group\": [42.0, 25.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"27\", \"clust\": 41, \"rank\": 171, \"ini\": 182, \"rankvar\": 181}, {\"group\": [221.0, 122.0, 48.0, 16.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"99\", \"clust\": 220, \"rank\": 186, \"ini\": 181, \"rankvar\": 180}, {\"group\": [23.0, 12.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"462\", \"clust\": 26, \"rank\": 111, \"ini\": 180, \"rankvar\": 179}, {\"group\": [95.0, 53.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"69\", \"clust\": 94, \"rank\": 193, \"ini\": 179, \"rankvar\": 178}, {\"group\": [181.0, 98.0, 39.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"55\", \"clust\": 181, \"rank\": 139, \"ini\": 178, \"rankvar\": 177}, {\"group\": [159.0, 84.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"440\", \"clust\": 155, \"rank\": 115, \"ini\": 177, \"rankvar\": 176}, {\"group\": [9.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"110\", \"clust\": 7, \"rank\": 167, \"ini\": 176, \"rankvar\": 175}, {\"group\": [92.0, 51.0, 19.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 88, \"rank\": 34, \"ini\": 175, \"rankvar\": 174}, {\"group\": [121.0, 65.0, 26.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"229\", \"clust\": 122, \"rank\": 233, \"ini\": 174, \"rankvar\": 173}, {\"group\": [160.0, 85.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"471\", \"clust\": 159, \"rank\": 143, \"ini\": 173, \"rankvar\": 172}, {\"group\": [120.0, 64.0, 25.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"97\", \"clust\": 115, \"rank\": 37, \"ini\": 172, \"rankvar\": 171}, {\"group\": [24.0, 13.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"345\", \"clust\": 24, \"rank\": 59, \"ini\": 171, \"rankvar\": 170}, {\"group\": [6.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"415\", \"clust\": 5, \"rank\": 70, \"ini\": 170, \"rankvar\": 169}, {\"group\": [214.0, 117.0, 46.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"265\", \"clust\": 215, \"rank\": 44, \"ini\": 169, \"rankvar\": 168}, {\"group\": [111.0, 61.0, 24.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"283\", \"clust\": 110, \"rank\": 5, \"ini\": 168, \"rankvar\": 167}, {\"group\": [36.0, 22.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"474\", \"clust\": 36, \"rank\": 132, \"ini\": 167, \"rankvar\": 166}, {\"group\": [135.0, 73.0, 28.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"457\", \"clust\": 134, \"rank\": 208, \"ini\": 166, \"rankvar\": 165}, {\"group\": [129.0, 68.0, 27.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"446\", \"clust\": 126, \"rank\": 197, \"ini\": 165, \"rankvar\": 164}, {\"group\": [118.0, 63.0, 25.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"218\", \"clust\": 117, \"rank\": 219, \"ini\": 164, \"rankvar\": 163}, {\"group\": [174.0, 94.0, 37.0, 13.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"380\", \"clust\": 174, \"rank\": 48, \"ini\": 163, \"rankvar\": 162}, {\"group\": [44.0, 26.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"95\", \"clust\": 44, \"rank\": 232, \"ini\": 162, \"rankvar\": 161}, {\"group\": [133.0, 71.0, 28.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"307\", \"clust\": 132, \"rank\": 165, \"ini\": 161, \"rankvar\": 160}, {\"group\": [196.0, 107.0, 43.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"191\", \"clust\": 194, \"rank\": 102, \"ini\": 160, \"rankvar\": 159}, {\"group\": [132.0, 70.0, 27.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"314\", \"clust\": 129, \"rank\": 38, \"ini\": 159, \"rankvar\": 158}, {\"group\": [136.0, 73.0, 28.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"36\", \"clust\": 135, \"rank\": 229, \"ini\": 158, \"rankvar\": 157}, {\"group\": [114.0, 62.0, 25.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"20\", \"clust\": 113, \"rank\": 144, \"ini\": 157, \"rankvar\": 156}, {\"group\": [236.0, 131.0, 52.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"458\", \"clust\": 236, \"rank\": 153, \"ini\": 156, \"rankvar\": 155}, {\"group\": [108.0, 59.0, 23.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"244\", \"clust\": 108, \"rank\": 184, \"ini\": 155, \"rankvar\": 154}, {\"group\": [97.0, 54.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"478\", \"clust\": 98, \"rank\": 178, \"ini\": 154, \"rankvar\": 153}, {\"group\": [34.0, 21.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"210\", \"clust\": 35, \"rank\": 168, \"ini\": 153, \"rankvar\": 152}, {\"group\": [126.0, 67.0, 26.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"230\", \"clust\": 120, \"rank\": 2, \"ini\": 152, \"rankvar\": 151}, {\"group\": [122.0, 65.0, 26.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"251\", \"clust\": 123, \"rank\": 185, \"ini\": 151, \"rankvar\": 150}, {\"group\": [101.0, 56.0, 22.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"399\", \"clust\": 101, \"rank\": 121, \"ini\": 150, \"rankvar\": 149}, {\"group\": [134.0, 72.0, 28.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"486\", \"clust\": 133, \"rank\": 100, \"ini\": 149, \"rankvar\": 148}, {\"group\": [52.0, 29.0, 12.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"285\", \"clust\": 52, \"rank\": 114, \"ini\": 148, \"rankvar\": 147}, {\"group\": [193.0, 106.0, 42.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"23\", \"clust\": 189, \"rank\": 1, \"ini\": 147, \"rankvar\": 146}, {\"group\": [200.0, 109.0, 44.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"482\", \"clust\": 197, \"rank\": 72, \"ini\": 146, \"rankvar\": 145}, {\"group\": [125.0, 66.0, 26.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"150\", \"clust\": 121, \"rank\": 191, \"ini\": 145, \"rankvar\": 144}, {\"group\": [119.0, 63.0, 25.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"465\", \"clust\": 116, \"rank\": 166, \"ini\": 144, \"rankvar\": 143}, {\"group\": [233.0, 129.0, 51.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"246\", \"clust\": 233, \"rank\": 122, \"ini\": 143, \"rankvar\": 142}, {\"group\": [123.0, 65.0, 26.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"194\", \"clust\": 124, \"rank\": 150, \"ini\": 142, \"rankvar\": 141}, {\"group\": [218.0, 120.0, 48.0, 16.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"497\", \"clust\": 218, \"rank\": 164, \"ini\": 141, \"rankvar\": 140}, {\"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"264\", \"clust\": 1, \"rank\": 170, \"ini\": 140, \"rankvar\": 139}, {\"group\": [206.0, 112.0, 44.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"147\", \"clust\": 207, \"rank\": 88, \"ini\": 139, \"rankvar\": 138}, {\"group\": [225.0, 124.0, 49.0, 16.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"372\", \"clust\": 225, \"rank\": 117, \"ini\": 138, \"rankvar\": 137}, {\"group\": [113.0, 62.0, 25.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"192\", \"clust\": 112, \"rank\": 73, \"ini\": 137, \"rankvar\": 136}, {\"group\": [91.0, 50.0, 19.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"222\", \"clust\": 89, \"rank\": 106, \"ini\": 136, \"rankvar\": 135}, {\"group\": [230.0, 127.0, 50.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"135\", \"clust\": 227, \"rank\": 83, \"ini\": 135, \"rankvar\": 134}, {\"group\": [20.0, 10.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"386\", \"clust\": 21, \"rank\": 14, \"ini\": 134, \"rankvar\": 133}, {\"group\": [191.0, 104.0, 41.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"14\", \"clust\": 192, \"rank\": 116, \"ini\": 133, \"rankvar\": 132}, {\"group\": [183.0, 100.0, 39.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"94\", \"clust\": 180, \"rank\": 15, \"ini\": 132, \"rankvar\": 131}, {\"group\": [153.0, 81.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"11\", \"clust\": 150, \"rank\": 87, \"ini\": 131, \"rankvar\": 130}, {\"group\": [127.0, 68.0, 27.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"332\", \"clust\": 127, \"rank\": 160, \"ini\": 130, \"rankvar\": 129}, {\"group\": [54.0, 30.0, 12.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"116\", \"clust\": 54, \"rank\": 53, \"ini\": 129, \"rankvar\": 128}, {\"group\": [210.0, 114.0, 45.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"32\", \"clust\": 209, \"rank\": 7, \"ini\": 128, \"rankvar\": 127}, {\"group\": [35.0, 21.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"302\", \"clust\": 33, \"rank\": 240, \"ini\": 127, \"rankvar\": 126}, {\"group\": [81.0, 45.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"373\", \"clust\": 77, \"rank\": 54, \"ini\": 126, \"rankvar\": 125}, {\"group\": [71.0, 39.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"133\", \"clust\": 70, \"rank\": 11, \"ini\": 125, \"rankvar\": 124}, {\"group\": [10.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"400\", \"clust\": 6, \"rank\": 127, \"ini\": 124, \"rankvar\": 123}, {\"group\": [80.0, 44.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"128\", \"clust\": 78, \"rank\": 130, \"ini\": 123, \"rankvar\": 122}, {\"group\": [146.0, 77.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 147, \"rank\": 123, \"ini\": 122, \"rankvar\": 121}, {\"group\": [162.0, 86.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"186\", \"clust\": 161, \"rank\": 96, \"ini\": 121, \"rankvar\": 120}, {\"group\": [100.0, 55.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"84\", \"clust\": 96, \"rank\": 140, \"ini\": 120, \"rankvar\": 119}, {\"group\": [211.0, 115.0, 45.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"19\", \"clust\": 211, \"rank\": 226, \"ini\": 119, \"rankvar\": 118}, {\"group\": [106.0, 57.0, 22.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"273\", \"clust\": 103, \"rank\": 98, \"ini\": 118, \"rankvar\": 117}, {\"group\": [21.0, 10.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"450\", \"clust\": 22, \"rank\": 107, \"ini\": 117, \"rankvar\": 116}, {\"group\": [69.0, 38.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"43\", \"clust\": 63, \"rank\": 25, \"ini\": 116, \"rankvar\": 115}, {\"group\": [13.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"318\", \"clust\": 10, \"rank\": 45, \"ini\": 115, \"rankvar\": 114}, {\"group\": [84.0, 46.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"395\", \"clust\": 82, \"rank\": 99, \"ini\": 114, \"rankvar\": 113}, {\"group\": [72.0, 40.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"62\", \"clust\": 73, \"rank\": 159, \"ini\": 113, \"rankvar\": 112}, {\"group\": [38.0, 23.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"305\", \"clust\": 39, \"rank\": 125, \"ini\": 112, \"rankvar\": 111}, {\"group\": [18.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"349\", \"clust\": 17, \"rank\": 228, \"ini\": 111, \"rankvar\": 110}, {\"group\": [61.0, 34.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"59\", \"clust\": 61, \"rank\": 235, \"ini\": 110, \"rankvar\": 109}, {\"group\": [56.0, 31.0, 12.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"280\", \"clust\": 53, \"rank\": 158, \"ini\": 109, \"rankvar\": 108}, {\"group\": [170.0, 91.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"238\", \"clust\": 171, \"rank\": 77, \"ini\": 108, \"rankvar\": 107}, {\"group\": [219.0, 120.0, 48.0, 16.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"51\", \"clust\": 219, \"rank\": 82, \"ini\": 107, \"rankvar\": 106}, {\"group\": [149.0, 80.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"52\", \"clust\": 148, \"rank\": 112, \"ini\": 106, \"rankvar\": 105}, {\"group\": [194.0, 107.0, 43.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"234\", \"clust\": 195, \"rank\": 187, \"ini\": 105, \"rankvar\": 104}, {\"group\": [63.0, 35.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"260\", \"clust\": 60, \"rank\": 71, \"ini\": 104, \"rankvar\": 103}, {\"group\": [3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"102\", \"clust\": 2, \"rank\": 8, \"ini\": 103, \"rankvar\": 102}, {\"group\": [60.0, 33.0, 13.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"129\", \"clust\": 56, \"rank\": 92, \"ini\": 102, \"rankvar\": 101}, {\"group\": [163.0, 86.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"239\", \"clust\": 162, \"rank\": 204, \"ini\": 101, \"rankvar\": 100}, {\"group\": [223.0, 123.0, 48.0, 16.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"181\", \"clust\": 222, \"rank\": 138, \"ini\": 100, \"rankvar\": 99}, {\"group\": [89.0, 50.0, 19.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"138\", \"clust\": 90, \"rank\": 28, \"ini\": 99, \"rankvar\": 98}, {\"group\": [78.0, 44.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"160\", \"clust\": 79, \"rank\": 90, \"ini\": 98, \"rankvar\": 97}, {\"group\": [239.0, 133.0, 53.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"419\", \"clust\": 238, \"rank\": 131, \"ini\": 97, \"rankvar\": 96}, {\"group\": [55.0, 30.0, 12.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"271\", \"clust\": 55, \"rank\": 49, \"ini\": 96, \"rankvar\": 95}, {\"group\": [186.0, 101.0, 40.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"412\", \"clust\": 183, \"rank\": 129, \"ini\": 95, \"rankvar\": 94}, {\"group\": [247.0, 135.0, 54.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"426\", \"clust\": 246, \"rank\": 249, \"ini\": 94, \"rankvar\": 93}, {\"group\": [165.0, 87.0, 34.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"403\", \"clust\": 165, \"rank\": 148, \"ini\": 93, \"rankvar\": 92}, {\"group\": [96.0, 53.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"291\", \"clust\": 95, \"rank\": 198, \"ini\": 92, \"rankvar\": 91}, {\"group\": [177.0, 96.0, 38.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"441\", \"clust\": 178, \"rank\": 169, \"ini\": 91, \"rankvar\": 90}, {\"group\": [234.0, 129.0, 51.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"308\", \"clust\": 234, \"rank\": 39, \"ini\": 90, \"rankvar\": 89}, {\"group\": [104.0, 57.0, 22.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"401\", \"clust\": 104, \"rank\": 237, \"ini\": 89, \"rankvar\": 88}, {\"group\": [226.0, 124.0, 49.0, 16.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"319\", \"clust\": 226, \"rank\": 137, \"ini\": 88, \"rankvar\": 87}, {\"group\": [49.0, 28.0, 12.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"236\", \"clust\": 48, \"rank\": 133, \"ini\": 87, \"rankvar\": 86}, {\"group\": [222.0, 122.0, 48.0, 16.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"252\", \"clust\": 221, \"rank\": 30, \"ini\": 86, \"rankvar\": 85}, {\"group\": [156.0, 83.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"333\", \"clust\": 157, \"rank\": 201, \"ini\": 85, \"rankvar\": 84}, {\"group\": [168.0, 89.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"434\", \"clust\": 169, \"rank\": 12, \"ini\": 84, \"rankvar\": 83}, {\"group\": [37.0, 22.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"348\", \"clust\": 37, \"rank\": 248, \"ini\": 83, \"rankvar\": 82}, {\"group\": [98.0, 54.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"329\", \"clust\": 99, \"rank\": 152, \"ini\": 82, \"rankvar\": 81}, {\"group\": [102.0, 56.0, 22.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"300\", \"clust\": 102, \"rank\": 212, \"ini\": 81, \"rankvar\": 80}, {\"group\": [166.0, 88.0, 34.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"136\", \"clust\": 163, \"rank\": 95, \"ini\": 80, \"rankvar\": 79}, {\"group\": [19.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"495\", \"clust\": 18, \"rank\": 136, \"ini\": 79, \"rankvar\": 78}, {\"group\": [86.0, 48.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"393\", \"clust\": 86, \"rank\": 65, \"ini\": 78, \"rankvar\": 77}, {\"group\": [154.0, 82.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"58\", \"clust\": 153, \"rank\": 120, \"ini\": 77, \"rankvar\": 76}, {\"group\": [39.0, 23.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"105\", \"clust\": 40, \"rank\": 195, \"ini\": 76, \"rankvar\": 75}, {\"group\": [90.0, 50.0, 19.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"30\", \"clust\": 91, \"rank\": 9, \"ini\": 75, \"rankvar\": 74}, {\"group\": [240.0, 133.0, 53.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"141\", \"clust\": 239, \"rank\": 69, \"ini\": 74, \"rankvar\": 73}, {\"group\": [180.0, 97.0, 38.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"337\", \"clust\": 176, \"rank\": 60, \"ini\": 73, \"rankvar\": 72}, {\"group\": [76.0, 43.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"118\", \"clust\": 75, \"rank\": 19, \"ini\": 72, \"rankvar\": 71}, {\"group\": [175.0, 94.0, 37.0, 13.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"297\", \"clust\": 175, \"rank\": 179, \"ini\": 71, \"rankvar\": 70}, {\"group\": [249.0, 136.0, 54.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"455\", \"clust\": 248, \"rank\": 244, \"ini\": 70, \"rankvar\": 69}, {\"group\": [172.0, 92.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"142\", \"clust\": 170, \"rank\": 22, \"ini\": 69, \"rankvar\": 68}, {\"group\": [248.0, 135.0, 54.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"197\", \"clust\": 247, \"rank\": 190, \"ini\": 68, \"rankvar\": 67}, {\"group\": [171.0, 91.0, 35.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"292\", \"clust\": 172, \"rank\": 216, \"ini\": 67, \"rankvar\": 66}, {\"group\": [45.0, 26.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"485\", \"clust\": 45, \"rank\": 146, \"ini\": 66, \"rankvar\": 65}, {\"group\": [59.0, 32.0, 13.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"195\", \"clust\": 57, \"rank\": 231, \"ini\": 65, \"rankvar\": 64}, {\"group\": [157.0, 83.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"268\", \"clust\": 158, \"rank\": 218, \"ini\": 64, \"rankvar\": 63}, {\"group\": [17.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"63\", \"clust\": 16, \"rank\": 214, \"ini\": 63, \"rankvar\": 62}, {\"group\": [124.0, 65.0, 26.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"390\", \"clust\": 125, \"rank\": 205, \"ini\": 62, \"rankvar\": 61}, {\"group\": [14.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"398\", \"clust\": 13, \"rank\": 220, \"ini\": 61, \"rankvar\": 60}, {\"group\": [139.0, 74.0, 28.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"245\", \"clust\": 136, \"rank\": 221, \"ini\": 60, \"rankvar\": 59}, {\"group\": [50.0, 28.0, 12.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"428\", \"clust\": 49, \"rank\": 118, \"ini\": 59, \"rankvar\": 58}, {\"group\": [93.0, 52.0, 20.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"232\", \"clust\": 92, \"rank\": 4, \"ini\": 58, \"rankvar\": 57}, {\"group\": [27.0, 16.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"170\", \"clust\": 28, \"rank\": 27, \"ini\": 57, \"rankvar\": 56}, {\"group\": [220.0, 121.0, 48.0, 16.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"152\", \"clust\": 217, \"rank\": 75, \"ini\": 56, \"rankvar\": 55}, {\"group\": [79.0, 44.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"377\", \"clust\": 80, \"rank\": 61, \"ini\": 55, \"rankvar\": 54}, {\"group\": [4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"82\", \"clust\": 3, \"rank\": 6, \"ini\": 54, \"rankvar\": 53}, {\"group\": [148.0, 79.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"117\", \"clust\": 144, \"rank\": 17, \"ini\": 53, \"rankvar\": 52}, {\"group\": [64.0, 36.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"203\", \"clust\": 64, \"rank\": 55, \"ini\": 52, \"rankvar\": 51}, {\"group\": [150.0, 80.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"46\", \"clust\": 149, \"rank\": 32, \"ini\": 51, \"rankvar\": 50}, {\"group\": [178.0, 96.0, 38.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"414\", \"clust\": 179, \"rank\": 189, \"ini\": 50, \"rankvar\": 49}, {\"group\": [202.0, 110.0, 44.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"149\", \"clust\": 201, \"rank\": 141, \"ini\": 49, \"rankvar\": 48}, {\"group\": [99.0, 54.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"321\", \"clust\": 97, \"rank\": 128, \"ini\": 48, \"rankvar\": 47}, {\"group\": [155.0, 82.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 154, \"rank\": 56, \"ini\": 47, \"rankvar\": 46}, {\"group\": [195.0, 107.0, 43.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"498\", \"clust\": 196, \"rank\": 67, \"ini\": 46, \"rankvar\": 45}, {\"group\": [208.0, 113.0, 44.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"78\", \"clust\": 204, \"rank\": 52, \"ini\": 45, \"rankvar\": 44}, {\"group\": [43.0, 25.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"5\", \"clust\": 42, \"rank\": 64, \"ini\": 44, \"rankvar\": 43}, {\"group\": [131.0, 69.0, 27.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"201\", \"clust\": 131, \"rank\": 242, \"ini\": 43, \"rankvar\": 42}, {\"group\": [158.0, 83.0, 32.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"221\", \"clust\": 156, \"rank\": 225, \"ini\": 42, \"rankvar\": 41}, {\"group\": [185.0, 101.0, 40.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"60\", \"clust\": 185, \"rank\": 211, \"ini\": 41, \"rankvar\": 40}, {\"group\": [140.0, 74.0, 28.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"111\", \"clust\": 139, \"rank\": 142, \"ini\": 40, \"rankvar\": 39}, {\"group\": [26.0, 15.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"85\", \"clust\": 20, \"rank\": 3, \"ini\": 39, \"rankvar\": 38}, {\"group\": [66.0, 37.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"287\", \"clust\": 67, \"rank\": 246, \"ini\": 38, \"rankvar\": 37}, {\"group\": [25.0, 14.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"35\", \"clust\": 23, \"rank\": 10, \"ini\": 37, \"rankvar\": 36}, {\"group\": [48.0, 27.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"187\", \"clust\": 43, \"rank\": 16, \"ini\": 36, \"rankvar\": 35}, {\"group\": [250.0, 137.0, 54.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"231\", \"clust\": 249, \"rank\": 163, \"ini\": 35, \"rankvar\": 34}, {\"group\": [231.0, 128.0, 51.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"250\", \"clust\": 230, \"rank\": 196, \"ini\": 34, \"rankvar\": 33}, {\"group\": [198.0, 109.0, 44.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"258\", \"clust\": 198, \"rank\": 108, \"ini\": 33, \"rankvar\": 32}, {\"group\": [189.0, 103.0, 40.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"431\", \"clust\": 186, \"rank\": 173, \"ini\": 32, \"rankvar\": 31}, {\"group\": [94.0, 52.0, 20.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"155\", \"clust\": 93, \"rank\": 51, \"ini\": 31, \"rankvar\": 30}, {\"group\": [58.0, 32.0, 13.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"327\", \"clust\": 59, \"rank\": 161, \"ini\": 30, \"rankvar\": 29}, {\"group\": [204.0, 111.0, 44.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"275\", \"clust\": 203, \"rank\": 110, \"ini\": 29, \"rankvar\": 28}, {\"group\": [15.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"306\", \"clust\": 14, \"rank\": 206, \"ini\": 28, \"rankvar\": 27}, {\"group\": [65.0, 36.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"470\", \"clust\": 65, \"rank\": 157, \"ini\": 27, \"rankvar\": 26}, {\"group\": [28.0, 17.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"483\", \"clust\": 29, \"rank\": 21, \"ini\": 26, \"rankvar\": 25}, {\"group\": [161.0, 85.0, 33.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"42\", \"clust\": 160, \"rank\": 177, \"ini\": 25, \"rankvar\": 24}, {\"group\": [207.0, 112.0, 44.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"466\", \"clust\": 205, \"rank\": 13, \"ini\": 24, \"rankvar\": 23}, {\"group\": [224.0, 123.0, 48.0, 16.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"382\", \"clust\": 223, \"rank\": 223, \"ini\": 23, \"rankvar\": 22}, {\"group\": [62.0, 34.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"267\", \"clust\": 62, \"rank\": 202, \"ini\": 22, \"rankvar\": 21}, {\"group\": [232.0, 128.0, 51.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"72\", \"clust\": 231, \"rank\": 78, \"ini\": 21, \"rankvar\": 20}, {\"group\": [141.0, 74.0, 28.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"328\", \"clust\": 140, \"rank\": 50, \"ini\": 20, \"rankvar\": 19}, {\"group\": [173.0, 93.0, 36.0, 12.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"101\", \"clust\": 166, \"rank\": 0, \"ini\": 19, \"rankvar\": 18}, {\"group\": [179.0, 96.0, 38.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"108\", \"clust\": 177, \"rank\": 175, \"ini\": 18, \"rankvar\": 17}, {\"group\": [73.0, 40.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"381\", \"clust\": 74, \"rank\": 180, \"ini\": 17, \"rankvar\": 16}, {\"group\": [212.0, 115.0, 45.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"339\", \"clust\": 212, \"rank\": 176, \"ini\": 16, \"rankvar\": 15}, {\"group\": [213.0, 116.0, 45.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"57\", \"clust\": 210, \"rank\": 42, \"ini\": 15, \"rankvar\": 14}, {\"group\": [182.0, 99.0, 39.0, 14.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"185\", \"clust\": 182, \"rank\": 101, \"ini\": 14, \"rankvar\": 13}, {\"group\": [67.0, 37.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"228\", \"clust\": 68, \"rank\": 174, \"ini\": 13, \"rankvar\": 12}, {\"group\": [8.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"248\", \"clust\": 9, \"rank\": 57, \"ini\": 12, \"rankvar\": 11}, {\"group\": [152.0, 81.0, 31.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"103\", \"clust\": 152, \"rank\": 29, \"ini\": 11, \"rankvar\": 10}, {\"group\": [53.0, 29.0, 12.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"437\", \"clust\": 50, \"rank\": 135, \"ini\": 10, \"rankvar\": 9}, {\"group\": [237.0, 131.0, 52.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"488\", \"clust\": 237, \"rank\": 74, \"ini\": 9, \"rankvar\": 8}, {\"group\": [235.0, 130.0, 51.0, 17.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"54\", \"clust\": 232, \"rank\": 43, \"ini\": 8, \"rankvar\": 7}, {\"group\": [199.0, 109.0, 44.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"205\", \"clust\": 199, \"rank\": 18, \"ini\": 7, \"rankvar\": 6}, {\"group\": [215.0, 117.0, 46.0, 15.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"494\", \"clust\": 216, \"rank\": 97, \"ini\": 6, \"rankvar\": 5}, {\"group\": [115.0, 62.0, 25.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"261\", \"clust\": 114, \"rank\": 58, \"ini\": 5, \"rankvar\": 4}, {\"group\": [128.0, 68.0, 27.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"40\", \"clust\": 128, \"rank\": 217, \"ini\": 4, \"rankvar\": 3}, {\"group\": [87.0, 48.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"199\", \"clust\": 87, \"rank\": 156, \"ini\": 3, \"rankvar\": 2}, {\"group\": [77.0, 43.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"243\", \"clust\": 76, \"rank\": 24, \"ini\": 2, \"rankvar\": 1}, {\"group\": [105.0, 57.0, 22.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"383\", \"clust\": 105, \"rank\": 207, \"ini\": 1, \"rankvar\": 0}], \"col_nodes\": [{\"group\": [10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 8.0, 3.0, 1.0], \"name\": \"0\", \"clust\": 0, \"rank\": 0, \"ini\": 10, \"rankvar\": 0}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 4, \"rank\": 2, \"ini\": 9, \"rankvar\": 5}, {\"group\": [9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 7.0, 2.0, 1.0], \"name\": \"2\", \"clust\": 6, \"rank\": 3, \"ini\": 8, \"rankvar\": 2}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 3.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 5, \"rank\": 9, \"ini\": 7, \"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\": \"4\", \"clust\": 1, \"rank\": 4, \"ini\": 6, \"rankvar\": 6}, {\"group\": [6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 5.0, 2.0, 1.0], \"name\": \"5\", \"clust\": 8, \"rank\": 1, \"ini\": 5, \"rankvar\": 1}, {\"group\": [8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 6.0, 2.0, 1.0], \"name\": \"6\", \"clust\": 7, \"rank\": 5, \"ini\": 4, \"rankvar\": 3}, {\"group\": [5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 4.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 3, \"rank\": 6, \"ini\": 3, \"rankvar\": 4}, {\"group\": [7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 5.0, 2.0, 1.0], \"name\": \"8\", \"clust\": 9, \"rank\": 8, \"ini\": 2, \"rankvar\": 7}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 2, \"rank\": 7, \"ini\": 1, \"rankvar\": 9}]}, \"dist\": \"cos\"}, {\"N_row_var\": 100, \"nodes\": {\"row_nodes\": [{\"group\": [48.0, 31.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"13\", \"clust\": 46, \"rank\": 56, \"ini\": 100, \"rankvar\": 99}, {\"group\": [92.0, 64.0, 29.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"123\", \"clust\": 83, \"rank\": 31, \"ini\": 99, \"rankvar\": 98}, {\"group\": [67.0, 47.0, 21.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"48\", \"clust\": 67, \"rank\": 33, \"ini\": 98, \"rankvar\": 97}, {\"group\": [71.0, 50.0, 23.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"80\", \"clust\": 69, \"rank\": 67, \"ini\": 97, \"rankvar\": 96}, {\"group\": [34.0, 20.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"421\", \"clust\": 34, \"rank\": 65, \"ini\": 96, \"rankvar\": 95}, {\"group\": [58.0, 40.0, 18.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"157\", \"clust\": 60, \"rank\": 63, \"ini\": 95, \"rankvar\": 94}, {\"group\": [96.0, 67.0, 32.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"45\", \"clust\": 96, \"rank\": 30, \"ini\": 94, \"rankvar\": 93}, {\"group\": [59.0, 40.0, 18.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"425\", \"clust\": 61, \"rank\": 58, \"ini\": 93, \"rankvar\": 92}, {\"group\": [100.0, 71.0, 34.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"368\", \"clust\": 0, \"rank\": 2, \"ini\": 92, \"rankvar\": 91}, {\"group\": [49.0, 32.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"442\", \"clust\": 45, \"rank\": 24, \"ini\": 91, \"rankvar\": 90}, {\"group\": [90.0, 62.0, 28.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"224\", \"clust\": 88, \"rank\": 96, \"ini\": 90, \"rankvar\": 89}, {\"group\": [54.0, 36.0, 17.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"289\", \"clust\": 54, \"rank\": 82, \"ini\": 89, \"rankvar\": 88}, {\"group\": [86.0, 61.0, 28.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"206\", \"clust\": 89, \"rank\": 28, \"ini\": 88, \"rankvar\": 87}, {\"group\": [47.0, 30.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"304\", \"clust\": 47, \"rank\": 45, \"ini\": 87, \"rankvar\": 86}, {\"group\": [50.0, 33.0, 14.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"125\", \"clust\": 50, \"rank\": 54, \"ini\": 86, \"rankvar\": 85}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"200\", \"clust\": 1, \"rank\": 12, \"ini\": 85, \"rankvar\": 84}, {\"group\": [87.0, 61.0, 28.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"338\", \"clust\": 90, \"rank\": 77, \"ini\": 84, \"rankvar\": 83}, {\"group\": [45.0, 29.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"452\", \"clust\": 48, \"rank\": 94, \"ini\": 83, \"rankvar\": 82}, {\"group\": [2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"335\", \"clust\": 2, \"rank\": 15, \"ini\": 82, \"rankvar\": 81}, {\"group\": [16.0, 11.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"342\", \"clust\": 17, \"rank\": 89, \"ini\": 81, \"rankvar\": 80}, {\"group\": [52.0, 34.0, 15.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"132\", \"clust\": 52, \"rank\": 52, \"ini\": 80, \"rankvar\": 79}, {\"group\": [8.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"296\", \"clust\": 8, \"rank\": 57, \"ini\": 79, \"rankvar\": 78}, {\"group\": [91.0, 63.0, 28.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"311\", \"clust\": 87, \"rank\": 22, \"ini\": 78, \"rankvar\": 77}, {\"group\": [64.0, 45.0, 20.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"189\", \"clust\": 65, \"rank\": 44, \"ini\": 77, \"rankvar\": 76}, {\"group\": [30.0, 18.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"409\", \"clust\": 32, \"rank\": 66, \"ini\": 76, \"rankvar\": 75}, {\"group\": [7.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"481\", \"clust\": 3, \"rank\": 47, \"ini\": 75, \"rankvar\": 74}, {\"group\": [66.0, 46.0, 20.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"227\", \"clust\": 64, \"rank\": 5, \"ini\": 74, \"rankvar\": 73}, {\"group\": [78.0, 56.0, 25.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"394\", \"clust\": 79, \"rank\": 13, \"ini\": 73, \"rankvar\": 72}, {\"group\": [31.0, 18.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"301\", \"clust\": 33, \"rank\": 37, \"ini\": 72, \"rankvar\": 71}, {\"group\": [42.0, 26.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"392\", \"clust\": 43, \"rank\": 36, \"ini\": 71, \"rankvar\": 70}, {\"group\": [60.0, 41.0, 18.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"433\", \"clust\": 59, \"rank\": 9, \"ini\": 70, \"rankvar\": 69}, {\"group\": [93.0, 65.0, 30.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"322\", \"clust\": 94, \"rank\": 39, \"ini\": 69, \"rankvar\": 68}, {\"group\": [62.0, 43.0, 19.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"47\", \"clust\": 62, \"rank\": 27, \"ini\": 68, \"rankvar\": 67}, {\"group\": [65.0, 45.0, 20.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"17\", \"clust\": 66, \"rank\": 21, \"ini\": 67, \"rankvar\": 66}, {\"group\": [79.0, 56.0, 25.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 80, \"rank\": 34, \"ini\": 66, \"rankvar\": 65}, {\"group\": [98.0, 69.0, 33.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"405\", \"clust\": 98, \"rank\": 72, \"ini\": 65, \"rankvar\": 64}, {\"group\": [46.0, 29.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"435\", \"clust\": 49, \"rank\": 85, \"ini\": 64, \"rankvar\": 63}, {\"group\": [80.0, 57.0, 25.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 81, \"rank\": 51, \"ini\": 63, \"rankvar\": 62}, {\"group\": [41.0, 25.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"359\", \"clust\": 38, \"rank\": 25, \"ini\": 62, \"rankvar\": 61}, {\"group\": [83.0, 59.0, 27.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"182\", \"clust\": 85, \"rank\": 93, \"ini\": 61, \"rankvar\": 60}, {\"group\": [36.0, 21.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"378\", \"clust\": 36, \"rank\": 20, \"ini\": 60, \"rankvar\": 59}, {\"group\": [84.0, 59.0, 27.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"336\", \"clust\": 86, \"rank\": 95, \"ini\": 59, \"rankvar\": 58}, {\"group\": [75.0, 54.0, 24.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"499\", \"clust\": 76, \"rank\": 32, \"ini\": 58, \"rankvar\": 57}, {\"group\": [82.0, 58.0, 26.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"100\", \"clust\": 78, \"rank\": 26, \"ini\": 57, \"rankvar\": 56}, {\"group\": [56.0, 38.0, 17.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"320\", \"clust\": 56, \"rank\": 41, \"ini\": 56, \"rankvar\": 55}, {\"group\": [3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"411\", \"clust\": 6, \"rank\": 43, \"ini\": 55, \"rankvar\": 54}, {\"group\": [57.0, 39.0, 17.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"96\", \"clust\": 57, \"rank\": 86, \"ini\": 54, \"rankvar\": 53}, {\"group\": [53.0, 35.0, 16.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"145\", \"clust\": 53, \"rank\": 3, \"ini\": 53, \"rankvar\": 52}, {\"group\": [61.0, 42.0, 18.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"461\", \"clust\": 58, \"rank\": 8, \"ini\": 52, \"rankvar\": 51}, {\"group\": [63.0, 44.0, 19.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"389\", \"clust\": 63, \"rank\": 16, \"ini\": 51, \"rankvar\": 50}, {\"group\": [19.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"139\", \"clust\": 19, \"rank\": 78, \"ini\": 50, \"rankvar\": 49}, {\"group\": [88.0, 61.0, 28.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"477\", \"clust\": 91, \"rank\": 92, \"ini\": 49, \"rankvar\": 48}, {\"group\": [10.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"93\", \"clust\": 12, \"rank\": 83, \"ini\": 48, \"rankvar\": 47}, {\"group\": [72.0, 51.0, 24.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"286\", \"clust\": 73, \"rank\": 19, \"ini\": 47, \"rankvar\": 46}, {\"group\": [43.0, 27.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"429\", \"clust\": 44, \"rank\": 4, \"ini\": 46, \"rankvar\": 45}, {\"group\": [27.0, 17.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"256\", \"clust\": 28, \"rank\": 71, \"ini\": 45, \"rankvar\": 44}, {\"group\": [38.0, 23.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"174\", \"clust\": 40, \"rank\": 74, \"ini\": 44, \"rankvar\": 43}, {\"group\": [6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"190\", \"clust\": 4, \"rank\": 87, \"ini\": 43, \"rankvar\": 42}, {\"group\": [13.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"171\", \"clust\": 10, \"rank\": 38, \"ini\": 42, \"rankvar\": 41}, {\"group\": [55.0, 37.0, 17.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"430\", \"clust\": 55, \"rank\": 76, \"ini\": 41, \"rankvar\": 40}, {\"group\": [89.0, 61.0, 28.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"28\", \"clust\": 92, \"rank\": 81, \"ini\": 40, \"rankvar\": 39}, {\"group\": [21.0, 14.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"113\", \"clust\": 25, \"rank\": 97, \"ini\": 39, \"rankvar\": 38}, {\"group\": [22.0, 14.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"269\", \"clust\": 26, \"rank\": 99, \"ini\": 38, \"rankvar\": 37}, {\"group\": [11.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"282\", \"clust\": 13, \"rank\": 98, \"ini\": 37, \"rankvar\": 36}, {\"group\": [39.0, 23.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"364\", \"clust\": 41, \"rank\": 53, \"ini\": 36, \"rankvar\": 35}, {\"group\": [12.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"70\", \"clust\": 11, \"rank\": 80, \"ini\": 35, \"rankvar\": 34}, {\"group\": [68.0, 47.0, 21.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"225\", \"clust\": 68, \"rank\": 6, \"ini\": 34, \"rankvar\": 33}, {\"group\": [4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"317\", \"clust\": 7, \"rank\": 29, \"ini\": 33, \"rankvar\": 32}, {\"group\": [29.0, 17.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"27\", \"clust\": 27, \"rank\": 62, \"ini\": 32, \"rankvar\": 31}, {\"group\": [26.0, 16.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"99\", \"clust\": 21, \"rank\": 70, \"ini\": 31, \"rankvar\": 30}, {\"group\": [73.0, 52.0, 24.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"462\", \"clust\": 74, \"rank\": 40, \"ini\": 30, \"rankvar\": 29}, {\"group\": [77.0, 55.0, 24.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"69\", \"clust\": 75, \"rank\": 73, \"ini\": 29, \"rankvar\": 28}, {\"group\": [85.0, 60.0, 27.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"55\", \"clust\": 84, \"rank\": 48, \"ini\": 28, \"rankvar\": 27}, {\"group\": [69.0, 48.0, 22.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"440\", \"clust\": 70, \"rank\": 42, \"ini\": 27, \"rankvar\": 26}, {\"group\": [76.0, 54.0, 24.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"110\", \"clust\": 77, \"rank\": 60, \"ini\": 26, \"rankvar\": 25}, {\"group\": [20.0, 13.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 20, \"rank\": 7, \"ini\": 25, \"rankvar\": 24}, {\"group\": [14.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"229\", \"clust\": 14, \"rank\": 91, \"ini\": 24, \"rankvar\": 23}, {\"group\": [70.0, 49.0, 22.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"471\", \"clust\": 71, \"rank\": 49, \"ini\": 23, \"rankvar\": 22}, {\"group\": [33.0, 19.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"97\", \"clust\": 30, \"rank\": 10, \"ini\": 22, \"rankvar\": 21}, {\"group\": [74.0, 53.0, 24.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"345\", \"clust\": 72, \"rank\": 18, \"ini\": 21, \"rankvar\": 20}, {\"group\": [94.0, 65.0, 30.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"415\", \"clust\": 95, \"rank\": 23, \"ini\": 20, \"rankvar\": 19}, {\"group\": [51.0, 33.0, 14.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"265\", \"clust\": 51, \"rank\": 14, \"ini\": 19, \"rankvar\": 18}, {\"group\": [35.0, 20.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"283\", \"clust\": 35, \"rank\": 1, \"ini\": 18, \"rankvar\": 17}, {\"group\": [81.0, 57.0, 25.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"474\", \"clust\": 82, \"rank\": 46, \"ini\": 17, \"rankvar\": 16}, {\"group\": [23.0, 14.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"457\", \"clust\": 24, \"rank\": 79, \"ini\": 16, \"rankvar\": 15}, {\"group\": [18.0, 11.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"446\", \"clust\": 16, \"rank\": 75, \"ini\": 15, \"rankvar\": 14}, {\"group\": [32.0, 18.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"218\", \"clust\": 31, \"rank\": 84, \"ini\": 14, \"rankvar\": 13}, {\"group\": [97.0, 68.0, 32.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"380\", \"clust\": 97, \"rank\": 17, \"ini\": 13, \"rankvar\": 12}, {\"group\": [5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"95\", \"clust\": 5, \"rank\": 90, \"ini\": 12, \"rankvar\": 11}, {\"group\": [25.0, 15.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"307\", \"clust\": 22, \"rank\": 59, \"ini\": 11, \"rankvar\": 10}, {\"group\": [40.0, 24.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"191\", \"clust\": 39, \"rank\": 35, \"ini\": 10, \"rankvar\": 9}, {\"group\": [17.0, 11.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"314\", \"clust\": 18, \"rank\": 11, \"ini\": 9, \"rankvar\": 8}, {\"group\": [24.0, 14.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"36\", \"clust\": 23, \"rank\": 88, \"ini\": 8, \"rankvar\": 7}, {\"group\": [28.0, 17.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"20\", \"clust\": 29, \"rank\": 50, \"ini\": 7, \"rankvar\": 6}, {\"group\": [99.0, 70.0, 33.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"458\", \"clust\": 99, \"rank\": 55, \"ini\": 6, \"rankvar\": 5}, {\"group\": [37.0, 22.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"244\", \"clust\": 37, \"rank\": 68, \"ini\": 5, \"rankvar\": 4}, {\"group\": [44.0, 28.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"478\", \"clust\": 42, \"rank\": 64, \"ini\": 4, \"rankvar\": 3}, {\"group\": [9.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"210\", \"clust\": 9, \"rank\": 61, \"ini\": 3, \"rankvar\": 2}, {\"group\": [95.0, 66.0, 31.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"230\", \"clust\": 93, \"rank\": 0, \"ini\": 2, \"rankvar\": 1}, {\"group\": [15.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"251\", \"clust\": 15, \"rank\": 69, \"ini\": 1, \"rankvar\": 0}], \"col_nodes\": [{\"group\": [10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 7.0, 3.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 0, \"rank\": 0, \"ini\": 10, \"rankvar\": 0}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 1, \"rank\": 8, \"ini\": 9, \"rankvar\": 5}, {\"group\": [9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 6.0, 2.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 6, \"rank\": 1, \"ini\": 8, \"rankvar\": 3}, {\"group\": [5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 3, \"rank\": 2, \"ini\": 7, \"rankvar\": 8}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"4\", \"clust\": 4, \"rank\": 7, \"ini\": 6, \"rankvar\": 9}, {\"group\": [6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 4.0, 2.0, 1.0, 1.0], \"name\": \"5\", \"clust\": 8, \"rank\": 3, \"ini\": 5, \"rankvar\": 6}, {\"group\": [8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 5.0, 2.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 7, \"rank\": 5, \"ini\": 4, \"rankvar\": 2}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 2, \"rank\": 4, \"ini\": 3, \"rankvar\": 1}, {\"group\": [7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 4.0, 2.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 9, \"rank\": 6, \"ini\": 2, \"rankvar\": 7}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 5, \"rank\": 9, \"ini\": 1, \"rankvar\": 4}]}, \"dist\": \"cos\"}, {\"N_row_var\": 50, \"nodes\": {\"row_nodes\": [{\"group\": [31.0, 27.0, 19.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"13\", \"clust\": 30, \"rank\": 33, \"ini\": 50, \"rankvar\": 49}, {\"group\": [32.0, 28.0, 20.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"123\", \"clust\": 31, \"rank\": 18, \"ini\": 49, \"rankvar\": 48}, {\"group\": [8.0, 8.0, 6.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"48\", \"clust\": 7, \"rank\": 20, \"ini\": 48, \"rankvar\": 47}, {\"group\": [40.0, 35.0, 25.0, 13.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"80\", \"clust\": 37, \"rank\": 39, \"ini\": 47, \"rankvar\": 46}, {\"group\": [23.0, 20.0, 14.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"421\", \"clust\": 22, \"rank\": 37, \"ini\": 46, \"rankvar\": 45}, {\"group\": [17.0, 15.0, 10.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"157\", \"clust\": 18, \"rank\": 36, \"ini\": 45, \"rankvar\": 44}, {\"group\": [49.0, 42.0, 29.0, 15.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"45\", \"clust\": 48, \"rank\": 17, \"ini\": 44, \"rankvar\": 43}, {\"group\": [18.0, 15.0, 10.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"425\", \"clust\": 19, \"rank\": 35, \"ini\": 43, \"rankvar\": 42}, {\"group\": [7.0, 7.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"368\", \"clust\": 4, \"rank\": 0, \"ini\": 42, \"rankvar\": 41}, {\"group\": [16.0, 14.0, 9.0, 6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"442\", \"clust\": 13, \"rank\": 12, \"ini\": 41, \"rankvar\": 40}, {\"group\": [35.0, 30.0, 21.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"224\", \"clust\": 34, \"rank\": 49, \"ini\": 40, \"rankvar\": 39}, {\"group\": [25.0, 22.0, 15.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"289\", \"clust\": 24, \"rank\": 42, \"ini\": 39, \"rankvar\": 38}, {\"group\": [33.0, 29.0, 21.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"206\", \"clust\": 35, \"rank\": 16, \"ini\": 38, \"rankvar\": 37}, {\"group\": [12.0, 11.0, 8.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"304\", \"clust\": 11, \"rank\": 28, \"ini\": 37, \"rankvar\": 36}, {\"group\": [30.0, 26.0, 18.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"125\", \"clust\": 26, \"rank\": 32, \"ini\": 36, \"rankvar\": 35}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"200\", \"clust\": 0, \"rank\": 5, \"ini\": 35, \"rankvar\": 34}, {\"group\": [34.0, 29.0, 21.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"338\", \"clust\": 36, \"rank\": 41, \"ini\": 34, \"rankvar\": 33}, {\"group\": [14.0, 13.0, 9.0, 6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"452\", \"clust\": 14, \"rank\": 47, \"ini\": 33, \"rankvar\": 32}, {\"group\": [2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"335\", \"clust\": 1, \"rank\": 7, \"ini\": 32, \"rankvar\": 31}, {\"group\": [48.0, 41.0, 28.0, 15.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"342\", \"clust\": 45, \"rank\": 45, \"ini\": 31, \"rankvar\": 30}, {\"group\": [21.0, 18.0, 12.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"132\", \"clust\": 20, \"rank\": 31, \"ini\": 30, \"rankvar\": 29}, {\"group\": [24.0, 21.0, 14.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"296\", \"clust\": 23, \"rank\": 34, \"ini\": 29, \"rankvar\": 28}, {\"group\": [36.0, 31.0, 22.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"311\", \"clust\": 33, \"rank\": 11, \"ini\": 28, \"rankvar\": 27}, {\"group\": [46.0, 40.0, 28.0, 15.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"189\", \"clust\": 46, \"rank\": 27, \"ini\": 27, \"rankvar\": 26}, {\"group\": [10.0, 10.0, 7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"409\", \"clust\": 9, \"rank\": 38, \"ini\": 26, \"rankvar\": 25}, {\"group\": [3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"481\", \"clust\": 2, \"rank\": 29, \"ini\": 25, \"rankvar\": 24}, {\"group\": [43.0, 38.0, 27.0, 14.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"227\", \"clust\": 40, \"rank\": 2, \"ini\": 24, \"rankvar\": 23}, {\"group\": [27.0, 24.0, 17.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"394\", \"clust\": 28, \"rank\": 6, \"ini\": 23, \"rankvar\": 22}, {\"group\": [11.0, 10.0, 7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"301\", \"clust\": 10, \"rank\": 23, \"ini\": 22, \"rankvar\": 21}, {\"group\": [5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"392\", \"clust\": 5, \"rank\": 22, \"ini\": 21, \"rankvar\": 20}, {\"group\": [19.0, 16.0, 10.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"433\", \"clust\": 17, \"rank\": 4, \"ini\": 20, \"rankvar\": 19}, {\"group\": [38.0, 33.0, 24.0, 13.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"322\", \"clust\": 38, \"rank\": 24, \"ini\": 19, \"rankvar\": 18}, {\"group\": [41.0, 36.0, 26.0, 14.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"47\", \"clust\": 41, \"rank\": 15, \"ini\": 18, \"rankvar\": 17}, {\"group\": [47.0, 40.0, 28.0, 15.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"17\", \"clust\": 47, \"rank\": 10, \"ini\": 17, \"rankvar\": 16}, {\"group\": [28.0, 24.0, 17.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 29, \"rank\": 21, \"ini\": 16, \"rankvar\": 15}, {\"group\": [50.0, 43.0, 30.0, 15.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"405\", \"clust\": 49, \"rank\": 40, \"ini\": 15, \"rankvar\": 14}, {\"group\": [15.0, 13.0, 9.0, 6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"435\", \"clust\": 15, \"rank\": 43, \"ini\": 14, \"rankvar\": 13}, {\"group\": [29.0, 25.0, 17.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 27, \"rank\": 30, \"ini\": 13, \"rankvar\": 12}, {\"group\": [6.0, 6.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"359\", \"clust\": 6, \"rank\": 13, \"ini\": 12, \"rankvar\": 11}, {\"group\": [44.0, 39.0, 28.0, 15.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"182\", \"clust\": 43, \"rank\": 46, \"ini\": 11, \"rankvar\": 10}, {\"group\": [13.0, 12.0, 8.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"378\", \"clust\": 12, \"rank\": 9, \"ini\": 10, \"rankvar\": 9}, {\"group\": [45.0, 39.0, 28.0, 15.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"336\", \"clust\": 44, \"rank\": 48, \"ini\": 9, \"rankvar\": 8}, {\"group\": [39.0, 34.0, 24.0, 13.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"499\", \"clust\": 39, \"rank\": 19, \"ini\": 8, \"rankvar\": 7}, {\"group\": [37.0, 32.0, 23.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"100\", \"clust\": 32, \"rank\": 14, \"ini\": 7, \"rankvar\": 6}, {\"group\": [26.0, 23.0, 16.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"320\", \"clust\": 25, \"rank\": 25, \"ini\": 6, \"rankvar\": 5}, {\"group\": [4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"411\", \"clust\": 3, \"rank\": 26, \"ini\": 5, \"rankvar\": 4}, {\"group\": [9.0, 9.0, 6.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"96\", \"clust\": 8, \"rank\": 44, \"ini\": 4, \"rankvar\": 3}, {\"group\": [22.0, 19.0, 13.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"145\", \"clust\": 21, \"rank\": 1, \"ini\": 3, \"rankvar\": 2}, {\"group\": [20.0, 17.0, 11.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"461\", \"clust\": 16, \"rank\": 3, \"ini\": 2, \"rankvar\": 1}, {\"group\": [42.0, 37.0, 26.0, 14.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"389\", \"clust\": 42, \"rank\": 8, \"ini\": 1, \"rankvar\": 0}], \"col_nodes\": [{\"group\": [6.0, 6.0, 6.0, 6.0, 6.0, 4.0, 4.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 8, \"rank\": 3, \"ini\": 10, \"rankvar\": 1}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 3.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 6, \"rank\": 2, \"ini\": 9, \"rankvar\": 5}, {\"group\": [9.0, 9.0, 9.0, 9.0, 9.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 1, \"rank\": 0, \"ini\": 8, \"rankvar\": 8}, {\"group\": [10.0, 10.0, 10.0, 10.0, 10.0, 8.0, 7.0, 4.0, 2.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 0, \"rank\": 1, \"ini\": 7, \"rankvar\": 6}, {\"group\": [8.0, 8.0, 8.0, 8.0, 8.0, 6.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"4\", \"clust\": 2, \"rank\": 4, \"ini\": 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\": \"5\", \"clust\": 4, \"rank\": 6, \"ini\": 5, \"rankvar\": 4}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 5, \"rank\": 7, \"ini\": 4, \"rankvar\": 0}, {\"group\": [5.0, 5.0, 5.0, 5.0, 5.0, 3.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 7, \"rank\": 9, \"ini\": 3, \"rankvar\": 2}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 3, \"rank\": 5, \"ini\": 2, \"rankvar\": 7}, {\"group\": [7.0, 7.0, 7.0, 7.0, 7.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 9, \"rank\": 8, \"ini\": 1, \"rankvar\": 3}]}, \"dist\": \"cos\"}, {\"N_row_var\": 20, \"nodes\": {\"row_nodes\": [{\"group\": [16.0, 14.0, 11.0, 8.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"13\", \"clust\": 16, \"rank\": 10, \"ini\": 20, \"rankvar\": 19}, {\"group\": [19.0, 17.0, 12.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"123\", \"clust\": 18, \"rank\": 6, \"ini\": 19, \"rankvar\": 18}, {\"group\": [4.0, 4.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"48\", \"clust\": 3, \"rank\": 7, \"ini\": 18, \"rankvar\": 17}, {\"group\": [5.0, 5.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"80\", \"clust\": 4, \"rank\": 14, \"ini\": 17, \"rankvar\": 16}, {\"group\": [8.0, 8.0, 6.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"421\", \"clust\": 5, \"rank\": 13, \"ini\": 16, \"rankvar\": 15}, {\"group\": [9.0, 9.0, 7.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"157\", \"clust\": 9, \"rank\": 12, \"ini\": 15, \"rankvar\": 14}, {\"group\": [6.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"45\", \"clust\": 6, \"rank\": 5, \"ini\": 14, \"rankvar\": 13}, {\"group\": [10.0, 9.0, 7.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"425\", \"clust\": 10, \"rank\": 11, \"ini\": 13, \"rankvar\": 12}, {\"group\": [3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"368\", \"clust\": 0, \"rank\": 0, \"ini\": 12, \"rankvar\": 11}, {\"group\": [11.0, 10.0, 8.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"442\", \"clust\": 8, \"rank\": 3, \"ini\": 11, \"rankvar\": 10}, {\"group\": [14.0, 12.0, 9.0, 7.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"224\", \"clust\": 12, \"rank\": 19, \"ini\": 10, \"rankvar\": 9}, {\"group\": [20.0, 18.0, 13.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"289\", \"clust\": 19, \"rank\": 16, \"ini\": 9, \"rankvar\": 8}, {\"group\": [12.0, 11.0, 9.0, 7.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"206\", \"clust\": 13, \"rank\": 4, \"ini\": 8, \"rankvar\": 7}, {\"group\": [18.0, 16.0, 11.0, 8.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"304\", \"clust\": 15, \"rank\": 8, \"ini\": 7, \"rankvar\": 6}, {\"group\": [15.0, 13.0, 10.0, 7.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"125\", \"clust\": 11, \"rank\": 9, \"ini\": 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\": \"200\", \"clust\": 1, \"rank\": 1, \"ini\": 5, \"rankvar\": 4}, {\"group\": [13.0, 11.0, 9.0, 7.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"338\", \"clust\": 14, \"rank\": 15, \"ini\": 4, \"rankvar\": 3}, {\"group\": [17.0, 15.0, 11.0, 8.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"452\", \"clust\": 17, \"rank\": 18, \"ini\": 3, \"rankvar\": 2}, {\"group\": [2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"335\", \"clust\": 2, \"rank\": 2, \"ini\": 2, \"rankvar\": 1}, {\"group\": [7.0, 7.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"342\", \"clust\": 7, \"rank\": 17, \"ini\": 1, \"rankvar\": 0}], \"col_nodes\": [{\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 3, \"rank\": 2, \"ini\": 10, \"rankvar\": 4}, {\"group\": [8.0, 8.0, 8.0, 7.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 2, \"rank\": 4, \"ini\": 9, \"rankvar\": 9}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 5, \"rank\": 5, \"ini\": 8, \"rankvar\": 6}, {\"group\": [9.0, 9.0, 9.0, 8.0, 7.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 1, \"rank\": 1, \"ini\": 7, \"rankvar\": 5}, {\"group\": [10.0, 10.0, 10.0, 9.0, 8.0, 7.0, 5.0, 3.0, 2.0, 1.0, 1.0], \"name\": \"4\", \"clust\": 0, \"rank\": 0, \"ini\": 6, \"rankvar\": 7}, {\"group\": [7.0, 7.0, 7.0, 6.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"5\", \"clust\": 7, \"rank\": 3, \"ini\": 5, \"rankvar\": 3}, {\"group\": [5.0, 5.0, 5.0, 4.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 8, \"rank\": 6, \"ini\": 4, \"rankvar\": 2}, {\"group\": [6.0, 6.0, 6.0, 5.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 9, \"rank\": 9, \"ini\": 3, \"rankvar\": 1}, {\"group\": [4.0, 4.0, 4.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 6, \"rank\": 8, \"ini\": 2, \"rankvar\": 0}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 4, \"rank\": 7, \"ini\": 1, \"rankvar\": 8}]}, \"dist\": \"cos\"}, {\"N_row_var\": 10, \"nodes\": {\"row_nodes\": [{\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"13\", \"clust\": 1, \"rank\": 5, \"ini\": 10, \"rankvar\": 9}, {\"group\": [2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"123\", \"clust\": 2, \"rank\": 3, \"ini\": 9, \"rankvar\": 8}, {\"group\": [6.0, 6.0, 6.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"48\", \"clust\": 5, \"rank\": 4, \"ini\": 8, \"rankvar\": 7}, {\"group\": [7.0, 7.0, 7.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"80\", \"clust\": 6, \"rank\": 9, \"ini\": 7, \"rankvar\": 6}, {\"group\": [4.0, 4.0, 4.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"421\", \"clust\": 3, \"rank\": 8, \"ini\": 6, \"rankvar\": 5}, {\"group\": [8.0, 8.0, 8.0, 5.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"157\", \"clust\": 8, \"rank\": 7, \"ini\": 5, \"rankvar\": 4}, {\"group\": [5.0, 5.0, 5.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"45\", \"clust\": 4, \"rank\": 2, \"ini\": 4, \"rankvar\": 3}, {\"group\": [9.0, 8.0, 8.0, 5.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"425\", \"clust\": 9, \"rank\": 6, \"ini\": 3, \"rankvar\": 2}, {\"group\": [3.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"368\", \"clust\": 0, \"rank\": 0, \"ini\": 2, \"rankvar\": 1}, {\"group\": [10.0, 9.0, 9.0, 6.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"442\", \"clust\": 7, \"rank\": 1, \"ini\": 1, \"rankvar\": 0}], \"col_nodes\": [{\"group\": [4.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"0\", \"clust\": 5, \"rank\": 4, \"ini\": 10, \"rankvar\": 6}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"1\", \"clust\": 1, \"rank\": 7, \"ini\": 9, \"rankvar\": 9}, {\"group\": [8.0, 8.0, 7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"2\", \"clust\": 8, \"rank\": 0, \"ini\": 8, \"rankvar\": 8}, {\"group\": [10.0, 10.0, 9.0, 6.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"3\", \"clust\": 7, \"rank\": 2, \"ini\": 7, \"rankvar\": 5}, {\"group\": [3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"4\", \"clust\": 0, \"rank\": 1, \"ini\": 6, \"rankvar\": 4}, {\"group\": [7.0, 7.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"5\", \"clust\": 3, \"rank\": 3, \"ini\": 5, \"rankvar\": 3}, {\"group\": [2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"6\", \"clust\": 2, \"rank\": 5, \"ini\": 4, \"rankvar\": 1}, {\"group\": [6.0, 6.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"7\", \"clust\": 4, \"rank\": 9, \"ini\": 3, \"rankvar\": 2}, {\"group\": [9.0, 9.0, 8.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"8\", \"clust\": 9, \"rank\": 6, \"ini\": 2, \"rankvar\": 0}, {\"group\": [5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"9\", \"clust\": 6, \"rank\": 8, \"ini\": 1, \"rankvar\": 7}]}, \"dist\": \"cos\"}]}", "viz_title": "updating python by restarting kernel" } }, "ea4459a82ef941ed8d8429566d6bca31": { "model_module": "jupyter-js-widgets", "model_module_version": "*", "model_name": "LayoutModel", "state": { "_model_module_version": "*", "_view_module_version": "*" } }, "f4bb764377504f0ab222a363ffc11b82": { "model_module": "clustergrammer_widget", "model_module_version": "*", "model_name": "hello_model", "state": { "_dom_classes": [], "_model_module_version": "*", "_view_module_version": "*", "layout": "IPY_MODEL_ea4459a82ef941ed8d8429566d6bca31", "msg_throttle": 1, "network": "{\"row_nodes\": [{\"group\": [10.0, 9.0, 8.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: CDK4\", \"clust\": 14, \"cat_0_index\": 0, \"rank\": 30, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 20, \"ini\": 38}, {\"group\": [21.0, 20.0, 19.0, 13.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LMTK3\", \"clust\": 20, \"cat_0_index\": 17, \"rank\": 28, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 24, \"ini\": 37}, {\"group\": [26.0, 25.0, 22.0, 16.0, 13.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LRRK2\", \"clust\": 26, \"cat_0_index\": 18, \"rank\": 9, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 10, \"ini\": 36}, {\"group\": [28.0, 27.0, 24.0, 18.0, 14.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: UHMK1\", \"clust\": 25, \"cat_0_index\": 19, \"rank\": 26, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 14, \"ini\": 35}, {\"group\": [12.0, 11.0, 10.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: EGFR\", \"clust\": 13, \"cat_0_index\": 1, \"rank\": 33, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 7, \"ini\": 34}, {\"group\": [33.0, 32.0, 29.0, 22.0, 17.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK32A\", \"clust\": 32, \"cat_0_index\": 2, \"rank\": 36, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 32, \"ini\": 33}, {\"group\": [11.0, 10.0, 9.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NRK\", \"clust\": 15, \"cat_0_index\": 3, \"rank\": 35, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 33, \"ini\": 32}, {\"group\": [35.0, 34.0, 31.0, 23.0, 18.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ERBB2\", \"clust\": 34, \"cat_0_index\": 20, \"rank\": 24, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 9, \"ini\": 31}, {\"group\": [31.0, 30.0, 27.0, 20.0, 16.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ERBB4\", \"clust\": 30, \"cat_0_index\": 21, \"rank\": 6, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 2, \"ini\": 30}, {\"group\": [37.0, 36.0, 33.0, 25.0, 19.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: AAK1\", \"clust\": 36, \"cat_0_index\": 22, \"rank\": 18, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 8, \"ini\": 29}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: SRPK3\", \"clust\": 4, \"cat_0_index\": 23, \"rank\": 8, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 15, \"ini\": 28}, {\"group\": [36.0, 35.0, 32.0, 24.0, 18.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK39\", \"clust\": 35, \"cat_0_index\": 4, \"rank\": 7, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 4, \"ini\": 27}, {\"group\": [3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: GRK4\", \"clust\": 3, \"cat_0_index\": 24, \"rank\": 1, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 3, \"ini\": 26}, {\"group\": [13.0, 12.0, 11.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: TBK1\", \"clust\": 12, \"cat_0_index\": 25, \"rank\": 34, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 26, \"ini\": 25}, {\"group\": [23.0, 22.0, 20.0, 14.0, 12.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: INSRR\", \"clust\": 23, \"cat_0_index\": 26, \"rank\": 13, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 5, \"ini\": 24}, {\"group\": [14.0, 13.0, 12.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: IRAK1\", \"clust\": 11, \"cat_0_index\": 5, \"rank\": 20, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 30, \"ini\": 23}, {\"group\": [34.0, 33.0, 30.0, 22.0, 17.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: KDR\", \"clust\": 33, \"cat_0_index\": 27, \"rank\": 19, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 11, \"ini\": 22}, {\"group\": [20.0, 19.0, 18.0, 12.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NPR1\", \"clust\": 16, \"cat_0_index\": 6, \"rank\": 27, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 29, \"ini\": 21}, {\"group\": [16.0, 15.0, 14.0, 9.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PAK3\", \"clust\": 9, \"cat_0_index\": 28, \"rank\": 11, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 12, \"ini\": 20}, {\"group\": [7.0, 6.0, 5.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PDGFRA\", \"clust\": 7, \"cat_0_index\": 7, \"rank\": 2, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 0, \"ini\": 19}, {\"group\": [24.0, 23.0, 20.0, 14.0, 12.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PDK4\", \"clust\": 24, \"cat_0_index\": 29, \"rank\": 22, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 22, \"ini\": 18}, {\"group\": [29.0, 28.0, 25.0, 19.0, 15.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ULK4\", \"clust\": 28, \"cat_0_index\": 8, \"rank\": 16, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 19, \"ini\": 17}, {\"group\": [22.0, 21.0, 19.0, 13.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PRKCE\", \"clust\": 21, \"cat_0_index\": 30, \"rank\": 14, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 1, \"ini\": 16}, {\"group\": [4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PRKG2\", \"clust\": 2, \"cat_0_index\": 31, \"rank\": 25, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 18, \"ini\": 15}, {\"group\": [17.0, 16.0, 15.0, 10.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAPK4\", \"clust\": 18, \"cat_0_index\": 9, \"rank\": 10, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 16, \"ini\": 14}, {\"group\": [8.0, 7.0, 6.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAPK11\", \"clust\": 8, \"cat_0_index\": 10, \"rank\": 17, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 34, \"ini\": 13}, {\"group\": [32.0, 31.0, 28.0, 21.0, 16.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK31\", \"clust\": 31, \"cat_0_index\": 11, \"rank\": 37, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 31, \"ini\": 12}, {\"group\": [18.0, 17.0, 16.0, 10.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: GRK1\", \"clust\": 19, \"cat_0_index\": 32, \"rank\": 15, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 23, \"ini\": 11}, {\"group\": [38.0, 37.0, 34.0, 26.0, 20.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ROS1\", \"clust\": 37, \"cat_0_index\": 12, \"rank\": 31, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 37, \"ini\": 10}, {\"group\": [15.0, 14.0, 13.0, 8.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAP2K4\", \"clust\": 10, \"cat_0_index\": 13, \"rank\": 23, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 28, \"ini\": 9}, {\"group\": [27.0, 26.0, 23.0, 17.0, 13.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: SRC\", \"clust\": 27, \"cat_0_index\": 14, \"rank\": 21, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 21, \"ini\": 8}, {\"group\": [19.0, 18.0, 17.0, 11.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: TGFBR1\", \"clust\": 17, \"cat_0_index\": 15, \"rank\": 12, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 13, \"ini\": 7}, {\"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: CAMK2B\", \"clust\": 5, \"cat_0_index\": 33, \"rank\": 3, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 17, \"ini\": 6}, {\"group\": [9.0, 8.0, 7.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK24\", \"clust\": 6, \"cat_0_index\": 16, \"rank\": 0, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 36, \"ini\": 5}, {\"group\": [5.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: DCLK3\", \"clust\": 1, \"cat_0_index\": 34, \"rank\": 5, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 25, \"ini\": 4}, {\"group\": [25.0, 24.0, 21.0, 15.0, 12.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LATS1\", \"clust\": 22, \"cat_0_index\": 35, \"rank\": 29, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 27, \"ini\": 3}, {\"group\": [6.0, 5.0, 4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NEK9\", \"clust\": 0, \"cat_0_index\": 36, \"rank\": 4, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 6, \"ini\": 2}, {\"group\": [30.0, 29.0, 26.0, 19.0, 15.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MYLK3\", \"clust\": 29, \"cat_0_index\": 37, \"rank\": 32, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 35, \"ini\": 1}], \"col_nodes\": [{\"group\": [15.0, 15.0, 15.0, 15.0, 12.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1650\", \"clust\": 12, \"cat_1_index\": 10, \"cat_0_index\": 24, \"rank\": 6, \"cat-1\": \"Gender: Male\", \"ini\": 29, \"cat-0\": \"Category: two\", \"rankvar\": 4}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H23\", \"clust\": 2, \"cat_1_index\": 11, \"cat_0_index\": 25, \"rank\": 17, \"cat-1\": \"Gender: Male\", \"ini\": 28, \"cat-0\": \"Category: two\", \"rankvar\": 8}, {\"group\": [6.0, 6.0, 6.0, 6.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CAL-12T\", \"clust\": 4, \"cat_1_index\": 12, \"cat_0_index\": 26, \"rank\": 10, \"cat-1\": \"Gender: Male\", \"ini\": 27, \"cat-0\": \"Category: two\", \"rankvar\": 19}, {\"group\": [27.0, 27.0, 27.0, 26.0, 20.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H358\", \"clust\": 25, \"cat_1_index\": 13, \"cat_0_index\": 13, \"rank\": 4, \"cat-1\": \"Gender: Male\", \"ini\": 26, \"cat-0\": \"Category: one\", \"rankvar\": 0}, {\"group\": [28.0, 28.0, 28.0, 27.0, 21.0, 16.0, 9.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1975\", \"clust\": 22, \"cat_1_index\": 0, \"cat_0_index\": 27, \"rank\": 0, \"cat-1\": \"Gender: Female\", \"ini\": 25, \"cat-0\": \"Category: two\", \"rankvar\": 24}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC15\", \"clust\": 1, \"cat_1_index\": 14, \"cat_0_index\": 28, \"rank\": 24, \"cat-1\": \"Gender: Male\", \"ini\": 24, \"cat-0\": \"Category: two\", \"rankvar\": 20}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1355\", \"clust\": 5, \"cat_1_index\": 15, \"cat_0_index\": 19, \"rank\": 9, \"cat-1\": \"Gender: Male\", \"ini\": 23, \"cat-0\": \"Category: three\", \"rankvar\": 6}, {\"group\": [22.0, 22.0, 22.0, 22.0, 18.0, 14.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC827\", \"clust\": 23, \"cat_1_index\": 1, \"cat_0_index\": 14, \"rank\": 28, \"cat-1\": \"Gender: Female\", \"ini\": 22, \"cat-0\": \"Category: one\", \"rankvar\": 25}, {\"group\": [19.0, 19.0, 19.0, 19.0, 15.0, 12.0, 7.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2405\", \"clust\": 20, \"cat_1_index\": 16, \"cat_0_index\": 0, \"rank\": 1, \"cat-1\": \"Gender: Male\", \"ini\": 21, \"cat-0\": \"Category: five\", \"rankvar\": 12}, {\"group\": [20.0, 20.0, 20.0, 20.0, 16.0, 12.0, 7.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC78\", \"clust\": 21, \"cat_1_index\": 17, \"cat_0_index\": 1, \"rank\": 25, \"cat-1\": \"Gender: Male\", \"ini\": 20, \"cat-0\": \"Category: five\", \"rankvar\": 27}, {\"group\": [11.0, 11.0, 11.0, 11.0, 9.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1666\", \"clust\": 7, \"cat_1_index\": 2, \"cat_0_index\": 6, \"rank\": 18, \"cat-1\": \"Gender: Female\", \"ini\": 19, \"cat-0\": \"Category: four\", \"rankvar\": 15}, {\"group\": [18.0, 18.0, 18.0, 18.0, 14.0, 11.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H661\", \"clust\": 16, \"cat_1_index\": 18, \"cat_0_index\": 2, \"rank\": 3, \"cat-1\": \"Gender: Male\", \"ini\": 18, \"cat-0\": \"Category: five\", \"rankvar\": 26}, {\"group\": [16.0, 16.0, 16.0, 16.0, 13.0, 11.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H838\", \"clust\": 17, \"cat_1_index\": 19, \"cat_0_index\": 3, \"rank\": 7, \"cat-1\": \"Gender: Male\", \"ini\": 17, \"cat-0\": \"Category: five\", \"rankvar\": 23}, {\"group\": [12.0, 12.0, 12.0, 12.0, 10.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1703\", \"clust\": 14, \"cat_1_index\": 20, \"cat_0_index\": 4, \"rank\": 11, \"cat-1\": \"Gender: Male\", \"ini\": 16, \"cat-0\": \"Category: five\", \"rankvar\": 21}, {\"group\": [21.0, 21.0, 21.0, 21.0, 17.0, 13.0, 7.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CALU-3\", \"clust\": 19, \"cat_1_index\": 21, \"cat_0_index\": 7, \"rank\": 8, \"cat-1\": \"Gender: Male\", \"ini\": 15, \"cat-0\": \"Category: four\", \"rankvar\": 7}, {\"group\": [17.0, 17.0, 17.0, 17.0, 13.0, 11.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2342\", \"clust\": 18, \"cat_1_index\": 3, \"cat_0_index\": 8, \"rank\": 26, \"cat-1\": \"Gender: Female\", \"ini\": 14, \"cat-0\": \"Category: four\", \"rankvar\": 22}, {\"group\": [26.0, 26.0, 26.0, 25.0, 19.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2228\", \"clust\": 26, \"cat_1_index\": 4, \"cat_0_index\": 15, \"rank\": 2, \"cat-1\": \"Gender: Female\", \"ini\": 13, \"cat-0\": \"Category: one\", \"rankvar\": 5}, {\"group\": [13.0, 13.0, 13.0, 13.0, 10.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1299\", \"clust\": 15, \"cat_1_index\": 22, \"cat_0_index\": 20, \"rank\": 12, \"cat-1\": \"Gender: Male\", \"ini\": 12, \"cat-0\": \"Category: three\", \"rankvar\": 1}, {\"group\": [9.0, 9.0, 9.0, 9.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1792\", \"clust\": 10, \"cat_1_index\": 23, \"cat_0_index\": 21, \"rank\": 20, \"cat-1\": \"Gender: Male\", \"ini\": 11, \"cat-0\": \"Category: three\", \"rankvar\": 9}, {\"group\": [10.0, 10.0, 10.0, 10.0, 8.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H460\", \"clust\": 11, \"cat_1_index\": 24, \"cat_0_index\": 22, \"rank\": 5, \"cat-1\": \"Gender: Male\", \"ini\": 10, \"cat-0\": \"Category: three\", \"rankvar\": 11}, {\"group\": [29.0, 29.0, 29.0, 28.0, 22.0, 17.0, 10.0, 5.0, 2.0, 1.0, 1.0], \"name\": \"Cell Line: H2106\", \"clust\": 0, \"cat_1_index\": 25, \"cat_0_index\": 9, \"rank\": 22, \"cat-1\": \"Gender: Male\", \"ini\": 9, \"cat-0\": \"Category: four\", \"rankvar\": 28}, {\"group\": [24.0, 24.0, 24.0, 24.0, 19.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H441\", \"clust\": 27, \"cat_1_index\": 26, \"cat_0_index\": 16, \"rank\": 27, \"cat-1\": \"Gender: Male\", \"ini\": 8, \"cat-0\": \"Category: one\", \"rankvar\": 14}, {\"group\": [7.0, 7.0, 7.0, 7.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1944\", \"clust\": 8, \"cat_1_index\": 5, \"cat_0_index\": 23, \"rank\": 23, \"cat-1\": \"Gender: Female\", \"ini\": 7, \"cat-0\": \"Category: three\", \"rankvar\": 10}, {\"group\": [5.0, 5.0, 5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1437\", \"clust\": 6, \"cat_1_index\": 27, \"cat_0_index\": 10, \"rank\": 16, \"cat-1\": \"Gender: Male\", \"ini\": 6, \"cat-0\": \"Category: four\", \"rankvar\": 17}, {\"group\": [23.0, 23.0, 23.0, 23.0, 18.0, 14.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1734\", \"clust\": 24, \"cat_1_index\": 6, \"cat_0_index\": 17, \"rank\": 19, \"cat-1\": \"Gender: Female\", \"ini\": 5, \"cat-0\": \"Category: one\", \"rankvar\": 18}, {\"group\": [14.0, 14.0, 14.0, 14.0, 11.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: LOU-NH91\", \"clust\": 13, \"cat_1_index\": 7, \"cat_0_index\": 5, \"rank\": 15, \"cat-1\": \"Gender: Female\", \"ini\": 4, \"cat-0\": \"Category: five\", \"rankvar\": 16}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC44\", \"clust\": 3, \"cat_1_index\": 8, \"cat_0_index\": 11, \"rank\": 14, \"cat-1\": \"Gender: Female\", \"ini\": 3, \"cat-0\": \"Category: four\", \"rankvar\": 2}, {\"group\": [8.0, 8.0, 8.0, 8.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: A549\", \"clust\": 9, \"cat_1_index\": 28, \"cat_0_index\": 12, \"rank\": 21, \"cat-1\": \"Gender: Male\", \"ini\": 2, \"cat-0\": \"Category: four\", \"rankvar\": 3}, {\"group\": [25.0, 25.0, 25.0, 24.0, 19.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1781\", \"clust\": 28, \"cat_1_index\": 9, \"cat_0_index\": 18, \"rank\": 13, \"cat-1\": \"Gender: Female\", \"ini\": 1, \"cat-0\": \"Category: one\", \"rankvar\": 13}], \"links\": [{\"source\": 0, \"target\": 0, \"value\": -0.792803571}, {\"source\": 0, \"target\": 1, \"value\": 0.527687127}, {\"source\": 0, \"target\": 2, \"value\": 0.000622536}, {\"source\": 0, \"target\": 3, \"value\": 0.356722594}, {\"source\": 0, \"target\": 4, \"value\": 0.933286088}, {\"source\": 0, \"target\": 5, \"value\": -0.131728538}, {\"source\": 0, \"target\": 6, \"value\": 0.8084519440000001}, {\"source\": 0, \"target\": 7, \"value\": 4.240884801}, {\"source\": 0, \"target\": 8, \"value\": -0.5402313910000001}, {\"source\": 0, \"target\": 9, \"value\": -0.981456952}, {\"source\": 0, \"target\": 10, \"value\": -0.84689892}, {\"source\": 0, \"target\": 11, \"value\": -0.25279592100000003}, {\"source\": 0, \"target\": 12, \"value\": 0.114189581}, {\"source\": 0, \"target\": 13, \"value\": -0.06649884}, {\"source\": 0, \"target\": 14, \"value\": 0.149218809}, {\"source\": 0, \"target\": 15, \"value\": 1.351263924}, {\"source\": 0, \"target\": 16, \"value\": 0.6458672120000001}, {\"source\": 0, \"target\": 17, \"value\": 0.60561098}, {\"source\": 0, \"target\": 18, \"value\": 3.232454573}, {\"source\": 0, \"target\": 19, \"value\": 0.342634572}, {\"source\": 0, \"target\": 20, \"value\": -0.43091232399999996}, {\"source\": 0, \"target\": 21, \"value\": -0.40590567}, {\"source\": 0, \"target\": 22, \"value\": 0.199563989}, {\"source\": 0, \"target\": 23, \"value\": -1.122536294}, {\"source\": 0, \"target\": 24, \"value\": 2.2103345709999997}, {\"source\": 0, \"target\": 25, \"value\": 0.405126315}, {\"source\": 0, \"target\": 26, \"value\": -0.08976315900000001}, {\"source\": 0, \"target\": 27, \"value\": 0.405126315}, {\"source\": 0, \"target\": 28, \"value\": 0.340012773}, {\"source\": 1, \"target\": 0, \"value\": 0.17762054}, {\"source\": 1, \"target\": 1, \"value\": -0.016061488999999998}, {\"source\": 1, \"target\": 2, \"value\": 5.422113832999999}, {\"source\": 1, \"target\": 3, \"value\": 1.307039675}, {\"source\": 1, \"target\": 4, \"value\": 0.355814985}, {\"source\": 1, \"target\": 5, \"value\": 0.27690499399999996}, {\"source\": 1, \"target\": 6, \"value\": 0.483153915}, {\"source\": 1, \"target\": 7, \"value\": -0.24049582100000003}, {\"source\": 1, \"target\": 8, \"value\": 1.336445996}, {\"source\": 1, \"target\": 9, \"value\": 1.149618502}, {\"source\": 1, \"target\": 10, \"value\": 0.361412978}, {\"source\": 1, \"target\": 11, \"value\": -0.380518938}, {\"source\": 1, \"target\": 12, \"value\": -0.21354100399999998}, {\"source\": 1, \"target\": 13, \"value\": -0.471938639}, {\"source\": 1, \"target\": 14, \"value\": -0.620858723}, {\"source\": 1, \"target\": 15, \"value\": -0.163637058}, {\"source\": 1, \"target\": 16, \"value\": -0.487256142}, {\"source\": 1, \"target\": 17, \"value\": -0.029569687999999997}, {\"source\": 1, \"target\": 18, \"value\": -0.23205777800000002}, {\"source\": 1, \"target\": 19, \"value\": -0.6690369389999999}, {\"source\": 1, \"target\": 20, \"value\": -0.44924169799999997}, {\"source\": 1, \"target\": 21, \"value\": 1.1589304059999999}, {\"source\": 1, \"target\": 22, \"value\": 0.5119620220000001}, {\"source\": 1, \"target\": 23, \"value\": 2.370834155}, {\"source\": 1, \"target\": 24, \"value\": 0.262893885}, {\"source\": 1, \"target\": 25, \"value\": -0.513128895}, {\"source\": 1, \"target\": 26, \"value\": -0.501210068}, {\"source\": 1, \"target\": 27, \"value\": 0.43927756100000004}, {\"source\": 1, \"target\": 28, \"value\": -0.342460508}, {\"source\": 2, \"target\": 0, \"value\": -0.6978761509999999}, {\"source\": 2, \"target\": 1, \"value\": -0.555610265}, {\"source\": 2, \"target\": 2, \"value\": -0.36049755899999997}, {\"source\": 2, \"target\": 3, \"value\": -0.460236731}, {\"source\": 2, \"target\": 4, \"value\": -0.6807606970000001}, {\"source\": 2, \"target\": 5, \"value\": -0.169463518}, {\"source\": 2, \"target\": 6, \"value\": 1.715708875}, {\"source\": 2, \"target\": 7, \"value\": -0.5171048229999999}, {\"source\": 2, \"target\": 8, \"value\": 0.18498770899999997}, {\"source\": 2, \"target\": 9, \"value\": 0.8106597}, {\"source\": 2, \"target\": 10, \"value\": -0.440334448}, {\"source\": 2, \"target\": 11, \"value\": -0.621052026}, {\"source\": 2, \"target\": 12, \"value\": -0.08680335800000001}, {\"source\": 2, \"target\": 13, \"value\": -0.753966225}, {\"source\": 2, \"target\": 14, \"value\": -0.401972037}, {\"source\": 2, \"target\": 15, \"value\": -0.562086752}, {\"source\": 2, \"target\": 16, \"value\": -0.560644597}, {\"source\": 2, \"target\": 17, \"value\": 0.542301381}, {\"source\": 2, \"target\": 18, \"value\": -0.382639145}, {\"source\": 2, \"target\": 19, \"value\": -0.37785352299999997}, {\"source\": 2, \"target\": 20, \"value\": -0.713472923}, {\"source\": 2, \"target\": 21, \"value\": -0.37760936799999995}, {\"source\": 2, \"target\": 22, \"value\": 4.308904581}, {\"source\": 2, \"target\": 23, \"value\": -0.638131949}, {\"source\": 2, \"target\": 24, \"value\": -0.556114063}, {\"source\": 2, \"target\": 25, \"value\": -0.318145763}, {\"source\": 2, \"target\": 26, \"value\": -0.489582714}, {\"source\": 2, \"target\": 27, \"value\": 1.6773765269999998}, {\"source\": 2, \"target\": 28, \"value\": -0.6827904640000001}, {\"source\": 3, \"target\": 0, \"value\": 0.8505465179999999}, {\"source\": 3, \"target\": 1, \"value\": -0.263279907}, {\"source\": 3, \"target\": 2, \"value\": 0.179253031}, {\"source\": 3, \"target\": 3, \"value\": 0.39864672100000004}, {\"source\": 3, \"target\": 4, \"value\": 1.537663802}, {\"source\": 3, \"target\": 5, \"value\": 0.505291411}, {\"source\": 3, \"target\": 6, \"value\": 0.902366491}, {\"source\": 3, \"target\": 7, \"value\": -0.16628803}, {\"source\": 3, \"target\": 8, \"value\": 0.6307305639999999}, {\"source\": 3, \"target\": 9, \"value\": 0.39944828299999996}, {\"source\": 3, \"target\": 10, \"value\": 0.8471713670000001}, {\"source\": 3, \"target\": 11, \"value\": -0.442268094}, {\"source\": 3, \"target\": 12, \"value\": 0.44368676}, {\"source\": 3, \"target\": 13, \"value\": 1.552969029}, {\"source\": 3, \"target\": 14, \"value\": 1.110283483}, {\"source\": 3, \"target\": 15, \"value\": -0.326698072}, {\"source\": 3, \"target\": 16, \"value\": -0.40526737399999996}, {\"source\": 3, \"target\": 17, \"value\": 0.663747183}, {\"source\": 3, \"target\": 18, \"value\": 0.42447003299999997}, {\"source\": 3, \"target\": 19, \"value\": 0.283221899}, {\"source\": 3, \"target\": 20, \"value\": -4.243973921}, {\"source\": 3, \"target\": 21, \"value\": 0.718315578}, {\"source\": 3, \"target\": 22, \"value\": 1.747343933}, {\"source\": 3, \"target\": 23, \"value\": -1.020927175}, {\"source\": 3, \"target\": 24, \"value\": 0.305028514}, {\"source\": 3, \"target\": 25, \"value\": 1.47174613}, {\"source\": 3, \"target\": 26, \"value\": 0.048902278}, {\"source\": 3, \"target\": 27, \"value\": -0.255283556}, {\"source\": 3, \"target\": 28, \"value\": 0.5482245729999999}, {\"source\": 4, \"target\": 0, \"value\": 1.412416216}, {\"source\": 4, \"target\": 1, \"value\": 0.018987506}, {\"source\": 4, \"target\": 2, \"value\": 0.902251622}, {\"source\": 4, \"target\": 3, \"value\": -0.17813747}, {\"source\": 4, \"target\": 4, \"value\": 0.781819022}, {\"source\": 4, \"target\": 5, \"value\": 0.211815895}, {\"source\": 4, \"target\": 6, \"value\": -0.023427175}, {\"source\": 4, \"target\": 7, \"value\": 3.557295952}, {\"source\": 4, \"target\": 8, \"value\": 1.1737835559999998}, {\"source\": 4, \"target\": 9, \"value\": -0.012362163999999998}, {\"source\": 4, \"target\": 10, \"value\": 0.769782484}, {\"source\": 4, \"target\": 11, \"value\": -0.681031743}, {\"source\": 4, \"target\": 12, \"value\": -1.0473753890000002}, {\"source\": 4, \"target\": 13, \"value\": 0.652065499}, {\"source\": 4, \"target\": 14, \"value\": 0.17231669100000002}, {\"source\": 4, \"target\": 15, \"value\": 2.072433469}, {\"source\": 4, \"target\": 16, \"value\": 1.135709377}, {\"source\": 4, \"target\": 17, \"value\": -0.169977181}, {\"source\": 4, \"target\": 18, \"value\": 0.881067136}, {\"source\": 4, \"target\": 19, \"value\": -0.486159025}, {\"source\": 4, \"target\": 20, \"value\": -1.451838026}, {\"source\": 4, \"target\": 21, \"value\": 0.371237737}, {\"source\": 4, \"target\": 22, \"value\": -0.581665325}, {\"source\": 4, \"target\": 23, \"value\": -0.126356157}, {\"source\": 4, \"target\": 24, \"value\": 0.24100472399999998}, {\"source\": 4, \"target\": 25, \"value\": 1.06526919}, {\"source\": 4, \"target\": 26, \"value\": 0.974531796}, {\"source\": 4, \"target\": 27, \"value\": 0.668645091}, {\"source\": 4, \"target\": 28, \"value\": 0.05696489}, {\"source\": 5, \"target\": 0, \"value\": -0.388039665}, {\"source\": 5, \"target\": 1, \"value\": -0.5926266139999999}, {\"source\": 5, \"target\": 2, \"value\": -0.24413651}, {\"source\": 5, \"target\": 3, \"value\": 0.740364734}, {\"source\": 5, \"target\": 4, \"value\": 3.023348415}, {\"source\": 5, \"target\": 5, \"value\": -0.433985412}, {\"source\": 5, \"target\": 6, \"value\": -0.6301244570000001}, {\"source\": 5, \"target\": 7, \"value\": 1.156531983}, {\"source\": 5, \"target\": 8, \"value\": 0.433696213}, {\"source\": 5, \"target\": 9, \"value\": 3.84950782}, {\"source\": 5, \"target\": 10, \"value\": -0.22542574199999998}, {\"source\": 5, \"target\": 11, \"value\": -0.656106808}, {\"source\": 5, \"target\": 12, \"value\": -0.311953357}, {\"source\": 5, \"target\": 13, \"value\": -0.397450226}, {\"source\": 5, \"target\": 14, \"value\": 1.0440255379999999}, {\"source\": 5, \"target\": 15, \"value\": -0.247816912}, {\"source\": 5, \"target\": 16, \"value\": 3.640524345}, {\"source\": 5, \"target\": 17, \"value\": -0.59251039}, {\"source\": 5, \"target\": 18, \"value\": 0.514666245}, {\"source\": 5, \"target\": 19, \"value\": -0.45396994}, {\"source\": 5, \"target\": 20, \"value\": 1.649737631}, {\"source\": 5, \"target\": 21, \"value\": 3.366020313}, {\"source\": 5, \"target\": 22, \"value\": -0.430502237}, {\"source\": 5, \"target\": 23, \"value\": -0.295312303}, {\"source\": 5, \"target\": 24, \"value\": 2.824551497}, {\"source\": 5, \"target\": 25, \"value\": -0.014275115}, {\"source\": 5, \"target\": 26, \"value\": -0.410477794}, {\"source\": 5, \"target\": 27, \"value\": -0.22971778399999998}, {\"source\": 5, \"target\": 28, \"value\": 3.7098286160000002}, {\"source\": 6, \"target\": 0, \"value\": 1.408537135}, {\"source\": 6, \"target\": 1, \"value\": -0.017369325}, {\"source\": 6, \"target\": 2, \"value\": -0.36712796200000003}, {\"source\": 6, \"target\": 3, \"value\": 0.313253548}, {\"source\": 6, \"target\": 4, \"value\": -0.16288686}, {\"source\": 6, \"target\": 5, \"value\": 0.027411933}, {\"source\": 6, \"target\": 6, \"value\": -0.281351556}, {\"source\": 6, \"target\": 7, \"value\": 5.8138464889999995}, {\"source\": 6, \"target\": 8, \"value\": -0.16170658400000001}, {\"source\": 6, \"target\": 9, \"value\": 0.472386752}, {\"source\": 6, \"target\": 10, \"value\": -0.33979584}, {\"source\": 6, \"target\": 11, \"value\": 0.669956625}, {\"source\": 6, \"target\": 12, \"value\": -0.2596391}, {\"source\": 6, \"target\": 13, \"value\": -0.386601295}, {\"source\": 6, \"target\": 14, \"value\": -0.293654593}, {\"source\": 6, \"target\": 15, \"value\": 4.390499721}, {\"source\": 6, \"target\": 16, \"value\": -0.420942214}, {\"source\": 6, \"target\": 17, \"value\": -0.402955154}, {\"source\": 6, \"target\": 18, \"value\": -0.346809494}, {\"source\": 6, \"target\": 19, \"value\": -0.222725132}, {\"source\": 6, \"target\": 20, \"value\": 0.36849943}, {\"source\": 6, \"target\": 21, \"value\": 1.49303248}, {\"source\": 6, \"target\": 22, \"value\": -0.34174718}, {\"source\": 6, \"target\": 23, \"value\": -0.343420451}, {\"source\": 6, \"target\": 24, \"value\": 5.2848086069999995}, {\"source\": 6, \"target\": 25, \"value\": -0.358156896}, {\"source\": 6, \"target\": 26, \"value\": -0.222931558}, {\"source\": 6, \"target\": 27, \"value\": -0.40139116700000005}, {\"source\": 6, \"target\": 28, \"value\": -0.412478715}, {\"source\": 7, \"target\": 0, \"value\": 0.9066424059999999}, {\"source\": 7, \"target\": 1, \"value\": -0.6847714229999999}, {\"source\": 7, \"target\": 2, \"value\": 0.015261253999999998}, {\"source\": 7, \"target\": 3, \"value\": 0.16056792}, {\"source\": 7, \"target\": 4, \"value\": 0.36500211299999996}, {\"source\": 7, \"target\": 5, \"value\": -0.564392699}, {\"source\": 7, \"target\": 6, \"value\": 0.16907282699999998}, {\"source\": 7, \"target\": 7, \"value\": -0.035192496000000004}, {\"source\": 7, \"target\": 8, \"value\": -0.031210405}, {\"source\": 7, \"target\": 9, \"value\": 0.447742443}, {\"source\": 7, \"target\": 10, \"value\": 0.544075103}, {\"source\": 7, \"target\": 11, \"value\": 0.280008477}, {\"source\": 7, \"target\": 12, \"value\": -0.066278222}, {\"source\": 7, \"target\": 13, \"value\": -0.225814318}, {\"source\": 7, \"target\": 14, \"value\": 4.103496507}, {\"source\": 7, \"target\": 15, \"value\": 1.2196915659999998}, {\"source\": 7, \"target\": 16, \"value\": -0.24502200100000002}, {\"source\": 7, \"target\": 17, \"value\": -0.681552658}, {\"source\": 7, \"target\": 18, \"value\": -0.304817333}, {\"source\": 7, \"target\": 19, \"value\": -0.511212295}, {\"source\": 7, \"target\": 20, \"value\": -1.100056017}, {\"source\": 7, \"target\": 21, \"value\": 1.335983295}, {\"source\": 7, \"target\": 22, \"value\": -0.500561544}, {\"source\": 7, \"target\": 23, \"value\": 0.721259819}, {\"source\": 7, \"target\": 24, \"value\": 0.284747072}, {\"source\": 7, \"target\": 25, \"value\": 0.232812724}, {\"source\": 7, \"target\": 26, \"value\": -0.796930101}, {\"source\": 7, \"target\": 27, \"value\": -0.156381455}, {\"source\": 7, \"target\": 28, \"value\": 1.503853721}, {\"source\": 8, \"target\": 0, \"value\": -0.45290705200000003}, {\"source\": 8, \"target\": 1, \"value\": -0.392790536}, {\"source\": 8, \"target\": 2, \"value\": -0.374173515}, {\"source\": 8, \"target\": 3, \"value\": -0.527418493}, {\"source\": 8, \"target\": 4, \"value\": -0.32010333399999996}, {\"source\": 8, \"target\": 5, \"value\": -0.560657219}, {\"source\": 8, \"target\": 6, \"value\": -0.31284750899999997}, {\"source\": 8, \"target\": 7, \"value\": -0.463903623}, {\"source\": 8, \"target\": 8, \"value\": -0.304652329}, {\"source\": 8, \"target\": 9, \"value\": -0.30897114}, {\"source\": 8, \"target\": 10, \"value\": -0.331935876}, {\"source\": 8, \"target\": 11, \"value\": 4.098930821000001}, {\"source\": 8, \"target\": 12, \"value\": -0.413942149}, {\"source\": 8, \"target\": 13, \"value\": -0.5014189170000001}, {\"source\": 8, \"target\": 14, \"value\": 1.256164876}, {\"source\": 8, \"target\": 15, \"value\": -0.12356019}, {\"source\": 8, \"target\": 16, \"value\": -0.425577927}, {\"source\": 8, \"target\": 17, \"value\": -0.36998588}, {\"source\": 8, \"target\": 18, \"value\": -0.054684881}, {\"source\": 8, \"target\": 19, \"value\": -0.484730631}, {\"source\": 8, \"target\": 20, \"value\": -0.419739472}, {\"source\": 8, \"target\": 21, \"value\": -0.432412432}, {\"source\": 8, \"target\": 22, \"value\": 0.143245619}, {\"source\": 8, \"target\": 23, \"value\": -0.266932489}, {\"source\": 8, \"target\": 24, \"value\": -0.34086030700000003}, {\"source\": 8, \"target\": 25, \"value\": -0.231847291}, {\"source\": 8, \"target\": 26, \"value\": -0.448292539}, {\"source\": 8, \"target\": 27, \"value\": -0.42868169}, {\"source\": 8, \"target\": 28, \"value\": -0.615936889}, {\"source\": 9, \"target\": 0, \"value\": 3.579051735}, {\"source\": 9, \"target\": 1, \"value\": 0.92330807}, {\"source\": 9, \"target\": 2, \"value\": -0.651094367}, {\"source\": 9, \"target\": 3, \"value\": 0.952743833}, {\"source\": 9, \"target\": 4, \"value\": -0.212733397}, {\"source\": 9, \"target\": 5, \"value\": 0.006074527}, {\"source\": 9, \"target\": 6, \"value\": -0.121038246}, {\"source\": 9, \"target\": 7, \"value\": 0.083769063}, {\"source\": 9, \"target\": 8, \"value\": -0.7226782140000001}, {\"source\": 9, \"target\": 9, \"value\": 1.669410989}, {\"source\": 9, \"target\": 10, \"value\": -0.247600883}, {\"source\": 9, \"target\": 11, \"value\": -0.284623649}, {\"source\": 9, \"target\": 12, \"value\": -0.687716717}, {\"source\": 9, \"target\": 13, \"value\": -0.320883885}, {\"source\": 9, \"target\": 14, \"value\": -0.93370415}, {\"source\": 9, \"target\": 15, \"value\": -0.309230053}, {\"source\": 9, \"target\": 16, \"value\": 0.544870152}, {\"source\": 9, \"target\": 17, \"value\": 0.824029397}, {\"source\": 9, \"target\": 18, \"value\": -0.087291924}, {\"source\": 9, \"target\": 19, \"value\": -0.973905867}, {\"source\": 9, \"target\": 20, \"value\": -0.308282983}, {\"source\": 9, \"target\": 21, \"value\": 0.8221457040000001}, {\"source\": 9, \"target\": 22, \"value\": -0.72904308}, {\"source\": 9, \"target\": 23, \"value\": -0.08886573099999999}, {\"source\": 9, \"target\": 24, \"value\": -0.29848499}, {\"source\": 9, \"target\": 25, \"value\": -0.451367112}, {\"source\": 9, \"target\": 26, \"value\": -1.134040733}, {\"source\": 9, \"target\": 27, \"value\": 0.379230443}, {\"source\": 9, \"target\": 28, \"value\": 1.491612577}, {\"source\": 10, \"target\": 0, \"value\": -0.582761335}, {\"source\": 10, \"target\": 1, \"value\": -0.706379425}, {\"source\": 10, \"target\": 2, \"value\": 0.36431330100000003}, {\"source\": 10, \"target\": 3, \"value\": -0.483011414}, {\"source\": 10, \"target\": 4, \"value\": -0.71307719}, {\"source\": 10, \"target\": 5, \"value\": -0.048548064}, {\"source\": 10, \"target\": 6, \"value\": -0.527944549}, {\"source\": 10, \"target\": 7, \"value\": 0.337501769}, {\"source\": 10, \"target\": 8, \"value\": -0.656781635}, {\"source\": 10, \"target\": 9, \"value\": -0.323318624}, {\"source\": 10, \"target\": 10, \"value\": -0.432950623}, {\"source\": 10, \"target\": 11, \"value\": -0.414799098}, {\"source\": 10, \"target\": 12, \"value\": -1.02570516}, {\"source\": 10, \"target\": 13, \"value\": -0.861415433}, {\"source\": 10, \"target\": 14, \"value\": 0.11344713099999999}, {\"source\": 10, \"target\": 15, \"value\": -0.110117735}, {\"source\": 10, \"target\": 16, \"value\": -0.493510825}, {\"source\": 10, \"target\": 17, \"value\": 0.148841502}, {\"source\": 10, \"target\": 18, \"value\": -0.341096914}, {\"source\": 10, \"target\": 19, \"value\": -0.373760525}, {\"source\": 10, \"target\": 20, \"value\": 5.16013802}, {\"source\": 10, \"target\": 21, \"value\": -0.20490693199999999}, {\"source\": 10, \"target\": 22, \"value\": -0.46557486299999995}, {\"source\": 10, \"target\": 23, \"value\": -0.17040549100000002}, {\"source\": 10, \"target\": 24, \"value\": 0.046286803}, {\"source\": 10, \"target\": 25, \"value\": -0.100887639}, {\"source\": 10, \"target\": 26, \"value\": 0.936150906}, {\"source\": 10, \"target\": 27, \"value\": -0.15980844}, {\"source\": 10, \"target\": 28, \"value\": -0.846857677}, {\"source\": 11, \"target\": 0, \"value\": -0.58688791}, {\"source\": 11, \"target\": 1, \"value\": -0.186685902}, {\"source\": 11, \"target\": 2, \"value\": -3.51852921}, {\"source\": 11, \"target\": 3, \"value\": 0.25062883399999997}, {\"source\": 11, \"target\": 4, \"value\": -0.477773537}, {\"source\": 11, \"target\": 5, \"value\": -0.62381107}, {\"source\": 11, \"target\": 6, \"value\": -0.92202388}, {\"source\": 11, \"target\": 7, \"value\": -0.55383453}, {\"source\": 11, \"target\": 8, \"value\": 0.018847867}, {\"source\": 11, \"target\": 9, \"value\": 1.2676445570000001}, {\"source\": 11, \"target\": 10, \"value\": 0.243732055}, {\"source\": 11, \"target\": 11, \"value\": -0.233528273}, {\"source\": 11, \"target\": 12, \"value\": 0.07072635599999999}, {\"source\": 11, \"target\": 13, \"value\": -0.256360198}, {\"source\": 11, \"target\": 14, \"value\": 1.7410016069999998}, {\"source\": 11, \"target\": 15, \"value\": 0.16824737899999997}, {\"source\": 11, \"target\": 16, \"value\": -0.24597429899999998}, {\"source\": 11, \"target\": 17, \"value\": 0.014972758999999999}, {\"source\": 11, \"target\": 18, \"value\": -0.537623787}, {\"source\": 11, \"target\": 19, \"value\": 0.259364957}, {\"source\": 11, \"target\": 20, \"value\": 1.303190492}, {\"source\": 11, \"target\": 21, \"value\": 1.0432080240000001}, {\"source\": 11, \"target\": 22, \"value\": -1.0210949459999998}, {\"source\": 11, \"target\": 23, \"value\": -0.09744421199999999}, {\"source\": 11, \"target\": 24, \"value\": -0.6792905929999999}, {\"source\": 11, \"target\": 25, \"value\": 0.132592576}, {\"source\": 11, \"target\": 26, \"value\": -0.440607517}, {\"source\": 11, \"target\": 27, \"value\": -0.21005684}, {\"source\": 11, \"target\": 28, \"value\": 0.651311995}, {\"source\": 12, \"target\": 0, \"value\": -0.693639785}, {\"source\": 12, \"target\": 1, \"value\": -0.357559299}, {\"source\": 12, \"target\": 2, \"value\": -0.903861262}, {\"source\": 12, \"target\": 3, \"value\": -0.8104502790000001}, {\"source\": 12, \"target\": 4, \"value\": 0.293775461}, {\"source\": 12, \"target\": 5, \"value\": 1.012469252}, {\"source\": 12, \"target\": 6, \"value\": -0.10446230000000001}, {\"source\": 12, \"target\": 7, \"value\": -0.573757161}, {\"source\": 12, \"target\": 8, \"value\": -0.629467998}, {\"source\": 12, \"target\": 9, \"value\": -1.1311389379999999}, {\"source\": 12, \"target\": 10, \"value\": -0.401984075}, {\"source\": 12, \"target\": 11, \"value\": -0.672554564}, {\"source\": 12, \"target\": 12, \"value\": -1.1827919740000001}, {\"source\": 12, \"target\": 13, \"value\": -1.00138041}, {\"source\": 12, \"target\": 14, \"value\": -1.020216093}, {\"source\": 12, \"target\": 15, \"value\": -0.43779921299999996}, {\"source\": 12, \"target\": 16, \"value\": -0.10378360199999999}, {\"source\": 12, \"target\": 17, \"value\": -0.38756592799999995}, {\"source\": 12, \"target\": 18, \"value\": 0.38647177200000005}, {\"source\": 12, \"target\": 19, \"value\": -0.524742175}, {\"source\": 12, \"target\": 20, \"value\": 3.6270702480000003}, {\"source\": 12, \"target\": 21, \"value\": -0.846550806}, {\"source\": 12, \"target\": 22, \"value\": -0.473736661}, {\"source\": 12, \"target\": 23, \"value\": 0.443388919}, {\"source\": 12, \"target\": 24, \"value\": 0.7661352570000001}, {\"source\": 12, \"target\": 25, \"value\": 0.193683015}, {\"source\": 12, \"target\": 26, \"value\": -0.614757268}, {\"source\": 12, \"target\": 27, \"value\": -0.382906171}, {\"source\": 12, \"target\": 28, \"value\": -0.8644104109999999}, {\"source\": 13, \"target\": 0, \"value\": 0.327203594}, {\"source\": 13, \"target\": 1, \"value\": 0.857319301}, {\"source\": 13, \"target\": 2, \"value\": -1.3973565959999998}, {\"source\": 13, \"target\": 3, \"value\": -0.226683585}, {\"source\": 13, \"target\": 4, \"value\": -0.986051455}, {\"source\": 13, \"target\": 5, \"value\": 0.438343505}, {\"source\": 13, \"target\": 6, \"value\": 0.095527129}, {\"source\": 13, \"target\": 7, \"value\": 5.598772307999999}, {\"source\": 13, \"target\": 8, \"value\": 0.5350257970000001}, {\"source\": 13, \"target\": 9, \"value\": -0.057479225}, {\"source\": 13, \"target\": 10, \"value\": -0.089086932}, {\"source\": 13, \"target\": 11, \"value\": -0.47329101100000004}, {\"source\": 13, \"target\": 12, \"value\": 2.070252907}, {\"source\": 13, \"target\": 13, \"value\": 0.201409888}, {\"source\": 13, \"target\": 14, \"value\": 1.1347281329999999}, {\"source\": 13, \"target\": 15, \"value\": 0.095734104}, {\"source\": 13, \"target\": 16, \"value\": 0.22916067}, {\"source\": 13, \"target\": 17, \"value\": 0.566649702}, {\"source\": 13, \"target\": 18, \"value\": 1.011889663}, {\"source\": 13, \"target\": 19, \"value\": 0.9023425559999999}, {\"source\": 13, \"target\": 20, \"value\": 0.7355103040000001}, {\"source\": 13, \"target\": 21, \"value\": -0.493538517}, {\"source\": 13, \"target\": 22, \"value\": 3.1769186019999998}, {\"source\": 13, \"target\": 23, \"value\": 0.49004573700000004}, {\"source\": 13, \"target\": 24, \"value\": -0.693495689}, {\"source\": 13, \"target\": 25, \"value\": -0.18370487800000002}, {\"source\": 13, \"target\": 26, \"value\": -0.182356844}, {\"source\": 13, \"target\": 27, \"value\": 0.7447287690000001}, {\"source\": 13, \"target\": 28, \"value\": -0.31106439199999997}, {\"source\": 14, \"target\": 0, \"value\": 0.331108191}, {\"source\": 14, \"target\": 1, \"value\": -0.46797839700000005}, {\"source\": 14, \"target\": 2, \"value\": 0.6811123290000001}, {\"source\": 14, \"target\": 3, \"value\": -1.195914121}, {\"source\": 14, \"target\": 4, \"value\": -0.538461957}, {\"source\": 14, \"target\": 5, \"value\": 3.616542204}, {\"source\": 14, \"target\": 6, \"value\": 0.094919881}, {\"source\": 14, \"target\": 7, \"value\": 0.527357553}, {\"source\": 14, \"target\": 8, \"value\": -0.16047831199999998}, {\"source\": 14, \"target\": 9, \"value\": -0.940444939}, {\"source\": 14, \"target\": 10, \"value\": -1.025689676}, {\"source\": 14, \"target\": 11, \"value\": 0.053722044000000004}, {\"source\": 14, \"target\": 12, \"value\": 0.081275611}, {\"source\": 14, \"target\": 13, \"value\": -0.616337936}, {\"source\": 14, \"target\": 14, \"value\": -0.48042057}, {\"source\": 14, \"target\": 15, \"value\": 0.6209033820000001}, {\"source\": 14, \"target\": 16, \"value\": -0.7237930640000001}, {\"source\": 14, \"target\": 17, \"value\": -0.759642991}, {\"source\": 14, \"target\": 18, \"value\": -0.7449007440000001}, {\"source\": 14, \"target\": 19, \"value\": -0.43363819}, {\"source\": 14, \"target\": 20, \"value\": -0.8049298490000001}, {\"source\": 14, \"target\": 21, \"value\": 0.429022269}, {\"source\": 14, \"target\": 22, \"value\": 0.765012989}, {\"source\": 14, \"target\": 23, \"value\": 0.400356525}, {\"source\": 14, \"target\": 24, \"value\": 0.20774184899999998}, {\"source\": 14, \"target\": 25, \"value\": 1.4743730080000002}, {\"source\": 14, \"target\": 26, \"value\": 0.888734282}, {\"source\": 14, \"target\": 27, \"value\": 0.38771558100000003}, {\"source\": 14, \"target\": 28, \"value\": -0.623678298}, {\"source\": 15, \"target\": 0, \"value\": 0.14118383699999998}, {\"source\": 15, \"target\": 1, \"value\": 0.788608352}, {\"source\": 15, \"target\": 2, \"value\": 0.51421388}, {\"source\": 15, \"target\": 3, \"value\": 0.528255597}, {\"source\": 15, \"target\": 4, \"value\": 0.906234597}, {\"source\": 15, \"target\": 5, \"value\": 0.050158065}, {\"source\": 15, \"target\": 6, \"value\": -0.8433413820000001}, {\"source\": 15, \"target\": 7, \"value\": 1.44384296}, {\"source\": 15, \"target\": 8, \"value\": -0.253699343}, {\"source\": 15, \"target\": 9, \"value\": 0.562537497}, {\"source\": 15, \"target\": 10, \"value\": -0.505923659}, {\"source\": 15, \"target\": 11, \"value\": -6.621630156}, {\"source\": 15, \"target\": 12, \"value\": -1.253907087}, {\"source\": 15, \"target\": 13, \"value\": 0.947883556}, {\"source\": 15, \"target\": 14, \"value\": 0.394657662}, {\"source\": 15, \"target\": 15, \"value\": 0.613122698}, {\"source\": 15, \"target\": 16, \"value\": -0.223205762}, {\"source\": 15, \"target\": 17, \"value\": 0.9053737359999999}, {\"source\": 15, \"target\": 18, \"value\": 0.679301554}, {\"source\": 15, \"target\": 19, \"value\": 0.8597892220000001}, {\"source\": 15, \"target\": 20, \"value\": -0.022354553}, {\"source\": 15, \"target\": 21, \"value\": 1.0467260520000001}, {\"source\": 15, \"target\": 22, \"value\": 0.194471}, {\"source\": 15, \"target\": 23, \"value\": 0.35991283399999996}, {\"source\": 15, \"target\": 24, \"value\": -0.8063482340000001}, {\"source\": 15, \"target\": 25, \"value\": 1.5866198759999999}, {\"source\": 15, \"target\": 26, \"value\": 0.31198582399999997}, {\"source\": 15, \"target\": 27, \"value\": 0.544470027}, {\"source\": 15, \"target\": 28, \"value\": 1.479598537}, {\"source\": 16, \"target\": 0, \"value\": -0.5243099489999999}, {\"source\": 16, \"target\": 1, \"value\": -0.285994749}, {\"source\": 16, \"target\": 2, \"value\": -0.484871681}, {\"source\": 16, \"target\": 3, \"value\": 0.176655189}, {\"source\": 16, \"target\": 4, \"value\": -0.139711627}, {\"source\": 16, \"target\": 5, \"value\": -0.35297839700000005}, {\"source\": 16, \"target\": 6, \"value\": -0.19252985399999997}, {\"source\": 16, \"target\": 7, \"value\": -0.601257973}, {\"source\": 16, \"target\": 8, \"value\": -0.42732342700000003}, {\"source\": 16, \"target\": 9, \"value\": 0.459403791}, {\"source\": 16, \"target\": 10, \"value\": -0.38300100000000004}, {\"source\": 16, \"target\": 11, \"value\": -0.571316753}, {\"source\": 16, \"target\": 12, \"value\": -0.387982572}, {\"source\": 16, \"target\": 13, \"value\": -0.35394511799999995}, {\"source\": 16, \"target\": 14, \"value\": -0.24031472}, {\"source\": 16, \"target\": 15, \"value\": -0.305685522}, {\"source\": 16, \"target\": 16, \"value\": 0.456864915}, {\"source\": 16, \"target\": 17, \"value\": -0.134886653}, {\"source\": 16, \"target\": 18, \"value\": 2.136583182}, {\"source\": 16, \"target\": 19, \"value\": -0.463127859}, {\"source\": 16, \"target\": 20, \"value\": -0.6004083929999999}, {\"source\": 16, \"target\": 21, \"value\": 4.430955918}, {\"source\": 16, \"target\": 22, \"value\": -0.374772774}, {\"source\": 16, \"target\": 23, \"value\": -0.206853106}, {\"source\": 16, \"target\": 24, \"value\": 1.756104521}, {\"source\": 16, \"target\": 25, \"value\": 0.8328872890000001}, {\"source\": 16, \"target\": 26, \"value\": -0.314392176}, {\"source\": 16, \"target\": 27, \"value\": -0.31373742}, {\"source\": 16, \"target\": 28, \"value\": 0.49342028299999996}, {\"source\": 17, \"target\": 0, \"value\": 0.509592174}, {\"source\": 17, \"target\": 1, \"value\": 0.464774315}, {\"source\": 17, \"target\": 2, \"value\": 0.275495704}, {\"source\": 17, \"target\": 3, \"value\": -0.01882253}, {\"source\": 17, \"target\": 4, \"value\": -0.005537792}, {\"source\": 17, \"target\": 5, \"value\": -0.457197866}, {\"source\": 17, \"target\": 6, \"value\": 3.408253083}, {\"source\": 17, \"target\": 7, \"value\": -0.43040764299999995}, {\"source\": 17, \"target\": 8, \"value\": -0.754186082}, {\"source\": 17, \"target\": 9, \"value\": -0.836530855}, {\"source\": 17, \"target\": 10, \"value\": -0.277053957}, {\"source\": 17, \"target\": 11, \"value\": -0.54257843}, {\"source\": 17, \"target\": 12, \"value\": 0.8504395770000001}, {\"source\": 17, \"target\": 13, \"value\": -0.298981449}, {\"source\": 17, \"target\": 14, \"value\": -0.16939480899999998}, {\"source\": 17, \"target\": 15, \"value\": 0.254783369}, {\"source\": 17, \"target\": 16, \"value\": -0.427821755}, {\"source\": 17, \"target\": 17, \"value\": -0.1389465}, {\"source\": 17, \"target\": 18, \"value\": 0.618069135}, {\"source\": 17, \"target\": 19, \"value\": 1.926349897}, {\"source\": 17, \"target\": 20, \"value\": -0.305399918}, {\"source\": 17, \"target\": 21, \"value\": -0.535939215}, {\"source\": 17, \"target\": 22, \"value\": -0.07866166599999999}, {\"source\": 17, \"target\": 23, \"value\": 6.267854465}, {\"source\": 17, \"target\": 24, \"value\": -0.57293844}, {\"source\": 17, \"target\": 25, \"value\": -0.302168609}, {\"source\": 17, \"target\": 26, \"value\": 0.72307512}, {\"source\": 17, \"target\": 27, \"value\": 0.611863003}, {\"source\": 17, \"target\": 28, \"value\": -0.2145995}, {\"source\": 18, \"target\": 0, \"value\": -0.554447111}, {\"source\": 18, \"target\": 1, \"value\": -0.145753485}, {\"source\": 18, \"target\": 2, \"value\": 0.019807701}, {\"source\": 18, \"target\": 3, \"value\": -0.634915727}, {\"source\": 18, \"target\": 4, \"value\": -0.49376688700000004}, {\"source\": 18, \"target\": 5, \"value\": -0.587644968}, {\"source\": 18, \"target\": 6, \"value\": -0.22371499600000003}, {\"source\": 18, \"target\": 7, \"value\": 1.3850494759999998}, {\"source\": 18, \"target\": 8, \"value\": -0.346100755}, {\"source\": 18, \"target\": 9, \"value\": 0.25453660899999997}, {\"source\": 18, \"target\": 10, \"value\": 0.057887318}, {\"source\": 18, \"target\": 11, \"value\": -0.593081366}, {\"source\": 18, \"target\": 12, \"value\": -0.47065185}, {\"source\": 18, \"target\": 13, \"value\": -0.753944095}, {\"source\": 18, \"target\": 14, \"value\": -0.044570503}, {\"source\": 18, \"target\": 15, \"value\": -0.33459763600000003}, {\"source\": 18, \"target\": 16, \"value\": 0.33958778799999995}, {\"source\": 18, \"target\": 17, \"value\": -0.135201173}, {\"source\": 18, \"target\": 18, \"value\": -0.111896921}, {\"source\": 18, \"target\": 19, \"value\": 4.913848539}, {\"source\": 18, \"target\": 20, \"value\": -0.542750046}, {\"source\": 18, \"target\": 21, \"value\": -0.27783299}, {\"source\": 18, \"target\": 22, \"value\": -0.689097582}, {\"source\": 18, \"target\": 23, \"value\": -0.21668800600000002}, {\"source\": 18, \"target\": 24, \"value\": 1.127699857}, {\"source\": 18, \"target\": 25, \"value\": 0.03588747}, {\"source\": 18, \"target\": 26, \"value\": -0.070416156}, {\"source\": 18, \"target\": 27, \"value\": -0.553268062}, {\"source\": 18, \"target\": 28, \"value\": -0.9774276890000001}, {\"source\": 19, \"target\": 0, \"value\": -0.530831743}, {\"source\": 19, \"target\": 1, \"value\": -0.260873607}, {\"source\": 19, \"target\": 2, \"value\": -0.461134617}, {\"source\": 19, \"target\": 3, \"value\": -0.38905618799999997}, {\"source\": 19, \"target\": 4, \"value\": -0.512555424}, {\"source\": 19, \"target\": 5, \"value\": -0.513202268}, {\"source\": 19, \"target\": 6, \"value\": -0.33755039700000006}, {\"source\": 19, \"target\": 7, \"value\": -0.449953768}, {\"source\": 19, \"target\": 8, \"value\": -0.184845421}, {\"source\": 19, \"target\": 9, \"value\": -0.565880657}, {\"source\": 19, \"target\": 10, \"value\": -0.37635620200000003}, {\"source\": 19, \"target\": 11, \"value\": -0.28526610399999996}, {\"source\": 19, \"target\": 12, \"value\": -0.5705058789999999}, {\"source\": 19, \"target\": 13, \"value\": 3.598950655}, {\"source\": 19, \"target\": 14, \"value\": -0.477052971}, {\"source\": 19, \"target\": 15, \"value\": -0.364449691}, {\"source\": 19, \"target\": 16, \"value\": -0.648917127}, {\"source\": 19, \"target\": 17, \"value\": -0.390363086}, {\"source\": 19, \"target\": 18, \"value\": 1.117877995}, {\"source\": 19, \"target\": 19, \"value\": -0.464086586}, {\"source\": 19, \"target\": 20, \"value\": -0.456431016}, {\"source\": 19, \"target\": 21, \"value\": -0.571010056}, {\"source\": 19, \"target\": 22, \"value\": -0.456668794}, {\"source\": 19, \"target\": 23, \"value\": -0.58230495}, {\"source\": 19, \"target\": 24, \"value\": -0.426192704}, {\"source\": 19, \"target\": 25, \"value\": -0.411161613}, {\"source\": 19, \"target\": 26, \"value\": -0.455618608}, {\"source\": 19, \"target\": 27, \"value\": -0.297498019}, {\"source\": 19, \"target\": 28, \"value\": -0.47141323}, {\"source\": 20, \"target\": 0, \"value\": -0.6432463310000001}, {\"source\": 20, \"target\": 1, \"value\": 0.052021433}, {\"source\": 20, \"target\": 2, \"value\": -0.7350066259999999}, {\"source\": 20, \"target\": 3, \"value\": 0.041068843}, {\"source\": 20, \"target\": 4, \"value\": -0.062094125}, {\"source\": 20, \"target\": 5, \"value\": 5.477714716}, {\"source\": 20, \"target\": 6, \"value\": 1.256686967}, {\"source\": 20, \"target\": 7, \"value\": -0.136401851}, {\"source\": 20, \"target\": 8, \"value\": 0.5772668710000001}, {\"source\": 20, \"target\": 9, \"value\": -0.60002565}, {\"source\": 20, \"target\": 10, \"value\": 0.087671916}, {\"source\": 20, \"target\": 11, \"value\": -0.5609597789999999}, {\"source\": 20, \"target\": 12, \"value\": -0.56490393}, {\"source\": 20, \"target\": 13, \"value\": -0.629261602}, {\"source\": 20, \"target\": 14, \"value\": -0.214226487}, {\"source\": 20, \"target\": 15, \"value\": 0.09929963}, {\"source\": 20, \"target\": 16, \"value\": -0.095715004}, {\"source\": 20, \"target\": 17, \"value\": -0.632856345}, {\"source\": 20, \"target\": 18, \"value\": 1.09320354}, {\"source\": 20, \"target\": 19, \"value\": 0.38697641899999996}, {\"source\": 20, \"target\": 20, \"value\": -0.374720076}, {\"source\": 20, \"target\": 21, \"value\": -0.564957229}, {\"source\": 20, \"target\": 22, \"value\": 1.680895489}, {\"source\": 20, \"target\": 23, \"value\": 0.508498891}, {\"source\": 20, \"target\": 24, \"value\": 0.916604247}, {\"source\": 20, \"target\": 25, \"value\": -0.607497709}, {\"source\": 20, \"target\": 26, \"value\": 0.58989289}, {\"source\": 20, \"target\": 27, \"value\": -0.12276483699999999}, {\"source\": 20, \"target\": 28, \"value\": -0.533651064}, {\"source\": 21, \"target\": 0, \"value\": -0.693868027}, {\"source\": 21, \"target\": 1, \"value\": 0.57619653}, {\"source\": 21, \"target\": 2, \"value\": -0.488541037}, {\"source\": 21, \"target\": 3, \"value\": -0.60094858}, {\"source\": 21, \"target\": 4, \"value\": 1.139598497}, {\"source\": 21, \"target\": 5, \"value\": -0.024286993}, {\"source\": 21, \"target\": 6, \"value\": -0.28819455899999996}, {\"source\": 21, \"target\": 7, \"value\": -0.499250839}, {\"source\": 21, \"target\": 8, \"value\": 0.103697413}, {\"source\": 21, \"target\": 9, \"value\": -1.044716157}, {\"source\": 21, \"target\": 10, \"value\": -1.02427507}, {\"source\": 21, \"target\": 11, \"value\": 3.0230034439999995}, {\"source\": 21, \"target\": 12, \"value\": 3.859028873}, {\"source\": 21, \"target\": 13, \"value\": 0.7429784420000001}, {\"source\": 21, \"target\": 14, \"value\": -0.35272281899999997}, {\"source\": 21, \"target\": 15, \"value\": 0.069205383}, {\"source\": 21, \"target\": 16, \"value\": -1.117741919}, {\"source\": 21, \"target\": 17, \"value\": 0.651553716}, {\"source\": 21, \"target\": 18, \"value\": -0.364768511}, {\"source\": 21, \"target\": 19, \"value\": -0.5472691}, {\"source\": 21, \"target\": 20, \"value\": -0.735728719}, {\"source\": 21, \"target\": 21, \"value\": -0.623797671}, {\"source\": 21, \"target\": 22, \"value\": -0.105370633}, {\"source\": 21, \"target\": 23, \"value\": -0.13943154900000002}, {\"source\": 21, \"target\": 24, \"value\": -0.055372648}, {\"source\": 21, \"target\": 25, \"value\": 0.774449831}, {\"source\": 21, \"target\": 26, \"value\": 0.538987341}, {\"source\": 21, \"target\": 27, \"value\": 0.35514519}, {\"source\": 21, \"target\": 28, \"value\": -1.45386407}, {\"source\": 22, \"target\": 0, \"value\": 0.006531886}, {\"source\": 22, \"target\": 1, \"value\": 0.564826732}, {\"source\": 22, \"target\": 2, \"value\": 3.6953185239999997}, {\"source\": 22, \"target\": 3, \"value\": 0.316255033}, {\"source\": 22, \"target\": 4, \"value\": -0.268737774}, {\"source\": 22, \"target\": 5, \"value\": 0.936461505}, {\"source\": 22, \"target\": 6, \"value\": 0.22915170000000004}, {\"source\": 22, \"target\": 7, \"value\": 0.649579007}, {\"source\": 22, \"target\": 8, \"value\": -0.330103595}, {\"source\": 22, \"target\": 9, \"value\": -0.504534505}, {\"source\": 22, \"target\": 10, \"value\": 0.264729237}, {\"source\": 22, \"target\": 11, \"value\": -0.977228043}, {\"source\": 22, \"target\": 12, \"value\": 0.493632169}, {\"source\": 22, \"target\": 13, \"value\": -0.401821398}, {\"source\": 22, \"target\": 14, \"value\": -0.28623177899999996}, {\"source\": 22, \"target\": 15, \"value\": 0.14337127800000002}, {\"source\": 22, \"target\": 16, \"value\": -0.360231532}, {\"source\": 22, \"target\": 17, \"value\": 0.34076271700000005}, {\"source\": 22, \"target\": 18, \"value\": 0.6331625120000001}, {\"source\": 22, \"target\": 19, \"value\": -0.710530502}, {\"source\": 22, \"target\": 20, \"value\": -1.334690191}, {\"source\": 22, \"target\": 21, \"value\": 0.158108045}, {\"source\": 22, \"target\": 22, \"value\": -0.347820435}, {\"source\": 22, \"target\": 23, \"value\": -0.07449706099999999}, {\"source\": 22, \"target\": 24, \"value\": -0.970507716}, {\"source\": 22, \"target\": 25, \"value\": -0.26479443}, {\"source\": 22, \"target\": 26, \"value\": -0.298648517}, {\"source\": 22, \"target\": 27, \"value\": -0.10090872}, {\"source\": 22, \"target\": 28, \"value\": -0.11742112}, {\"source\": 23, \"target\": 0, \"value\": -0.185695405}, {\"source\": 23, \"target\": 1, \"value\": -0.173758799}, {\"source\": 23, \"target\": 2, \"value\": 0.084357105}, {\"source\": 23, \"target\": 3, \"value\": 1.826502656}, {\"source\": 23, \"target\": 4, \"value\": 0.00816719}, {\"source\": 23, \"target\": 5, \"value\": -1.102148634}, {\"source\": 23, \"target\": 6, \"value\": 0.29900253600000004}, {\"source\": 23, \"target\": 7, \"value\": 0.458848186}, {\"source\": 23, \"target\": 8, \"value\": 0.292508806}, {\"source\": 23, \"target\": 9, \"value\": 0.110508201}, {\"source\": 23, \"target\": 10, \"value\": 0.083592283}, {\"source\": 23, \"target\": 11, \"value\": -0.49433306299999996}, {\"source\": 23, \"target\": 12, \"value\": -0.117947546}, {\"source\": 23, \"target\": 13, \"value\": -0.539712481}, {\"source\": 23, \"target\": 14, \"value\": -0.106334279}, {\"source\": 23, \"target\": 15, \"value\": -0.403083002}, {\"source\": 23, \"target\": 16, \"value\": -0.789473381}, {\"source\": 23, \"target\": 17, \"value\": 1.041787363}, {\"source\": 23, \"target\": 18, \"value\": 1.70041072}, {\"source\": 23, \"target\": 19, \"value\": -0.293951867}, {\"source\": 23, \"target\": 20, \"value\": 4.8395247580000005}, {\"source\": 23, \"target\": 21, \"value\": 1.015480815}, {\"source\": 23, \"target\": 22, \"value\": 0.841188534}, {\"source\": 23, \"target\": 23, \"value\": -0.620389764}, {\"source\": 23, \"target\": 24, \"value\": -0.565583764}, {\"source\": 23, \"target\": 25, \"value\": -0.262366184}, {\"source\": 23, \"target\": 26, \"value\": 0.226425315}, {\"source\": 23, \"target\": 27, \"value\": -0.048000565}, {\"source\": 23, \"target\": 28, \"value\": 1.126249373}, {\"source\": 24, \"target\": 0, \"value\": 0.184462349}, {\"source\": 24, \"target\": 1, \"value\": -0.526037871}, {\"source\": 24, \"target\": 2, \"value\": 0.432087272}, {\"source\": 24, \"target\": 3, \"value\": -0.882311913}, {\"source\": 24, \"target\": 4, \"value\": 0.246356093}, {\"source\": 24, \"target\": 5, \"value\": 0.8587545209999999}, {\"source\": 24, \"target\": 6, \"value\": 0.052858019000000006}, {\"source\": 24, \"target\": 7, \"value\": -1.118340603}, {\"source\": 24, \"target\": 8, \"value\": -0.8469488159999999}, {\"source\": 24, \"target\": 9, \"value\": -0.778824075}, {\"source\": 24, \"target\": 10, \"value\": 3.525192777}, {\"source\": 24, \"target\": 11, \"value\": -1.8727450069999998}, {\"source\": 24, \"target\": 12, \"value\": -0.779756435}, {\"source\": 24, \"target\": 13, \"value\": -1.0396393990000001}, {\"source\": 24, \"target\": 14, \"value\": -0.59333431}, {\"source\": 24, \"target\": 15, \"value\": 0.40215600700000004}, {\"source\": 24, \"target\": 16, \"value\": -1.387426464}, {\"source\": 24, \"target\": 17, \"value\": -0.145435051}, {\"source\": 24, \"target\": 18, \"value\": -0.46497243}, {\"source\": 24, \"target\": 19, \"value\": -0.22106446100000002}, {\"source\": 24, \"target\": 20, \"value\": -0.861483648}, {\"source\": 24, \"target\": 21, \"value\": 0.125415634}, {\"source\": 24, \"target\": 22, \"value\": -0.19184911600000001}, {\"source\": 24, \"target\": 23, \"value\": 2.3744602969999997}, {\"source\": 24, \"target\": 24, \"value\": -0.74142144}, {\"source\": 24, \"target\": 25, \"value\": 0.7654394}, {\"source\": 24, \"target\": 26, \"value\": 1.029796862}, {\"source\": 24, \"target\": 27, \"value\": 0.03307866}, {\"source\": 24, \"target\": 28, \"value\": 0.44066582}, {\"source\": 25, \"target\": 0, \"value\": 1.760301448}, {\"source\": 25, \"target\": 1, \"value\": -0.912259652}, {\"source\": 25, \"target\": 2, \"value\": -1.1633458890000001}, {\"source\": 25, \"target\": 3, \"value\": -0.965891664}, {\"source\": 25, \"target\": 4, \"value\": -0.7951534140000001}, {\"source\": 25, \"target\": 5, \"value\": -0.616300339}, {\"source\": 25, \"target\": 6, \"value\": -1.360743997}, {\"source\": 25, \"target\": 7, \"value\": -1.448291877}, {\"source\": 25, \"target\": 8, \"value\": -0.024088935}, {\"source\": 25, \"target\": 9, \"value\": -1.188868793}, {\"source\": 25, \"target\": 10, \"value\": -0.229906845}, {\"source\": 25, \"target\": 11, \"value\": 2.1814891430000003}, {\"source\": 25, \"target\": 12, \"value\": -1.154435684}, {\"source\": 25, \"target\": 13, \"value\": 6.28292787}, {\"source\": 25, \"target\": 14, \"value\": -0.303782002}, {\"source\": 25, \"target\": 15, \"value\": -0.165568925}, {\"source\": 25, \"target\": 16, \"value\": -1.126153349}, {\"source\": 25, \"target\": 17, \"value\": 1.678721355}, {\"source\": 25, \"target\": 18, \"value\": -1.683560793}, {\"source\": 25, \"target\": 19, \"value\": -0.864063548}, {\"source\": 25, \"target\": 20, \"value\": -0.025445472}, {\"source\": 25, \"target\": 21, \"value\": 1.8909462190000002}, {\"source\": 25, \"target\": 22, \"value\": 0.667805988}, {\"source\": 25, \"target\": 23, \"value\": -0.625764381}, {\"source\": 25, \"target\": 24, \"value\": -1.0633403129999999}, {\"source\": 25, \"target\": 25, \"value\": 3.222816803}, {\"source\": 25, \"target\": 26, \"value\": -0.0013596189999999998}, {\"source\": 25, \"target\": 27, \"value\": -0.20366175600000003}, {\"source\": 25, \"target\": 28, \"value\": 0.187669924}, {\"source\": 26, \"target\": 0, \"value\": -0.07364355}, {\"source\": 26, \"target\": 1, \"value\": -0.103789279}, {\"source\": 26, \"target\": 2, \"value\": -0.17130483600000002}, {\"source\": 26, \"target\": 3, \"value\": 0.351910065}, {\"source\": 26, \"target\": 4, \"value\": 0.63677969}, {\"source\": 26, \"target\": 5, \"value\": -0.136732984}, {\"source\": 26, \"target\": 6, \"value\": 0.356830815}, {\"source\": 26, \"target\": 7, \"value\": 3.8891158239999997}, {\"source\": 26, \"target\": 8, \"value\": 0.645442526}, {\"source\": 26, \"target\": 9, \"value\": 1.3663589180000002}, {\"source\": 26, \"target\": 10, \"value\": 0.995319244}, {\"source\": 26, \"target\": 11, \"value\": 5.608685402000001}, {\"source\": 26, \"target\": 12, \"value\": 1.101919141}, {\"source\": 26, \"target\": 13, \"value\": -0.554900568}, {\"source\": 26, \"target\": 14, \"value\": 0.087820649}, {\"source\": 26, \"target\": 15, \"value\": 0.061305127}, {\"source\": 26, \"target\": 16, \"value\": 1.931275557}, {\"source\": 26, \"target\": 17, \"value\": -0.692417574}, {\"source\": 26, \"target\": 18, \"value\": -0.481807702}, {\"source\": 26, \"target\": 19, \"value\": -0.16288735}, {\"source\": 26, \"target\": 20, \"value\": -0.538298189}, {\"source\": 26, \"target\": 21, \"value\": 2.440412245}, {\"source\": 26, \"target\": 22, \"value\": 0.804274605}, {\"source\": 26, \"target\": 23, \"value\": -0.605526195}, {\"source\": 26, \"target\": 24, \"value\": 1.788457016}, {\"source\": 26, \"target\": 25, \"value\": -0.37652092200000004}, {\"source\": 26, \"target\": 26, \"value\": 0.35819202}, {\"source\": 26, \"target\": 27, \"value\": 0.164487781}, {\"source\": 26, \"target\": 28, \"value\": 3.719306763}, {\"source\": 27, \"target\": 0, \"value\": -0.7515267409999999}, {\"source\": 27, \"target\": 1, \"value\": 0.49762292}, {\"source\": 27, \"target\": 2, \"value\": -0.142534658}, {\"source\": 27, \"target\": 3, \"value\": -0.882124083}, {\"source\": 27, \"target\": 4, \"value\": -1.151282849}, {\"source\": 27, \"target\": 5, \"value\": 2.307907188}, {\"source\": 27, \"target\": 6, \"value\": -0.12032085}, {\"source\": 27, \"target\": 7, \"value\": -0.35126953200000005}, {\"source\": 27, \"target\": 8, \"value\": -1.526178564}, {\"source\": 27, \"target\": 9, \"value\": -0.7532684279999999}, {\"source\": 27, \"target\": 10, \"value\": 3.600861739}, {\"source\": 27, \"target\": 11, \"value\": -1.223995853}, {\"source\": 27, \"target\": 12, \"value\": -0.607229424}, {\"source\": 27, \"target\": 13, \"value\": -0.027417898}, {\"source\": 27, \"target\": 14, \"value\": 0.190161632}, {\"source\": 27, \"target\": 15, \"value\": 0.6105504079999999}, {\"source\": 27, \"target\": 16, \"value\": 0.149796331}, {\"source\": 27, \"target\": 17, \"value\": -0.122879865}, {\"source\": 27, \"target\": 18, \"value\": 0.247865963}, {\"source\": 27, \"target\": 19, \"value\": -0.40483370799999996}, {\"source\": 27, \"target\": 20, \"value\": 0.736929754}, {\"source\": 27, \"target\": 21, \"value\": -0.9442750679999999}, {\"source\": 27, \"target\": 22, \"value\": -0.078919294}, {\"source\": 27, \"target\": 23, \"value\": 0.661648005}, {\"source\": 27, \"target\": 24, \"value\": -0.24494877899999998}, {\"source\": 27, \"target\": 25, \"value\": 3.051534602}, {\"source\": 27, \"target\": 26, \"value\": -0.10736522800000001}, {\"source\": 27, \"target\": 27, \"value\": 0.367536408}, {\"source\": 27, \"target\": 28, \"value\": -1.5179858240000002}, {\"source\": 28, \"target\": 0, \"value\": -0.31236414}, {\"source\": 28, \"target\": 1, \"value\": 0.7012570890000001}, {\"source\": 28, \"target\": 2, \"value\": 0.47520812}, {\"source\": 28, \"target\": 3, \"value\": -0.585297054}, {\"source\": 28, \"target\": 4, \"value\": -0.122694283}, {\"source\": 28, \"target\": 5, \"value\": -0.8668751370000001}, {\"source\": 28, \"target\": 6, \"value\": 0.367939523}, {\"source\": 28, \"target\": 7, \"value\": -0.481103706}, {\"source\": 28, \"target\": 8, \"value\": 2.072237711}, {\"source\": 28, \"target\": 9, \"value\": 10.29186436}, {\"source\": 28, \"target\": 10, \"value\": 1.298805701}, {\"source\": 28, \"target\": 11, \"value\": -0.6281759170000001}, {\"source\": 28, \"target\": 12, \"value\": -0.173084375}, {\"source\": 28, \"target\": 13, \"value\": -0.02710755}, {\"source\": 28, \"target\": 14, \"value\": 0.35516907299999995}, {\"source\": 28, \"target\": 15, \"value\": 0.470456905}, {\"source\": 28, \"target\": 16, \"value\": 0.121400231}, {\"source\": 28, \"target\": 17, \"value\": 0.37492460200000005}, {\"source\": 28, \"target\": 18, \"value\": -0.27830734100000004}, {\"source\": 28, \"target\": 19, \"value\": -0.553746266}, {\"source\": 28, \"target\": 20, \"value\": -0.935156558}, {\"source\": 28, \"target\": 21, \"value\": -0.042420295999999996}, {\"source\": 28, \"target\": 22, \"value\": -0.479479902}, {\"source\": 28, \"target\": 23, \"value\": -0.332400886}, {\"source\": 28, \"target\": 24, \"value\": -0.7100170109999999}, {\"source\": 28, \"target\": 25, \"value\": 1.873931755}, {\"source\": 28, \"target\": 26, \"value\": 0.20455442899999998}, {\"source\": 28, \"target\": 27, \"value\": -0.32315246}, {\"source\": 28, \"target\": 28, \"value\": 0.18757252100000002}, {\"source\": 29, \"target\": 0, \"value\": 0.11931136}, {\"source\": 29, \"target\": 1, \"value\": 0.593670684}, {\"source\": 29, \"target\": 2, \"value\": 0.48915277100000004}, {\"source\": 29, \"target\": 3, \"value\": 0.841683345}, {\"source\": 29, \"target\": 4, \"value\": 1.064673748}, {\"source\": 29, \"target\": 5, \"value\": 0.095113499}, {\"source\": 29, \"target\": 6, \"value\": 1.050152022}, {\"source\": 29, \"target\": 7, \"value\": 1.8914884269999999}, {\"source\": 29, \"target\": 8, \"value\": -5.5283552}, {\"source\": 29, \"target\": 9, \"value\": 0.64306832}, {\"source\": 29, \"target\": 10, \"value\": -1.100026181}, {\"source\": 29, \"target\": 11, \"value\": 0.765710935}, {\"source\": 29, \"target\": 12, \"value\": 1.165406655}, {\"source\": 29, \"target\": 13, \"value\": 0.30638633}, {\"source\": 29, \"target\": 14, \"value\": -1.3658942619999999}, {\"source\": 29, \"target\": 15, \"value\": 0.635492291}, {\"source\": 29, \"target\": 16, \"value\": -0.37779861600000003}, {\"source\": 29, \"target\": 17, \"value\": 0.521665309}, {\"source\": 29, \"target\": 18, \"value\": -0.6084974329999999}, {\"source\": 29, \"target\": 19, \"value\": 0.398484128}, {\"source\": 29, \"target\": 20, \"value\": -0.988354968}, {\"source\": 29, \"target\": 21, \"value\": 1.36349214}, {\"source\": 29, \"target\": 22, \"value\": 1.36269783}, {\"source\": 29, \"target\": 23, \"value\": -0.112291585}, {\"source\": 29, \"target\": 24, \"value\": -0.262719995}, {\"source\": 29, \"target\": 25, \"value\": 0.503524059}, {\"source\": 29, \"target\": 26, \"value\": 0.498006014}, {\"source\": 29, \"target\": 27, \"value\": 1.525942005}, {\"source\": 29, \"target\": 28, \"value\": 0.339189212}, {\"source\": 30, \"target\": 0, \"value\": -0.294263824}, {\"source\": 30, \"target\": 1, \"value\": -0.618071649}, {\"source\": 30, \"target\": 2, \"value\": -0.252534114}, {\"source\": 30, \"target\": 3, \"value\": -0.78660676}, {\"source\": 30, \"target\": 4, \"value\": -0.228026664}, {\"source\": 30, \"target\": 5, \"value\": 0.977860794}, {\"source\": 30, \"target\": 6, \"value\": -1.200449832}, {\"source\": 30, \"target\": 7, \"value\": -0.22037931}, {\"source\": 30, \"target\": 8, \"value\": -0.240489906}, {\"source\": 30, \"target\": 9, \"value\": -0.201675468}, {\"source\": 30, \"target\": 10, \"value\": 1.47598938}, {\"source\": 30, \"target\": 11, \"value\": -0.557000568}, {\"source\": 30, \"target\": 12, \"value\": -0.502553204}, {\"source\": 30, \"target\": 13, \"value\": -0.437501309}, {\"source\": 30, \"target\": 14, \"value\": 0.966927023}, {\"source\": 30, \"target\": 15, \"value\": 0.37967009700000004}, {\"source\": 30, \"target\": 16, \"value\": 0.048795579000000006}, {\"source\": 30, \"target\": 17, \"value\": 0.25062286899999997}, {\"source\": 30, \"target\": 18, \"value\": 2.9610247139999997}, {\"source\": 30, \"target\": 19, \"value\": 2.299033235}, {\"source\": 30, \"target\": 20, \"value\": -1.210659274}, {\"source\": 30, \"target\": 21, \"value\": 0.418655141}, {\"source\": 30, \"target\": 22, \"value\": 1.161954005}, {\"source\": 30, \"target\": 23, \"value\": -0.15700654}, {\"source\": 30, \"target\": 24, \"value\": -1.2541429370000001}, {\"source\": 30, \"target\": 25, \"value\": -0.574558055}, {\"source\": 30, \"target\": 26, \"value\": -0.662438275}, {\"source\": 30, \"target\": 27, \"value\": 3.702617515}, {\"source\": 30, \"target\": 28, \"value\": -0.35302723}, {\"source\": 31, \"target\": 0, \"value\": -0.000863802}, {\"source\": 31, \"target\": 1, \"value\": 0.735638383}, {\"source\": 31, \"target\": 2, \"value\": -0.680289747}, {\"source\": 31, \"target\": 3, \"value\": 0.040925842999999996}, {\"source\": 31, \"target\": 4, \"value\": 0.359330228}, {\"source\": 31, \"target\": 5, \"value\": -1.587400295}, {\"source\": 31, \"target\": 6, \"value\": -1.041686081}, {\"source\": 31, \"target\": 7, \"value\": 0.071551408}, {\"source\": 31, \"target\": 8, \"value\": -0.168322665}, {\"source\": 31, \"target\": 9, \"value\": -1.3773033080000001}, {\"source\": 31, \"target\": 10, \"value\": 3.6045390889999998}, {\"source\": 31, \"target\": 11, \"value\": -0.004601068}, {\"source\": 31, \"target\": 12, \"value\": 1.527568732}, {\"source\": 31, \"target\": 13, \"value\": -0.30015470699999997}, {\"source\": 31, \"target\": 14, \"value\": -0.7861355090000001}, {\"source\": 31, \"target\": 15, \"value\": -0.138050924}, {\"source\": 31, \"target\": 16, \"value\": -0.366480418}, {\"source\": 31, \"target\": 17, \"value\": -0.7969702059999999}, {\"source\": 31, \"target\": 18, \"value\": -0.030155544}, {\"source\": 31, \"target\": 19, \"value\": 0.8031000559999999}, {\"source\": 31, \"target\": 20, \"value\": 0.6831455609999999}, {\"source\": 31, \"target\": 21, \"value\": -0.900708154}, {\"source\": 31, \"target\": 22, \"value\": 0.15251077}, {\"source\": 31, \"target\": 23, \"value\": 0.140092011}, {\"source\": 31, \"target\": 24, \"value\": 0.37681542100000004}, {\"source\": 31, \"target\": 25, \"value\": -1.214319621}, {\"source\": 31, \"target\": 26, \"value\": 1.326197465}, {\"source\": 31, \"target\": 27, \"value\": 1.5230702790000001}, {\"source\": 31, \"target\": 28, \"value\": -1.312001824}, {\"source\": 32, \"target\": 0, \"value\": -0.27673681899999997}, {\"source\": 32, \"target\": 1, \"value\": -0.426080887}, {\"source\": 32, \"target\": 2, \"value\": -0.160160461}, {\"source\": 32, \"target\": 3, \"value\": -0.8900327709999999}, {\"source\": 32, \"target\": 4, \"value\": -0.437405434}, {\"source\": 32, \"target\": 5, \"value\": 0.143897214}, {\"source\": 32, \"target\": 6, \"value\": -0.573425958}, {\"source\": 32, \"target\": 7, \"value\": -0.48641938100000004}, {\"source\": 32, \"target\": 8, \"value\": -0.536963482}, {\"source\": 32, \"target\": 9, \"value\": -0.657041002}, {\"source\": 32, \"target\": 10, \"value\": -0.47334541799999996}, {\"source\": 32, \"target\": 11, \"value\": -0.23747527899999998}, {\"source\": 32, \"target\": 12, \"value\": -0.669396538}, {\"source\": 32, \"target\": 13, \"value\": -0.559435302}, {\"source\": 32, \"target\": 14, \"value\": 0.038953301}, {\"source\": 32, \"target\": 15, \"value\": 0.033709721}, {\"source\": 32, \"target\": 16, \"value\": -0.343587801}, {\"source\": 32, \"target\": 17, \"value\": -0.513218087}, {\"source\": 32, \"target\": 18, \"value\": -0.5923033129999999}, {\"source\": 32, \"target\": 19, \"value\": -0.431221835}, {\"source\": 32, \"target\": 20, \"value\": 5.339202897}, {\"source\": 32, \"target\": 21, \"value\": -0.49377858700000005}, {\"source\": 32, \"target\": 22, \"value\": -0.645000361}, {\"source\": 32, \"target\": 23, \"value\": -0.47798486700000004}, {\"source\": 32, \"target\": 24, \"value\": -0.401579746}, {\"source\": 32, \"target\": 25, \"value\": -0.621782124}, {\"source\": 32, \"target\": 26, \"value\": -0.24939462699999998}, {\"source\": 32, \"target\": 27, \"value\": -0.303365249}, {\"source\": 32, \"target\": 28, \"value\": -0.922343302}, {\"source\": 33, \"target\": 0, \"value\": -0.31807579}, {\"source\": 33, \"target\": 1, \"value\": -0.8141108090000001}, {\"source\": 33, \"target\": 2, \"value\": 0.6465451879999999}, {\"source\": 33, \"target\": 3, \"value\": 0.26837169}, {\"source\": 33, \"target\": 4, \"value\": -9.425120961000001}, {\"source\": 33, \"target\": 5, \"value\": -1.073853473}, {\"source\": 33, \"target\": 6, \"value\": -2.049589626}, {\"source\": 33, \"target\": 7, \"value\": -0.34692102399999997}, {\"source\": 33, \"target\": 8, \"value\": 0.9972831809999999}, {\"source\": 33, \"target\": 9, \"value\": 0.30061925300000003}, {\"source\": 33, \"target\": 10, \"value\": -0.543103864}, {\"source\": 33, \"target\": 11, \"value\": -1.150792172}, {\"source\": 33, \"target\": 12, \"value\": -2.283061167}, {\"source\": 33, \"target\": 13, \"value\": -0.162802216}, {\"source\": 33, \"target\": 14, \"value\": -1.053859713}, {\"source\": 33, \"target\": 15, \"value\": -1.377541743}, {\"source\": 33, \"target\": 16, \"value\": -0.288349474}, {\"source\": 33, \"target\": 17, \"value\": -0.922266884}, {\"source\": 33, \"target\": 18, \"value\": -1.123953091}, {\"source\": 33, \"target\": 19, \"value\": -0.7629538929999999}, {\"source\": 33, \"target\": 20, \"value\": -0.6873571479999999}, {\"source\": 33, \"target\": 21, \"value\": 0.28991073}, {\"source\": 33, \"target\": 22, \"value\": 0.317576672}, {\"source\": 33, \"target\": 23, \"value\": -0.345565515}, {\"source\": 33, \"target\": 24, \"value\": 0.541683}, {\"source\": 33, \"target\": 25, \"value\": 0.009754099}, {\"source\": 33, \"target\": 26, \"value\": 0.73792006}, {\"source\": 33, \"target\": 27, \"value\": -0.6242717520000001}, {\"source\": 33, \"target\": 28, \"value\": 0.10053254699999999}, {\"source\": 34, \"target\": 0, \"value\": -0.670177714}, {\"source\": 34, \"target\": 1, \"value\": 3.2245335010000002}, {\"source\": 34, \"target\": 2, \"value\": 0.145509552}, {\"source\": 34, \"target\": 3, \"value\": 0.107432319}, {\"source\": 34, \"target\": 4, \"value\": -1.1204927390000001}, {\"source\": 34, \"target\": 5, \"value\": 0.288890539}, {\"source\": 34, \"target\": 6, \"value\": 1.5495459180000002}, {\"source\": 34, \"target\": 7, \"value\": -0.342665051}, {\"source\": 34, \"target\": 8, \"value\": -0.017402855}, {\"source\": 34, \"target\": 9, \"value\": -0.42000224399999997}, {\"source\": 34, \"target\": 10, \"value\": -0.36138745299999997}, {\"source\": 34, \"target\": 11, \"value\": -1.264272075}, {\"source\": 34, \"target\": 12, \"value\": -0.794507765}, {\"source\": 34, \"target\": 13, \"value\": -0.619944678}, {\"source\": 34, \"target\": 14, \"value\": -0.338767802}, {\"source\": 34, \"target\": 15, \"value\": -0.14852947800000002}, {\"source\": 34, \"target\": 16, \"value\": -1.078879645}, {\"source\": 34, \"target\": 17, \"value\": 0.130939014}, {\"source\": 34, \"target\": 18, \"value\": -1.3078153129999999}, {\"source\": 34, \"target\": 19, \"value\": -1.818798474}, {\"source\": 34, \"target\": 20, \"value\": 3.683694337}, {\"source\": 34, \"target\": 21, \"value\": 0.920647357}, {\"source\": 34, \"target\": 22, \"value\": -0.847056974}, {\"source\": 34, \"target\": 23, \"value\": -0.34379849799999995}, {\"source\": 34, \"target\": 24, \"value\": -1.21552566}, {\"source\": 34, \"target\": 25, \"value\": -0.8538453340000001}, {\"source\": 34, \"target\": 26, \"value\": -0.357215055}, {\"source\": 34, \"target\": 27, \"value\": -0.043911541}, {\"source\": 34, \"target\": 28, \"value\": -0.955847309}, {\"source\": 35, \"target\": 0, \"value\": -0.695252888}, {\"source\": 35, \"target\": 1, \"value\": 4.299877134}, {\"source\": 35, \"target\": 2, \"value\": -0.175587126}, {\"source\": 35, \"target\": 3, \"value\": -0.061022137000000004}, {\"source\": 35, \"target\": 4, \"value\": -0.391646018}, {\"source\": 35, \"target\": 5, \"value\": 3.3854510380000002}, {\"source\": 35, \"target\": 6, \"value\": 0.345114288}, {\"source\": 35, \"target\": 7, \"value\": -0.505734993}, {\"source\": 35, \"target\": 8, \"value\": -0.482953864}, {\"source\": 35, \"target\": 9, \"value\": -0.081815586}, {\"source\": 35, \"target\": 10, \"value\": -0.928486879}, {\"source\": 35, \"target\": 11, \"value\": 0.976209137}, {\"source\": 35, \"target\": 12, \"value\": 0.09902148699999999}, {\"source\": 35, \"target\": 13, \"value\": 2.494690556}, {\"source\": 35, \"target\": 14, \"value\": -1.0887427790000002}, {\"source\": 35, \"target\": 15, \"value\": 0.43717475100000003}, {\"source\": 35, \"target\": 16, \"value\": -0.507169467}, {\"source\": 35, \"target\": 17, \"value\": 2.028724319}, {\"source\": 35, \"target\": 18, \"value\": -0.507954247}, {\"source\": 35, \"target\": 19, \"value\": 0.14350628099999999}, {\"source\": 35, \"target\": 20, \"value\": -1.19702953}, {\"source\": 35, \"target\": 21, \"value\": 0.610379518}, {\"source\": 35, \"target\": 22, \"value\": 0.095879151}, {\"source\": 35, \"target\": 23, \"value\": -0.6631187270000001}, {\"source\": 35, \"target\": 24, \"value\": 0.50821984}, {\"source\": 35, \"target\": 25, \"value\": -0.741815419}, {\"source\": 35, \"target\": 26, \"value\": 2.38531026}, {\"source\": 35, \"target\": 27, \"value\": 0.354750355}, {\"source\": 35, \"target\": 28, \"value\": 0.658437634}, {\"source\": 36, \"target\": 0, \"value\": -0.337849025}, {\"source\": 36, \"target\": 1, \"value\": -0.535265918}, {\"source\": 36, \"target\": 2, \"value\": 0.8031604590000001}, {\"source\": 36, \"target\": 3, \"value\": 0.275911465}, {\"source\": 36, \"target\": 4, \"value\": 0.981343049}, {\"source\": 36, \"target\": 5, \"value\": -0.748451144}, {\"source\": 36, \"target\": 6, \"value\": -0.092431408}, {\"source\": 36, \"target\": 7, \"value\": -0.32647710399999996}, {\"source\": 36, \"target\": 8, \"value\": -0.38124391700000004}, {\"source\": 36, \"target\": 9, \"value\": -0.575343824}, {\"source\": 36, \"target\": 10, \"value\": -0.63351617}, {\"source\": 36, \"target\": 11, \"value\": -0.380961411}, {\"source\": 36, \"target\": 12, \"value\": -1.7206161969999998}, {\"source\": 36, \"target\": 13, \"value\": -0.85605361}, {\"source\": 36, \"target\": 14, \"value\": -0.5809503739999999}, {\"source\": 36, \"target\": 15, \"value\": 0.37329311600000004}, {\"source\": 36, \"target\": 16, \"value\": 0.9054908859999999}, {\"source\": 36, \"target\": 17, \"value\": 0.135705555}, {\"source\": 36, \"target\": 18, \"value\": 1.1077806559999999}, {\"source\": 36, \"target\": 19, \"value\": -0.545183144}, {\"source\": 36, \"target\": 20, \"value\": 0.475561701}, {\"source\": 36, \"target\": 21, \"value\": 0.016687596000000002}, {\"source\": 36, \"target\": 22, \"value\": -0.172178219}, {\"source\": 36, \"target\": 23, \"value\": 0.585186686}, {\"source\": 36, \"target\": 24, \"value\": -0.40480014}, {\"source\": 36, \"target\": 25, \"value\": -3.997318149}, {\"source\": 36, \"target\": 26, \"value\": 0.711029765}, {\"source\": 36, \"target\": 27, \"value\": -0.470884061}, {\"source\": 36, \"target\": 28, \"value\": 0.354386296}, {\"source\": 37, \"target\": 0, \"value\": -0.36817321700000005}, {\"source\": 37, \"target\": 1, \"value\": 0.209192446}, {\"source\": 37, \"target\": 2, \"value\": 0.266317555}, {\"source\": 37, \"target\": 3, \"value\": -0.100656799}, {\"source\": 37, \"target\": 4, \"value\": -0.33679171799999996}, {\"source\": 37, \"target\": 5, \"value\": -0.060827204}, {\"source\": 37, \"target\": 6, \"value\": -0.199021599}, {\"source\": 37, \"target\": 7, \"value\": -0.765882671}, {\"source\": 37, \"target\": 8, \"value\": -0.071476548}, {\"source\": 37, \"target\": 9, \"value\": -0.44027029999999995}, {\"source\": 37, \"target\": 10, \"value\": -0.35486840000000003}, {\"source\": 37, \"target\": 11, \"value\": 3.468121376}, {\"source\": 37, \"target\": 12, \"value\": 5.8537267139999996}, {\"source\": 37, \"target\": 13, \"value\": -0.465135408}, {\"source\": 37, \"target\": 14, \"value\": 0.074434692}, {\"source\": 37, \"target\": 15, \"value\": 7.085199705}, {\"source\": 37, \"target\": 16, \"value\": -0.399050575}, {\"source\": 37, \"target\": 17, \"value\": -0.334999773}, {\"source\": 37, \"target\": 18, \"value\": -0.623071147}, {\"source\": 37, \"target\": 19, \"value\": -0.40623083299999996}, {\"source\": 37, \"target\": 20, \"value\": 0.9390581159999999}, {\"source\": 37, \"target\": 21, \"value\": -0.269533885}, {\"source\": 37, \"target\": 22, \"value\": 0.11795050300000001}, {\"source\": 37, \"target\": 23, \"value\": 0.1975473}, {\"source\": 37, \"target\": 24, \"value\": -0.365407931}, {\"source\": 37, \"target\": 25, \"value\": -0.056856473}, {\"source\": 37, \"target\": 26, \"value\": 0.0019832120000000003}, {\"source\": 37, \"target\": 27, \"value\": 0.08160995900000001}, {\"source\": 37, \"target\": 28, \"value\": -0.603299855}], \"views\": [{\"N_row_sum\": \"all\", \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"group\": [10.0, 9.0, 8.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: CDK4\", \"clust\": 14, \"cat_0_index\": 0, \"rank\": 30, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 20, \"ini\": 38}, {\"group\": [21.0, 20.0, 19.0, 13.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LMTK3\", \"clust\": 20, \"cat_0_index\": 17, \"rank\": 28, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 24, \"ini\": 37}, {\"group\": [26.0, 25.0, 22.0, 16.0, 13.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LRRK2\", \"clust\": 26, \"cat_0_index\": 18, \"rank\": 9, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 10, \"ini\": 36}, {\"group\": [28.0, 27.0, 24.0, 18.0, 14.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: UHMK1\", \"clust\": 25, \"cat_0_index\": 19, \"rank\": 26, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 14, \"ini\": 35}, {\"group\": [12.0, 11.0, 10.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: EGFR\", \"clust\": 13, \"cat_0_index\": 1, \"rank\": 33, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 7, \"ini\": 34}, {\"group\": [33.0, 32.0, 29.0, 22.0, 17.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK32A\", \"clust\": 32, \"cat_0_index\": 2, \"rank\": 36, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 32, \"ini\": 33}, {\"group\": [11.0, 10.0, 9.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NRK\", \"clust\": 15, \"cat_0_index\": 3, \"rank\": 35, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 33, \"ini\": 32}, {\"group\": [35.0, 34.0, 31.0, 23.0, 18.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ERBB2\", \"clust\": 34, \"cat_0_index\": 20, \"rank\": 24, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 9, \"ini\": 31}, {\"group\": [31.0, 30.0, 27.0, 20.0, 16.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ERBB4\", \"clust\": 30, \"cat_0_index\": 21, \"rank\": 6, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 2, \"ini\": 30}, {\"group\": [37.0, 36.0, 33.0, 25.0, 19.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: AAK1\", \"clust\": 36, \"cat_0_index\": 22, \"rank\": 18, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 8, \"ini\": 29}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: SRPK3\", \"clust\": 4, \"cat_0_index\": 23, \"rank\": 8, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 15, \"ini\": 28}, {\"group\": [36.0, 35.0, 32.0, 24.0, 18.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK39\", \"clust\": 35, \"cat_0_index\": 4, \"rank\": 7, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 4, \"ini\": 27}, {\"group\": [3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: GRK4\", \"clust\": 3, \"cat_0_index\": 24, \"rank\": 1, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 3, \"ini\": 26}, {\"group\": [13.0, 12.0, 11.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: TBK1\", \"clust\": 12, \"cat_0_index\": 25, \"rank\": 34, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 26, \"ini\": 25}, {\"group\": [23.0, 22.0, 20.0, 14.0, 12.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: INSRR\", \"clust\": 23, \"cat_0_index\": 26, \"rank\": 13, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 5, \"ini\": 24}, {\"group\": [14.0, 13.0, 12.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: IRAK1\", \"clust\": 11, \"cat_0_index\": 5, \"rank\": 20, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 30, \"ini\": 23}, {\"group\": [34.0, 33.0, 30.0, 22.0, 17.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: KDR\", \"clust\": 33, \"cat_0_index\": 27, \"rank\": 19, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 11, \"ini\": 22}, {\"group\": [20.0, 19.0, 18.0, 12.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NPR1\", \"clust\": 16, \"cat_0_index\": 6, \"rank\": 27, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 29, \"ini\": 21}, {\"group\": [16.0, 15.0, 14.0, 9.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PAK3\", \"clust\": 9, \"cat_0_index\": 28, \"rank\": 11, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 12, \"ini\": 20}, {\"group\": [7.0, 6.0, 5.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PDGFRA\", \"clust\": 7, \"cat_0_index\": 7, \"rank\": 2, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 0, \"ini\": 19}, {\"group\": [24.0, 23.0, 20.0, 14.0, 12.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PDK4\", \"clust\": 24, \"cat_0_index\": 29, \"rank\": 22, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 22, \"ini\": 18}, {\"group\": [29.0, 28.0, 25.0, 19.0, 15.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ULK4\", \"clust\": 28, \"cat_0_index\": 8, \"rank\": 16, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 19, \"ini\": 17}, {\"group\": [22.0, 21.0, 19.0, 13.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PRKCE\", \"clust\": 21, \"cat_0_index\": 30, \"rank\": 14, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 1, \"ini\": 16}, {\"group\": [4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PRKG2\", \"clust\": 2, \"cat_0_index\": 31, \"rank\": 25, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 18, \"ini\": 15}, {\"group\": [17.0, 16.0, 15.0, 10.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAPK4\", \"clust\": 18, \"cat_0_index\": 9, \"rank\": 10, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 16, \"ini\": 14}, {\"group\": [8.0, 7.0, 6.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAPK11\", \"clust\": 8, \"cat_0_index\": 10, \"rank\": 17, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 34, \"ini\": 13}, {\"group\": [32.0, 31.0, 28.0, 21.0, 16.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK31\", \"clust\": 31, \"cat_0_index\": 11, \"rank\": 37, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 31, \"ini\": 12}, {\"group\": [18.0, 17.0, 16.0, 10.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: GRK1\", \"clust\": 19, \"cat_0_index\": 32, \"rank\": 15, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 23, \"ini\": 11}, {\"group\": [38.0, 37.0, 34.0, 26.0, 20.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ROS1\", \"clust\": 37, \"cat_0_index\": 12, \"rank\": 31, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 37, \"ini\": 10}, {\"group\": [15.0, 14.0, 13.0, 8.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAP2K4\", \"clust\": 10, \"cat_0_index\": 13, \"rank\": 23, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 28, \"ini\": 9}, {\"group\": [27.0, 26.0, 23.0, 17.0, 13.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: SRC\", \"clust\": 27, \"cat_0_index\": 14, \"rank\": 21, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 21, \"ini\": 8}, {\"group\": [19.0, 18.0, 17.0, 11.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: TGFBR1\", \"clust\": 17, \"cat_0_index\": 15, \"rank\": 12, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 13, \"ini\": 7}, {\"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: CAMK2B\", \"clust\": 5, \"cat_0_index\": 33, \"rank\": 3, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 17, \"ini\": 6}, {\"group\": [9.0, 8.0, 7.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK24\", \"clust\": 6, \"cat_0_index\": 16, \"rank\": 0, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 36, \"ini\": 5}, {\"group\": [5.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: DCLK3\", \"clust\": 1, \"cat_0_index\": 34, \"rank\": 5, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 25, \"ini\": 4}, {\"group\": [25.0, 24.0, 21.0, 15.0, 12.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LATS1\", \"clust\": 22, \"cat_0_index\": 35, \"rank\": 29, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 27, \"ini\": 3}, {\"group\": [6.0, 5.0, 4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NEK9\", \"clust\": 0, \"cat_0_index\": 36, \"rank\": 4, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 6, \"ini\": 2}, {\"group\": [30.0, 29.0, 26.0, 19.0, 15.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MYLK3\", \"clust\": 29, \"cat_0_index\": 37, \"rank\": 32, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 35, \"ini\": 1}], \"col_nodes\": [{\"group\": [15.0, 15.0, 15.0, 15.0, 12.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1650\", \"clust\": 12, \"cat_1_index\": 10, \"cat_0_index\": 24, \"rank\": 6, \"cat-1\": \"Gender: Male\", \"ini\": 29, \"cat-0\": \"Category: two\", \"rankvar\": 4}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H23\", \"clust\": 2, \"cat_1_index\": 11, \"cat_0_index\": 25, \"rank\": 17, \"cat-1\": \"Gender: Male\", \"ini\": 28, \"cat-0\": \"Category: two\", \"rankvar\": 8}, {\"group\": [6.0, 6.0, 6.0, 6.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CAL-12T\", \"clust\": 4, \"cat_1_index\": 12, \"cat_0_index\": 26, \"rank\": 10, \"cat-1\": \"Gender: Male\", \"ini\": 27, \"cat-0\": \"Category: two\", \"rankvar\": 19}, {\"group\": [27.0, 27.0, 27.0, 26.0, 20.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H358\", \"clust\": 25, \"cat_1_index\": 13, \"cat_0_index\": 13, \"rank\": 4, \"cat-1\": \"Gender: Male\", \"ini\": 26, \"cat-0\": \"Category: one\", \"rankvar\": 0}, {\"group\": [28.0, 28.0, 28.0, 27.0, 21.0, 16.0, 9.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1975\", \"clust\": 22, \"cat_1_index\": 0, \"cat_0_index\": 27, \"rank\": 0, \"cat-1\": \"Gender: Female\", \"ini\": 25, \"cat-0\": \"Category: two\", \"rankvar\": 24}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC15\", \"clust\": 1, \"cat_1_index\": 14, \"cat_0_index\": 28, \"rank\": 24, \"cat-1\": \"Gender: Male\", \"ini\": 24, \"cat-0\": \"Category: two\", \"rankvar\": 20}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1355\", \"clust\": 5, \"cat_1_index\": 15, \"cat_0_index\": 19, \"rank\": 9, \"cat-1\": \"Gender: Male\", \"ini\": 23, \"cat-0\": \"Category: three\", \"rankvar\": 6}, {\"group\": [22.0, 22.0, 22.0, 22.0, 18.0, 14.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC827\", \"clust\": 23, \"cat_1_index\": 1, \"cat_0_index\": 14, \"rank\": 28, \"cat-1\": \"Gender: Female\", \"ini\": 22, \"cat-0\": \"Category: one\", \"rankvar\": 25}, {\"group\": [19.0, 19.0, 19.0, 19.0, 15.0, 12.0, 7.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2405\", \"clust\": 20, \"cat_1_index\": 16, \"cat_0_index\": 0, \"rank\": 1, \"cat-1\": \"Gender: Male\", \"ini\": 21, \"cat-0\": \"Category: five\", \"rankvar\": 12}, {\"group\": [20.0, 20.0, 20.0, 20.0, 16.0, 12.0, 7.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC78\", \"clust\": 21, \"cat_1_index\": 17, \"cat_0_index\": 1, \"rank\": 25, \"cat-1\": \"Gender: Male\", \"ini\": 20, \"cat-0\": \"Category: five\", \"rankvar\": 27}, {\"group\": [11.0, 11.0, 11.0, 11.0, 9.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1666\", \"clust\": 7, \"cat_1_index\": 2, \"cat_0_index\": 6, \"rank\": 18, \"cat-1\": \"Gender: Female\", \"ini\": 19, \"cat-0\": \"Category: four\", \"rankvar\": 15}, {\"group\": [18.0, 18.0, 18.0, 18.0, 14.0, 11.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H661\", \"clust\": 16, \"cat_1_index\": 18, \"cat_0_index\": 2, \"rank\": 3, \"cat-1\": \"Gender: Male\", \"ini\": 18, \"cat-0\": \"Category: five\", \"rankvar\": 26}, {\"group\": [16.0, 16.0, 16.0, 16.0, 13.0, 11.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H838\", \"clust\": 17, \"cat_1_index\": 19, \"cat_0_index\": 3, \"rank\": 7, \"cat-1\": \"Gender: Male\", \"ini\": 17, \"cat-0\": \"Category: five\", \"rankvar\": 23}, {\"group\": [12.0, 12.0, 12.0, 12.0, 10.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1703\", \"clust\": 14, \"cat_1_index\": 20, \"cat_0_index\": 4, \"rank\": 11, \"cat-1\": \"Gender: Male\", \"ini\": 16, \"cat-0\": \"Category: five\", \"rankvar\": 21}, {\"group\": [21.0, 21.0, 21.0, 21.0, 17.0, 13.0, 7.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CALU-3\", \"clust\": 19, \"cat_1_index\": 21, \"cat_0_index\": 7, \"rank\": 8, \"cat-1\": \"Gender: Male\", \"ini\": 15, \"cat-0\": \"Category: four\", \"rankvar\": 7}, {\"group\": [17.0, 17.0, 17.0, 17.0, 13.0, 11.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2342\", \"clust\": 18, \"cat_1_index\": 3, \"cat_0_index\": 8, \"rank\": 26, \"cat-1\": \"Gender: Female\", \"ini\": 14, \"cat-0\": \"Category: four\", \"rankvar\": 22}, {\"group\": [26.0, 26.0, 26.0, 25.0, 19.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2228\", \"clust\": 26, \"cat_1_index\": 4, \"cat_0_index\": 15, \"rank\": 2, \"cat-1\": \"Gender: Female\", \"ini\": 13, \"cat-0\": \"Category: one\", \"rankvar\": 5}, {\"group\": [13.0, 13.0, 13.0, 13.0, 10.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1299\", \"clust\": 15, \"cat_1_index\": 22, \"cat_0_index\": 20, \"rank\": 12, \"cat-1\": \"Gender: Male\", \"ini\": 12, \"cat-0\": \"Category: three\", \"rankvar\": 1}, {\"group\": [9.0, 9.0, 9.0, 9.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1792\", \"clust\": 10, \"cat_1_index\": 23, \"cat_0_index\": 21, \"rank\": 20, \"cat-1\": \"Gender: Male\", \"ini\": 11, \"cat-0\": \"Category: three\", \"rankvar\": 9}, {\"group\": [10.0, 10.0, 10.0, 10.0, 8.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H460\", \"clust\": 11, \"cat_1_index\": 24, \"cat_0_index\": 22, \"rank\": 5, \"cat-1\": \"Gender: Male\", \"ini\": 10, \"cat-0\": \"Category: three\", \"rankvar\": 11}, {\"group\": [29.0, 29.0, 29.0, 28.0, 22.0, 17.0, 10.0, 5.0, 2.0, 1.0, 1.0], \"name\": \"Cell Line: H2106\", \"clust\": 0, \"cat_1_index\": 25, \"cat_0_index\": 9, \"rank\": 22, \"cat-1\": \"Gender: Male\", \"ini\": 9, \"cat-0\": \"Category: four\", \"rankvar\": 28}, {\"group\": [24.0, 24.0, 24.0, 24.0, 19.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H441\", \"clust\": 27, \"cat_1_index\": 26, \"cat_0_index\": 16, \"rank\": 27, \"cat-1\": \"Gender: Male\", \"ini\": 8, \"cat-0\": \"Category: one\", \"rankvar\": 14}, {\"group\": [7.0, 7.0, 7.0, 7.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1944\", \"clust\": 8, \"cat_1_index\": 5, \"cat_0_index\": 23, \"rank\": 23, \"cat-1\": \"Gender: Female\", \"ini\": 7, \"cat-0\": \"Category: three\", \"rankvar\": 10}, {\"group\": [5.0, 5.0, 5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1437\", \"clust\": 6, \"cat_1_index\": 27, \"cat_0_index\": 10, \"rank\": 16, \"cat-1\": \"Gender: Male\", \"ini\": 6, \"cat-0\": \"Category: four\", \"rankvar\": 17}, {\"group\": [23.0, 23.0, 23.0, 23.0, 18.0, 14.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1734\", \"clust\": 24, \"cat_1_index\": 6, \"cat_0_index\": 17, \"rank\": 19, \"cat-1\": \"Gender: Female\", \"ini\": 5, \"cat-0\": \"Category: one\", \"rankvar\": 18}, {\"group\": [14.0, 14.0, 14.0, 14.0, 11.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: LOU-NH91\", \"clust\": 13, \"cat_1_index\": 7, \"cat_0_index\": 5, \"rank\": 15, \"cat-1\": \"Gender: Female\", \"ini\": 4, \"cat-0\": \"Category: five\", \"rankvar\": 16}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC44\", \"clust\": 3, \"cat_1_index\": 8, \"cat_0_index\": 11, \"rank\": 14, \"cat-1\": \"Gender: Female\", \"ini\": 3, \"cat-0\": \"Category: four\", \"rankvar\": 2}, {\"group\": [8.0, 8.0, 8.0, 8.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: A549\", \"clust\": 9, \"cat_1_index\": 28, \"cat_0_index\": 12, \"rank\": 21, \"cat-1\": \"Gender: Male\", \"ini\": 2, \"cat-0\": \"Category: four\", \"rankvar\": 3}, {\"group\": [25.0, 25.0, 25.0, 24.0, 19.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1781\", \"clust\": 28, \"cat_1_index\": 9, \"cat_0_index\": 18, \"rank\": 13, \"cat-1\": \"Gender: Female\", \"ini\": 1, \"cat-0\": \"Category: one\", \"rankvar\": 13}]}}, {\"N_row_sum\": 20, \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"group\": [6.0, 6.0, 6.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK31\", \"clust\": 5, \"cat_0_index\": 0, \"rank\": 19, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 14, \"ini\": 20}, {\"group\": [19.0, 18.0, 18.0, 14.0, 11.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK24\", \"clust\": 18, \"cat_0_index\": 1, \"rank\": 0, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 18, \"ini\": 19}, {\"group\": [7.0, 7.0, 7.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK32A\", \"clust\": 6, \"cat_0_index\": 2, \"rank\": 18, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 15, \"ini\": 18}, {\"group\": [8.0, 8.0, 8.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NRK\", \"clust\": 9, \"cat_0_index\": 3, \"rank\": 17, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 16, \"ini\": 17}, {\"group\": [11.0, 11.0, 11.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: TBK1\", \"clust\": 7, \"cat_0_index\": 10, \"rank\": 16, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 10, \"ini\": 16}, {\"group\": [10.0, 10.0, 10.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: EGFR\", \"clust\": 8, \"cat_0_index\": 4, \"rank\": 15, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 3, \"ini\": 15}, {\"group\": [5.0, 5.0, 5.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MYLK3\", \"clust\": 2, \"cat_0_index\": 11, \"rank\": 14, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 17, \"ini\": 14}, {\"group\": [14.0, 14.0, 14.0, 11.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ROS1\", \"clust\": 11, \"cat_0_index\": 5, \"rank\": 13, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 19, \"ini\": 13}, {\"group\": [9.0, 9.0, 9.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: CDK4\", \"clust\": 10, \"cat_0_index\": 6, \"rank\": 12, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 8, \"ini\": 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\": \"Gene: LATS1\", \"clust\": 3, \"cat_0_index\": 12, \"rank\": 11, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 11, \"ini\": 11}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LMTK3\", \"clust\": 0, \"cat_0_index\": 13, \"rank\": 10, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 9, \"ini\": 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\": \"Gene: NPR1\", \"clust\": 1, \"cat_0_index\": 7, \"rank\": 9, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 13, \"ini\": 9}, {\"group\": [12.0, 12.0, 12.0, 9.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: UHMK1\", \"clust\": 12, \"cat_0_index\": 14, \"rank\": 8, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 5, \"ini\": 8}, {\"group\": [17.0, 16.0, 16.0, 12.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PRKG2\", \"clust\": 15, \"cat_0_index\": 15, \"rank\": 7, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 7, \"ini\": 7}, {\"group\": [15.0, 15.0, 15.0, 12.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: GRK4\", \"clust\": 16, \"cat_0_index\": 16, \"rank\": 1, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 1, \"ini\": 6}, {\"group\": [20.0, 19.0, 19.0, 15.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PDGFRA\", \"clust\": 19, \"cat_0_index\": 8, \"rank\": 2, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 0, \"ini\": 5}, {\"group\": [16.0, 15.0, 15.0, 12.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: CAMK2B\", \"clust\": 17, \"cat_0_index\": 17, \"rank\": 3, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 6, \"ini\": 4}, {\"group\": [13.0, 13.0, 13.0, 10.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ERBB2\", \"clust\": 13, \"cat_0_index\": 18, \"rank\": 6, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 4, \"ini\": 3}, {\"group\": [18.0, 17.0, 17.0, 13.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NEK9\", \"clust\": 14, \"cat_0_index\": 19, \"rank\": 4, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 2, \"ini\": 2}, {\"group\": [4.0, 4.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAP2K4\", \"clust\": 4, \"cat_0_index\": 9, \"rank\": 5, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 12, \"ini\": 1}], \"col_nodes\": [{\"group\": [14.0, 14.0, 12.0, 8.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1650\", \"clust\": 14, \"cat_1_index\": 10, \"cat_0_index\": 24, \"rank\": 7, \"cat-1\": \"Gender: Male\", \"ini\": 29, \"cat-0\": \"Category: two\", \"rankvar\": 3}, {\"group\": [4.0, 4.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H23\", \"clust\": 7, \"cat_1_index\": 11, \"cat_0_index\": 25, \"rank\": 14, \"cat-1\": \"Gender: Male\", \"ini\": 28, \"cat-0\": \"Category: two\", \"rankvar\": 12}, {\"group\": [20.0, 20.0, 18.0, 13.0, 8.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CAL-12T\", \"clust\": 20, \"cat_1_index\": 12, \"cat_0_index\": 26, \"rank\": 21, \"cat-1\": \"Gender: Male\", \"ini\": 27, \"cat-0\": \"Category: two\", \"rankvar\": 18}, {\"group\": [21.0, 21.0, 19.0, 14.0, 8.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H358\", \"clust\": 21, \"cat_1_index\": 13, \"cat_0_index\": 13, \"rank\": 15, \"cat-1\": \"Gender: Male\", \"ini\": 26, \"cat-0\": \"Category: one\", \"rankvar\": 2}, {\"group\": [27.0, 27.0, 24.0, 17.0, 10.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1975\", \"clust\": 27, \"cat_1_index\": 0, \"cat_0_index\": 27, \"rank\": 1, \"cat-1\": \"Gender: Female\", \"ini\": 25, \"cat-0\": \"Category: two\", \"rankvar\": 27}, {\"group\": [5.0, 5.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC15\", \"clust\": 8, \"cat_1_index\": 14, \"cat_0_index\": 28, \"rank\": 5, \"cat-1\": \"Gender: Male\", \"ini\": 24, \"cat-0\": \"Category: two\", \"rankvar\": 8}, {\"group\": [9.0, 9.0, 8.0, 5.0, 3.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1355\", \"clust\": 10, \"cat_1_index\": 15, \"cat_0_index\": 19, \"rank\": 16, \"cat-1\": \"Gender: Male\", \"ini\": 23, \"cat-0\": \"Category: three\", \"rankvar\": 9}, {\"group\": [25.0, 25.0, 22.0, 16.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC827\", \"clust\": 25, \"cat_1_index\": 1, \"cat_0_index\": 14, \"rank\": 28, \"cat-1\": \"Gender: Female\", \"ini\": 22, \"cat-0\": \"Category: one\", \"rankvar\": 26}, {\"group\": [16.0, 16.0, 14.0, 10.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2405\", \"clust\": 18, \"cat_1_index\": 16, \"cat_0_index\": 0, \"rank\": 4, \"cat-1\": \"Gender: Male\", \"ini\": 21, \"cat-0\": \"Category: five\", \"rankvar\": 20}, {\"group\": [18.0, 18.0, 16.0, 11.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC78\", \"clust\": 17, \"cat_1_index\": 17, \"cat_0_index\": 1, \"rank\": 26, \"cat-1\": \"Gender: Male\", \"ini\": 20, \"cat-0\": \"Category: five\", \"rankvar\": 28}, {\"group\": [17.0, 17.0, 15.0, 10.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1666\", \"clust\": 19, \"cat_1_index\": 2, \"cat_0_index\": 6, \"rank\": 3, \"cat-1\": \"Gender: Female\", \"ini\": 19, \"cat-0\": \"Category: four\", \"rankvar\": 4}, {\"group\": [3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H661\", \"clust\": 1, \"cat_1_index\": 18, \"cat_0_index\": 2, \"rank\": 18, \"cat-1\": \"Gender: Male\", \"ini\": 18, \"cat-0\": \"Category: five\", \"rankvar\": 21}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H838\", \"clust\": 2, \"cat_1_index\": 19, \"cat_0_index\": 3, \"rank\": 11, \"cat-1\": \"Gender: Male\", \"ini\": 17, \"cat-0\": \"Category: five\", \"rankvar\": 23}, {\"group\": [8.0, 8.0, 7.0, 4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1703\", \"clust\": 4, \"cat_1_index\": 20, \"cat_0_index\": 4, \"rank\": 10, \"cat-1\": \"Gender: Male\", \"ini\": 16, \"cat-0\": \"Category: five\", \"rankvar\": 15}, {\"group\": [15.0, 15.0, 13.0, 9.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CALU-3\", \"clust\": 15, \"cat_1_index\": 21, \"cat_0_index\": 7, \"rank\": 8, \"cat-1\": \"Gender: Male\", \"ini\": 15, \"cat-0\": \"Category: four\", \"rankvar\": 16}, {\"group\": [2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2342\", \"clust\": 3, \"cat_1_index\": 3, \"cat_0_index\": 8, \"rank\": 27, \"cat-1\": \"Gender: Female\", \"ini\": 14, \"cat-0\": \"Category: four\", \"rankvar\": 24}, {\"group\": [24.0, 24.0, 21.0, 15.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2228\", \"clust\": 22, \"cat_1_index\": 4, \"cat_0_index\": 15, \"rank\": 12, \"cat-1\": \"Gender: Female\", \"ini\": 13, \"cat-0\": \"Category: one\", \"rankvar\": 11}, {\"group\": [6.0, 6.0, 5.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1299\", \"clust\": 6, \"cat_1_index\": 22, \"cat_0_index\": 20, \"rank\": 6, \"cat-1\": \"Gender: Male\", \"ini\": 12, \"cat-0\": \"Category: three\", \"rankvar\": 5}, {\"group\": [28.0, 28.0, 25.0, 18.0, 11.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1792\", \"clust\": 28, \"cat_1_index\": 23, \"cat_0_index\": 21, \"rank\": 22, \"cat-1\": \"Gender: Male\", \"ini\": 11, \"cat-0\": \"Category: three\", \"rankvar\": 10}, {\"group\": [10.0, 10.0, 8.0, 5.0, 3.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H460\", \"clust\": 11, \"cat_1_index\": 24, \"cat_0_index\": 22, \"rank\": 0, \"cat-1\": \"Gender: Male\", \"ini\": 10, \"cat-0\": \"Category: three\", \"rankvar\": 1}, {\"group\": [29.0, 29.0, 26.0, 19.0, 12.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2106\", \"clust\": 0, \"cat_1_index\": 25, \"cat_0_index\": 9, \"rank\": 20, \"cat-1\": \"Gender: Male\", \"ini\": 9, \"cat-0\": \"Category: four\", \"rankvar\": 25}, {\"group\": [22.0, 22.0, 20.0, 15.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H441\", \"clust\": 23, \"cat_1_index\": 26, \"cat_0_index\": 16, \"rank\": 24, \"cat-1\": \"Gender: Male\", \"ini\": 8, \"cat-0\": \"Category: one\", \"rankvar\": 13}, {\"group\": [12.0, 12.0, 10.0, 6.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1944\", \"clust\": 12, \"cat_1_index\": 5, \"cat_0_index\": 23, \"rank\": 19, \"cat-1\": \"Gender: Female\", \"ini\": 7, \"cat-0\": \"Category: three\", \"rankvar\": 7}, {\"group\": [11.0, 11.0, 9.0, 5.0, 3.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1437\", \"clust\": 9, \"cat_1_index\": 27, \"cat_0_index\": 10, \"rank\": 17, \"cat-1\": \"Gender: Male\", \"ini\": 6, \"cat-0\": \"Category: four\", \"rankvar\": 22}, {\"group\": [26.0, 26.0, 23.0, 16.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1734\", \"clust\": 26, \"cat_1_index\": 6, \"cat_0_index\": 17, \"rank\": 25, \"cat-1\": \"Gender: Female\", \"ini\": 5, \"cat-0\": \"Category: one\", \"rankvar\": 19}, {\"group\": [19.0, 19.0, 17.0, 12.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: LOU-NH91\", \"clust\": 16, \"cat_1_index\": 7, \"cat_0_index\": 5, \"rank\": 2, \"cat-1\": \"Gender: Female\", \"ini\": 4, \"cat-0\": \"Category: five\", \"rankvar\": 14}, {\"group\": [7.0, 7.0, 6.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC44\", \"clust\": 5, \"cat_1_index\": 8, \"cat_0_index\": 11, \"rank\": 13, \"cat-1\": \"Gender: Female\", \"ini\": 3, \"cat-0\": \"Category: four\", \"rankvar\": 6}, {\"group\": [13.0, 13.0, 11.0, 7.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: A549\", \"clust\": 13, \"cat_1_index\": 28, \"cat_0_index\": 12, \"rank\": 9, \"cat-1\": \"Gender: Male\", \"ini\": 2, \"cat-0\": \"Category: four\", \"rankvar\": 0}, {\"group\": [23.0, 23.0, 20.0, 15.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1781\", \"clust\": 24, \"cat_1_index\": 9, \"cat_0_index\": 18, \"rank\": 23, \"cat-1\": \"Gender: Female\", \"ini\": 1, \"cat-0\": \"Category: one\", \"rankvar\": 17}]}}, {\"N_row_sum\": 10, \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0], \"name\": \"Gene: STK31\", \"clust\": 4, \"cat_0_index\": 0, \"rank\": 9, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 4, \"ini\": 10}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK24\", \"clust\": 0, \"cat_0_index\": 1, \"rank\": 0, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 8, \"ini\": 9}, {\"group\": [4.0, 4.0, 4.0, 4.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0], \"name\": \"Gene: STK32A\", \"clust\": 5, \"cat_0_index\": 2, \"rank\": 8, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 5, \"ini\": 8}, {\"group\": [5.0, 5.0, 5.0, 5.0, 4.0, 4.0, 3.0, 3.0, 2.0, 1.0, 1.0], \"name\": \"Gene: NRK\", \"clust\": 8, \"cat_0_index\": 3, \"rank\": 7, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 6, \"ini\": 7}, {\"group\": [8.0, 8.0, 8.0, 8.0, 5.0, 4.0, 3.0, 3.0, 2.0, 1.0, 1.0], \"name\": \"Gene: TBK1\", \"clust\": 6, \"cat_0_index\": 7, \"rank\": 6, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 2, \"ini\": 6}, {\"group\": [7.0, 7.0, 7.0, 7.0, 4.0, 4.0, 3.0, 3.0, 2.0, 1.0, 1.0], \"name\": \"Gene: EGFR\", \"clust\": 7, \"cat_0_index\": 4, \"rank\": 5, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 0, \"ini\": 5}, {\"group\": [9.0, 9.0, 9.0, 9.0, 6.0, 5.0, 4.0, 4.0, 2.0, 1.0, 1.0], \"name\": \"Gene: MYLK3\", \"clust\": 3, \"cat_0_index\": 8, \"rank\": 4, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 7, \"ini\": 4}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ROS1\", \"clust\": 1, \"cat_0_index\": 5, \"rank\": 3, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 9, \"ini\": 3}, {\"group\": [6.0, 6.0, 6.0, 6.0, 4.0, 4.0, 3.0, 3.0, 2.0, 1.0, 1.0], \"name\": \"Gene: CDK4\", \"clust\": 9, \"cat_0_index\": 6, \"rank\": 2, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 1, \"ini\": 2}, {\"group\": [10.0, 10.0, 10.0, 10.0, 7.0, 6.0, 5.0, 5.0, 2.0, 1.0, 1.0], \"name\": \"Gene: LATS1\", \"clust\": 2, \"cat_0_index\": 9, \"rank\": 1, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 3, \"ini\": 1}], \"col_nodes\": [{\"group\": [28.0, 23.0, 17.0, 11.0, 7.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1650\", \"clust\": 27, \"cat_1_index\": 10, \"cat_0_index\": 24, \"rank\": 7, \"cat-1\": \"Gender: Male\", \"ini\": 29, \"cat-0\": \"Category: two\", \"rankvar\": 9}, {\"group\": [6.0, 6.0, 4.0, 3.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H23\", \"clust\": 6, \"cat_1_index\": 11, \"cat_0_index\": 25, \"rank\": 19, \"cat-1\": \"Gender: Male\", \"ini\": 28, \"cat-0\": \"Category: two\", \"rankvar\": 20}, {\"group\": [5.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CAL-12T\", \"clust\": 0, \"cat_1_index\": 12, \"cat_0_index\": 26, \"rank\": 6, \"cat-1\": \"Gender: Male\", \"ini\": 27, \"cat-0\": \"Category: two\", \"rankvar\": 4}, {\"group\": [26.0, 21.0, 16.0, 10.0, 6.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H358\", \"clust\": 25, \"cat_1_index\": 13, \"cat_0_index\": 13, \"rank\": 11, \"cat-1\": \"Gender: Male\", \"ini\": 26, \"cat-0\": \"Category: one\", \"rankvar\": 0}, {\"group\": [13.0, 10.0, 7.0, 5.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1975\", \"clust\": 12, \"cat_1_index\": 0, \"cat_0_index\": 27, \"rank\": 0, \"cat-1\": \"Gender: Female\", \"ini\": 25, \"cat-0\": \"Category: two\", \"rankvar\": 27}, {\"group\": [8.0, 6.0, 4.0, 3.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC15\", \"clust\": 8, \"cat_1_index\": 14, \"cat_0_index\": 28, \"rank\": 13, \"cat-1\": \"Gender: Male\", \"ini\": 24, \"cat-0\": \"Category: two\", \"rankvar\": 16}, {\"group\": [14.0, 11.0, 7.0, 5.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1355\", \"clust\": 13, \"cat_1_index\": 15, \"cat_0_index\": 19, \"rank\": 4, \"cat-1\": \"Gender: Male\", \"ini\": 23, \"cat-0\": \"Category: three\", \"rankvar\": 8}, {\"group\": [29.0, 24.0, 18.0, 12.0, 7.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC827\", \"clust\": 28, \"cat_1_index\": 1, \"cat_0_index\": 14, \"rank\": 28, \"cat-1\": \"Gender: Female\", \"ini\": 22, \"cat-0\": \"Category: one\", \"rankvar\": 26}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2405\", \"clust\": 3, \"cat_1_index\": 16, \"cat_0_index\": 0, \"rank\": 18, \"cat-1\": \"Gender: Male\", \"ini\": 21, \"cat-0\": \"Category: five\", \"rankvar\": 10}, {\"group\": [2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC78\", \"clust\": 4, \"cat_1_index\": 17, \"cat_0_index\": 1, \"rank\": 27, \"cat-1\": \"Gender: Male\", \"ini\": 20, \"cat-0\": \"Category: five\", \"rankvar\": 28}, {\"group\": [4.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1666\", \"clust\": 1, \"cat_1_index\": 2, \"cat_0_index\": 6, \"rank\": 5, \"cat-1\": \"Gender: Female\", \"ini\": 19, \"cat-0\": \"Category: four\", \"rankvar\": 7}, {\"group\": [22.0, 19.0, 14.0, 9.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H661\", \"clust\": 19, \"cat_1_index\": 18, \"cat_0_index\": 2, \"rank\": 22, \"cat-1\": \"Gender: Male\", \"ini\": 18, \"cat-0\": \"Category: five\", \"rankvar\": 23}, {\"group\": [20.0, 17.0, 13.0, 9.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H838\", \"clust\": 20, \"cat_1_index\": 19, \"cat_0_index\": 3, \"rank\": 20, \"cat-1\": \"Gender: Male\", \"ini\": 17, \"cat-0\": \"Category: five\", \"rankvar\": 24}, {\"group\": [9.0, 6.0, 4.0, 3.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1703\", \"clust\": 9, \"cat_1_index\": 20, \"cat_0_index\": 4, \"rank\": 12, \"cat-1\": \"Gender: Male\", \"ini\": 16, \"cat-0\": \"Category: five\", \"rankvar\": 13}, {\"group\": [17.0, 14.0, 10.0, 7.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CALU-3\", \"clust\": 17, \"cat_1_index\": 21, \"cat_0_index\": 7, \"rank\": 9, \"cat-1\": \"Gender: Male\", \"ini\": 15, \"cat-0\": \"Category: four\", \"rankvar\": 5}, {\"group\": [21.0, 18.0, 13.0, 9.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2342\", \"clust\": 21, \"cat_1_index\": 3, \"cat_0_index\": 8, \"rank\": 26, \"cat-1\": \"Gender: Female\", \"ini\": 14, \"cat-0\": \"Category: four\", \"rankvar\": 25}, {\"group\": [23.0, 20.0, 15.0, 10.0, 6.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2228\", \"clust\": 23, \"cat_1_index\": 4, \"cat_0_index\": 15, \"rank\": 21, \"cat-1\": \"Gender: Female\", \"ini\": 13, \"cat-0\": \"Category: one\", \"rankvar\": 19}, {\"group\": [7.0, 6.0, 4.0, 3.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1299\", \"clust\": 7, \"cat_1_index\": 22, \"cat_0_index\": 20, \"rank\": 8, \"cat-1\": \"Gender: Male\", \"ini\": 12, \"cat-0\": \"Category: three\", \"rankvar\": 12}, {\"group\": [15.0, 12.0, 8.0, 6.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1792\", \"clust\": 14, \"cat_1_index\": 23, \"cat_0_index\": 21, \"rank\": 15, \"cat-1\": \"Gender: Male\", \"ini\": 11, \"cat-0\": \"Category: three\", \"rankvar\": 17}, {\"group\": [11.0, 8.0, 5.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H460\", \"clust\": 10, \"cat_1_index\": 24, \"cat_0_index\": 22, \"rank\": 2, \"cat-1\": \"Gender: Male\", \"ini\": 10, \"cat-0\": \"Category: three\", \"rankvar\": 3}, {\"group\": [18.0, 15.0, 11.0, 7.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2106\", \"clust\": 18, \"cat_1_index\": 25, \"cat_0_index\": 9, \"rank\": 3, \"cat-1\": \"Gender: Male\", \"ini\": 9, \"cat-0\": \"Category: four\", \"rankvar\": 14}, {\"group\": [25.0, 20.0, 15.0, 10.0, 6.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H441\", \"clust\": 22, \"cat_1_index\": 26, \"cat_0_index\": 16, \"rank\": 23, \"cat-1\": \"Gender: Male\", \"ini\": 8, \"cat-0\": \"Category: one\", \"rankvar\": 18}, {\"group\": [12.0, 9.0, 6.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1944\", \"clust\": 11, \"cat_1_index\": 5, \"cat_0_index\": 23, \"rank\": 16, \"cat-1\": \"Gender: Female\", \"ini\": 7, \"cat-0\": \"Category: three\", \"rankvar\": 15}, {\"group\": [19.0, 16.0, 12.0, 8.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1437\", \"clust\": 16, \"cat_1_index\": 27, \"cat_0_index\": 10, \"rank\": 1, \"cat-1\": \"Gender: Male\", \"ini\": 6, \"cat-0\": \"Category: four\", \"rankvar\": 1}, {\"group\": [27.0, 22.0, 16.0, 10.0, 6.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1734\", \"clust\": 26, \"cat_1_index\": 6, \"cat_0_index\": 17, \"rank\": 25, \"cat-1\": \"Gender: Female\", \"ini\": 5, \"cat-0\": \"Category: one\", \"rankvar\": 22}, {\"group\": [3.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: LOU-NH91\", \"clust\": 2, \"cat_1_index\": 7, \"cat_0_index\": 5, \"rank\": 14, \"cat-1\": \"Gender: Female\", \"ini\": 4, \"cat-0\": \"Category: five\", \"rankvar\": 6}, {\"group\": [10.0, 7.0, 4.0, 3.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC44\", \"clust\": 5, \"cat_1_index\": 8, \"cat_0_index\": 11, \"rank\": 17, \"cat-1\": \"Gender: Female\", \"ini\": 3, \"cat-0\": \"Category: four\", \"rankvar\": 11}, {\"group\": [16.0, 13.0, 9.0, 6.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: A549\", \"clust\": 15, \"cat_1_index\": 28, \"cat_0_index\": 12, \"rank\": 10, \"cat-1\": \"Gender: Male\", \"ini\": 2, \"cat-0\": \"Category: four\", \"rankvar\": 2}, {\"group\": [24.0, 20.0, 15.0, 10.0, 6.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1781\", \"clust\": 24, \"cat_1_index\": 9, \"cat_0_index\": 18, \"rank\": 24, \"cat-1\": \"Gender: Female\", \"ini\": 1, \"cat-0\": \"Category: one\", \"rankvar\": 21}]}}, {\"N_row_var\": \"all\", \"nodes\": {\"row_nodes\": [{\"group\": [10.0, 9.0, 8.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: CDK4\", \"clust\": 14, \"cat_0_index\": 0, \"rank\": 30, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 20, \"ini\": 38}, {\"group\": [21.0, 20.0, 19.0, 13.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LMTK3\", \"clust\": 20, \"cat_0_index\": 17, \"rank\": 28, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 24, \"ini\": 37}, {\"group\": [26.0, 25.0, 22.0, 16.0, 13.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LRRK2\", \"clust\": 26, \"cat_0_index\": 18, \"rank\": 9, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 10, \"ini\": 36}, {\"group\": [28.0, 27.0, 24.0, 18.0, 14.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: UHMK1\", \"clust\": 25, \"cat_0_index\": 19, \"rank\": 26, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 14, \"ini\": 35}, {\"group\": [12.0, 11.0, 10.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: EGFR\", \"clust\": 13, \"cat_0_index\": 1, \"rank\": 33, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 7, \"ini\": 34}, {\"group\": [33.0, 32.0, 29.0, 22.0, 17.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK32A\", \"clust\": 32, \"cat_0_index\": 2, \"rank\": 36, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 32, \"ini\": 33}, {\"group\": [11.0, 10.0, 9.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NRK\", \"clust\": 15, \"cat_0_index\": 3, \"rank\": 35, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 33, \"ini\": 32}, {\"group\": [35.0, 34.0, 31.0, 23.0, 18.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ERBB2\", \"clust\": 34, \"cat_0_index\": 20, \"rank\": 24, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 9, \"ini\": 31}, {\"group\": [31.0, 30.0, 27.0, 20.0, 16.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ERBB4\", \"clust\": 30, \"cat_0_index\": 21, \"rank\": 6, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 2, \"ini\": 30}, {\"group\": [37.0, 36.0, 33.0, 25.0, 19.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: AAK1\", \"clust\": 36, \"cat_0_index\": 22, \"rank\": 18, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 8, \"ini\": 29}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: SRPK3\", \"clust\": 4, \"cat_0_index\": 23, \"rank\": 8, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 15, \"ini\": 28}, {\"group\": [36.0, 35.0, 32.0, 24.0, 18.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK39\", \"clust\": 35, \"cat_0_index\": 4, \"rank\": 7, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 4, \"ini\": 27}, {\"group\": [3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: GRK4\", \"clust\": 3, \"cat_0_index\": 24, \"rank\": 1, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 3, \"ini\": 26}, {\"group\": [13.0, 12.0, 11.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: TBK1\", \"clust\": 12, \"cat_0_index\": 25, \"rank\": 34, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 26, \"ini\": 25}, {\"group\": [23.0, 22.0, 20.0, 14.0, 12.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: INSRR\", \"clust\": 23, \"cat_0_index\": 26, \"rank\": 13, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 5, \"ini\": 24}, {\"group\": [14.0, 13.0, 12.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: IRAK1\", \"clust\": 11, \"cat_0_index\": 5, \"rank\": 20, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 30, \"ini\": 23}, {\"group\": [34.0, 33.0, 30.0, 22.0, 17.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: KDR\", \"clust\": 33, \"cat_0_index\": 27, \"rank\": 19, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 11, \"ini\": 22}, {\"group\": [20.0, 19.0, 18.0, 12.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NPR1\", \"clust\": 16, \"cat_0_index\": 6, \"rank\": 27, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 29, \"ini\": 21}, {\"group\": [16.0, 15.0, 14.0, 9.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PAK3\", \"clust\": 9, \"cat_0_index\": 28, \"rank\": 11, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 12, \"ini\": 20}, {\"group\": [7.0, 6.0, 5.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PDGFRA\", \"clust\": 7, \"cat_0_index\": 7, \"rank\": 2, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 0, \"ini\": 19}, {\"group\": [24.0, 23.0, 20.0, 14.0, 12.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PDK4\", \"clust\": 24, \"cat_0_index\": 29, \"rank\": 22, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 22, \"ini\": 18}, {\"group\": [29.0, 28.0, 25.0, 19.0, 15.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ULK4\", \"clust\": 28, \"cat_0_index\": 8, \"rank\": 16, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 19, \"ini\": 17}, {\"group\": [22.0, 21.0, 19.0, 13.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PRKCE\", \"clust\": 21, \"cat_0_index\": 30, \"rank\": 14, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 1, \"ini\": 16}, {\"group\": [4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PRKG2\", \"clust\": 2, \"cat_0_index\": 31, \"rank\": 25, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 18, \"ini\": 15}, {\"group\": [17.0, 16.0, 15.0, 10.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAPK4\", \"clust\": 18, \"cat_0_index\": 9, \"rank\": 10, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 16, \"ini\": 14}, {\"group\": [8.0, 7.0, 6.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAPK11\", \"clust\": 8, \"cat_0_index\": 10, \"rank\": 17, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 34, \"ini\": 13}, {\"group\": [32.0, 31.0, 28.0, 21.0, 16.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK31\", \"clust\": 31, \"cat_0_index\": 11, \"rank\": 37, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 31, \"ini\": 12}, {\"group\": [18.0, 17.0, 16.0, 10.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: GRK1\", \"clust\": 19, \"cat_0_index\": 32, \"rank\": 15, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 23, \"ini\": 11}, {\"group\": [38.0, 37.0, 34.0, 26.0, 20.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ROS1\", \"clust\": 37, \"cat_0_index\": 12, \"rank\": 31, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 37, \"ini\": 10}, {\"group\": [15.0, 14.0, 13.0, 8.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAP2K4\", \"clust\": 10, \"cat_0_index\": 13, \"rank\": 23, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 28, \"ini\": 9}, {\"group\": [27.0, 26.0, 23.0, 17.0, 13.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: SRC\", \"clust\": 27, \"cat_0_index\": 14, \"rank\": 21, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 21, \"ini\": 8}, {\"group\": [19.0, 18.0, 17.0, 11.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: TGFBR1\", \"clust\": 17, \"cat_0_index\": 15, \"rank\": 12, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 13, \"ini\": 7}, {\"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: CAMK2B\", \"clust\": 5, \"cat_0_index\": 33, \"rank\": 3, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 17, \"ini\": 6}, {\"group\": [9.0, 8.0, 7.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK24\", \"clust\": 6, \"cat_0_index\": 16, \"rank\": 0, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 36, \"ini\": 5}, {\"group\": [5.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: DCLK3\", \"clust\": 1, \"cat_0_index\": 34, \"rank\": 5, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 25, \"ini\": 4}, {\"group\": [25.0, 24.0, 21.0, 15.0, 12.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LATS1\", \"clust\": 22, \"cat_0_index\": 35, \"rank\": 29, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 27, \"ini\": 3}, {\"group\": [6.0, 5.0, 4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NEK9\", \"clust\": 0, \"cat_0_index\": 36, \"rank\": 4, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 6, \"ini\": 2}, {\"group\": [30.0, 29.0, 26.0, 19.0, 15.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MYLK3\", \"clust\": 29, \"cat_0_index\": 37, \"rank\": 32, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 35, \"ini\": 1}], \"col_nodes\": [{\"group\": [15.0, 15.0, 15.0, 15.0, 12.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1650\", \"clust\": 12, \"cat_1_index\": 10, \"cat_0_index\": 24, \"rank\": 6, \"cat-1\": \"Gender: Male\", \"ini\": 29, \"cat-0\": \"Category: two\", \"rankvar\": 4}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H23\", \"clust\": 2, \"cat_1_index\": 11, \"cat_0_index\": 25, \"rank\": 17, \"cat-1\": \"Gender: Male\", \"ini\": 28, \"cat-0\": \"Category: two\", \"rankvar\": 8}, {\"group\": [6.0, 6.0, 6.0, 6.0, 5.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CAL-12T\", \"clust\": 4, \"cat_1_index\": 12, \"cat_0_index\": 26, \"rank\": 10, \"cat-1\": \"Gender: Male\", \"ini\": 27, \"cat-0\": \"Category: two\", \"rankvar\": 19}, {\"group\": [27.0, 27.0, 27.0, 26.0, 20.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H358\", \"clust\": 25, \"cat_1_index\": 13, \"cat_0_index\": 13, \"rank\": 4, \"cat-1\": \"Gender: Male\", \"ini\": 26, \"cat-0\": \"Category: one\", \"rankvar\": 0}, {\"group\": [28.0, 28.0, 28.0, 27.0, 21.0, 16.0, 9.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1975\", \"clust\": 22, \"cat_1_index\": 0, \"cat_0_index\": 27, \"rank\": 0, \"cat-1\": \"Gender: Female\", \"ini\": 25, \"cat-0\": \"Category: two\", \"rankvar\": 24}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC15\", \"clust\": 1, \"cat_1_index\": 14, \"cat_0_index\": 28, \"rank\": 24, \"cat-1\": \"Gender: Male\", \"ini\": 24, \"cat-0\": \"Category: two\", \"rankvar\": 20}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1355\", \"clust\": 5, \"cat_1_index\": 15, \"cat_0_index\": 19, \"rank\": 9, \"cat-1\": \"Gender: Male\", \"ini\": 23, \"cat-0\": \"Category: three\", \"rankvar\": 6}, {\"group\": [22.0, 22.0, 22.0, 22.0, 18.0, 14.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC827\", \"clust\": 23, \"cat_1_index\": 1, \"cat_0_index\": 14, \"rank\": 28, \"cat-1\": \"Gender: Female\", \"ini\": 22, \"cat-0\": \"Category: one\", \"rankvar\": 25}, {\"group\": [19.0, 19.0, 19.0, 19.0, 15.0, 12.0, 7.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2405\", \"clust\": 20, \"cat_1_index\": 16, \"cat_0_index\": 0, \"rank\": 1, \"cat-1\": \"Gender: Male\", \"ini\": 21, \"cat-0\": \"Category: five\", \"rankvar\": 12}, {\"group\": [20.0, 20.0, 20.0, 20.0, 16.0, 12.0, 7.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC78\", \"clust\": 21, \"cat_1_index\": 17, \"cat_0_index\": 1, \"rank\": 25, \"cat-1\": \"Gender: Male\", \"ini\": 20, \"cat-0\": \"Category: five\", \"rankvar\": 27}, {\"group\": [11.0, 11.0, 11.0, 11.0, 9.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1666\", \"clust\": 7, \"cat_1_index\": 2, \"cat_0_index\": 6, \"rank\": 18, \"cat-1\": \"Gender: Female\", \"ini\": 19, \"cat-0\": \"Category: four\", \"rankvar\": 15}, {\"group\": [18.0, 18.0, 18.0, 18.0, 14.0, 11.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H661\", \"clust\": 16, \"cat_1_index\": 18, \"cat_0_index\": 2, \"rank\": 3, \"cat-1\": \"Gender: Male\", \"ini\": 18, \"cat-0\": \"Category: five\", \"rankvar\": 26}, {\"group\": [16.0, 16.0, 16.0, 16.0, 13.0, 11.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H838\", \"clust\": 17, \"cat_1_index\": 19, \"cat_0_index\": 3, \"rank\": 7, \"cat-1\": \"Gender: Male\", \"ini\": 17, \"cat-0\": \"Category: five\", \"rankvar\": 23}, {\"group\": [12.0, 12.0, 12.0, 12.0, 10.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1703\", \"clust\": 14, \"cat_1_index\": 20, \"cat_0_index\": 4, \"rank\": 11, \"cat-1\": \"Gender: Male\", \"ini\": 16, \"cat-0\": \"Category: five\", \"rankvar\": 21}, {\"group\": [21.0, 21.0, 21.0, 21.0, 17.0, 13.0, 7.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CALU-3\", \"clust\": 19, \"cat_1_index\": 21, \"cat_0_index\": 7, \"rank\": 8, \"cat-1\": \"Gender: Male\", \"ini\": 15, \"cat-0\": \"Category: four\", \"rankvar\": 7}, {\"group\": [17.0, 17.0, 17.0, 17.0, 13.0, 11.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2342\", \"clust\": 18, \"cat_1_index\": 3, \"cat_0_index\": 8, \"rank\": 26, \"cat-1\": \"Gender: Female\", \"ini\": 14, \"cat-0\": \"Category: four\", \"rankvar\": 22}, {\"group\": [26.0, 26.0, 26.0, 25.0, 19.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2228\", \"clust\": 26, \"cat_1_index\": 4, \"cat_0_index\": 15, \"rank\": 2, \"cat-1\": \"Gender: Female\", \"ini\": 13, \"cat-0\": \"Category: one\", \"rankvar\": 5}, {\"group\": [13.0, 13.0, 13.0, 13.0, 10.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1299\", \"clust\": 15, \"cat_1_index\": 22, \"cat_0_index\": 20, \"rank\": 12, \"cat-1\": \"Gender: Male\", \"ini\": 12, \"cat-0\": \"Category: three\", \"rankvar\": 1}, {\"group\": [9.0, 9.0, 9.0, 9.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1792\", \"clust\": 10, \"cat_1_index\": 23, \"cat_0_index\": 21, \"rank\": 20, \"cat-1\": \"Gender: Male\", \"ini\": 11, \"cat-0\": \"Category: three\", \"rankvar\": 9}, {\"group\": [10.0, 10.0, 10.0, 10.0, 8.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H460\", \"clust\": 11, \"cat_1_index\": 24, \"cat_0_index\": 22, \"rank\": 5, \"cat-1\": \"Gender: Male\", \"ini\": 10, \"cat-0\": \"Category: three\", \"rankvar\": 11}, {\"group\": [29.0, 29.0, 29.0, 28.0, 22.0, 17.0, 10.0, 5.0, 2.0, 1.0, 1.0], \"name\": \"Cell Line: H2106\", \"clust\": 0, \"cat_1_index\": 25, \"cat_0_index\": 9, \"rank\": 22, \"cat-1\": \"Gender: Male\", \"ini\": 9, \"cat-0\": \"Category: four\", \"rankvar\": 28}, {\"group\": [24.0, 24.0, 24.0, 24.0, 19.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H441\", \"clust\": 27, \"cat_1_index\": 26, \"cat_0_index\": 16, \"rank\": 27, \"cat-1\": \"Gender: Male\", \"ini\": 8, \"cat-0\": \"Category: one\", \"rankvar\": 14}, {\"group\": [7.0, 7.0, 7.0, 7.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1944\", \"clust\": 8, \"cat_1_index\": 5, \"cat_0_index\": 23, \"rank\": 23, \"cat-1\": \"Gender: Female\", \"ini\": 7, \"cat-0\": \"Category: three\", \"rankvar\": 10}, {\"group\": [5.0, 5.0, 5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1437\", \"clust\": 6, \"cat_1_index\": 27, \"cat_0_index\": 10, \"rank\": 16, \"cat-1\": \"Gender: Male\", \"ini\": 6, \"cat-0\": \"Category: four\", \"rankvar\": 17}, {\"group\": [23.0, 23.0, 23.0, 23.0, 18.0, 14.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1734\", \"clust\": 24, \"cat_1_index\": 6, \"cat_0_index\": 17, \"rank\": 19, \"cat-1\": \"Gender: Female\", \"ini\": 5, \"cat-0\": \"Category: one\", \"rankvar\": 18}, {\"group\": [14.0, 14.0, 14.0, 14.0, 11.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: LOU-NH91\", \"clust\": 13, \"cat_1_index\": 7, \"cat_0_index\": 5, \"rank\": 15, \"cat-1\": \"Gender: Female\", \"ini\": 4, \"cat-0\": \"Category: five\", \"rankvar\": 16}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC44\", \"clust\": 3, \"cat_1_index\": 8, \"cat_0_index\": 11, \"rank\": 14, \"cat-1\": \"Gender: Female\", \"ini\": 3, \"cat-0\": \"Category: four\", \"rankvar\": 2}, {\"group\": [8.0, 8.0, 8.0, 8.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: A549\", \"clust\": 9, \"cat_1_index\": 28, \"cat_0_index\": 12, \"rank\": 21, \"cat-1\": \"Gender: Male\", \"ini\": 2, \"cat-0\": \"Category: four\", \"rankvar\": 3}, {\"group\": [25.0, 25.0, 25.0, 24.0, 19.0, 15.0, 8.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1781\", \"clust\": 28, \"cat_1_index\": 9, \"cat_0_index\": 18, \"rank\": 13, \"cat-1\": \"Gender: Female\", \"ini\": 1, \"cat-0\": \"Category: one\", \"rankvar\": 13}]}, \"dist\": \"cos\"}, {\"N_row_var\": 20, \"nodes\": {\"row_nodes\": [{\"group\": [20.0, 20.0, 20.0, 18.0, 15.0, 12.0, 7.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ROS1\", \"clust\": 17, \"cat_0_index\": 0, \"rank\": 14, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 19, \"ini\": 20}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK24\", \"clust\": 0, \"cat_0_index\": 1, \"rank\": 0, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 18, \"ini\": 19}, {\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MYLK3\", \"clust\": 2, \"cat_0_index\": 12, \"rank\": 15, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 17, \"ini\": 18}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAPK11\", \"clust\": 1, \"cat_0_index\": 2, \"rank\": 4, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 16, \"ini\": 17}, {\"group\": [7.0, 7.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NRK\", \"clust\": 8, \"cat_0_index\": 3, \"rank\": 17, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 15, \"ini\": 16}, {\"group\": [5.0, 5.0, 5.0, 4.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK32A\", \"clust\": 5, \"cat_0_index\": 4, \"rank\": 18, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 14, \"ini\": 15}, {\"group\": [6.0, 6.0, 6.0, 5.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK31\", \"clust\": 6, \"cat_0_index\": 5, \"rank\": 19, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 13, \"ini\": 14}, {\"group\": [17.0, 17.0, 17.0, 15.0, 12.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: IRAK1\", \"clust\": 14, \"cat_0_index\": 6, \"rank\": 5, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 12, \"ini\": 13}, {\"group\": [18.0, 18.0, 18.0, 16.0, 13.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NPR1\", \"clust\": 18, \"cat_0_index\": 7, \"rank\": 10, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 11, \"ini\": 12}, {\"group\": [10.0, 10.0, 10.0, 8.0, 6.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAP2K4\", \"clust\": 4, \"cat_0_index\": 8, \"rank\": 8, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 10, \"ini\": 11}, {\"group\": [13.0, 13.0, 13.0, 11.0, 8.0, 7.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LATS1\", \"clust\": 12, \"cat_0_index\": 13, \"rank\": 12, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 9, \"ini\": 10}, {\"group\": [9.0, 9.0, 9.0, 7.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: TBK1\", \"clust\": 7, \"cat_0_index\": 14, \"rank\": 16, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 8, \"ini\": 9}, {\"group\": [11.0, 11.0, 11.0, 9.0, 7.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: DCLK3\", \"clust\": 10, \"cat_0_index\": 15, \"rank\": 1, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 7, \"ini\": 8}, {\"group\": [19.0, 19.0, 19.0, 17.0, 14.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: LMTK3\", \"clust\": 19, \"cat_0_index\": 16, \"rank\": 11, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 6, \"ini\": 7}, {\"group\": [15.0, 15.0, 15.0, 13.0, 10.0, 8.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: GRK1\", \"clust\": 15, \"cat_0_index\": 17, \"rank\": 2, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 5, \"ini\": 6}, {\"group\": [14.0, 14.0, 14.0, 12.0, 9.0, 7.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PDK4\", \"clust\": 13, \"cat_0_index\": 18, \"rank\": 7, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 4, \"ini\": 5}, {\"group\": [16.0, 16.0, 16.0, 14.0, 11.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: SRC\", \"clust\": 16, \"cat_0_index\": 9, \"rank\": 6, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 3, \"ini\": 4}, {\"group\": [8.0, 8.0, 8.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: CDK4\", \"clust\": 9, \"cat_0_index\": 10, \"rank\": 13, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 2, \"ini\": 3}, {\"group\": [4.0, 4.0, 4.0, 3.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ULK4\", \"clust\": 3, \"cat_0_index\": 11, \"rank\": 3, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 1, \"ini\": 2}, {\"group\": [12.0, 12.0, 12.0, 10.0, 7.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: PRKG2\", \"clust\": 11, \"cat_0_index\": 19, \"rank\": 9, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 0, \"ini\": 1}], \"col_nodes\": [{\"group\": [4.0, 4.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1650\", \"clust\": 0, \"cat_1_index\": 10, \"cat_0_index\": 24, \"rank\": 2, \"cat-1\": \"Gender: Male\", \"ini\": 29, \"cat-0\": \"Category: two\", \"rankvar\": 2}, {\"group\": [8.0, 8.0, 7.0, 6.0, 4.0, 3.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H23\", \"clust\": 8, \"cat_1_index\": 11, \"cat_0_index\": 25, \"rank\": 24, \"cat-1\": \"Gender: Male\", \"ini\": 28, \"cat-0\": \"Category: two\", \"rankvar\": 13}, {\"group\": [17.0, 17.0, 16.0, 11.0, 7.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CAL-12T\", \"clust\": 17, \"cat_1_index\": 12, \"cat_0_index\": 26, \"rank\": 10, \"cat-1\": \"Gender: Male\", \"ini\": 27, \"cat-0\": \"Category: two\", \"rankvar\": 15}, {\"group\": [18.0, 18.0, 17.0, 12.0, 7.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H358\", \"clust\": 18, \"cat_1_index\": 13, \"cat_0_index\": 13, \"rank\": 8, \"cat-1\": \"Gender: Male\", \"ini\": 26, \"cat-0\": \"Category: one\", \"rankvar\": 3}, {\"group\": [29.0, 29.0, 27.0, 20.0, 14.0, 10.0, 5.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1975\", \"clust\": 23, \"cat_1_index\": 0, \"cat_0_index\": 27, \"rank\": 0, \"cat-1\": \"Gender: Female\", \"ini\": 25, \"cat-0\": \"Category: two\", \"rankvar\": 26}, {\"group\": [10.0, 10.0, 9.0, 7.0, 4.0, 3.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC15\", \"clust\": 7, \"cat_1_index\": 14, \"cat_0_index\": 28, \"rank\": 22, \"cat-1\": \"Gender: Male\", \"ini\": 24, \"cat-0\": \"Category: two\", \"rankvar\": 21}, {\"group\": [15.0, 15.0, 14.0, 10.0, 6.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1355\", \"clust\": 15, \"cat_1_index\": 15, \"cat_0_index\": 19, \"rank\": 9, \"cat-1\": \"Gender: Male\", \"ini\": 23, \"cat-0\": \"Category: three\", \"rankvar\": 11}, {\"group\": [24.0, 24.0, 23.0, 18.0, 12.0, 9.0, 5.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC827\", \"clust\": 24, \"cat_1_index\": 1, \"cat_0_index\": 14, \"rank\": 28, \"cat-1\": \"Gender: Female\", \"ini\": 22, \"cat-0\": \"Category: one\", \"rankvar\": 25}, {\"group\": [22.0, 22.0, 21.0, 16.0, 10.0, 8.0, 5.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2405\", \"clust\": 21, \"cat_1_index\": 16, \"cat_0_index\": 0, \"rank\": 1, \"cat-1\": \"Gender: Male\", \"ini\": 21, \"cat-0\": \"Category: five\", \"rankvar\": 17}, {\"group\": [23.0, 23.0, 22.0, 17.0, 11.0, 8.0, 5.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC78\", \"clust\": 22, \"cat_1_index\": 17, \"cat_0_index\": 1, \"rank\": 26, \"cat-1\": \"Gender: Male\", \"ini\": 20, \"cat-0\": \"Category: five\", \"rankvar\": 28}, {\"group\": [20.0, 20.0, 19.0, 14.0, 9.0, 8.0, 5.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1666\", \"clust\": 19, \"cat_1_index\": 2, \"cat_0_index\": 6, \"rank\": 6, \"cat-1\": \"Gender: Female\", \"ini\": 19, \"cat-0\": \"Category: four\", \"rankvar\": 8}, {\"group\": [7.0, 7.0, 6.0, 5.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H661\", \"clust\": 4, \"cat_1_index\": 18, \"cat_0_index\": 2, \"rank\": 7, \"cat-1\": \"Gender: Male\", \"ini\": 18, \"cat-0\": \"Category: five\", \"rankvar\": 27}, {\"group\": [5.0, 5.0, 4.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H838\", \"clust\": 5, \"cat_1_index\": 19, \"cat_0_index\": 3, \"rank\": 20, \"cat-1\": \"Gender: Male\", \"ini\": 17, \"cat-0\": \"Category: five\", \"rankvar\": 23}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1703\", \"clust\": 2, \"cat_1_index\": 20, \"cat_0_index\": 4, \"rank\": 17, \"cat-1\": \"Gender: Male\", \"ini\": 16, \"cat-0\": \"Category: five\", \"rankvar\": 19}, {\"group\": [21.0, 21.0, 20.0, 15.0, 9.0, 8.0, 5.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CALU-3\", \"clust\": 20, \"cat_1_index\": 21, \"cat_0_index\": 7, \"rank\": 3, \"cat-1\": \"Gender: Male\", \"ini\": 15, \"cat-0\": \"Category: four\", \"rankvar\": 1}, {\"group\": [6.0, 6.0, 5.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2342\", \"clust\": 6, \"cat_1_index\": 3, \"cat_0_index\": 8, \"rank\": 27, \"cat-1\": \"Gender: Female\", \"ini\": 14, \"cat-0\": \"Category: four\", \"rankvar\": 24}, {\"group\": [28.0, 28.0, 26.0, 19.0, 13.0, 9.0, 5.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2228\", \"clust\": 26, \"cat_1_index\": 4, \"cat_0_index\": 15, \"rank\": 4, \"cat-1\": \"Gender: Female\", \"ini\": 13, \"cat-0\": \"Category: one\", \"rankvar\": 9}, {\"group\": [2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1299\", \"clust\": 3, \"cat_1_index\": 22, \"cat_0_index\": 20, \"rank\": 13, \"cat-1\": \"Gender: Male\", \"ini\": 12, \"cat-0\": \"Category: three\", \"rankvar\": 4}, {\"group\": [13.0, 13.0, 12.0, 8.0, 5.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1792\", \"clust\": 11, \"cat_1_index\": 23, \"cat_0_index\": 21, \"rank\": 12, \"cat-1\": \"Gender: Male\", \"ini\": 11, \"cat-0\": \"Category: three\", \"rankvar\": 14}, {\"group\": [11.0, 11.0, 10.0, 8.0, 5.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H460\", \"clust\": 12, \"cat_1_index\": 24, \"cat_0_index\": 22, \"rank\": 5, \"cat-1\": \"Gender: Male\", \"ini\": 10, \"cat-0\": \"Category: three\", \"rankvar\": 7}, {\"group\": [19.0, 19.0, 18.0, 13.0, 8.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2106\", \"clust\": 14, \"cat_1_index\": 25, \"cat_0_index\": 9, \"rank\": 14, \"cat-1\": \"Gender: Male\", \"ini\": 9, \"cat-0\": \"Category: four\", \"rankvar\": 18}, {\"group\": [26.0, 26.0, 25.0, 19.0, 13.0, 9.0, 5.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H441\", \"clust\": 27, \"cat_1_index\": 26, \"cat_0_index\": 16, \"rank\": 25, \"cat-1\": \"Gender: Male\", \"ini\": 8, \"cat-0\": \"Category: one\", \"rankvar\": 10}, {\"group\": [14.0, 14.0, 13.0, 9.0, 5.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1944\", \"clust\": 10, \"cat_1_index\": 5, \"cat_0_index\": 23, \"rank\": 23, \"cat-1\": \"Gender: Female\", \"ini\": 7, \"cat-0\": \"Category: three\", \"rankvar\": 5}, {\"group\": [16.0, 16.0, 15.0, 10.0, 6.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1437\", \"clust\": 16, \"cat_1_index\": 27, \"cat_0_index\": 10, \"rank\": 15, \"cat-1\": \"Gender: Male\", \"ini\": 6, \"cat-0\": \"Category: four\", \"rankvar\": 20}, {\"group\": [25.0, 25.0, 24.0, 18.0, 12.0, 9.0, 5.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1734\", \"clust\": 25, \"cat_1_index\": 6, \"cat_0_index\": 17, \"rank\": 18, \"cat-1\": \"Gender: Female\", \"ini\": 5, \"cat-0\": \"Category: one\", \"rankvar\": 22}, {\"group\": [3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: LOU-NH91\", \"clust\": 1, \"cat_1_index\": 7, \"cat_0_index\": 5, \"rank\": 19, \"cat-1\": \"Gender: Female\", \"ini\": 4, \"cat-0\": \"Category: five\", \"rankvar\": 12}, {\"group\": [9.0, 9.0, 8.0, 6.0, 4.0, 3.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC44\", \"clust\": 9, \"cat_1_index\": 8, \"cat_0_index\": 11, \"rank\": 11, \"cat-1\": \"Gender: Female\", \"ini\": 3, \"cat-0\": \"Category: four\", \"rankvar\": 0}, {\"group\": [12.0, 12.0, 11.0, 8.0, 5.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: A549\", \"clust\": 13, \"cat_1_index\": 28, \"cat_0_index\": 12, \"rank\": 21, \"cat-1\": \"Gender: Male\", \"ini\": 2, \"cat-0\": \"Category: four\", \"rankvar\": 6}, {\"group\": [27.0, 27.0, 25.0, 19.0, 13.0, 9.0, 5.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1781\", \"clust\": 28, \"cat_1_index\": 9, \"cat_0_index\": 18, \"rank\": 16, \"cat-1\": \"Gender: Female\", \"ini\": 1, \"cat-0\": \"Category: one\", \"rankvar\": 16}]}, \"dist\": \"cos\"}, {\"N_row_var\": 10, \"nodes\": {\"row_nodes\": [{\"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: ROS1\", \"clust\": 3, \"cat_0_index\": 0, \"rank\": 5, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 9, \"ini\": 10}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK24\", \"clust\": 0, \"cat_0_index\": 1, \"rank\": 0, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 8, \"ini\": 9}, {\"group\": [9.0, 9.0, 9.0, 9.0, 8.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MYLK3\", \"clust\": 5, \"cat_0_index\": 9, \"rank\": 6, \"cat-0\": \"Gene Type: Not Interesting\", \"rankvar\": 7, \"ini\": 8}, {\"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAPK11\", \"clust\": 1, \"cat_0_index\": 2, \"rank\": 1, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 6, \"ini\": 7}, {\"group\": [7.0, 7.0, 7.0, 7.0, 6.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NRK\", \"clust\": 7, \"cat_0_index\": 3, \"rank\": 7, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 5, \"ini\": 6}, {\"group\": [5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK32A\", \"clust\": 8, \"cat_0_index\": 4, \"rank\": 8, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 4, \"ini\": 5}, {\"group\": [6.0, 6.0, 6.0, 6.0, 5.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Gene: STK31\", \"clust\": 9, \"cat_0_index\": 5, \"rank\": 9, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 3, \"ini\": 4}, {\"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0], \"name\": \"Gene: IRAK1\", \"clust\": 4, \"cat_0_index\": 6, \"rank\": 2, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 2, \"ini\": 3}, {\"group\": [10.0, 10.0, 10.0, 10.0, 9.0, 8.0, 7.0, 4.0, 1.0, 1.0, 1.0], \"name\": \"Gene: NPR1\", \"clust\": 2, \"cat_0_index\": 7, \"rank\": 4, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 1, \"ini\": 2}, {\"group\": [8.0, 8.0, 8.0, 8.0, 7.0, 6.0, 5.0, 3.0, 1.0, 1.0, 1.0], \"name\": \"Gene: MAP2K4\", \"clust\": 6, \"cat_0_index\": 8, \"rank\": 3, \"cat-0\": \"Gene Type: Interesting\", \"rankvar\": 0, \"ini\": 1}], \"col_nodes\": [{\"group\": [4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1650\", \"clust\": 0, \"cat_1_index\": 10, \"cat_0_index\": 24, \"rank\": 17, \"cat-1\": \"Gender: Male\", \"ini\": 29, \"cat-0\": \"Category: two\", \"rankvar\": 9}, {\"group\": [11.0, 9.0, 6.0, 4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H23\", \"clust\": 10, \"cat_1_index\": 11, \"cat_0_index\": 25, \"rank\": 9, \"cat-1\": \"Gender: Male\", \"ini\": 28, \"cat-0\": \"Category: two\", \"rankvar\": 5}, {\"group\": [12.0, 10.0, 7.0, 4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CAL-12T\", \"clust\": 11, \"cat_1_index\": 12, \"cat_0_index\": 26, \"rank\": 11, \"cat-1\": \"Gender: Male\", \"ini\": 27, \"cat-0\": \"Category: two\", \"rankvar\": 2}, {\"group\": [24.0, 20.0, 14.0, 9.0, 5.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H358\", \"clust\": 21, \"cat_1_index\": 13, \"cat_0_index\": 13, \"rank\": 13, \"cat-1\": \"Gender: Male\", \"ini\": 26, \"cat-0\": \"Category: one\", \"rankvar\": 3}, {\"group\": [27.0, 23.0, 16.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1975\", \"clust\": 27, \"cat_1_index\": 0, \"cat_0_index\": 27, \"rank\": 0, \"cat-1\": \"Gender: Female\", \"ini\": 25, \"cat-0\": \"Category: two\", \"rankvar\": 27}, {\"group\": [28.0, 24.0, 17.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC15\", \"clust\": 28, \"cat_1_index\": 14, \"cat_0_index\": 28, \"rank\": 1, \"cat-1\": \"Gender: Male\", \"ini\": 24, \"cat-0\": \"Category: two\", \"rankvar\": 1}, {\"group\": [10.0, 8.0, 5.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1355\", \"clust\": 7, \"cat_1_index\": 15, \"cat_0_index\": 19, \"rank\": 8, \"cat-1\": \"Gender: Male\", \"ini\": 23, \"cat-0\": \"Category: three\", \"rankvar\": 17}, {\"group\": [22.0, 19.0, 13.0, 9.0, 5.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC827\", \"clust\": 22, \"cat_1_index\": 1, \"cat_0_index\": 14, \"rank\": 25, \"cat-1\": \"Gender: Female\", \"ini\": 22, \"cat-0\": \"Category: one\", \"rankvar\": 24}, {\"group\": [13.0, 11.0, 8.0, 5.0, 3.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2405\", \"clust\": 13, \"cat_1_index\": 16, \"cat_0_index\": 0, \"rank\": 3, \"cat-1\": \"Gender: Male\", \"ini\": 21, \"cat-0\": \"Category: five\", \"rankvar\": 19}, {\"group\": [15.0, 13.0, 9.0, 6.0, 3.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC78\", \"clust\": 12, \"cat_1_index\": 17, \"cat_0_index\": 1, \"rank\": 28, \"cat-1\": \"Gender: Male\", \"ini\": 20, \"cat-0\": \"Category: five\", \"rankvar\": 28}, {\"group\": [14.0, 12.0, 8.0, 5.0, 3.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1666\", \"clust\": 14, \"cat_1_index\": 2, \"cat_0_index\": 6, \"rank\": 4, \"cat-1\": \"Gender: Female\", \"ini\": 19, \"cat-0\": \"Category: four\", \"rankvar\": 8}, {\"group\": [18.0, 16.0, 11.0, 8.0, 4.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H661\", \"clust\": 15, \"cat_1_index\": 18, \"cat_0_index\": 2, \"rank\": 18, \"cat-1\": \"Gender: Male\", \"ini\": 18, \"cat-0\": \"Category: five\", \"rankvar\": 26}, {\"group\": [16.0, 14.0, 10.0, 7.0, 4.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H838\", \"clust\": 16, \"cat_1_index\": 19, \"cat_0_index\": 3, \"rank\": 19, \"cat-1\": \"Gender: Male\", \"ini\": 17, \"cat-0\": \"Category: five\", \"rankvar\": 23}, {\"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1703\", \"clust\": 2, \"cat_1_index\": 20, \"cat_0_index\": 4, \"rank\": 21, \"cat-1\": \"Gender: Male\", \"ini\": 16, \"cat-0\": \"Category: five\", \"rankvar\": 21}, {\"group\": [25.0, 21.0, 15.0, 10.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: CALU-3\", \"clust\": 24, \"cat_1_index\": 21, \"cat_0_index\": 7, \"rank\": 5, \"cat-1\": \"Gender: Male\", \"ini\": 15, \"cat-0\": \"Category: four\", \"rankvar\": 7}, {\"group\": [17.0, 15.0, 10.0, 7.0, 4.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2342\", \"clust\": 17, \"cat_1_index\": 3, \"cat_0_index\": 8, \"rank\": 27, \"cat-1\": \"Gender: Female\", \"ini\": 14, \"cat-0\": \"Category: four\", \"rankvar\": 25}, {\"group\": [19.0, 17.0, 12.0, 9.0, 5.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2228\", \"clust\": 19, \"cat_1_index\": 4, \"cat_0_index\": 15, \"rank\": 16, \"cat-1\": \"Gender: Female\", \"ini\": 13, \"cat-0\": \"Category: one\", \"rankvar\": 16}, {\"group\": [3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1299\", \"clust\": 1, \"cat_1_index\": 22, \"cat_0_index\": 20, \"rank\": 10, \"cat-1\": \"Gender: Male\", \"ini\": 12, \"cat-0\": \"Category: three\", \"rankvar\": 11}, {\"group\": [29.0, 25.0, 18.0, 11.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1792\", \"clust\": 26, \"cat_1_index\": 23, \"cat_0_index\": 21, \"rank\": 2, \"cat-1\": \"Gender: Male\", \"ini\": 11, \"cat-0\": \"Category: three\", \"rankvar\": 10}, {\"group\": [8.0, 7.0, 5.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H460\", \"clust\": 8, \"cat_1_index\": 24, \"cat_0_index\": 22, \"rank\": 7, \"cat-1\": \"Gender: Male\", \"ini\": 10, \"cat-0\": \"Category: three\", \"rankvar\": 13}, {\"group\": [26.0, 22.0, 15.0, 10.0, 6.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H2106\", \"clust\": 25, \"cat_1_index\": 25, \"cat_0_index\": 9, \"rank\": 6, \"cat-1\": \"Gender: Male\", \"ini\": 9, \"cat-0\": \"Category: four\", \"rankvar\": 12}, {\"group\": [21.0, 18.0, 12.0, 9.0, 5.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H441\", \"clust\": 18, \"cat_1_index\": 26, \"cat_0_index\": 16, \"rank\": 26, \"cat-1\": \"Gender: Male\", \"ini\": 8, \"cat-0\": \"Category: one\", \"rankvar\": 15}, {\"group\": [5.0, 4.0, 3.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1944\", \"clust\": 5, \"cat_1_index\": 5, \"cat_0_index\": 23, \"rank\": 14, \"cat-1\": \"Gender: Female\", \"ini\": 7, \"cat-0\": \"Category: three\", \"rankvar\": 4}, {\"group\": [9.0, 7.0, 5.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1437\", \"clust\": 9, \"cat_1_index\": 27, \"cat_0_index\": 10, \"rank\": 20, \"cat-1\": \"Gender: Male\", \"ini\": 6, \"cat-0\": \"Category: four\", \"rankvar\": 22}, {\"group\": [23.0, 19.0, 13.0, 9.0, 5.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1734\", \"clust\": 23, \"cat_1_index\": 6, \"cat_0_index\": 17, \"rank\": 23, \"cat-1\": \"Gender: Female\", \"ini\": 5, \"cat-0\": \"Category: one\", \"rankvar\": 20}, {\"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: LOU-NH91\", \"clust\": 3, \"cat_1_index\": 7, \"cat_0_index\": 5, \"rank\": 22, \"cat-1\": \"Gender: Female\", \"ini\": 4, \"cat-0\": \"Category: five\", \"rankvar\": 14}, {\"group\": [7.0, 6.0, 4.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: HCC44\", \"clust\": 4, \"cat_1_index\": 8, \"cat_0_index\": 11, \"rank\": 15, \"cat-1\": \"Gender: Female\", \"ini\": 3, \"cat-0\": \"Category: four\", \"rankvar\": 0}, {\"group\": [6.0, 5.0, 3.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: A549\", \"clust\": 6, \"cat_1_index\": 28, \"cat_0_index\": 12, \"rank\": 12, \"cat-1\": \"Gender: Male\", \"ini\": 2, \"cat-0\": \"Category: four\", \"rankvar\": 6}, {\"group\": [20.0, 17.0, 12.0, 9.0, 5.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"name\": \"Cell Line: H1781\", \"clust\": 20, \"cat_1_index\": 9, \"cat_0_index\": 18, \"rank\": 24, \"cat-1\": \"Gender: Female\", \"ini\": 1, \"cat-0\": \"Category: one\", \"rankvar\": 18}]}, \"dist\": \"cos\"}]}", "viz_title": "updating python by restarting kernel" } } }, "version_major": 1, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 1 }