diff --git a/CTLM.ipynb b/CTLM.ipynb
deleted file mode 100644
index bec0a90f063a9329c5a9fea698ab8465a3db250f..0000000000000000000000000000000000000000
--- a/CTLM.ipynb
+++ /dev/null
@@ -1,869 +0,0 @@
-{
- "cells": [
-  {
-   "cell_type": "markdown",
-   "id": "add28bc2",
-   "metadata": {},
-   "source": [
-    "# CTLM - konstanter Innenradius!\n",
-    "1.1 - 2022-09-05\n",
-    "\n",
-    "Jan Gruis \\ Thorsten Zweipfennig \\\n",
-    "Compound Semiconductor Technology \\\n",
-    "RWTH Aachen University"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "289db4ef",
-   "metadata": {},
-   "source": [
-    "## Usage\n",
-    "* _Run_ the first cell with code by selcting it with a click and pressing **SHIFT + ENTER or clicking on \"▶ Run\"**\n",
-    "* click \"File select\" which appeared under the cell and select the five files from one CTLM measurement\n",
-    "* _Run_ the next cell\n",
-    "* Consider the results below the cell\n",
-    "* Choose min and max current values (default is minI = -0.03 and maxI = 0.03) and type them at the top of the next cell, than run that cell"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "a2bdc98b",
-   "metadata": {
-    "scrolled": true
-   },
-   "source": [
-    "### CTLM Physik\n",
-    "\"Semiconductor Material and Device Characterization Third Edition\", D. Schroder, p. 140, Eq. 3.21 \\\n",
-    "\"Semiconductor Material and Device Characterization Third Edition\", D. Schroder, p. 144, Eq. 3.31\n",
-    "\n",
-    "### Mathe\n",
-    "https://de.wikipedia.org/wiki/Bestimmtheitsma%C3%9F  \\\n",
-    "https://numpy.org/doc/stable/reference/generated/numpy.polyfit.html# \n",
-    "\n",
-    "### Einstieg\n",
-    "https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.to_numpy.html \\\n",
-    "https://numpy.org/devdocs/user/absolute_beginners.html \\\n",
-    "https://edusecrets.com/lesson-02-creating-a-file-select-button-in-jupyter-notebook/\n",
-    "\n",
-    "### Zeichnen\n",
-    "https://www.practicaldatascience.org/html/plotting_altair_part1.html \\\n",
-    "https://altair-viz.github.io/user_guide/data.html "
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "id": "3ce06363",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "application/vnd.jupyter.widget-view+json": {
-       "model_id": "73108681688a4a19b3d5df6619ceee64",
-       "version_major": 2,
-       "version_minor": 0
-      },
-      "text/plain": [
-       "Button(description='File select', style=ButtonStyle())"
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "# CTLM Parameter\n",
-    "distance = (5, 10, 15, 20, 50) # Abstände der CTLM Kreise in µm\n",
-    "innen = 55 # Innenradien der CTLM Strukturen in µm (55)\n",
-    "\n",
-    "\n",
-    "# File selection\n",
-    "from ipywidgets import Button\n",
-    "from IPython.display import clear_output, display\n",
-    "from tkinter import Tk, filedialog\n",
-    "\n",
-    "def select_files(b):\n",
-    "    #clear_output()                                         # Button is deleted after it is clicked.\n",
-    "    root = Tk()\n",
-    "    root.withdraw()                                        # Hide the main window.\n",
-    "    root.call('wm', 'attributes', '.', '-topmost', True)   # Raise the root to the top of all windows.\n",
-    "    b.files = filedialog.askopenfilename(multiple=True)    # List of selected files will be set button's file attribute. \n",
-    "    #print(b.files)   \n",
-    "    \n",
-    "fileselect = Button(description=\"File select\")\n",
-    "fileselect.on_click(select_files)\n",
-    "\n",
-    "display(fileselect)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 20,
-   "id": "f6ec2ffd",
-   "metadata": {
-    "scrolled": false
-   },
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Statistics for Fitting of R Values \n",
-      "    d / µm | R²     | RT / Ohm   | C-Values\n",
-      "         5 | 1.0000 |     7.4701 | 0.9571\n",
-      "        10 | 1.0000 |    11.7377 | 0.9188\n",
-      "        15 | 1.0000 |    16.0671 | 0.8843\n",
-      "        20 | 1.0000 |    20.6316 | 0.8529\n",
-      "        50 | 0.9999 |    47.2309 | 0.7113\n"
-     ]
-    },
-    {
-     "data": {
-      "text/html": [
-       "\n",
-       "<div id=\"altair-viz-0606ac88c6574221bd738cd274dc996a\"></div>\n",
-       "<script type=\"text/javascript\">\n",
-       "  var VEGA_DEBUG = (typeof VEGA_DEBUG == \"undefined\") ? {} : VEGA_DEBUG;\n",
-       "  (function(spec, embedOpt){\n",
-       "    let outputDiv = document.currentScript.previousElementSibling;\n",
-       "    if (outputDiv.id !== \"altair-viz-0606ac88c6574221bd738cd274dc996a\") {\n",
-       "      outputDiv = document.getElementById(\"altair-viz-0606ac88c6574221bd738cd274dc996a\");\n",
-       "    }\n",
-       "    const paths = {\n",
-       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
-       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
-       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.17.0?noext\",\n",
-       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
-       "    };\n",
-       "\n",
-       "    function maybeLoadScript(lib, version) {\n",
-       "      var key = `${lib.replace(\"-\", \"\")}_version`;\n",
-       "      return (VEGA_DEBUG[key] == version) ?\n",
-       "        Promise.resolve(paths[lib]) :\n",
-       "        new Promise(function(resolve, reject) {\n",
-       "          var s = document.createElement('script');\n",
-       "          document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
-       "          s.async = true;\n",
-       "          s.onload = () => {\n",
-       "            VEGA_DEBUG[key] = version;\n",
-       "            return resolve(paths[lib]);\n",
-       "          };\n",
-       "          s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
-       "          s.src = paths[lib];\n",
-       "        });\n",
-       "    }\n",
-       "\n",
-       "    function showError(err) {\n",
-       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
-       "      throw err;\n",
-       "    }\n",
-       "\n",
-       "    function displayChart(vegaEmbed) {\n",
-       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
-       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
-       "    }\n",
-       "\n",
-       "    if(typeof define === \"function\" && define.amd) {\n",
-       "      requirejs.config({paths});\n",
-       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
-       "    } else {\n",
-       "      maybeLoadScript(\"vega\", \"5\")\n",
-       "        .then(() => maybeLoadScript(\"vega-lite\", \"4.17.0\"))\n",
-       "        .then(() => maybeLoadScript(\"vega-embed\", \"6\"))\n",
-       "        .catch(showError)\n",
-       "        .then(() => displayChart(vegaEmbed));\n",
-       "    }\n",
-       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"layer\": [{\"data\": {\"name\": \"data-285c9a455e82f3ff866d65610e17ea6c\"}, \"mark\": {\"type\": \"point\", \"color\": \"#00549F\"}, \"encoding\": {\"x\": {\"field\": \"U/V\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"I/A\", \"type\": \"quantitative\"}}, \"selection\": {\"selector109\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-e22f2f3d2ce222fb0ef40e97b21ccf80\"}, \"mark\": {\"type\": \"point\", \"color\": \"#0098A1\"}, \"encoding\": {\"x\": {\"field\": \"U/V\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"I/A\", \"type\": \"quantitative\"}}, \"selection\": {\"selector110\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-bddf62fb893e78fa32451141be4c9d9f\"}, \"mark\": {\"type\": \"point\", \"color\": \"#57AB27\"}, \"encoding\": {\"x\": {\"field\": \"U/V\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"I/A\", \"type\": \"quantitative\"}}, \"selection\": {\"selector111\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-e9d204c467c4911ba39e59f5f979cc68\"}, \"mark\": {\"type\": \"point\", \"color\": \"#F6A800\"}, \"encoding\": {\"x\": {\"field\": \"U/V\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"I/A\", \"type\": \"quantitative\"}}, \"selection\": {\"selector112\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-88ff81fd2a7907a1b2ba41cec60ca3ea\"}, \"mark\": {\"type\": \"point\", \"color\": \"#612158\"}, \"encoding\": {\"x\": {\"field\": \"U/V\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"I/A\", \"type\": \"quantitative\"}}, \"selection\": {\"selector113\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-d87aeb725c0e646b3a7c5a3fc5261413\"}, \"mark\": {\"type\": \"line\", \"color\": \"#00549F\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-17ab6b538152b978175b1addaf39599c\"}, \"mark\": {\"type\": \"line\", \"color\": \"#0098A1\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-f4a406fffd8c6c456c72b8455c8faa38\"}, \"mark\": {\"type\": \"line\", \"color\": \"#57AB27\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-32e0bc9bc7d6823147cd3c2c10e663ce\"}, \"mark\": {\"type\": \"line\", \"color\": \"#F6A800\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-c5a80fe656b2f12d9614ed8d76ce3696\"}, \"mark\": {\"type\": \"line\", \"color\": \"#612158\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}], \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.17.0.json\", \"datasets\": {\"data-285c9a455e82f3ff866d65610e17ea6c\": [{\"U/V\": -0.35942, \"I/A\": -0.05, \"R/Ohm\": 7.1884}, {\"U/V\": -0.351986, \"I/A\": -0.049, \"R/Ohm\": 7.183388}, {\"U/V\": -0.3446, \"I/A\": -0.048, \"R/Ohm\": 7.179167}, {\"U/V\": -0.33732, \"I/A\": -0.047, \"R/Ohm\": 7.177021}, {\"U/V\": -0.329974, \"I/A\": -0.046, \"R/Ohm\": 7.173348}, {\"U/V\": -0.322662, \"I/A\": -0.045, \"R/Ohm\": 7.170267}, {\"U/V\": -0.31533, \"I/A\": -0.044, \"R/Ohm\": 7.166591}, {\"U/V\": -0.308004, \"I/A\": -0.043, \"R/Ohm\": 7.162884}, {\"U/V\": -0.300672, \"I/A\": -0.042, \"R/Ohm\": 7.158857}, {\"U/V\": -0.293432, \"I/A\": -0.041, \"R/Ohm\": 7.156878}, {\"U/V\": -0.286098, \"I/A\": -0.04, \"R/Ohm\": 7.15245}, {\"U/V\": -0.278792, \"I/A\": -0.039, \"R/Ohm\": 7.148513}, {\"U/V\": -0.271598, \"I/A\": -0.038, \"R/Ohm\": 7.147316}, {\"U/V\": -0.264388, \"I/A\": -0.037, \"R/Ohm\": 7.145622}, {\"U/V\": -0.257096, \"I/A\": -0.036, \"R/Ohm\": 7.141556}, {\"U/V\": -0.249858, \"I/A\": -0.035, \"R/Ohm\": 7.1388}, {\"U/V\": -0.24267, \"I/A\": -0.034, \"R/Ohm\": 7.137353}, {\"U/V\": -0.235454, \"I/A\": -0.033, \"R/Ohm\": 7.13497}, {\"U/V\": -0.228248, \"I/A\": -0.032, \"R/Ohm\": 7.13275}, {\"U/V\": -0.220968, \"I/A\": -0.031, \"R/Ohm\": 7.128}, {\"U/V\": -0.21384, \"I/A\": -0.03, \"R/Ohm\": 7.128}, {\"U/V\": -0.206536, \"I/A\": -0.029, \"R/Ohm\": 7.121931}, {\"U/V\": -0.199446, \"I/A\": -0.028, \"R/Ohm\": 7.123071}, {\"U/V\": -0.192246, \"I/A\": -0.027, \"R/Ohm\": 7.120222}, {\"U/V\": -0.185142, \"I/A\": -0.026, \"R/Ohm\": 7.120846}, {\"U/V\": -0.177842, \"I/A\": -0.025, \"R/Ohm\": 7.11368}, {\"U/V\": -0.170794, \"I/A\": -0.024, \"R/Ohm\": 7.116417}, {\"U/V\": -0.16354, \"I/A\": -0.023, \"R/Ohm\": 7.110435}, {\"U/V\": -0.156468, \"I/A\": -0.022, \"R/Ohm\": 7.112182}, {\"U/V\": -0.149268, \"I/A\": -0.021, \"R/Ohm\": 7.108}, {\"U/V\": -0.142174, \"I/A\": -0.02, \"R/Ohm\": 7.1087}, {\"U/V\": -0.134934, \"I/A\": -0.019, \"R/Ohm\": 7.101789}, {\"U/V\": -0.127936, \"I/A\": -0.018, \"R/Ohm\": 7.107556}, {\"U/V\": -0.120728, \"I/A\": -0.017, \"R/Ohm\": 7.101647}, {\"U/V\": -0.11363, \"I/A\": -0.016, \"R/Ohm\": 7.101875}, {\"U/V\": -0.106502, \"I/A\": -0.015, \"R/Ohm\": 7.100133}, {\"U/V\": -0.0994, \"I/A\": -0.014, \"R/Ohm\": 7.1}, {\"U/V\": -0.092232, \"I/A\": -0.013, \"R/Ohm\": 7.094769}, {\"U/V\": -0.085188, \"I/A\": -0.012, \"R/Ohm\": 7.099}, {\"U/V\": -0.078044, \"I/A\": -0.011, \"R/Ohm\": 7.094909}, {\"U/V\": -0.070998, \"I/A\": -0.01, \"R/Ohm\": 7.0998}, {\"U/V\": -0.063836, \"I/A\": -0.009, \"R/Ohm\": 7.092889}, {\"U/V\": -0.056742, \"I/A\": -0.008, \"R/Ohm\": 7.09275}, {\"U/V\": -0.049654, \"I/A\": -0.007, \"R/Ohm\": 7.093429}, {\"U/V\": -0.042552, \"I/A\": -0.006, \"R/Ohm\": 7.092}, {\"U/V\": -0.035412, \"I/A\": -0.005, \"R/Ohm\": 7.0824}, {\"U/V\": -0.02837, \"I/A\": -0.004, \"R/Ohm\": 7.0925}, {\"U/V\": -0.02125, \"I/A\": -0.003, \"R/Ohm\": 7.083333}, {\"U/V\": -0.014142, \"I/A\": -0.002, \"R/Ohm\": 7.071}, {\"U/V\": -0.007084, \"I/A\": -0.001, \"R/Ohm\": 7.084}, {\"U/V\": 3.2e-05, \"I/A\": 0.0, \"R/Ohm\": null}, {\"U/V\": 0.007144, \"I/A\": 0.001, \"R/Ohm\": 7.144}, {\"U/V\": 0.014198, \"I/A\": 0.002, \"R/Ohm\": 7.099}, {\"U/V\": 0.021298, \"I/A\": 0.003, \"R/Ohm\": 7.099333}, {\"U/V\": 0.028422, \"I/A\": 0.004, \"R/Ohm\": 7.1055}, {\"U/V\": 0.035454, \"I/A\": 0.005, \"R/Ohm\": 7.0908}, {\"U/V\": 0.042588, \"I/A\": 0.006, \"R/Ohm\": 7.098}, {\"U/V\": 0.04972, \"I/A\": 0.007, \"R/Ohm\": 7.102857}, {\"U/V\": 0.056822, \"I/A\": 0.008, \"R/Ohm\": 7.10275}, {\"U/V\": 0.06388, \"I/A\": 0.009, \"R/Ohm\": 7.097778}, {\"U/V\": 0.071014, \"I/A\": 0.01, \"R/Ohm\": 7.1014}, {\"U/V\": 0.07812, \"I/A\": 0.011, \"R/Ohm\": 7.101818}, {\"U/V\": 0.085178, \"I/A\": 0.012, \"R/Ohm\": 7.098167}, {\"U/V\": 0.092302, \"I/A\": 0.013, \"R/Ohm\": 7.100154}, {\"U/V\": 0.099428, \"I/A\": 0.014, \"R/Ohm\": 7.102}, {\"U/V\": 0.106504, \"I/A\": 0.015, \"R/Ohm\": 7.100267}, {\"U/V\": 0.113654, \"I/A\": 0.016, \"R/Ohm\": 7.103375}, {\"U/V\": 0.120778, \"I/A\": 0.017, \"R/Ohm\": 7.104588}, {\"U/V\": 0.12797, \"I/A\": 0.018, \"R/Ohm\": 7.109444}, {\"U/V\": 0.13499, \"I/A\": 0.019, \"R/Ohm\": 7.104737}, {\"U/V\": 0.14219, \"I/A\": 0.02, \"R/Ohm\": 7.1095}, {\"U/V\": 0.14933, \"I/A\": 0.021, \"R/Ohm\": 7.110952}, {\"U/V\": 0.156414, \"I/A\": 0.022, \"R/Ohm\": 7.109727}, {\"U/V\": 0.163626, \"I/A\": 0.023, \"R/Ohm\": 7.114174}, {\"U/V\": 0.170728, \"I/A\": 0.024, \"R/Ohm\": 7.113667}, {\"U/V\": 0.177874, \"I/A\": 0.025, \"R/Ohm\": 7.11496}, {\"U/V\": 0.185046, \"I/A\": 0.026, \"R/Ohm\": 7.117154}, {\"U/V\": 0.192194, \"I/A\": 0.027, \"R/Ohm\": 7.118296}, {\"U/V\": 0.19945, \"I/A\": 0.028, \"R/Ohm\": 7.123214}, {\"U/V\": 0.206528, \"I/A\": 0.029, \"R/Ohm\": 7.121655}, {\"U/V\": 0.21378, \"I/A\": 0.03, \"R/Ohm\": 7.126}, {\"U/V\": 0.221024, \"I/A\": 0.031, \"R/Ohm\": 7.129806}, {\"U/V\": 0.228136, \"I/A\": 0.032, \"R/Ohm\": 7.12925}, {\"U/V\": 0.235414, \"I/A\": 0.033, \"R/Ohm\": 7.133758}, {\"U/V\": 0.242616, \"I/A\": 0.034, \"R/Ohm\": 7.135765}, {\"U/V\": 0.249754, \"I/A\": 0.035, \"R/Ohm\": 7.135829}, {\"U/V\": 0.257056, \"I/A\": 0.036, \"R/Ohm\": 7.140444}, {\"U/V\": 0.264312, \"I/A\": 0.037, \"R/Ohm\": 7.143568}, {\"U/V\": 0.271576, \"I/A\": 0.038, \"R/Ohm\": 7.146737}, {\"U/V\": 0.278726, \"I/A\": 0.039, \"R/Ohm\": 7.146821}, {\"U/V\": 0.286052, \"I/A\": 0.04, \"R/Ohm\": 7.1513}, {\"U/V\": 0.293346, \"I/A\": 0.041, \"R/Ohm\": 7.15478}, {\"U/V\": 0.300582, \"I/A\": 0.042, \"R/Ohm\": 7.156714}, {\"U/V\": 0.307926, \"I/A\": 0.043, \"R/Ohm\": 7.16107}, {\"U/V\": 0.3152, \"I/A\": 0.044, \"R/Ohm\": 7.163636}, {\"U/V\": 0.322442, \"I/A\": 0.045, \"R/Ohm\": 7.165378}, {\"U/V\": 0.329816, \"I/A\": 0.046, \"R/Ohm\": 7.169913}, {\"U/V\": 0.337152, \"I/A\": 0.047, \"R/Ohm\": 7.173447}, {\"U/V\": 0.344498, \"I/A\": 0.048, \"R/Ohm\": 7.177042}, {\"U/V\": 0.351804, \"I/A\": 0.049, \"R/Ohm\": 7.179673}, {\"U/V\": 0.359232, \"I/A\": 0.05, \"R/Ohm\": 7.18464}], \"data-e22f2f3d2ce222fb0ef40e97b21ccf80\": [{\"U/V\": -0.543786, \"I/A\": -0.05, \"R/Ohm\": 10.87572}, {\"U/V\": -0.532522, \"I/A\": -0.049, \"R/Ohm\": 10.867796}, {\"U/V\": -0.521296, \"I/A\": -0.048, \"R/Ohm\": 10.860333}, {\"U/V\": -0.510186, \"I/A\": -0.047, \"R/Ohm\": 10.855021}, {\"U/V\": -0.499034, \"I/A\": -0.046, \"R/Ohm\": 10.848565}, {\"U/V\": -0.4879, \"I/A\": -0.045, \"R/Ohm\": 10.842222}, {\"U/V\": -0.47683, \"I/A\": -0.044, \"R/Ohm\": 10.837045}, {\"U/V\": -0.46569, \"I/A\": -0.043, \"R/Ohm\": 10.83}, {\"U/V\": -0.454568, \"I/A\": -0.042, \"R/Ohm\": 10.823048}, {\"U/V\": -0.443518, \"I/A\": -0.041, \"R/Ohm\": 10.817512}, {\"U/V\": -0.432298, \"I/A\": -0.04, \"R/Ohm\": 10.80745}, {\"U/V\": -0.421194, \"I/A\": -0.039, \"R/Ohm\": 10.799846}, {\"U/V\": -0.410248, \"I/A\": -0.038, \"R/Ohm\": 10.796}, {\"U/V\": -0.39912, \"I/A\": -0.037, \"R/Ohm\": 10.787027}, {\"U/V\": -0.38809, \"I/A\": -0.036, \"R/Ohm\": 10.780278}, {\"U/V\": -0.377184, \"I/A\": -0.035, \"R/Ohm\": 10.776686}, {\"U/V\": -0.366198, \"I/A\": -0.034, \"R/Ohm\": 10.770529}, {\"U/V\": -0.355354, \"I/A\": -0.033, \"R/Ohm\": 10.768303}, {\"U/V\": -0.344174, \"I/A\": -0.032, \"R/Ohm\": 10.755437}, {\"U/V\": -0.333148, \"I/A\": -0.031, \"R/Ohm\": 10.74671}, {\"U/V\": -0.323294, \"I/A\": -0.03, \"R/Ohm\": 10.776467}, {\"U/V\": -0.311402, \"I/A\": -0.029, \"R/Ohm\": 10.738}, {\"U/V\": -0.30042, \"I/A\": -0.028, \"R/Ohm\": 10.729286}, {\"U/V\": -0.289626, \"I/A\": -0.027, \"R/Ohm\": 10.726889}, {\"U/V\": -0.278732, \"I/A\": -0.026, \"R/Ohm\": 10.720462}, {\"U/V\": -0.267864, \"I/A\": -0.025, \"R/Ohm\": 10.71456}, {\"U/V\": -0.257134, \"I/A\": -0.024, \"R/Ohm\": 10.713917}, {\"U/V\": -0.246268, \"I/A\": -0.023, \"R/Ohm\": 10.707304}, {\"U/V\": -0.235454, \"I/A\": -0.022, \"R/Ohm\": 10.702455}, {\"U/V\": -0.224752, \"I/A\": -0.021, \"R/Ohm\": 10.702476}, {\"U/V\": -0.213932, \"I/A\": -0.02, \"R/Ohm\": 10.6966}, {\"U/V\": -0.20313, \"I/A\": -0.019, \"R/Ohm\": 10.691053}, {\"U/V\": -0.19246, \"I/A\": -0.018, \"R/Ohm\": 10.692222}, {\"U/V\": -0.181672, \"I/A\": -0.017, \"R/Ohm\": 10.686588}, {\"U/V\": -0.170902, \"I/A\": -0.016, \"R/Ohm\": 10.681375}, {\"U/V\": -0.160264, \"I/A\": -0.015, \"R/Ohm\": 10.684267}, {\"U/V\": -0.149488, \"I/A\": -0.014, \"R/Ohm\": 10.677714}, {\"U/V\": -0.138772, \"I/A\": -0.013, \"R/Ohm\": 10.674769}, {\"U/V\": -0.128096, \"I/A\": -0.012, \"R/Ohm\": 10.674667}, {\"U/V\": -0.117392, \"I/A\": -0.011, \"R/Ohm\": 10.672}, {\"U/V\": -0.106764, \"I/A\": -0.01, \"R/Ohm\": 10.6764}, {\"U/V\": -0.096038, \"I/A\": -0.009, \"R/Ohm\": 10.670889}, {\"U/V\": -0.085316, \"I/A\": -0.008, \"R/Ohm\": 10.6645}, {\"U/V\": -0.074692, \"I/A\": -0.007, \"R/Ohm\": 10.670286}, {\"U/V\": -0.06399, \"I/A\": -0.006, \"R/Ohm\": 10.665}, {\"U/V\": -0.05326, \"I/A\": -0.005, \"R/Ohm\": 10.652}, {\"U/V\": -0.042674, \"I/A\": -0.004, \"R/Ohm\": 10.6685}, {\"U/V\": -0.03196, \"I/A\": -0.003, \"R/Ohm\": 10.653333}, {\"U/V\": -0.021262, \"I/A\": -0.002, \"R/Ohm\": 10.631}, {\"U/V\": -0.010672, \"I/A\": -0.001, \"R/Ohm\": 10.672}, {\"U/V\": 5.4e-05, \"I/A\": 0.0, \"R/Ohm\": null}, {\"U/V\": 0.010742, \"I/A\": 0.001, \"R/Ohm\": 10.742}, {\"U/V\": 0.02134, \"I/A\": 0.002, \"R/Ohm\": 10.67}, {\"U/V\": 0.03202, \"I/A\": 0.003, \"R/Ohm\": 10.673333}, {\"U/V\": 0.042726, \"I/A\": 0.004, \"R/Ohm\": 10.6815}, {\"U/V\": 0.053312, \"I/A\": 0.005, \"R/Ohm\": 10.6624}, {\"U/V\": 0.064018, \"I/A\": 0.006, \"R/Ohm\": 10.669667}, {\"U/V\": 0.07473, \"I/A\": 0.007, \"R/Ohm\": 10.675714}, {\"U/V\": 0.08542, \"I/A\": 0.008, \"R/Ohm\": 10.6775}, {\"U/V\": 0.096046, \"I/A\": 0.009, \"R/Ohm\": 10.671778}, {\"U/V\": 0.106742, \"I/A\": 0.01, \"R/Ohm\": 10.6742}, {\"U/V\": 0.117492, \"I/A\": 0.011, \"R/Ohm\": 10.681091}, {\"U/V\": 0.128082, \"I/A\": 0.012, \"R/Ohm\": 10.6735}, {\"U/V\": 0.13881, \"I/A\": 0.013, \"R/Ohm\": 10.677692}, {\"U/V\": 0.14954, \"I/A\": 0.014, \"R/Ohm\": 10.681429}, {\"U/V\": 0.160164, \"I/A\": 0.015, \"R/Ohm\": 10.6776}, {\"U/V\": 0.170928, \"I/A\": 0.016, \"R/Ohm\": 10.683}, {\"U/V\": 0.18165, \"I/A\": 0.017, \"R/Ohm\": 10.685294}, {\"U/V\": 0.19243, \"I/A\": 0.018, \"R/Ohm\": 10.690556}, {\"U/V\": 0.203068, \"I/A\": 0.019, \"R/Ohm\": 10.687789}, {\"U/V\": 0.213844, \"I/A\": 0.02, \"R/Ohm\": 10.6922}, {\"U/V\": 0.224628, \"I/A\": 0.021, \"R/Ohm\": 10.696571}, {\"U/V\": 0.235288, \"I/A\": 0.022, \"R/Ohm\": 10.694909}, {\"U/V\": 0.246052, \"I/A\": 0.023, \"R/Ohm\": 10.697913}, {\"U/V\": 0.256896, \"I/A\": 0.024, \"R/Ohm\": 10.704}, {\"U/V\": 0.267626, \"I/A\": 0.025, \"R/Ohm\": 10.70504}, {\"U/V\": 0.27843, \"I/A\": 0.026, \"R/Ohm\": 10.708846}, {\"U/V\": 0.289288, \"I/A\": 0.027, \"R/Ohm\": 10.71437}, {\"U/V\": 0.300128, \"I/A\": 0.028, \"R/Ohm\": 10.718857}, {\"U/V\": 0.310866, \"I/A\": 0.029, \"R/Ohm\": 10.719517}, {\"U/V\": 0.32177, \"I/A\": 0.03, \"R/Ohm\": 10.725667}, {\"U/V\": 0.332644, \"I/A\": 0.031, \"R/Ohm\": 10.730452}, {\"U/V\": 0.343446, \"I/A\": 0.032, \"R/Ohm\": 10.732688}, {\"U/V\": 0.354354, \"I/A\": 0.033, \"R/Ohm\": 10.738}, {\"U/V\": 0.365268, \"I/A\": 0.034, \"R/Ohm\": 10.743176}, {\"U/V\": 0.376122, \"I/A\": 0.035, \"R/Ohm\": 10.746343}, {\"U/V\": 0.38708, \"I/A\": 0.036, \"R/Ohm\": 10.752222}, {\"U/V\": 0.398066, \"I/A\": 0.037, \"R/Ohm\": 10.758541}, {\"U/V\": 0.409026, \"I/A\": 0.038, \"R/Ohm\": 10.763842}, {\"U/V\": 0.419932, \"I/A\": 0.039, \"R/Ohm\": 10.767487}, {\"U/V\": 0.43097, \"I/A\": 0.04, \"R/Ohm\": 10.77425}, {\"U/V\": 0.442044, \"I/A\": 0.041, \"R/Ohm\": 10.781561}, {\"U/V\": 0.452974, \"I/A\": 0.042, \"R/Ohm\": 10.785095}, {\"U/V\": 0.464032, \"I/A\": 0.043, \"R/Ohm\": 10.791442}, {\"U/V\": 0.475116, \"I/A\": 0.044, \"R/Ohm\": 10.798091}, {\"U/V\": 0.486148, \"I/A\": 0.045, \"R/Ohm\": 10.803289}, {\"U/V\": 0.497274, \"I/A\": 0.046, \"R/Ohm\": 10.810304}, {\"U/V\": 0.508408, \"I/A\": 0.047, \"R/Ohm\": 10.817191}, {\"U/V\": 0.519582, \"I/A\": 0.048, \"R/Ohm\": 10.824625}, {\"U/V\": 0.530674, \"I/A\": 0.049, \"R/Ohm\": 10.830082}, {\"U/V\": 0.541922, \"I/A\": 0.05, \"R/Ohm\": 10.83844}], \"data-bddf62fb893e78fa32451141be4c9d9f\": [{\"U/V\": -0.716194, \"I/A\": -0.05, \"R/Ohm\": 14.32388}, {\"U/V\": -0.701376, \"I/A\": -0.049, \"R/Ohm\": 14.313796}, {\"U/V\": -0.683656, \"I/A\": -0.048, \"R/Ohm\": 14.242833}, {\"U/V\": -0.67188, \"I/A\": -0.047, \"R/Ohm\": 14.295319}, {\"U/V\": -0.656932, \"I/A\": -0.046, \"R/Ohm\": 14.28113}, {\"U/V\": -0.64219, \"I/A\": -0.045, \"R/Ohm\": 14.270889}, {\"U/V\": -0.627524, \"I/A\": -0.044, \"R/Ohm\": 14.261909}, {\"U/V\": -0.612814, \"I/A\": -0.043, \"R/Ohm\": 14.251488}, {\"U/V\": -0.598064, \"I/A\": -0.042, \"R/Ohm\": 14.239619}, {\"U/V\": -0.583526, \"I/A\": -0.041, \"R/Ohm\": 14.232341}, {\"U/V\": -0.568894, \"I/A\": -0.04, \"R/Ohm\": 14.22235}, {\"U/V\": -0.554302, \"I/A\": -0.039, \"R/Ohm\": 14.212872}, {\"U/V\": -0.53981, \"I/A\": -0.038, \"R/Ohm\": 14.205526}, {\"U/V\": -0.525296, \"I/A\": -0.037, \"R/Ohm\": 14.197189}, {\"U/V\": -0.510724, \"I/A\": -0.036, \"R/Ohm\": 14.186778}, {\"U/V\": -0.496368, \"I/A\": -0.035, \"R/Ohm\": 14.181943}, {\"U/V\": -0.481862, \"I/A\": -0.034, \"R/Ohm\": 14.172412}, {\"U/V\": -0.467562, \"I/A\": -0.033, \"R/Ohm\": 14.168545}, {\"U/V\": -0.453104, \"I/A\": -0.032, \"R/Ohm\": 14.1595}, {\"U/V\": -0.438684, \"I/A\": -0.031, \"R/Ohm\": 14.151097}, {\"U/V\": -0.424416, \"I/A\": -0.03, \"R/Ohm\": 14.1472}, {\"U/V\": -0.410008, \"I/A\": -0.029, \"R/Ohm\": 14.138207}, {\"U/V\": -0.395676, \"I/A\": -0.028, \"R/Ohm\": 14.131286}, {\"U/V\": -0.38143, \"I/A\": -0.027, \"R/Ohm\": 14.127037}, {\"U/V\": -0.367122, \"I/A\": -0.026, \"R/Ohm\": 14.120077}, {\"U/V\": -0.352794, \"I/A\": -0.025, \"R/Ohm\": 14.11176}, {\"U/V\": -0.338644, \"I/A\": -0.024, \"R/Ohm\": 14.110167}, {\"U/V\": -0.324362, \"I/A\": -0.023, \"R/Ohm\": 14.102696}, {\"U/V\": -0.310122, \"I/A\": -0.022, \"R/Ohm\": 14.096455}, {\"U/V\": -0.296016, \"I/A\": -0.021, \"R/Ohm\": 14.096}, {\"U/V\": -0.281782, \"I/A\": -0.02, \"R/Ohm\": 14.0891}, {\"U/V\": -0.267542, \"I/A\": -0.019, \"R/Ohm\": 14.081158}, {\"U/V\": -0.253484, \"I/A\": -0.018, \"R/Ohm\": 14.082444}, {\"U/V\": -0.239286, \"I/A\": -0.017, \"R/Ohm\": 14.075647}, {\"U/V\": -0.2251, \"I/A\": -0.016, \"R/Ohm\": 14.06875}, {\"U/V\": -0.211056, \"I/A\": -0.015, \"R/Ohm\": 14.0704}, {\"U/V\": -0.196872, \"I/A\": -0.014, \"R/Ohm\": 14.062286}, {\"U/V\": -0.182732, \"I/A\": -0.013, \"R/Ohm\": 14.056308}, {\"U/V\": -0.168712, \"I/A\": -0.012, \"R/Ohm\": 14.059333}, {\"U/V\": -0.1546, \"I/A\": -0.011, \"R/Ohm\": 14.054545}, {\"U/V\": -0.140594, \"I/A\": -0.01, \"R/Ohm\": 14.0594}, {\"U/V\": -0.126468, \"I/A\": -0.009, \"R/Ohm\": 14.052}, {\"U/V\": -0.112352, \"I/A\": -0.008, \"R/Ohm\": 14.044}, {\"U/V\": -0.098372, \"I/A\": -0.007, \"R/Ohm\": 14.053143}, {\"U/V\": -0.084272, \"I/A\": -0.006, \"R/Ohm\": 14.045333}, {\"U/V\": -0.070148, \"I/A\": -0.005, \"R/Ohm\": 14.0296}, {\"U/V\": -0.056196, \"I/A\": -0.004, \"R/Ohm\": 14.049}, {\"U/V\": -0.042096, \"I/A\": -0.003, \"R/Ohm\": 14.032}, {\"U/V\": -0.028006, \"I/A\": -0.002, \"R/Ohm\": 14.003}, {\"U/V\": -0.01405, \"I/A\": -0.001, \"R/Ohm\": 14.05}, {\"U/V\": 4.6e-05, \"I/A\": 0.0, \"R/Ohm\": null}, {\"U/V\": 0.014138, \"I/A\": 0.001, \"R/Ohm\": 14.138}, {\"U/V\": 0.028068, \"I/A\": 0.002, \"R/Ohm\": 14.034}, {\"U/V\": 0.042162, \"I/A\": 0.003, \"R/Ohm\": 14.054}, {\"U/V\": 0.056238, \"I/A\": 0.004, \"R/Ohm\": 14.0595}, {\"U/V\": 0.070188, \"I/A\": 0.005, \"R/Ohm\": 14.0376}, {\"U/V\": 0.08429, \"I/A\": 0.006, \"R/Ohm\": 14.048333}, {\"U/V\": 0.098398, \"I/A\": 0.007, \"R/Ohm\": 14.056857}, {\"U/V\": 0.11249, \"I/A\": 0.008, \"R/Ohm\": 14.06125}, {\"U/V\": 0.126456, \"I/A\": 0.009, \"R/Ohm\": 14.050667}, {\"U/V\": 0.140572, \"I/A\": 0.01, \"R/Ohm\": 14.0572}, {\"U/V\": 0.154682, \"I/A\": 0.011, \"R/Ohm\": 14.062}, {\"U/V\": 0.168668, \"I/A\": 0.012, \"R/Ohm\": 14.055667}, {\"U/V\": 0.182796, \"I/A\": 0.013, \"R/Ohm\": 14.061231}, {\"U/V\": 0.19693, \"I/A\": 0.014, \"R/Ohm\": 14.066429}, {\"U/V\": 0.21094, \"I/A\": 0.015, \"R/Ohm\": 14.062667}, {\"U/V\": 0.225102, \"I/A\": 0.016, \"R/Ohm\": 14.068875}, {\"U/V\": 0.239264, \"I/A\": 0.017, \"R/Ohm\": 14.074353}, {\"U/V\": 0.253448, \"I/A\": 0.018, \"R/Ohm\": 14.080444}, {\"U/V\": 0.26748, \"I/A\": 0.019, \"R/Ohm\": 14.077895}, {\"U/V\": 0.281688, \"I/A\": 0.02, \"R/Ohm\": 14.0844}, {\"U/V\": 0.29591, \"I/A\": 0.021, \"R/Ohm\": 14.090952}, {\"U/V\": 0.30997, \"I/A\": 0.022, \"R/Ohm\": 14.089545}, {\"U/V\": 0.324222, \"I/A\": 0.023, \"R/Ohm\": 14.096609}, {\"U/V\": 0.338448, \"I/A\": 0.024, \"R/Ohm\": 14.102}, {\"U/V\": 0.352604, \"I/A\": 0.025, \"R/Ohm\": 14.10416}, {\"U/V\": 0.366872, \"I/A\": 0.026, \"R/Ohm\": 14.110462}, {\"U/V\": 0.38117, \"I/A\": 0.027, \"R/Ohm\": 14.117407}, {\"U/V\": 0.395512, \"I/A\": 0.028, \"R/Ohm\": 14.125429}, {\"U/V\": 0.409698, \"I/A\": 0.029, \"R/Ohm\": 14.127517}, {\"U/V\": 0.424066, \"I/A\": 0.03, \"R/Ohm\": 14.135533}, {\"U/V\": 0.438436, \"I/A\": 0.031, \"R/Ohm\": 14.143097}, {\"U/V\": 0.4527, \"I/A\": 0.032, \"R/Ohm\": 14.146875}, {\"U/V\": 0.467112, \"I/A\": 0.033, \"R/Ohm\": 14.154909}, {\"U/V\": 0.481522, \"I/A\": 0.034, \"R/Ohm\": 14.162412}, {\"U/V\": 0.495842, \"I/A\": 0.035, \"R/Ohm\": 14.166914}, {\"U/V\": 0.51032, \"I/A\": 0.036, \"R/Ohm\": 14.175556}, {\"U/V\": 0.524826, \"I/A\": 0.037, \"R/Ohm\": 14.184486}, {\"U/V\": 0.53935, \"I/A\": 0.038, \"R/Ohm\": 14.193421}, {\"U/V\": 0.553756, \"I/A\": 0.039, \"R/Ohm\": 14.198872}, {\"U/V\": 0.568366, \"I/A\": 0.04, \"R/Ohm\": 14.20915}, {\"U/V\": 0.582938, \"I/A\": 0.041, \"R/Ohm\": 14.218}, {\"U/V\": 0.597432, \"I/A\": 0.042, \"R/Ohm\": 14.224571}, {\"U/V\": 0.612114, \"I/A\": 0.043, \"R/Ohm\": 14.235209}, {\"U/V\": 0.62678, \"I/A\": 0.044, \"R/Ohm\": 14.245}, {\"U/V\": 0.641368, \"I/A\": 0.045, \"R/Ohm\": 14.252622}, {\"U/V\": 0.656206, \"I/A\": 0.046, \"R/Ohm\": 14.265348}, {\"U/V\": 0.670946, \"I/A\": 0.047, \"R/Ohm\": 14.275447}, {\"U/V\": 0.685658, \"I/A\": 0.048, \"R/Ohm\": 14.284542}, {\"U/V\": 0.700382, \"I/A\": 0.049, \"R/Ohm\": 14.29351}, {\"U/V\": 0.715274, \"I/A\": 0.05, \"R/Ohm\": 14.30548}], \"data-e9d204c467c4911ba39e59f5f979cc68\": [{\"U/V\": -0.889464, \"I/A\": -0.05, \"R/Ohm\": 17.78928}, {\"U/V\": -0.87072, \"I/A\": -0.049, \"R/Ohm\": 17.769796}, {\"U/V\": -0.852044, \"I/A\": -0.048, \"R/Ohm\": 17.750917}, {\"U/V\": -0.833528, \"I/A\": -0.047, \"R/Ohm\": 17.734638}, {\"U/V\": -0.814996, \"I/A\": -0.046, \"R/Ohm\": 17.717304}, {\"U/V\": -0.796516, \"I/A\": -0.045, \"R/Ohm\": 17.700356}, {\"U/V\": -0.77816, \"I/A\": -0.044, \"R/Ohm\": 17.685455}, {\"U/V\": -0.759782, \"I/A\": -0.043, \"R/Ohm\": 17.669349}, {\"U/V\": -0.741454, \"I/A\": -0.042, \"R/Ohm\": 17.653667}, {\"U/V\": -0.723332, \"I/A\": -0.041, \"R/Ohm\": 17.642244}, {\"U/V\": -0.705112, \"I/A\": -0.04, \"R/Ohm\": 17.6278}, {\"U/V\": -0.686912, \"I/A\": -0.039, \"R/Ohm\": 17.613128}, {\"U/V\": -0.668936, \"I/A\": -0.038, \"R/Ohm\": 17.603579}, {\"U/V\": -0.650838, \"I/A\": -0.037, \"R/Ohm\": 17.590216}, {\"U/V\": -0.632764, \"I/A\": -0.036, \"R/Ohm\": 17.576778}, {\"U/V\": -0.614896, \"I/A\": -0.035, \"R/Ohm\": 17.568457}, {\"U/V\": -0.596878, \"I/A\": -0.034, \"R/Ohm\": 17.555235}, {\"U/V\": -0.5791, \"I/A\": -0.033, \"R/Ohm\": 17.548485}, {\"U/V\": -0.561152, \"I/A\": -0.032, \"R/Ohm\": 17.536}, {\"U/V\": -0.543246, \"I/A\": -0.031, \"R/Ohm\": 17.524065}, {\"U/V\": -0.525524, \"I/A\": -0.03, \"R/Ohm\": 17.517467}, {\"U/V\": -0.507674, \"I/A\": -0.029, \"R/Ohm\": 17.506}, {\"U/V\": -0.489858, \"I/A\": -0.028, \"R/Ohm\": 17.494929}, {\"U/V\": -0.47223, \"I/A\": -0.027, \"R/Ohm\": 17.49}, {\"U/V\": -0.45447, \"I/A\": -0.026, \"R/Ohm\": 17.479615}, {\"U/V\": -0.43672, \"I/A\": -0.025, \"R/Ohm\": 17.4688}, {\"U/V\": -0.41916, \"I/A\": -0.024, \"R/Ohm\": 17.465}, {\"U/V\": -0.401494, \"I/A\": -0.023, \"R/Ohm\": 17.456261}, {\"U/V\": -0.38382, \"I/A\": -0.022, \"R/Ohm\": 17.446364}, {\"U/V\": -0.366342, \"I/A\": -0.021, \"R/Ohm\": 17.444857}, {\"U/V\": -0.34868, \"I/A\": -0.02, \"R/Ohm\": 17.434}, {\"U/V\": -0.331078, \"I/A\": -0.019, \"R/Ohm\": 17.425158}, {\"U/V\": -0.313648, \"I/A\": -0.018, \"R/Ohm\": 17.424889}, {\"U/V\": -0.296072, \"I/A\": -0.017, \"R/Ohm\": 17.416}, {\"U/V\": -0.278506, \"I/A\": -0.016, \"R/Ohm\": 17.406625}, {\"U/V\": -0.26113, \"I/A\": -0.015, \"R/Ohm\": 17.408667}, {\"U/V\": -0.243584, \"I/A\": -0.014, \"R/Ohm\": 17.398857}, {\"U/V\": -0.22608, \"I/A\": -0.013, \"R/Ohm\": 17.390769}, {\"U/V\": -0.208734, \"I/A\": -0.012, \"R/Ohm\": 17.3945}, {\"U/V\": -0.191248, \"I/A\": -0.011, \"R/Ohm\": 17.386182}, {\"U/V\": -0.173918, \"I/A\": -0.01, \"R/Ohm\": 17.3918}, {\"U/V\": -0.156442, \"I/A\": -0.009, \"R/Ohm\": 17.382444}, {\"U/V\": -0.13897, \"I/A\": -0.008, \"R/Ohm\": 17.37125}, {\"U/V\": -0.121684, \"I/A\": -0.007, \"R/Ohm\": 17.383429}, {\"U/V\": -0.104228, \"I/A\": -0.006, \"R/Ohm\": 17.371333}, {\"U/V\": -0.086778, \"I/A\": -0.005, \"R/Ohm\": 17.3556}, {\"U/V\": -0.069502, \"I/A\": -0.004, \"R/Ohm\": 17.3755}, {\"U/V\": -0.052074, \"I/A\": -0.003, \"R/Ohm\": 17.358}, {\"U/V\": -0.034638, \"I/A\": -0.002, \"R/Ohm\": 17.319}, {\"U/V\": -0.017402, \"I/A\": -0.001, \"R/Ohm\": 17.402}, {\"U/V\": 6.4e-05, \"I/A\": 0.0, \"R/Ohm\": null}, {\"U/V\": 0.01748, \"I/A\": 0.001, \"R/Ohm\": 17.48}, {\"U/V\": 0.034726, \"I/A\": 0.002, \"R/Ohm\": 17.363}, {\"U/V\": 0.05213, \"I/A\": 0.003, \"R/Ohm\": 17.376667}, {\"U/V\": 0.069546, \"I/A\": 0.004, \"R/Ohm\": 17.3865}, {\"U/V\": 0.0868, \"I/A\": 0.005, \"R/Ohm\": 17.36}, {\"U/V\": 0.104236, \"I/A\": 0.006, \"R/Ohm\": 17.372667}, {\"U/V\": 0.121684, \"I/A\": 0.007, \"R/Ohm\": 17.383429}, {\"U/V\": 0.139094, \"I/A\": 0.008, \"R/Ohm\": 17.38675}, {\"U/V\": 0.156384, \"I/A\": 0.009, \"R/Ohm\": 17.376}, {\"U/V\": 0.173818, \"I/A\": 0.01, \"R/Ohm\": 17.3818}, {\"U/V\": 0.19129, \"I/A\": 0.011, \"R/Ohm\": 17.39}, {\"U/V\": 0.208572, \"I/A\": 0.012, \"R/Ohm\": 17.381}, {\"U/V\": 0.226054, \"I/A\": 0.013, \"R/Ohm\": 17.388769}, {\"U/V\": 0.24352, \"I/A\": 0.014, \"R/Ohm\": 17.394286}, {\"U/V\": 0.26085, \"I/A\": 0.015, \"R/Ohm\": 17.39}, {\"U/V\": 0.278358, \"I/A\": 0.016, \"R/Ohm\": 17.397375}, {\"U/V\": 0.29587, \"I/A\": 0.017, \"R/Ohm\": 17.404118}, {\"U/V\": 0.31343, \"I/A\": 0.018, \"R/Ohm\": 17.412778}, {\"U/V\": 0.33078, \"I/A\": 0.019, \"R/Ohm\": 17.409474}, {\"U/V\": 0.34836, \"I/A\": 0.02, \"R/Ohm\": 17.418}, {\"U/V\": 0.365948, \"I/A\": 0.021, \"R/Ohm\": 17.426095}, {\"U/V\": 0.383352, \"I/A\": 0.022, \"R/Ohm\": 17.425091}, {\"U/V\": 0.400952, \"I/A\": 0.023, \"R/Ohm\": 17.432696}, {\"U/V\": 0.418586, \"I/A\": 0.024, \"R/Ohm\": 17.441083}, {\"U/V\": 0.43608, \"I/A\": 0.025, \"R/Ohm\": 17.4432}, {\"U/V\": 0.45375, \"I/A\": 0.026, \"R/Ohm\": 17.451923}, {\"U/V\": 0.471456, \"I/A\": 0.027, \"R/Ohm\": 17.461333}, {\"U/V\": 0.489174, \"I/A\": 0.028, \"R/Ohm\": 17.4705}, {\"U/V\": 0.506746, \"I/A\": 0.029, \"R/Ohm\": 17.474}, {\"U/V\": 0.524518, \"I/A\": 0.03, \"R/Ohm\": 17.483933}, {\"U/V\": 0.542338, \"I/A\": 0.031, \"R/Ohm\": 17.494774}, {\"U/V\": 0.559972, \"I/A\": 0.032, \"R/Ohm\": 17.499125}, {\"U/V\": 0.577826, \"I/A\": 0.033, \"R/Ohm\": 17.509879}, {\"U/V\": 0.595686, \"I/A\": 0.034, \"R/Ohm\": 17.520176}, {\"U/V\": 0.613438, \"I/A\": 0.035, \"R/Ohm\": 17.5268}, {\"U/V\": 0.631374, \"I/A\": 0.036, \"R/Ohm\": 17.538167}, {\"U/V\": 0.649344, \"I/A\": 0.037, \"R/Ohm\": 17.549838}, {\"U/V\": 0.667362, \"I/A\": 0.038, \"R/Ohm\": 17.562158}, {\"U/V\": 0.685218, \"I/A\": 0.039, \"R/Ohm\": 17.569692}, {\"U/V\": 0.703304, \"I/A\": 0.04, \"R/Ohm\": 17.5826}, {\"U/V\": 0.721382, \"I/A\": 0.041, \"R/Ohm\": 17.594683}, {\"U/V\": 0.739372, \"I/A\": 0.042, \"R/Ohm\": 17.604095}, {\"U/V\": 0.75753, \"I/A\": 0.043, \"R/Ohm\": 17.616977}, {\"U/V\": 0.77574, \"I/A\": 0.044, \"R/Ohm\": 17.630455}, {\"U/V\": 0.793842, \"I/A\": 0.045, \"R/Ohm\": 17.640933}, {\"U/V\": 0.812142, \"I/A\": 0.046, \"R/Ohm\": 17.655261}, {\"U/V\": 0.830484, \"I/A\": 0.047, \"R/Ohm\": 17.669872}, {\"U/V\": 0.848858, \"I/A\": 0.048, \"R/Ohm\": 17.684542}, {\"U/V\": 0.86711, \"I/A\": 0.049, \"R/Ohm\": 17.696122}, {\"U/V\": 0.885588, \"I/A\": 0.05, \"R/Ohm\": 17.71176}], \"data-88ff81fd2a7907a1b2ba41cec60ca3ea\": [{\"U/V\": -1.696496, \"I/A\": -0.05, \"R/Ohm\": 33.92992}, {\"U/V\": -1.661436, \"I/A\": -0.049, \"R/Ohm\": 33.906857}, {\"U/V\": -1.625872, \"I/A\": -0.048, \"R/Ohm\": 33.872333}, {\"U/V\": -1.59042, \"I/A\": -0.047, \"R/Ohm\": 33.838723}, {\"U/V\": -1.555242, \"I/A\": -0.046, \"R/Ohm\": 33.809609}, {\"U/V\": -1.519918, \"I/A\": -0.045, \"R/Ohm\": 33.775956}, {\"U/V\": -1.484954, \"I/A\": -0.044, \"R/Ohm\": 33.748955}, {\"U/V\": -1.449786, \"I/A\": -0.043, \"R/Ohm\": 33.715953}, {\"U/V\": -1.414666, \"I/A\": -0.042, \"R/Ohm\": 33.682524}, {\"U/V\": -1.37999, \"I/A\": -0.041, \"R/Ohm\": 33.658293}, {\"U/V\": -1.345108, \"I/A\": -0.04, \"R/Ohm\": 33.6277}, {\"U/V\": -1.31023, \"I/A\": -0.039, \"R/Ohm\": 33.595641}, {\"U/V\": -1.275816, \"I/A\": -0.038, \"R/Ohm\": 33.574105}, {\"U/V\": -1.24116, \"I/A\": -0.037, \"R/Ohm\": 33.544865}, {\"U/V\": -1.206532, \"I/A\": -0.036, \"R/Ohm\": 33.514778}, {\"U/V\": -1.17235, \"I/A\": -0.035, \"R/Ohm\": 33.495714}, {\"U/V\": -1.137874, \"I/A\": -0.034, \"R/Ohm\": 33.466882}, {\"U/V\": -1.103532, \"I/A\": -0.033, \"R/Ohm\": 33.440364}, {\"U/V\": -1.069542, \"I/A\": -0.032, \"R/Ohm\": 33.423187}, {\"U/V\": -1.035296, \"I/A\": -0.031, \"R/Ohm\": 33.396645}, {\"U/V\": -1.001128, \"I/A\": -0.03, \"R/Ohm\": 33.370933}, {\"U/V\": -0.967308, \"I/A\": -0.029, \"R/Ohm\": 33.355448}, {\"U/V\": -0.933298, \"I/A\": -0.028, \"R/Ohm\": 33.332071}, {\"U/V\": -0.89963, \"I/A\": -0.027, \"R/Ohm\": 33.31963}, {\"U/V\": -0.865726, \"I/A\": -0.026, \"R/Ohm\": 33.297154}, {\"U/V\": -0.831846, \"I/A\": -0.025, \"R/Ohm\": 33.27384}, {\"U/V\": -0.798338, \"I/A\": -0.024, \"R/Ohm\": 33.264083}, {\"U/V\": -0.764588, \"I/A\": -0.023, \"R/Ohm\": 33.242957}, {\"U/V\": -0.730888, \"I/A\": -0.022, \"R/Ohm\": 33.222182}, {\"U/V\": -0.697582, \"I/A\": -0.021, \"R/Ohm\": 33.21819}, {\"U/V\": -0.663934, \"I/A\": -0.02, \"R/Ohm\": 33.1967}, {\"U/V\": -0.630322, \"I/A\": -0.019, \"R/Ohm\": 33.174842}, {\"U/V\": -0.597144, \"I/A\": -0.018, \"R/Ohm\": 33.174667}, {\"U/V\": -0.56362, \"I/A\": -0.017, \"R/Ohm\": 33.154118}, {\"U/V\": -0.530178, \"I/A\": -0.016, \"R/Ohm\": 33.136125}, {\"U/V\": -0.497066, \"I/A\": -0.015, \"R/Ohm\": 33.137733}, {\"U/V\": -0.463648, \"I/A\": -0.014, \"R/Ohm\": 33.117714}, {\"U/V\": -0.430332, \"I/A\": -0.013, \"R/Ohm\": 33.102462}, {\"U/V\": -0.397272, \"I/A\": -0.012, \"R/Ohm\": 33.106}, {\"U/V\": -0.363992, \"I/A\": -0.011, \"R/Ohm\": 33.090182}, {\"U/V\": -0.330698, \"I/A\": -0.01, \"R/Ohm\": 33.0698}, {\"U/V\": -0.297744, \"I/A\": -0.009, \"R/Ohm\": 33.082667}, {\"U/V\": -0.26449, \"I/A\": -0.008, \"R/Ohm\": 33.06125}, {\"U/V\": -0.231566, \"I/A\": -0.007, \"R/Ohm\": 33.080857}, {\"U/V\": -0.198366, \"I/A\": -0.006, \"R/Ohm\": 33.061}, {\"U/V\": -0.165132, \"I/A\": -0.005, \"R/Ohm\": 33.0264}, {\"U/V\": -0.132286, \"I/A\": -0.004, \"R/Ohm\": 33.0715}, {\"U/V\": -0.099116, \"I/A\": -0.003, \"R/Ohm\": 33.038667}, {\"U/V\": -0.065936, \"I/A\": -0.002, \"R/Ohm\": 32.968}, {\"U/V\": -0.033122, \"I/A\": -0.001, \"R/Ohm\": 33.122}, {\"U/V\": 0.0001, \"I/A\": 0.0, \"R/Ohm\": null}, {\"U/V\": 0.033246, \"I/A\": 0.001, \"R/Ohm\": 33.246}, {\"U/V\": 0.066052, \"I/A\": 0.002, \"R/Ohm\": 33.026}, {\"U/V\": 0.099204, \"I/A\": 0.003, \"R/Ohm\": 33.068}, {\"U/V\": 0.132358, \"I/A\": 0.004, \"R/Ohm\": 33.0895}, {\"U/V\": 0.165196, \"I/A\": 0.005, \"R/Ohm\": 33.0392}, {\"U/V\": 0.198388, \"I/A\": 0.006, \"R/Ohm\": 33.064667}, {\"U/V\": 0.231596, \"I/A\": 0.007, \"R/Ohm\": 33.085143}, {\"U/V\": 0.264772, \"I/A\": 0.008, \"R/Ohm\": 33.0965}, {\"U/V\": 0.297674, \"I/A\": 0.009, \"R/Ohm\": 33.074889}, {\"U/V\": 0.330922, \"I/A\": 0.01, \"R/Ohm\": 33.0922}, {\"U/V\": 0.36418, \"I/A\": 0.011, \"R/Ohm\": 33.107273}, {\"U/V\": 0.397128, \"I/A\": 0.012, \"R/Ohm\": 33.094}, {\"U/V\": 0.430444, \"I/A\": 0.013, \"R/Ohm\": 33.111077}, {\"U/V\": 0.463742, \"I/A\": 0.014, \"R/Ohm\": 33.124429}, {\"U/V\": 0.49681, \"I/A\": 0.015, \"R/Ohm\": 33.120667}, {\"U/V\": 0.530198, \"I/A\": 0.016, \"R/Ohm\": 33.137375}, {\"U/V\": 0.56361, \"I/A\": 0.017, \"R/Ohm\": 33.153529}, {\"U/V\": 0.597094, \"I/A\": 0.018, \"R/Ohm\": 33.171889}, {\"U/V\": 0.630236, \"I/A\": 0.019, \"R/Ohm\": 33.170316}, {\"U/V\": 0.663782, \"I/A\": 0.02, \"R/Ohm\": 33.1891}, {\"U/V\": 0.697376, \"I/A\": 0.021, \"R/Ohm\": 33.208381}, {\"U/V\": 0.730642, \"I/A\": 0.022, \"R/Ohm\": 33.211}, {\"U/V\": 0.764306, \"I/A\": 0.023, \"R/Ohm\": 33.230696}, {\"U/V\": 0.798012, \"I/A\": 0.024, \"R/Ohm\": 33.2505}, {\"U/V\": 0.831458, \"I/A\": 0.025, \"R/Ohm\": 33.25832}, {\"U/V\": 0.8653, \"I/A\": 0.026, \"R/Ohm\": 33.280769}, {\"U/V\": 0.899156, \"I/A\": 0.027, \"R/Ohm\": 33.302074}, {\"U/V\": 0.932796, \"I/A\": 0.028, \"R/Ohm\": 33.314143}, {\"U/V\": 0.966778, \"I/A\": 0.029, \"R/Ohm\": 33.337172}, {\"U/V\": 1.000842, \"I/A\": 0.03, \"R/Ohm\": 33.3614}, {\"U/V\": 1.034988, \"I/A\": 0.031, \"R/Ohm\": 33.38671}, {\"U/V\": 1.068824, \"I/A\": 0.032, \"R/Ohm\": 33.40075}, {\"U/V\": 1.103096, \"I/A\": 0.033, \"R/Ohm\": 33.427152}, {\"U/V\": 1.137398, \"I/A\": 0.034, \"R/Ohm\": 33.452882}, {\"U/V\": 1.171496, \"I/A\": 0.035, \"R/Ohm\": 33.471314}, {\"U/V\": 1.205992, \"I/A\": 0.036, \"R/Ohm\": 33.499778}, {\"U/V\": 1.240588, \"I/A\": 0.037, \"R/Ohm\": 33.529405}, {\"U/V\": 1.27489, \"I/A\": 0.038, \"R/Ohm\": 33.549737}, {\"U/V\": 1.309618, \"I/A\": 0.039, \"R/Ohm\": 33.579949}, {\"U/V\": 1.344452, \"I/A\": 0.04, \"R/Ohm\": 33.6113}, {\"U/V\": 1.379322, \"I/A\": 0.041, \"R/Ohm\": 33.642}, {\"U/V\": 1.414018, \"I/A\": 0.042, \"R/Ohm\": 33.667095}, {\"U/V\": 1.449134, \"I/A\": 0.043, \"R/Ohm\": 33.700791}, {\"U/V\": 1.484284, \"I/A\": 0.044, \"R/Ohm\": 33.733727}, {\"U/V\": 1.519232, \"I/A\": 0.045, \"R/Ohm\": 33.760711}, {\"U/V\": 1.554668, \"I/A\": 0.046, \"R/Ohm\": 33.79713}, {\"U/V\": 1.590162, \"I/A\": 0.047, \"R/Ohm\": 33.833234}, {\"U/V\": 1.625488, \"I/A\": 0.048, \"R/Ohm\": 33.864333}, {\"U/V\": 1.661174, \"I/A\": 0.049, \"R/Ohm\": 33.90151}, {\"U/V\": 1.697158, \"I/A\": 0.05, \"R/Ohm\": 33.94316}], \"data-d87aeb725c0e646b3a7c5a3fc5261413\": [{\"x\": -0.35942, \"f(x)\": -0.05026818965815415}, {\"x\": -0.351986, \"f(x)\": -0.049228442650591925}, {\"x\": -0.3446, \"f(x)\": -0.04819540910231985}, {\"x\": -0.33732, \"f(x)\": -0.047177201109980194}, {\"x\": -0.329974, \"f(x)\": -0.046149762111116585}, {\"x\": -0.322662, \"f(x)\": -0.04512707847925016}, {\"x\": -0.31533, \"f(x)\": -0.044101597572679514}, {\"x\": -0.308004, \"f(x)\": -0.04307695584852013}, {\"x\": -0.300672, \"f(x)\": -0.042051474941949475}, {\"x\": -0.293432, \"f(x)\": -0.04103886149901829}, {\"x\": -0.286098, \"f(x)\": -0.04001310086497721}, {\"x\": -0.278792, \"f(x)\": -0.038991256415522056}, {\"x\": -0.271598, \"f(x)\": -0.03798507670441059}, {\"x\": -0.264388, \"f(x)\": -0.03697665917353574}, {\"x\": -0.257096, \"f(x)\": -0.03595677281637355}, {\"x\": -0.249858, \"f(x)\": -0.034944439100912786}, {\"x\": -0.24267, \"f(x)\": -0.033939098572212584}, {\"x\": -0.235454, \"f(x)\": -0.032929841858926466}, {\"x\": -0.228248, \"f(x)\": -0.031921983782992464}, {\"x\": -0.220968, \"f(x)\": -0.030903775790652812}, {\"x\": -0.21384, \"f(x)\": -0.029906827086065305}, {\"x\": -0.206536, \"f(x)\": -0.028885262364080577}, {\"x\": -0.199446, \"f(x)\": -0.027893628481431107}, {\"x\": -0.192246, \"f(x)\": -0.026886609587908374}, {\"x\": -0.185142, \"f(x)\": -0.025893017612965943}, {\"x\": -0.177842, \"f(x)\": -0.024872012345922057}, {\"x\": -0.170794, \"f(x)\": -0.02388625274015147}, {\"x\": -0.16354, \"f(x)\": -0.022871681204927316}, {\"x\": -0.156468, \"f(x)\": -0.021882564869511654}, {\"x\": -0.149268, \"f(x)\": -0.02087554597598892}, {\"x\": -0.142174, \"f(x)\": -0.0198833526383986}, {\"x\": -0.134934, \"f(x)\": -0.01887073919546741}, {\"x\": -0.127936, \"f(x)\": -0.017891972776457397}, {\"x\": -0.120728, \"f(x)\": -0.016883834973052972}, {\"x\": -0.11363, \"f(x)\": -0.015891082180521807}, {\"x\": -0.106502, \"f(x)\": -0.014894133475934303}, {\"x\": -0.0994, \"f(x)\": -0.013900821228462295}, {\"x\": -0.092232, \"f(x)\": -0.012898277974466327}, {\"x\": -0.085188, \"f(x)\": -0.011913077823636585}, {\"x\": -0.078044, \"f(x)\": -0.010913891299285695}, {\"x\": -0.070998, \"f(x)\": -0.009928411420985533}, {\"x\": -0.063836, \"f(x)\": -0.008926707349400834}, {\"x\": -0.056742, \"f(x)\": -0.007934514011810518}, {\"x\": -0.049654, \"f(x)\": -0.006943159856631471}, {\"x\": -0.042552, \"f(x)\": -0.005949847609159463}, {\"x\": -0.035412, \"f(x)\": -0.004951220539749418}, {\"x\": -0.02837, \"f(x)\": -0.0039663001163901}, {\"x\": -0.02125, \"f(x)\": -0.002970470321684285}, {\"x\": -0.014142, \"f(x)\": -0.001976318891801008}, {\"x\": -0.007084, \"f(x)\": -0.0009891606486783055}, {\"x\": 3.2e-05, \"f(x)\": 6.10969108666327e-06}, {\"x\": 0.007144, \"f(x)\": 0.0010008205759107862}, {\"x\": 0.014198, \"f(x)\": 0.0019874193640926426}, {\"x\": 0.021298, \"f(x)\": 0.002980451884094228}, {\"x\": 0.028422, \"f(x)\": 0.003976841133740888}, {\"x\": 0.035454, \"f(x)\": 0.004960362919748092}, {\"x\": 0.042588, \"f(x)\": 0.005958150806746868}, {\"x\": 0.04972, \"f(x)\": 0.00695565896627522}, {\"x\": 0.056822, \"f(x)\": 0.007948971213747227}, {\"x\": 0.06388, \"f(x)\": 0.008936129456869932}, {\"x\": 0.071014, \"f(x)\": 0.009933917343868705}, {\"x\": 0.07812, \"f(x)\": 0.010927789046281559}, {\"x\": 0.085178, \"f(x)\": 0.011914947289404263}, {\"x\": 0.092302, \"f(x)\": 0.012911336539050923}, {\"x\": 0.099428, \"f(x)\": 0.013908005516168007}, {\"x\": 0.106504, \"f(x)\": 0.014897681306524517}, {\"x\": 0.113654, \"f(x)\": 0.015897707013286678}, {\"x\": 0.120778, \"f(x)\": 0.016894096262933336}, {\"x\": 0.12797, \"f(x)\": 0.01789999624657438}, {\"x\": 0.13499, \"f(x)\": 0.018881839667759043}, {\"x\": 0.14219, \"f(x)\": 0.01988885856128178}, {\"x\": 0.14933, \"f(x)\": 0.020887485630691822}, {\"x\": 0.156414, \"f(x)\": 0.021878280330930023}, {\"x\": 0.163626, \"f(x)\": 0.022886977589275295}, {\"x\": 0.170728, \"f(x)\": 0.023880289836747302}, {\"x\": 0.177874, \"f(x)\": 0.024879756088568617}, {\"x\": 0.185046, \"f(x)\": 0.025882858797505428}, {\"x\": 0.192194, \"f(x)\": 0.026882604776797166}, {\"x\": 0.19945, \"f(x)\": 0.02789745603949174}, {\"x\": 0.206528, \"f(x)\": 0.028887411557318676}, {\"x\": 0.21378, \"f(x)\": 0.029901703365072408}, {\"x\": 0.221024, \"f(x)\": 0.03091487626294445}, {\"x\": 0.228136, \"f(x)\": 0.03190958714776857}, {\"x\": 0.235414, \"f(x)\": 0.0329275154126378}, {\"x\": 0.242616, \"f(x)\": 0.03393481403363096}, {\"x\": 0.249754, \"f(x)\": 0.03493316137557058}, {\"x\": 0.257056, \"f(x)\": 0.03595444637008489}, {\"x\": 0.264312, \"f(x)\": 0.03696929763277946}, {\"x\": 0.271576, \"f(x)\": 0.03798526780535573}, {\"x\": 0.278726, \"f(x)\": 0.03898529351211789}, {\"x\": 0.286052, \"f(x)\": 0.04000993523627727}, {\"x\": 0.293346, \"f(x)\": 0.04103010132090989}, {\"x\": 0.300582, \"f(x)\": 0.042042155308900236}, {\"x\": 0.307926, \"f(x)\": 0.04306931458029342}, {\"x\": 0.3152, \"f(x)\": 0.04408668339022181}, {\"x\": 0.322442, \"f(x)\": 0.045099576560623425}, {\"x\": 0.329816, \"f(x)\": 0.046130931744072956}, {\"x\": 0.337152, \"f(x)\": 0.047156972105584456}, {\"x\": 0.344498, \"f(x)\": 0.04818441110444807}, {\"x\": 0.351804, \"f(x)\": 0.04920625555390322}, {\"x\": 0.359232, \"f(x)\": 0.05024516337905417}], \"data-17ab6b538152b978175b1addaf39599c\": [{\"x\": -0.543786, \"f(x)\": -0.05039442476124775}, {\"x\": -0.532522, \"f(x)\": -0.049349967215290884}, {\"x\": -0.521296, \"f(x)\": -0.048309033229947146}, {\"x\": -0.510186, \"f(x)\": -0.047278855377001404}, {\"x\": -0.499034, \"f(x)\": -0.04624478306232535}, {\"x\": -0.4879, \"f(x)\": -0.045212379802676575}, {\"x\": -0.47683, \"f(x)\": -0.044185910960902554}, {\"x\": -0.46569, \"f(x)\": -0.04315295134957802}, {\"x\": -0.454568, \"f(x)\": -0.04212166079328077}, {\"x\": -0.443518, \"f(x)\": -0.04109704645709261}, {\"x\": -0.432298, \"f(x)\": -0.04005666882342463}, {\"x\": -0.421194, \"f(x)\": -0.039027047322154645}, {\"x\": -0.410248, \"f(x)\": -0.03801207641501297}, {\"x\": -0.39912, \"f(x)\": -0.03698022950703995}, {\"x\": -0.38809, \"f(x)\": -0.03595746967643765}, {\"x\": -0.377184, \"f(x)\": -0.03494620778046769}, {\"x\": -0.366198, \"f(x)\": -0.033927527862154284}, {\"x\": -0.355354, \"f(x)\": -0.03292201493350049}, {\"x\": -0.344174, \"f(x)\": -0.03188534631100424}, {\"x\": -0.333148, \"f(x)\": -0.030862957381519115}, {\"x\": -0.323294, \"f(x)\": -0.02994924247936544}, {\"x\": -0.311402, \"f(x)\": -0.028846553458012535}, {\"x\": -0.30042, \"f(x)\": -0.027828244440816302}, {\"x\": -0.289626, \"f(x)\": -0.02682736777612716}, {\"x\": -0.278732, \"f(x)\": -0.025817218583508716}, {\"x\": -0.267864, \"f(x)\": -0.024809480248151893}, {\"x\": -0.257134, \"f(x)\": -0.023814538001337506}, {\"x\": -0.246268, \"f(x)\": -0.02280698511653927}, {\"x\": -0.235454, \"f(x)\": -0.02180425394626427}, {\"x\": -0.224752, \"f(x)\": -0.02081190800727009}, {\"x\": -0.213932, \"f(x)\": -0.019808620485319336}, {\"x\": -0.20313, \"f(x)\": -0.01880700201839585}, {\"x\": -0.19246, \"f(x)\": -0.01781762328833905}, {\"x\": -0.181672, \"f(x)\": -0.016817302975325667}, {\"x\": -0.170902, \"f(x)\": -0.015818651717339562}, {\"x\": -0.160264, \"f(x)\": -0.014832240196220136}, {\"x\": -0.149488, \"f(x)\": -0.013833032586558273}, {\"x\": -0.138772, \"f(x)\": -0.012839388493653991}, {\"x\": -0.128096, \"f(x)\": -0.01184945341192143}, {\"x\": -0.117392, \"f(x)\": -0.010856922022368666}, {\"x\": -0.106764, \"f(x)\": -0.009871437754042173}, {\"x\": -0.096038, \"f(x)\": -0.00887686640834496}, {\"x\": -0.085316, \"f(x)\": -0.00788266596376492}, {\"x\": -0.074692, \"f(x)\": -0.006897552596555599}, {\"x\": -0.06399, \"f(x)\": -0.00590520665756142}, {\"x\": -0.05326, \"f(x)\": -0.0049102644107470355}, {\"x\": -0.042674, \"f(x)\": -0.003928674604150849}, {\"x\": -0.03196, \"f(x)\": -0.0029352159618051548}, {\"x\": -0.021262, \"f(x)\": -0.0019432409239281475}, {\"x\": -0.010672, \"f(x)\": -0.0009612802162147897}, {\"x\": 5.4e-05, \"f(x)\": 3.3291129482422306e-05}, {\"x\": 0.010742, \"f(x)\": 0.0010243389145664988}, {\"x\": 0.02134, \"f(x)\": 0.002007041424514201}, {\"x\": 0.03202, \"f(x)\": 0.0029973474073639325}, {\"x\": 0.042726, \"f(x)\": 0.003990064247475284}, {\"x\": 0.053312, \"f(x)\": 0.00497165405407147}, {\"x\": 0.064018, \"f(x)\": 0.005964370894182822}, {\"x\": 0.07473, \"f(x)\": 0.0069576440859699315}, {\"x\": 0.08542, \"f(x)\": 0.007948877321612592}, {\"x\": 0.096046, \"f(x)\": 0.0089341761393805}, {\"x\": 0.106742, \"f(x)\": 0.009925965726698922}, {\"x\": 0.117492, \"f(x)\": 0.010922762479099167}, {\"x\": 0.128082, \"f(x)\": 0.011904723186812525}, {\"x\": 0.13881, \"f(x)\": 0.012899479983068321}, {\"x\": 0.14954, \"f(x)\": 0.013894422229882708}, {\"x\": 0.160164, \"f(x)\": 0.014879535597092028}, {\"x\": 0.170928, \"f(x)\": 0.015877630503402376}, {\"x\": 0.18165, \"f(x)\": 0.016871830947982416}, {\"x\": 0.19243, \"f(x)\": 0.01787140945876145}, {\"x\": 0.203068, \"f(x)\": 0.018857820979880875}, {\"x\": 0.213844, \"f(x)\": 0.019857028589542743}, {\"x\": 0.224628, \"f(x)\": 0.020856978001438948}, {\"x\": 0.235288, \"f(x)\": 0.02184542947870282}, {\"x\": 0.246052, \"f(x)\": 0.022843524385013168}, {\"x\": 0.256896, \"f(x)\": 0.02384903731366696}, {\"x\": 0.267626, \"f(x)\": 0.024843979560481344}, {\"x\": 0.27843, \"f(x)\": 0.025845783477963416}, {\"x\": 0.289288, \"f(x)\": 0.02685259456052731}, {\"x\": 0.300128, \"f(x)\": 0.02785773658806393}, {\"x\": 0.310866, \"f(x)\": 0.028853420637112655}, {\"x\": 0.32177, \"f(x)\": 0.02986449708252403}, {\"x\": 0.332644, \"f(x)\": 0.030872791769556613}, {\"x\": 0.343446, \"f(x)\": 0.0318744102364801}, {\"x\": 0.354354, \"f(x)\": 0.032885857583008646}, {\"x\": 0.365268, \"f(x)\": 0.03389786128121295}, {\"x\": 0.376122, \"f(x)\": 0.03490430146265967}, {\"x\": 0.38708, \"f(x)\": 0.035920385073152865}, {\"x\": 0.398066, \"f(x)\": 0.03693906499146627}, {\"x\": 0.409026, \"f(x)\": 0.03795533405251806}, {\"x\": 0.419932, \"f(x)\": 0.038966595948488024}, {\"x\": 0.43097, \"f(x)\": 0.039990097581324664}, {\"x\": 0.442044, \"f(x)\": 0.04101693732421585}, {\"x\": 0.452974, \"f(x)\": 0.04203042462688884}, {\"x\": 0.464032, \"f(x)\": 0.04305578076531135}, {\"x\": 0.475116, \"f(x)\": 0.04408354776099547}, {\"x\": 0.486148, \"f(x)\": 0.04510649304215636}, {\"x\": 0.497274, \"f(x)\": 0.04613815449957079}, {\"x\": 0.508408, \"f(x)\": 0.04717055775921956}, {\"x\": 0.519582, \"f(x)\": 0.04820667003004006}, {\"x\": 0.530674, \"f(x)\": 0.049235178827958526}, {\"x\": 0.541922, \"f(x)\": 0.05027815276944671}], \"data-f4a406fffd8c6c456c72b8455c8faa38\": [{\"x\": -0.716194, \"f(x)\": -0.050401820756539206}, {\"x\": -0.701376, \"f(x)\": -0.04935884898438416}, {\"x\": -0.683656, \"f(x)\": -0.048111618602241675}, {\"x\": -0.67188, \"f(x)\": -0.04728275940471854}, {\"x\": -0.656932, \"f(x)\": -0.046230637522536484}, {\"x\": -0.64219, \"f(x)\": -0.04519301504547415}, {\"x\": -0.627524, \"f(x)\": -0.04416074186350452}, {\"x\": -0.612814, \"f(x)\": -0.04312537172121806}, {\"x\": -0.598064, \"f(x)\": -0.04208718616046176}, {\"x\": -0.583526, \"f(x)\": -0.04106392231759565}, {\"x\": -0.568894, \"f(x)\": -0.04003404224132539}, {\"x\": -0.554302, \"f(x)\": -0.039006977583524984}, {\"x\": -0.53981, \"f(x)\": -0.0379869514718992}, {\"x\": -0.525296, \"f(x)\": -0.03696537688011499}, {\"x\": -0.510724, \"f(x)\": -0.0359397199315495}, {\"x\": -0.496368, \"f(x)\": -0.0349292662427212}, {\"x\": -0.481862, \"f(x)\": -0.033908254734630966}, {\"x\": -0.467562, \"f(x)\": -0.032901742631660444}, {\"x\": -0.453104, \"f(x)\": -0.03188410962573403}, {\"x\": -0.438684, \"f(x)\": -0.030869151267353963}, {\"x\": -0.424416, \"f(x)\": -0.029864891499159323}, {\"x\": -0.410008, \"f(x)\": -0.02885077776632021}, {\"x\": -0.395676, \"f(x)\": -0.027842013328573816}, {\"x\": -0.38143, \"f(x)\": -0.026839302040537586}, {\"x\": -0.367122, \"f(x)\": -0.025832226853873097}, {\"x\": -0.352794, \"f(x)\": -0.024823743957973685}, {\"x\": -0.338644, \"f(x)\": -0.023827789674265094}, {\"x\": -0.324362, \"f(x)\": -0.022822544509606003}, {\"x\": -0.310122, \"f(x)\": -0.021820255534340256}, {\"x\": -0.296016, \"f(x)\": -0.020827398210948495}, {\"x\": -0.281782, \"f(x)\": -0.019825531548453224}, {\"x\": -0.267542, \"f(x)\": -0.018823242573187477}, {\"x\": -0.253484, \"f(x)\": -0.017833763751959532}, {\"x\": -0.239286, \"f(x)\": -0.016834430966087124}, {\"x\": -0.2251, \"f(x)\": -0.01583594280575567}, {\"x\": -0.211056, \"f(x)\": -0.014847449380992177}, {\"x\": -0.196872, \"f(x)\": -0.013849101991584215}, {\"x\": -0.182732, \"f(x)\": -0.012853851562493086}, {\"x\": -0.168712, \"f(x)\": -0.011867047388811499}, {\"x\": -0.1546, \"f(x)\": -0.010873767752649262}, {\"x\": -0.140594, \"f(x)\": -0.009887948975432123}, {\"x\": -0.126468, \"f(x)\": -0.008893683942805439}, {\"x\": -0.112352, \"f(x)\": -0.007900122764796218}, {\"x\": -0.098372, \"f(x)\": -0.006916134009584478}, {\"x\": -0.084272, \"f(x)\": -0.005923698998963196}, {\"x\": -0.070148, \"f(x)\": -0.004929574737260006}, {\"x\": -0.056196, \"f(x)\": -0.003947556774977159}, {\"x\": -0.042096, \"f(x)\": -0.0029551217643558774}, {\"x\": -0.028006, \"f(x)\": -0.0019633906083520573}, {\"x\": -0.01405, \"f(x)\": -0.0009810911042222267}, {\"x\": 4.6e-05, \"f(x)\": 1.106236455207068e-05}, {\"x\": 0.014138, \"f(x)\": 0.0010029342914793832}, {\"x\": 0.028068, \"f(x)\": 0.001983403773603813}, {\"x\": 0.042162, \"f(x)\": 0.002975416471454618}, {\"x\": 0.056238, \"f(x)\": 0.003966162230993992}, {\"x\": 0.070188, \"f(x)\": 0.004948039422353345}, {\"x\": 0.08429, \"f(x)\": 0.0059406152038981195}, {\"x\": 0.098398, \"f(x)\": 0.006933613298213371}, {\"x\": 0.11249, \"f(x)\": 0.007925485225140683}, {\"x\": 0.126456, \"f(x)\": 0.008908488583887975}, {\"x\": 0.140572, \"f(x)\": 0.009902049761897196}, {\"x\": 0.154682, \"f(x)\": 0.010895188627135939}, {\"x\": 0.168668, \"f(x)\": 0.011879599695118157}, {\"x\": 0.182796, \"f(x)\": 0.012874005498668331}, {\"x\": 0.19693, \"f(x)\": 0.013868833614988984}, {\"x\": 0.21094, \"f(x)\": 0.014854933934053108}, {\"x\": 0.225102, \"f(x)\": 0.015851732843302657}, {\"x\": 0.239264, \"f(x)\": 0.016848531752552205}, {\"x\": 0.253448, \"f(x)\": 0.017846879141960165}, {\"x\": 0.26748, \"f(x)\": 0.018834527941182705}, {\"x\": 0.281688, \"f(x)\": 0.019834564581672577}, {\"x\": 0.29591, \"f(x)\": 0.020835586618626896}, {\"x\": 0.30997, \"f(x)\": 0.02182520621077833}, {\"x\": 0.324222, \"f(x)\": 0.02282833981158503}, {\"x\": 0.338448, \"f(x)\": 0.023829643390386335}, {\"x\": 0.352604, \"f(x)\": 0.0248260199868654}, {\"x\": 0.366872, \"f(x)\": 0.025830279755060043}, {\"x\": 0.38117, \"f(x)\": 0.02683665108710707}, {\"x\": 0.395512, \"f(x)\": 0.02784611937947093}, {\"x\": 0.409698, \"f(x)\": 0.028844607539802388}, {\"x\": 0.424066, \"f(x)\": 0.02985590585417165}, {\"x\": 0.438436, \"f(x)\": 0.0308673449394644}, {\"x\": 0.4527, \"f(x)\": 0.03187132316581206}, {\"x\": 0.467112, \"f(x)\": 0.03288571844049815}, {\"x\": 0.481522, \"f(x)\": 0.03389997294426075}, {\"x\": 0.495842, \"f(x)\": 0.0349078927564662}, {\"x\": 0.51032, \"f(x)\": 0.03592693347162754}, {\"x\": 0.524826, \"f(x)\": 0.036947944979717776}, {\"x\": 0.53935, \"f(x)\": 0.03797022342611944}, {\"x\": 0.553756, \"f(x)\": 0.03898419638803506}, {\"x\": 0.568366, \"f(x)\": 0.040012527984146895}, {\"x\": 0.582938, \"f(x)\": 0.04103818493271238}, {\"x\": 0.597432, \"f(x)\": 0.04205835181526166}, {\"x\": 0.612114, \"f(x)\": 0.043091751164619226}, {\"x\": 0.62678, \"f(x)\": 0.04412402434658885}, {\"x\": 0.641368, \"f(x)\": 0.045150807462542276}, {\"x\": 0.656206, \"f(x)\": 0.046195186943932244}, {\"x\": 0.670946, \"f(x)\": 0.04723266865007109}, {\"x\": 0.685658, \"f(x)\": 0.04826817956328104}, {\"x\": 0.700382, \"f(x)\": 0.04930453510203194}, {\"x\": 0.715274, \"f(x)\": 0.05035271539835621}], \"data-32e0bc9bc7d6823147cd3c2c10e663ce\": [{\"x\": -0.889464, \"f(x)\": -0.050517452835839013}, {\"x\": -0.87072, \"f(x)\": -0.049452287246616065}, {\"x\": -0.852044, \"f(x)\": -0.0483909858944859}, {\"x\": -0.833528, \"f(x)\": -0.04733877686492699}, {\"x\": -0.814996, \"f(x)\": -0.046285658603110964}, {\"x\": -0.796516, \"f(x)\": -0.04523549534613058}, {\"x\": -0.77816, \"f(x)\": -0.04419237863914294}, {\"x\": -0.759782, \"f(x)\": -0.04314801173780174}, {\"x\": -0.741454, \"f(x)\": -0.042106486187264064}, {\"x\": -0.723332, \"f(x)\": -0.04107666700203688}, {\"x\": -0.705112, \"f(x)\": -0.04004127876923481}, {\"x\": -0.686912, \"f(x)\": -0.03900702707675414}, {\"x\": -0.668936, \"f(x)\": -0.037985504635873225}, {\"x\": -0.650838, \"f(x)\": -0.036957049299031736}, {\"x\": -0.632764, \"f(x)\": -0.03592995781057593}, {\"x\": -0.614896, \"f(x)\": -0.034914572687430624}, {\"x\": -0.596878, \"f(x)\": -0.033890663511874766}, {\"x\": -0.5791, \"f(x)\": -0.03288039282017578}, {\"x\": -0.561152, \"f(x)\": -0.03186046153574485}, {\"x\": -0.543246, \"f(x)\": -0.030842916985988872}, {\"x\": -0.525524, \"f(x)\": -0.029835828607189835}, {\"x\": -0.507674, \"f(x)\": -0.028821466370333792}, {\"x\": -0.489858, \"f(x)\": -0.027809036252024143}, {\"x\": -0.47223, \"f(x)\": -0.02680728961273572}, {\"x\": -0.45447, \"f(x)\": -0.025798041807326012}, {\"x\": -0.43672, \"f(x)\": -0.02478936227207701}, {\"x\": -0.41916, \"f(x)\": -0.023791479869881373}, {\"x\": -0.401494, \"f(x)\": -0.022787573803982282}, {\"x\": -0.38382, \"f(x)\": -0.021783213121954623}, {\"x\": -0.366342, \"f(x)\": -0.02078999053507676}, {\"x\": -0.34868, \"f(x)\": -0.019786311777241945}, {\"x\": -0.331078, \"f(x)\": -0.018786042640371352}, {\"x\": -0.313648, \"f(x)\": -0.017795547750264866}, {\"x\": -0.296072, \"f(x)\": -0.016796756115812106}, {\"x\": -0.278506, \"f(x)\": -0.015798532751520045}, {\"x\": -0.26113, \"f(x)\": -0.014811106520281357}, {\"x\": -0.243584, \"f(x)\": -0.013814019696310707}, {\"x\": -0.22608, \"f(x)\": -0.012819319607015014}, {\"x\": -0.208734, \"f(x)\": -0.011833598186258436}, {\"x\": -0.191248, \"f(x)\": -0.010839920983252009}, {\"x\": -0.173918, \"f(x)\": -0.009855108794752557}, {\"x\": -0.156442, \"f(x)\": -0.008861999861906831}, {\"x\": -0.13897, \"f(x)\": -0.00786911823712539}, {\"x\": -0.121684, \"f(x)\": -0.006886806437333033}, {\"x\": -0.104228, \"f(x)\": -0.005894834044808716}, {\"x\": -0.086778, \"f(x)\": -0.00490320261438082}, {\"x\": -0.069502, \"f(x)\": -0.003921459084749169}, {\"x\": -0.052074, \"f(x)\": -0.002931077848674822}, {\"x\": -0.034638, \"f(x)\": -0.001940241996471912}, {\"x\": -0.017402, \"f(x)\": -0.0009607715474830754}, {\"x\": 6.4e-05, \"f(x)\": 3.1769115201945714e-05}, {\"x\": 0.01748, \"f(x)\": 0.0010214684270834485}, {\"x\": 0.034726, \"f(x)\": 0.002001507146232989}, {\"x\": 0.05213, \"f(x)\": 0.0029905245339216474}, {\"x\": 0.069546, \"f(x)\": 0.0039802238458031495}, {\"x\": 0.0868, \"f(x)\": 0.004960717181081253}, {\"x\": 0.104236, \"f(x)\": 0.005951553033284163}, {\"x\": 0.121684, \"f(x)\": 0.006943070809679918}, {\"x\": 0.139094, \"f(x)\": 0.007932429159464996}, {\"x\": 0.156384, \"f(x)\": 0.008914968267321634}, {\"x\": 0.173818, \"f(x)\": 0.009905690465492403}, {\"x\": 0.19129, \"f(x)\": 0.010898572090273846}, {\"x\": 0.208572, \"f(x)\": 0.01188065658200192}, {\"x\": 0.226054, \"f(x)\": 0.012874106476944067}, {\"x\": 0.24352, \"f(x)\": 0.013866647139629087}, {\"x\": 0.26085, \"f(x)\": 0.01485145932812854}, {\"x\": 0.278358, \"f(x)\": 0.015846386725488514}, {\"x\": 0.29587, \"f(x)\": 0.016841541430912776}, {\"x\": 0.31343, \"f(x)\": 0.01783942383310841}, {\"x\": 0.33078, \"f(x)\": 0.018825372561929267}, {\"x\": 0.34836, \"f(x)\": 0.01982439150444631}, {\"x\": 0.365948, \"f(x)\": 0.020823865063091914}, {\"x\": 0.383352, \"f(x)\": 0.021812882450780575}, {\"x\": 0.400952, \"f(x)\": 0.022813037933619024}, {\"x\": 0.418586, \"f(x)\": 0.023815125535003867}, {\"x\": 0.43608, \"f(x)\": 0.02480925735413886}, {\"x\": 0.45375, \"f(x)\": 0.025813390728102233}, {\"x\": 0.471456, \"f(x)\": 0.026819569874644143}, {\"x\": 0.489174, \"f(x)\": 0.027826430945378896}, {\"x\": 0.506746, \"f(x)\": 0.02882499527176738}, {\"x\": 0.524518, \"f(x)\": 0.02983492500136993}, {\"x\": 0.542338, \"f(x)\": 0.03084758242774386}, {\"x\": 0.559972, \"f(x)\": 0.03184967002912871}, {\"x\": 0.577826, \"f(x)\": 0.03286425957404902}, {\"x\": 0.595686, \"f(x)\": 0.033879190081065776}, {\"x\": 0.613438, \"f(x)\": 0.03488798327034692}, {\"x\": 0.631374, \"f(x)\": 0.03590723263058501}, {\"x\": 0.649344, \"f(x)\": 0.0369284141093695}, {\"x\": 0.667362, \"f(x)\": 0.037952323284925364}, {\"x\": 0.685218, \"f(x)\": 0.03896702648387783}, {\"x\": 0.703304, \"f(x)\": 0.039994799896526476}, {\"x\": 0.721382, \"f(x)\": 0.04102211869304656}, {\"x\": 0.739372, \"f(x)\": 0.04204443671215245}, {\"x\": 0.75753, \"f(x)\": 0.04307630166995817}, {\"x\": 0.77574, \"f(x)\": 0.04411112163259954}, {\"x\": 0.793842, \"f(x)\": 0.045139804277505316}, {\"x\": 0.812142, \"f(x)\": 0.04617973867159302}, {\"x\": 0.830484, \"f(x)\": 0.04722205980035568}, {\"x\": 0.848858, \"f(x)\": 0.0482661993936326}, {\"x\": 0.86711, \"f(x)\": 0.04930340609094893}, {\"x\": 0.885588, \"f(x)\": 0.05035345569389716}], \"data-c5a80fe656b2f12d9614ed8d76ce3696\": [{\"x\": -1.696496, \"f(x)\": -0.05049476645191084}, {\"x\": -1.661436, \"f(x)\": -0.04945115524194748}, {\"x\": -1.625872, \"f(x)\": -0.04839254174876047}, {\"x\": -1.59042, \"f(x)\": -0.047337262096289814}, {\"x\": -1.555242, \"f(x)\": -0.046290138447000286}, {\"x\": -1.519918, \"f(x)\": -0.04523866889820549}, {\"x\": -1.484954, \"f(x)\": -0.044197915265999026}, {\"x\": -1.449786, \"f(x)\": -0.043151089281059166}, {\"x\": -1.414666, \"f(x)\": -0.04210569208499775}, {\"x\": -1.37999, \"f(x)\": -0.04107351118606195}, {\"x\": -1.345108, \"f(x)\": -0.040035198401522816}, {\"x\": -1.31023, \"f(x)\": -0.03899700468272356}, {\"x\": -1.275816, \"f(x)\": -0.03797262258974926}, {\"x\": -1.24116, \"f(x)\": -0.03694103701951281}, {\"x\": -1.206532, \"f(x)\": -0.03591028490945544}, {\"x\": -1.17235, \"f(x)\": -0.034892808629393625}, {\"x\": -1.137874, \"f(x)\": -0.03386658101745134}, {\"x\": -1.103532, \"f(x)\": -0.032844342107794695}, {\"x\": -1.069542, \"f(x)\": -0.03183258098324665}, {\"x\": -1.035296, \"f(x)\": -0.03081319965134691}, {\"x\": -1.001128, \"f(x)\": -0.029796140101374637}, {\"x\": -0.967308, \"f(x)\": -0.028789439270771076}, {\"x\": -0.933298, \"f(x)\": -0.02777708281752368}, {\"x\": -0.89963, \"f(x)\": -0.026774906485035194}, {\"x\": -0.865726, \"f(x)\": -0.02576570527389436}, {\"x\": -0.831846, \"f(x)\": -0.024757218457192746}, {\"x\": -0.798338, \"f(x)\": -0.023759804754299074}, {\"x\": -0.764588, \"f(x)\": -0.02275518757414325}, {\"x\": -0.730888, \"f(x)\": -0.021752058715735798}, {\"x\": -0.697582, \"f(x)\": -0.02076065783270558}, {\"x\": -0.663934, \"f(x)\": -0.019759076828916446}, {\"x\": -0.630322, \"f(x)\": -0.018758567416786144}, {\"x\": -0.597144, \"f(x)\": -0.01777097663743177}, {\"x\": -0.56362, \"f(x)\": -0.01677308667157862}, {\"x\": -0.530178, \"f(x)\": -0.015777637553392808}, {\"x\": -0.497066, \"f(x)\": -0.014792011358746296}, {\"x\": -0.463648, \"f(x)\": -0.013797276634999705}, {\"x\": -0.430332, \"f(x)\": -0.012805578087619807}, {\"x\": -0.397272, \"f(x)\": -0.011821499747591611}, {\"x\": -0.363992, \"f(x)\": -0.010830872791870545}, {\"x\": -0.330698, \"f(x)\": -0.009839829106059935}, {\"x\": -0.297744, \"f(x)\": -0.008858906008138302}, {\"x\": -0.26449, \"f(x)\": -0.007869052979726395}, {\"x\": -0.231566, \"f(x)\": -0.006889022874853788}, {\"x\": -0.198366, \"f(x)\": -0.00590077723393013}, {\"x\": -0.165132, \"f(x)\": -0.004911519534217574}, {\"x\": -0.132286, \"f(x)\": -0.003933811211272439}, {\"x\": -0.099116, \"f(x)\": -0.0029464585633978096}, {\"x\": -0.065936, \"f(x)\": -0.0019588082511735033}, {\"x\": -0.033122, \"f(x)\": -0.0009820524541473315}, {\"x\": 0.0001, \"f(x)\": 6.8480483456133305e-06}, {\"x\": 0.033246, \"f(x)\": 0.0009934863017810219}, {\"x\": 0.066052, \"f(x)\": 0.0019700039673274535}, {\"x\": 0.099204, \"f(x)\": 0.0029568208193726676}, {\"x\": 0.132358, \"f(x)\": 0.003943697204287817}, {\"x\": 0.165196, \"f(x)\": 0.004921167395753211}, {\"x\": 0.198388, \"f(x)\": 0.005909174905197129}, {\"x\": 0.231596, \"f(x)\": 0.006897658677600527}, {\"x\": 0.264772, \"f(x)\": 0.007885189924084962}, {\"x\": 0.297674, \"f(x)\": 0.008864565167388282}, {\"x\": 0.330922, \"f(x)\": 0.009854239597190383}, {\"x\": 0.36418, \"f(x)\": 0.01084421169134216}, {\"x\": 0.397128, \"f(x)\": 0.011824956190653988}, {\"x\": 0.430444, \"f(x)\": 0.012816654738033886}, {\"x\": 0.463742, \"f(x)\": 0.013807817489584366}, {\"x\": 0.49681, \"f(x)\": 0.014792133961092304}, {\"x\": 0.530198, \"f(x)\": 0.015785975691789866}, {\"x\": 0.56361, \"f(x)\": 0.016780531816926653}, {\"x\": 0.597094, \"f(x)\": 0.017777231125381102}, {\"x\": 0.630236, \"f(x)\": 0.01876375031307664}, {\"x\": 0.663782, \"f(x)\": 0.01976229514049908}, {\"x\": 0.697376, \"f(x)\": 0.020762268756799967}, {\"x\": 0.730642, \"f(x)\": 0.021752478982431486}, {\"x\": 0.764306, \"f(x)\": 0.022754536249180102}, {\"x\": 0.798012, \"f(x)\": 0.023757843706197355}, {\"x\": 0.831458, \"f(x)\": 0.024753411890123037}, {\"x\": 0.8653, \"f(x)\": 0.02576076758229588}, {\"x\": 0.899156, \"f(x)\": 0.02676854000455827}, {\"x\": 0.932796, \"f(x)\": 0.02776988287686766}, {\"x\": 0.966778, \"f(x)\": 0.02878140586993597}, {\"x\": 1.000842, \"f(x)\": 0.029795369710671617}, {\"x\": 1.034988, \"f(x)\": 0.030811774399074607}, {\"x\": 1.068824, \"f(x)\": 0.031818951492637644}, {\"x\": 1.103096, \"f(x)\": 0.03283910675184655}, {\"x\": 1.137398, \"f(x)\": 0.03386015500410448}, {\"x\": 1.171496, \"f(x)\": 0.03487513090362903}, {\"x\": 1.205992, \"f(x)\": 0.03590195384427067}, {\"x\": 1.240588, \"f(x)\": 0.03693175342840907}, {\"x\": 1.27489, \"f(x)\": 0.037952801680667}, {\"x\": 1.309618, \"f(x)\": 0.038986530434221116}, {\"x\": 1.344452, \"f(x)\": 0.040023414429881804}, {\"x\": 1.379322, \"f(x)\": 0.04106137001720132}, {\"x\": 1.414018, \"f(x)\": 0.042094146244836476}, {\"x\": 1.449134, \"f(x)\": 0.04313942437515802}, {\"x\": 1.484284, \"f(x)\": 0.04418571456426846}, {\"x\": 1.519232, \"f(x)\": 0.045225991933515446}, {\"x\": 1.554668, \"f(x)\": 0.04628079532302661}, {\"x\": 1.590162, \"f(x)\": 0.0473373251657659}, {\"x\": 1.625488, \"f(x)\": 0.048388854247430634}, {\"x\": 1.661174, \"f(x)\": 0.049451099245683694}, {\"x\": 1.697158, \"f(x)\": 0.050522214641557095}]}}, {\"mode\": \"vega-lite\"});\n",
-       "</script>"
-      ],
-      "text/plain": [
-       "alt.LayerChart(...)"
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    },
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Path:\n",
-      "C:/Users/zweipfennig/Documents/13 - local workspace/Proben/Aixtron_200_mm/PB00602R_6/PB00602R_6_E5 (22001)/Electrical/mesa - TLM/CTLM 4Contact\n",
-      "\n",
-      "Files: M14_CTLM_4Kontakt_1.txt, M14_CTLM_4Kontakt_2.txt, M14_CTLM_4Kontakt_3.txt, M14_CTLM_4Kontakt_4.txt, M14_CTLM_4Kontakt_5.txt \n",
-      "\n",
-      "Feld Rsh      R²     Rc       LT     rhoc      # removed values\n",
-      "-    [Ohm/sq] -      [Ohm mm] [µm]   [Ohm cm²] -\n",
-      "M14  306.09   1.0000   0.50     1.64 8.28e-06 None\n",
-      "M14  306.95   1.0000   0.49     1.59 7.74e-06 1\n",
-      "M14  306.58   1.0000   0.50     1.62 8.05e-06 2\n"
-     ]
-    },
-    {
-     "data": {
-      "text/html": [
-       "\n",
-       "<div id=\"altair-viz-5995bce056ad40958df43704ebd5bba6\"></div>\n",
-       "<script type=\"text/javascript\">\n",
-       "  var VEGA_DEBUG = (typeof VEGA_DEBUG == \"undefined\") ? {} : VEGA_DEBUG;\n",
-       "  (function(spec, embedOpt){\n",
-       "    let outputDiv = document.currentScript.previousElementSibling;\n",
-       "    if (outputDiv.id !== \"altair-viz-5995bce056ad40958df43704ebd5bba6\") {\n",
-       "      outputDiv = document.getElementById(\"altair-viz-5995bce056ad40958df43704ebd5bba6\");\n",
-       "    }\n",
-       "    const paths = {\n",
-       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
-       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
-       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.17.0?noext\",\n",
-       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
-       "    };\n",
-       "\n",
-       "    function maybeLoadScript(lib, version) {\n",
-       "      var key = `${lib.replace(\"-\", \"\")}_version`;\n",
-       "      return (VEGA_DEBUG[key] == version) ?\n",
-       "        Promise.resolve(paths[lib]) :\n",
-       "        new Promise(function(resolve, reject) {\n",
-       "          var s = document.createElement('script');\n",
-       "          document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
-       "          s.async = true;\n",
-       "          s.onload = () => {\n",
-       "            VEGA_DEBUG[key] = version;\n",
-       "            return resolve(paths[lib]);\n",
-       "          };\n",
-       "          s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
-       "          s.src = paths[lib];\n",
-       "        });\n",
-       "    }\n",
-       "\n",
-       "    function showError(err) {\n",
-       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
-       "      throw err;\n",
-       "    }\n",
-       "\n",
-       "    function displayChart(vegaEmbed) {\n",
-       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
-       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
-       "    }\n",
-       "\n",
-       "    if(typeof define === \"function\" && define.amd) {\n",
-       "      requirejs.config({paths});\n",
-       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
-       "    } else {\n",
-       "      maybeLoadScript(\"vega\", \"5\")\n",
-       "        .then(() => maybeLoadScript(\"vega-lite\", \"4.17.0\"))\n",
-       "        .then(() => maybeLoadScript(\"vega-embed\", \"6\"))\n",
-       "        .catch(showError)\n",
-       "        .then(() => displayChart(vegaEmbed));\n",
-       "    }\n",
-       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"layer\": [{\"data\": {\"name\": \"data-828a1578ad23a6019552baa6dc272060\"}, \"mark\": {\"type\": \"point\", \"color\": \"#00549F\"}, \"encoding\": {\"x\": {\"field\": \"d/\\u00b5m\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"R_T/Ohm\", \"type\": \"quantitative\"}}, \"selection\": {\"selector114\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-5b788e0e0ddb7e0f3cd08539163e06a1\"}, \"mark\": {\"type\": \"line\", \"color\": \"#A11035\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-39688cb487d0b1abc73cc8c7fbc2b36d\"}, \"mark\": {\"type\": \"line\", \"color\": \"#612158\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-fcd3a6abfdbf0e82d4b01fc7255fe707\"}, \"mark\": {\"type\": \"line\", \"color\": \"#7A6FAC\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}], \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.17.0.json\", \"datasets\": {\"data-828a1578ad23a6019552baa6dc272060\": [{\"d/\\u00b5m\": 5, \"R_T/Ohm\": 7.470095446387395}, {\"d/\\u00b5m\": 10, \"R_T/Ohm\": 11.737674485324668}, {\"d/\\u00b5m\": 15, \"R_T/Ohm\": 16.067067799499828}, {\"d/\\u00b5m\": 20, \"R_T/Ohm\": 20.631640772319443}, {\"d/\\u00b5m\": 50, \"R_T/Ohm\": 47.23093528396734}], \"data-5b788e0e0ddb7e0f3cd08539163e06a1\": [{\"x\": 0.0, \"f(x)\": 2.9128500699403213}, {\"x\": 1.0204081632653061, \"f(x)\": 3.816657860121924}, {\"x\": 2.0408163265306123, \"f(x)\": 4.720465650303527}, {\"x\": 3.0612244897959187, \"f(x)\": 5.62427344048513}, {\"x\": 4.081632653061225, \"f(x)\": 6.528081230666733}, {\"x\": 5.1020408163265305, \"f(x)\": 7.431889020848336}, {\"x\": 6.122448979591837, \"f(x)\": 8.335696811029939}, {\"x\": 7.142857142857143, \"f(x)\": 9.239504601211543}, {\"x\": 8.16326530612245, \"f(x)\": 10.143312391393145}, {\"x\": 9.183673469387756, \"f(x)\": 11.047120181574748}, {\"x\": 10.204081632653061, \"f(x)\": 11.95092797175635}, {\"x\": 11.224489795918368, \"f(x)\": 12.854735761937953}, {\"x\": 12.244897959183675, \"f(x)\": 13.758543552119557}, {\"x\": 13.26530612244898, \"f(x)\": 14.662351342301159}, {\"x\": 14.285714285714286, \"f(x)\": 15.566159132482763}, {\"x\": 15.306122448979592, \"f(x)\": 16.469966922664366}, {\"x\": 16.3265306122449, \"f(x)\": 17.373774712845968}, {\"x\": 17.346938775510203, \"f(x)\": 18.27758250302757}, {\"x\": 18.367346938775512, \"f(x)\": 19.181390293209176}, {\"x\": 19.387755102040817, \"f(x)\": 20.08519808339078}, {\"x\": 20.408163265306122, \"f(x)\": 20.98900587357238}, {\"x\": 21.42857142857143, \"f(x)\": 21.892813663753987}, {\"x\": 22.448979591836736, \"f(x)\": 22.796621453935586}, {\"x\": 23.46938775510204, \"f(x)\": 23.70042924411719}, {\"x\": 24.48979591836735, \"f(x)\": 24.604237034298794}, {\"x\": 25.510204081632654, \"f(x)\": 25.508044824480397}, {\"x\": 26.53061224489796, \"f(x)\": 26.411852614662}, {\"x\": 27.551020408163264, \"f(x)\": 27.3156604048436}, {\"x\": 28.571428571428573, \"f(x)\": 28.219468195025208}, {\"x\": 29.591836734693878, \"f(x)\": 29.123275985206806}, {\"x\": 30.612244897959183, \"f(x)\": 30.02708377538841}, {\"x\": 31.63265306122449, \"f(x)\": 30.930891565570015}, {\"x\": 32.6530612244898, \"f(x)\": 31.834699355751617}, {\"x\": 33.673469387755105, \"f(x)\": 32.73850714593322}, {\"x\": 34.69387755102041, \"f(x)\": 33.64231493611482}, {\"x\": 35.714285714285715, \"f(x)\": 34.546122726296424}, {\"x\": 36.734693877551024, \"f(x)\": 35.44993051647803}, {\"x\": 37.755102040816325, \"f(x)\": 36.35373830665963}, {\"x\": 38.775510204081634, \"f(x)\": 37.25754609684123}, {\"x\": 39.79591836734694, \"f(x)\": 38.161353887022834}, {\"x\": 40.816326530612244, \"f(x)\": 39.065161677204436}, {\"x\": 41.83673469387755, \"f(x)\": 39.96896946738604}, {\"x\": 42.85714285714286, \"f(x)\": 40.87277725756765}, {\"x\": 43.87755102040816, \"f(x)\": 41.77658504774924}, {\"x\": 44.89795918367347, \"f(x)\": 42.680392837930846}, {\"x\": 45.91836734693878, \"f(x)\": 43.584200628112455}, {\"x\": 46.93877551020408, \"f(x)\": 44.48800841829405}, {\"x\": 47.95918367346939, \"f(x)\": 45.39181620847566}, {\"x\": 48.9795918367347, \"f(x)\": 46.29562399865726}, {\"x\": 50.0, \"f(x)\": 47.199431788838865}], \"data-39688cb487d0b1abc73cc8c7fbc2b36d\": [{\"x\": 0.0, \"f(x)\": 2.821594634448109}, {\"x\": 1.0204081632653061, \"f(x)\": 3.7279420007565824}, {\"x\": 2.0408163265306123, \"f(x)\": 4.634289367065056}, {\"x\": 3.0612244897959187, \"f(x)\": 5.54063673337353}, {\"x\": 4.081632653061225, \"f(x)\": 6.446984099682003}, {\"x\": 5.1020408163265305, \"f(x)\": 7.353331465990475}, {\"x\": 6.122448979591837, \"f(x)\": 8.25967883229895}, {\"x\": 7.142857142857143, \"f(x)\": 9.166026198607423}, {\"x\": 8.16326530612245, \"f(x)\": 10.072373564915896}, {\"x\": 9.183673469387756, \"f(x)\": 10.978720931224371}, {\"x\": 10.204081632653061, \"f(x)\": 11.885068297532843}, {\"x\": 11.224489795918368, \"f(x)\": 12.791415663841317}, {\"x\": 12.244897959183675, \"f(x)\": 13.697763030149792}, {\"x\": 13.26530612244898, \"f(x)\": 14.604110396458264}, {\"x\": 14.285714285714286, \"f(x)\": 15.510457762766737}, {\"x\": 15.306122448979592, \"f(x)\": 16.41680512907521}, {\"x\": 16.3265306122449, \"f(x)\": 17.323152495383685}, {\"x\": 17.346938775510203, \"f(x)\": 18.229499861692155}, {\"x\": 18.367346938775512, \"f(x)\": 19.13584722800063}, {\"x\": 19.387755102040817, \"f(x)\": 20.0421945943091}, {\"x\": 20.408163265306122, \"f(x)\": 20.948541960617575}, {\"x\": 21.42857142857143, \"f(x)\": 21.854889326926052}, {\"x\": 22.448979591836736, \"f(x)\": 22.761236693234522}, {\"x\": 23.46938775510204, \"f(x)\": 23.667584059542996}, {\"x\": 24.48979591836735, \"f(x)\": 24.573931425851473}, {\"x\": 25.510204081632654, \"f(x)\": 25.480278792159943}, {\"x\": 26.53061224489796, \"f(x)\": 26.386626158468417}, {\"x\": 27.551020408163264, \"f(x)\": 27.29297352477689}, {\"x\": 28.571428571428573, \"f(x)\": 28.199320891085364}, {\"x\": 29.591836734693878, \"f(x)\": 29.105668257393837}, {\"x\": 30.612244897959183, \"f(x)\": 30.01201562370231}, {\"x\": 31.63265306122449, \"f(x)\": 30.918362990010785}, {\"x\": 32.6530612244898, \"f(x)\": 31.824710356319258}, {\"x\": 33.673469387755105, \"f(x)\": 32.73105772262774}, {\"x\": 34.69387755102041, \"f(x)\": 33.637405088936205}, {\"x\": 35.714285714285715, \"f(x)\": 34.54375245524468}, {\"x\": 36.734693877551024, \"f(x)\": 35.45009982155316}, {\"x\": 37.755102040816325, \"f(x)\": 36.356447187861626}, {\"x\": 38.775510204081634, \"f(x)\": 37.2627945541701}, {\"x\": 39.79591836734694, \"f(x)\": 38.16914192047858}, {\"x\": 40.816326530612244, \"f(x)\": 39.07548928678705}, {\"x\": 41.83673469387755, \"f(x)\": 39.98183665309552}, {\"x\": 42.85714285714286, \"f(x)\": 40.888184019404}, {\"x\": 43.87755102040816, \"f(x)\": 41.79453138571247}, {\"x\": 44.89795918367347, \"f(x)\": 42.70087875202094}, {\"x\": 45.91836734693878, \"f(x)\": 43.60722611832942}, {\"x\": 46.93877551020408, \"f(x)\": 44.51357348463789}, {\"x\": 47.95918367346939, \"f(x)\": 45.41992085094636}, {\"x\": 48.9795918367347, \"f(x)\": 46.32626821725484}, {\"x\": 50.0, \"f(x)\": 47.23261558356331}], \"data-fcd3a6abfdbf0e82d4b01fc7255fe707\": [{\"x\": 0.0, \"f(x)\": 2.8754791019208183}, {\"x\": 1.0204081632653061, \"f(x)\": 3.780757331969913}, {\"x\": 2.0408163265306123, \"f(x)\": 4.686035562019007}, {\"x\": 3.0612244897959187, \"f(x)\": 5.591313792068101}, {\"x\": 4.081632653061225, \"f(x)\": 6.496592022117196}, {\"x\": 5.1020408163265305, \"f(x)\": 7.40187025216629}, {\"x\": 6.122448979591837, \"f(x)\": 8.307148482215386}, {\"x\": 7.142857142857143, \"f(x)\": 9.21242671226448}, {\"x\": 8.16326530612245, \"f(x)\": 10.117704942313573}, {\"x\": 9.183673469387756, \"f(x)\": 11.022983172362668}, {\"x\": 10.204081632653061, \"f(x)\": 11.928261402411762}, {\"x\": 11.224489795918368, \"f(x)\": 12.833539632460857}, {\"x\": 12.244897959183675, \"f(x)\": 13.738817862509952}, {\"x\": 13.26530612244898, \"f(x)\": 14.644096092559046}, {\"x\": 14.285714285714286, \"f(x)\": 15.54937432260814}, {\"x\": 15.306122448979592, \"f(x)\": 16.454652552657233}, {\"x\": 16.3265306122449, \"f(x)\": 17.35993078270633}, {\"x\": 17.346938775510203, \"f(x)\": 18.26520901275542}, {\"x\": 18.367346938775512, \"f(x)\": 19.170487242804516}, {\"x\": 19.387755102040817, \"f(x)\": 20.07576547285361}, {\"x\": 20.408163265306122, \"f(x)\": 20.981043702902703}, {\"x\": 21.42857142857143, \"f(x)\": 21.8863219329518}, {\"x\": 22.448979591836736, \"f(x)\": 22.791600163000894}, {\"x\": 23.46938775510204, \"f(x)\": 23.696878393049985}, {\"x\": 24.48979591836735, \"f(x)\": 24.602156623099084}, {\"x\": 25.510204081632654, \"f(x)\": 25.507434853148176}, {\"x\": 26.53061224489796, \"f(x)\": 26.41271308319727}, {\"x\": 27.551020408163264, \"f(x)\": 27.317991313246363}, {\"x\": 28.571428571428573, \"f(x)\": 28.22326954329546}, {\"x\": 29.591836734693878, \"f(x)\": 29.128547773344554}, {\"x\": 30.612244897959183, \"f(x)\": 30.033826003393646}, {\"x\": 31.63265306122449, \"f(x)\": 30.939104233442745}, {\"x\": 32.6530612244898, \"f(x)\": 31.844382463491836}, {\"x\": 33.673469387755105, \"f(x)\": 32.74966069354093}, {\"x\": 34.69387755102041, \"f(x)\": 33.654938923590024}, {\"x\": 35.714285714285715, \"f(x)\": 34.56021715363912}, {\"x\": 36.734693877551024, \"f(x)\": 35.465495383688214}, {\"x\": 37.755102040816325, \"f(x)\": 36.370773613737306}, {\"x\": 38.775510204081634, \"f(x)\": 37.276051843786405}, {\"x\": 39.79591836734694, \"f(x)\": 38.1813300738355}, {\"x\": 40.816326530612244, \"f(x)\": 39.08660830388459}, {\"x\": 41.83673469387755, \"f(x)\": 39.99188653393369}, {\"x\": 42.85714285714286, \"f(x)\": 40.897164763982786}, {\"x\": 43.87755102040816, \"f(x)\": 41.80244299403187}, {\"x\": 44.89795918367347, \"f(x)\": 42.70772122408097}, {\"x\": 45.91836734693878, \"f(x)\": 43.61299945413007}, {\"x\": 46.93877551020408, \"f(x)\": 44.518277684179154}, {\"x\": 47.95918367346939, \"f(x)\": 45.42355591422825}, {\"x\": 48.9795918367347, \"f(x)\": 46.32883414427735}, {\"x\": 50.0, \"f(x)\": 47.23411237432644}]}}, {\"mode\": \"vega-lite\"});\n",
-       "</script>"
-      ],
-      "text/plain": [
-       "alt.LayerChart(...)"
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "# Imports\n",
-    "import os\n",
-    "import pandas as pd\n",
-    "import numpy as np\n",
-    "import altair as alt\n",
-    "alt.renderers.enable('default')\n",
-    "#alt.renderers.enable('notebook')\n",
-    "\n",
-    "# Colors\n",
-    "rwthcolors= {'blau' : '#00549F',\n",
-    "             'schwarz' : '#000000',\n",
-    "             'magenta' : '#E30066',\n",
-    "             'gelb' : '#FFED00',\n",
-    "             'petrol' : '#006165',\n",
-    "             'türkis' : '#0098A1',\n",
-    "             'grün' : '#57AB27',\n",
-    "             'maigrün' : '#BDCD00',\n",
-    "             'orange' : '#F6A800',\n",
-    "             'rot' : '#CC071E',\n",
-    "             'bordeaux' : '#A11035',\n",
-    "             'violett' : '#612158',\n",
-    "             'lila' : '#7A6FAC',\n",
-    "            }\n",
-    "colorlist = [rwthcolors['blau'],\n",
-    "             rwthcolors['türkis'],\n",
-    "             rwthcolors['grün'],\n",
-    "             rwthcolors['orange'],\n",
-    "             rwthcolors['violett'],\n",
-    "            ]\n",
-    "\n",
-    "\n",
-    "# Class Definitions\n",
-    "class LinearRegressionFitting:\n",
-    "    def __init__(self, PandaDataFrame):\n",
-    "        self.input = PandaDataFrame\n",
-    "        self.x = PandaDataFrame.to_numpy()[:, 0]\n",
-    "        self.y = PandaDataFrame.to_numpy()[:, 1]\n",
-    "\n",
-    "        # https://numpy.org/doc/stable/reference/generated/numpy.polyfit.html\n",
-    "        [self.slope, self.intercept], self.residuals, *self.diagnostics = np.polyfit(self.x, self.y, 1, full = True)\n",
-    "        \n",
-    "        # model = expression of polynom from polyfit, here basicly\n",
-    "        # y = model(x) <=> same as writing  y = slope * x + intercept\n",
-    "        self.model = np.poly1d([self.slope, self.intercept])\n",
-    "        \n",
-    "        # Bestimmtheitsmaß / Coefficient of determination / R²\n",
-    "        #  1 - ( residual sum of squares / SUM( (yi - y_mean)² ) )\n",
-    "        self.R2 = 1 - (self.residuals[0] /\n",
-    "                       np.sum( pow( self.y - np.average( self.y ), 2) )\n",
-    "                      )\n",
-    "        \n",
-    "        self.df = pd.DataFrame({'x': self.x,'f(x)': self.model(self.x)})\n",
-    "        self.chart = alt.Chart(self.df).mark_line().encode(x=\"x\", y='f(x)')\n",
-    "\n",
-    "#testx = np.linspace(1,100, num = 101)\n",
-    "#TEST = pd.DataFrame({'x': testx,'f(x)': pow(testx,2)} )\n",
-    "#TEST = pd.DataFrame({'x': testx,'f(x)': np.sin(testx) } )\n",
-    "#fitting = LinearRegressionFitting(TEST).chart\n",
-    "#display(alt.Chart(TEST).mark_point().encode(x=\"x\", y='f(x)') + fitting)\n",
-    "\n",
-    "class RT_Evaluation(LinearRegressionFitting):\n",
-    "    def __init__(self, PandaDataFrame, contactlenght):\n",
-    "        super().__init__(PandaDataFrame) \n",
-    "        #self.input\n",
-    "        #self.x\n",
-    "        #self.y\n",
-    "        #self.slope\n",
-    "        #self.intercept\n",
-    "        #self.residuals\n",
-    "        #self.diagnostics\n",
-    "        #self.model\n",
-    "        #self.R2\n",
-    "        #self.df\n",
-    "        model_df_x = np.linspace(0, self.x[-1])\n",
-    "        self.df = pd.DataFrame({'x': model_df_x,'f(x)': self.model(model_df_x)})\n",
-    "        #self.chart\n",
-    "        self.chart = alt.Chart(self.df).mark_line().encode(x=\"x\", y='f(x)')\n",
-    "        \n",
-    "        self.contactlenght = contactlenght\n",
-    "\n",
-    "        # Kontaktwiderstand Rc [Ohm*mm]\n",
-    "        # = RT(d=0)/2 [Ohm] * Contactlenght [µm/1000] \n",
-    "        self.Rc = (self.intercept/2) * (contactlenght/1000)\n",
-    "\n",
-    "        # Schichtwiderstand [Ohm/sq = Ohm]\n",
-    "        # = slope [Ohm/µm] * Contactlenght [µm]\n",
-    "        self.Rsh = self.slope * contactlenght\n",
-    "\n",
-    "        # Transferlänge LT [mm] RT(d) = 0\n",
-    "        # = slope [Ohm/µm] / RT(d=0) [Ohm] / 1000\n",
-    "        #self.LT = self.intercept / self.slope / 1000\n",
-    "\n",
-    "        # Transferlänge LT [µm] RT(d) = 0\n",
-    "        # = slope [Ohm/µm] / RT(d=0) [Ohm]\n",
-    "        self.LT = self.intercept / self.slope / 2\n",
-    "        \n",
-    "        # LT = sqrt(rhoc/Rsh).\n",
-    "        # \"Semiconductor Material and Device Characterization Third Edition\",\n",
-    "        # D. Schroder, p. 140, Eq. 3.21 \n",
-    "        # Spezifischer Kontaktwiderstand rhoc = LT² * Rsh\n",
-    "        # = Ohm cm² | µm²*0.00000001 = cm²\n",
-    "        self.rhoc = self.LT*self.LT * self.Rsh * 1E-4 * 1E-4\n",
-    "\n",
-    "        \n",
-    "import datetime\n",
-    "class CtlmMeasurement(object):\n",
-    "    def __init__(self, filelist, distances = (5, 10, 15, 25, 45), inner_radius = 55):\n",
-    "        \"\"\"filelist as tuple\n",
-    "        distances as tuple ## Abstände der TLM in µm\n",
-    "        contactlenght # Kontaktweite der TLM Strukturen in µm \n",
-    "        \"\"\"\n",
-    "        self._creation_date = datetime.datetime.now()\n",
-    "        self.filelist = filelist\n",
-    "        self.path, self.files = self.importfiles(filelist)\n",
-    "        self.distances = distances\n",
-    "        self.inner_radius = inner_radius\n",
-    "        self.inner_circumference = 2*np.pi*self.inner_radius\n",
-    "        # \"Semiconductor Material and Device Characterization Third Edition\",\n",
-    "        # D. Schroder, p. 144, Eq. 3.31\n",
-    "        self.correction_factor = []\n",
-    "        for i in range(len(self.distances)):\n",
-    "            self.correction_factor.append((self.inner_radius / self.distances[i]) *\n",
-    "                                          np.log(1 + self.distances[i] / self.inner_radius) )\n",
-    "        #print(self.correction_factor)\n",
-    "        self.df = self.construct_dataframes(self.filelist)\n",
-    "        #self.df_org = self.df\n",
-    "        self.R, self.lin_reg_charts, self.R_statistics = self.R_from_lin_reg()\n",
-    "        self.RT0 = pd.DataFrame({'d/µm':self.distances, 'R_T/Ohm':self.R})\n",
-    "        \n",
-    "        self.eval0 = RT_Evaluation(self.RT0, self.inner_circumference)\n",
-    "        self.eval1, self.eval2 = self.find_RT1_RT2()\n",
-    "        self.refined = False\n",
-    "        \n",
-    "    def importfiles(self, filelist):\n",
-    "        if not len(filelist) == 5:\n",
-    "            raise Exception(\"Files Missing - I need 5 files for TLM or CTLM\")\n",
-    "        filenames = []\n",
-    "        name = \"\"\n",
-    "        measurement = []\n",
-    "        for i in range(len(filelist)):\n",
-    "            filenames.append(os.path.split(filelist[i])[1])\n",
-    "            name, end = filenames[i].rsplit(sep=\"_\",maxsplit=1)\n",
-    "            #print(name, \"_\", end)\n",
-    "            if i == 0:\n",
-    "                firstname = name\n",
-    "            elif not name == firstname:\n",
-    "                print(\"Files:\", filenames)\n",
-    "                raise Exception(\"Filenames differ\")\n",
-    "            measurement.append(end.split(sep=\".\")[0])\n",
-    "            #print(measurement)\n",
-    "            #print(i, len(files)-1)\n",
-    "            if (i == len(filelist)-1)  and (not measurement == ['1', '2', '3', '4', '5']):\n",
-    "                print(\"Files:\", filenames)\n",
-    "                raise Exception(\"Not Measurement _1 to _5?\")\n",
-    "        path = os.path.split(filelist[0])[0]\n",
-    "        return (path, filenames)\n",
-    "    \n",
-    "    def construct_dataframes(self, filelist = None):\n",
-    "        if filelist is None:\n",
-    "            filelist = self.filelist\n",
-    "        df = []\n",
-    "        for i in range(len(filelist)):\n",
-    "            df.append(pd.read_csv(filelist[i], sep=\" \", skip_blank_lines=True, header=3, index_col=0, usecols=[0,1,2,3], names=[\"#\",\"U/V\",\"I/A\",\"R/Ohm\"]))\n",
-    "        return df\n",
-    "    \n",
-    "    def construct_ui_charts(self, PandaDataFrames = None):\n",
-    "        if PandaDataFrames is None:\n",
-    "            PandaDataFrames = self.df\n",
-    "        uicharts = []\n",
-    "        for i in range(len(PandaDataFrames)):\n",
-    "            uicharts.append( alt.Chart(self.df[i]).mark_point(color=colorlist[i]).encode(x=\"U/V\", y=\"I/A\").interactive() )\n",
-    "        return uicharts\n",
-    "    \n",
-    "    def R_from_lin_reg(self, PandaDataFrames = None):\n",
-    "        if PandaDataFrames is None:\n",
-    "            PandaDataFrames = self.df\n",
-    "        lin_reg_results = [] # R\n",
-    "        lin_reg_charts = []\n",
-    "        statistics_string = f\"Statistics for Fitting of R Values \\n    d / µm | R²     | RT / Ohm   | C-Values\"\n",
-    "        #print(f\"Statistics for Fitting of R Values \\n {'d / µm' : >9} | {'R²' : <6} | RT / Ohm \")\n",
-    "        for i in range(len(PandaDataFrames)):\n",
-    "            fit = LinearRegressionFitting(PandaDataFrames[i])\n",
-    "            lin_reg_results.append( 1 / (fit.slope * self.correction_factor[i]) ) \n",
-    "            lin_reg_charts.append( alt.Chart(fit.df).mark_line(color=colorlist[i]).encode(x=\"x\", y='f(x)') )\n",
-    "            #print(f\"{self.distances[i] : 10d} | {fit.R2 : >5.4f} | {lin_reg_results[i] : 10.4f}\")\n",
-    "            statistics_string += \"\\n\" + f\"{self.distances[i] : 10d} | {fit.R2 : >5.4f} | {lin_reg_results[i] : 10.4f} |{self.correction_factor[i] : .4f}\"\n",
-    "            #print(statistics_string)\n",
-    "        return lin_reg_results, lin_reg_charts, statistics_string\n",
-    "    \n",
-    "    def contruct_lin_reg_fit_charts(self):\n",
-    "        return self.lin_reg_charts \n",
-    "\n",
-    "    def find_RT1_RT2(self, R = None):\n",
-    "        if R is None:\n",
-    "            R = self.RT0\n",
-    "\n",
-    "        # Remove One Measurement\n",
-    "        # Find maximal Bestimmtheitsmaß / Coefficient of determination / R²\n",
-    "        save_RT1 = None\n",
-    "        max = 0\n",
-    "        for i in range(len(R)):\n",
-    "            Ri = R.drop(labels=i, axis=0)\n",
-    "            evali = RT_Evaluation(Ri, self.inner_circumference)\n",
-    "            if evali.R2 >= max:\n",
-    "                max = evali.R2\n",
-    "                save_RT1 = evali\n",
-    "\n",
-    "        # Remove Two Measurements\n",
-    "        list_of_rows_to_remove = [[0,1],\n",
-    "                                  [0,2],\n",
-    "                                  [0,3],\n",
-    "                                  [0,4],\n",
-    "                                  [1,2],\n",
-    "                                  [1,3],\n",
-    "                                  [1,4],\n",
-    "                                  [2,3],\n",
-    "                                  [2,4],\n",
-    "                                  [3,4],\n",
-    "                                 ]\n",
-    "        save_RT2 = None\n",
-    "        max = 0\n",
-    "        for rows in list_of_rows_to_remove:\n",
-    "            Ri = R.drop(labels=rows, axis=0)\n",
-    "            evali = RT_Evaluation(Ri, self.inner_circumference)\n",
-    "            if evali.R2 >= max:\n",
-    "                max = evali.R2\n",
-    "                save_RT2 = evali\n",
-    "        \n",
-    "        return save_RT1, save_RT2\n",
-    "\n",
-    "    def refine_evaluated_range(self, newrange = None):\n",
-    "        if not type(newrange) is tuple:\n",
-    "            raise Exception(\"Wrong format for Newrange! Should be tuple (float, float)\")\n",
-    "        if not len(newrange) == 2:\n",
-    "            raise Exception(\"Two few or many values in newrange! Should be tuple (float, float)\")\n",
-    "        minI, maxI = newrange\n",
-    "        refined_df = self.df\n",
-    "        for i in range(len(refined_df)):\n",
-    "            # First vector where values for I/A are bigger than min and smaller than max = True\n",
-    "            # (dataframe.iloc[:,1] > min) & (dataframe.iloc[:,1] < max )\n",
-    "            # then this boolean vector is used as indexer for the dame dataframe\n",
-    "            # every value with False is sliced\n",
-    "            work = refined_df[i]\n",
-    "            #print(work)\n",
-    "            #print((dataframe.iloc[:,1] > minI) & (dataframe.iloc[:,1] < maxI ))\n",
-    "            work = work [ (work.iloc[:,1] > minI) & (work.iloc[:,1] < maxI ) ]\n",
-    "            #print(work)\n",
-    "            refined_df[i] = work\n",
-    "        self.df = refined_df\n",
-    "        self.R, self.lin_reg_charts, statistics_string = self.R_from_lin_reg()\n",
-    "        self.RT0 = pd.DataFrame({'d/µm':self.distances, 'R_T/Ohm':self.R})\n",
-    "        self.eval0 = RT_Evaluation(self.RT0, self.inner_circumference)\n",
-    "        self.eval1, self.eval2 = self.find_RT1_RT2()\n",
-    "        self.refined = True\n",
-    "\n",
-    "\n",
-    "ctlm = CtlmMeasurement(fileselect.files, distance, innen) #, contactlenght)\n",
-    "\n",
-    "print(ctlm.R_statistics)\n",
-    "\n",
-    "display(alt.layer(*ctlm.construct_ui_charts(), *ctlm.contruct_lin_reg_fit_charts()))\n",
-    "\n",
-    "CTLM = alt.Chart(ctlm.RT0).mark_point(color=rwthcolors['blau']).encode(x='d/µm', y='R_T/Ohm').interactive()\n",
-    "CTLM_RT0_fit = alt.Chart(ctlm.eval0.df).mark_line(color=rwthcolors['bordeaux']).encode(x='x', y='f(x)')\n",
-    "CTLM_RT1_fit = alt.Chart(ctlm.eval1.df).mark_line(color=rwthcolors['violett']).encode(x='x', y='f(x)')\n",
-    "CTLM_RT2_fit = alt.Chart(ctlm.eval2.df).mark_line(color=rwthcolors['lila']).encode(x='x', y='f(x)')\n",
-    "\n",
-    "print(\"Path:\\n\", ctlm.path, \"\\n\", sep = \"\")\n",
-    "print(\"Files: {}, {}, {}, {}, {} \\n\".format(*ctlm.files))\n",
-    "#header = \"Feld Rsh      R²     Rc       LT     rhoc      min I max I # removed values\"\n",
-    "header = \"Feld Rsh      R²     Rc       LT     rhoc      # removed values\"\n",
-    "#units =  \"-    [Ohm/sq] -      [Ohm mm] [µm]   [Ohm cm²] [A]   [A]   -\"\n",
-    "units =  \"-    [Ohm/sq] -      [Ohm mm] [µm]   [Ohm cm²] -\"\n",
-    "format_string = \"{:<4}{:7.2f} {:8.4f} {:6.2f} {:8.2f} {:8.2e} {}\"\n",
-    "line0 =  format_string.format(ctlm.files[0].rsplit(\"_\")[0],\n",
-    "                              ctlm.eval0.Rsh,\n",
-    "                              ctlm.eval0.R2,\n",
-    "                              ctlm.eval0.Rc,\n",
-    "                              ctlm.eval0.LT,\n",
-    "                              ctlm.eval0.rhoc,\n",
-    "                              #minI,\n",
-    "                              #maxI,\n",
-    "                              None,\n",
-    "                             )\n",
-    "line1 =  format_string.format(ctlm.files[0].rsplit(\"_\")[0],\n",
-    "                                ctlm.eval1.Rsh,\n",
-    "                                ctlm.eval1.R2,\n",
-    "                                ctlm.eval1.Rc,\n",
-    "                                ctlm.eval1.LT,\n",
-    "                                ctlm.eval1.rhoc,\n",
-    "                                #minI,\n",
-    "                                #maxI,\n",
-    "                                1,\n",
-    "                               )\n",
-    "line2 =  format_string.format(ctlm.files[0].rsplit(\"_\")[0],\n",
-    "                            ctlm.eval2.Rsh,\n",
-    "                            ctlm.eval2.R2,\n",
-    "                            ctlm.eval2.Rc,\n",
-    "                            ctlm.eval2.LT,\n",
-    "                            ctlm.eval2.rhoc,\n",
-    "                            #minI,\n",
-    "                            #maxI,\n",
-    "                            2,\n",
-    "                           )\n",
-    "\n",
-    "\n",
-    "print(header)\n",
-    "print(units)\n",
-    "print(line0)\n",
-    "print(line1)\n",
-    "print(line2)\n",
-    "\n",
-    "display(alt.layer(CTLM, CTLM_RT0_fit, CTLM_RT1_fit, CTLM_RT2_fit))\n"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 21,
-   "id": "95b33cd6",
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Statistics for Fitting of R Values \n",
-      "    d / µm | R²     | RT / Ohm   | C-Values\n",
-      "         5 | 1.0000 |     7.4701 | 0.9571\n",
-      "        10 | 1.0000 |    11.7377 | 0.9188\n",
-      "        15 | 1.0000 |    16.0671 | 0.8843\n",
-      "        20 | 1.0000 |    20.6316 | 0.8529\n",
-      "        50 | 0.9999 |    47.2309 | 0.7113\n"
-     ]
-    },
-    {
-     "data": {
-      "text/html": [
-       "\n",
-       "<div id=\"altair-viz-6613842733864383a5e4bec906b1267a\"></div>\n",
-       "<script type=\"text/javascript\">\n",
-       "  var VEGA_DEBUG = (typeof VEGA_DEBUG == \"undefined\") ? {} : VEGA_DEBUG;\n",
-       "  (function(spec, embedOpt){\n",
-       "    let outputDiv = document.currentScript.previousElementSibling;\n",
-       "    if (outputDiv.id !== \"altair-viz-6613842733864383a5e4bec906b1267a\") {\n",
-       "      outputDiv = document.getElementById(\"altair-viz-6613842733864383a5e4bec906b1267a\");\n",
-       "    }\n",
-       "    const paths = {\n",
-       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
-       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
-       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.17.0?noext\",\n",
-       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
-       "    };\n",
-       "\n",
-       "    function maybeLoadScript(lib, version) {\n",
-       "      var key = `${lib.replace(\"-\", \"\")}_version`;\n",
-       "      return (VEGA_DEBUG[key] == version) ?\n",
-       "        Promise.resolve(paths[lib]) :\n",
-       "        new Promise(function(resolve, reject) {\n",
-       "          var s = document.createElement('script');\n",
-       "          document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
-       "          s.async = true;\n",
-       "          s.onload = () => {\n",
-       "            VEGA_DEBUG[key] = version;\n",
-       "            return resolve(paths[lib]);\n",
-       "          };\n",
-       "          s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
-       "          s.src = paths[lib];\n",
-       "        });\n",
-       "    }\n",
-       "\n",
-       "    function showError(err) {\n",
-       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
-       "      throw err;\n",
-       "    }\n",
-       "\n",
-       "    function displayChart(vegaEmbed) {\n",
-       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
-       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
-       "    }\n",
-       "\n",
-       "    if(typeof define === \"function\" && define.amd) {\n",
-       "      requirejs.config({paths});\n",
-       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
-       "    } else {\n",
-       "      maybeLoadScript(\"vega\", \"5\")\n",
-       "        .then(() => maybeLoadScript(\"vega-lite\", \"4.17.0\"))\n",
-       "        .then(() => maybeLoadScript(\"vega-embed\", \"6\"))\n",
-       "        .catch(showError)\n",
-       "        .then(() => displayChart(vegaEmbed));\n",
-       "    }\n",
-       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"layer\": [{\"data\": {\"name\": \"data-58b95cb924d800490b992b4392836a3d\"}, \"mark\": {\"type\": \"point\", \"color\": \"#00549F\"}, \"encoding\": {\"x\": {\"field\": \"U/V\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"I/A\", \"type\": \"quantitative\"}}, \"selection\": {\"selector115\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-9a7fd7e8b9abbb39d31b00059a96727b\"}, \"mark\": {\"type\": \"point\", \"color\": \"#0098A1\"}, \"encoding\": {\"x\": {\"field\": \"U/V\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"I/A\", \"type\": \"quantitative\"}}, \"selection\": {\"selector116\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-6a81f1685cd53432e13104834cce64ed\"}, \"mark\": {\"type\": \"point\", \"color\": \"#57AB27\"}, \"encoding\": {\"x\": {\"field\": \"U/V\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"I/A\", \"type\": \"quantitative\"}}, \"selection\": {\"selector117\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-8d4e55ca921efd79295f52d7d38001b1\"}, \"mark\": {\"type\": \"point\", \"color\": \"#F6A800\"}, \"encoding\": {\"x\": {\"field\": \"U/V\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"I/A\", \"type\": \"quantitative\"}}, \"selection\": {\"selector118\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-c5b517933f5d0e6dfce1035747d0fbce\"}, \"mark\": {\"type\": \"point\", \"color\": \"#612158\"}, \"encoding\": {\"x\": {\"field\": \"U/V\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"I/A\", \"type\": \"quantitative\"}}, \"selection\": {\"selector119\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-b76bfbf54371cf447e7d2cca581648a0\"}, \"mark\": {\"type\": \"line\", \"color\": \"#00549F\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-3f9cafe5620d12733d9293fea34f81c3\"}, \"mark\": {\"type\": \"line\", \"color\": \"#0098A1\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-c0981575c98a2c98a48be59d2a4f534d\"}, \"mark\": {\"type\": \"line\", \"color\": \"#57AB27\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-9075e7599f546144ece5e1764f93626b\"}, \"mark\": {\"type\": \"line\", \"color\": \"#F6A800\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-58c7721a5b1f21a60f4593ac0ad6ee49\"}, \"mark\": {\"type\": \"line\", \"color\": \"#612158\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}], \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.17.0.json\", \"datasets\": {\"data-58b95cb924d800490b992b4392836a3d\": [{\"U/V\": -0.206536, \"I/A\": -0.029, \"R/Ohm\": 7.121931}, {\"U/V\": -0.199446, \"I/A\": -0.028, \"R/Ohm\": 7.123071}, {\"U/V\": -0.192246, \"I/A\": -0.027, \"R/Ohm\": 7.120222}, {\"U/V\": -0.185142, \"I/A\": -0.026, \"R/Ohm\": 7.120846}, {\"U/V\": -0.177842, \"I/A\": -0.025, \"R/Ohm\": 7.11368}, {\"U/V\": -0.170794, \"I/A\": -0.024, \"R/Ohm\": 7.116417}, {\"U/V\": -0.16354, \"I/A\": -0.023, \"R/Ohm\": 7.110435}, {\"U/V\": -0.156468, \"I/A\": -0.022, \"R/Ohm\": 7.112182}, {\"U/V\": -0.149268, \"I/A\": -0.021, \"R/Ohm\": 7.108}, {\"U/V\": -0.142174, \"I/A\": -0.02, \"R/Ohm\": 7.1087}, {\"U/V\": -0.134934, \"I/A\": -0.019, \"R/Ohm\": 7.101789}, {\"U/V\": -0.127936, \"I/A\": -0.018, \"R/Ohm\": 7.107556}, {\"U/V\": -0.120728, \"I/A\": -0.017, \"R/Ohm\": 7.101647}, {\"U/V\": -0.11363, \"I/A\": -0.016, \"R/Ohm\": 7.101875}, {\"U/V\": -0.106502, \"I/A\": -0.015, \"R/Ohm\": 7.100133}, {\"U/V\": -0.0994, \"I/A\": -0.014, \"R/Ohm\": 7.1}, {\"U/V\": -0.092232, \"I/A\": -0.013, \"R/Ohm\": 7.094769}, {\"U/V\": -0.085188, \"I/A\": -0.012, \"R/Ohm\": 7.099}, {\"U/V\": -0.078044, \"I/A\": -0.011, \"R/Ohm\": 7.094909}, {\"U/V\": -0.070998, \"I/A\": -0.01, \"R/Ohm\": 7.0998}, {\"U/V\": -0.063836, \"I/A\": -0.009, \"R/Ohm\": 7.092889}, {\"U/V\": -0.056742, \"I/A\": -0.008, \"R/Ohm\": 7.09275}, {\"U/V\": -0.049654, \"I/A\": -0.007, \"R/Ohm\": 7.093429}, {\"U/V\": -0.042552, \"I/A\": -0.006, \"R/Ohm\": 7.092}, {\"U/V\": -0.035412, \"I/A\": -0.005, \"R/Ohm\": 7.0824}, {\"U/V\": -0.02837, \"I/A\": -0.004, \"R/Ohm\": 7.0925}, {\"U/V\": -0.02125, \"I/A\": -0.003, \"R/Ohm\": 7.083333}, {\"U/V\": -0.014142, \"I/A\": -0.002, \"R/Ohm\": 7.071}, {\"U/V\": -0.007084, \"I/A\": -0.001, \"R/Ohm\": 7.084}, {\"U/V\": 3.2e-05, \"I/A\": 0.0, \"R/Ohm\": null}, {\"U/V\": 0.007144, \"I/A\": 0.001, \"R/Ohm\": 7.144}, {\"U/V\": 0.014198, \"I/A\": 0.002, \"R/Ohm\": 7.099}, {\"U/V\": 0.021298, \"I/A\": 0.003, \"R/Ohm\": 7.099333}, {\"U/V\": 0.028422, \"I/A\": 0.004, \"R/Ohm\": 7.1055}, {\"U/V\": 0.035454, \"I/A\": 0.005, \"R/Ohm\": 7.0908}, {\"U/V\": 0.042588, \"I/A\": 0.006, \"R/Ohm\": 7.098}, {\"U/V\": 0.04972, \"I/A\": 0.007, \"R/Ohm\": 7.102857}, {\"U/V\": 0.056822, \"I/A\": 0.008, \"R/Ohm\": 7.10275}, {\"U/V\": 0.06388, \"I/A\": 0.009, \"R/Ohm\": 7.097778}, {\"U/V\": 0.071014, \"I/A\": 0.01, \"R/Ohm\": 7.1014}, {\"U/V\": 0.07812, \"I/A\": 0.011, \"R/Ohm\": 7.101818}, {\"U/V\": 0.085178, \"I/A\": 0.012, \"R/Ohm\": 7.098167}, {\"U/V\": 0.092302, \"I/A\": 0.013, \"R/Ohm\": 7.100154}, {\"U/V\": 0.099428, \"I/A\": 0.014, \"R/Ohm\": 7.102}, {\"U/V\": 0.106504, \"I/A\": 0.015, \"R/Ohm\": 7.100267}, {\"U/V\": 0.113654, \"I/A\": 0.016, \"R/Ohm\": 7.103375}, {\"U/V\": 0.120778, \"I/A\": 0.017, \"R/Ohm\": 7.104588}, {\"U/V\": 0.12797, \"I/A\": 0.018, \"R/Ohm\": 7.109444}, {\"U/V\": 0.13499, \"I/A\": 0.019, \"R/Ohm\": 7.104737}, {\"U/V\": 0.14219, \"I/A\": 0.02, \"R/Ohm\": 7.1095}, {\"U/V\": 0.14933, \"I/A\": 0.021, \"R/Ohm\": 7.110952}, {\"U/V\": 0.156414, \"I/A\": 0.022, \"R/Ohm\": 7.109727}, {\"U/V\": 0.163626, \"I/A\": 0.023, \"R/Ohm\": 7.114174}, {\"U/V\": 0.170728, \"I/A\": 0.024, \"R/Ohm\": 7.113667}, {\"U/V\": 0.177874, \"I/A\": 0.025, \"R/Ohm\": 7.11496}, {\"U/V\": 0.185046, \"I/A\": 0.026, \"R/Ohm\": 7.117154}, {\"U/V\": 0.192194, \"I/A\": 0.027, \"R/Ohm\": 7.118296}, {\"U/V\": 0.19945, \"I/A\": 0.028, \"R/Ohm\": 7.123214}, {\"U/V\": 0.206528, \"I/A\": 0.029, \"R/Ohm\": 7.121655}], \"data-9a7fd7e8b9abbb39d31b00059a96727b\": [{\"U/V\": -0.311402, \"I/A\": -0.029, \"R/Ohm\": 10.738}, {\"U/V\": -0.30042, \"I/A\": -0.028, \"R/Ohm\": 10.729286}, {\"U/V\": -0.289626, \"I/A\": -0.027, \"R/Ohm\": 10.726889}, {\"U/V\": -0.278732, \"I/A\": -0.026, \"R/Ohm\": 10.720462}, {\"U/V\": -0.267864, \"I/A\": -0.025, \"R/Ohm\": 10.71456}, {\"U/V\": -0.257134, \"I/A\": -0.024, \"R/Ohm\": 10.713917}, {\"U/V\": -0.246268, \"I/A\": -0.023, \"R/Ohm\": 10.707304}, {\"U/V\": -0.235454, \"I/A\": -0.022, \"R/Ohm\": 10.702455}, {\"U/V\": -0.224752, \"I/A\": -0.021, \"R/Ohm\": 10.702476}, {\"U/V\": -0.213932, \"I/A\": -0.02, \"R/Ohm\": 10.6966}, {\"U/V\": -0.20313, \"I/A\": -0.019, \"R/Ohm\": 10.691053}, {\"U/V\": -0.19246, \"I/A\": -0.018, \"R/Ohm\": 10.692222}, {\"U/V\": -0.181672, \"I/A\": -0.017, \"R/Ohm\": 10.686588}, {\"U/V\": -0.170902, \"I/A\": -0.016, \"R/Ohm\": 10.681375}, {\"U/V\": -0.160264, \"I/A\": -0.015, \"R/Ohm\": 10.684267}, {\"U/V\": -0.149488, \"I/A\": -0.014, \"R/Ohm\": 10.677714}, {\"U/V\": -0.138772, \"I/A\": -0.013, \"R/Ohm\": 10.674769}, {\"U/V\": -0.128096, \"I/A\": -0.012, \"R/Ohm\": 10.674667}, {\"U/V\": -0.117392, \"I/A\": -0.011, \"R/Ohm\": 10.672}, {\"U/V\": -0.106764, \"I/A\": -0.01, \"R/Ohm\": 10.6764}, {\"U/V\": -0.096038, \"I/A\": -0.009, \"R/Ohm\": 10.670889}, {\"U/V\": -0.085316, \"I/A\": -0.008, \"R/Ohm\": 10.6645}, {\"U/V\": -0.074692, \"I/A\": -0.007, \"R/Ohm\": 10.670286}, {\"U/V\": -0.06399, \"I/A\": -0.006, \"R/Ohm\": 10.665}, {\"U/V\": -0.05326, \"I/A\": -0.005, \"R/Ohm\": 10.652}, {\"U/V\": -0.042674, \"I/A\": -0.004, \"R/Ohm\": 10.6685}, {\"U/V\": -0.03196, \"I/A\": -0.003, \"R/Ohm\": 10.653333}, {\"U/V\": -0.021262, \"I/A\": -0.002, \"R/Ohm\": 10.631}, {\"U/V\": -0.010672, \"I/A\": -0.001, \"R/Ohm\": 10.672}, {\"U/V\": 5.4e-05, \"I/A\": 0.0, \"R/Ohm\": null}, {\"U/V\": 0.010742, \"I/A\": 0.001, \"R/Ohm\": 10.742}, {\"U/V\": 0.02134, \"I/A\": 0.002, \"R/Ohm\": 10.67}, {\"U/V\": 0.03202, \"I/A\": 0.003, \"R/Ohm\": 10.673333}, {\"U/V\": 0.042726, \"I/A\": 0.004, \"R/Ohm\": 10.6815}, {\"U/V\": 0.053312, \"I/A\": 0.005, \"R/Ohm\": 10.6624}, {\"U/V\": 0.064018, \"I/A\": 0.006, \"R/Ohm\": 10.669667}, {\"U/V\": 0.07473, \"I/A\": 0.007, \"R/Ohm\": 10.675714}, {\"U/V\": 0.08542, \"I/A\": 0.008, \"R/Ohm\": 10.6775}, {\"U/V\": 0.096046, \"I/A\": 0.009, \"R/Ohm\": 10.671778}, {\"U/V\": 0.106742, \"I/A\": 0.01, \"R/Ohm\": 10.6742}, {\"U/V\": 0.117492, \"I/A\": 0.011, \"R/Ohm\": 10.681091}, {\"U/V\": 0.128082, \"I/A\": 0.012, \"R/Ohm\": 10.6735}, {\"U/V\": 0.13881, \"I/A\": 0.013, \"R/Ohm\": 10.677692}, {\"U/V\": 0.14954, \"I/A\": 0.014, \"R/Ohm\": 10.681429}, {\"U/V\": 0.160164, \"I/A\": 0.015, \"R/Ohm\": 10.6776}, {\"U/V\": 0.170928, \"I/A\": 0.016, \"R/Ohm\": 10.683}, {\"U/V\": 0.18165, \"I/A\": 0.017, \"R/Ohm\": 10.685294}, {\"U/V\": 0.19243, \"I/A\": 0.018, \"R/Ohm\": 10.690556}, {\"U/V\": 0.203068, \"I/A\": 0.019, \"R/Ohm\": 10.687789}, {\"U/V\": 0.213844, \"I/A\": 0.02, \"R/Ohm\": 10.6922}, {\"U/V\": 0.224628, \"I/A\": 0.021, \"R/Ohm\": 10.696571}, {\"U/V\": 0.235288, \"I/A\": 0.022, \"R/Ohm\": 10.694909}, {\"U/V\": 0.246052, \"I/A\": 0.023, \"R/Ohm\": 10.697913}, {\"U/V\": 0.256896, \"I/A\": 0.024, \"R/Ohm\": 10.704}, {\"U/V\": 0.267626, \"I/A\": 0.025, \"R/Ohm\": 10.70504}, {\"U/V\": 0.27843, \"I/A\": 0.026, \"R/Ohm\": 10.708846}, {\"U/V\": 0.289288, \"I/A\": 0.027, \"R/Ohm\": 10.71437}, {\"U/V\": 0.300128, \"I/A\": 0.028, \"R/Ohm\": 10.718857}, {\"U/V\": 0.310866, \"I/A\": 0.029, \"R/Ohm\": 10.719517}], \"data-6a81f1685cd53432e13104834cce64ed\": [{\"U/V\": -0.410008, \"I/A\": -0.029, \"R/Ohm\": 14.138207}, {\"U/V\": -0.395676, \"I/A\": -0.028, \"R/Ohm\": 14.131286}, {\"U/V\": -0.38143, \"I/A\": -0.027, \"R/Ohm\": 14.127037}, {\"U/V\": -0.367122, \"I/A\": -0.026, \"R/Ohm\": 14.120077}, {\"U/V\": -0.352794, \"I/A\": -0.025, \"R/Ohm\": 14.11176}, {\"U/V\": -0.338644, \"I/A\": -0.024, \"R/Ohm\": 14.110167}, {\"U/V\": -0.324362, \"I/A\": -0.023, \"R/Ohm\": 14.102696}, {\"U/V\": -0.310122, \"I/A\": -0.022, \"R/Ohm\": 14.096455}, {\"U/V\": -0.296016, \"I/A\": -0.021, \"R/Ohm\": 14.096}, {\"U/V\": -0.281782, \"I/A\": -0.02, \"R/Ohm\": 14.0891}, {\"U/V\": -0.267542, \"I/A\": -0.019, \"R/Ohm\": 14.081158}, {\"U/V\": -0.253484, \"I/A\": -0.018, \"R/Ohm\": 14.082444}, {\"U/V\": -0.239286, \"I/A\": -0.017, \"R/Ohm\": 14.075647}, {\"U/V\": -0.2251, \"I/A\": -0.016, \"R/Ohm\": 14.06875}, {\"U/V\": -0.211056, \"I/A\": -0.015, \"R/Ohm\": 14.0704}, {\"U/V\": -0.196872, \"I/A\": -0.014, \"R/Ohm\": 14.062286}, {\"U/V\": -0.182732, \"I/A\": -0.013, \"R/Ohm\": 14.056308}, {\"U/V\": -0.168712, \"I/A\": -0.012, \"R/Ohm\": 14.059333}, {\"U/V\": -0.1546, \"I/A\": -0.011, \"R/Ohm\": 14.054545}, {\"U/V\": -0.140594, \"I/A\": -0.01, \"R/Ohm\": 14.0594}, {\"U/V\": -0.126468, \"I/A\": -0.009, \"R/Ohm\": 14.052}, {\"U/V\": -0.112352, \"I/A\": -0.008, \"R/Ohm\": 14.044}, {\"U/V\": -0.098372, \"I/A\": -0.007, \"R/Ohm\": 14.053143}, {\"U/V\": -0.084272, \"I/A\": -0.006, \"R/Ohm\": 14.045333}, {\"U/V\": -0.070148, \"I/A\": -0.005, \"R/Ohm\": 14.0296}, {\"U/V\": -0.056196, \"I/A\": -0.004, \"R/Ohm\": 14.049}, {\"U/V\": -0.042096, \"I/A\": -0.003, \"R/Ohm\": 14.032}, {\"U/V\": -0.028006, \"I/A\": -0.002, \"R/Ohm\": 14.003}, {\"U/V\": -0.01405, \"I/A\": -0.001, \"R/Ohm\": 14.05}, {\"U/V\": 4.6e-05, \"I/A\": 0.0, \"R/Ohm\": null}, {\"U/V\": 0.014138, \"I/A\": 0.001, \"R/Ohm\": 14.138}, {\"U/V\": 0.028068, \"I/A\": 0.002, \"R/Ohm\": 14.034}, {\"U/V\": 0.042162, \"I/A\": 0.003, \"R/Ohm\": 14.054}, {\"U/V\": 0.056238, \"I/A\": 0.004, \"R/Ohm\": 14.0595}, {\"U/V\": 0.070188, \"I/A\": 0.005, \"R/Ohm\": 14.0376}, {\"U/V\": 0.08429, \"I/A\": 0.006, \"R/Ohm\": 14.048333}, {\"U/V\": 0.098398, \"I/A\": 0.007, \"R/Ohm\": 14.056857}, {\"U/V\": 0.11249, \"I/A\": 0.008, \"R/Ohm\": 14.06125}, {\"U/V\": 0.126456, \"I/A\": 0.009, \"R/Ohm\": 14.050667}, {\"U/V\": 0.140572, \"I/A\": 0.01, \"R/Ohm\": 14.0572}, {\"U/V\": 0.154682, \"I/A\": 0.011, \"R/Ohm\": 14.062}, {\"U/V\": 0.168668, \"I/A\": 0.012, \"R/Ohm\": 14.055667}, {\"U/V\": 0.182796, \"I/A\": 0.013, \"R/Ohm\": 14.061231}, {\"U/V\": 0.19693, \"I/A\": 0.014, \"R/Ohm\": 14.066429}, {\"U/V\": 0.21094, \"I/A\": 0.015, \"R/Ohm\": 14.062667}, {\"U/V\": 0.225102, \"I/A\": 0.016, \"R/Ohm\": 14.068875}, {\"U/V\": 0.239264, \"I/A\": 0.017, \"R/Ohm\": 14.074353}, {\"U/V\": 0.253448, \"I/A\": 0.018, \"R/Ohm\": 14.080444}, {\"U/V\": 0.26748, \"I/A\": 0.019, \"R/Ohm\": 14.077895}, {\"U/V\": 0.281688, \"I/A\": 0.02, \"R/Ohm\": 14.0844}, {\"U/V\": 0.29591, \"I/A\": 0.021, \"R/Ohm\": 14.090952}, {\"U/V\": 0.30997, \"I/A\": 0.022, \"R/Ohm\": 14.089545}, {\"U/V\": 0.324222, \"I/A\": 0.023, \"R/Ohm\": 14.096609}, {\"U/V\": 0.338448, \"I/A\": 0.024, \"R/Ohm\": 14.102}, {\"U/V\": 0.352604, \"I/A\": 0.025, \"R/Ohm\": 14.10416}, {\"U/V\": 0.366872, \"I/A\": 0.026, \"R/Ohm\": 14.110462}, {\"U/V\": 0.38117, \"I/A\": 0.027, \"R/Ohm\": 14.117407}, {\"U/V\": 0.395512, \"I/A\": 0.028, \"R/Ohm\": 14.125429}, {\"U/V\": 0.409698, \"I/A\": 0.029, \"R/Ohm\": 14.127517}], \"data-8d4e55ca921efd79295f52d7d38001b1\": [{\"U/V\": -0.507674, \"I/A\": -0.029, \"R/Ohm\": 17.506}, {\"U/V\": -0.489858, \"I/A\": -0.028, \"R/Ohm\": 17.494929}, {\"U/V\": -0.47223, \"I/A\": -0.027, \"R/Ohm\": 17.49}, {\"U/V\": -0.45447, \"I/A\": -0.026, \"R/Ohm\": 17.479615}, {\"U/V\": -0.43672, \"I/A\": -0.025, \"R/Ohm\": 17.4688}, {\"U/V\": -0.41916, \"I/A\": -0.024, \"R/Ohm\": 17.465}, {\"U/V\": -0.401494, \"I/A\": -0.023, \"R/Ohm\": 17.456261}, {\"U/V\": -0.38382, \"I/A\": -0.022, \"R/Ohm\": 17.446364}, {\"U/V\": -0.366342, \"I/A\": -0.021, \"R/Ohm\": 17.444857}, {\"U/V\": -0.34868, \"I/A\": -0.02, \"R/Ohm\": 17.434}, {\"U/V\": -0.331078, \"I/A\": -0.019, \"R/Ohm\": 17.425158}, {\"U/V\": -0.313648, \"I/A\": -0.018, \"R/Ohm\": 17.424889}, {\"U/V\": -0.296072, \"I/A\": -0.017, \"R/Ohm\": 17.416}, {\"U/V\": -0.278506, \"I/A\": -0.016, \"R/Ohm\": 17.406625}, {\"U/V\": -0.26113, \"I/A\": -0.015, \"R/Ohm\": 17.408667}, {\"U/V\": -0.243584, \"I/A\": -0.014, \"R/Ohm\": 17.398857}, {\"U/V\": -0.22608, \"I/A\": -0.013, \"R/Ohm\": 17.390769}, {\"U/V\": -0.208734, \"I/A\": -0.012, \"R/Ohm\": 17.3945}, {\"U/V\": -0.191248, \"I/A\": -0.011, \"R/Ohm\": 17.386182}, {\"U/V\": -0.173918, \"I/A\": -0.01, \"R/Ohm\": 17.3918}, {\"U/V\": -0.156442, \"I/A\": -0.009, \"R/Ohm\": 17.382444}, {\"U/V\": -0.13897, \"I/A\": -0.008, \"R/Ohm\": 17.37125}, {\"U/V\": -0.121684, \"I/A\": -0.007, \"R/Ohm\": 17.383429}, {\"U/V\": -0.104228, \"I/A\": -0.006, \"R/Ohm\": 17.371333}, {\"U/V\": -0.086778, \"I/A\": -0.005, \"R/Ohm\": 17.3556}, {\"U/V\": -0.069502, \"I/A\": -0.004, \"R/Ohm\": 17.3755}, {\"U/V\": -0.052074, \"I/A\": -0.003, \"R/Ohm\": 17.358}, {\"U/V\": -0.034638, \"I/A\": -0.002, \"R/Ohm\": 17.319}, {\"U/V\": -0.017402, \"I/A\": -0.001, \"R/Ohm\": 17.402}, {\"U/V\": 6.4e-05, \"I/A\": 0.0, \"R/Ohm\": null}, {\"U/V\": 0.01748, \"I/A\": 0.001, \"R/Ohm\": 17.48}, {\"U/V\": 0.034726, \"I/A\": 0.002, \"R/Ohm\": 17.363}, {\"U/V\": 0.05213, \"I/A\": 0.003, \"R/Ohm\": 17.376667}, {\"U/V\": 0.069546, \"I/A\": 0.004, \"R/Ohm\": 17.3865}, {\"U/V\": 0.0868, \"I/A\": 0.005, \"R/Ohm\": 17.36}, {\"U/V\": 0.104236, \"I/A\": 0.006, \"R/Ohm\": 17.372667}, {\"U/V\": 0.121684, \"I/A\": 0.007, \"R/Ohm\": 17.383429}, {\"U/V\": 0.139094, \"I/A\": 0.008, \"R/Ohm\": 17.38675}, {\"U/V\": 0.156384, \"I/A\": 0.009, \"R/Ohm\": 17.376}, {\"U/V\": 0.173818, \"I/A\": 0.01, \"R/Ohm\": 17.3818}, {\"U/V\": 0.19129, \"I/A\": 0.011, \"R/Ohm\": 17.39}, {\"U/V\": 0.208572, \"I/A\": 0.012, \"R/Ohm\": 17.381}, {\"U/V\": 0.226054, \"I/A\": 0.013, \"R/Ohm\": 17.388769}, {\"U/V\": 0.24352, \"I/A\": 0.014, \"R/Ohm\": 17.394286}, {\"U/V\": 0.26085, \"I/A\": 0.015, \"R/Ohm\": 17.39}, {\"U/V\": 0.278358, \"I/A\": 0.016, \"R/Ohm\": 17.397375}, {\"U/V\": 0.29587, \"I/A\": 0.017, \"R/Ohm\": 17.404118}, {\"U/V\": 0.31343, \"I/A\": 0.018, \"R/Ohm\": 17.412778}, {\"U/V\": 0.33078, \"I/A\": 0.019, \"R/Ohm\": 17.409474}, {\"U/V\": 0.34836, \"I/A\": 0.02, \"R/Ohm\": 17.418}, {\"U/V\": 0.365948, \"I/A\": 0.021, \"R/Ohm\": 17.426095}, {\"U/V\": 0.383352, \"I/A\": 0.022, \"R/Ohm\": 17.425091}, {\"U/V\": 0.400952, \"I/A\": 0.023, \"R/Ohm\": 17.432696}, {\"U/V\": 0.418586, \"I/A\": 0.024, \"R/Ohm\": 17.441083}, {\"U/V\": 0.43608, \"I/A\": 0.025, \"R/Ohm\": 17.4432}, {\"U/V\": 0.45375, \"I/A\": 0.026, \"R/Ohm\": 17.451923}, {\"U/V\": 0.471456, \"I/A\": 0.027, \"R/Ohm\": 17.461333}, {\"U/V\": 0.489174, \"I/A\": 0.028, \"R/Ohm\": 17.4705}, {\"U/V\": 0.506746, \"I/A\": 0.029, \"R/Ohm\": 17.474}], \"data-c5b517933f5d0e6dfce1035747d0fbce\": [{\"U/V\": -0.967308, \"I/A\": -0.029, \"R/Ohm\": 33.355448}, {\"U/V\": -0.933298, \"I/A\": -0.028, \"R/Ohm\": 33.332071}, {\"U/V\": -0.89963, \"I/A\": -0.027, \"R/Ohm\": 33.31963}, {\"U/V\": -0.865726, \"I/A\": -0.026, \"R/Ohm\": 33.297154}, {\"U/V\": -0.831846, \"I/A\": -0.025, \"R/Ohm\": 33.27384}, {\"U/V\": -0.798338, \"I/A\": -0.024, \"R/Ohm\": 33.264083}, {\"U/V\": -0.764588, \"I/A\": -0.023, \"R/Ohm\": 33.242957}, {\"U/V\": -0.730888, \"I/A\": -0.022, \"R/Ohm\": 33.222182}, {\"U/V\": -0.697582, \"I/A\": -0.021, \"R/Ohm\": 33.21819}, {\"U/V\": -0.663934, \"I/A\": -0.02, \"R/Ohm\": 33.1967}, {\"U/V\": -0.630322, \"I/A\": -0.019, \"R/Ohm\": 33.174842}, {\"U/V\": -0.597144, \"I/A\": -0.018, \"R/Ohm\": 33.174667}, {\"U/V\": -0.56362, \"I/A\": -0.017, \"R/Ohm\": 33.154118}, {\"U/V\": -0.530178, \"I/A\": -0.016, \"R/Ohm\": 33.136125}, {\"U/V\": -0.497066, \"I/A\": -0.015, \"R/Ohm\": 33.137733}, {\"U/V\": -0.463648, \"I/A\": -0.014, \"R/Ohm\": 33.117714}, {\"U/V\": -0.430332, \"I/A\": -0.013, \"R/Ohm\": 33.102462}, {\"U/V\": -0.397272, \"I/A\": -0.012, \"R/Ohm\": 33.106}, {\"U/V\": -0.363992, \"I/A\": -0.011, \"R/Ohm\": 33.090182}, {\"U/V\": -0.330698, \"I/A\": -0.01, \"R/Ohm\": 33.0698}, {\"U/V\": -0.297744, \"I/A\": -0.009, \"R/Ohm\": 33.082667}, {\"U/V\": -0.26449, \"I/A\": -0.008, \"R/Ohm\": 33.06125}, {\"U/V\": -0.231566, \"I/A\": -0.007, \"R/Ohm\": 33.080857}, {\"U/V\": -0.198366, \"I/A\": -0.006, \"R/Ohm\": 33.061}, {\"U/V\": -0.165132, \"I/A\": -0.005, \"R/Ohm\": 33.0264}, {\"U/V\": -0.132286, \"I/A\": -0.004, \"R/Ohm\": 33.0715}, {\"U/V\": -0.099116, \"I/A\": -0.003, \"R/Ohm\": 33.038667}, {\"U/V\": -0.065936, \"I/A\": -0.002, \"R/Ohm\": 32.968}, {\"U/V\": -0.033122, \"I/A\": -0.001, \"R/Ohm\": 33.122}, {\"U/V\": 0.0001, \"I/A\": 0.0, \"R/Ohm\": null}, {\"U/V\": 0.033246, \"I/A\": 0.001, \"R/Ohm\": 33.246}, {\"U/V\": 0.066052, \"I/A\": 0.002, \"R/Ohm\": 33.026}, {\"U/V\": 0.099204, \"I/A\": 0.003, \"R/Ohm\": 33.068}, {\"U/V\": 0.132358, \"I/A\": 0.004, \"R/Ohm\": 33.0895}, {\"U/V\": 0.165196, \"I/A\": 0.005, \"R/Ohm\": 33.0392}, {\"U/V\": 0.198388, \"I/A\": 0.006, \"R/Ohm\": 33.064667}, {\"U/V\": 0.231596, \"I/A\": 0.007, \"R/Ohm\": 33.085143}, {\"U/V\": 0.264772, \"I/A\": 0.008, \"R/Ohm\": 33.0965}, {\"U/V\": 0.297674, \"I/A\": 0.009, \"R/Ohm\": 33.074889}, {\"U/V\": 0.330922, \"I/A\": 0.01, \"R/Ohm\": 33.0922}, {\"U/V\": 0.36418, \"I/A\": 0.011, \"R/Ohm\": 33.107273}, {\"U/V\": 0.397128, \"I/A\": 0.012, \"R/Ohm\": 33.094}, {\"U/V\": 0.430444, \"I/A\": 0.013, \"R/Ohm\": 33.111077}, {\"U/V\": 0.463742, \"I/A\": 0.014, \"R/Ohm\": 33.124429}, {\"U/V\": 0.49681, \"I/A\": 0.015, \"R/Ohm\": 33.120667}, {\"U/V\": 0.530198, \"I/A\": 0.016, \"R/Ohm\": 33.137375}, {\"U/V\": 0.56361, \"I/A\": 0.017, \"R/Ohm\": 33.153529}, {\"U/V\": 0.597094, \"I/A\": 0.018, \"R/Ohm\": 33.171889}, {\"U/V\": 0.630236, \"I/A\": 0.019, \"R/Ohm\": 33.170316}, {\"U/V\": 0.663782, \"I/A\": 0.02, \"R/Ohm\": 33.1891}, {\"U/V\": 0.697376, \"I/A\": 0.021, \"R/Ohm\": 33.208381}, {\"U/V\": 0.730642, \"I/A\": 0.022, \"R/Ohm\": 33.211}, {\"U/V\": 0.764306, \"I/A\": 0.023, \"R/Ohm\": 33.230696}, {\"U/V\": 0.798012, \"I/A\": 0.024, \"R/Ohm\": 33.2505}, {\"U/V\": 0.831458, \"I/A\": 0.025, \"R/Ohm\": 33.25832}, {\"U/V\": 0.8653, \"I/A\": 0.026, \"R/Ohm\": 33.280769}, {\"U/V\": 0.899156, \"I/A\": 0.027, \"R/Ohm\": 33.302074}, {\"U/V\": 0.932796, \"I/A\": 0.028, \"R/Ohm\": 33.314143}, {\"U/V\": 0.966778, \"I/A\": 0.029, \"R/Ohm\": 33.337172}], \"data-b76bfbf54371cf447e7d2cca581648a0\": [{\"x\": -0.206536, \"f(x)\": -0.029041542410677884}, {\"x\": -0.199446, \"f(x)\": -0.028044664117086036}, {\"x\": -0.192246, \"f(x)\": -0.02703231944658373}, {\"x\": -0.185142, \"f(x)\": -0.02603347270502146}, {\"x\": -0.177842, \"f(x)\": -0.025007067691873292}, {\"x\": -0.170794, \"f(x)\": -0.024016094742192705}, {\"x\": -0.16354, \"f(x)\": -0.022996157486661634}, {\"x\": -0.156468, \"f(x)\": -0.022001810054746038}, {\"x\": -0.149268, \"f(x)\": -0.020989465384243736}, {\"x\": -0.142174, \"f(x)\": -0.01999202467694605}, {\"x\": -0.134934, \"f(x)\": -0.0189740558693854}, {\"x\": -0.127936, \"f(x)\": -0.017990113091027746}, {\"x\": -0.120728, \"f(x)\": -0.016976643593113773}, {\"x\": -0.11363, \"f(x)\": -0.015978640472110252}, {\"x\": -0.106502, \"f(x)\": -0.014976419248312974}, {\"x\": -0.0994, \"f(x)\": -0.013977853713603619}, {\"x\": -0.092232, \"f(x)\": -0.012970008352747992}, {\"x\": -0.085188, \"f(x)\": -0.011979597816773241}, {\"x\": -0.078044, \"f(x)\": -0.010975126938152623}, {\"x\": -0.070998, \"f(x)\": -0.009984435195324952}, {\"x\": -0.063836, \"f(x)\": -0.008977433455028078}, {\"x\": -0.056742, \"f(x)\": -0.007979992747730393}, {\"x\": -0.049654, \"f(x)\": -0.006983395660991459}, {\"x\": -0.042552, \"f(x)\": -0.005984830126282105}, {\"x\": -0.035412, \"f(x)\": -0.00498092166136732}, {\"x\": -0.02837, \"f(x)\": -0.003990792332245485}, {\"x\": -0.02125, \"f(x)\": -0.002989695935859875}, {\"x\": -0.014142, \"f(x)\": -0.001990286780591768}, {\"x\": -0.007084, \"f(x)\": -0.0009979077966465937}, {\"x\": 3.2e-05, \"f(x)\": 2.6261860331822557e-06}, {\"x\": 0.007144, \"f(x)\": 0.0010025977550071237}, {\"x\": 0.014198, \"f(x)\": 0.001994414325246463}, {\"x\": 0.021298, \"f(x)\": 0.0029926986531029006}, {\"x\": 0.028422, \"f(x)\": 0.003994357463194345}, {\"x\": 0.035454, \"f(x)\": 0.0049830807580515946}, {\"x\": 0.042588, \"f(x)\": 0.005986145602407626}, {\"x\": 0.04972, \"f(x)\": 0.006988929239910741}, {\"x\": 0.056822, \"f(x)\": 0.007987494774620097}, {\"x\": 0.06388, \"f(x)\": 0.008979873758565272}, {\"x\": 0.071014, \"f(x)\": 0.009982938602921302}, {\"x\": 0.07812, \"f(x)\": 0.01098206655133649}, {\"x\": 0.085178, \"f(x)\": 0.011974445535281666}, {\"x\": 0.092302, \"f(x)\": 0.01297610434537311}, {\"x\": 0.099428, \"f(x)\": 0.013978044362317475}, {\"x\": 0.106504, \"f(x)\": 0.014972954207938904}, {\"x\": 0.113654, \"f(x)\": 0.015978268707118274}, {\"x\": 0.120778, \"f(x)\": 0.01697992751720972}, {\"x\": 0.12797, \"f(x)\": 0.017991147360300355}, {\"x\": 0.13499, \"f(x)\": 0.018978183414040097}, {\"x\": 0.14219, \"f(x)\": 0.0199905280845424}, {\"x\": 0.14933, \"f(x)\": 0.020994436549457183}, {\"x\": 0.156414, \"f(x)\": 0.021990471222490284}, {\"x\": 0.163626, \"f(x)\": 0.02300450313411009}, {\"x\": 0.170728, \"f(x)\": 0.024003068668819443}, {\"x\": 0.177874, \"f(x)\": 0.025007820754292982}, {\"x\": 0.185046, \"f(x)\": 0.02601622852885444}, {\"x\": 0.192194, \"f(x)\": 0.027021261821180895}, {\"x\": 0.19945, \"f(x)\": 0.02804148028356488}, {\"x\": 0.206528, \"f(x)\": 0.029036671336039228}], \"data-3f9cafe5620d12733d9293fea34f81c3\": [{\"x\": -0.311402, \"f(x)\": -0.02908942313097886}, {\"x\": -0.30042, \"f(x)\": -0.028063433217445935}, {\"x\": -0.289626, \"f(x)\": -0.027055007145084395}, {\"x\": -0.278732, \"f(x)\": -0.026037238604014672}, {\"x\": -0.267864, \"f(x)\": -0.02502189910480908}, {\"x\": -0.257134, \"f(x)\": -0.02401945221242078}, {\"x\": -0.246268, \"f(x)\": -0.02300429956258935}, {\"x\": -0.235454, \"f(x)\": -0.021994004996486176}, {\"x\": -0.224752, \"f(x)\": -0.020994173995336173}, {\"x\": -0.213932, \"f(x)\": -0.019983318881110507}, {\"x\": -0.20313, \"f(x)\": -0.018974145411252315}, {\"x\": -0.19246, \"f(x)\": -0.017977304000088925}, {\"x\": -0.181672, \"f(x)\": -0.01696943847584988}, {\"x\": -0.170902, \"f(x)\": -0.015963254595978308}, {\"x\": -0.160264, \"f(x)\": -0.01496940277480154}, {\"x\": -0.149488, \"f(x)\": -0.013962658346807478}, {\"x\": -0.138772, \"f(x)\": -0.012961519400038327}, {\"x\": -0.128096, \"f(x)\": -0.011964117440752447}, {\"x\": -0.117392, \"f(x)\": -0.010964099590228277}, {\"x\": -0.106764, \"f(x)\": -0.009971182015922328}, {\"x\": -0.096038, \"f(x)\": -0.008969108822282357}, {\"x\": -0.085316, \"f(x)\": -0.007967409327390713}, {\"x\": -0.074692, \"f(x)\": -0.006974865451833093}, {\"x\": -0.06399, \"f(x)\": -0.005975034450683087}, {\"x\": -0.05326, \"f(x)\": -0.0049725875582947885}, {\"x\": -0.042674, \"f(x)\": -0.003983593820846277}, {\"x\": -0.03196, \"f(x)\": -0.002982641723451289}, {\"x\": -0.021262, \"f(x)\": -0.00198318442104961}, {\"x\": -0.010672, \"f(x)\": -0.0009938169848527712}, {\"x\": 5.4e-05, \"f(x)\": 8.25620878719948e-06}, {\"x\": 0.010742, \"f(x)\": 0.0010067792643180598}, {\"x\": 0.02134, \"f(x)\": 0.0019968940980115532}, {\"x\": 0.03202, \"f(x)\": 0.0029946697560457587}, {\"x\": 0.042726, \"f(x)\": 0.003994874455944092}, {\"x\": 0.053312, \"f(x)\": 0.004983868193392603}, {\"x\": 0.064018, \"f(x)\": 0.005984072893290938}, {\"x\": 0.07473, \"f(x)\": 0.006984838141311763}, {\"x\": 0.08542, \"f(x)\": 0.007983548046216786}, {\"x\": 0.096046, \"f(x)\": 0.008976278771148573}, {\"x\": 0.106742, \"f(x)\": 0.009975549224176088}, {\"x\": 0.117492, \"f(x)\": 0.010979864610306023}, {\"x\": 0.128082, \"f(x)\": 0.011969232046502862}, {\"x\": 0.13881, \"f(x)\": 0.012971492089516994}, {\"x\": 0.14954, \"f(x)\": 0.013973938981905295}, {\"x\": 0.160164, \"f(x)\": 0.014966482857462916}, {\"x\": 0.170928, \"f(x)\": 0.015972106189211997}, {\"x\": 0.18165, \"f(x)\": 0.01697380568410364}, {\"x\": 0.19243, \"f(x)\": 0.01798092381084603}, {\"x\": 0.203068, \"f(x)\": 0.018974775632022798}, {\"x\": 0.213844, \"f(x)\": 0.019981520060016862}, {\"x\": 0.224628, \"f(x)\": 0.02098901188550758}, {\"x\": 0.235288, \"f(x)\": 0.02198491904980015}, {\"x\": 0.246052, \"f(x)\": 0.02299054238154923}, {\"x\": 0.256896, \"f(x)\": 0.024003639688264862}, {\"x\": 0.267626, \"f(x)\": 0.025006086580653154}, {\"x\": 0.27843, \"f(x)\": 0.026015446899885514}, {\"x\": 0.289288, \"f(x)\": 0.02702985215222029}, {\"x\": 0.300128, \"f(x)\": 0.02804257576018759}, {\"x\": 0.310866, \"f(x)\": 0.029045770050072542}], \"data-c0981575c98a2c98a48be59d2a4f534d\": [{\"x\": -0.410008, \"f(x)\": -0.02907835872863863}, {\"x\": -0.395676, \"f(x)\": -0.028061851938839883}, {\"x\": -0.38143, \"f(x)\": -0.027051444757185333}, {\"x\": -0.367122, \"f(x)\": -0.02603664018361287}, {\"x\": -0.352794, \"f(x)\": -0.0250204170965185}, {\"x\": -0.338644, \"f(x)\": -0.02401681877976911}, {\"x\": -0.324362, \"f(x)\": -0.023003858273775126}, {\"x\": -0.310122, \"f(x)\": -0.02199387664617715}, {\"x\": -0.296016, \"f(x)\": -0.02099339905917595}, {\"x\": -0.281782, \"f(x)\": -0.019983842985634544}, {\"x\": -0.267542, \"f(x)\": -0.01897386135803657}, {\"x\": -0.253484, \"f(x)\": -0.01797678820348795}, {\"x\": -0.239286, \"f(x)\": -0.016969785454285978}, {\"x\": -0.2251, \"f(x)\": -0.01596363381319715}, {\"x\": -0.211056, \"f(x)\": -0.014967553618113867}, {\"x\": -0.196872, \"f(x)\": -0.013961543828377231}, {\"x\": -0.182732, \"f(x)\": -0.012958654768388792}, {\"x\": -0.168712, \"f(x)\": -0.011964276789531795}, {\"x\": -0.1546, \"f(x)\": -0.010963373648474025}, {\"x\": -0.140594, \"f(x)\": -0.009969988629082363}, {\"x\": -0.126468, \"f(x)\": -0.008968092528559258}, {\"x\": -0.112352, \"f(x)\": -0.007966905684797106}, {\"x\": -0.098372, \"f(x)\": -0.006975364732983924}, {\"x\": -0.084272, \"f(x)\": -0.005975312700039297}, {\"x\": -0.070148, \"f(x)\": -0.004973558450868384}, {\"x\": -0.056196, \"f(x)\": -0.0039840034179858715}, {\"x\": -0.042096, \"f(x)\": -0.002983951385041246}, {\"x\": -0.028006, \"f(x)\": -0.001984608608857574}, {\"x\": -0.01405, \"f(x)\": -0.0009947698732706803}, {\"x\": 4.6e-05, \"f(x)\": 4.9984569695640305e-06}, {\"x\": 0.014138, \"f(x)\": 0.0010044830845054268}, {\"x\": 0.028068, \"f(x)\": 0.0019924777525138406}, {\"x\": 0.042162, \"f(x)\": 0.0029921042314018944}, {\"x\": 0.056238, \"f(x)\": 0.003990454048120232}, {\"x\": 0.070188, \"f(x)\": 0.004979867229650553}, {\"x\": 0.08429, \"f(x)\": 0.00598006111394737}, {\"x\": 0.098398, \"f(x)\": 0.0069806805523007585}, {\"x\": 0.11249, \"f(x)\": 0.00798016517983662}, {\"x\": 0.126456, \"f(x)\": 0.008970713172184468}, {\"x\": 0.140572, \"f(x)\": 0.00997190001594662}, {\"x\": 0.154682, \"f(x)\": 0.010972661305652198}, {\"x\": 0.168668, \"f(x)\": 0.011964627811521954}, {\"x\": 0.182796, \"f(x)\": 0.012966665763397247}, {\"x\": 0.19693, \"f(x)\": 0.013969129269329117}, {\"x\": 0.21094, \"f(x)\": 0.014962797991425159}, {\"x\": 0.225102, \"f(x)\": 0.0159672474162877}, {\"x\": 0.239264, \"f(x)\": 0.016971696841150238}, {\"x\": 0.253448, \"f(x)\": 0.017977706630886874}, {\"x\": 0.26748, \"f(x)\": 0.018972935717857017}, {\"x\": 0.281688, \"f(x)\": 0.01998064772381994}, {\"x\": 0.29591, \"f(x)\": 0.0209893526892482}, {\"x\": 0.30997, \"f(x)\": 0.021986567695149013}, {\"x\": 0.324222, \"f(x)\": 0.022997400430860133}, {\"x\": 0.338448, \"f(x)\": 0.024006389098992775}, {\"x\": 0.352604, \"f(x)\": 0.025010412969798737}, {\"x\": 0.366872, \"f(x)\": 0.026022380516327385}, {\"x\": 0.38117, \"f(x)\": 0.027036475833138895}, {\"x\": 0.395512, \"f(x)\": 0.028053691879698597}, {\"x\": 0.409698, \"f(x)\": 0.029059843520787425}], \"data-9075e7599f546144ece5e1764f93626b\": [{\"x\": -0.507674, \"f(x)\": -0.029096445500841082}, {\"x\": -0.489858, \"f(x)\": -0.02807511147691751}, {\"x\": -0.47223, \"f(x)\": -0.027064554888809916}, {\"x\": -0.45447, \"f(x)\": -0.02604643116491663}, {\"x\": -0.43672, \"f(x)\": -0.0250288807088859}, {\"x\": -0.41916, \"f(x)\": -0.024022222342243667}, {\"x\": -0.401494, \"f(x)\": -0.023009487336258377}, {\"x\": -0.38382, \"f(x)\": -0.021996293715983044}, {\"x\": -0.366342, \"f(x)\": -0.020994336145813742}, {\"x\": -0.34868, \"f(x)\": -0.01998183044697347}, {\"x\": -0.331078, \"f(x)\": -0.01897276435530852}, {\"x\": -0.313648, \"f(x)\": -0.017973558470879468}, {\"x\": -0.296072, \"f(x)\": -0.01696598287565715}, {\"x\": -0.278506, \"f(x)\": -0.015958980548297384}, {\"x\": -0.26113, \"f(x)\": -0.014962870310326117}, {\"x\": -0.243584, \"f(x)\": -0.013957014518691458}, {\"x\": -0.22608, \"f(x)\": -0.01295356645207952}, {\"x\": -0.208734, \"f(x)\": -0.01195917601769591}, {\"x\": -0.191248, \"f(x)\": -0.010956759833236565}, {\"x\": -0.173918, \"f(x)\": -0.009963286627433038}, {\"x\": -0.156442, \"f(x)\": -0.008961443710836247}, {\"x\": -0.13897, \"f(x)\": -0.007959830101384477}, {\"x\": -0.121684, \"f(x)\": -0.006968879274176182}, {\"x\": -0.104228, \"f(x)\": -0.0059681828933044944}, {\"x\": -0.086778, \"f(x)\": -0.004967830473150338}, {\"x\": -0.069502, \"f(x)\": -0.0039774529138045965}, {\"x\": -0.052074, \"f(x)\": -0.002978361682948056}, {\"x\": -0.034638, \"f(x)\": -0.0019788118378014736}, {\"x\": -0.017402, \"f(x)\": -0.000990727349905942}, {\"x\": 6.4e-05, \"f(x)\": 1.054229882829767e-05}, {\"x\": 0.01748, \"f(x)\": 0.0010089456082497748}, {\"x\": 0.034726, \"f(x)\": 0.001997603364007859}, {\"x\": 0.05213, \"f(x)\": 0.0029953187519942736}, {\"x\": 0.069546, \"f(x)\": 0.00399372206141575}, {\"x\": 0.0868, \"f(x)\": 0.004982838431463877}, {\"x\": 0.104236, \"f(x)\": 0.0059823882766104584}, {\"x\": 0.121684, \"f(x)\": 0.006982626043192104}, {\"x\": 0.139094, \"f(x)\": 0.007980685391896048}, {\"x\": 0.156384, \"f(x)\": 0.008971865526249364}, {\"x\": 0.173818, \"f(x)\": 0.009971300717823437}, {\"x\": 0.19129, \"f(x)\": 0.010972914327275207}, {\"x\": 0.208572, \"f(x)\": 0.011963635847338481}, {\"x\": 0.226054, \"f(x)\": 0.012965822724652805}, {\"x\": 0.24352, \"f(x)\": 0.013967092373387044}, {\"x\": 0.26085, \"f(x)\": 0.01496056557919057}, {\"x\": 0.278358, \"f(x)\": 0.01596424295294753}, {\"x\": 0.29587, \"f(x)\": 0.016968149633849513}, {\"x\": 0.31343, \"f(x)\": 0.017974808000491744}, {\"x\": 0.33078, \"f(x)\": 0.018969427742020376}, {\"x\": 0.34836, \"f(x)\": 0.019977232644387714}, {\"x\": 0.365948, \"f(x)\": 0.020985496161045093}, {\"x\": 0.383352, \"f(x)\": 0.02198321154903151}, {\"x\": 0.400952, \"f(x)\": 0.022992162987123952}, {\"x\": 0.418586, \"f(x)\": 0.024003063535949075}, {\"x\": 0.43608, \"f(x)\": 0.025005938334698462}, {\"x\": 0.45375, \"f(x)\": 0.026018902647828773}, {\"x\": 0.471456, \"f(x)\": 0.027033930725264273}, {\"x\": 0.489174, \"f(x)\": 0.028049646724134836}, {\"x\": 0.506746, \"f(x)\": 0.029056993012212134}], \"data-58c7721a5b1f21a60f4593ac0ad6ee49\": [{\"x\": -0.967308, \"f(x)\": -0.029104046452763068}, {\"x\": -0.933298, \"f(x)\": -0.028080717870937105}, {\"x\": -0.89963, \"f(x)\": -0.02706767974412392}, {\"x\": -0.865726, \"f(x)\": -0.026047540601570923}, {\"x\": -0.831846, \"f(x)\": -0.0250281235962118}, {\"x\": -0.798338, \"f(x)\": -0.02401989971735781}, {\"x\": -0.764588, \"f(x)\": -0.023004394288465537}, {\"x\": -0.730888, \"f(x)\": -0.02199039331206051}, {\"x\": -0.697582, \"f(x)\": -0.020988247421254998}, {\"x\": -0.663934, \"f(x)\": -0.01997581107543671}, {\"x\": -0.630322, \"f(x)\": -0.01896445793540924}, {\"x\": -0.597144, \"f(x)\": -0.01796616344297108}, {\"x\": -0.56362, \"f(x)\": -0.016957458139321167}, {\"x\": -0.530178, \"f(x)\": -0.01595122013775034}, {\"x\": -0.497066, \"f(x)\": -0.014954911522595345}, {\"x\": -0.463648, \"f(x)\": -0.013949395658218396}, {\"x\": -0.430332, \"f(x)\": -0.012946948876915434}, {\"x\": -0.397272, \"f(x)\": -0.01195220489234718}, {\"x\": -0.363992, \"f(x)\": -0.010950841316835035}, {\"x\": -0.330698, \"f(x)\": -0.00994905649462646}, {\"x\": -0.297744, \"f(x)\": -0.008957501949331174}, {\"x\": -0.26449, \"f(x)\": -0.007956920689112398}, {\"x\": -0.231566, \"f(x)\": -0.006966268815309458}, {\"x\": -0.198366, \"f(x)\": -0.005967312363776909}, {\"x\": -0.165132, \"f(x)\": -0.004967332884553034}, {\"x\": -0.132286, \"f(x)\": -0.0039790279566302}, {\"x\": -0.099116, \"f(x)\": -0.0029809741765900013}, {\"x\": -0.065936, \"f(x)\": -0.0019826195060523525}, {\"x\": -0.033122, \"f(x)\": -0.000995277427721358}, {\"x\": 0.0001, \"f(x)\": 4.340982905578726e-06}, {\"x\": 0.033246, \"f(x)\": 0.001001672625751899}, {\"x\": 0.066052, \"f(x)\": 0.001988773991684934}, {\"x\": 0.099204, \"f(x)\": 0.002986286168829724}, {\"x\": 0.132358, \"f(x)\": 0.003983858524074004}, {\"x\": 0.165196, \"f(x)\": 0.004971922739598878}, {\"x\": 0.198388, \"f(x)\": 0.0059706384787334655}, {\"x\": 0.231596, \"f(x)\": 0.006969835642663973}, {\"x\": 0.264772, \"f(x)\": 0.007968069957002642}, {\"x\": 0.297674, \"f(x)\": 0.008958059871711192}, {\"x\": 0.330922, \"f(x)\": 0.009958460597631499}, {\"x\": 0.36418, \"f(x)\": 0.010959162214049254}, {\"x\": 0.397128, \"f(x)\": 0.011950536225046072}, {\"x\": 0.430444, \"f(x)\": 0.012952983006349035}, {\"x\": 0.463742, \"f(x)\": 0.013954888184756589}, {\"x\": 0.49681, \"f(x)\": 0.014949872881722802}, {\"x\": 0.530198, \"f(x)\": 0.0159544860746074}, {\"x\": 0.56361, \"f(x)\": 0.016959821404685882}, {\"x\": 0.597094, \"f(x)\": 0.017967323146345995}, {\"x\": 0.630236, \"f(x)\": 0.018964534432993334}, {\"x\": 0.663782, \"f(x)\": 0.019973901695737636}, {\"x\": 0.697376, \"f(x)\": 0.020984713232869698}, {\"x\": 0.730642, \"f(x)\": 0.021985655561685413}, {\"x\": 0.764306, \"f(x)\": 0.022998573332299623}, {\"x\": 0.798012, \"f(x)\": 0.024012754843003116}, {\"x\": 0.831458, \"f(x)\": 0.025019113200772925}, {\"x\": 0.8653, \"f(x)\": 0.026037386822241732}, {\"x\": 0.899156, \"f(x)\": 0.02705608169040697}, {\"x\": 0.932796, \"f(x)\": 0.0280682773238273}, {\"x\": 0.966778, \"f(x)\": 0.029090763412260405}]}}, {\"mode\": \"vega-lite\"});\n",
-       "</script>"
-      ],
-      "text/plain": [
-       "alt.LayerChart(...)"
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    },
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Path:\n",
-      "C:/Users/zweipfennig/Documents/13 - local workspace/Proben/Aixtron_200_mm/PB00602R_6/PB00602R_6_E5 (22001)/Electrical/mesa - TLM/CTLM 4Contact\n",
-      "\n",
-      "Files: M14_CTLM_4Kontakt_1.txt, M14_CTLM_4Kontakt_2.txt, M14_CTLM_4Kontakt_3.txt, M14_CTLM_4Kontakt_4.txt, M14_CTLM_4Kontakt_5.txt \n",
-      "\n",
-      "Feld            Rsh      R²     Rc       LT     rhoc      I_min   I_max   #_removed_values\n",
-      "-               [Ohm/sq] -      [Ohm*mm] [µm]   [Ohm*cm²] [A]     [A]     -\n",
-      "M14_CTLM_4Kontakt_1.txt  302.46   1.0000   0.51     1.68 8.51e-06 -0.0300  0.0300 0\n",
-      "M14_CTLM_4Kontakt_1.txt  303.26   1.0000   0.49     1.62 8.00e-06 -0.0300  0.0300 1\n",
-      "M14_CTLM_4Kontakt_1.txt  302.94   1.0000   0.50     1.65 8.28e-06 -0.0300  0.0300 2\n"
-     ]
-    },
-    {
-     "data": {
-      "text/html": [
-       "\n",
-       "<div id=\"altair-viz-3670d71e549c47f698e0281717766994\"></div>\n",
-       "<script type=\"text/javascript\">\n",
-       "  var VEGA_DEBUG = (typeof VEGA_DEBUG == \"undefined\") ? {} : VEGA_DEBUG;\n",
-       "  (function(spec, embedOpt){\n",
-       "    let outputDiv = document.currentScript.previousElementSibling;\n",
-       "    if (outputDiv.id !== \"altair-viz-3670d71e549c47f698e0281717766994\") {\n",
-       "      outputDiv = document.getElementById(\"altair-viz-3670d71e549c47f698e0281717766994\");\n",
-       "    }\n",
-       "    const paths = {\n",
-       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
-       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
-       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.17.0?noext\",\n",
-       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
-       "    };\n",
-       "\n",
-       "    function maybeLoadScript(lib, version) {\n",
-       "      var key = `${lib.replace(\"-\", \"\")}_version`;\n",
-       "      return (VEGA_DEBUG[key] == version) ?\n",
-       "        Promise.resolve(paths[lib]) :\n",
-       "        new Promise(function(resolve, reject) {\n",
-       "          var s = document.createElement('script');\n",
-       "          document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
-       "          s.async = true;\n",
-       "          s.onload = () => {\n",
-       "            VEGA_DEBUG[key] = version;\n",
-       "            return resolve(paths[lib]);\n",
-       "          };\n",
-       "          s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
-       "          s.src = paths[lib];\n",
-       "        });\n",
-       "    }\n",
-       "\n",
-       "    function showError(err) {\n",
-       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
-       "      throw err;\n",
-       "    }\n",
-       "\n",
-       "    function displayChart(vegaEmbed) {\n",
-       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
-       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
-       "    }\n",
-       "\n",
-       "    if(typeof define === \"function\" && define.amd) {\n",
-       "      requirejs.config({paths});\n",
-       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
-       "    } else {\n",
-       "      maybeLoadScript(\"vega\", \"5\")\n",
-       "        .then(() => maybeLoadScript(\"vega-lite\", \"4.17.0\"))\n",
-       "        .then(() => maybeLoadScript(\"vega-embed\", \"6\"))\n",
-       "        .catch(showError)\n",
-       "        .then(() => displayChart(vegaEmbed));\n",
-       "    }\n",
-       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"layer\": [{\"data\": {\"name\": \"data-635d80dea8a316a7d4ab1cf6eef3fa93\"}, \"mark\": {\"type\": \"point\", \"color\": \"#00549F\"}, \"encoding\": {\"x\": {\"field\": \"d/\\u00b5m\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"R_T/Ohm\", \"type\": \"quantitative\"}}, \"selection\": {\"selector120\": {\"type\": \"interval\", \"bind\": \"scales\", \"encodings\": [\"x\", \"y\"]}}}, {\"data\": {\"name\": \"data-a24537db6bfacb808f42ae52a3c7c7ad\"}, \"mark\": {\"type\": \"line\", \"color\": \"#A11035\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-15a593f9eabaf74ed97d1ed1c5799c60\"}, \"mark\": {\"type\": \"line\", \"color\": \"#612158\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}, {\"data\": {\"name\": \"data-c4c3243a2c9dc6da6c0ac06dea5bc564\"}, \"mark\": {\"type\": \"line\", \"color\": \"#7A6FAC\"}, \"encoding\": {\"x\": {\"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"f(x)\", \"type\": \"quantitative\"}}}], \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.17.0.json\", \"datasets\": {\"data-635d80dea8a316a7d4ab1cf6eef3fa93\": [{\"d/\\u00b5m\": 5, \"R_T/Ohm\": 7.430796516366051}, {\"d/\\u00b5m\": 10, \"R_T/Ohm\": 11.649802411957799}, {\"d/\\u00b5m\": 15, \"R_T/Ohm\": 15.944690953028037}, {\"d/\\u00b5m\": 20, \"R_T/Ohm\": 20.451775833137738}, {\"d/\\u00b5m\": 50, \"R_T/Ohm\": 46.72452521781159}], \"data-a24537db6bfacb808f42ae52a3c7c7ad\": [{\"x\": 0.0, \"f(x)\": 2.935480907994029}, {\"x\": 1.0204081632653061, \"f(x)\": 3.8285848507729177}, {\"x\": 2.0408163265306123, \"f(x)\": 4.721688793551807}, {\"x\": 3.0612244897959187, \"f(x)\": 5.6147927363306955}, {\"x\": 4.081632653061225, \"f(x)\": 6.507896679109584}, {\"x\": 5.1020408163265305, \"f(x)\": 7.401000621888473}, {\"x\": 6.122448979591837, \"f(x)\": 8.294104564667363}, {\"x\": 7.142857142857143, \"f(x)\": 9.18720850744625}, {\"x\": 8.16326530612245, \"f(x)\": 10.08031245022514}, {\"x\": 9.183673469387756, \"f(x)\": 10.973416393004028}, {\"x\": 10.204081632653061, \"f(x)\": 11.866520335782917}, {\"x\": 11.224489795918368, \"f(x)\": 12.759624278561805}, {\"x\": 12.244897959183675, \"f(x)\": 13.652728221340695}, {\"x\": 13.26530612244898, \"f(x)\": 14.545832164119583}, {\"x\": 14.285714285714286, \"f(x)\": 15.438936106898472}, {\"x\": 15.306122448979592, \"f(x)\": 16.33204004967736}, {\"x\": 16.3265306122449, \"f(x)\": 17.22514399245625}, {\"x\": 17.346938775510203, \"f(x)\": 18.11824793523514}, {\"x\": 18.367346938775512, \"f(x)\": 19.01135187801403}, {\"x\": 19.387755102040817, \"f(x)\": 19.90445582079292}, {\"x\": 20.408163265306122, \"f(x)\": 20.797559763571808}, {\"x\": 21.42857142857143, \"f(x)\": 21.690663706350698}, {\"x\": 22.448979591836736, \"f(x)\": 22.583767649129584}, {\"x\": 23.46938775510204, \"f(x)\": 23.476871591908473}, {\"x\": 24.48979591836735, \"f(x)\": 24.369975534687363}, {\"x\": 25.510204081632654, \"f(x)\": 25.263079477466253}, {\"x\": 26.53061224489796, \"f(x)\": 26.15618342024514}, {\"x\": 27.551020408163264, \"f(x)\": 27.04928736302403}, {\"x\": 28.571428571428573, \"f(x)\": 27.942391305802918}, {\"x\": 29.591836734693878, \"f(x)\": 28.835495248581807}, {\"x\": 30.612244897959183, \"f(x)\": 29.728599191360694}, {\"x\": 31.63265306122449, \"f(x)\": 30.621703134139587}, {\"x\": 32.6530612244898, \"f(x)\": 31.514807076918473}, {\"x\": 33.673469387755105, \"f(x)\": 32.407911019697366}, {\"x\": 34.69387755102041, \"f(x)\": 33.301014962476245}, {\"x\": 35.714285714285715, \"f(x)\": 34.19411890525514}, {\"x\": 36.734693877551024, \"f(x)\": 35.087222848034024}, {\"x\": 37.755102040816325, \"f(x)\": 35.98032679081291}, {\"x\": 38.775510204081634, \"f(x)\": 36.8734307335918}, {\"x\": 39.79591836734694, \"f(x)\": 37.766534676370696}, {\"x\": 40.816326530612244, \"f(x)\": 38.65963861914958}, {\"x\": 41.83673469387755, \"f(x)\": 39.55274256192847}, {\"x\": 42.85714285714286, \"f(x)\": 40.44584650470736}, {\"x\": 43.87755102040816, \"f(x)\": 41.33895044748625}, {\"x\": 44.89795918367347, \"f(x)\": 42.232054390265134}, {\"x\": 45.91836734693878, \"f(x)\": 43.12515833304403}, {\"x\": 46.93877551020408, \"f(x)\": 44.01826227582291}, {\"x\": 47.95918367346939, \"f(x)\": 44.911366218601806}, {\"x\": 48.9795918367347, \"f(x)\": 45.80447016138069}, {\"x\": 50.0, \"f(x)\": 46.69757410415958}], \"data-15a593f9eabaf74ed97d1ed1c5799c60\": [{\"x\": 0.0, \"f(x)\": 2.8509538643611156}, {\"x\": 1.0204081632653061, \"f(x)\": 3.7464101367401783}, {\"x\": 2.0408163265306123, \"f(x)\": 4.641866409119241}, {\"x\": 3.0612244897959187, \"f(x)\": 5.537322681498304}, {\"x\": 4.081632653061225, \"f(x)\": 6.432778953877366}, {\"x\": 5.1020408163265305, \"f(x)\": 7.328235226256429}, {\"x\": 6.122448979591837, \"f(x)\": 8.223691498635493}, {\"x\": 7.142857142857143, \"f(x)\": 9.119147771014553}, {\"x\": 8.16326530612245, \"f(x)\": 10.014604043393618}, {\"x\": 9.183673469387756, \"f(x)\": 10.910060315772679}, {\"x\": 10.204081632653061, \"f(x)\": 11.805516588151743}, {\"x\": 11.224489795918368, \"f(x)\": 12.700972860530804}, {\"x\": 12.244897959183675, \"f(x)\": 13.596429132909869}, {\"x\": 13.26530612244898, \"f(x)\": 14.49188540528893}, {\"x\": 14.285714285714286, \"f(x)\": 15.387341677667994}, {\"x\": 15.306122448979592, \"f(x)\": 16.282797950047055}, {\"x\": 16.3265306122449, \"f(x)\": 17.17825422242612}, {\"x\": 17.346938775510203, \"f(x)\": 18.07371049480518}, {\"x\": 18.367346938775512, \"f(x)\": 18.969166767184245}, {\"x\": 19.387755102040817, \"f(x)\": 19.86462303956331}, {\"x\": 20.408163265306122, \"f(x)\": 20.76007931194237}, {\"x\": 21.42857142857143, \"f(x)\": 21.655535584321434}, {\"x\": 22.448979591836736, \"f(x)\": 22.550991856700495}, {\"x\": 23.46938775510204, \"f(x)\": 23.446448129079556}, {\"x\": 24.48979591836735, \"f(x)\": 24.34190440145862}, {\"x\": 25.510204081632654, \"f(x)\": 25.237360673837685}, {\"x\": 26.53061224489796, \"f(x)\": 26.132816946216746}, {\"x\": 27.551020408163264, \"f(x)\": 27.028273218595807}, {\"x\": 28.571428571428573, \"f(x)\": 27.92372949097487}, {\"x\": 29.591836734693878, \"f(x)\": 28.819185763353932}, {\"x\": 30.612244897959183, \"f(x)\": 29.714642035732997}, {\"x\": 31.63265306122449, \"f(x)\": 30.61009830811206}, {\"x\": 32.6530612244898, \"f(x)\": 31.505554580491122}, {\"x\": 33.673469387755105, \"f(x)\": 32.401010852870186}, {\"x\": 34.69387755102041, \"f(x)\": 33.296467125249244}, {\"x\": 35.714285714285715, \"f(x)\": 34.19192339762831}, {\"x\": 36.734693877551024, \"f(x)\": 35.08737967000737}, {\"x\": 37.755102040816325, \"f(x)\": 35.98283594238643}, {\"x\": 38.775510204081634, \"f(x)\": 36.8782922147655}, {\"x\": 39.79591836734694, \"f(x)\": 37.773748487144566}, {\"x\": 40.816326530612244, \"f(x)\": 38.66920475952362}, {\"x\": 41.83673469387755, \"f(x)\": 39.56466103190269}, {\"x\": 42.85714285714286, \"f(x)\": 40.46011730428175}, {\"x\": 43.87755102040816, \"f(x)\": 41.35557357666081}, {\"x\": 44.89795918367347, \"f(x)\": 42.251029849039874}, {\"x\": 45.91836734693878, \"f(x)\": 43.14648612141894}, {\"x\": 46.93877551020408, \"f(x)\": 44.041942393797996}, {\"x\": 47.95918367346939, \"f(x)\": 44.93739866617706}, {\"x\": 48.9795918367347, \"f(x)\": 45.832854938556125}, {\"x\": 50.0, \"f(x)\": 46.72831121093519}], \"data-c4c3243a2c9dc6da6c0ac06dea5bc564\": [{\"x\": 0.0, \"f(x)\": 2.8990485595724547}, {\"x\": 1.0204081632653061, \"f(x)\": 3.7935505721258953}, {\"x\": 2.0408163265306123, \"f(x)\": 4.688052584679336}, {\"x\": 3.0612244897959187, \"f(x)\": 5.582554597232777}, {\"x\": 4.081632653061225, \"f(x)\": 6.477056609786217}, {\"x\": 5.1020408163265305, \"f(x)\": 7.371558622339658}, {\"x\": 6.122448979591837, \"f(x)\": 8.2660606348931}, {\"x\": 7.142857142857143, \"f(x)\": 9.16056264744654}, {\"x\": 8.16326530612245, \"f(x)\": 10.055064659999982}, {\"x\": 9.183673469387756, \"f(x)\": 10.949566672553422}, {\"x\": 10.204081632653061, \"f(x)\": 11.844068685106862}, {\"x\": 11.224489795918368, \"f(x)\": 12.738570697660302}, {\"x\": 12.244897959183675, \"f(x)\": 13.633072710213744}, {\"x\": 13.26530612244898, \"f(x)\": 14.527574722767184}, {\"x\": 14.285714285714286, \"f(x)\": 15.422076735320625}, {\"x\": 15.306122448979592, \"f(x)\": 16.316578747874065}, {\"x\": 16.3265306122449, \"f(x)\": 17.211080760427507}, {\"x\": 17.346938775510203, \"f(x)\": 18.105582772980945}, {\"x\": 18.367346938775512, \"f(x)\": 19.00008478553439}, {\"x\": 19.387755102040817, \"f(x)\": 19.89458679808783}, {\"x\": 20.408163265306122, \"f(x)\": 20.789088810641267}, {\"x\": 21.42857142857143, \"f(x)\": 21.683590823194713}, {\"x\": 22.448979591836736, \"f(x)\": 22.57809283574815}, {\"x\": 23.46938775510204, \"f(x)\": 23.47259484830159}, {\"x\": 24.48979591836735, \"f(x)\": 24.367096860855035}, {\"x\": 25.510204081632654, \"f(x)\": 25.261598873408474}, {\"x\": 26.53061224489796, \"f(x)\": 26.156100885961912}, {\"x\": 27.551020408163264, \"f(x)\": 27.05060289851535}, {\"x\": 28.571428571428573, \"f(x)\": 27.945104911068796}, {\"x\": 29.591836734693878, \"f(x)\": 28.839606923622235}, {\"x\": 30.612244897959183, \"f(x)\": 29.734108936175673}, {\"x\": 31.63265306122449, \"f(x)\": 30.62861094872912}, {\"x\": 32.6530612244898, \"f(x)\": 31.523112961282557}, {\"x\": 33.673469387755105, \"f(x)\": 32.417614973836}, {\"x\": 34.69387755102041, \"f(x)\": 33.312116986389434}, {\"x\": 35.714285714285715, \"f(x)\": 34.20661899894288}, {\"x\": 36.734693877551024, \"f(x)\": 35.101121011496325}, {\"x\": 37.755102040816325, \"f(x)\": 35.99562302404976}, {\"x\": 38.775510204081634, \"f(x)\": 36.8901250366032}, {\"x\": 39.79591836734694, \"f(x)\": 37.78462704915665}, {\"x\": 40.816326530612244, \"f(x)\": 38.679129061710086}, {\"x\": 41.83673469387755, \"f(x)\": 39.573631074263524}, {\"x\": 42.85714285714286, \"f(x)\": 40.46813308681697}, {\"x\": 43.87755102040816, \"f(x)\": 41.36263509937041}, {\"x\": 44.89795918367347, \"f(x)\": 42.257137111923846}, {\"x\": 45.91836734693878, \"f(x)\": 43.15163912447729}, {\"x\": 46.93877551020408, \"f(x)\": 44.04614113703073}, {\"x\": 47.95918367346939, \"f(x)\": 44.94064314958417}, {\"x\": 48.9795918367347, \"f(x)\": 45.835145162137614}, {\"x\": 50.0, \"f(x)\": 46.72964717469105}]}}, {\"mode\": \"vega-lite\"});\n",
-       "</script>"
-      ],
-      "text/plain": [
-       "alt.LayerChart(...)"
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "minI = -0.03\n",
-    "maxI = 0.03\n",
-    "cutoffvalues = (minI, maxI)\n",
-    "\n",
-    "ctlm.refine_evaluated_range(cutoffvalues)\n",
-    "\n",
-    "print(ctlm.R_statistics)\n",
-    "\n",
-    "display(alt.layer(*ctlm.construct_ui_charts(), *ctlm.contruct_lin_reg_fit_charts()))\n",
-    "\n",
-    "CTLM = alt.Chart(ctlm.RT0).mark_point(color=rwthcolors['blau']).encode(x='d/µm', y='R_T/Ohm').interactive()\n",
-    "CTLM_RT0_fit = alt.Chart(ctlm.eval0.df).mark_line(color=rwthcolors['bordeaux']).encode(x='x', y='f(x)')\n",
-    "CTLM_RT1_fit = alt.Chart(ctlm.eval1.df).mark_line(color=rwthcolors['violett']).encode(x='x', y='f(x)')\n",
-    "CTLM_RT2_fit = alt.Chart(ctlm.eval2.df).mark_line(color=rwthcolors['lila']).encode(x='x', y='f(x)')\n",
-    "\n",
-    "print(\"Path:\\n\", ctlm.path, \"\\n\", sep = \"\")\n",
-    "print(\"Files: {}, {}, {}, {}, {} \\n\".format(*ctlm.files))\n",
-    "\n",
-    "header = \"Feld            Rsh      R²     Rc       LT     rhoc      I_min   I_max   #_removed_values\"\n",
-    "units =  \"-               [Ohm/sq] -      [Ohm*mm] [µm]   [Ohm*cm²] [A]     [A]     -\"\n",
-    "format_string = \"{:<14} {:7.2f} {:8.4f} {:6.2f} {:8.2f} {:8.2e} {: 6.4f} {: 5.4f} {}\"\n",
-    "line0 =  format_string.format(ctlm.files[0],\n",
-    "                              ctlm.eval0.Rsh,\n",
-    "                              ctlm.eval0.R2,\n",
-    "                              ctlm.eval0.Rc,\n",
-    "                              ctlm.eval0.LT,\n",
-    "                              ctlm.eval0.rhoc,\n",
-    "                              minI,\n",
-    "                              maxI,\n",
-    "                              0,\n",
-    "                             )\n",
-    "line1 =  format_string.format(ctlm.files[0],\n",
-    "                                ctlm.eval1.Rsh,\n",
-    "                                ctlm.eval1.R2,\n",
-    "                                ctlm.eval1.Rc,\n",
-    "                                ctlm.eval1.LT,\n",
-    "                                ctlm.eval1.rhoc,\n",
-    "                                minI,\n",
-    "                                maxI,\n",
-    "                                1,\n",
-    "                               )\n",
-    "line2 =  format_string.format(ctlm.files[0],\n",
-    "                            ctlm.eval2.Rsh,\n",
-    "                            ctlm.eval2.R2,\n",
-    "                            ctlm.eval2.Rc,\n",
-    "                            ctlm.eval2.LT,\n",
-    "                            ctlm.eval2.rhoc,\n",
-    "                            minI,\n",
-    "                            maxI,\n",
-    "                            2,\n",
-    "                           )\n",
-    "\n",
-    "result_path = ctlm.path + \"/CTLM_results.txt\"\n",
-    "if not os.path.exists(result_path):\n",
-    "    with open(result_path, 'w') as f:\n",
-    "        f.write(header)\n",
-    "        f.write(os.linesep)\n",
-    "        f.write(units)\n",
-    "        f.write(os.linesep)\n",
-    "with open(result_path, \"a\") as f:\n",
-    "    f.write(line0)\n",
-    "    f.write(os.linesep)\n",
-    "    f.write(line1)\n",
-    "    f.write(os.linesep)\n",
-    "    f.write(line2)\n",
-    "    f.write(os.linesep)\n",
-    "\n",
-    "print(header)\n",
-    "print(units)\n",
-    "print(line0)\n",
-    "print(line1)\n",
-    "print(line2)\n",
-    "\n",
-    "display(alt.layer(CTLM, CTLM_RT0_fit, CTLM_RT1_fit, CTLM_RT2_fit))"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "id": "1337afe2",
-   "metadata": {},
-   "outputs": [],
-   "source": []
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "id": "2d915e86",
-   "metadata": {},
-   "outputs": [],
-   "source": []
-  }
- ],
- "metadata": {
-  "kernelspec": {
-   "display_name": "Python 3 (ipykernel)",
-   "language": "python",
-   "name": "python3"
-  },
-  "language_info": {
-   "codemirror_mode": {
-    "name": "ipython",
-    "version": 3
-   },
-   "file_extension": ".py",
-   "mimetype": "text/x-python",
-   "name": "python",
-   "nbconvert_exporter": "python",
-   "pygments_lexer": "ipython3",
-   "version": "3.10.4"
-  }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}