From 716db2d4b7d468d1fd4b1f96903e12c71a47bb25 Mon Sep 17 00:00:00 2001
From: didihou <didi.hou@rwth-aachen.de>
Date: Tue, 22 Aug 2023 15:26:41 +0200
Subject: [PATCH] /

---
 multi-area-model.ipynb                        | 316 ++++++++++++++++--
 .../viscortex_processed_data.json             |   2 +-
 2 files changed, 282 insertions(+), 36 deletions(-)

diff --git a/multi-area-model.ipynb b/multi-area-model.ipynb
index 7ad71e4..c3a3036 100644
--- a/multi-area-model.ipynb
+++ b/multi-area-model.ipynb
@@ -11,7 +11,9 @@
   {
    "cell_type": "markdown",
    "id": "b952d0ea",
-   "metadata": {},
+   "metadata": {
+    "tags": []
+   },
    "source": [
     "#### Notebook structure <a class=\"anchor\" id=\"toc\"></a>\n",
     "* [S0. Configuration](#section_0)\n",
@@ -47,10 +49,34 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 1,
    "id": "96517739",
-   "metadata": {},
-   "outputs": [],
+   "metadata": {
+    "tags": []
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "\n",
+      "              -- N E S T --\n",
+      "  Copyright (C) 2004 The NEST Initiative\n",
+      "\n",
+      " Version: 3.4\n",
+      " Built: May 17 2023 20:48:31\n",
+      "\n",
+      " This program is provided AS IS and comes with\n",
+      " NO WARRANTY. See the file LICENSE for details.\n",
+      "\n",
+      " Problems or suggestions?\n",
+      "   Visit https://www.nest-simulator.org\n",
+      "\n",
+      " Type 'nest.help()' to find out more about NEST.\n",
+      "\n"
+     ]
+    }
+   ],
    "source": [
     "# Import dependencies\n",
     "%matplotlib inline\n",
@@ -67,7 +93,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 2,
    "id": "2dd47c64",
    "metadata": {},
    "outputs": [],
@@ -85,22 +111,48 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 3,
    "id": "7e07b0d0",
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Requirement already satisfied: nested_dict in /srv/main-spack-instance-2302/spack/var/spack/environments/ebrains-23-02/.spack-env/._view/6axslmv6jvf4v2nte3uwlayg4vhsjoha/lib/python3.8/site-packages (1.61)\n",
+      "Requirement already satisfied: dicthash in /srv/main-spack-instance-2302/spack/var/spack/environments/ebrains-23-02/.spack-env/._view/6axslmv6jvf4v2nte3uwlayg4vhsjoha/lib/python3.8/site-packages (0.0.2)\n",
+      "Requirement already satisfied: future in /srv/main-spack-instance-2302/spack/var/spack/environments/ebrains-23-02/.spack-env/._view/6axslmv6jvf4v2nte3uwlayg4vhsjoha/lib/python3.8/site-packages (from dicthash) (0.18.2)\n"
+     ]
+    }
+   ],
    "source": [
     "!pip install nested_dict dicthash"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 4,
    "id": "1d440c07-9b69-4e52-8573-26b13493bc5a",
    "metadata": {
     "tags": []
    },
-   "outputs": [],
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "\n",
+       "<style>\n",
+       "table {float:left}\n",
+       "</style>\n"
+      ],
+      "text/plain": [
+       "<IPython.core.display.HTML object>"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
    "source": [
     "# Jupyter notebook display format setting\n",
     "style = \"\"\"\n",
@@ -153,7 +205,7 @@
     "|Parameter                         |Variable                    |Value               |Value description  |\n",
     "|:--------------------------------:|:--------------------------:|:------------------:|:------------------|\n",
     "|Scaling factor                    |scale_down_to               |0.005               |$^1$               |\n",
-    "|Ground state to metastable state  |cc_weights_factor           |                    |$^2$               |\n",
+    "|Ground state to metastable state  |cc_weights_factor           |1.0                 |$^2$               |\n",
     "|Replace non-simulated areas       |replace_non_simulated_areas |'het_poisson_stat'  |$^3$               |\n",
     "|Simulation areas                  |sim_areas                   |                    |$^4$               |"
    ]
@@ -177,7 +229,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 5,
    "id": "60265d52",
    "metadata": {},
    "outputs": [],
@@ -189,7 +241,7 @@
     "# This scaling factor controls the cortico-cortical synaptic strength. If it is 1.0 then the inter-area synaptic strength is the same as the intra-areal. This factor changes the network activity from ground to metastable.\n",
     "cc_weights_factor = 1.\n",
     "replace_non_simulated_areas = 'het_poisson_stat'\n",
-    "sim_areas = "
+    "# sim_areas = "
    ]
   },
   {
@@ -204,7 +256,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 6,
    "id": "6e4bed8d",
    "metadata": {},
    "outputs": [],
@@ -287,10 +339,70 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 7,
    "id": "ab25f9f8",
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Initializing network from dictionary.\n",
+      "RAND_DATA_LABEL 3497\n"
+     ]
+    },
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "/srv/main-spack-instance-2302/spack/opt/spack/linux-ubuntu20.04-x86_64/gcc-10.3.0/py-numpy-1.21.6-6fewtq7oarp3vtwlxrrcofz5sxwt55s7/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3440: RuntimeWarning:Mean of empty slice.\n",
+      "/srv/main-spack-instance-2302/spack/opt/spack/linux-ubuntu20.04-x86_64/gcc-10.3.0/py-numpy-1.21.6-6fewtq7oarp3vtwlxrrcofz5sxwt55s7/lib/python3.8/site-packages/numpy/core/_methods.py:189: RuntimeWarning:invalid value encountered in double_scalars\n",
+      "Error in library(\"aod\") : there is no package called ‘aod’\n",
+      "Execution halted\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "No R installation or IndexError, taking hard-coded SLN fit parameters.\n",
+      "\n",
+      "\n",
+      "========================================\n",
+      "Customized parameters\n",
+      "--------------------\n",
+      "{'K_scaling': 0.005,\n",
+      " 'N_scaling': 0.005,\n",
+      " 'connection_params': {'K_stable': 'K_stable.npy',\n",
+      "                       'av_indegree_V1': 3950.0,\n",
+      "                       'fac_nu_ext_5E': 1.125,\n",
+      "                       'fac_nu_ext_6E': 1.41666667,\n",
+      "                       'fac_nu_ext_TH': 1.2,\n",
+      "                       'g': -11.0,\n",
+      "                       'replace_non_simulated_areas': 'het_poisson_stat'},\n",
+      " 'fullscale_rates': 'tests/fullscale_rates.json',\n",
+      " 'input_params': {'rate_ext': 10.0},\n",
+      " 'neuron_params': {'V0_mean': -150.0, 'V0_sd': 50.0}}\n",
+      "========================================\n"
+     ]
+    },
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "/srv/main-spack-instance-2302/spack/var/spack/environments/ebrains-23-02/.spack-env/view/lib/python3.8/site-packages/dicthash/dicthash.py:47: UserWarning:Float too small for safe conversion tointeger. Rounding down to zero.\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Simulation label: 27d81076e6d6e9e591684be053078477\n",
+      "Copied files.\n",
+      "Initialized simulation class.\n"
+     ]
+    }
+   ],
    "source": [
     "M = MultiAreaModel(network_params, simulation=True,\n",
     "                   sim_spec=sim_params,\n",
@@ -308,10 +420,19 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 8,
    "id": "6a7ddf0e",
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Iteration: 0\n",
+      "Mean-field theory predicts an average rate of 29.588 spikes/s across all populations.\n"
+     ]
+    }
+   ],
    "source": [
     "p, r = M.theory.integrate_siegert()\n",
     "print(\"Mean-field theory predicts an average \"\n",
@@ -346,7 +467,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 9,
    "id": "6316ac24",
    "metadata": {},
    "outputs": [],
@@ -366,7 +487,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 10,
    "id": "445a722a",
    "metadata": {},
    "outputs": [],
@@ -402,10 +523,85 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 11,
    "id": "15778e9c",
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Prepared simulation in 0.00 seconds.\n",
+      "Rank 0: created area V1 with 0 local nodes\n",
+      "Memory after V1 : 1912.20 MB\n",
+      "Rank 0: created area V2 with 0 local nodes\n",
+      "Memory after V2 : 1938.80 MB\n",
+      "Rank 0: created area VP with 0 local nodes\n",
+      "Memory after VP : 1967.95 MB\n",
+      "Rank 0: created area V3 with 0 local nodes\n",
+      "Memory after V3 : 1996.29 MB\n",
+      "Rank 0: created area V3A with 0 local nodes\n",
+      "Memory after V3A : 2016.27 MB\n",
+      "Rank 0: created area MT with 0 local nodes\n",
+      "Memory after MT : 2041.77 MB\n",
+      "Rank 0: created area V4t with 0 local nodes\n",
+      "Memory after V4t : 2066.75 MB\n",
+      "Rank 0: created area V4 with 0 local nodes\n",
+      "Memory after V4 : 2093.70 MB\n",
+      "Rank 0: created area VOT with 0 local nodes\n",
+      "Memory after VOT : 2119.05 MB\n",
+      "Rank 0: created area MSTd with 0 local nodes\n",
+      "Memory after MSTd : 2140.52 MB\n",
+      "Rank 0: created area PIP with 0 local nodes\n",
+      "Memory after PIP : 2161.88 MB\n",
+      "Rank 0: created area PO with 0 local nodes\n",
+      "Memory after PO : 2183.38 MB\n",
+      "Rank 0: created area DP with 0 local nodes\n",
+      "Memory after DP : 2203.54 MB\n",
+      "Rank 0: created area MIP with 0 local nodes\n",
+      "Memory after MIP : 2225.19 MB\n",
+      "Rank 0: created area MDP with 0 local nodes\n",
+      "Memory after MDP : 2246.54 MB\n",
+      "Rank 0: created area VIP with 0 local nodes\n",
+      "Memory after VIP : 2268.48 MB\n",
+      "Rank 0: created area LIP with 0 local nodes\n",
+      "Memory after LIP : 2292.54 MB\n",
+      "Rank 0: created area PITv with 0 local nodes\n",
+      "Memory after PITv : 2317.88 MB\n",
+      "Rank 0: created area PITd with 0 local nodes\n",
+      "Memory after PITd : 2343.10 MB\n",
+      "Rank 0: created area MSTl with 0 local nodes\n",
+      "Memory after MSTl : 2364.56 MB\n",
+      "Rank 0: created area CITv with 0 local nodes\n",
+      "Memory after CITv : 2383.62 MB\n",
+      "Rank 0: created area CITd with 0 local nodes\n",
+      "Memory after CITd : 2402.95 MB\n",
+      "Rank 0: created area FEF with 0 local nodes\n",
+      "Memory after FEF : 2424.42 MB\n",
+      "Rank 0: created area TF with 0 local nodes\n",
+      "Memory after TF : 2440.07 MB\n",
+      "Rank 0: created area AITv with 0 local nodes\n",
+      "Memory after AITv : 2462.74 MB\n",
+      "Rank 0: created area FST with 0 local nodes\n",
+      "Memory after FST : 2479.47 MB\n",
+      "Rank 0: created area 7a with 0 local nodes\n",
+      "Memory after 7a : 2500.68 MB\n",
+      "Rank 0: created area STPp with 0 local nodes\n",
+      "Memory after STPp : 2519.40 MB\n",
+      "Rank 0: created area STPa with 0 local nodes\n",
+      "Memory after STPa : 2538.59 MB\n",
+      "Rank 0: created area 46 with 0 local nodes\n",
+      "Memory after 46 : 2553.95 MB\n",
+      "Rank 0: created area AITd with 0 local nodes\n",
+      "Memory after AITd : 2576.51 MB\n",
+      "Rank 0: created area TH with 0 local nodes\n",
+      "Memory after TH : 2589.22 MB\n",
+      "Created areas and internal connections in 2.15 seconds.\n",
+      "Created cortico-cortical connections in 22.44 seconds.\n",
+      "Simulated network in 59.50 seconds.\n"
+     ]
+    }
+   ],
    "source": [
     "# run the simulation, depending on the model parameter and downscale ratio, the running time varies largely.\n",
     "M.simulation.simulate()"
@@ -445,7 +641,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 12,
    "id": "dc3b1820",
    "metadata": {},
    "outputs": [],
@@ -480,7 +676,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 13,
    "id": "e7eb052e",
    "metadata": {},
    "outputs": [],
@@ -503,7 +699,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 14,
    "id": "902f2800",
    "metadata": {},
    "outputs": [],
@@ -527,7 +723,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 15,
    "id": "cb8e3edd",
    "metadata": {},
    "outputs": [],
@@ -545,7 +741,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 16,
    "id": "9590223b",
    "metadata": {},
    "outputs": [],
@@ -583,15 +779,39 @@
    "id": "38ddd973",
    "metadata": {},
    "source": [
-    "### 4.1. Instantaneous and mean rate"
+    "### 4.1. Instantaneous and mean rate\n",
+    "avaerage over all areas"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 17,
    "id": "bea30fc8",
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "<matplotlib.legend.Legend at 0x7fbae4abbfa0>"
+      ]
+     },
+     "execution_count": 17,
+     "metadata": {},
+     "output_type": "execute_result"
+    },
+    {
+     "data": {
+      "image/png": "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\n",
+      "text/plain": [
+       "<Figure size 432x288 with 1 Axes>"
+      ]
+     },
+     "metadata": {
+      "needs_background": "light"
+     },
+     "output_type": "display_data"
+    }
+   ],
    "source": [
     "fig, ax = plt.subplots()\n",
     "ax.plot(tsteps, rate)\n",
@@ -609,16 +829,28 @@
    "id": "ae19bcc3",
    "metadata": {},
    "source": [
-    "### 4.2 Resting state for single area\n",
+    "### 4.2 Raster plot of spiking activity for single area\n",
     "Raster plot of spiking activity of 3% of the neurons in area V1 (A), V2 (B), and FEF (C). Blue: excitatory neurons, red: inhibitory neurons. (D-F) Spiking statistics across all 32 areas for the respective populations shown as area-averaged box plots. Crosses: medians, boxes: interquartile range (IQR), whiskers extend to the most extremeobservat ions within 1.5×IQR beyond the IQR."
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 18,
    "id": "1da18fee",
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "ename": "AttributeError",
+     "evalue": "'MultiAreaModel' object has no attribute 'analysis'",
+     "output_type": "error",
+     "traceback": [
+      "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+      "\u001b[0;31mAttributeError\u001b[0m                            Traceback (most recent call last)",
+      "Input \u001b[0;32mIn [18]\u001b[0m, in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m     20\u001b[0m area \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mV1\u001b[39m\u001b[38;5;124m'\u001b[39m\n\u001b[1;32m     21\u001b[0m frac_neurons \u001b[38;5;241m=\u001b[39m \u001b[38;5;241m0.03\u001b[39m\n\u001b[0;32m---> 22\u001b[0m \u001b[43mM\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43manalysis\u001b[49m\u001b[38;5;241m.\u001b[39msingle_dot_display(area,  frac_neurons, t_min\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m500.\u001b[39m, t_max\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mT\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[1;32m     24\u001b[0m area \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mV2\u001b[39m\u001b[38;5;124m'\u001b[39m\n\u001b[1;32m     25\u001b[0m frac_neurons \u001b[38;5;241m=\u001b[39m \u001b[38;5;241m0.03\u001b[39m\n",
+      "\u001b[0;31mAttributeError\u001b[0m: 'MultiAreaModel' object has no attribute 'analysis'"
+     ]
+    }
+   ],
    "source": [
     "\"\"\"\n",
     "Create raster display of a single area with populations stacked\n",
@@ -639,6 +871,21 @@
     "    If given, the function stores the plot to a file of the given format.\n",
     "\n",
     "\"\"\"\n",
+    "\n",
+    "    def init_analysis(self, ana_spec):\n",
+    "        assert(hasattr(self, 'simulation'))\n",
+    "        if 'load_areas' in ana_spec:\n",
+    "            load_areas = ana_spec['load_areas']\n",
+    "        else:\n",
+    "            load_areas = None\n",
+    "        if 'data_list' in ana_spec:\n",
+    "            data_list = ana_spec['data_list']\n",
+    "        else:\n",
+    "            data_list = ['spikes']\n",
+    "        self.analysis = Analysis(self, self.simulation,\n",
+    "                                 data_list=data_list,\n",
+    "                                 load_areas=load_areas)\n",
+    "        \n",
     "area = 'V1'\n",
     "frac_neurons = 0.03\n",
     "M.analysis.single_dot_display(area,  frac_neurons, t_min=500., t_max='T')\n",
@@ -657,8 +904,7 @@
    "id": "019d805e",
    "metadata": {},
    "source": [
-    "### 4.3 Firing rates for the whole population\n",
-    "Population-averaged firing rates"
+    "### 4.3 Population-averaged firing rates"
    ]
   },
   {
@@ -718,7 +964,7 @@
    "id": "90ae8f4c",
    "metadata": {},
    "source": [
-    "### 4.6 Time series of population- and area-averaged firing rates.\n",
+    "### 4.6 Time series of population- and area-averaged firing rates\n",
     "Area-averaged firing rates, shown as raw binned spike histograms with 1ms bin width (gray) and convolved histograms, with aGaussian kernel (black) of optimal width"
    ]
   },
diff --git a/multiarea_model/data_multiarea/viscortex_processed_data.json b/multiarea_model/data_multiarea/viscortex_processed_data.json
index a378f26..51b41f1 100644
--- a/multiarea_model/data_multiarea/viscortex_processed_data.json
+++ b/multiarea_model/data_multiarea/viscortex_processed_data.json
@@ -1 +1 @@
-{"cocomac_completed": {"V1": {"7a": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, "0", "0", "3"], "target_pattern": [2.0, "0", "0", "0", "0", "0"]}, "LIP": {"source_pattern": ["0", "0", "0", "0", "0", "2"], "target_pattern": null}, "MT": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", "0", 2], "target_pattern": [2.0, "0", "0", "0", "0", "0"]}, "TH": {"source_pattern": ["0", "0", "0", "0", "0", 2], "target_pattern": null}, "V1": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", "3", "3"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": ["3", 2.0, 2.0, "0", 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", 2, "3"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V3A": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4t": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "46": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}}, "V2": {"5": {"source_pattern": null, "target_pattern": null}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": ["3", "2", "2", 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 0, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 0, -1, -1], "target_pattern": null}, "46": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": ["3", 2.0, "3", "3", 2.0, 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "FEF": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "IT": {"source_pattern": [2, 2, 2, 2, 2, "0"], "target_pattern": ["3", "3", 2.0, 2.0, "3", "3"]}, "LIP": {"source_pattern": [2, 2, "0", 2, 2, "0"], "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PIT": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "PITd": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "STPa": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "TF": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": ["3", "0", "0", "0", "1", "1"]}, "TH": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "V1": {"source_pattern": [2, 2, "0", "0", "0", "0"], "target_pattern": ["0", 2.0, 2.0, "3", "3", "3"]}, "V2": {"source_pattern": [2, 2, "3", "3", "0", "0"], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V3": {"source_pattern": ["0", "0", 2, "0", "0", 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V3A": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4": {"source_pattern": ["3", "3", 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", 2, 2, "0", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VIP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": [2, 2, "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "AITd": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}}, "VP": {"7a": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MSTd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4v": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"target_pattern": null, "source_pattern": null}}, "V3": {"7a": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}}, "PIP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MT": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIP": {"target_pattern": null, "source_pattern": null}}, "V3A": {"7a": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "V1": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "V3A": {"target_pattern": null, "source_pattern": null}}, "MT": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "V4t": {"7a": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "V4t": {"target_pattern": null, "source_pattern": null}}, "V4": {"7a": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "AIT": {"source_pattern": null, "target_pattern": null}, "AITv": {"source_pattern": null, "target_pattern": null}, "CIT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "CITd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FEF": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PITd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PITv": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PO": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VOT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "AITd": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "STPp": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}}, "PO": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "FEF": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MDP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}}, "VOT": {"V2": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VOT": {"target_pattern": null, "source_pattern": null}}, "DP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": null}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "1", 2.0, 2.0]}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "MT": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "TF": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}}, "MIP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V3A": {"source_pattern": null, "target_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}}, "MDP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "MDP": {"target_pattern": null, "source_pattern": null}}, "MSTd": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MST": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "AITd": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}}, "VIP": {"4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "IT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MDP": {"source_pattern": null, "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": null}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "LIP": {"4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "IT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MDP": {"source_pattern": null, "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": null}}, "PITv": {"7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "AIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MST": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "MT": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["3", "3", "0", 2, 2, -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V4": {"source_pattern": ["0", "3", "3", "0", "1", "1"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}}, "PITd": {"7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "IT": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "MT": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "STP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "V2": {"source_pattern": ["3", "3", 2, 2, "0", -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V4": {"source_pattern": ["0", "3", "3", "0", "1", "1"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}}, "AITv": {"CIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, -1]}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}}, "MSTl": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}}, "FST": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MSTl": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FST": {"target_pattern": null, "source_pattern": null}}, "CITv": {"35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "AIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "46": {"target_pattern": null, "source_pattern": null}, "STPp": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "7a": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}}, "CITd": {"V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "CITd": {"target_pattern": null, "source_pattern": null}}, "7a": {"5": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "7a": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "AIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "AITd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", "3", "3", "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FEF": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, "3", 2.0, 2.0, 2.0, 2.0]}, "Ig": {"source_pattern": null, "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MDP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTl": {"source_pattern": [2, "0", "0", 2, "0", 2], "target_pattern": null}, "MT": {"source_pattern": [2, 2, 2, "3", "3", "3"], "target_pattern": null}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, -1, -1, -1, -1]}, "STPa": {"source_pattern": ["3", "3", "3", "3", "0", "0"], "target_pattern": null}, "STPp": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, -1, -1, -1, -1]}, "TF": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": [2, 2, 2, "3", "3", "3"], "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": null}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": [2, 2, 2, "0", 2, 2], "target_pattern": null}, "V4d": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "V4t": {"source_pattern": [2, 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}}, "STPp": {"5": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "IT": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, "3", 2.0, 2.0, 2.0, 2.0]}, "MST": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTd": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTl": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": null, "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPa": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPp": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}}, "STPa": {"7a": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "STPa": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "MT": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "V2": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}}, "FEF": {"1": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "3a": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "4": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "5": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "6": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "7a": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "AITd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "CIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "Ig": {"source_pattern": null, "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTl": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "PO": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "Ri": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "STP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPp": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V2": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "TF": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}}, "46": {"1": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "2": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": null}, "4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": null}, "6": {"source_pattern": [2, 2, "3", 2, 2, 2], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "7a": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": ["0", "0", "3", "0", "3", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "36": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "46": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "AITd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "CIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FEF": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "IT": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "Ig": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": [2, 2, "3", 2, 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "SII": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "STPa": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STPp": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "TF": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", "0", "3", "0", 2, 2], "target_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}}, "TF": {"5": {"source_pattern": null, "target_pattern": null}, "6": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "7a": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "35": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": null}, "36": {"source_pattern": [2, 2, "0", 2, 2, "0"], "target_pattern": null}, "46": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "AITv": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "Id": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "Ig": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "SII": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": null}, "STPa": {"source_pattern": ["3", "3", "0", 2, 2, "0"], "target_pattern": null}, "STPp": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": null}, "TF": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "TH": {"6": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "35": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "36": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": null}, "46": {"source_pattern": [2, "0", "0", "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "AITv": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "FEF": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": null}, "IT": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": [2.0, "3", "3", "3", 2.0, 2.0]}, "Id": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "Ig": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "SII": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": null}, "STPa": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": [2, 2, 2, 2, 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "TH": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "AITd": {"7a": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "46": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "CIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "FEF": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STPa": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": null, "target_pattern": null}, "TH": {"source_pattern": null, "target_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}}}, "architecture_completed": {"FEF": 5, "7a": 4, "STPp": 4, "CITv": 5, "PITv": 5, "VP": 7, "V3A": 6, "TF": 5, "LIP": 5, "V4t": 6, "MIP": 5, "CITd": 5, "MSTd": 5, "DP": 5, "STPa": 4, "MSTl": 5, "MT": 6, "46": 4, "AITv": 4, "VIP": 5, "PITd": 5, "VOT": 6, "V1": 8, "V2": 7, "V3": 7, "V4": 6, "TH": 2, "PIP": 5, "FST": 4, "MDP": 5, "PO": 5, "AITd": 4}, "hierarchy_completed": {"7a": 0.6622, "PITv": 0.6048, "V3A": 0.3345, "LIP": 0.5677, "MIP": 0.5, "PITd": 0.6115, "DP": 0.4864, "STPa": 0.7162, "MSTl": 0.6216, "V1": 0.0, "46": 0.8649, "STPp": 0.6757, "V2": 0.1115, "V3": 0.1993, "V4": 0.4054, "TH": 0.9222, "TF": 0.8615, "MDP": 0.5, "PO": 0.4189, "FEF": 0.8177, "CITv": 0.625, "VP": 0.1993, "PIP": 0.2972, "V4t": 0.4054, "CITd": 0.6284, "AITv": 0.6149, "VOT": 0.4628, "MT": 0.4054, "VIP": 0.5677, "MSTd": 0.5473, "FST": 0.6216, "AITd": 1.0}, "SLN_completed": {"V1": {"7a": 0.13194421498048362, "LIP": 0.001953125, "MT": 0.17512874899425246, "PIP": 0.00676816232675885, "PO": 0.404565065, "STPp": 0.03868900250000001, "TF": 0.2856816827665948, "TH": 0.38953751737398074, "V2": 0.4007722176652155, "V3": 0.38394614661004506, "V3A": 0.006840776179282866, "V4": 0.22741361375468427, "V4t": 0.181545865, "VIP": 0.001953125, "AITd": 0.01173693, "DP": 0.06666331317758761, "AITv": 0.01173693, "CITd": 0.017777577500000002, "CITv": 0.01173693, "VP": 0.2411506010095163, "46": 0.023962599915093682, "PITv": 0.06536264773862561, "VOT": 0.13606147826236337, "FEF": 0.12220022250000001, "MSTl": 0.015780545587622773, "FST": 0.017777577500000002, "STPa": 0.025645547576816728, "MSTd": 0.10606161761701319, "PITd": 0.11926319973629251}, "V2": {"7a": 0.2473485547389337, "46": 0.09611216182822098, "CITv": 0.03237627, "DP": 0.11861750167939675, "FEF": 0.20729421976778806, "FST": 0.07046779333333333, "LIP": 0.04916585999999999, "MIP": 0.1647674456125005, "MSTd": 0.23701435042788077, "MSTl": 0.06238784920796942, "MT": 0.26510935220880993, "PIP": 0.21467556119098472, "PITd": 0.22234497210587106, "PO": 0.1647674456125005, "STPa": 0.1011489004860832, "STPp": 0.0, "TF": 0.25254592441901647, "TH": 0.010029086666666668, "V1": 0.7359601200000001, "V3": 0.31951689276600775, "V3A": 0.2159478233405306, "V4": 0.2541399406855286, "V4t": 0.26864967000000006, "VIP": 0.04916586000000001, "VOT": 0.22762425945260104, "VP": 0.25842434280049886, "AITd": 0.03237627, "AITv": 0.03237627, "CITd": 0.07046779333333335, "MDP": 0.1647674456125005, "PITv": 0.07596815828333246}, "VP": {"7a": 0.09442586553850892, "DP": 0.15571353140142427, "LIP": 0.18807267059796445, "MSTd": 0.1647674456125005, "MT": 0.2603679458405936, "PIP": 0.1647674456125005, "TF": 0.1451231907954106, "V2": 0.4397456164544487, "V3A": 0.23303749052194725, "V4": 0.2914236057357094, "VIP": 0.1647674456125005, "VOT": 0.24423035492494716}, "V3": {"7a": 0.09442586553850892, "FST": 0.1011489004860832, "LIP": 0.18807267059796445, "MSTd": 0.1647674456125005, "MT": 0.2603679458405936, "PIP": 0.1647674456125005, "TF": 0.1451231907954106, "V1": 0.6993004977911257, "V2": 0.4397456164544487, "V3A": 0.23303749052194725, "V4": 0.2914236057357094, "V4t": 0.2572732264020294, "VIP": 0.1647674456125005, "VP": 0.4397456164544487}, "PIP": {"7a": 0.31187356990740184, "DP": 0.425126660792947, "LIP": 0.4754470637035422, "MT": 0.5719047029350985, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3": 0.749151726197644, "V4": 0.6080369758634977, "VP": 0.749151726197644}, "V3A": {"7a": 0.2306470411405071, "DP": 0.3317934753804855, "FST": 0.24266165394773911, "LIP": 0.3791343871826437, "MIP": 0.345394264212165, "MSTd": 0.345394264212165, "MSTl": 0.345394264212165, "MT": 0.4741086898197289, "V1": 0.8642589131334557, "V2": 0.664819185499987, "V3": 0.664819185499987, "V4": 0.511183022022283, "VIP": 0.345394264212165, "VP": 0.664819185499987}, "MT": {"7a": 0.20514417151891692, "46": 0.2079858130256918, "CITv": 0.2262644296613191, "DP": 0.3009622802995952, "FEF": 0.2762308513985713, "FST": 0.2163924357522115, "LIP": 0.34663413513815555, "MIP": 0.31403189331661385, "MSTd": 0.31403189331661385, "MSTl": 0.31403189331661385, "PIP": 0.31403189331661385, "PO": 0.31403189331661385, "STPp": 0.2163924357522115, "V1": 0.8444668131657768, "V2": 0.6326887550282241, "V3": 0.6326887550282241, "V3A": 0.4058308482690615, "V4": 0.47662208079615176, "V4t": 0.4359767813039983, "VIP": 0.31403189331661385, "VP": 0.6326887550282241}, "V4t": {"7a": 0.2078731885766554, "46": 0.2107370269407612, "FST": 0.21920773435266425, "MSTd": 0.31743250009665086, "MT": 0.44351992011019076, "V2": 0.6362850677254202, "V3": 0.6362850677254202, "V4": 0.4804317628197222}, "V4": {"7a": 0.4232641237436804, "46": 0.1823592393657686, "AITv": 0.29966645, "CITd": 0.23457694666666673, "CITv": 0.2996664499999999, "DP": 0.2538615627727568, "FEF": 0.6525620966666666, "FST": 0.2345769466666667, "LIP": 0.24640913666666664, "MT": 0.4203839134858612, "PIP": 0.6991783852090286, "PITd": 0.29129667122990904, "PITv": 0.29280809982084094, "PO": 0.9296867466666666, "TF": 0.41928092775890013, "TH": 0.6746721308204547, "V1": 0.8605949687186175, "V2": 0.8946774848445085, "V3": 0.8106335742703666, "V3A": 0.6995602901668315, "V4t": 0.44856999000000003, "VIP": 0.24640913666666667, "VOT": 0.29207236355152044, "VP": 0.39992316913597753, "AITd": 0.2996664499999999, "MIP": 0.28182290248104663, "MDP": 0.28182290248104663, "STPp": 0.0, "MSTl": 0.233633950099824, "STPa": 0.1901303816478059, "MSTd": 0.4352943409457222}, "PO": {"7a": 0.31187356990740184, "DP": 0.425126660792947, "FEF": 0.3969553786481969, "LIP": 0.4754470637035422, "MDP": 0.4397456164544487, "MIP": 0.4397456164544487, "MSTd": 0.4397456164544487, "MSTl": 0.4397456164544487, "MT": 0.5719047029350985, "PIP": 0.4397456164544487, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3": 0.749151726197644, "V3A": 0.5376665672762394, "V4t": 0.5681484209786033, "VIP": 0.4397456164544487, "VP": 0.749151726197644}, "VOT": {"V2": 0.6515582171973071, "VP": 0.6515582171973071}, "DP": {"7a": 0.3569152409933993, "46": 0.32873489289592567, "FEF": 0.5164609, "LIP": 0.36808971, "MSTd": 0.359307158192874, "PIP": 0.7224508243801265, "PO": 0.91499421, "STPp": 0.0, "V2": 0.8284911256892572, "V3A": 0.7225151175175789, "V4": 0.502791527151495, "VP": 0.5036956237929567, "V3": 0.887729957296875, "MT": 0.4764831936322133, "AITd": 0.16666665999999994, "MIP": 0.4544472048222968, "AITv": 0.16666665999999997, "CITd": 0.26638558, "CITv": 0.16666665999999997, "VIP": 0.36808971, "MDP": 0.4544472048222968, "TH": 0.47371497212186886, "TF": 0.4477395966573806, "PITv": 0.16385097434860155, "VOT": 0.4978915580368853, "V4t": 0.4812295, "MSTl": 0.2919336871009218, "FST": 0.26638557999999996, "STPa": 0.33928533532425265, "V1": 0.91499421, "PITd": 0.4306777609068619}, "MIP": {"7a": 0.31187356990740184, "LIP": 0.4754470637035422, "PO": 0.4397456164544487, "V2": 0.749151726197644, "V3A": 0.5376665672762394}, "MDP": {}, "MSTd": {"7a": 0.44486240562524343, "46": 0.3154038868555226, "DP": 0.8352353799814716, "FEF": 0.6273571799011722, "FST": 0.28586558000000006, "LIP": 0.52910535, "MT": 0.285560720530831, "PO": 0.94168235, "STPp": 0.05016722, "TF": 0.6059730506644079, "V2": 0.8875577521323456, "V3": 0.9072129777530921, "V3A": 0.8681135828616146, "VIP": 0.52910535, "VP": 0.6210356415152859, "AITd": 0.20786640000000003, "V4": 0.6120145117230196, "MIP": 0.4397456164544487, "AITv": 0.2078664, "CITd": 0.28586558, "CITv": 0.20786640000000003, "MDP": 0.4397456164544487, "TH": 0.6589031753555138, "PITv": 0.2981900252191592, "VOT": 0.48008040500394433, "PIP": 0.8680375753748741, "MSTl": 0.2812370526681836, "STPa": 0.3257802492365629, "V1": 0.9097885214665646, "PITd": 0.31125558595064046}, "VIP": {"7a": 0.31187356990740184, "46": 0.3154038868555226, "FEF": 0.3969553786481969, "FST": 0.3257802492365629, "LIP": 0.4754470637035422, "MDP": 0.4397456164544487, "MIP": 0.4397456164544487, "MSTd": 0.4397456164544487, "MSTl": 0.4397456164544487, "MT": 0.5719047029350985, "PIP": 0.4397456164544487, "PO": 0.4397456164544487, "STPp": 0.3257802492365629, "V2": 0.749151726197644, "V3": 0.749151726197644, "V3A": 0.5376665672762394, "V4": 0.6080369758634977, "V4t": 0.5681484209786033, "VP": 0.749151726197644}, "LIP": {"7a": 0.28076284141826424, "46": 0.2841284860076212, "DP": 0.390189400203489, "FEF": 0.362694437412613, "FST": 0.29403822928836465, "MDP": 0.40452785345081144, "MIP": 0.40452785345081144, "MSTd": 0.40452785345081144, "MT": 0.5363312838211267, "PIP": 0.40452785345081144, "PO": 0.40452785345081144, "STPp": 0.29403822928836465, "V2": 0.7196467830007919, "V3": 0.7196467830007919, "V3A": 0.5018058412911562, "V4": 0.573062361443146, "V4t": 0.5325302918019821, "VIP": 0.40452785345081144, "VP": 0.7196467830007919}, "PITv": {"7a": 0.21980894609736484, "AITd": 0.24175822798053087, "AITv": 0.24175822798053087, "CITd": 0.24175822798053087, "CITv": 0.24175822798053087, "FST": 0.23150869224939957, "LIP": 0.365469778336114, "MT": 0.4597488319767691, "STPp": 0.23150869224939957, "TF": 0.3027748504611968, "TH": 0.19454931004337409, "V2": 0.6515582171973071, "V4": 0.49677433132557947, "V4t": 0.4559549345314889, "VOT": 0.4397456164544487, "VP": 0.6515582171973071}, "PITd": {"7a": 0.21980894609736484, "FST": 0.23150869224939957, "MT": 0.4597488319767691, "STPp": 0.23150869224939957, "V2": 0.6515582171973071, "V4": 0.49677433132557947, "V4t": 0.4559549345314889, "VOT": 0.4397456164544487, "VP": 0.6515582171973071}, "AITv": {"CITd": 0.4397456164544487, "CITv": 0.4397456164544487, "PITd": 0.6544746643053295, "PITv": 0.6544746643053295, "TF": 0.5130062065154856, "TH": 0.3774407149467103, "V4": 0.7057317983155025}, "MSTl": {"7a": 0.31187356990740184, "46": 0.3154038868555226, "DP": 0.425126660792947, "FEF": 0.3969553786481969, "FST": 0.3257802492365629, "LIP": 0.4754470637035422, "MT": 0.5719047029350985, "PO": 0.4397456164544487, "STPp": 0.3257802492365629, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3A": 0.5376665672762394, "V4t": 0.5681484209786033, "VIP": 0.4397456164544487}, "FST": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "CITv": 0.45288136231295556, "DP": 0.5442655594117083, "FEF": 0.5154533480763229, "LIP": 0.594213477151346, "MSTd": 0.5589734213408636, "MSTl": 0.5589734213408636, "MT": 0.6848151869041003, "STPp": 0.4397456164544487, "TF": 0.5262461396949784, "V2": 0.8344259484773664, "V3": 0.8344259484773664, "V3A": 0.6534080536187905, "V4": 0.7170795468774352, "V4t": 0.6814092972055, "VIP": 0.5589734213408636, "VP": 0.8344259484773664}, "CITv": {"AITd": 0.4397456164544487, "AITv": 0.4397456164544487, "MT": 0.6729152169546991, "PITd": 0.6544746643053295, "PITv": 0.6544746643053295, "TF": 0.5130062065154856, "V2": 0.826025395583821, "V4": 0.7057317983155025, "V3": 0.826025395583821, "DP": 0.531068720161679, "CITd": 0.4397456164544487, "VIP": 0.5458319856708994, "PO": 0.5458319856708994, "VP": 0.826025395583821, "TH": 0.3774407149467103, "LIP": 0.5812795053424596, "46": 0.4153365490462339, "STPp": 0.4266758765307271, "V3A": 0.6410656305130789, "VOT": 0.6544746643053295, "PIP": 0.5458319856708994, "FEF": 0.5022006131674926, "V4t": 0.669456888813816, "MSTl": 0.5458319856708994, "FST": 0.4266758765307271, "STPa": 0.4266758765307271, "V1": 0.9465819449520904, "MSTd": 0.5458319856708994, "7a": 0.4114584896417437}, "CITd": {"V4": 0.7057317983155025}, "7a": {"46": 0.443675163086642, "AITd": 0.46834387056913884, "CITv": 0.46834387056913884, "DP": 0.5596718210193434, "FEF": 0.5309653576659095, "FST": 0.45514888874900034, "LIP": 0.6092437172723907, "MDP": 0.5742944358234963, "MIP": 0.5742944358234963, "MSTd": 0.5742944358234963, "MSTl": 0.5742944358234963, "MT": 0.6985232422376585, "PIP": 0.5742944358234963, "PO": 0.5742944358234963, "STPa": 0.45514888874900034, "STPp": 0.45514888874900034, "TF": 0.5417280230142912, "TH": 0.40515398450884493, "V2": 0.8439331894156354, "V3": 0.8439331894156354, "V3A": 0.6676703062854825, "V4": 0.7301077109056936, "V4t": 0.6951825087343344, "VIP": 0.5742944358234963, "VP": 0.8439331894156354, "AITv": 0.46834387056913884, "CITd": 0.46834387056913884, "PITv": 0.6806832403963549, "VOT": 0.6806832403963549, "V1": 0.9539824713073445, "PITd": 0.6806832403963549}, "STPp": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "CITv": 0.45288136231295556, "FEF": 0.5154533480763229, "FST": 0.4397456164544487, "MSTd": 0.5589734213408636, "MSTl": 0.5589734213408636, "MT": 0.6848151869041003, "STPa": 0.4397456164544487, "TF": 0.5262461396949784, "TH": 0.3901300859940757, "V2": 0.8344259484773664, "V4": 0.7170795468774352, "V4t": 0.6814092972055, "V3": 0.8344259484773664, "AITd": 0.45288136231295556, "DP": 0.5442655594117083, "MIP": 0.5589734213408636, "AITv": 0.45288136231295556, "CITd": 0.45288136231295556, "VIP": 0.5589734213408636, "PO": 0.5589734213408636, "VP": 0.8344259484773664, "MDP": 0.5589734213408636, "LIP": 0.594213477151346, "PITv": 0.6666418222423477, "V3A": 0.6534080536187905, "VOT": 0.6666418222423477, "PIP": 0.5589734213408636, "V1": 0.9500983377771388, "PITd": 0.6666418222423477}, "STPa": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "STPp": 0.4397456164544487, "TF": 0.5262461396949784, "TH": 0.3901300859940757, "V3": 0.8344259484773664, "MT": 0.6848151869041003, "AITd": 0.45288136231295556, "V4": 0.7170795468774352, "DP": 0.5442655594117083, "AITv": 0.45288136231295556, "CITd": 0.45288136231295556, "CITv": 0.45288136231295556, "VIP": 0.5589734213408636, "PO": 0.5589734213408636, "VP": 0.8344259484773664, "LIP": 0.594213477151346, "PITv": 0.6666418222423477, "VOT": 0.6666418222423477, "FEF": 0.5154533480763229, "V4t": 0.6814092972055, "MSTl": 0.5589734213408636, "FST": 0.4397456164544487, "V1": 0.9500983377771388, "V2": 0.8344259484773664, "MSTd": 0.5589734213408636, "PITd": 0.6666418222423477}, "FEF": {"7a": 0.3516293974131231, "46": 0.35533041409939803, "AITd": 0.3787579272123091, "CITv": 0.3787579272123091, "FST": 0.3661852703855369, "LIP": 0.5191568217929547, "MSTd": 0.48325225451521486, "MSTl": 0.48325225451521486, "MT": 0.6144158201881944, "PO": 0.48325225451521486, "STPp": 0.3661852703855369, "V2": 0.7827293680977521, "V3": 0.7827293680977521, "V3A": 0.5808929113039869, "V4": 0.6494469737044479, "V4t": 0.6107535641856292, "VIP": 0.48325225451521486, "VP": 0.7827293680977521, "DP": 0.4684472210714786, "MIP": 0.48325225451521486, "AITv": 0.3787579272123091, "CITd": 0.3787579272123091, "MDP": 0.48325225451521486, "TH": 0.319413423745837, "TF": 0.45045065681875274, "PITv": 0.5949508734340588, "VOT": 0.5949508734340588, "PIP": 0.48325225451521486, "STPa": 0.3661852703855369, "V1": 0.9272273846670287, "PITd": 0.5949508734340588}, "46": {"7a": 0.4358219970859884, "AITd": 0.46438597533050835, "CITv": 0.46438597533050835, "DP": 0.5557414275321807, "FEF": 0.5270038247288525, "LIP": 0.6054163293692177, "MT": 0.6950448469649315, "STPa": 0.45120425795166497, "STPp": 0.45120425795166497, "TF": 0.5377757373505233, "TH": 0.4012994082965777, "V2": 0.8415379443445309, "V4": 0.7268063099411157, "VIP": 0.5703878991437041, "V3": 0.8415379443445309, "MIP": 0.5703878991437041, "AITv": 0.46438597533050835, "CITd": 0.46438597533050835, "PO": 0.5703878991437041, "VP": 0.8415379443445309, "MDP": 0.5703878991437041, "PITv": 0.6771176328311563, "V3A": 0.6640467174085998, "VOT": 0.6771176328311563, "PIP": 0.5703878991437041, "V4t": 0.6916870936512598, "MSTl": 0.5703878991437041, "FST": 0.45120425795166497, "V1": 0.953013524197034, "MSTd": 0.5703878991437041, "PITd": 0.6771176328311563}, "TF": {"7a": 0.3416307811243306, "46": 0.3452929507529249, "AITv": 0.3684973073841186, "CITv": 0.3684973073841186, "FEF": 0.42908445348136853, "FST": 0.35603954622911427, "LIP": 0.5083556917571386, "MT": 0.6040158814464341, "STPa": 0.35603954622911427, "STPp": 0.35603954622911427, "TH": 0.3097951619855184, "V2": 0.7746813206878705, "V3": 0.7746813206878705, "V3A": 0.5702799471915022, "V4": 0.6393554551781233, "VP": 0.7746813206878705}, "TH": {"7a": 0.47480376159200716, "46": 0.47876905627078103, "AITv": 0.5035828308582835, "FEF": 0.5659653164601144, "STPa": 0.4903272366306628, "STPp": 0.4903272366306628, "TF": 0.5765998675976063, "V2": 0.86415297954125, "V4": 0.7585211182027408}, "AITd": {"7a": 0.4114584896417437, "46": 0.4153365490462339, "CITd": 0.4397456164544487, "CITv": 0.4397456164544487, "FEF": 0.5022006131674926, "PITd": 0.6544746643053295, "STPa": 0.4266758765307271, "TF": 0.5130062065154856, "TH": 0.3774407149467103}}, "SLN_Data_FV91": {"MSTd": {"V1": 0.9097885214665646, "V2": 0.8875577521323456, "PO": 0.94168235, "TF": 0.6059730506644079, "TH": 0.6589031753555138, "PIP": 0.8680375753748741, "V4": 0.6120145117230196, "V3": 0.9072129777530921, "MSTd": 0.16862906228337676, "V3A": 0.8681135828616146, "VP": 0.6210356415152859, "DP": 0.8352353799814716, "7a": 0.44486240562524343, "PITd": 0.31125558595064046, "VOT": 0.48008040500394433, "VIP": 0.52910535, "LIP": 0.52910535, "STPp": 0.05016722, "MSTl": 0.2812370526681836, "MT": 0.285560720530831, "FST": 0.28586558000000006, "CITd": 0.28586558, "PITv": 0.2981900252191592, "AITd": 0.20786640000000003, "CITv": 0.20786640000000003, "AITv": 0.2078664, "FEF": 0.6273571799011722}, "V4": {"PO": 0.9296867466666666, "TF": 0.41928092775890013, "TH": 0.6746721308204547, "PIP": 0.6991783852090286, "V4": 0.35531495687884207, "V1": 0.8605949687186175, "V3": 0.8106335742703666, "V2": 0.8946774848445085, "MSTd": 0.4352943409457222, "V3A": 0.6995602901668315, "VP": 0.39992316913597753, "DP": 0.2538615627727568, "7a": 0.4232641237436804, "PITd": 0.29129667122990904, "VOT": 0.29207236355152044, "VIP": 0.24640913666666667, "LIP": 0.24640913666666664, "STPp": 0.0, "MSTl": 0.233633950099824, "MT": 0.4203839134858612, "FST": 0.2345769466666667, "CITd": 0.23457694666666673, "V4t": 0.44856999000000003, "AITd": 0.2996664499999999, "CITv": 0.2996664499999999, "AITv": 0.29966645, "PITv": 0.29280809982084094, "FEF": 0.6525620966666666}, "V1": {"PO": 0.404565065, "TF": 0.2856816827665948, "TH": 0.38953751737398074, "PIP": 0.00676816232675885, "V4": 0.22741361375468427, "V1": 0.404565065, "V3": 0.38394614661004506, "V2": 0.4007722176652155, "MSTd": 0.10606161761701319, "V3A": 0.006840776179282866, "VP": 0.2411506010095163, "DP": 0.06666331317758761, "7a": 0.13194421498048362, "PITd": 0.11926319973629251, "VOT": 0.13606147826236337, "VIP": 0.001953125, "LIP": 0.001953125, "STPp": 0.03868900250000001, "MSTl": 0.015780545587622773, "MT": 0.17512874899425246, "FST": 0.017777577500000002, "CITd": 0.017777577500000002, "V4t": 0.181545865, "PITv": 0.06536264773862561, "AITd": 0.01173693, "CITv": 0.01173693, "AITv": 0.01173693, "FEF": 0.12220022250000001}, "V2": {"V1": 0.7359601200000001, "V2": 0.5864300202496507, "TF": 0.25254592441901647, "PIP": 0.21467556119098472, "V3A": 0.2159478233405306, "VP": 0.25842434280049886, "V4": 0.2541399406855286, "V3": 0.31951689276600775, "DP": 0.11861750167939675, "7a": 0.2473485547389337, "PITd": 0.22234497210587106, "VOT": 0.22762425945260104, "VIP": 0.04916586000000001, "LIP": 0.04916585999999999, "STPp": 0.0, "MSTd": 0.23701435042788077, "MSTl": 0.06238784920796942, "MT": 0.26510935220880993, "FST": 0.07046779333333333, "CITd": 0.07046779333333335, "V4t": 0.26864967000000006, "PITv": 0.07596815828333246, "AITd": 0.03237627, "CITv": 0.03237627, "AITv": 0.03237627, "TH": 0.010029086666666668, "FEF": 0.20729421976778806}, "DP": {"PO": 0.91499421, "TF": 0.4477395966573806, "TH": 0.47371497212186886, "PIP": 0.7224508243801265, "V4": 0.502791527151495, "V1": 0.91499421, "V3": 0.887729957296875, "V2": 0.8284911256892572, "MSTd": 0.359307158192874, "V3A": 0.7225151175175789, "VP": 0.5036956237929567, "DP": 0.46428641987840946, "7a": 0.3569152409933993, "PITd": 0.4306777609068619, "VOT": 0.4978915580368853, "VIP": 0.36808971, "LIP": 0.36808971, "STPp": 0.0, "MSTl": 0.2919336871009218, "MT": 0.4764831936322133, "FST": 0.26638557999999996, "CITd": 0.26638558, "V4t": 0.4812295, "PITv": 0.16385097434860155, "AITd": 0.16666665999999994, "CITv": 0.16666665999999997, "AITv": 0.16666665999999997, "FEF": 0.5164609}}, "FLN_Data_FV91": {"V1": {"PO": 0.00732, "TF": 0.031515354, "TH": 0.0251198676, "PIP": 0.0011189715999999998, "V4": 0.10954549659999999, "V3": 0.023208176, "V2": 0.5977878200000001, "MSTd": 0.009428104000000001, "V3A": 0.0015919234, "VP": 0.025739616000000003, "DP": 0.0010145062, "7a": 0.0082967068, "PITd": 0.012291986738000001, "VOT": 0.011115732, "VIP": 0.0005227172, "LIP": 0.000407667, "STPa": 0.00062455239, "STPp": 0.0017661359199999996, "MSTl": 0.0018131874, "FST": 0.0024128178, "AITd": 0.0011806956020000002, "CITd": 0.0015557495139999996, "MT": 0.017819879999999993, "V4t": 0.010355839999999998, "PITv": 0.008508000268, "AITv": 0.0019543028, "CITv": 0.0031682135119999997, "FEF": 0.000192719624, "46": 6.56082e-07}, "V2": {"V1": 0.719374, "TF": 0.021752519333333328, "PIP": 0.0016004779333333335, "V3A": 0.0027763386666666665, "VP": 0.030574433333333335, "V4": 0.10780030110000002, "V3": 0.005494763999999998, "DP": 0.0006935116333333333, "7a": 0.003920323266666667, "PITd": 0.00645689953, "VOT": 0.005428937, "VIP": 0.00043936193333333335, "LIP": 0.0003024266666666667, "MDP": 7.533e-06, "PO": 9.915666666666666e-06, "MIP": 6.448e-06, "STPp": 0.0001565191266666667, "STPa": 6.775063e-05, "MSTd": 0.0035983412133333333, "MSTl": 0.0004045919666666667, "FST": 0.0005781431133333334, "AITd": 0.00011696018333333336, "CITd": 0.00015839591000000003, "MT": 0.010586940999999999, "V4t": 0.006289066666666667, "PITv": 0.0012713125800000002, "TH": 0.0004302408, "AITv": 0.0004452911, "CITv": 0.0007957710533333331, "FEF": 0.00011400506666666668}, "V4": {"V1": 0.03265630666666667, "V2": 0.25016898013333333, "PO": 0.002687799166666667, "TF": 0.052711999999999995, "TH": 0.012389706666666667, "PIP": 0.002219050266666667, "V3": 0.018678131733333336, "MSTd": 0.005856831066666667, "V3A": 0.0036355771333333336, "VP": 0.02896426666666667, "DP": 0.0010129916, "7a": 0.0070245596, "PITd": 0.05751595333333334, "VIP": 0.0017124856666666669, "LIP": 0.0013945623333333334, "STPa": 0.0020584594000000005, "STPp": 0.0006447129666666667, "MSTl": 0.005235169433333332, "FST": 0.009160531999999997, "AITd": 0.011051566, "CITd": 0.012193617333333332, "MT": 0.021604643499999996, "V4t": 0.011346133333333331, "PITv": 0.08069382666666668, "VOT": 0.04640013333333332, "AITv": 0.028120480000000003, "CITv": 0.08528930666666668, "46": 0.00020951288, "FEF": 0.0034942574533333333, "MIP": 3.755333333333333e-07, "MDP": 1.9494333333333333e-06}, "FEF": {"PO": 0.0019396929999999997, "TF": 0.0011607034433333333, "TH": 0.00016265508666666668, "PIP": 0.0015277950666666667, "V4": 0.004977958576666667, "V1": 0.00022920966666666672, "V3": 0.00037832696666666664, "V2": 0.0026317330000000002, "MSTd": 0.0092838776, "V3A": 0.00030441690000000004, "VP": 0.0009217902500000001, "PITd": 0.002460433963333334, "VOT": 0.00025604022, "DP": 0.0007984183666666667, "7a": 0.004013115566666667, "VIP": 0.005299874766666666, "LIP": 0.0039942541000000005, "MIP": 0.001530742066666667, "MDP": 0.0031931584000000008, "STPa": 0.0020900494333333333, "STPp": 0.027672489399999996, "MSTl": 0.001190899, "FST": 0.0016546871, "MT": 0.0022583639999999997, "CITd": 0.00028953729, "V4t": 0.0012444373333333333, "PITv": 0.00021049071, "AITd": 0.00011194493333333333, "AITv": 0.00010364666, "CITv": 0.00010565765666666668, "46": 0.1895018566666667}, "7a": {"V1": 2.03353e-05, "V2": 0.0004819565000000001, "PO": 0.019530515, "TF": 0.0347868766, "TH": 0.00023084030000000003, "PIP": 0.011194674, "V4": 0.0095445104, "V3": 1.7328000000000002e-06, "MSTd": 0.08197936960000002, "DP": 0.0140701901, "V3A": 5.58706e-05, "PITd": 0.007615705600000001, "VOT": 0.0008113, "VP": 0.0006863600000000001, "VIP": 0.0489402158, "LIP": 0.040764316, "MIP": 0.017571071599999995, "MDP": 0.024250399999999995, "STPa": 0.007041039999999999, "STPp": 0.0605408629, "MSTl": 0.013092799999999998, "FST": 0.00594815, "AITd": 0.001156032, "CITd": 0.0026997239999999997, "MT": 0.0011731722, "V4t": 9.539200000000002e-06, "PITv": 0.014191047999999998, "AITv": 0.015436940199999999, "CITv": 0.012528181999999999, "FEF": 0.014788873000000001, "46": 0.014181229799999999}, "DP": {"V1": 0.007304985799999999, "V2": 0.0868778232, "PO": 0.022935904999999993, "TF": 0.06188520200000001, "TH": 0.006924548, "PIP": 0.031740154, "V4": 0.265129002, "V3": 0.00384, "MSTd": 0.044096166400000004, "V3A": 0.020889140000000004, "VP": 0.06324947, "7a": 0.12170417, "PITd": 0.027323034000000003, "VOT": 0.010269784, "VIP": 0.009584543999999999, "LIP": 0.0064203, "MIP": 0.01056964, "MDP": 0.010851755000000001, "STPa": 0.0004850526, "STPp": 0.0005674942999999999, "MSTl": 0.005852022, "FST": 0.0030646910000000005, "AITd": 0.0003074472, "CITd": 0.0007696679999999999, "MT": 0.048233399999999996, "V4t": 0.028512000000000003, "PITv": 0.0048909, "AITv": 0.0054317116, "CITv": 0.0043738349999999995, "FEF": 0.0023306253, "46": 0.0011283134999999999}, "STPa": {"PO": 1.6968e-06, "TF": 0.01044059712, "TH": 0.00370067704, "PIP": 0.0, "V4": 2.16198e-05, "V1": 2.9014879999999998e-05, "V3": 1.584e-07, "V2": 3.010232e-05, "MSTd": 0.0188856368, "PITd": 0.0033370486800000003, "VOT": 1.237424e-05, "VP": 7.814400000000001e-07, "DP": 2.9721799999999997e-05, "7a": 0.006960793999999999, "VIP": 4.5480000000000005e-05, "LIP": 3.792000000000001e-05, "STPp": 0.30555149480000005, "MSTl": 0.007341100000000001, "FST": 0.0157761, "AITd": 0.025548469999999997, "CITd": 0.00680838, "MT": 0.0002621412, "V4t": 2.3232000000000005e-06, "PITv": 0.0008363146, "AITv": 0.0024953279999999998, "CITv": 0.0014250989999999998, "46": 0.014112841500000002, "FEF": 0.0010566697000000001}, "STPp": {"V4": 0.00041431336666666673, "PITd": 0.0011464076, "V2": 0.0005494173333333333, "V1": 0.0006513901333333334, "TH": 0.002792431666666667, "VIP": 0.003604891736666667, "7a": 0.03231078781333333, "DP": 0.0008150314333333333, "LIP": 0.0029458097466666675, "STPa": 0.0463087638, "MSTd": 0.07750212466666667, "MSTl": 0.008363258666666666, "FST": 0.0029582593, "AITd": 0.00045012213333333326, "CITd": 0.0007336893666666667, "MT": 0.0005119500000000001, "V4t": 4.476266666666667e-05, "AITv": 0.00024408833333333332, "CITv": 0.00028173233333333335, "VOT": 3.2250000000000005e-05, "PITv": 0.00017818766666666665, "TF": 0.0077603151333333325, "PO": 1.9194299999999993e-05, "46": 0.006187686136666667, "FEF": 0.0027500169733333333, "PIP": 0.0006357816999999999, "V3": 4.158199999999999e-06, "V3A": 0.0001946754, "VP": 8.875213333333334e-05, "MDP": 1.0888033333333335e-05, "MIP": 1.0488666666666666e-06}, "CITv": {"PO": 1.77256e-06, "TF": 0.03182241, "TH": 0.0041587257, "PIP": 0.000142787, "V4": 0.0709605166, "V1": 3.07546e-05, "V3": 4.4818000000000004e-05, "V2": 0.00166803487, "MSTd": 8.492860000000002e-06, "V3A": 0.00020133600000000004, "VP": 0.012700080000000002, "DP": 0.0002021464, "7a": 0.0016731169699999997, "PITd": 0.0955115232, "VOT": 0.037845000000000004, "VIP": 0.00107708, "LIP": 0.00089439, "STPa": 0.005788337000000001, "STPp": 0.00013233991, "MSTl": 0.00023593203999999998, "FST": 0.0020013619999999996, "AITd": 0.1731416, "CITd": 0.10012099999999997, "MT": 9.8895e-05, "V4t": 2.64e-06, "PITv": 0.04409120000000001, "AITv": 0.12012400000000001, "FEF": 0.010091085640000002, "46": 0.0021442090000000002}, "46": {"TF": 0.00023437925, "PIP": 1.3434800000000002e-05, "V3A": 3.5756000000000005e-06, "VP": 5.0537e-06, "V4": 5.4178949999999994e-05, "V3": 4.477375e-05, "V2": 0.00099948935, "DP": 0.0005022087000000001, "7a": 0.009070648600000002, "VIP": 0.0030687705, "LIP": 0.0025490456000000004, "MDP": 0.00010807840000000002, "PO": 7.39644e-05, "MIP": 1.8074200000000004e-05, "STPa": 0.0033303452000000007, "STPp": 0.009455807400000002, "MSTd": 0.0009848546000000005, "MSTl": 0.0007123987000000001, "FST": 0.00237433, "AITd": 0.005064239399999999, "CITd": 0.0051180683, "MT": 4.3527e-06, "PITd": 0.0031302532999999996, "TH": 6.31086e-05, "AITv": 0.00015379490000000002, "CITv": 0.0013516526999999996, "VOT": 3.4511e-06, "PITv": 0.0002622428, "FEF": 0.12080655639999999, "V1": 0.00010192, "V4t": 1.4608e-06}, "MSTd": {"V1": 0.02872964328, "V2": 0.14120797318999997, "PO": 0.00119106314, "TF": 0.06385009, "TH": 0.00618325579, "PIP": 0.014145930179999999, "V4": 0.34126389999999995, "V3": 0.013097999999999999, "V3A": 0.020916080000000004, "VP": 0.07663900000000001, "DP": 0.014847490000000001, "7a": 0.004676075, "PITd": 0.12423347000000001, "VOT": 0.021822499999999998, "VIP": 0.009725760000000002, "LIP": 0.007245720000000001, "MIP": 1.33392e-06, "MDP": 8.314200000000001e-07, "STPa": 0.0021726988, "STPp": 0.0026488431199999996, "MSTl": 0.01104449, "FST": 0.01762035, "AITd": 0.00425251, "CITd": 0.00940632, "MT": 0.00558822, "PITv": 0.01629822, "AITv": 0.0058828, "CITv": 0.01248798, "FEF": 0.0028822971000000003, "46": 6.20149e-05}, "VP": {}, "V3": {}, "PIP": {}, "V3A": {}, "MT": {}, "V4t": {}, "PO": {}, "VOT": {}, "MIP": {}, "MDP": {}, "VIP": {}, "LIP": {}, "PITv": {}, "PITd": {}, "AITv": {}, "MSTl": {}, "FST": {}, "CITd": {}, "TF": {}, "TH": {}, "AITd": {}}, "FLN_completed": {"V1": {"PO": 0.00732, "TF": 0.031515354, "TH": 0.0251198676, "PIP": 0.0011189715999999998, "V4": 0.10954549659999999, "V3": 0.023208176, "V2": 0.5977878200000001, "MSTd": 0.009428104000000001, "V3A": 0.0015919234, "VP": 0.025739616000000003, "DP": 0.0010145062, "7a": 0.0082967068, "PITd": 0.012291986738000001, "VOT": 0.011115732, "VIP": 0.0005227172, "LIP": 0.000407667, "STPa": 0.00062455239, "STPp": 0.0017661359199999996, "MSTl": 0.0018131874, "FST": 0.0024128178, "AITd": 0.0011806956020000002, "CITd": 0.0015557495139999996, "MT": 0.017819879999999993, "V4t": 0.010355839999999998, "PITv": 0.008508000268, "AITv": 0.0019543028, "CITv": 0.0031682135119999997, "FEF": 0.000192719624, "46": 6.56082e-07, "external": 0.0}, "V2": {"V1": 0.719374, "TF": 0.021752519333333328, "PIP": 0.0016004779333333335, "V3A": 0.0027763386666666665, "VP": 0.030574433333333335, "V4": 0.10780030110000002, "V3": 0.005494763999999998, "DP": 0.0006935116333333333, "7a": 0.003920323266666667, "PITd": 0.00645689953, "VOT": 0.005428937, "VIP": 0.00043936193333333335, "LIP": 0.0003024266666666667, "MDP": 7.533e-06, "PO": 9.915666666666666e-06, "MIP": 6.448e-06, "STPp": 0.0001565191266666667, "STPa": 6.775063e-05, "MSTd": 0.0035983412133333333, "MSTl": 0.0004045919666666667, "FST": 0.0005781431133333334, "AITd": 0.00011696018333333336, "CITd": 0.00015839591000000003, "MT": 0.010586940999999999, "V4t": 0.006289066666666667, "PITv": 0.0012713125800000002, "TH": 0.0004302408, "AITv": 0.0004452911, "CITv": 0.0007957710533333331, "FEF": 0.00011400506666666668, "46": 5.056234787738941e-05, "external": 0.002769274482736845}, "VP": {"7a": 0.001966574318848339, "DP": 0.0024756461209531136, "LIP": 0.0018548814372213482, "MSTd": 0.004174892925022077, "MT": 0.008293452698284402, "PIP": 0.004530947395055978, "TF": 0.00705236411780784, "V2": 0.00717581605963354, "V3A": 0.005137466728058192, "V4": 0.008567477824525566, "VIP": 0.002442567075962061, "VOT": 0.010505902036643833, "external": 0.0}, "V3": {"7a": 0.004674246831500541, "FST": 0.001678543003493744, "LIP": 0.0049843652643756075, "MSTd": 0.004926477098009895, "MT": 0.00733451210571452, "PIP": 0.013445388063019195, "TF": 0.001972570146235144, "V1": 0.008586428591530818, "V2": 0.005900422577201198, "V3A": 0.017879918293458957, "V4": 0.005452910062762763, "V4t": 0.0064882545931690865, "VIP": 0.005743942149742755, "VP": 0.004194632953905766, "external": 0.0}, "PIP": {"7a": 0.008621057407958396, "DP": 0.011162671737969579, "LIP": 0.00953663308985513, "MT": 0.009990570858078392, "V1": 0.00527818493705959, "V2": 0.004725558994582357, "V3": 0.013445388063019195, "V4": 0.005410030671440896, "VP": 0.004530947395055978, "external": 0.006721419057747149}, "V3A": {"7a": 0.00868247987997409, "DP": 0.015543435560302327, "FST": 0.002433014251653756, "LIP": 0.008517773248403361, "MIP": 0.007032378516660398, "MSTd": 0.007795706029440842, "MSTl": 0.0052012331547735356, "MT": 0.011026528667923917, "V1": 0.006635229529771761, "V2": 0.005672463185317145, "V3": 0.017879918293458957, "V4": 0.007596844403044716, "VIP": 0.009396080130381014, "VP": 0.005137466728058192, "external": 0.0}, "MT": {"7a": 0.007668578783559499, "46": 0.0002982264907871621, "CITv": 0.0038163017519338253, "DP": 0.0067985734994770045, "FEF": 0.0005936836670590779, "FST": 0.008971528370378384, "LIP": 0.007256401869854357, "MIP": 0.004627972542024091, "MSTd": 0.01449135961835989, "MSTl": 0.017852332108062183, "PIP": 0.009990570858078392, "PO": 0.005124127489289287, "STPp": 0.005741274636653619, "V1": 0.0034419775555150226, "V2": 0.004610708369380301, "V3": 0.00733451210571452, "V3A": 0.011026528667923917, "V4": 0.012266466578010995, "V4t": 0.022905029760814703, "VIP": 0.00941716871058578, "VP": 0.008293452698284402, "external": 0.010053373851418083}, "V4t": {"7a": 0.005758077370591879, "46": 0.0002258161213703737, "FST": 0.0075262122160688, "MSTd": 0.011356730621151199, "MT": 0.022905029760814703, "V2": 0.004346258427304073, "V3": 0.0064882545931690865, "V4": 0.014563486215169221, "external": 0.0}, "V4": {"V1": 0.03265630666666667, "V2": 0.25016898013333333, "PO": 0.002687799166666667, "TF": 0.052711999999999995, "TH": 0.012389706666666667, "PIP": 0.002219050266666667, "V3": 0.018678131733333336, "MSTd": 0.005856831066666667, "V3A": 0.0036355771333333336, "VP": 0.02896426666666667, "DP": 0.0010129916, "7a": 0.0070245596, "PITd": 0.05751595333333334, "VIP": 0.0017124856666666669, "LIP": 0.0013945623333333334, "STPa": 0.0020584594000000005, "STPp": 0.0006447129666666667, "MSTl": 0.005235169433333332, "FST": 0.009160531999999997, "AITd": 0.011051566, "CITd": 0.012193617333333332, "MT": 0.021604643499999996, "V4t": 0.011346133333333331, "PITv": 0.08069382666666668, "VOT": 0.04640013333333332, "AITv": 0.028120480000000003, "CITv": 0.08528930666666668, "46": 0.00020951288, "FEF": 0.0034942574533333333, "MIP": 3.755333333333333e-07, "MDP": 1.9494333333333333e-06, "external": 0.0}, "PO": {"7a": 0.004144248657410051, "DP": 0.005220646508186041, "FEF": 0.0001886114098855978, "LIP": 0.0048842515280058535, "MDP": 0.014405320247417218, "MIP": 0.020617646941670047, "MSTd": 0.004321736159726882, "MSTl": 0.0029108328936136986, "MT": 0.005124127489289287, "PIP": 0.015334961576419863, "V1": 0.003897505308584523, "V2": 0.002979802254013754, "V3": 0.008521681404942045, "V3A": 0.008186751962556745, "V4t": 0.003978868012995961, "VIP": 0.007279513913864154, "VP": 0.0025287698806870013, "external": 0.006542796226354337}, "VOT": {"V2": 0.00275414110376441, "VP": 0.010505902036643833, "external": 0.0}, "DP": {"V1": 0.007304985799999999, "V2": 0.0868778232, "PO": 0.022935904999999993, "TF": 0.06188520200000001, "TH": 0.006924548, "PIP": 0.031740154, "V4": 0.265129002, "V3": 0.00384, "MSTd": 0.044096166400000004, "V3A": 0.020889140000000004, "VP": 0.06324947, "7a": 0.12170417, "PITd": 0.027323034000000003, "VOT": 0.010269784, "VIP": 0.009584543999999999, "LIP": 0.0064203, "MIP": 0.01056964, "MDP": 0.010851755000000001, "STPa": 0.0004850526, "STPp": 0.0005674942999999999, "MSTl": 0.005852022, "FST": 0.0030646910000000005, "AITd": 0.0003074472, "CITd": 0.0007696679999999999, "MT": 0.048233399999999996, "V4t": 0.028512000000000003, "PITv": 0.0048909, "AITv": 0.0054317116, "CITv": 0.0043738349999999995, "FEF": 0.0023306253, "46": 0.0011283134999999999, "external": 0.004211451692517544}, "MIP": {"7a": 0.004628073242481961, "LIP": 0.005628643453612285, "PO": 0.020617646941670047, "V2": 0.002317741117550906, "V3A": 0.007032378516660398, "external": 0.010374993985500259}, "MDP": {"external": 0.011419607784729701}, "MSTd": {"V1": 0.02872964328, "V2": 0.14120797318999997, "PO": 0.00119106314, "TF": 0.06385009, "TH": 0.00618325579, "PIP": 0.014145930179999999, "V4": 0.34126389999999995, "V3": 0.013097999999999999, "V3A": 0.020916080000000004, "VP": 0.07663900000000001, "DP": 0.014847490000000001, "7a": 0.004676075, "PITd": 0.12423347000000001, "VOT": 0.021822499999999998, "VIP": 0.009725760000000002, "LIP": 0.007245720000000001, "MIP": 1.33392e-06, "MDP": 8.314200000000001e-07, "STPa": 0.0021726988, "STPp": 0.0026488431199999996, "MSTl": 0.01104449, "FST": 0.01762035, "AITd": 0.00425251, "CITd": 0.00940632, "MT": 0.00558822, "PITv": 0.01629822, "AITv": 0.0058828, "CITv": 0.01248798, "FEF": 0.0028822971000000003, "46": 6.20149e-05, "external": 0.0072490129352875}, "VIP": {"7a": 0.015446422673293946, "46": 0.0003458110186325523, "FEF": 0.0006773108120469758, "FST": 0.002979432398247835, "LIP": 0.019527396424842813, "MDP": 0.006218843583134815, "MIP": 0.00854479275972444, "MSTd": 0.012160526096505421, "MSTl": 0.006600939858094132, "MT": 0.00941716871058578, "PIP": 0.012547211081402667, "PO": 0.007279513913864154, "STPp": 0.0028081138130298814, "V2": 0.0023722199828714475, "V3": 0.005743942149742755, "V3A": 0.009396080130381014, "V4": 0.003911943716196138, "V4t": 0.006957528571384772, "VP": 0.002442567075962061, "external": 0.025685025786337367}, "LIP": {"7a": 0.0200256002116261, "46": 0.0002602252700827285, "DP": 0.014354121318509222, "FEF": 0.000521760134974346, "FST": 0.002253883895344027, "MDP": 0.0040408631174151345, "MIP": 0.005628643453612285, "MSTd": 0.010960695690248752, "MT": 0.007256401869854357, "PIP": 0.00953663308985513, "PO": 0.0048842515280058535, "STPp": 0.00244222691917776, "V2": 0.0019352055971065822, "V3": 0.0049843652643756075, "V3A": 0.008517773248403361, "V4": 0.0031585061105836834, "V4t": 0.005430465611173537, "VIP": 0.019527396424842813, "VP": 0.0018548814372213482, "external": 0.02010122555511015}, "PITv": {"7a": 0.001519128953463658, "AITd": 0.006359379280575416, "AITv": 0.007758145814052114, "CITd": 0.017478643524974677, "CITv": 0.015691806311089743, "FST": 0.01263496858298248, "LIP": 0.001285789125409984, "MT": 0.007004200569019747, "STPp": 0.003829466462804577, "TF": 0.009068192149592905, "TH": 0.005708336359028609, "V2": 0.0018379391047956878, "V4": 0.007007339925830216, "V4t": 0.0083415091788602, "VOT": 0.019379857366420852, "VP": 0.006643210862858017, "external": 0.0}, "PITd": {"7a": 0.002196946592552967, "FST": 0.012982843785615662, "MT": 0.010136691826050192, "STPp": 0.004493623560965627, "V2": 0.0019962868813370362, "V4": 0.009015562729701311, "V4t": 0.011986441343393476, "VOT": 0.016997572679928255, "VP": 0.0059050722299335764, "external": 0.0}, "AITv": {"CITd": 0.013892253195462468, "CITv": 0.015709600532818804, "PITd": 0.005118145751195346, "PITv": 0.007758145814052114, "TF": 0.006947301047502546, "TH": 0.005486718323377269, "V4": 0.0016643210932731807, "external": 0.0}, "MSTl": {"7a": 0.0063626815273536775, "46": 0.0005595505371621943, "DP": 0.0033814076993188254, "FEF": 0.0011101970110222973, "FST": 0.016643198599736588, "LIP": 0.005335978271267846, "MT": 0.017852332108062183, "PO": 0.0029108328936136986, "STPp": 0.011601763981185209, "V1": 0.0017709112924698136, "V2": 0.0027725710447628854, "V3A": 0.0052012331547735356, "V4t": 0.014647861481879191, "VIP": 0.006600939858094132, "external": 0.0072734106207775415}, "FST": {"7a": 0.002689233899127888, "46": 0.0007407465799992857, "CITv": 0.011714210291935324, "DP": 0.0015307752733108727, "FEF": 0.0013885197573829428, "LIP": 0.002253883895344027, "MSTd": 0.006848877340960466, "MSTl": 0.016643198599736588, "MT": 0.008971528370378384, "STPp": 0.011041563402888874, "TF": 0.01059563824406266, "V2": 0.0016679794532344961, "V3": 0.001678543003493744, "V3A": 0.002433014251653756, "V4": 0.005061550773625565, "V4t": 0.0075262122160688, "VIP": 0.002979432398247835, "VP": 0.004466681106251745, "external": 0.010332209959069458}, "CITv": {"PO": 1.77256e-06, "TF": 0.03182241, "TH": 0.0041587257, "PIP": 0.000142787, "V4": 0.0709605166, "V1": 3.07546e-05, "V3": 4.4818000000000004e-05, "V2": 0.00166803487, "MSTd": 8.492860000000002e-06, "V3A": 0.00020133600000000004, "VP": 0.012700080000000002, "DP": 0.0002021464, "7a": 0.0016731169699999997, "PITd": 0.0955115232, "VOT": 0.037845000000000004, "VIP": 0.00107708, "LIP": 0.00089439, "STPa": 0.005788337000000001, "STPp": 0.00013233991, "MSTl": 0.00023593203999999998, "FST": 0.0020013619999999996, "AITd": 0.1731416, "CITd": 0.10012099999999997, "MT": 9.8895e-05, "V4t": 2.64e-06, "PITv": 0.04409120000000001, "AITv": 0.12012400000000001, "FEF": 0.010091085640000002, "46": 0.0021442090000000002, "external": 0.00981041654023485}, "CITd": {"V4": 0.0041777466613098085, "external": 0.0}, "7a": {"V1": 2.03353e-05, "V2": 0.0004819565000000001, "PO": 0.019530515, "TF": 0.0347868766, "TH": 0.00023084030000000003, "PIP": 0.011194674, "V4": 0.0095445104, "V3": 1.7328000000000002e-06, "MSTd": 0.08197936960000002, "DP": 0.0140701901, "V3A": 5.58706e-05, "PITd": 0.007615705600000001, "VOT": 0.0008113, "VP": 0.0006863600000000001, "VIP": 0.0489402158, "LIP": 0.040764316, "MIP": 0.017571071599999995, "MDP": 0.024250399999999995, "STPa": 0.007041039999999999, "STPp": 0.0605408629, "MSTl": 0.013092799999999998, "FST": 0.00594815, "AITd": 0.001156032, "CITd": 0.0026997239999999997, "MT": 0.0011731722, "V4t": 9.539200000000002e-06, "PITv": 0.014191047999999998, "AITv": 0.015436940199999999, "CITv": 0.012528181999999999, "FEF": 0.014788873000000001, "46": 0.014181229799999999, "external": 0.02938506023105533}, "STPp": {"V4": 0.00041431336666666673, "PITd": 0.0011464076, "V2": 0.0005494173333333333, "V1": 0.0006513901333333334, "TH": 0.002792431666666667, "VIP": 0.003604891736666667, "7a": 0.03231078781333333, "DP": 0.0008150314333333333, "LIP": 0.0029458097466666675, "STPa": 0.0463087638, "MSTd": 0.07750212466666667, "MSTl": 0.008363258666666666, "FST": 0.0029582593, "AITd": 0.00045012213333333326, "CITd": 0.0007336893666666667, "MT": 0.0005119500000000001, "V4t": 4.476266666666667e-05, "AITv": 0.00024408833333333332, "CITv": 0.00028173233333333335, "VOT": 3.2250000000000005e-05, "PITv": 0.00017818766666666665, "TF": 0.0077603151333333325, "PO": 1.9194299999999993e-05, "46": 0.006187686136666667, "FEF": 0.0027500169733333333, "PIP": 0.0006357816999999999, "V3": 4.158199999999999e-06, "V3A": 0.0001946754, "VP": 8.875213333333334e-05, "MDP": 1.0888033333333335e-05, "MIP": 1.0488666666666666e-06, "external": 0.0169218564119172}, "STPa": {"PO": 1.6968e-06, "TF": 0.01044059712, "TH": 0.00370067704, "PIP": 0.0, "V4": 2.16198e-05, "V1": 2.9014879999999998e-05, "V3": 1.584e-07, "V2": 3.010232e-05, "MSTd": 0.0188856368, "PITd": 0.0033370486800000003, "VOT": 1.237424e-05, "VP": 7.814400000000001e-07, "DP": 2.9721799999999997e-05, "7a": 0.006960793999999999, "VIP": 4.5480000000000005e-05, "LIP": 3.792000000000001e-05, "STPp": 0.30555149480000005, "MSTl": 0.007341100000000001, "FST": 0.0157761, "AITd": 0.025548469999999997, "CITd": 0.00680838, "MT": 0.0002621412, "V4t": 2.3232000000000005e-06, "PITv": 0.0008363146, "AITv": 0.0024953279999999998, "CITv": 0.0014250989999999998, "46": 0.014112841500000002, "FEF": 0.0010566697000000001, "external": 0.021379975066850528}, "FEF": {"PO": 0.0019396929999999997, "TF": 0.0011607034433333333, "TH": 0.00016265508666666668, "PIP": 0.0015277950666666667, "V4": 0.004977958576666667, "V1": 0.00022920966666666672, "V3": 0.00037832696666666664, "V2": 0.0026317330000000002, "MSTd": 0.0092838776, "V3A": 0.00030441690000000004, "VP": 0.0009217902500000001, "PITd": 0.002460433963333334, "VOT": 0.00025604022, "DP": 0.0007984183666666667, "7a": 0.004013115566666667, "VIP": 0.005299874766666666, "LIP": 0.0039942541000000005, "MIP": 0.001530742066666667, "MDP": 0.0031931584000000008, "STPa": 0.0020900494333333333, "STPp": 0.027672489399999996, "MSTl": 0.001190899, "FST": 0.0016546871, "MT": 0.0022583639999999997, "CITd": 0.00028953729, "V4t": 0.0012444373333333333, "PITv": 0.00021049071, "AITd": 0.00011194493333333333, "AITv": 0.00010364666, "CITv": 0.00010565765666666668, "46": 0.1895018566666667, "external": 0.030348245801991393}, "46": {"TF": 0.00023437925, "PIP": 1.3434800000000002e-05, "V3A": 3.5756000000000005e-06, "VP": 5.0537e-06, "V4": 5.4178949999999994e-05, "V3": 4.477375e-05, "V2": 0.00099948935, "DP": 0.0005022087000000001, "7a": 0.009070648600000002, "VIP": 0.0030687705, "LIP": 0.0025490456000000004, "MDP": 0.00010807840000000002, "PO": 7.39644e-05, "MIP": 1.8074200000000004e-05, "STPa": 0.0033303452000000007, "STPp": 0.009455807400000002, "MSTd": 0.0009848546000000005, "MSTl": 0.0007123987000000001, "FST": 0.00237433, "AITd": 0.005064239399999999, "CITd": 0.0051180683, "MT": 4.3527e-06, "PITd": 0.0031302532999999996, "TH": 6.31086e-05, "AITv": 0.00015379490000000002, "CITv": 0.0013516526999999996, "VOT": 3.4511e-06, "PITv": 0.0002622428, "FEF": 0.12080655639999999, "V1": 0.00010192, "V4t": 1.4608e-06, "external": 0.01948363363231367}, "TF": {"7a": 0.0018622862875994476, "46": 0.00027263187118762135, "AITv": 0.006947301047502546, "CITv": 0.008573111392548783, "FEF": 0.0004737508884470768, "FST": 0.01059563824406266, "LIP": 0.0016647514007397735, "MT": 0.0074104934764019845, "STPa": 0.005175064786224525, "STPp": 0.0037752777782433336, "TH": 0.014963255350597525, "V2": 0.0026546500269299987, "V3": 0.001972570146235144, "V3A": 0.002689205669205606, "V4": 0.004553843722667349, "VP": 0.00705236411780784, "external": 0.015077445206487964}, "TH": {"7a": 0.0019360577800537108, "46": 0.00027677638429352176, "AITv": 0.005486718323377269, "FEF": 0.0004782252441620275, "STPa": 0.004275371779150058, "STPp": 0.0031604962683527966, "TF": 0.014963255350597525, "V2": 0.0022492167248699692, "V4": 0.0034039285639701463, "external": 0.01308305567128213}, "AITd": {"7a": 0.00046777517280729655, "46": 0.0005676113571555957, "CITd": 0.01329368143561811, "CITv": 0.012994646677276813, "FEF": 0.0008085031348249742, "PITd": 0.004758288424810753, "STPa": 0.014133181809193483, "TF": 0.004811523947655359, "TH": 0.0037689211883690063, "external": 0.0}}, "neuronal_densities": {"FEF": {"23": 61119.24615011697, "overall": 60822.524688517195, "4": 83820.50032477839, "5": 55405.3729147243, "6": 55405.3729147243}, "7a": {"23": 51225.809080885876, "overall": 52379.0, "4": 79926.19368350341, "5": 47522.666967296806, "6": 47522.666967296806}, "STPp": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "CITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "PITv": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VP": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V3A": {"23": 73724.98018754808, "overall": 76696.0, "4": 123618.64707486573, "5": 66311.20009349921, "6": 66311.20009349921}, "TF": {"23": 60035.31107952612, "overall": 61906.0, "4": 103256.25889601017, "5": 56636.008092846845, "6": 56636.008092846845}, "LIP": {"23": 66365.33597739544, "overall": 69275.0, "4": 104732.3373288077, "5": 59804.35175881624, "6": 59804.35175881624}, "V4t": {"overall": 80648.75, "23": 77437.49196037636, "4": 150877.76843256268, "5": 69309.7641053403, "6": 69309.7641053403}, "MIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "CITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "MSTd": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "DP": {"23": 61577.99107383698, "overall": 63763.032750087405, "4": 100988.31726393124, "5": 57674.084791137735, "6": 57674.084791137735}, "STPa": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "MSTl": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "MT": {"23": 82184.85656009504, "overall": 81153.0, "4": 134779.48312587343, "5": 66175.91653374783, "6": 66175.91653374783}, "46": {"23": 50800.916845800064, "overall": 52720.0, "4": 75146.86652655818, "5": 52317.133324041286, "6": 52317.133324041286}, "AITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "VIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "PITd": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VOT": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "V1": {"23": 166264.25225183976, "overall": 173360.0, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}, "V2": {"23": 107228.9012018876, "overall": 111730.0, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V3": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V4": {"23": 82291.65437545427, "overall": 86223.0, "4": 179133.52509594912, "5": 72221.27249312654, "6": 72221.27249312654}, "TH": {"23": 49012.54441576494, "overall": 49446.0, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}, "PIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "FST": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "MDP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "PO": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "AITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}}, "neuronal_density_data_FV91_4layers": {"V1": {"23": 166264.25225183976, "overall": 173360.0, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}, "V2": {"23": 107228.9012018876, "overall": 111730.0, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V4": {"23": 82291.65437545427, "overall": 86223.0, "4": 179133.52509594912, "5": 72221.27249312654, "6": 72221.27249312654}, "MT": {"23": 82184.85656009504, "overall": 81153.0, "4": 134779.48312587343, "5": 66175.91653374783, "6": 66175.91653374783}, "PITd": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "PITv": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VOT": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "V3A": {"23": 73724.98018754808, "overall": 76696.0, "4": 123618.64707486573, "5": 66311.20009349921, "6": 66311.20009349921}, "LIP": {"23": 66365.33597739544, "overall": 69275.0, "4": 104732.3373288077, "5": 59804.35175881624, "6": 59804.35175881624}, "DP": {"23": 61577.99107383698, "overall": 63763.032750087405, "4": 100988.31726393124, "5": 57674.084791137735, "6": 57674.084791137735}, "TF": {"23": 60035.31107952612, "overall": 61906.0, "4": 103256.25889601017, "5": 56636.008092846845, "6": 56636.008092846845}, "FEF": {"23": 61119.24615011697, "overall": 60822.524688517195, "4": 83820.50032477839, "5": 55405.3729147243, "6": 55405.3729147243}, "AITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "AITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "CITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "CITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "46": {"23": 50800.916845800064, "overall": 52720.0, "4": 75146.86652655818, "5": 52317.133324041286, "6": 52317.133324041286}, "7a": {"23": 51225.809080885876, "overall": 52379.0, "4": 79926.19368350341, "5": 47522.666967296806, "6": 47522.666967296806}, "TH": {"23": 49012.54441576494, "overall": 49446.0, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}}, "realistic_neuronal_numbers": {"FEF": {"23E": 7116258.062416201, "23I": 2007264.3976278158, "4E": 3738560.648779402, "4I": 934682.8106165795, "5E": 2737096.7132908967, "5I": 601032.5772484133, "6E": 2605291.6369981444, "6I": 533546.3526134444, "total": 20273733.199590895}, "7a": {"23E": 7785533.377762723, "23I": 2196045.144605121, "4E": 2089479.7746036942, "4I": 522393.7798336135, "5E": 2488782.555412475, "5I": 546505.8601060383, "6E": 2988894.9338910277, "6I": 612105.7495735153, "total": 19229741.175788205}, "STPp": {"23E": 10231171.547963874, "23I": 2885879.9405705766, "4E": 3214014.74148318, "4I": 803540.3499240858, "5E": 3490372.4822190227, "5I": 766442.6172295379, "6E": 4191750.945380641, "6I": 858442.6389011556, "total": 26441615.263672072}, "CITv": {"23E": 4781074.136115523, "23I": 1348585.1428756928, "4E": 1754777.4509003817, "4I": 438714.3807202003, "5E": 1649485.19100076, "5I": 362206.541941404, "6E": 1980943.6224906985, "6I": 405684.0430081682, "total": 12721470.509052828}, "PITv": {"23E": 4546866.169615768, "23I": 1282522.7110930902, "4E": 3774053.5763523397, "4I": 943556.447402896, "5E": 1588254.3632775452, "5I": 348761.009668162, "6E": 1907408.6684699608, "6I": 390624.5748280269, "total": 14782047.520707788}, "VP": {"23E": 6917343.194842176, "23I": 1951156.998438778, "4E": 6436579.782354831, "4I": 1609218.3722346388, "5E": 2080057.8770850257, "5I": 456754.9771331035, "6E": 2498038.4234448234, "6I": 511581.6097475055, "total": 22460731.235280883}, "V3A": {"23E": 3964407.8216861454, "23I": 1118230.2002473997, "4E": 2306615.689972856, "4I": 576680.2356998073, "5E": 1228675.3686414948, "5I": 269801.91084601893, "6E": 1475573.499477787, "6I": 302187.6121195219, "total": 11242172.338691032}, "TF": {"23E": 6074732.165699517, "23I": 1713483.8976304682, "4E": 3384007.2514310316, "4I": 846040.4166365786, "5E": 2187728.4571476975, "5I": 480398.1045076902, "6E": 2627345.0398780513, "6I": 538062.7424494962, "total": 17851798.07538053}, "LIP": {"23E": 2913160.3478207462, "23I": 821707.5602758899, "4E": 1126140.8103144537, "4I": 281548.0492682131, "5E": 651795.5065530408, "5I": 143126.22978948214, "6E": 1575617.9037778564, "6I": 322676.0389258161, "total": 7835772.446725499}, "V4t": {"23E": 1360184.0182880426, "23I": 383663.56731095293, "4E": 980714.0653507396, "4I": 245189.70404091728, "5E": 419495.6041320673, "5I": 92116.04503106218, "6E": 503791.8171087833, "6I": 103173.20436517496, "total": 4088328.02562774}, "MIP": {"23E": 1861055.129421214, "23I": 524942.9785351913, "4E": 715830.5384720211, "4I": 178965.80060635193, "5E": 346345.2234161966, "5I": 76053.12637902048, "6E": 1560161.9034535293, "6I": 319510.75313518627, "total": 5582865.453418711}, "CITd": {"23E": 2399105.600172807, "23I": 676709.4749991855, "4E": 880533.5976096117, "4I": 220143.44427575002, "5E": 827698.765271022, "5I": 181752.40928116255, "6E": 994022.0132635923, "6I": 203569.0792011859, "total": 6383534.384074317}, "MSTd": {"23E": 5346732.588457302, "23I": 1508138.950880428, "4E": 2715843.8559756237, "4I": 678991.9455574008, "5E": 1777557.624205953, "5I": 390329.6638720288, "6E": 2134751.7749729697, "6I": 437182.9268926931, "total": 14989529.330814399}, "DP": {"23E": 5001221.312264808, "23I": 1410681.4841054436, "4E": 2151023.612566881, "4I": 537780.4413987652, "5E": 1614053.3029574256, "5I": 354426.13765972335, "6E": 1938391.8172152215, "6I": 396969.71706498606, "total": 13404547.825233255}, "STPa": {"23E": 3280648.3045655773, "23I": 925363.9321585639, "4E": 1030581.0984660854, "4I": 257657.03118848646, "5E": 1119195.8332839224, "5I": 245761.55926750044, "6E": 1344094.424343897, "6I": 275261.5743637242, "total": 8478563.757637756}, "MSTl": {"23E": 1294223.7740036394, "23I": 365058.33281135384, "4E": 657393.9554174577, "4I": 164355.98821502394, "5E": 430273.4985989926, "5I": 94482.73732122207, "6E": 516735.4927626279, "6I": 105823.9828179387, "total": 3628347.761948256}, "MT": {"23E": 3387941.185455547, "23I": 955627.755932295, "4E": 1576557.5125129828, "4I": 394157.3630416898, "5E": 792485.0871952683, "5I": 174019.92120885785, "6E": 885309.68110297, "6I": 181305.51857530785, "total": 8347404.025024918}, "46": {"23E": 6032896.419270735, "23I": 1701683.3974774193, "4E": 1971206.910649511, "4I": 492824.21462234406, "5E": 2194273.9158227458, "5I": 481835.4062579843, "6E": 2933147.6012706426, "6I": 600689.0676308342, "total": 16408556.933002219}, "AITv": {"23E": 4583767.781081143, "23I": 1292931.4526339208, "4E": 1682360.9325874117, "4I": 420609.4250352009, "5E": 1581413.8954186402, "5I": 347258.92755069106, "6E": 1899193.6318913486, "6I": 388942.19012266054, "total": 12196478.236321017}, "VIP": {"23E": 4821635.686107228, "23I": 1360026.2337547531, "4E": 2235064.080697643, "4I": 558791.51714088, "5E": 859117.3541222662, "5I": 188651.54270932236, "6E": 668974.5483609311, "6I": 137001.52612490626, "total": 10829262.48901793}, "PITd": {"23E": 6587774.377258495, "23I": 1858196.3794868276, "4E": 5468076.807458739, "4I": 1367081.580107982, "5E": 2301158.866053231, "5I": 505306.0190405548, "6E": 2763568.903143899, "6I": 565960.4811718109, "total": 21417123.41372154}, "VOT": {"23E": 3176820.440084732, "23I": 896077.4765485821, "4E": 2636869.0205685482, "4I": 659247.335783485, "5E": 1109687.1421091869, "5I": 243673.56831882143, "6E": 1332674.9940612898, "6I": 272922.9511978245, "total": 10327972.928672472}, "V1": {"23E": 70351649.31455898, "23I": 19843906.691540737, "4E": 104498963.79693717, "4I": 26125933.043277144, "5E": 30792502.779850837, "5I": 6761652.672276523, "6E": 29454725.608150266, "6I": 6032131.371505871, "total": 293861465.2780975}, "V2": {"23E": 60291657.94579554, "23I": 17006311.09876571, "4E": 43780517.995760456, "4I": 10945628.934463676, "5E": 22768869.615967955, "5I": 4999762.090929045, "6E": 22970833.698674805, "6I": 4704273.549405582, "total": 187467854.92976275}, "V3": {"23E": 7050338.08337958, "23I": 1988670.5206419022, "4E": 5718439.590182145, "4I": 1429675.1318552576, "5E": 1453678.9582375523, "5I": 319209.91557175113, "6E": 1751820.7797907297, "6I": 358761.21283939376, "total": 20070594.19249831}, "V4": {"23E": 36181631.72328601, "23I": 10205658.72811732, "4E": 19007157.695427947, "4I": 4752006.252030559, "5E": 7854280.51218247, "5I": 1724702.8341184186, "6E": 7950727.398374058, "6I": 1628255.9479268312, "total": 89304421.09146364}, "TH": {"23E": 1102237.244142804, "23I": 310905.1918159415, "4E": 0.0, "4I": 0.0, "5E": 1041658.381430335, "5I": 228735.29406666115, "6E": 484476.77823009423, "6I": 99217.61321447158, "total": 3267230.502900307}, "PIP": {"23E": 4707159.180232314, "23I": 1327736.1435708222, "4E": 2390976.007726943, "4I": 597771.2774965055, "5E": 1564927.093461991, "5I": 343638.62980144745, "6E": 1879393.8632305118, "6I": 384887.3295452276, "total": 13196489.525065761}, "FST": {"23E": 2228633.7959837206, "23I": 628624.9367001414, "4E": 766864.0534953041, "4I": 191724.76153779466, "5E": 774255.1693285241, "5I": 170016.85677007798, "6E": 929839.1087289786, "6I": 190424.84838715038, "total": 5880383.530931692}, "MDP": {"23E": 3435994.282487219, "23I": 969181.9679945091, "4E": 1745294.6835990446, "4I": 436343.58071819134, "5E": 1142319.6751505157, "5I": 250839.26887325756, "6E": 1371864.9234808546, "6I": 280948.7873860063, "total": 9632787.169689598}, "PO": {"23E": 3342251.0816976735, "23I": 942740.0672351314, "4E": 1697678.3325487978, "4I": 424438.9497620289, "5E": 1111154.11028934, "5I": 243995.69638312308, "6E": 1334436.7445012, "6I": 273283.7459388356, "total": 9369978.72835613}, "AITd": {"23E": 4508601.451957001, "23I": 1271729.4817346197, "4E": 1654772.952217552, "4I": 413712.1152270119, "5E": 1555481.2821141132, "5I": 341564.44648485165, "6E": 1868049.9482618198, "6I": 382564.1714120074, "total": 11996475.849408979}}, "total_thicknesses": {"V1": 1240.0, "V2": 1460.0, "VP": 1585.342273262686, "V3": 1585.342273262686, "PIP": 2070.561486887418, "V3A": 1660.0, "MT": 1960.0, "V4t": 1880.0673770928606, "V4": 1890.0, "PO": 2070.561486887418, "VOT": 1904.2178479221384, "DP": 2060.0, "MIP": 2070.561486887418, "MDP": 2070.561486887418, "MSTd": 2070.561486887418, "VIP": 2070.561486887418, "LIP": 2300.0, "PITv": 1904.2178479221384, "PITd": 1904.2178479221384, "AITv": 2630.0, "MSTl": 2070.561486887418, "FST": 2247.328674211474, "CITv": 2227.7479202457143, "CITd": 2227.7479202457143, "7a": 2680.0, "STPp": 2247.328674211474, "STPa": 2247.328674211474, "FEF": 2210.0, "46": 1860.0, "TF": 1620.0, "TH": 1870.0, "AITd": 2630.0}, "laminar_thicknesses": {"V1": {"1": 0.08967005445322952, "23": 0.3653998098401042, "4": 0.4614890241689768, "5": 0.16629777405727372, "6": 0.1571433374804157}, "V2": {"1": 0.1206349760574621, "23": 0.6040487829209896, "4": 0.23883030726256985, "5": 0.24866171189146055, "6": 0.24782422186751799}, "VP": {"1": 0.17714878802273043, "23": 0.6333760829470785, "4": 0.3209011312779164, "5": 0.20761102756029734, "6": 0.24630524345466334}, "V3": {"1": 0.23320824408280585, "23": 0.6991547059583443, "4": 0.30876967047500165, "5": 0.1571391892973308, "6": 0.18707046344920336}, "PIP": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "V3A": {"1": 0.19886503693743082, "23": 0.7110201516839858, "4": 0.24055402347012478, "5": 0.2330615700238317, "6": 0.27649921788462695}, "MT": {"1": 0.203395600676819, "23": 0.9454429780033843, "4": 0.2615654822335026, "5": 0.2612670050761422, "6": 0.28832893401015236}, "V4t": {"1": 0.2230803724680116, "23": 0.7975994308131237, "4": 0.2877787474825529, "5": 0.26144093828446113, "6": 0.3101678880447115}, "V4": {"1": 0.1771875, "23": 1.0040625, "4": 0.23625000000000002, "5": 0.23625000000000002, "6": 0.23625000000000002}, "PO": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "VOT": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "DP": {"1": 0.25583852489499187, "23": 0.9147226157943377, "4": 0.23389235234048408, "5": 0.29983213340496956, "6": 0.3557143735652168}, "MIP": {"1": 0.19533598932900173, "23": 0.8516649134744475, "4": 0.17189567060952152, "5": 0.15626879146320138, "6": 0.6953961220112461}, "MDP": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "MSTd": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "VIP": {"1": 0.25289300603205106, "23": 1.1696301528982362, "4": 0.2845046317860575, "5": 0.2054755674010415, "6": 0.15805812877003192}, "LIP": {"1": 0.2523199861163701, "23": 1.0042360848163574, "4": 0.239843388447137, "5": 0.23718840716900164, "6": 0.5664121334511337}, "PITv": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "PITd": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "AITv": {"1": 0.3366353068216317, "23": 1.2036026573832084, "4": 0.22718631698840488, "5": 0.3945226086071063, "6": 0.46805311019964885}, "MSTl": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "FST": {"1": 0.5126175393099899, "23": 0.9007008741548409, "4": 0.17666480168310383, "5": 0.30065493337157506, "6": 0.35669052569196447}, "CITv": {"1": 0.28514775842325774, "23": 1.0195145691207823, "4": 0.19243872440273863, "5": 0.33418133871269773, "6": 0.39646552958623793}, "CITd": {"1": 0.28514775842325774, "23": 1.0195145691207823, "4": 0.19243872440273863, "5": 0.33418133871269773, "6": 0.39646552958623793}, "7a": {"1": 0.34637158771533116, "23": 1.2384136630003206, "4": 0.20769132202217178, "5": 0.4059331257408577, "6": 0.4815903015213188}, "STPp": {"1": 0.2889353100093555, "23": 1.0330565448482978, "4": 0.18498493804617222, "5": 0.33862019198120835, "6": 0.40173168932644016}, "STPa": {"1": 0.2889353100093555, "23": 1.0330565448482978, "4": 0.18498493804617222, "5": 0.33862019198120835, "6": 0.40173168932644016}, "FEF": {"1": 0.21710327455919398, "23": 0.9240806045340052, "4": 0.3451385390428212, "5": 0.37297229219143585, "6": 0.3507052896725441}, "46": {"1": 0.2195874325610917, "23": 0.8222722945096794, "4": 0.17708663916217074, "5": 0.2762551570929863, "6": 0.36479847667407167}, "TF": {"1": 0.2334764331779098, "23": 0.6571929230193017, "4": 0.20753460726925316, "5": 0.23865769578911442, "6": 0.28313834074442085}, "TH": {"1": 0.27703703703703697, "23": 0.6464197530864197, "4": 0.11543209876543209, "5": 0.5694650205761316, "6": 0.2616460905349794}, "AITd": {"1": 0.3366353068216317, "23": 1.2036026573832084, "4": 0.22718631698840488, "5": 0.3945226086071063, "6": 0.46805311019964885}}, "category_density": {"1": {"overall": NaN, "23": NaN, "4": NaN, "5": NaN, "6": NaN}, "2": {"overall": 49446.0, "23": 49012.54441576494, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}, "3": {"overall": NaN, "23": NaN, "4": NaN, "5": NaN, "6": NaN}, "4": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "5": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "6": {"overall": 80648.75, "23": 77437.49196037636, "4": 150877.76843256268, "5": 69309.7641053403, "6": 69309.7641053403}, "7": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "8": {"overall": 173360.0, "23": 166264.25225183976, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}}}
\ No newline at end of file
+{"cocomac_completed": {"V1": {"7a": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, "0", "0", "3"], "target_pattern": [2.0, "0", "0", "0", "0", "0"]}, "LIP": {"source_pattern": ["0", "0", "0", "0", "0", "2"], "target_pattern": null}, "MT": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", "0", 2], "target_pattern": [2.0, "0", "0", "0", "0", "0"]}, "TH": {"source_pattern": ["0", "0", "0", "0", "0", 2], "target_pattern": null}, "V1": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", "3", "3"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": ["3", 2.0, 2.0, "0", 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", 2, "3"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V3A": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4t": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "46": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}}, "V2": {"5": {"source_pattern": null, "target_pattern": null}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": ["3", "2", "2", 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 0, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 0, -1, -1], "target_pattern": null}, "46": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": ["3", 2.0, "3", "3", 2.0, 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "FEF": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "IT": {"source_pattern": [2, 2, 2, 2, 2, "0"], "target_pattern": ["3", "3", 2.0, 2.0, "3", "3"]}, "LIP": {"source_pattern": [2, 2, "0", 2, 2, "0"], "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PIT": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "PITd": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "STPa": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "TF": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": ["3", "0", "0", "0", "1", "1"]}, "TH": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "V1": {"source_pattern": [2, 2, "0", "0", "0", "0"], "target_pattern": ["0", 2.0, 2.0, "3", "3", "3"]}, "V2": {"source_pattern": [2, 2, "3", "3", "0", "0"], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V3": {"source_pattern": ["0", "0", 2, "0", "0", 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V3A": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4": {"source_pattern": ["3", "3", 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", 2, 2, "0", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VIP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": [2, 2, "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "AITd": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}}, "VP": {"7a": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MSTd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4v": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"target_pattern": null, "source_pattern": null}}, "V3": {"7a": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}}, "PIP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MT": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIP": {"target_pattern": null, "source_pattern": null}}, "V3A": {"7a": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "V1": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "V3A": {"target_pattern": null, "source_pattern": null}}, "MT": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "V4t": {"7a": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "V4t": {"target_pattern": null, "source_pattern": null}}, "V4": {"7a": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "AIT": {"source_pattern": null, "target_pattern": null}, "AITv": {"source_pattern": null, "target_pattern": null}, "CIT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "CITd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FEF": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PITd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PITv": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PO": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VOT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "STPa": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "STPp": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}}, "PO": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "FEF": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MDP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}}, "VOT": {"V2": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VOT": {"target_pattern": null, "source_pattern": null}}, "DP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": null}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "1", 2.0, 2.0]}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "TF": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "MT": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}}, "MIP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V3A": {"source_pattern": null, "target_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}}, "MDP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "MDP": {"target_pattern": null, "source_pattern": null}}, "MSTd": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MST": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "STPa": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}}, "VIP": {"4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "IT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MDP": {"source_pattern": null, "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": null}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "LIP": {"4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "IT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MDP": {"source_pattern": null, "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": null}}, "PITv": {"7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "AIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MST": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "MT": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["3", "3", "0", 2, 2, -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V4": {"source_pattern": ["0", "3", "3", "0", "1", "1"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}}, "PITd": {"7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "IT": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "MT": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "STP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "V2": {"source_pattern": ["3", "3", 2, 2, "0", -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V4": {"source_pattern": ["0", "3", "3", "0", "1", "1"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}}, "AITv": {"CIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, -1]}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}}, "MSTl": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}}, "FST": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MSTl": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FST": {"target_pattern": null, "source_pattern": null}}, "CITv": {"35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "AIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "46": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "7a": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}, "STPp": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}}, "CITd": {"V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "CITd": {"target_pattern": null, "source_pattern": null}}, "7a": {"5": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "7a": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "AIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "AITd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", "3", "3", "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FEF": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, "3", 2.0, 2.0, 2.0, 2.0]}, "Ig": {"source_pattern": null, "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MDP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTl": {"source_pattern": [2, "0", "0", 2, "0", 2], "target_pattern": null}, "MT": {"source_pattern": [2, 2, 2, "3", "3", "3"], "target_pattern": null}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, -1, -1, -1, -1]}, "STPa": {"source_pattern": ["3", "3", "3", "3", "0", "0"], "target_pattern": null}, "STPp": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, -1, -1, -1, -1]}, "TF": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": [2, 2, 2, "3", "3", "3"], "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": null}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": [2, 2, 2, "0", 2, 2], "target_pattern": null}, "V4d": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "V4t": {"source_pattern": [2, 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}}, "STPp": {"5": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "IT": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, "3", 2.0, 2.0, 2.0, 2.0]}, "MST": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTd": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTl": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": null, "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPa": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPp": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}}, "STPa": {"7a": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "STPa": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "V2": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "MT": {"target_pattern": null, "source_pattern": null}}, "FEF": {"1": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "3a": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "4": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "5": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "6": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "7a": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "AITd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "CIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "Ig": {"source_pattern": null, "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTl": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "PO": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "Ri": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "STP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPp": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V2": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "TF": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}}, "46": {"1": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "2": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": null}, "4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": null}, "6": {"source_pattern": [2, 2, "3", 2, 2, 2], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "7a": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": ["0", "0", "3", "0", "3", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "36": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "46": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "AITd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "CIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FEF": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "IT": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "Ig": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": [2, 2, "3", 2, 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "SII": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "STPa": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STPp": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "TF": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", "0", "3", "0", 2, 2], "target_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}}, "TF": {"5": {"source_pattern": null, "target_pattern": null}, "6": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "7a": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "35": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": null}, "36": {"source_pattern": [2, 2, "0", 2, 2, "0"], "target_pattern": null}, "46": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "AITv": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "Id": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "Ig": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "SII": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": null}, "STPa": {"source_pattern": ["3", "3", "0", 2, 2, "0"], "target_pattern": null}, "STPp": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": null}, "TF": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "TH": {"6": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "35": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "36": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": null}, "46": {"source_pattern": [2, "0", "0", "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "AITv": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "FEF": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": null}, "IT": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": [2.0, "3", "3", "3", 2.0, 2.0]}, "Id": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "Ig": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "SII": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": null}, "STPa": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": [2, 2, 2, 2, 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "TH": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "AITd": {"7a": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "46": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "CIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "FEF": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STPa": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": null, "target_pattern": null}, "TH": {"source_pattern": null, "target_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}}}, "architecture_completed": {"FEF": 5, "7a": 4, "STPp": 4, "CITv": 5, "PITv": 5, "VP": 7, "V3A": 6, "TF": 5, "LIP": 5, "V4t": 6, "MIP": 5, "CITd": 5, "MSTd": 5, "DP": 5, "STPa": 4, "MSTl": 5, "MT": 6, "46": 4, "AITv": 4, "VIP": 5, "PITd": 5, "VOT": 6, "V1": 8, "V2": 7, "V3": 7, "V4": 6, "TH": 2, "PIP": 5, "FST": 4, "MDP": 5, "PO": 5, "AITd": 4}, "hierarchy_completed": {"7a": 0.6622, "PITv": 0.6048, "V3A": 0.3345, "LIP": 0.5677, "MIP": 0.5, "PITd": 0.6115, "DP": 0.4864, "STPa": 0.7162, "MSTl": 0.6216, "V1": 0.0, "46": 0.8649, "STPp": 0.6757, "V2": 0.1115, "V3": 0.1993, "V4": 0.4054, "TH": 0.9222, "TF": 0.8615, "MDP": 0.5, "PO": 0.4189, "FEF": 0.8177, "CITv": 0.625, "VP": 0.1993, "PIP": 0.2972, "V4t": 0.4054, "CITd": 0.6284, "AITv": 0.6149, "VOT": 0.4628, "MT": 0.4054, "VIP": 0.5677, "MSTd": 0.5473, "FST": 0.6216, "AITd": 1.0}, "SLN_completed": {"V1": {"7a": 0.13194421498048362, "LIP": 0.001953125, "MT": 0.17512874899425246, "PIP": 0.00676816232675885, "PO": 0.404565065, "STPp": 0.03868900250000001, "TF": 0.2856816827665948, "TH": 0.38953751737398074, "V2": 0.4007722176652155, "V3": 0.38394614661004506, "V3A": 0.006840776179282866, "V4": 0.22741361375468427, "V4t": 0.181545865, "VIP": 0.001953125, "46": 0.023962599915093682, "STPa": 0.025645547576816728, "FEF": 0.12220022250000001, "VOT": 0.13606147826236337, "AITd": 0.01173693, "FST": 0.017777577500000002, "VP": 0.2411506010095163, "DP": 0.06666331317758761, "CITv": 0.01173693, "MSTd": 0.10606161761701319, "PITd": 0.11926319973629251, "MSTl": 0.015780545587622773, "CITd": 0.017777577500000002, "AITv": 0.01173693, "PITv": 0.06536264773862561}, "V2": {"7a": 0.2473485547389337, "46": 0.09611216182822098, "CITv": 0.03237627, "DP": 0.11861750167939675, "FEF": 0.20729421976778806, "FST": 0.07046779333333333, "LIP": 0.04916585999999999, "MIP": 0.1647674456125005, "MSTd": 0.23701435042788077, "MSTl": 0.06238784920796942, "MT": 0.26510935220880993, "PIP": 0.21467556119098472, "PITd": 0.22234497210587106, "PO": 0.1647674456125005, "STPa": 0.1011489004860832, "STPp": 0.0, "TF": 0.25254592441901647, "TH": 0.010029086666666668, "V1": 0.7359601200000001, "V3": 0.31951689276600775, "V3A": 0.2159478233405306, "V4": 0.2541399406855286, "V4t": 0.26864967000000006, "VIP": 0.04916586000000001, "VOT": 0.22762425945260104, "VP": 0.25842434280049886, "AITd": 0.03237627, "MDP": 0.1647674456125005, "CITd": 0.07046779333333335, "AITv": 0.03237627, "PITv": 0.07596815828333246}, "VP": {"7a": 0.09442586553850892, "DP": 0.15571353140142427, "LIP": 0.18807267059796445, "MSTd": 0.1647674456125005, "MT": 0.2603679458405936, "PIP": 0.1647674456125005, "TF": 0.1451231907954106, "V2": 0.4397456164544487, "V3A": 0.23303749052194725, "V4": 0.2914236057357094, "VIP": 0.1647674456125005, "VOT": 0.24423035492494716}, "V3": {"7a": 0.09442586553850892, "FST": 0.1011489004860832, "LIP": 0.18807267059796445, "MSTd": 0.1647674456125005, "MT": 0.2603679458405936, "PIP": 0.1647674456125005, "TF": 0.1451231907954106, "V1": 0.6993004977911257, "V2": 0.4397456164544487, "V3A": 0.23303749052194725, "V4": 0.2914236057357094, "V4t": 0.2572732264020294, "VIP": 0.1647674456125005, "VP": 0.4397456164544487}, "PIP": {"7a": 0.31187356990740184, "DP": 0.425126660792947, "LIP": 0.4754470637035422, "MT": 0.5719047029350985, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3": 0.749151726197644, "V4": 0.6080369758634977, "VP": 0.749151726197644}, "V3A": {"7a": 0.2306470411405071, "DP": 0.3317934753804855, "FST": 0.24266165394773911, "LIP": 0.3791343871826437, "MIP": 0.345394264212165, "MSTd": 0.345394264212165, "MSTl": 0.345394264212165, "MT": 0.4741086898197289, "V1": 0.8642589131334557, "V2": 0.664819185499987, "V3": 0.664819185499987, "V4": 0.511183022022283, "VIP": 0.345394264212165, "VP": 0.664819185499987}, "MT": {"7a": 0.20514417151891692, "46": 0.2079858130256918, "CITv": 0.2262644296613191, "DP": 0.3009622802995952, "FEF": 0.2762308513985713, "FST": 0.2163924357522115, "LIP": 0.34663413513815555, "MIP": 0.31403189331661385, "MSTd": 0.31403189331661385, "MSTl": 0.31403189331661385, "PIP": 0.31403189331661385, "PO": 0.31403189331661385, "STPp": 0.2163924357522115, "V1": 0.8444668131657768, "V2": 0.6326887550282241, "V3": 0.6326887550282241, "V3A": 0.4058308482690615, "V4": 0.47662208079615176, "V4t": 0.4359767813039983, "VIP": 0.31403189331661385, "VP": 0.6326887550282241}, "V4t": {"7a": 0.2078731885766554, "46": 0.2107370269407612, "FST": 0.21920773435266425, "MSTd": 0.31743250009665086, "MT": 0.44351992011019076, "V2": 0.6362850677254202, "V3": 0.6362850677254202, "V4": 0.4804317628197222}, "V4": {"7a": 0.4232641237436804, "46": 0.1823592393657686, "AITv": 0.29966645, "CITd": 0.23457694666666673, "CITv": 0.2996664499999999, "DP": 0.2538615627727568, "FEF": 0.6525620966666666, "FST": 0.2345769466666667, "LIP": 0.24640913666666664, "MT": 0.4203839134858612, "PIP": 0.6991783852090286, "PITd": 0.29129667122990904, "PITv": 0.29280809982084094, "PO": 0.9296867466666666, "TF": 0.41928092775890013, "TH": 0.6746721308204547, "V1": 0.8605949687186175, "V2": 0.8946774848445085, "V3": 0.8106335742703666, "V3A": 0.6995602901668315, "V4t": 0.44856999000000003, "VIP": 0.24640913666666667, "VOT": 0.29207236355152044, "VP": 0.39992316913597753, "STPa": 0.1901303816478059, "AITd": 0.2996664499999999, "MDP": 0.28182290248104663, "STPp": 0.0, "MIP": 0.28182290248104663, "MSTd": 0.4352943409457222, "MSTl": 0.233633950099824}, "PO": {"7a": 0.31187356990740184, "DP": 0.425126660792947, "FEF": 0.3969553786481969, "LIP": 0.4754470637035422, "MDP": 0.4397456164544487, "MIP": 0.4397456164544487, "MSTd": 0.4397456164544487, "MSTl": 0.4397456164544487, "MT": 0.5719047029350985, "PIP": 0.4397456164544487, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3": 0.749151726197644, "V3A": 0.5376665672762394, "V4t": 0.5681484209786033, "VIP": 0.4397456164544487, "VP": 0.749151726197644}, "VOT": {"V2": 0.6515582171973071, "VP": 0.6515582171973071}, "DP": {"7a": 0.3569152409933993, "46": 0.32873489289592567, "FEF": 0.5164609, "LIP": 0.36808971, "MSTd": 0.359307158192874, "PIP": 0.7224508243801265, "PO": 0.91499421, "STPp": 0.0, "V2": 0.8284911256892572, "V3A": 0.7225151175175789, "V4": 0.502791527151495, "VP": 0.5036956237929567, "STPa": 0.33928533532425265, "V3": 0.887729957296875, "VOT": 0.4978915580368853, "AITd": 0.16666665999999994, "MDP": 0.4544472048222968, "FST": 0.26638557999999996, "V1": 0.91499421, "TF": 0.4477395966573806, "MIP": 0.4544472048222968, "CITv": 0.16666665999999997, "TH": 0.47371497212186886, "VIP": 0.36808971, "PITd": 0.4306777609068619, "MSTl": 0.2919336871009218, "CITd": 0.26638558, "V4t": 0.4812295, "AITv": 0.16666665999999997, "PITv": 0.16385097434860155, "MT": 0.4764831936322133}, "MIP": {"7a": 0.31187356990740184, "LIP": 0.4754470637035422, "PO": 0.4397456164544487, "V2": 0.749151726197644, "V3A": 0.5376665672762394}, "MDP": {}, "MSTd": {"7a": 0.44486240562524343, "46": 0.3154038868555226, "DP": 0.8352353799814716, "FEF": 0.6273571799011722, "FST": 0.28586558000000006, "LIP": 0.52910535, "MT": 0.285560720530831, "PO": 0.94168235, "STPp": 0.05016722, "TF": 0.6059730506644079, "V2": 0.8875577521323456, "V3": 0.9072129777530921, "V3A": 0.8681135828616146, "VIP": 0.52910535, "VP": 0.6210356415152859, "STPa": 0.3257802492365629, "VOT": 0.48008040500394433, "AITd": 0.20786640000000003, "V4": 0.6120145117230196, "MDP": 0.4397456164544487, "PIP": 0.8680375753748741, "V1": 0.9097885214665646, "MIP": 0.4397456164544487, "CITv": 0.20786640000000003, "TH": 0.6589031753555138, "PITd": 0.31125558595064046, "MSTl": 0.2812370526681836, "CITd": 0.28586558, "AITv": 0.2078664, "PITv": 0.2981900252191592}, "VIP": {"7a": 0.31187356990740184, "46": 0.3154038868555226, "FEF": 0.3969553786481969, "FST": 0.3257802492365629, "LIP": 0.4754470637035422, "MDP": 0.4397456164544487, "MIP": 0.4397456164544487, "MSTd": 0.4397456164544487, "MSTl": 0.4397456164544487, "MT": 0.5719047029350985, "PIP": 0.4397456164544487, "PO": 0.4397456164544487, "STPp": 0.3257802492365629, "V2": 0.749151726197644, "V3": 0.749151726197644, "V3A": 0.5376665672762394, "V4": 0.6080369758634977, "V4t": 0.5681484209786033, "VP": 0.749151726197644}, "LIP": {"7a": 0.28076284141826424, "46": 0.2841284860076212, "DP": 0.390189400203489, "FEF": 0.362694437412613, "FST": 0.29403822928836465, "MDP": 0.40452785345081144, "MIP": 0.40452785345081144, "MSTd": 0.40452785345081144, "MT": 0.5363312838211267, "PIP": 0.40452785345081144, "PO": 0.40452785345081144, "STPp": 0.29403822928836465, "V2": 0.7196467830007919, "V3": 0.7196467830007919, "V3A": 0.5018058412911562, "V4": 0.573062361443146, "V4t": 0.5325302918019821, "VIP": 0.40452785345081144, "VP": 0.7196467830007919}, "PITv": {"7a": 0.21980894609736484, "AITd": 0.24175822798053087, "AITv": 0.24175822798053087, "CITd": 0.24175822798053087, "CITv": 0.24175822798053087, "FST": 0.23150869224939957, "LIP": 0.365469778336114, "MT": 0.4597488319767691, "STPp": 0.23150869224939957, "TF": 0.3027748504611968, "TH": 0.19454931004337409, "V2": 0.6515582171973071, "V4": 0.49677433132557947, "V4t": 0.4559549345314889, "VOT": 0.4397456164544487, "VP": 0.6515582171973071}, "PITd": {"7a": 0.21980894609736484, "FST": 0.23150869224939957, "MT": 0.4597488319767691, "STPp": 0.23150869224939957, "V2": 0.6515582171973071, "V4": 0.49677433132557947, "V4t": 0.4559549345314889, "VOT": 0.4397456164544487, "VP": 0.6515582171973071}, "AITv": {"CITd": 0.4397456164544487, "CITv": 0.4397456164544487, "PITd": 0.6544746643053295, "PITv": 0.6544746643053295, "TF": 0.5130062065154856, "TH": 0.3774407149467103, "V4": 0.7057317983155025}, "MSTl": {"7a": 0.31187356990740184, "46": 0.3154038868555226, "DP": 0.425126660792947, "FEF": 0.3969553786481969, "FST": 0.3257802492365629, "LIP": 0.4754470637035422, "MT": 0.5719047029350985, "PO": 0.4397456164544487, "STPp": 0.3257802492365629, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3A": 0.5376665672762394, "V4t": 0.5681484209786033, "VIP": 0.4397456164544487}, "FST": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "CITv": 0.45288136231295556, "DP": 0.5442655594117083, "FEF": 0.5154533480763229, "LIP": 0.594213477151346, "MSTd": 0.5589734213408636, "MSTl": 0.5589734213408636, "MT": 0.6848151869041003, "STPp": 0.4397456164544487, "TF": 0.5262461396949784, "V2": 0.8344259484773664, "V3": 0.8344259484773664, "V3A": 0.6534080536187905, "V4": 0.7170795468774352, "V4t": 0.6814092972055, "VIP": 0.5589734213408636, "VP": 0.8344259484773664}, "CITv": {"AITd": 0.4397456164544487, "AITv": 0.4397456164544487, "MT": 0.6729152169546991, "PITd": 0.6544746643053295, "PITv": 0.6544746643053295, "TF": 0.5130062065154856, "V2": 0.826025395583821, "V4": 0.7057317983155025, "46": 0.4153365490462339, "STPa": 0.4266758765307271, "V3": 0.826025395583821, "FEF": 0.5022006131674926, "VOT": 0.6544746643053295, "7a": 0.4114584896417437, "PO": 0.5458319856708994, "LIP": 0.5812795053424596, "FST": 0.4266758765307271, "PIP": 0.5458319856708994, "V1": 0.9465819449520904, "V3A": 0.6410656305130789, "STPp": 0.4266758765307271, "VP": 0.826025395583821, "DP": 0.531068720161679, "TH": 0.3774407149467103, "MSTd": 0.5458319856708994, "VIP": 0.5458319856708994, "MSTl": 0.5458319856708994, "CITd": 0.4397456164544487, "V4t": 0.669456888813816}, "CITd": {"V4": 0.7057317983155025}, "7a": {"46": 0.443675163086642, "AITd": 0.46834387056913884, "CITv": 0.46834387056913884, "DP": 0.5596718210193434, "FEF": 0.5309653576659095, "FST": 0.45514888874900034, "LIP": 0.6092437172723907, "MDP": 0.5742944358234963, "MIP": 0.5742944358234963, "MSTd": 0.5742944358234963, "MSTl": 0.5742944358234963, "MT": 0.6985232422376585, "PIP": 0.5742944358234963, "PO": 0.5742944358234963, "STPa": 0.45514888874900034, "STPp": 0.45514888874900034, "TF": 0.5417280230142912, "TH": 0.40515398450884493, "V2": 0.8439331894156354, "V3": 0.8439331894156354, "V3A": 0.6676703062854825, "V4": 0.7301077109056936, "V4t": 0.6951825087343344, "VIP": 0.5742944358234963, "VP": 0.8439331894156354, "VOT": 0.6806832403963549, "V1": 0.9539824713073445, "PITd": 0.6806832403963549, "CITd": 0.46834387056913884, "AITv": 0.46834387056913884, "PITv": 0.6806832403963549}, "STPp": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "CITv": 0.45288136231295556, "FEF": 0.5154533480763229, "FST": 0.4397456164544487, "MSTd": 0.5589734213408636, "MSTl": 0.5589734213408636, "MT": 0.6848151869041003, "STPa": 0.4397456164544487, "TF": 0.5262461396949784, "TH": 0.3901300859940757, "V2": 0.8344259484773664, "V4": 0.7170795468774352, "V4t": 0.6814092972055, "V3": 0.8344259484773664, "VOT": 0.6666418222423477, "AITd": 0.45288136231295556, "PO": 0.5589734213408636, "LIP": 0.594213477151346, "MDP": 0.5589734213408636, "PIP": 0.5589734213408636, "V1": 0.9500983377771388, "V3A": 0.6534080536187905, "VP": 0.8344259484773664, "DP": 0.5442655594117083, "MIP": 0.5589734213408636, "VIP": 0.5589734213408636, "PITd": 0.6666418222423477, "CITd": 0.45288136231295556, "AITv": 0.45288136231295556, "PITv": 0.6666418222423477}, "STPa": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "STPp": 0.4397456164544487, "TF": 0.5262461396949784, "TH": 0.3901300859940757, "V3": 0.8344259484773664, "FEF": 0.5154533480763229, "VOT": 0.6666418222423477, "AITd": 0.45288136231295556, "PO": 0.5589734213408636, "LIP": 0.594213477151346, "V4": 0.7170795468774352, "FST": 0.4397456164544487, "V1": 0.9500983377771388, "VP": 0.8344259484773664, "DP": 0.5442655594117083, "CITv": 0.45288136231295556, "MSTd": 0.5589734213408636, "VIP": 0.5589734213408636, "PITd": 0.6666418222423477, "V2": 0.8344259484773664, "MSTl": 0.5589734213408636, "CITd": 0.45288136231295556, "V4t": 0.6814092972055, "AITv": 0.45288136231295556, "PITv": 0.6666418222423477, "MT": 0.6848151869041003}, "FEF": {"7a": 0.3516293974131231, "46": 0.35533041409939803, "AITd": 0.3787579272123091, "CITv": 0.3787579272123091, "FST": 0.3661852703855369, "LIP": 0.5191568217929547, "MSTd": 0.48325225451521486, "MSTl": 0.48325225451521486, "MT": 0.6144158201881944, "PO": 0.48325225451521486, "STPp": 0.3661852703855369, "V2": 0.7827293680977521, "V3": 0.7827293680977521, "V3A": 0.5808929113039869, "V4": 0.6494469737044479, "V4t": 0.6107535641856292, "VIP": 0.48325225451521486, "VP": 0.7827293680977521, "STPa": 0.3661852703855369, "VOT": 0.5949508734340588, "MDP": 0.48325225451521486, "PIP": 0.48325225451521486, "V1": 0.9272273846670287, "TF": 0.45045065681875274, "DP": 0.4684472210714786, "MIP": 0.48325225451521486, "TH": 0.319413423745837, "PITd": 0.5949508734340588, "CITd": 0.3787579272123091, "AITv": 0.3787579272123091, "PITv": 0.5949508734340588}, "46": {"7a": 0.4358219970859884, "AITd": 0.46438597533050835, "CITv": 0.46438597533050835, "DP": 0.5557414275321807, "FEF": 0.5270038247288525, "LIP": 0.6054163293692177, "MT": 0.6950448469649315, "STPa": 0.45120425795166497, "STPp": 0.45120425795166497, "TF": 0.5377757373505233, "TH": 0.4012994082965777, "V2": 0.8415379443445309, "V4": 0.7268063099411157, "VIP": 0.5703878991437041, "V3": 0.8415379443445309, "VOT": 0.6771176328311563, "PO": 0.5703878991437041, "MDP": 0.5703878991437041, "FST": 0.45120425795166497, "PIP": 0.5703878991437041, "V1": 0.953013524197034, "V3A": 0.6640467174085998, "VP": 0.8415379443445309, "MIP": 0.5703878991437041, "MSTd": 0.5703878991437041, "PITd": 0.6771176328311563, "MSTl": 0.5703878991437041, "CITd": 0.46438597533050835, "V4t": 0.6916870936512598, "AITv": 0.46438597533050835, "PITv": 0.6771176328311563}, "TF": {"7a": 0.3416307811243306, "46": 0.3452929507529249, "AITv": 0.3684973073841186, "CITv": 0.3684973073841186, "FEF": 0.42908445348136853, "FST": 0.35603954622911427, "LIP": 0.5083556917571386, "MT": 0.6040158814464341, "STPa": 0.35603954622911427, "STPp": 0.35603954622911427, "TH": 0.3097951619855184, "V2": 0.7746813206878705, "V3": 0.7746813206878705, "V3A": 0.5702799471915022, "V4": 0.6393554551781233, "VP": 0.7746813206878705}, "TH": {"7a": 0.47480376159200716, "46": 0.47876905627078103, "AITv": 0.5035828308582835, "FEF": 0.5659653164601144, "STPa": 0.4903272366306628, "STPp": 0.4903272366306628, "TF": 0.5765998675976063, "V2": 0.86415297954125, "V4": 0.7585211182027408}, "AITd": {"7a": 0.4114584896417437, "46": 0.4153365490462339, "CITd": 0.4397456164544487, "CITv": 0.4397456164544487, "FEF": 0.5022006131674926, "PITd": 0.6544746643053295, "STPa": 0.4266758765307271, "TF": 0.5130062065154856, "TH": 0.3774407149467103}}, "SLN_Data_FV91": {"MSTd": {"V1": 0.9097885214665646, "V2": 0.8875577521323456, "PO": 0.94168235, "TF": 0.6059730506644079, "TH": 0.6589031753555138, "PIP": 0.8680375753748741, "V4": 0.6120145117230196, "V3": 0.9072129777530921, "MSTd": 0.16862906228337676, "V3A": 0.8681135828616146, "VP": 0.6210356415152859, "DP": 0.8352353799814716, "7a": 0.44486240562524343, "PITd": 0.31125558595064046, "VOT": 0.48008040500394433, "VIP": 0.52910535, "LIP": 0.52910535, "STPp": 0.05016722, "MSTl": 0.2812370526681836, "MT": 0.285560720530831, "FST": 0.28586558000000006, "CITd": 0.28586558, "PITv": 0.2981900252191592, "AITd": 0.20786640000000003, "CITv": 0.20786640000000003, "AITv": 0.2078664, "FEF": 0.6273571799011722}, "V4": {"PO": 0.9296867466666666, "TF": 0.41928092775890013, "TH": 0.6746721308204547, "PIP": 0.6991783852090286, "V4": 0.35531495687884207, "V1": 0.8605949687186175, "V3": 0.8106335742703666, "V2": 0.8946774848445085, "MSTd": 0.4352943409457222, "V3A": 0.6995602901668315, "VP": 0.39992316913597753, "DP": 0.2538615627727568, "7a": 0.4232641237436804, "PITd": 0.29129667122990904, "VOT": 0.29207236355152044, "VIP": 0.24640913666666667, "LIP": 0.24640913666666664, "STPp": 0.0, "MSTl": 0.233633950099824, "MT": 0.4203839134858612, "FST": 0.2345769466666667, "CITd": 0.23457694666666673, "V4t": 0.44856999000000003, "AITd": 0.2996664499999999, "CITv": 0.2996664499999999, "AITv": 0.29966645, "PITv": 0.29280809982084094, "FEF": 0.6525620966666666}, "V1": {"PO": 0.404565065, "TF": 0.2856816827665948, "TH": 0.38953751737398074, "PIP": 0.00676816232675885, "V4": 0.22741361375468427, "V1": 0.404565065, "V3": 0.38394614661004506, "V2": 0.4007722176652155, "MSTd": 0.10606161761701319, "V3A": 0.006840776179282866, "VP": 0.2411506010095163, "DP": 0.06666331317758761, "7a": 0.13194421498048362, "PITd": 0.11926319973629251, "VOT": 0.13606147826236337, "VIP": 0.001953125, "LIP": 0.001953125, "STPp": 0.03868900250000001, "MSTl": 0.015780545587622773, "MT": 0.17512874899425246, "FST": 0.017777577500000002, "CITd": 0.017777577500000002, "V4t": 0.181545865, "PITv": 0.06536264773862561, "AITd": 0.01173693, "CITv": 0.01173693, "AITv": 0.01173693, "FEF": 0.12220022250000001}, "V2": {"V1": 0.7359601200000001, "V2": 0.5864300202496507, "TF": 0.25254592441901647, "PIP": 0.21467556119098472, "V3A": 0.2159478233405306, "VP": 0.25842434280049886, "V4": 0.2541399406855286, "V3": 0.31951689276600775, "DP": 0.11861750167939675, "7a": 0.2473485547389337, "PITd": 0.22234497210587106, "VOT": 0.22762425945260104, "VIP": 0.04916586000000001, "LIP": 0.04916585999999999, "STPp": 0.0, "MSTd": 0.23701435042788077, "MSTl": 0.06238784920796942, "MT": 0.26510935220880993, "FST": 0.07046779333333333, "CITd": 0.07046779333333335, "V4t": 0.26864967000000006, "PITv": 0.07596815828333246, "AITd": 0.03237627, "CITv": 0.03237627, "AITv": 0.03237627, "TH": 0.010029086666666668, "FEF": 0.20729421976778806}, "DP": {"PO": 0.91499421, "TF": 0.4477395966573806, "TH": 0.47371497212186886, "PIP": 0.7224508243801265, "V4": 0.502791527151495, "V1": 0.91499421, "V3": 0.887729957296875, "V2": 0.8284911256892572, "MSTd": 0.359307158192874, "V3A": 0.7225151175175789, "VP": 0.5036956237929567, "DP": 0.46428641987840946, "7a": 0.3569152409933993, "PITd": 0.4306777609068619, "VOT": 0.4978915580368853, "VIP": 0.36808971, "LIP": 0.36808971, "STPp": 0.0, "MSTl": 0.2919336871009218, "MT": 0.4764831936322133, "FST": 0.26638557999999996, "CITd": 0.26638558, "V4t": 0.4812295, "PITv": 0.16385097434860155, "AITd": 0.16666665999999994, "CITv": 0.16666665999999997, "AITv": 0.16666665999999997, "FEF": 0.5164609}}, "FLN_Data_FV91": {"V1": {"PO": 0.00732, "TF": 0.031515354, "TH": 0.0251198676, "PIP": 0.0011189715999999998, "V4": 0.10954549659999999, "V3": 0.023208176, "V2": 0.5977878200000001, "MSTd": 0.009428104000000001, "V3A": 0.0015919234, "VP": 0.025739616000000003, "DP": 0.0010145062, "7a": 0.0082967068, "PITd": 0.012291986738000001, "VOT": 0.011115732, "VIP": 0.0005227172, "LIP": 0.000407667, "STPa": 0.00062455239, "STPp": 0.0017661359199999996, "MSTl": 0.0018131874, "FST": 0.0024128178, "AITd": 0.0011806956020000002, "CITd": 0.0015557495139999996, "MT": 0.017819879999999993, "V4t": 0.010355839999999998, "PITv": 0.008508000268, "AITv": 0.0019543028, "CITv": 0.0031682135119999997, "FEF": 0.000192719624, "46": 6.56082e-07}, "V2": {"V1": 0.719374, "TF": 0.021752519333333328, "PIP": 0.0016004779333333335, "V3A": 0.0027763386666666665, "VP": 0.030574433333333335, "V4": 0.10780030110000002, "V3": 0.005494763999999998, "DP": 0.0006935116333333333, "7a": 0.003920323266666667, "PITd": 0.00645689953, "VOT": 0.005428937, "VIP": 0.00043936193333333335, "LIP": 0.0003024266666666667, "MDP": 7.533e-06, "PO": 9.915666666666666e-06, "MIP": 6.448e-06, "STPp": 0.0001565191266666667, "STPa": 6.775063e-05, "MSTd": 0.0035983412133333333, "MSTl": 0.0004045919666666667, "FST": 0.0005781431133333334, "AITd": 0.00011696018333333336, "CITd": 0.00015839591000000003, "MT": 0.010586940999999999, "V4t": 0.006289066666666667, "PITv": 0.0012713125800000002, "TH": 0.0004302408, "AITv": 0.0004452911, "CITv": 0.0007957710533333331, "FEF": 0.00011400506666666668}, "V4": {"V1": 0.03265630666666667, "V2": 0.25016898013333333, "PO": 0.002687799166666667, "TF": 0.052711999999999995, "TH": 0.012389706666666667, "PIP": 0.002219050266666667, "V3": 0.018678131733333336, "MSTd": 0.005856831066666667, "V3A": 0.0036355771333333336, "VP": 0.02896426666666667, "DP": 0.0010129916, "7a": 0.0070245596, "PITd": 0.05751595333333334, "VIP": 0.0017124856666666669, "LIP": 0.0013945623333333334, "STPa": 0.0020584594000000005, "STPp": 0.0006447129666666667, "MSTl": 0.005235169433333332, "FST": 0.009160531999999997, "AITd": 0.011051566, "CITd": 0.012193617333333332, "MT": 0.021604643499999996, "V4t": 0.011346133333333331, "PITv": 0.08069382666666668, "VOT": 0.04640013333333332, "AITv": 0.028120480000000003, "CITv": 0.08528930666666668, "46": 0.00020951288, "FEF": 0.0034942574533333333, "MIP": 3.755333333333333e-07, "MDP": 1.9494333333333333e-06}, "FEF": {"PO": 0.0019396929999999997, "TF": 0.0011607034433333333, "TH": 0.00016265508666666668, "PIP": 0.0015277950666666667, "V4": 0.004977958576666667, "V1": 0.00022920966666666672, "V3": 0.00037832696666666664, "V2": 0.0026317330000000002, "MSTd": 0.0092838776, "V3A": 0.00030441690000000004, "VP": 0.0009217902500000001, "PITd": 0.002460433963333334, "VOT": 0.00025604022, "DP": 0.0007984183666666667, "7a": 0.004013115566666667, "VIP": 0.005299874766666666, "LIP": 0.0039942541000000005, "MIP": 0.001530742066666667, "MDP": 0.0031931584000000008, "STPa": 0.0020900494333333333, "STPp": 0.027672489399999996, "MSTl": 0.001190899, "FST": 0.0016546871, "MT": 0.0022583639999999997, "CITd": 0.00028953729, "V4t": 0.0012444373333333333, "PITv": 0.00021049071, "AITd": 0.00011194493333333333, "AITv": 0.00010364666, "CITv": 0.00010565765666666668, "46": 0.1895018566666667}, "7a": {"V1": 2.03353e-05, "V2": 0.0004819565000000001, "PO": 0.019530515, "TF": 0.0347868766, "TH": 0.00023084030000000003, "PIP": 0.011194674, "V4": 0.0095445104, "V3": 1.7328000000000002e-06, "MSTd": 0.08197936960000002, "DP": 0.0140701901, "V3A": 5.58706e-05, "PITd": 0.007615705600000001, "VOT": 0.0008113, "VP": 0.0006863600000000001, "VIP": 0.0489402158, "LIP": 0.040764316, "MIP": 0.017571071599999995, "MDP": 0.024250399999999995, "STPa": 0.007041039999999999, "STPp": 0.0605408629, "MSTl": 0.013092799999999998, "FST": 0.00594815, "AITd": 0.001156032, "CITd": 0.0026997239999999997, "MT": 0.0011731722, "V4t": 9.539200000000002e-06, "PITv": 0.014191047999999998, "AITv": 0.015436940199999999, "CITv": 0.012528181999999999, "FEF": 0.014788873000000001, "46": 0.014181229799999999}, "DP": {"V1": 0.007304985799999999, "V2": 0.0868778232, "PO": 0.022935904999999993, "TF": 0.06188520200000001, "TH": 0.006924548, "PIP": 0.031740154, "V4": 0.265129002, "V3": 0.00384, "MSTd": 0.044096166400000004, "V3A": 0.020889140000000004, "VP": 0.06324947, "7a": 0.12170417, "PITd": 0.027323034000000003, "VOT": 0.010269784, "VIP": 0.009584543999999999, "LIP": 0.0064203, "MIP": 0.01056964, "MDP": 0.010851755000000001, "STPa": 0.0004850526, "STPp": 0.0005674942999999999, "MSTl": 0.005852022, "FST": 0.0030646910000000005, "AITd": 0.0003074472, "CITd": 0.0007696679999999999, "MT": 0.048233399999999996, "V4t": 0.028512000000000003, "PITv": 0.0048909, "AITv": 0.0054317116, "CITv": 0.0043738349999999995, "FEF": 0.0023306253, "46": 0.0011283134999999999}, "STPa": {"PO": 1.6968e-06, "TF": 0.01044059712, "TH": 0.00370067704, "PIP": 0.0, "V4": 2.16198e-05, "V1": 2.9014879999999998e-05, "V3": 1.584e-07, "V2": 3.010232e-05, "MSTd": 0.0188856368, "PITd": 0.0033370486800000003, "VOT": 1.237424e-05, "VP": 7.814400000000001e-07, "DP": 2.9721799999999997e-05, "7a": 0.006960793999999999, "VIP": 4.5480000000000005e-05, "LIP": 3.792000000000001e-05, "STPp": 0.30555149480000005, "MSTl": 0.007341100000000001, "FST": 0.0157761, "AITd": 0.025548469999999997, "CITd": 0.00680838, "MT": 0.0002621412, "V4t": 2.3232000000000005e-06, "PITv": 0.0008363146, "AITv": 0.0024953279999999998, "CITv": 0.0014250989999999998, "46": 0.014112841500000002, "FEF": 0.0010566697000000001}, "STPp": {"V4": 0.00041431336666666673, "PITd": 0.0011464076, "V2": 0.0005494173333333333, "V1": 0.0006513901333333334, "TH": 0.002792431666666667, "VIP": 0.003604891736666667, "7a": 0.03231078781333333, "DP": 0.0008150314333333333, "LIP": 0.0029458097466666675, "STPa": 0.0463087638, "MSTd": 0.07750212466666667, "MSTl": 0.008363258666666666, "FST": 0.0029582593, "AITd": 0.00045012213333333326, "CITd": 0.0007336893666666667, "MT": 0.0005119500000000001, "V4t": 4.476266666666667e-05, "AITv": 0.00024408833333333332, "CITv": 0.00028173233333333335, "VOT": 3.2250000000000005e-05, "PITv": 0.00017818766666666665, "TF": 0.0077603151333333325, "PO": 1.9194299999999993e-05, "46": 0.006187686136666667, "FEF": 0.0027500169733333333, "PIP": 0.0006357816999999999, "V3": 4.158199999999999e-06, "V3A": 0.0001946754, "VP": 8.875213333333334e-05, "MDP": 1.0888033333333335e-05, "MIP": 1.0488666666666666e-06}, "CITv": {"PO": 1.77256e-06, "TF": 0.03182241, "TH": 0.0041587257, "PIP": 0.000142787, "V4": 0.0709605166, "V1": 3.07546e-05, "V3": 4.4818000000000004e-05, "V2": 0.00166803487, "MSTd": 8.492860000000002e-06, "V3A": 0.00020133600000000004, "VP": 0.012700080000000002, "DP": 0.0002021464, "7a": 0.0016731169699999997, "PITd": 0.0955115232, "VOT": 0.037845000000000004, "VIP": 0.00107708, "LIP": 0.00089439, "STPa": 0.005788337000000001, "STPp": 0.00013233991, "MSTl": 0.00023593203999999998, "FST": 0.0020013619999999996, "AITd": 0.1731416, "CITd": 0.10012099999999997, "MT": 9.8895e-05, "V4t": 2.64e-06, "PITv": 0.04409120000000001, "AITv": 0.12012400000000001, "FEF": 0.010091085640000002, "46": 0.0021442090000000002}, "46": {"TF": 0.00023437925, "PIP": 1.3434800000000002e-05, "V3A": 3.5756000000000005e-06, "VP": 5.0537e-06, "V4": 5.4178949999999994e-05, "V3": 4.477375e-05, "V2": 0.00099948935, "DP": 0.0005022087000000001, "7a": 0.009070648600000002, "VIP": 0.0030687705, "LIP": 0.0025490456000000004, "MDP": 0.00010807840000000002, "PO": 7.39644e-05, "MIP": 1.8074200000000004e-05, "STPa": 0.0033303452000000007, "STPp": 0.009455807400000002, "MSTd": 0.0009848546000000005, "MSTl": 0.0007123987000000001, "FST": 0.00237433, "AITd": 0.005064239399999999, "CITd": 0.0051180683, "MT": 4.3527e-06, "PITd": 0.0031302532999999996, "TH": 6.31086e-05, "AITv": 0.00015379490000000002, "CITv": 0.0013516526999999996, "VOT": 3.4511e-06, "PITv": 0.0002622428, "FEF": 0.12080655639999999, "V1": 0.00010192, "V4t": 1.4608e-06}, "MSTd": {"V1": 0.02872964328, "V2": 0.14120797318999997, "PO": 0.00119106314, "TF": 0.06385009, "TH": 0.00618325579, "PIP": 0.014145930179999999, "V4": 0.34126389999999995, "V3": 0.013097999999999999, "V3A": 0.020916080000000004, "VP": 0.07663900000000001, "DP": 0.014847490000000001, "7a": 0.004676075, "PITd": 0.12423347000000001, "VOT": 0.021822499999999998, "VIP": 0.009725760000000002, "LIP": 0.007245720000000001, "MIP": 1.33392e-06, "MDP": 8.314200000000001e-07, "STPa": 0.0021726988, "STPp": 0.0026488431199999996, "MSTl": 0.01104449, "FST": 0.01762035, "AITd": 0.00425251, "CITd": 0.00940632, "MT": 0.00558822, "PITv": 0.01629822, "AITv": 0.0058828, "CITv": 0.01248798, "FEF": 0.0028822971000000003, "46": 6.20149e-05}, "VP": {}, "V3": {}, "PIP": {}, "V3A": {}, "MT": {}, "V4t": {}, "PO": {}, "VOT": {}, "MIP": {}, "MDP": {}, "VIP": {}, "LIP": {}, "PITv": {}, "PITd": {}, "AITv": {}, "MSTl": {}, "FST": {}, "CITd": {}, "TF": {}, "TH": {}, "AITd": {}}, "FLN_completed": {"V1": {"PO": 0.00732, "TF": 0.031515354, "TH": 0.0251198676, "PIP": 0.0011189715999999998, "V4": 0.10954549659999999, "V3": 0.023208176, "V2": 0.5977878200000001, "MSTd": 0.009428104000000001, "V3A": 0.0015919234, "VP": 0.025739616000000003, "DP": 0.0010145062, "7a": 0.0082967068, "PITd": 0.012291986738000001, "VOT": 0.011115732, "VIP": 0.0005227172, "LIP": 0.000407667, "STPa": 0.00062455239, "STPp": 0.0017661359199999996, "MSTl": 0.0018131874, "FST": 0.0024128178, "AITd": 0.0011806956020000002, "CITd": 0.0015557495139999996, "MT": 0.017819879999999993, "V4t": 0.010355839999999998, "PITv": 0.008508000268, "AITv": 0.0019543028, "CITv": 0.0031682135119999997, "FEF": 0.000192719624, "46": 6.56082e-07, "external": 0.0}, "V2": {"V1": 0.719374, "TF": 0.021752519333333328, "PIP": 0.0016004779333333335, "V3A": 0.0027763386666666665, "VP": 0.030574433333333335, "V4": 0.10780030110000002, "V3": 0.005494763999999998, "DP": 0.0006935116333333333, "7a": 0.003920323266666667, "PITd": 0.00645689953, "VOT": 0.005428937, "VIP": 0.00043936193333333335, "LIP": 0.0003024266666666667, "MDP": 7.533e-06, "PO": 9.915666666666666e-06, "MIP": 6.448e-06, "STPp": 0.0001565191266666667, "STPa": 6.775063e-05, "MSTd": 0.0035983412133333333, "MSTl": 0.0004045919666666667, "FST": 0.0005781431133333334, "AITd": 0.00011696018333333336, "CITd": 0.00015839591000000003, "MT": 0.010586940999999999, "V4t": 0.006289066666666667, "PITv": 0.0012713125800000002, "TH": 0.0004302408, "AITv": 0.0004452911, "CITv": 0.0007957710533333331, "FEF": 0.00011400506666666668, "46": 5.056234787738941e-05, "external": 0.002769274482736845}, "VP": {"7a": 0.001966574318848339, "DP": 0.0024756461209531136, "LIP": 0.0018548814372213482, "MSTd": 0.004174892925022077, "MT": 0.008293452698284402, "PIP": 0.004530947395055978, "TF": 0.00705236411780784, "V2": 0.00717581605963354, "V3A": 0.005137466728058192, "V4": 0.008567477824525566, "VIP": 0.002442567075962061, "VOT": 0.010505902036643833, "external": 0.0}, "V3": {"7a": 0.004674246831500541, "FST": 0.001678543003493744, "LIP": 0.0049843652643756075, "MSTd": 0.004926477098009895, "MT": 0.00733451210571452, "PIP": 0.013445388063019195, "TF": 0.001972570146235144, "V1": 0.008586428591530818, "V2": 0.005900422577201198, "V3A": 0.017879918293458957, "V4": 0.005452910062762763, "V4t": 0.0064882545931690865, "VIP": 0.005743942149742755, "VP": 0.004194632953905766, "external": 0.0}, "PIP": {"7a": 0.008621057407958396, "DP": 0.011162671737969579, "LIP": 0.00953663308985513, "MT": 0.009990570858078392, "V1": 0.00527818493705959, "V2": 0.004725558994582357, "V3": 0.013445388063019195, "V4": 0.005410030671440896, "VP": 0.004530947395055978, "external": 0.006721419057747149}, "V3A": {"7a": 0.00868247987997409, "DP": 0.015543435560302327, "FST": 0.002433014251653756, "LIP": 0.008517773248403361, "MIP": 0.007032378516660398, "MSTd": 0.007795706029440842, "MSTl": 0.0052012331547735356, "MT": 0.011026528667923917, "V1": 0.006635229529771761, "V2": 0.005672463185317145, "V3": 0.017879918293458957, "V4": 0.007596844403044716, "VIP": 0.009396080130381014, "VP": 0.005137466728058192, "external": 0.0}, "MT": {"7a": 0.007668578783559499, "46": 0.0002982264907871621, "CITv": 0.0038163017519338253, "DP": 0.0067985734994770045, "FEF": 0.0005936836670590779, "FST": 0.008971528370378384, "LIP": 0.007256401869854357, "MIP": 0.004627972542024091, "MSTd": 0.01449135961835989, "MSTl": 0.017852332108062183, "PIP": 0.009990570858078392, "PO": 0.005124127489289287, "STPp": 0.005741274636653619, "V1": 0.0034419775555150226, "V2": 0.004610708369380301, "V3": 0.00733451210571452, "V3A": 0.011026528667923917, "V4": 0.012266466578010995, "V4t": 0.022905029760814703, "VIP": 0.00941716871058578, "VP": 0.008293452698284402, "external": 0.010053373851418083}, "V4t": {"7a": 0.005758077370591879, "46": 0.0002258161213703737, "FST": 0.0075262122160688, "MSTd": 0.011356730621151199, "MT": 0.022905029760814703, "V2": 0.004346258427304073, "V3": 0.0064882545931690865, "V4": 0.014563486215169221, "external": 0.0}, "V4": {"V1": 0.03265630666666667, "V2": 0.25016898013333333, "PO": 0.002687799166666667, "TF": 0.052711999999999995, "TH": 0.012389706666666667, "PIP": 0.002219050266666667, "V3": 0.018678131733333336, "MSTd": 0.005856831066666667, "V3A": 0.0036355771333333336, "VP": 0.02896426666666667, "DP": 0.0010129916, "7a": 0.0070245596, "PITd": 0.05751595333333334, "VIP": 0.0017124856666666669, "LIP": 0.0013945623333333334, "STPa": 0.0020584594000000005, "STPp": 0.0006447129666666667, "MSTl": 0.005235169433333332, "FST": 0.009160531999999997, "AITd": 0.011051566, "CITd": 0.012193617333333332, "MT": 0.021604643499999996, "V4t": 0.011346133333333331, "PITv": 0.08069382666666668, "VOT": 0.04640013333333332, "AITv": 0.028120480000000003, "CITv": 0.08528930666666668, "46": 0.00020951288, "FEF": 0.0034942574533333333, "MIP": 3.755333333333333e-07, "MDP": 1.9494333333333333e-06, "external": 0.0}, "PO": {"7a": 0.004144248657410051, "DP": 0.005220646508186041, "FEF": 0.0001886114098855978, "LIP": 0.0048842515280058535, "MDP": 0.014405320247417218, "MIP": 0.020617646941670047, "MSTd": 0.004321736159726882, "MSTl": 0.0029108328936136986, "MT": 0.005124127489289287, "PIP": 0.015334961576419863, "V1": 0.003897505308584523, "V2": 0.002979802254013754, "V3": 0.008521681404942045, "V3A": 0.008186751962556745, "V4t": 0.003978868012995961, "VIP": 0.007279513913864154, "VP": 0.0025287698806870013, "external": 0.006542796226354337}, "VOT": {"V2": 0.00275414110376441, "VP": 0.010505902036643833, "external": 0.0}, "DP": {"V1": 0.007304985799999999, "V2": 0.0868778232, "PO": 0.022935904999999993, "TF": 0.06188520200000001, "TH": 0.006924548, "PIP": 0.031740154, "V4": 0.265129002, "V3": 0.00384, "MSTd": 0.044096166400000004, "V3A": 0.020889140000000004, "VP": 0.06324947, "7a": 0.12170417, "PITd": 0.027323034000000003, "VOT": 0.010269784, "VIP": 0.009584543999999999, "LIP": 0.0064203, "MIP": 0.01056964, "MDP": 0.010851755000000001, "STPa": 0.0004850526, "STPp": 0.0005674942999999999, "MSTl": 0.005852022, "FST": 0.0030646910000000005, "AITd": 0.0003074472, "CITd": 0.0007696679999999999, "MT": 0.048233399999999996, "V4t": 0.028512000000000003, "PITv": 0.0048909, "AITv": 0.0054317116, "CITv": 0.0043738349999999995, "FEF": 0.0023306253, "46": 0.0011283134999999999, "external": 0.004211451692517544}, "MIP": {"7a": 0.004628073242481961, "LIP": 0.005628643453612285, "PO": 0.020617646941670047, "V2": 0.002317741117550906, "V3A": 0.007032378516660398, "external": 0.010374993985500259}, "MDP": {"external": 0.011419607784729701}, "MSTd": {"V1": 0.02872964328, "V2": 0.14120797318999997, "PO": 0.00119106314, "TF": 0.06385009, "TH": 0.00618325579, "PIP": 0.014145930179999999, "V4": 0.34126389999999995, "V3": 0.013097999999999999, "V3A": 0.020916080000000004, "VP": 0.07663900000000001, "DP": 0.014847490000000001, "7a": 0.004676075, "PITd": 0.12423347000000001, "VOT": 0.021822499999999998, "VIP": 0.009725760000000002, "LIP": 0.007245720000000001, "MIP": 1.33392e-06, "MDP": 8.314200000000001e-07, "STPa": 0.0021726988, "STPp": 0.0026488431199999996, "MSTl": 0.01104449, "FST": 0.01762035, "AITd": 0.00425251, "CITd": 0.00940632, "MT": 0.00558822, "PITv": 0.01629822, "AITv": 0.0058828, "CITv": 0.01248798, "FEF": 0.0028822971000000003, "46": 6.20149e-05, "external": 0.0072490129352875}, "VIP": {"7a": 0.015446422673293946, "46": 0.0003458110186325523, "FEF": 0.0006773108120469758, "FST": 0.002979432398247835, "LIP": 0.019527396424842813, "MDP": 0.006218843583134815, "MIP": 0.00854479275972444, "MSTd": 0.012160526096505421, "MSTl": 0.006600939858094132, "MT": 0.00941716871058578, "PIP": 0.012547211081402667, "PO": 0.007279513913864154, "STPp": 0.0028081138130298814, "V2": 0.0023722199828714475, "V3": 0.005743942149742755, "V3A": 0.009396080130381014, "V4": 0.003911943716196138, "V4t": 0.006957528571384772, "VP": 0.002442567075962061, "external": 0.025685025786337367}, "LIP": {"7a": 0.0200256002116261, "46": 0.0002602252700827285, "DP": 0.014354121318509222, "FEF": 0.000521760134974346, "FST": 0.002253883895344027, "MDP": 0.0040408631174151345, "MIP": 0.005628643453612285, "MSTd": 0.010960695690248752, "MT": 0.007256401869854357, "PIP": 0.00953663308985513, "PO": 0.0048842515280058535, "STPp": 0.00244222691917776, "V2": 0.0019352055971065822, "V3": 0.0049843652643756075, "V3A": 0.008517773248403361, "V4": 0.0031585061105836834, "V4t": 0.005430465611173537, "VIP": 0.019527396424842813, "VP": 0.0018548814372213482, "external": 0.02010122555511015}, "PITv": {"7a": 0.001519128953463658, "AITd": 0.006359379280575416, "AITv": 0.007758145814052114, "CITd": 0.017478643524974677, "CITv": 0.015691806311089743, "FST": 0.01263496858298248, "LIP": 0.001285789125409984, "MT": 0.007004200569019747, "STPp": 0.003829466462804577, "TF": 0.009068192149592905, "TH": 0.005708336359028609, "V2": 0.0018379391047956878, "V4": 0.007007339925830216, "V4t": 0.0083415091788602, "VOT": 0.019379857366420852, "VP": 0.006643210862858017, "external": 0.0}, "PITd": {"7a": 0.002196946592552967, "FST": 0.012982843785615662, "MT": 0.010136691826050192, "STPp": 0.004493623560965627, "V2": 0.0019962868813370362, "V4": 0.009015562729701311, "V4t": 0.011986441343393476, "VOT": 0.016997572679928255, "VP": 0.0059050722299335764, "external": 0.0}, "AITv": {"CITd": 0.013892253195462468, "CITv": 0.015709600532818804, "PITd": 0.005118145751195346, "PITv": 0.007758145814052114, "TF": 0.006947301047502546, "TH": 0.005486718323377269, "V4": 0.0016643210932731807, "external": 0.0}, "MSTl": {"7a": 0.0063626815273536775, "46": 0.0005595505371621943, "DP": 0.0033814076993188254, "FEF": 0.0011101970110222973, "FST": 0.016643198599736588, "LIP": 0.005335978271267846, "MT": 0.017852332108062183, "PO": 0.0029108328936136986, "STPp": 0.011601763981185209, "V1": 0.0017709112924698136, "V2": 0.0027725710447628854, "V3A": 0.0052012331547735356, "V4t": 0.014647861481879191, "VIP": 0.006600939858094132, "external": 0.0072734106207775415}, "FST": {"7a": 0.002689233899127888, "46": 0.0007407465799992857, "CITv": 0.011714210291935324, "DP": 0.0015307752733108727, "FEF": 0.0013885197573829428, "LIP": 0.002253883895344027, "MSTd": 0.006848877340960466, "MSTl": 0.016643198599736588, "MT": 0.008971528370378384, "STPp": 0.011041563402888874, "TF": 0.01059563824406266, "V2": 0.0016679794532344961, "V3": 0.001678543003493744, "V3A": 0.002433014251653756, "V4": 0.005061550773625565, "V4t": 0.0075262122160688, "VIP": 0.002979432398247835, "VP": 0.004466681106251745, "external": 0.010332209959069458}, "CITv": {"PO": 1.77256e-06, "TF": 0.03182241, "TH": 0.0041587257, "PIP": 0.000142787, "V4": 0.0709605166, "V1": 3.07546e-05, "V3": 4.4818000000000004e-05, "V2": 0.00166803487, "MSTd": 8.492860000000002e-06, "V3A": 0.00020133600000000004, "VP": 0.012700080000000002, "DP": 0.0002021464, "7a": 0.0016731169699999997, "PITd": 0.0955115232, "VOT": 0.037845000000000004, "VIP": 0.00107708, "LIP": 0.00089439, "STPa": 0.005788337000000001, "STPp": 0.00013233991, "MSTl": 0.00023593203999999998, "FST": 0.0020013619999999996, "AITd": 0.1731416, "CITd": 0.10012099999999997, "MT": 9.8895e-05, "V4t": 2.64e-06, "PITv": 0.04409120000000001, "AITv": 0.12012400000000001, "FEF": 0.010091085640000002, "46": 0.0021442090000000002, "external": 0.00981041654023485}, "CITd": {"V4": 0.0041777466613098085, "external": 0.0}, "7a": {"V1": 2.03353e-05, "V2": 0.0004819565000000001, "PO": 0.019530515, "TF": 0.0347868766, "TH": 0.00023084030000000003, "PIP": 0.011194674, "V4": 0.0095445104, "V3": 1.7328000000000002e-06, "MSTd": 0.08197936960000002, "DP": 0.0140701901, "V3A": 5.58706e-05, "PITd": 0.007615705600000001, "VOT": 0.0008113, "VP": 0.0006863600000000001, "VIP": 0.0489402158, "LIP": 0.040764316, "MIP": 0.017571071599999995, "MDP": 0.024250399999999995, "STPa": 0.007041039999999999, "STPp": 0.0605408629, "MSTl": 0.013092799999999998, "FST": 0.00594815, "AITd": 0.001156032, "CITd": 0.0026997239999999997, "MT": 0.0011731722, "V4t": 9.539200000000002e-06, "PITv": 0.014191047999999998, "AITv": 0.015436940199999999, "CITv": 0.012528181999999999, "FEF": 0.014788873000000001, "46": 0.014181229799999999, "external": 0.02938506023105533}, "STPp": {"V4": 0.00041431336666666673, "PITd": 0.0011464076, "V2": 0.0005494173333333333, "V1": 0.0006513901333333334, "TH": 0.002792431666666667, "VIP": 0.003604891736666667, "7a": 0.03231078781333333, "DP": 0.0008150314333333333, "LIP": 0.0029458097466666675, "STPa": 0.0463087638, "MSTd": 0.07750212466666667, "MSTl": 0.008363258666666666, "FST": 0.0029582593, "AITd": 0.00045012213333333326, "CITd": 0.0007336893666666667, "MT": 0.0005119500000000001, "V4t": 4.476266666666667e-05, "AITv": 0.00024408833333333332, "CITv": 0.00028173233333333335, "VOT": 3.2250000000000005e-05, "PITv": 0.00017818766666666665, "TF": 0.0077603151333333325, "PO": 1.9194299999999993e-05, "46": 0.006187686136666667, "FEF": 0.0027500169733333333, "PIP": 0.0006357816999999999, "V3": 4.158199999999999e-06, "V3A": 0.0001946754, "VP": 8.875213333333334e-05, "MDP": 1.0888033333333335e-05, "MIP": 1.0488666666666666e-06, "external": 0.0169218564119172}, "STPa": {"PO": 1.6968e-06, "TF": 0.01044059712, "TH": 0.00370067704, "PIP": 0.0, "V4": 2.16198e-05, "V1": 2.9014879999999998e-05, "V3": 1.584e-07, "V2": 3.010232e-05, "MSTd": 0.0188856368, "PITd": 0.0033370486800000003, "VOT": 1.237424e-05, "VP": 7.814400000000001e-07, "DP": 2.9721799999999997e-05, "7a": 0.006960793999999999, "VIP": 4.5480000000000005e-05, "LIP": 3.792000000000001e-05, "STPp": 0.30555149480000005, "MSTl": 0.007341100000000001, "FST": 0.0157761, "AITd": 0.025548469999999997, "CITd": 0.00680838, "MT": 0.0002621412, "V4t": 2.3232000000000005e-06, "PITv": 0.0008363146, "AITv": 0.0024953279999999998, "CITv": 0.0014250989999999998, "46": 0.014112841500000002, "FEF": 0.0010566697000000001, "external": 0.021379975066850528}, "FEF": {"PO": 0.0019396929999999997, "TF": 0.0011607034433333333, "TH": 0.00016265508666666668, "PIP": 0.0015277950666666667, "V4": 0.004977958576666667, "V1": 0.00022920966666666672, "V3": 0.00037832696666666664, "V2": 0.0026317330000000002, "MSTd": 0.0092838776, "V3A": 0.00030441690000000004, "VP": 0.0009217902500000001, "PITd": 0.002460433963333334, "VOT": 0.00025604022, "DP": 0.0007984183666666667, "7a": 0.004013115566666667, "VIP": 0.005299874766666666, "LIP": 0.0039942541000000005, "MIP": 0.001530742066666667, "MDP": 0.0031931584000000008, "STPa": 0.0020900494333333333, "STPp": 0.027672489399999996, "MSTl": 0.001190899, "FST": 0.0016546871, "MT": 0.0022583639999999997, "CITd": 0.00028953729, "V4t": 0.0012444373333333333, "PITv": 0.00021049071, "AITd": 0.00011194493333333333, "AITv": 0.00010364666, "CITv": 0.00010565765666666668, "46": 0.1895018566666667, "external": 0.030348245801991393}, "46": {"TF": 0.00023437925, "PIP": 1.3434800000000002e-05, "V3A": 3.5756000000000005e-06, "VP": 5.0537e-06, "V4": 5.4178949999999994e-05, "V3": 4.477375e-05, "V2": 0.00099948935, "DP": 0.0005022087000000001, "7a": 0.009070648600000002, "VIP": 0.0030687705, "LIP": 0.0025490456000000004, "MDP": 0.00010807840000000002, "PO": 7.39644e-05, "MIP": 1.8074200000000004e-05, "STPa": 0.0033303452000000007, "STPp": 0.009455807400000002, "MSTd": 0.0009848546000000005, "MSTl": 0.0007123987000000001, "FST": 0.00237433, "AITd": 0.005064239399999999, "CITd": 0.0051180683, "MT": 4.3527e-06, "PITd": 0.0031302532999999996, "TH": 6.31086e-05, "AITv": 0.00015379490000000002, "CITv": 0.0013516526999999996, "VOT": 3.4511e-06, "PITv": 0.0002622428, "FEF": 0.12080655639999999, "V1": 0.00010192, "V4t": 1.4608e-06, "external": 0.01948363363231367}, "TF": {"7a": 0.0018622862875994476, "46": 0.00027263187118762135, "AITv": 0.006947301047502546, "CITv": 0.008573111392548783, "FEF": 0.0004737508884470768, "FST": 0.01059563824406266, "LIP": 0.0016647514007397735, "MT": 0.0074104934764019845, "STPa": 0.005175064786224525, "STPp": 0.0037752777782433336, "TH": 0.014963255350597525, "V2": 0.0026546500269299987, "V3": 0.001972570146235144, "V3A": 0.002689205669205606, "V4": 0.004553843722667349, "VP": 0.00705236411780784, "external": 0.015077445206487964}, "TH": {"7a": 0.0019360577800537108, "46": 0.00027677638429352176, "AITv": 0.005486718323377269, "FEF": 0.0004782252441620275, "STPa": 0.004275371779150058, "STPp": 0.0031604962683527966, "TF": 0.014963255350597525, "V2": 0.0022492167248699692, "V4": 0.0034039285639701463, "external": 0.01308305567128213}, "AITd": {"7a": 0.00046777517280729655, "46": 0.0005676113571555957, "CITd": 0.01329368143561811, "CITv": 0.012994646677276813, "FEF": 0.0008085031348249742, "PITd": 0.004758288424810753, "STPa": 0.014133181809193483, "TF": 0.004811523947655359, "TH": 0.0037689211883690063, "external": 0.0}}, "neuronal_densities": {"FEF": {"23": 61119.24615011697, "overall": 60822.524688517195, "4": 83820.50032477839, "5": 55405.3729147243, "6": 55405.3729147243}, "7a": {"23": 51225.809080885876, "overall": 52379.0, "4": 79926.19368350341, "5": 47522.666967296806, "6": 47522.666967296806}, "STPp": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "CITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "PITv": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VP": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V3A": {"23": 73724.98018754808, "overall": 76696.0, "4": 123618.64707486573, "5": 66311.20009349921, "6": 66311.20009349921}, "TF": {"23": 60035.31107952612, "overall": 61906.0, "4": 103256.25889601017, "5": 56636.008092846845, "6": 56636.008092846845}, "LIP": {"23": 66365.33597739544, "overall": 69275.0, "4": 104732.3373288077, "5": 59804.35175881624, "6": 59804.35175881624}, "V4t": {"overall": 80648.75, "23": 77437.49196037636, "4": 150877.76843256268, "5": 69309.7641053403, "6": 69309.7641053403}, "MIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "CITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "MSTd": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "DP": {"23": 61577.99107383698, "overall": 63763.032750087405, "4": 100988.31726393124, "5": 57674.084791137735, "6": 57674.084791137735}, "STPa": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "MSTl": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "MT": {"23": 82184.85656009504, "overall": 81153.0, "4": 134779.48312587343, "5": 66175.91653374783, "6": 66175.91653374783}, "46": {"23": 50800.916845800064, "overall": 52720.0, "4": 75146.86652655818, "5": 52317.133324041286, "6": 52317.133324041286}, "AITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "VIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "PITd": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VOT": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "V1": {"23": 166264.25225183976, "overall": 173360.0, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}, "V2": {"23": 107228.9012018876, "overall": 111730.0, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V3": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V4": {"23": 82291.65437545427, "overall": 86223.0, "4": 179133.52509594912, "5": 72221.27249312654, "6": 72221.27249312654}, "TH": {"23": 49012.54441576494, "overall": 49446.0, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}, "PIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "FST": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "MDP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "PO": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "AITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}}, "neuronal_density_data_FV91_4layers": {"V1": {"23": 166264.25225183976, "overall": 173360.0, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}, "V2": {"23": 107228.9012018876, "overall": 111730.0, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V4": {"23": 82291.65437545427, "overall": 86223.0, "4": 179133.52509594912, "5": 72221.27249312654, "6": 72221.27249312654}, "MT": {"23": 82184.85656009504, "overall": 81153.0, "4": 134779.48312587343, "5": 66175.91653374783, "6": 66175.91653374783}, "PITd": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "PITv": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VOT": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "V3A": {"23": 73724.98018754808, "overall": 76696.0, "4": 123618.64707486573, "5": 66311.20009349921, "6": 66311.20009349921}, "LIP": {"23": 66365.33597739544, "overall": 69275.0, "4": 104732.3373288077, "5": 59804.35175881624, "6": 59804.35175881624}, "DP": {"23": 61577.99107383698, "overall": 63763.032750087405, "4": 100988.31726393124, "5": 57674.084791137735, "6": 57674.084791137735}, "TF": {"23": 60035.31107952612, "overall": 61906.0, "4": 103256.25889601017, "5": 56636.008092846845, "6": 56636.008092846845}, "FEF": {"23": 61119.24615011697, "overall": 60822.524688517195, "4": 83820.50032477839, "5": 55405.3729147243, "6": 55405.3729147243}, "AITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "AITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "CITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "CITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "46": {"23": 50800.916845800064, "overall": 52720.0, "4": 75146.86652655818, "5": 52317.133324041286, "6": 52317.133324041286}, "7a": {"23": 51225.809080885876, "overall": 52379.0, "4": 79926.19368350341, "5": 47522.666967296806, "6": 47522.666967296806}, "TH": {"23": 49012.54441576494, "overall": 49446.0, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}}, "realistic_neuronal_numbers": {"FEF": {"23E": 7116258.062416201, "23I": 2007264.3976278158, "4E": 3738560.648779402, "4I": 934682.8106165795, "5E": 2737096.7132908967, "5I": 601032.5772484133, "6E": 2605291.6369981444, "6I": 533546.3526134444, "total": 20273733.199590895}, "7a": {"23E": 7785533.377762723, "23I": 2196045.144605121, "4E": 2089479.7746036942, "4I": 522393.7798336135, "5E": 2488782.555412475, "5I": 546505.8601060383, "6E": 2988894.9338910277, "6I": 612105.7495735153, "total": 19229741.175788205}, "STPp": {"23E": 10231171.547963874, "23I": 2885879.9405705766, "4E": 3214014.74148318, "4I": 803540.3499240858, "5E": 3490372.4822190227, "5I": 766442.6172295379, "6E": 4191750.945380641, "6I": 858442.6389011556, "total": 26441615.263672072}, "CITv": {"23E": 4781074.136115523, "23I": 1348585.1428756928, "4E": 1754777.4509003817, "4I": 438714.3807202003, "5E": 1649485.19100076, "5I": 362206.541941404, "6E": 1980943.6224906985, "6I": 405684.0430081682, "total": 12721470.509052828}, "PITv": {"23E": 4546866.169615768, "23I": 1282522.7110930902, "4E": 3774053.5763523397, "4I": 943556.447402896, "5E": 1588254.3632775452, "5I": 348761.009668162, "6E": 1907408.6684699608, "6I": 390624.5748280269, "total": 14782047.520707788}, "VP": {"23E": 6917343.194842176, "23I": 1951156.998438778, "4E": 6436579.782354831, "4I": 1609218.3722346388, "5E": 2080057.8770850257, "5I": 456754.9771331035, "6E": 2498038.4234448234, "6I": 511581.6097475055, "total": 22460731.235280883}, "V3A": {"23E": 3964407.8216861454, "23I": 1118230.2002473997, "4E": 2306615.689972856, "4I": 576680.2356998073, "5E": 1228675.3686414948, "5I": 269801.91084601893, "6E": 1475573.499477787, "6I": 302187.6121195219, "total": 11242172.338691032}, "TF": {"23E": 6074732.165699517, "23I": 1713483.8976304682, "4E": 3384007.2514310316, "4I": 846040.4166365786, "5E": 2187728.4571476975, "5I": 480398.1045076902, "6E": 2627345.0398780513, "6I": 538062.7424494962, "total": 17851798.07538053}, "LIP": {"23E": 2913160.3478207462, "23I": 821707.5602758899, "4E": 1126140.8103144537, "4I": 281548.0492682131, "5E": 651795.5065530408, "5I": 143126.22978948214, "6E": 1575617.9037778564, "6I": 322676.0389258161, "total": 7835772.446725499}, "V4t": {"23E": 1360184.0182880426, "23I": 383663.56731095293, "4E": 980714.0653507396, "4I": 245189.70404091728, "5E": 419495.6041320673, "5I": 92116.04503106218, "6E": 503791.8171087833, "6I": 103173.20436517496, "total": 4088328.02562774}, "MIP": {"23E": 1861055.129421214, "23I": 524942.9785351913, "4E": 715830.5384720211, "4I": 178965.80060635193, "5E": 346345.2234161966, "5I": 76053.12637902048, "6E": 1560161.9034535293, "6I": 319510.75313518627, "total": 5582865.453418711}, "CITd": {"23E": 2399105.600172807, "23I": 676709.4749991855, "4E": 880533.5976096117, "4I": 220143.44427575002, "5E": 827698.765271022, "5I": 181752.40928116255, "6E": 994022.0132635923, "6I": 203569.0792011859, "total": 6383534.384074317}, "MSTd": {"23E": 5346732.588457302, "23I": 1508138.950880428, "4E": 2715843.8559756237, "4I": 678991.9455574008, "5E": 1777557.624205953, "5I": 390329.6638720288, "6E": 2134751.7749729697, "6I": 437182.9268926931, "total": 14989529.330814399}, "DP": {"23E": 5001221.312264808, "23I": 1410681.4841054436, "4E": 2151023.612566881, "4I": 537780.4413987652, "5E": 1614053.3029574256, "5I": 354426.13765972335, "6E": 1938391.8172152215, "6I": 396969.71706498606, "total": 13404547.825233255}, "STPa": {"23E": 3280648.3045655773, "23I": 925363.9321585639, "4E": 1030581.0984660854, "4I": 257657.03118848646, "5E": 1119195.8332839224, "5I": 245761.55926750044, "6E": 1344094.424343897, "6I": 275261.5743637242, "total": 8478563.757637756}, "MSTl": {"23E": 1294223.7740036394, "23I": 365058.33281135384, "4E": 657393.9554174577, "4I": 164355.98821502394, "5E": 430273.4985989926, "5I": 94482.73732122207, "6E": 516735.4927626279, "6I": 105823.9828179387, "total": 3628347.761948256}, "MT": {"23E": 3387941.185455547, "23I": 955627.755932295, "4E": 1576557.5125129828, "4I": 394157.3630416898, "5E": 792485.0871952683, "5I": 174019.92120885785, "6E": 885309.68110297, "6I": 181305.51857530785, "total": 8347404.025024918}, "46": {"23E": 6032896.419270735, "23I": 1701683.3974774193, "4E": 1971206.910649511, "4I": 492824.21462234406, "5E": 2194273.9158227458, "5I": 481835.4062579843, "6E": 2933147.6012706426, "6I": 600689.0676308342, "total": 16408556.933002219}, "AITv": {"23E": 4583767.781081143, "23I": 1292931.4526339208, "4E": 1682360.9325874117, "4I": 420609.4250352009, "5E": 1581413.8954186402, "5I": 347258.92755069106, "6E": 1899193.6318913486, "6I": 388942.19012266054, "total": 12196478.236321017}, "VIP": {"23E": 4821635.686107228, "23I": 1360026.2337547531, "4E": 2235064.080697643, "4I": 558791.51714088, "5E": 859117.3541222662, "5I": 188651.54270932236, "6E": 668974.5483609311, "6I": 137001.52612490626, "total": 10829262.48901793}, "PITd": {"23E": 6587774.377258495, "23I": 1858196.3794868276, "4E": 5468076.807458739, "4I": 1367081.580107982, "5E": 2301158.866053231, "5I": 505306.0190405548, "6E": 2763568.903143899, "6I": 565960.4811718109, "total": 21417123.41372154}, "VOT": {"23E": 3176820.440084732, "23I": 896077.4765485821, "4E": 2636869.0205685482, "4I": 659247.335783485, "5E": 1109687.1421091869, "5I": 243673.56831882143, "6E": 1332674.9940612898, "6I": 272922.9511978245, "total": 10327972.928672472}, "V1": {"23E": 70351649.31455898, "23I": 19843906.691540737, "4E": 104498963.79693717, "4I": 26125933.043277144, "5E": 30792502.779850837, "5I": 6761652.672276523, "6E": 29454725.608150266, "6I": 6032131.371505871, "total": 293861465.2780975}, "V2": {"23E": 60291657.94579554, "23I": 17006311.09876571, "4E": 43780517.995760456, "4I": 10945628.934463676, "5E": 22768869.615967955, "5I": 4999762.090929045, "6E": 22970833.698674805, "6I": 4704273.549405582, "total": 187467854.92976275}, "V3": {"23E": 7050338.08337958, "23I": 1988670.5206419022, "4E": 5718439.590182145, "4I": 1429675.1318552576, "5E": 1453678.9582375523, "5I": 319209.91557175113, "6E": 1751820.7797907297, "6I": 358761.21283939376, "total": 20070594.19249831}, "V4": {"23E": 36181631.72328601, "23I": 10205658.72811732, "4E": 19007157.695427947, "4I": 4752006.252030559, "5E": 7854280.51218247, "5I": 1724702.8341184186, "6E": 7950727.398374058, "6I": 1628255.9479268312, "total": 89304421.09146364}, "TH": {"23E": 1102237.244142804, "23I": 310905.1918159415, "4E": 0.0, "4I": 0.0, "5E": 1041658.381430335, "5I": 228735.29406666115, "6E": 484476.77823009423, "6I": 99217.61321447158, "total": 3267230.502900307}, "PIP": {"23E": 4707159.180232314, "23I": 1327736.1435708222, "4E": 2390976.007726943, "4I": 597771.2774965055, "5E": 1564927.093461991, "5I": 343638.62980144745, "6E": 1879393.8632305118, "6I": 384887.3295452276, "total": 13196489.525065761}, "FST": {"23E": 2228633.7959837206, "23I": 628624.9367001414, "4E": 766864.0534953041, "4I": 191724.76153779466, "5E": 774255.1693285241, "5I": 170016.85677007798, "6E": 929839.1087289786, "6I": 190424.84838715038, "total": 5880383.530931692}, "MDP": {"23E": 3435994.282487219, "23I": 969181.9679945091, "4E": 1745294.6835990446, "4I": 436343.58071819134, "5E": 1142319.6751505157, "5I": 250839.26887325756, "6E": 1371864.9234808546, "6I": 280948.7873860063, "total": 9632787.169689598}, "PO": {"23E": 3342251.0816976735, "23I": 942740.0672351314, "4E": 1697678.3325487978, "4I": 424438.9497620289, "5E": 1111154.11028934, "5I": 243995.69638312308, "6E": 1334436.7445012, "6I": 273283.7459388356, "total": 9369978.72835613}, "AITd": {"23E": 4508601.451957001, "23I": 1271729.4817346197, "4E": 1654772.952217552, "4I": 413712.1152270119, "5E": 1555481.2821141132, "5I": 341564.44648485165, "6E": 1868049.9482618198, "6I": 382564.1714120074, "total": 11996475.849408979}}, "total_thicknesses": {"V1": 1240.0, "V2": 1460.0, "VP": 1585.342273262686, "V3": 1585.342273262686, "PIP": 2070.561486887418, "V3A": 1660.0, "MT": 1960.0, "V4t": 1880.0673770928606, "V4": 1890.0, "PO": 2070.561486887418, "VOT": 1904.2178479221384, "DP": 2060.0, "MIP": 2070.561486887418, "MDP": 2070.561486887418, "MSTd": 2070.561486887418, "VIP": 2070.561486887418, "LIP": 2300.0, "PITv": 1904.2178479221384, "PITd": 1904.2178479221384, "AITv": 2630.0, "MSTl": 2070.561486887418, "FST": 2247.328674211474, "CITv": 2227.7479202457143, "CITd": 2227.7479202457143, "7a": 2680.0, "STPp": 2247.328674211474, "STPa": 2247.328674211474, "FEF": 2210.0, "46": 1860.0, "TF": 1620.0, "TH": 1870.0, "AITd": 2630.0}, "laminar_thicknesses": {"V1": {"1": 0.08967005445322952, "23": 0.3653998098401042, "4": 0.4614890241689768, "5": 0.16629777405727372, "6": 0.1571433374804157}, "V2": {"1": 0.1206349760574621, "23": 0.6040487829209896, "4": 0.23883030726256985, "5": 0.24866171189146055, "6": 0.24782422186751799}, "VP": {"1": 0.17714878802273043, "23": 0.6333760829470785, "4": 0.3209011312779164, "5": 0.20761102756029734, "6": 0.24630524345466334}, "V3": {"1": 0.23320824408280585, "23": 0.6991547059583443, "4": 0.30876967047500165, "5": 0.1571391892973308, "6": 0.18707046344920336}, "PIP": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "V3A": {"1": 0.19886503693743082, "23": 0.7110201516839858, "4": 0.24055402347012478, "5": 0.2330615700238317, "6": 0.27649921788462695}, "MT": {"1": 0.203395600676819, "23": 0.9454429780033843, "4": 0.2615654822335026, "5": 0.2612670050761422, "6": 0.28832893401015236}, "V4t": {"1": 0.2230803724680116, "23": 0.7975994308131237, "4": 0.2877787474825529, "5": 0.26144093828446113, "6": 0.3101678880447115}, "V4": {"1": 0.1771875, "23": 1.0040625, "4": 0.23625000000000002, "5": 0.23625000000000002, "6": 0.23625000000000002}, "PO": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "VOT": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "DP": {"1": 0.25583852489499187, "23": 0.9147226157943377, "4": 0.23389235234048408, "5": 0.29983213340496956, "6": 0.3557143735652168}, "MIP": {"1": 0.19533598932900173, "23": 0.8516649134744475, "4": 0.17189567060952152, "5": 0.15626879146320138, "6": 0.6953961220112461}, "MDP": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "MSTd": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "VIP": {"1": 0.25289300603205106, "23": 1.1696301528982362, "4": 0.2845046317860575, "5": 0.2054755674010415, "6": 0.15805812877003192}, "LIP": {"1": 0.2523199861163701, "23": 1.0042360848163574, "4": 0.239843388447137, "5": 0.23718840716900164, "6": 0.5664121334511337}, "PITv": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "PITd": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "AITv": {"1": 0.3366353068216317, "23": 1.2036026573832084, "4": 0.22718631698840488, "5": 0.3945226086071063, "6": 0.46805311019964885}, "MSTl": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "FST": {"1": 0.5126175393099899, "23": 0.9007008741548409, "4": 0.17666480168310383, "5": 0.30065493337157506, "6": 0.35669052569196447}, "CITv": {"1": 0.28514775842325774, "23": 1.0195145691207823, "4": 0.19243872440273863, "5": 0.33418133871269773, "6": 0.39646552958623793}, "CITd": {"1": 0.28514775842325774, "23": 1.0195145691207823, "4": 0.19243872440273863, "5": 0.33418133871269773, "6": 0.39646552958623793}, "7a": {"1": 0.34637158771533116, "23": 1.2384136630003206, "4": 0.20769132202217178, "5": 0.4059331257408577, "6": 0.4815903015213188}, "STPp": {"1": 0.2889353100093555, "23": 1.0330565448482978, "4": 0.18498493804617222, "5": 0.33862019198120835, "6": 0.40173168932644016}, "STPa": {"1": 0.2889353100093555, "23": 1.0330565448482978, "4": 0.18498493804617222, "5": 0.33862019198120835, "6": 0.40173168932644016}, "FEF": {"1": 0.21710327455919398, "23": 0.9240806045340052, "4": 0.3451385390428212, "5": 0.37297229219143585, "6": 0.3507052896725441}, "46": {"1": 0.2195874325610917, "23": 0.8222722945096794, "4": 0.17708663916217074, "5": 0.2762551570929863, "6": 0.36479847667407167}, "TF": {"1": 0.2334764331779098, "23": 0.6571929230193017, "4": 0.20753460726925316, "5": 0.23865769578911442, "6": 0.28313834074442085}, "TH": {"1": 0.27703703703703697, "23": 0.6464197530864197, "4": 0.11543209876543209, "5": 0.5694650205761316, "6": 0.2616460905349794}, "AITd": {"1": 0.3366353068216317, "23": 1.2036026573832084, "4": 0.22718631698840488, "5": 0.3945226086071063, "6": 0.46805311019964885}}, "category_density": {"1": {"overall": NaN, "23": NaN, "4": NaN, "5": NaN, "6": NaN}, "2": {"overall": 49446.0, "23": 49012.54441576494, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}, "3": {"overall": NaN, "23": NaN, "4": NaN, "5": NaN, "6": NaN}, "4": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "5": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "6": {"overall": 80648.75, "23": 77437.49196037636, "4": 150877.76843256268, "5": 69309.7641053403, "6": 69309.7641053403}, "7": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "8": {"overall": 173360.0, "23": 166264.25225183976, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}}}
\ No newline at end of file
-- 
GitLab