345 lines
104 KiB
Plaintext

{
"cells": [
{
"cell_type": "code",
"execution_count": 55,
"id": "af118d77-d87a-4687-be5b-e810a24c403e",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"2024-06-26 13:01:06 +0000 | io:INFO | Loaded TOML config file successfully.\n"
]
}
],
"source": [
"from lang_main import io\n",
"\n",
"from pathlib import Path\n",
"import pickle\n",
"import base64"
]
},
{
"cell_type": "code",
"execution_count": 56,
"id": "4256081a-6364-4e8f-8cfd-799912ca6b94",
"metadata": {},
"outputs": [],
"source": [
"res_path = Path(r'A:\\Arbeitsaufgaben\\lang-main\\scripts\\results\\test_20240619')\n",
"assert res_path.exists()"
]
},
{
"cell_type": "code",
"execution_count": 121,
"id": "e9a92ad6-5e63-49c4-b9e7-9f81da8549fe",
"metadata": {},
"outputs": [],
"source": [
"# obj = 'TK-GRAPH_POSTPROCESSING.pkl'\n",
"obj = 'TK-GRAPH_ANALYSIS.pkl'\n",
"load_pth = res_path / obj\n",
"assert load_pth.exists()"
]
},
{
"cell_type": "code",
"execution_count": 122,
"id": "c2421d89-ed8c-41dd-b363-ad5b5b716704",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"2024-06-26 13:22:38 +0000 | io:INFO | Loaded file successfully.\n"
]
}
],
"source": [
"ret = io.load_pickle(load_pth)"
]
},
{
"cell_type": "code",
"execution_count": 123,
"id": "ca25a7f2-84af-4b5e-89d6-b139fca35617",
"metadata": {},
"outputs": [],
"source": [
"tkg = ret[0]"
]
},
{
"cell_type": "code",
"execution_count": 124,
"id": "ff7e7ab6-67d9-4a2c-b668-cf10740f7542",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"TokenGraph(name: TokenGraph, number of nodes: 143, number of edges: 163)"
]
},
"execution_count": 124,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"tkg"
]
},
{
"cell_type": "code",
"execution_count": 125,
"id": "f0df3580-cea5-48cc-bdbc-2927dd446e1b",
"metadata": {},
"outputs": [],
"source": [
"import networkx as nx\n",
"from alph import alph, layout\n",
"import altair as alt"
]
},
{
"cell_type": "markdown",
"id": "f042b302-fa3c-45b0-8d7a-7a68b66bf595",
"metadata": {},
"source": [
"layout_fn=lambda g: nx.spring_layout(\n",
" g,\n",
" weight=\"weight\",\n",
" k=20,\n",
" iterations=5000,\n",
" seed=42\n",
" ),\n",
"layout_fn=lambda g: layout.force_atlas_sknet(\n",
" g,\n",
" n_iter=100,\n",
" gravity_factor=0.01,\n",
" repulsive_factor=0.1,\n",
" init_seed=42,\n",
" ),"
]
},
{
"cell_type": "code",
"execution_count": 257,
"id": "04d3d857-37cb-420e-8426-b1465d94efae",
"metadata": {},
"outputs": [],
"source": [
"alph_params = dict(\n",
" weight_attr=\"weight\",\n",
" layout_fn=lambda g: nx.nx_agraph.pygraphviz_layout(\n",
" g,\n",
" prog=\"fdp\",\n",
" args='-GK=5'\n",
" ),\n",
" node_args=dict(\n",
" size=alt.Size(\n",
" \"degree_centrality\",\n",
" scale=alt.Scale(domain=[0,1], range=[12**2, 40**2]),\n",
" legend=None\n",
" ),\n",
" #fill=alt.Color(\n",
" # \"degree_centrality\",\n",
" # scale=alt.Scale(domain=companies, range=palette),\n",
" #),\n",
" stroke=\"#333\",\n",
" strokeWidth=alt.Size(\n",
" \"degree_centrality\",\n",
" scale=alt.Scale(domain=[0,1], range=[2, 5]),\n",
" legend=None\n",
" ),\n",
" tooltip_attrs=[\"id\"],\n",
" label_attr=\"id\",\n",
" ),\n",
" edge_args=dict(\n",
" color=\"#000\",\n",
" ),\n",
" width=800,\n",
" height=600,\n",
")"
]
},
{
"cell_type": "code",
"execution_count": 258,
"id": "64e6a5c1-e42d-4ad2-8c32-5cf62bc75852",
"metadata": {},
"outputs": [],
"source": [
"nx.set_node_attributes(tkg, {\n",
" n: {\n",
" \"id\": n,\n",
" } for n in tkg.nodes\n",
"})"
]
},
{
"cell_type": "code",
"execution_count": 259,
"id": "7e895f70-74a2-433c-91c2-a440303ab81a",
"metadata": {},
"outputs": [],
"source": [
"nx.set_node_attributes(tkg, nx.degree_centrality(tkg), \"degree_centrality\")"
]
},
{
"cell_type": "code",
"execution_count": 260,
"id": "a13cc710-01d8-4f52-b066-3796b4609118",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"<style>\n",
" #altair-viz-38e34bc18fd4437a8f1807f1ca9e4725.vega-embed {\n",
" width: 100%;\n",
" display: flex;\n",
" }\n",
"\n",
" #altair-viz-38e34bc18fd4437a8f1807f1ca9e4725.vega-embed details,\n",
" #altair-viz-38e34bc18fd4437a8f1807f1ca9e4725.vega-embed details summary {\n",
" position: relative;\n",
" }\n",
"</style>\n",
"<div id=\"altair-viz-38e34bc18fd4437a8f1807f1ca9e4725\"></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-38e34bc18fd4437a8f1807f1ca9e4725\") {\n",
" outputDiv = document.getElementById(\"altair-viz-38e34bc18fd4437a8f1807f1ca9e4725\");\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@5.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\", \"5.17.0\"))\n",
" .then(() => maybeLoadScript(\"vega-embed\", \"6\"))\n",
" .catch(showError)\n",
" .then(() => displayChart(vegaEmbed));\n",
" }\n",
" })({\"config\": {\"view\": {\"continuousWidth\": 300, \"continuousHeight\": 300, \"strokeWidth\": 0}}, \"layer\": [{\"data\": {\"name\": \"data-aa72c4a558310302697b60639cd372dd\"}, \"mark\": {\"type\": \"line\"}, \"encoding\": {\"color\": {\"value\": \"#000\"}, \"detail\": {\"field\": \"edge\", \"type\": \"quantitative\"}, \"opacity\": {\"field\": \"weight\", \"legend\": null, \"scale\": {\"range\": [0.3, 1]}, \"type\": \"quantitative\"}, \"strokeWidth\": {\"field\": \"weight\", \"legend\": null, \"scale\": {\"range\": [0.1, 5]}, \"type\": \"quantitative\"}, \"x\": {\"axis\": {\"domain\": false, \"grid\": false, \"labels\": false, \"ticks\": false, \"title\": \"\"}, \"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"axis\": {\"domain\": false, \"grid\": false, \"labels\": false, \"ticks\": false, \"title\": \"\"}, \"field\": \"y\", \"type\": \"quantitative\"}}}, {\"layer\": [{\"mark\": {\"type\": \"circle\"}, \"encoding\": {\"fill\": {\"value\": \"#000\"}, \"opacity\": {\"value\": 1}, \"size\": {\"field\": \"degree_centrality\", \"legend\": null, \"scale\": {\"domain\": [0, 1], \"range\": [144, 1600]}, \"type\": \"quantitative\"}, \"stroke\": {\"value\": \"#333\"}, \"strokeWidth\": {\"field\": \"degree_centrality\", \"legend\": null, \"scale\": {\"domain\": [0, 1], \"range\": [2, 5]}, \"type\": \"quantitative\"}, \"tooltip\": [{\"field\": \"id\", \"type\": \"nominal\"}], \"x\": {\"axis\": {\"domain\": false, \"grid\": false, \"labels\": false, \"ticks\": false, \"title\": \"\"}, \"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"axis\": {\"domain\": false, \"grid\": false, \"labels\": false, \"ticks\": false, \"title\": \"\"}, \"field\": \"y\", \"type\": \"quantitative\"}}}, {\"mark\": {\"type\": \"text\", \"align\": \"center\", \"baseline\": \"middle\", \"color\": \"black\", \"size\": 10}, \"encoding\": {\"text\": {\"field\": \"id\", \"type\": \"nominal\"}, \"x\": {\"axis\": {\"domain\": false, \"grid\": false, \"labels\": false, \"ticks\": false, \"title\": \"\"}, \"field\": \"x\", \"type\": \"quantitative\"}, \"y\": {\"axis\": {\"domain\": false, \"grid\": false, \"labels\": false, \"ticks\": false, \"title\": \"\"}, \"field\": \"__y_label\", \"type\": \"quantitative\"}}}], \"data\": {\"name\": \"data-9c8dfa733adb65d964260e658cca7ff7\"}}], \"height\": 600, \"resolve\": {\"scale\": {\"color\": \"independent\", \"fill\": \"independent\", \"opacity\": \"independent\", \"size\": \"independent\", \"strokeWidth\": \"independent\"}}, \"width\": 800, \"$schema\": \"https://vega.github.io/schema/vega-lite/v5.17.0.json\", \"datasets\": {\"data-aa72c4a558310302697b60639cd372dd\": [{\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 89.60891743812581, \"y\": 271.1222369166824, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"Vorgabe\"], \"target\": \"Vorgabe\", \"weight\": 92690, \"edge\": 0}, {\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 217.00358964670318, \"y\": 298.95144530512, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"Vorgabe\"], \"target\": \"Vorgabe\", \"weight\": 92690, \"edge\": 0}, {\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 89.60891743812581, \"y\": 271.1222369166824, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"Maschinenhersteller\"], \"target\": \"Maschinenhersteller\", \"weight\": 92690, \"edge\": 1}, {\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 95.86245985263555, \"y\": 335.40997543925937, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"Maschinenhersteller\"], \"target\": \"Maschinenhersteller\", \"weight\": 92690, \"edge\": 1}, {\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 89.60891743812581, \"y\": 271.1222369166824, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"Maschinenbediener\"], \"target\": \"Maschinenbediener\", \"weight\": 242, \"edge\": 2}, {\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 22.542981296051387, \"y\": 308.9977328547138, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"Maschinenbediener\"], \"target\": \"Maschinenbediener\", \"weight\": 242, \"edge\": 2}, {\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 89.60891743812581, \"y\": 271.1222369166824, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"Laserabteilung\"], \"target\": \"Laserabteilung\", \"weight\": 242, \"edge\": 3}, {\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 12.063291139240507, \"y\": 277.58360098242963, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"Laserabteilung\"], \"target\": \"Laserabteilung\", \"weight\": 242, \"edge\": 3}, {\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 89.60891743812581, \"y\": 271.1222369166824, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"Arbeitsplan\"], \"target\": \"Arbeitsplan\", \"weight\": 244, \"edge\": 4}, {\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 166.91668241073114, \"y\": 308.89854524844134, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"Arbeitsplan\"], \"target\": \"Arbeitsplan\", \"weight\": 244, \"edge\": 4}, {\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 89.60891743812581, \"y\": 271.1222369166824, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"abarbeiten\"], \"target\": \"abarbeiten\", \"weight\": 242, \"edge\": 5}, {\"source\": \"Wartungst\\u00e4tigkeit\", \"x\": 249.00812393727566, \"y\": 157.69412431513322, \"pair\": [\"Wartungst\\u00e4tigkeit\", \"abarbeiten\"], \"target\": \"abarbeiten\", \"weight\": 242, \"edge\": 5}, {\"source\": \"Vorgabe\", \"x\": 217.00358964670318, \"y\": 298.95144530512, \"pair\": [\"Vorgabe\", \"Maschinenhersteller\"], \"target\": \"Maschinenhersteller\", \"weight\": 92690, \"edge\": 6}, {\"source\": \"Vorgabe\", \"x\": 95.86245985263555, \"y\": 335.40997543925937, \"pair\": [\"Vorgabe\", \"Maschinenhersteller\"], \"target\": \"Maschinenhersteller\", \"weight\": 92690, \"edge\": 6}, {\"source\": \"Vorgabe\", \"x\": 217.00358964670318, \"y\": 298.95144530512, \"pair\": [\"Vorgabe\", \"Wartungsplan\"], \"target\": \"Wartungsplan\", \"weight\": 2032, \"edge\": 7}, {\"source\": \"Vorgabe\", \"x\": 203.83525410920086, \"y\": 261.89778953334593, \"pair\": [\"Vorgabe\", \"Wartungsplan\"], \"target\": \"Wartungsplan\", \"weight\": 2032, \"edge\": 7}, {\"source\": \"Vorgabe\", \"x\": 217.00358964670318, \"y\": 298.95144530512, \"pair\": [\"Vorgabe\", \"sehen\"], \"target\": \"sehen\", \"weight\": 1250, \"edge\": 8}, {\"source\": \"Vorgabe\", \"x\": 228.32042320045343, \"y\": 286.822218023805, \"pair\": [\"Vorgabe\", \"sehen\"], \"target\": \"sehen\", \"weight\": 1250, \"edge\": 8}, {\"source\": \"Vorgabe\", \"x\": 217.00358964670318, \"y\": 298.95144530512, \"pair\": [\"Vorgabe\", \"Extradatum\"], \"target\": \"Extradatum\", \"weight\": 1250, \"edge\": 9}, {\"source\": \"Vorgabe\", \"x\": 274.49461552994524, \"y\": 283.46400906858116, \"pair\": [\"Vorgabe\", \"Extradatum\"], \"target\": \"Extradatum\", \"weight\": 1250, \"edge\": 9}, {\"source\": \"Sichtkontrolle\", \"x\": 463.5367466465143, \"y\": 315.7424900812394, \"pair\": [\"Sichtkontrolle\", \"Reinigung\"], \"target\": \"Reinigung\", \"weight\": 3113, \"edge\": 10}, {\"source\": \"Sichtkontrolle\", \"x\": 531.0221046665406, \"y\": 357.3304364254676, \"pair\": [\"Sichtkontrolle\", \"Reinigung\"], \"target\": \"Reinigung\", \"weight\": 3113, \"edge\": 10}, {\"source\": \"Reinigung\", \"x\": 531.0221046665406, \"y\": 357.3304364254676, \"pair\": [\"Reinigung\", \"Sichtkontrolle\"], \"target\": \"Sichtkontrolle\", \"weight\": 240, \"edge\": 11}, {\"source\": \"Reinigung\", \"x\": 463.5367466465143, \"y\": 315.7424900812394, \"pair\": [\"Reinigung\", \"Sichtkontrolle\"], \"target\": \"Sichtkontrolle\", \"weight\": 240, \"edge\": 11}, {\"source\": \"Reinigung\", \"x\": 531.0221046665406, \"y\": 357.3304364254676, \"pair\": [\"Reinigung\", \"Bedarf\"], \"target\": \"Bedarf\", \"weight\": 276, \"edge\": 12}, {\"source\": \"Reinigung\", \"x\": 596.3347817872661, \"y\": 334.3897600604572, \"pair\": [\"Reinigung\", \"Bedarf\"], \"target\": \"Bedarf\", \"weight\": 276, \"edge\": 12}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 581.5605516720195, \"y\": 141.48828641602117, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"\\u00d6labscheider\"], \"target\": \"\\u00d6labscheider\", \"weight\": 1622, \"edge\": 13}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 537.5401473644436, \"y\": 209.4558851313055, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"\\u00d6labscheider\"], \"target\": \"\\u00d6labscheider\", \"weight\": 1622, \"edge\": 13}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 581.5605516720195, \"y\": 141.48828641602117, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"Leiter\"], \"target\": \"Leiter\", \"weight\": 504, \"edge\": 14}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 693.4252786699415, \"y\": 145.0122803703004, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"Leiter\"], \"target\": \"Leiter\", \"weight\": 504, \"edge\": 14}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 581.5605516720195, \"y\": 141.48828641602117, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"Kompensator\"], \"target\": \"Kompensator\", \"weight\": 200, \"edge\": 15}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 536.8600037785754, \"y\": 68.88720952201021, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"Kompensator\"], \"target\": \"Kompensator\", \"weight\": 200, \"edge\": 15}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 581.5605516720195, \"y\": 141.48828641602117, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"Verschlei\\u00df\"], \"target\": \"Verschlei\\u00df\", \"weight\": 200, \"edge\": 16}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 655.318344983941, \"y\": 103.98545248441339, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"Verschlei\\u00df\"], \"target\": \"Verschlei\\u00df\", \"weight\": 200, \"edge\": 16}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 581.5605516720195, \"y\": 141.48828641602117, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"Dichtigkeit\"], \"target\": \"Dichtigkeit\", \"weight\": 212, \"edge\": 17}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 637.5023616096731, \"y\": 171.778764405819, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"Dichtigkeit\"], \"target\": \"Dichtigkeit\", \"weight\": 212, \"edge\": 17}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 581.5605516720195, \"y\": 141.48828641602117, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"Akku\"], \"target\": \"Akku\", \"weight\": 165, \"edge\": 18}, {\"source\": \"\\u00dcberpr\\u00fcfung\", \"x\": 519.7430568675609, \"y\": 162.7385225769885, \"pair\": [\"\\u00dcberpr\\u00fcfung\", \"Akku\"], \"target\": \"Akku\", \"weight\": 165, \"edge\": 18}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"C-Anlage\"], \"target\": \"C-Anlage\", \"weight\": 1265, \"edge\": 19}, {\"source\": \"Kontrolle\", \"x\": 551.4075193651993, \"y\": 468.1088229737389, \"pair\": [\"Kontrolle\", \"C-Anlage\"], \"target\": \"C-Anlage\", \"weight\": 1265, \"edge\": 19}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"Stabbreithalter\"], \"target\": \"Stabbreithalter\", \"weight\": 687, \"edge\": 20}, {\"source\": \"Kontrolle\", \"x\": 501.60589457774415, \"y\": 525.3117324768563, \"pair\": [\"Kontrolle\", \"Stabbreithalter\"], \"target\": \"Stabbreithalter\", \"weight\": 687, \"edge\": 20}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"Kompressorstation\"], \"target\": \"Kompressorstation\", \"weight\": 617, \"edge\": 21}, {\"source\": \"Kontrolle\", \"x\": 434.8762516531268, \"y\": 503.30625354241454, \"pair\": [\"Kontrolle\", \"Kompressorstation\"], \"target\": \"Kompressorstation\", \"weight\": 617, \"edge\": 21}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"Wasseraufbereitungsanlage\"], \"target\": \"Wasseraufbereitungsanlage\", \"weight\": 521, \"edge\": 22}, {\"source\": \"Kontrolle\", \"x\": 588.3619875307008, \"y\": 501.96013602871716, \"pair\": [\"Kontrolle\", \"Wasseraufbereitungsanlage\"], \"target\": \"Wasseraufbereitungsanlage\", \"weight\": 521, \"edge\": 22}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"Heizungsanlage\"], \"target\": \"Heizungsanlage\", \"weight\": 520, \"edge\": 23}, {\"source\": \"Kontrolle\", \"x\": 403.7030039675043, \"y\": 462.28509351974304, \"pair\": [\"Kontrolle\", \"Heizungsanlage\"], \"target\": \"Heizungsanlage\", \"weight\": 520, \"edge\": 23}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"Druckkontrolle\"], \"target\": \"Druckkontrolle\", \"weight\": 487, \"edge\": 24}, {\"source\": \"Kontrolle\", \"x\": 563.4611751369733, \"y\": 432.88305308898543, \"pair\": [\"Kontrolle\", \"Druckkontrolle\"], \"target\": \"Druckkontrolle\", \"weight\": 487, \"edge\": 24}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"Rieme\"], \"target\": \"Rieme\", \"weight\": 198, \"edge\": 25}, {\"source\": \"Kontrolle\", \"x\": 403.7407897222747, \"y\": 423.6727753636879, \"pair\": [\"Kontrolle\", \"Rieme\"], \"target\": \"Rieme\", \"weight\": 198, \"edge\": 25}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"Gesamtanlage\"], \"target\": \"Gesamtanlage\", \"weight\": 332, \"edge\": 26}, {\"source\": \"Kontrolle\", \"x\": 421.2733799357643, \"y\": 533.4734555072738, \"pair\": [\"Kontrolle\", \"Gesamtanlage\"], \"target\": \"Gesamtanlage\", \"weight\": 332, \"edge\": 26}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"Besch\\u00e4digung\"], \"target\": \"Besch\\u00e4digung\", \"weight\": 357, \"edge\": 27}, {\"source\": \"Kontrolle\", \"x\": 414.7742301152466, \"y\": 486.4301908180616, \"pair\": [\"Kontrolle\", \"Besch\\u00e4digung\"], \"target\": \"Besch\\u00e4digung\", \"weight\": 357, \"edge\": 27}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"Erste-Hilfe-Koffer\"], \"target\": \"Erste-Hilfe-Koffer\", \"weight\": 160, \"edge\": 28}, {\"source\": \"Kontrolle\", \"x\": 496.4292461741923, \"y\": 506.49442660117137, \"pair\": [\"Kontrolle\", \"Erste-Hilfe-Koffer\"], \"target\": \"Erste-Hilfe-Koffer\", \"weight\": 160, \"edge\": 28}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"Pflasterschrank\"], \"target\": \"Pflasterschrank\", \"weight\": 160, \"edge\": 29}, {\"source\": \"Kontrolle\", \"x\": 443.5480823729454, \"y\": 405.209710938976, \"pair\": [\"Kontrolle\", \"Pflasterschrank\"], \"target\": \"Pflasterschrank\", \"weight\": 160, \"edge\": 29}, {\"source\": \"Kontrolle\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"Kontrolle\", \"Reinigung\"], \"target\": \"Reinigung\", \"weight\": 269, \"edge\": 30}, {\"source\": \"Kontrolle\", \"x\": 531.0221046665406, \"y\": 357.3304364254676, \"pair\": [\"Kontrolle\", \"Reinigung\"], \"target\": \"Reinigung\", \"weight\": 269, \"edge\": 30}, {\"source\": \"Scharniere\", \"x\": 25.492159455885133, \"y\": 134.97732854713774, \"pair\": [\"Scharniere\", \"--\"], \"target\": \"--\", \"weight\": 1323, \"edge\": 31}, {\"source\": \"Scharniere\", \"x\": 57.63083317589269, \"y\": 165.7424900812394, \"pair\": [\"Scharniere\", \"--\"], \"target\": \"--\", \"weight\": 1323, \"edge\": 31}, {\"source\": \"Schlie\\u00dfvorrichtung\", \"x\": 304.1375401473644, \"y\": 183.24201775930476, \"pair\": [\"Schlie\\u00dfvorrichtung\", \"Schlo\\u00df\"], \"target\": \"Schlo\\u00df\", \"weight\": 1371, \"edge\": 32}, {\"source\": \"Schlie\\u00dfvorrichtung\", \"x\": 335.1974305686756, \"y\": 212.9841299829964, \"pair\": [\"Schlie\\u00dfvorrichtung\", \"Schlo\\u00df\"], \"target\": \"Schlo\\u00df\", \"weight\": 1371, \"edge\": 32}, {\"source\": \"machen\", \"x\": 424.9008123937275, \"y\": 38.74267901001323, \"pair\": [\"machen\", \"Filter\"], \"target\": \"Filter\", \"weight\": 487, \"edge\": 33}, {\"source\": \"machen\", \"x\": 466.8430001889288, \"y\": 78.90940865293784, \"pair\": [\"machen\", \"Filter\"], \"target\": \"Filter\", \"weight\": 487, \"edge\": 33}, {\"source\": \"Analyse\", \"x\": 248.42244473833367, \"y\": 327.81503873039867, \"pair\": [\"Analyse\", \"Kesselwasser\"], \"target\": \"Kesselwasser\", \"weight\": 386, \"edge\": 34}, {\"source\": \"Analyse\", \"x\": 298.3374267901001, \"y\": 375.6092952956736, \"pair\": [\"Analyse\", \"Kesselwasser\"], \"target\": \"Kesselwasser\", \"weight\": 386, \"edge\": 34}, {\"source\": \"\\u00fcberpr\\u00fcfen\", \"x\": 122.02153788021917, \"y\": 363.94766672964295, \"pair\": [\"\\u00fcberpr\\u00fcfen\", \"Wasserverbrauch\"], \"target\": \"Wasserverbrauch\", \"weight\": 386, \"edge\": 35}, {\"source\": \"\\u00fcberpr\\u00fcfen\", \"x\": 171.94596637067824, \"y\": 411.74192329491785, \"pair\": [\"\\u00fcberpr\\u00fcfen\", \"Wasserverbrauch\"], \"target\": \"Wasserverbrauch\", \"weight\": 386, \"edge\": 35}, {\"source\": \"auff\\u00fcllen\", \"x\": 195.05006612507088, \"y\": 128.57972794256565, \"pair\": [\"auff\\u00fcllen\", \"Desifektionsmittel\"], \"target\": \"Desifektionsmittel\", \"weight\": 303, \"edge\": 36}, {\"source\": \"auff\\u00fcllen\", \"x\": 174.98394105422256, \"y\": 187.407897222747, \"pair\": [\"auff\\u00fcllen\", \"Desifektionsmittel\"], \"target\": \"Desifektionsmittel\", \"weight\": 303, \"edge\": 36}, {\"source\": \"auff\\u00fcllen\", \"x\": 195.05006612507088, \"y\": 128.57972794256565, \"pair\": [\"auff\\u00fcllen\", \"Aschenbecher\"], \"target\": \"Aschenbecher\", \"weight\": 303, \"edge\": 37}, {\"source\": \"auff\\u00fcllen\", \"x\": 260.23049310409976, \"y\": 122.93737011146798, \"pair\": [\"auff\\u00fcllen\", \"Aschenbecher\"], \"target\": \"Aschenbecher\", \"weight\": 303, \"edge\": 37}, {\"source\": \"leeren\", \"x\": 300.7557150954091, \"y\": 157.12733799357645, \"pair\": [\"leeren\", \"Aschenbecher\"], \"target\": \"Aschenbecher\", \"weight\": 303, \"edge\": 38}, {\"source\": \"leeren\", \"x\": 260.23049310409976, \"y\": 122.93737011146798, \"pair\": [\"leeren\", \"Aschenbecher\"], \"target\": \"Aschenbecher\", \"weight\": 303, \"edge\": 38}, {\"source\": \"Wartung\", \"x\": 473.70111467976574, \"y\": 195.30039675042508, \"pair\": [\"Wartung\", \"Toilette\"], \"target\": \"Toilette\", \"weight\": 231, \"edge\": 39}, {\"source\": \"Wartung\", \"x\": 493.44417154732673, \"y\": 250.00944643869263, \"pair\": [\"Wartung\", \"Toilette\"], \"target\": \"Toilette\", \"weight\": 231, \"edge\": 39}, {\"source\": \"Wartung\", \"x\": 473.70111467976574, \"y\": 195.30039675042508, \"pair\": [\"Wartung\", \"K\\u00fchlturm\"], \"target\": \"K\\u00fchlturm\", \"weight\": 198, \"edge\": 40}, {\"source\": \"Wartung\", \"x\": 531.0221046665406, \"y\": 220.59323634989607, \"pair\": [\"Wartung\", \"K\\u00fchlturm\"], \"target\": \"K\\u00fchlturm\", \"weight\": 198, \"edge\": 40}, {\"source\": \"Wartungsplan\", \"x\": 203.83525410920086, \"y\": 261.89778953334593, \"pair\": [\"Wartungsplan\", \"sehen\"], \"target\": \"sehen\", \"weight\": 1248, \"edge\": 41}, {\"source\": \"Wartungsplan\", \"x\": 228.32042320045343, \"y\": 286.822218023805, \"pair\": [\"Wartungsplan\", \"sehen\"], \"target\": \"sehen\", \"weight\": 1248, \"edge\": 41}, {\"source\": \"Wartungsplan\", \"x\": 203.83525410920086, \"y\": 261.89778953334593, \"pair\": [\"Wartungsplan\", \"Extradatum\"], \"target\": \"Extradatum\", \"weight\": 1248, \"edge\": 42}, {\"source\": \"Wartungsplan\", \"x\": 274.49461552994524, \"y\": 283.46400906858116, \"pair\": [\"Wartungsplan\", \"Extradatum\"], \"target\": \"Extradatum\", \"weight\": 1248, \"edge\": 42}, {\"source\": \"sehen\", \"x\": 228.32042320045343, \"y\": 286.822218023805, \"pair\": [\"sehen\", \"Extradatum\"], \"target\": \"Extradatum\", \"weight\": 1956, \"edge\": 43}, {\"source\": \"sehen\", \"x\": 274.49461552994524, \"y\": 283.46400906858116, \"pair\": [\"sehen\", \"Extradatum\"], \"target\": \"Extradatum\", \"weight\": 1956, \"edge\": 43}, {\"source\": \"sehen\", \"x\": 228.32042320045343, \"y\": 286.822218023805, \"pair\": [\"sehen\", \"Arbeitsplan\"], \"target\": \"Arbeitsplan\", \"weight\": 209, \"edge\": 44}, {\"source\": \"sehen\", \"x\": 166.91668241073114, \"y\": 308.89854524844134, \"pair\": [\"sehen\", \"Arbeitsplan\"], \"target\": \"Arbeitsplan\", \"weight\": 209, \"edge\": 44}, {\"source\": \"sehen\", \"x\": 228.32042320045343, \"y\": 286.822218023805, \"pair\": [\"sehen\", \"Vorbelegung\"], \"target\": \"Vorbelegung\", \"weight\": 572, \"edge\": 45}, {\"source\": \"sehen\", \"x\": 334.12053655771774, \"y\": 291.0589457774419, \"pair\": [\"sehen\", \"Vorbelegung\"], \"target\": \"Vorbelegung\", \"weight\": 572, \"edge\": 45}, {\"source\": \"Verschlei\\u00df\", \"x\": 655.318344983941, \"y\": 103.98545248441339, \"pair\": [\"Verschlei\\u00df\", \"Dichtigkeit\"], \"target\": \"Dichtigkeit\", \"weight\": 200, \"edge\": 46}, {\"source\": \"Verschlei\\u00df\", \"x\": 637.5023616096731, \"y\": 171.778764405819, \"pair\": [\"Verschlei\\u00df\", \"Dichtigkeit\"], \"target\": \"Dichtigkeit\", \"weight\": 200, \"edge\": 46}, {\"source\": \"schmieren\", \"x\": 394.7099943321367, \"y\": 403.83525410920083, \"pair\": [\"schmieren\", \"Kontrolle\"], \"target\": \"Kontrolle\", \"weight\": 198, \"edge\": 47}, {\"source\": \"schmieren\", \"x\": 463.38560362743243, \"y\": 459.4653315699981, \"pair\": [\"schmieren\", \"Kontrolle\"], \"target\": \"Kontrolle\", \"weight\": 198, \"edge\": 47}, {\"source\": \"schmieren\", \"x\": 394.7099943321367, \"y\": 403.83525410920083, \"pair\": [\"schmieren\", \"Rieme\"], \"target\": \"Rieme\", \"weight\": 198, \"edge\": 48}, {\"source\": \"schmieren\", \"x\": 403.7407897222747, \"y\": 423.6727753636879, \"pair\": [\"schmieren\", \"Rieme\"], \"target\": \"Rieme\", \"weight\": 198, \"edge\": 48}, {\"source\": \"schmieren\", \"x\": 394.7099943321367, \"y\": 403.83525410920083, \"pair\": [\"schmieren\", \"Linearkugellager\"], \"target\": \"Linearkugellager\", \"weight\": 400, \"edge\": 49}, {\"source\": \"schmieren\", \"x\": 270.1870394861137, \"y\": 393.34970716040056, \"pair\": [\"schmieren\", \"Linearkugellager\"], \"target\": \"Linearkugellager\", \"weight\": 400, \"edge\": 49}, {\"source\": \"schmieren\", \"x\": 394.7099943321367, \"y\": 403.83525410920083, \"pair\": [\"schmieren\", \"Campen-Abwickler\"], \"target\": \"Campen-Abwickler\", \"weight\": 200, \"edge\": 50}, {\"source\": \"schmieren\", \"x\": 290.10013225014166, \"y\": 339.90175703759684, \"pair\": [\"schmieren\", \"Campen-Abwickler\"], \"target\": \"Campen-Abwickler\", \"weight\": 200, \"edge\": 50}, {\"source\": \"schmieren\", \"x\": 394.7099943321367, \"y\": 403.83525410920083, \"pair\": [\"schmieren\", \"Wumag-Trockner\"], \"target\": \"Wumag-Trockner\", \"weight\": 200, \"edge\": 51}, {\"source\": \"schmieren\", \"x\": 346.72208577366337, \"y\": 314.93481957302095, \"pair\": [\"schmieren\", \"Wumag-Trockner\"], \"target\": \"Wumag-Trockner\", \"weight\": 200, \"edge\": 51}, {\"source\": \"Maschinenbediener\", \"x\": 22.542981296051387, \"y\": 308.9977328547138, \"pair\": [\"Maschinenbediener\", \"Laserabteilung\"], \"target\": \"Laserabteilung\", \"weight\": 242, \"edge\": 52}, {\"source\": \"Maschinenbediener\", \"x\": 12.063291139240507, \"y\": 277.58360098242963, \"pair\": [\"Maschinenbediener\", \"Laserabteilung\"], \"target\": \"Laserabteilung\", \"weight\": 242, \"edge\": 52}, {\"source\": \"abarbeiten\", \"x\": 249.00812393727566, \"y\": 157.69412431513322, \"pair\": [\"abarbeiten\", \"Herr\"], \"target\": \"Herr\", \"weight\": 172, \"edge\": 53}, {\"source\": \"abarbeiten\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"abarbeiten\", \"Herr\"], \"target\": \"Herr\", \"weight\": 172, \"edge\": 53}, {\"source\": \"abarbeiten\", \"x\": 249.00812393727566, \"y\": 157.69412431513322, \"pair\": [\"abarbeiten\", \"F\\u00f6rster\"], \"target\": \"F\\u00f6rster\", \"weight\": 172, \"edge\": 54}, {\"source\": \"abarbeiten\", \"x\": 280.91819384092196, \"y\": 112.81173247685622, \"pair\": [\"abarbeiten\", \"F\\u00f6rster\"], \"target\": \"F\\u00f6rster\", \"weight\": 172, \"edge\": 54}, {\"source\": \"K\\u00fcsters-Anlage\", \"x\": 759.7203854146985, \"y\": 25.26450028339316, \"pair\": [\"K\\u00fcsters-Anlage\", \"Anlage\"], \"target\": \"Anlage\", \"weight\": 200, \"edge\": 55}, {\"source\": \"K\\u00fcsters-Anlage\", \"x\": 655.4694880030229, \"y\": 35.193179671263934, \"pair\": [\"K\\u00fcsters-Anlage\", \"Anlage\"], \"target\": \"Anlage\", \"weight\": 200, \"edge\": 55}, {\"source\": \"K\\u00fcsters-Anlage\", \"x\": 759.7203854146985, \"y\": 25.26450028339316, \"pair\": [\"K\\u00fcsters-Anlage\", \"Leckage\"], \"target\": \"Leckage\", \"weight\": 241, \"edge\": 56}, {\"source\": \"K\\u00fcsters-Anlage\", \"x\": 713.5839788399772, \"y\": 14.584829019459665, \"pair\": [\"K\\u00fcsters-Anlage\", \"Leckage\"], \"target\": \"Leckage\", \"weight\": 241, \"edge\": 56}, {\"source\": \"K\\u00fcsters-Anlage\", \"x\": 759.7203854146985, \"y\": 25.26450028339316, \"pair\": [\"K\\u00fcsters-Anlage\", \"pr\\u00fcfen\"], \"target\": \"pr\\u00fcfen\", \"weight\": 200, \"edge\": 57}, {\"source\": \"K\\u00fcsters-Anlage\", \"x\": 722.1046665407141, \"y\": 74.45446816550161, \"pair\": [\"K\\u00fcsters-Anlage\", \"pr\\u00fcfen\"], \"target\": \"pr\\u00fcfen\", \"weight\": 200, \"edge\": 57}, {\"source\": \"pr\\u00fcfen\", \"x\": 722.1046665407141, \"y\": 74.45446816550161, \"pair\": [\"pr\\u00fcfen\", \"Anlage\"], \"target\": \"Anlage\", \"weight\": 402, \"edge\": 58}, {\"source\": \"pr\\u00fcfen\", \"x\": 655.4694880030229, \"y\": 35.193179671263934, \"pair\": [\"pr\\u00fcfen\", \"Anlage\"], \"target\": \"Anlage\", \"weight\": 402, \"edge\": 58}, {\"source\": \"pr\\u00fcfen\", \"x\": 722.1046665407141, \"y\": 74.45446816550161, \"pair\": [\"pr\\u00fcfen\", \"Leckage\"], \"target\": \"Leckage\", \"weight\": 507, \"edge\": 59}, {\"source\": \"pr\\u00fcfen\", \"x\": 713.5839788399772, \"y\": 14.584829019459665, \"pair\": [\"pr\\u00fcfen\", \"Leckage\"], \"target\": \"Leckage\", \"weight\": 507, \"edge\": 59}, {\"source\": \"pr\\u00fcfen\", \"x\": 722.1046665407141, \"y\": 74.45446816550161, \"pair\": [\"pr\\u00fcfen\", \"Sitz\"], \"target\": \"Sitz\", \"weight\": 177, \"edge\": 60}, {\"source\": \"pr\\u00fcfen\", \"x\": 800.0, \"y\": 69.1691857169847, \"pair\": [\"pr\\u00fcfen\", \"Sitz\"], \"target\": \"Sitz\", \"weight\": 177, \"edge\": 60}, {\"source\": \"pr\\u00fcfen\", \"x\": 722.1046665407141, \"y\": 74.45446816550161, \"pair\": [\"pr\\u00fcfen\", \"Verschlei\\u00df\"], \"target\": \"Verschlei\\u00df\", \"weight\": 218, \"edge\": 61}, {\"source\": \"pr\\u00fcfen\", \"x\": 655.318344983941, \"y\": 103.98545248441339, \"pair\": [\"pr\\u00fcfen\", \"Verschlei\\u00df\"], \"target\": \"Verschlei\\u00df\", \"weight\": 218, \"edge\": 61}, {\"source\": \"abschmieren\", \"x\": 412.3370489325524, \"y\": 159.19610806725865, \"pair\": [\"abschmieren\", \"Lager\"], \"target\": \"Lager\", \"weight\": 200, \"edge\": 62}, {\"source\": \"abschmieren\", \"x\": 414.8309087474022, \"y\": 211.62384281126015, \"pair\": [\"abschmieren\", \"Lager\"], \"target\": \"Lager\", \"weight\": 200, \"edge\": 62}, {\"source\": \"abschmieren\", \"x\": 412.3370489325524, \"y\": 159.19610806725865, \"pair\": [\"abschmieren\", \"Campen-Aufwickler\"], \"target\": \"Campen-Aufwickler\", \"weight\": 200, \"edge\": 63}, {\"source\": \"abschmieren\", \"x\": 466.9752503306253, \"y\": 169.58246740978652, \"pair\": [\"abschmieren\", \"Campen-Aufwickler\"], \"target\": \"Campen-Aufwickler\", \"weight\": 200, \"edge\": 63}, {\"source\": \"Stand\", \"x\": 214.81201587001698, \"y\": 50.72170791611562, \"pair\": [\"Stand\", \"St\\u00f6ppel\"], \"target\": \"St\\u00f6ppel\", \"weight\": 1068, \"edge\": 64}, {\"source\": \"Stand\", \"x\": 220.49877196296995, \"y\": 105.21821273379935, \"pair\": [\"Stand\", \"St\\u00f6ppel\"], \"target\": \"St\\u00f6ppel\", \"weight\": 1068, \"edge\": 64}, {\"source\": \"Stand\", \"x\": 214.81201587001698, \"y\": 50.72170791611562, \"pair\": [\"Stand\", \"Moser\"], \"target\": \"Moser\", \"weight\": 216, \"edge\": 65}, {\"source\": \"Stand\", \"x\": 268.959002456074, \"y\": 80.44539958435671, \"pair\": [\"Stand\", \"Moser\"], \"target\": \"Moser\", \"weight\": 216, \"edge\": 65}, {\"source\": \"-Leiterpr\\u00fcfung\", \"x\": 320.40430757604383, \"y\": 51.754675987152844, \"pair\": [\"-Leiterpr\\u00fcfung\", \"Herr\"], \"target\": \"Herr\", \"weight\": 344, \"edge\": 66}, {\"source\": \"-Leiterpr\\u00fcfung\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"-Leiterpr\\u00fcfung\", \"Herr\"], \"target\": \"Herr\", \"weight\": 344, \"edge\": 66}, {\"source\": \"-Leiterpr\\u00fcfung\", \"x\": 320.40430757604383, \"y\": 51.754675987152844, \"pair\": [\"-Leiterpr\\u00fcfung\", \"Buschmann\"], \"target\": \"Buschmann\", \"weight\": 172, \"edge\": 67}, {\"source\": \"-Leiterpr\\u00fcfung\", \"x\": 348.42244473833364, \"y\": 51.71216701303609, \"pair\": [\"-Leiterpr\\u00fcfung\", \"Buschmann\"], \"target\": \"Buschmann\", \"weight\": 172, \"edge\": 67}, {\"source\": \"-Leiterpr\\u00fcfung\", \"x\": 320.40430757604383, \"y\": 51.754675987152844, \"pair\": [\"-Leiterpr\\u00fcfung\", \"F\\u00f6rster\"], \"target\": \"F\\u00f6rster\", \"weight\": 172, \"edge\": 68}, {\"source\": \"-Leiterpr\\u00fcfung\", \"x\": 280.91819384092196, \"y\": 112.81173247685622, \"pair\": [\"-Leiterpr\\u00fcfung\", \"F\\u00f6rster\"], \"target\": \"F\\u00f6rster\", \"weight\": 172, \"edge\": 68}, {\"source\": \"Herr\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"Herr\", \"Buschmann\"], \"target\": \"Buschmann\", \"weight\": 380, \"edge\": 69}, {\"source\": \"Herr\", \"x\": 348.42244473833364, \"y\": 51.71216701303609, \"pair\": [\"Herr\", \"Buschmann\"], \"target\": \"Buschmann\", \"weight\": 380, \"edge\": 69}, {\"source\": \"Herr\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"Herr\", \"Herr\"], \"target\": \"Herr\", \"weight\": 243, \"edge\": 70}, {\"source\": \"Herr\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"Herr\", \"Herr\"], \"target\": \"Herr\", \"weight\": 243, \"edge\": 70}, {\"source\": \"Herr\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"Herr\", \"F\\u00f6rster\"], \"target\": \"F\\u00f6rster\", \"weight\": 695, \"edge\": 71}, {\"source\": \"Herr\", \"x\": 280.91819384092196, \"y\": 112.81173247685622, \"pair\": [\"Herr\", \"F\\u00f6rster\"], \"target\": \"F\\u00f6rster\", \"weight\": 695, \"edge\": 71}, {\"source\": \"Herr\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"Herr\", \"Graf\"], \"target\": \"Graf\", \"weight\": 497, \"edge\": 72}, {\"source\": \"Herr\", \"x\": 467.5987152843378, \"y\": 111.34375590402418, \"pair\": [\"Herr\", \"Graf\"], \"target\": \"Graf\", \"weight\": 497, \"edge\": 72}, {\"source\": \"Buschmann\", \"x\": 348.42244473833364, \"y\": 51.71216701303609, \"pair\": [\"Buschmann\", \"Herr\"], \"target\": \"Herr\", \"weight\": 172, \"edge\": 73}, {\"source\": \"Buschmann\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"Buschmann\", \"Herr\"], \"target\": \"Herr\", \"weight\": 172, \"edge\": 73}, {\"source\": \"Buschmann\", \"x\": 348.42244473833364, \"y\": 51.71216701303609, \"pair\": [\"Buschmann\", \"F\\u00f6rster\"], \"target\": \"F\\u00f6rster\", \"weight\": 172, \"edge\": 74}, {\"source\": \"Buschmann\", \"x\": 280.91819384092196, \"y\": 112.81173247685622, \"pair\": [\"Buschmann\", \"F\\u00f6rster\"], \"target\": \"F\\u00f6rster\", \"weight\": 172, \"edge\": 74}, {\"source\": \"terminieren\", \"x\": 363.5367466465143, \"y\": 38.67183071981863, \"pair\": [\"terminieren\", \"Herr\"], \"target\": \"Herr\", \"weight\": 255, \"edge\": 75}, {\"source\": \"terminieren\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"terminieren\", \"Herr\"], \"target\": \"Herr\", \"weight\": 255, \"edge\": 75}, {\"source\": \"terminieren\", \"x\": 363.5367466465143, \"y\": 38.67183071981863, \"pair\": [\"terminieren\", \"Buschmann\"], \"target\": \"Buschmann\", \"weight\": 172, \"edge\": 76}, {\"source\": \"terminieren\", \"x\": 348.42244473833364, \"y\": 51.71216701303609, \"pair\": [\"terminieren\", \"Buschmann\"], \"target\": \"Buschmann\", \"weight\": 172, \"edge\": 76}, {\"source\": \"reparieren\", \"x\": 729.2272813149443, \"y\": 192.70734932930284, \"pair\": [\"reparieren\", \"Leiter\"], \"target\": \"Leiter\", \"weight\": 172, \"edge\": 77}, {\"source\": \"reparieren\", \"x\": 693.4252786699415, \"y\": 145.0122803703004, \"pair\": [\"reparieren\", \"Leiter\"], \"target\": \"Leiter\", \"weight\": 172, \"edge\": 77}, {\"source\": \"Firma\", \"x\": 370.8105044398262, \"y\": 233.17589268845646, \"pair\": [\"Firma\", \"Hawker\"], \"target\": \"Hawker\", \"weight\": 165, \"edge\": 78}, {\"source\": \"Firma\", \"x\": 411.1467976572832, \"y\": 272.7234082750803, \"pair\": [\"Firma\", \"Hawker\"], \"target\": \"Hawker\", \"weight\": 165, \"edge\": 78}, {\"source\": \"Firma\", \"x\": 370.8105044398262, \"y\": 233.17589268845646, \"pair\": [\"Firma\", \"Menzel\"], \"target\": \"Menzel\", \"weight\": 751, \"edge\": 79}, {\"source\": \"Firma\", \"x\": 270.2437181182694, \"y\": 212.37483468732287, \"pair\": [\"Firma\", \"Menzel\"], \"target\": \"Menzel\", \"weight\": 751, \"edge\": 79}, {\"source\": \"Firma\", \"x\": 370.8105044398262, \"y\": 233.17589268845646, \"pair\": [\"Firma\", \"sehen\"], \"target\": \"sehen\", \"weight\": 568, \"edge\": 80}, {\"source\": \"Firma\", \"x\": 228.32042320045343, \"y\": 286.822218023805, \"pair\": [\"Firma\", \"sehen\"], \"target\": \"sehen\", \"weight\": 568, \"edge\": 80}, {\"source\": \"Firma\", \"x\": 370.8105044398262, \"y\": 233.17589268845646, \"pair\": [\"Firma\", \"Vorbelegung\"], \"target\": \"Vorbelegung\", \"weight\": 566, \"edge\": 81}, {\"source\": \"Firma\", \"x\": 334.12053655771774, \"y\": 291.0589457774419, \"pair\": [\"Firma\", \"Vorbelegung\"], \"target\": \"Vorbelegung\", \"weight\": 566, \"edge\": 81}, {\"source\": \"Firma\", \"x\": 370.8105044398262, \"y\": 233.17589268845646, \"pair\": [\"Firma\", \"Extradatum\"], \"target\": \"Extradatum\", \"weight\": 568, \"edge\": 82}, {\"source\": \"Firma\", \"x\": 274.49461552994524, \"y\": 283.46400906858116, \"pair\": [\"Firma\", \"Extradatum\"], \"target\": \"Extradatum\", \"weight\": 568, \"edge\": 82}, {\"source\": \"Firma\", \"x\": 370.8105044398262, \"y\": 233.17589268845646, \"pair\": [\"Firma\", \"Stehlagergeh\\u00e4use\"], \"target\": \"Stehlagergeh\\u00e4use\", \"weight\": 493, \"edge\": 83}, {\"source\": \"Firma\", \"x\": 390.7802758360099, \"y\": 312.58265633856035, \"pair\": [\"Firma\", \"Stehlagergeh\\u00e4use\"], \"target\": \"Stehlagergeh\\u00e4use\", \"weight\": 493, \"edge\": 83}, {\"source\": \"Firma\", \"x\": 370.8105044398262, \"y\": 233.17589268845646, \"pair\": [\"Firma\", \"M\"], \"target\": \"M\", \"weight\": 161, \"edge\": 84}, {\"source\": \"Firma\", \"x\": 232.36349896089177, \"y\": 219.75722652559986, \"pair\": [\"Firma\", \"M\"], \"target\": \"M\", \"weight\": 161, \"edge\": 84}, {\"source\": \"Firma\", \"x\": 370.8105044398262, \"y\": 233.17589268845646, \"pair\": [\"Firma\", \"Baugruppe\"], \"target\": \"Baugruppe\", \"weight\": 185, \"edge\": 85}, {\"source\": \"Firma\", \"x\": 353.1456640846401, \"y\": 177.17740411864727, \"pair\": [\"Firma\", \"Baugruppe\"], \"target\": \"Baugruppe\", \"weight\": 185, \"edge\": 85}, {\"source\": \"Firma\", \"x\": 370.8105044398262, \"y\": 233.17589268845646, \"pair\": [\"Firma\", \"Pos.-Nr\"], \"target\": \"Pos.-Nr\", \"weight\": 185, \"edge\": 86}, {\"source\": \"Firma\", \"x\": 377.95201209144153, \"y\": 203.34876251653125, \"pair\": [\"Firma\", \"Pos.-Nr\"], \"target\": \"Pos.-Nr\", \"weight\": 185, \"edge\": 86}, {\"source\": \"Firma\", \"x\": 370.8105044398262, \"y\": 233.17589268845646, \"pair\": [\"Firma\", \"Nr.\"], \"target\": \"Nr.\", \"weight\": 185, \"edge\": 87}, {\"source\": \"Firma\", \"x\": 382.9019459663707, \"y\": 190.0292839599471, \"pair\": [\"Firma\", \"Nr.\"], \"target\": \"Nr.\", \"weight\": 185, \"edge\": 87}, {\"source\": \"Firma\", \"x\": 370.8105044398262, \"y\": 233.17589268845646, \"pair\": [\"Firma\", \"St\\u00fcckliste\"], \"target\": \"St\\u00fcckliste\", \"weight\": 185, \"edge\": 88}, {\"source\": \"Firma\", \"x\": 367.29642924617417, \"y\": 158.61515208766298, \"pair\": [\"Firma\", \"St\\u00fcckliste\"], \"target\": \"St\\u00fcckliste\", \"weight\": 185, \"edge\": 88}, {\"source\": \"Pr\\u00fcfung\", \"x\": 71.89495560173815, \"y\": 122.97704515397695, \"pair\": [\"Pr\\u00fcfung\", \"V\"], \"target\": \"V\", \"weight\": 161, \"edge\": 89}, {\"source\": \"Pr\\u00fcfung\", \"x\": 98.43755904024182, \"y\": 176.38390326846778, \"pair\": [\"Pr\\u00fcfung\", \"V\"], \"target\": \"V\", \"weight\": 161, \"edge\": 89}, {\"source\": \"Blombe\", \"x\": 473.24768562252035, \"y\": 26.629038352541095, \"pair\": [\"Blombe\", \"Ticket\"], \"target\": \"Ticket\", \"weight\": 160, \"edge\": 90}, {\"source\": \"Blombe\", \"x\": 497.37389004345357, \"y\": 79.09078027583601, \"pair\": [\"Blombe\", \"Ticket\"], \"target\": \"Ticket\", \"weight\": 160, \"edge\": 90}, {\"source\": \"Blombe\", \"x\": 473.24768562252035, \"y\": 26.629038352541095, \"pair\": [\"Blombe\", \"Magazin\"], \"target\": \"Magazin\", \"weight\": 160, \"edge\": 91}, {\"source\": \"Blombe\", \"x\": 546.0797279425656, \"y\": 36.43727564708105, \"pair\": [\"Blombe\", \"Magazin\"], \"target\": \"Magazin\", \"weight\": 160, \"edge\": 91}, {\"source\": \"Ticket\", \"x\": 497.37389004345357, \"y\": 79.09078027583601, \"pair\": [\"Ticket\", \"Magazin\"], \"target\": \"Magazin\", \"weight\": 320, \"edge\": 92}, {\"source\": \"Ticket\", \"x\": 546.0797279425656, \"y\": 36.43727564708105, \"pair\": [\"Ticket\", \"Magazin\"], \"target\": \"Magazin\", \"weight\": 320, \"edge\": 92}, {\"source\": \"Leiterpr\\u00fcfung\", \"x\": 59.59758171169469, \"y\": 387.9085584734555, \"pair\": [\"Leiterpr\\u00fcfung\", \"Arbeit\"], \"target\": \"Arbeit\", \"weight\": 153, \"edge\": 93}, {\"source\": \"Leiterpr\\u00fcfung\", \"x\": 93.80691479312298, \"y\": 420.65463820139803, \"pair\": [\"Leiterpr\\u00fcfung\", \"Arbeit\"], \"target\": \"Arbeit\", \"weight\": 153, \"edge\": 93}, {\"source\": \"Abteilungsleiter\", \"x\": 476.0816172303042, \"y\": 146.0608350651804, \"pair\": [\"Abteilungsleiter\", \"Email\"], \"target\": \"Email\", \"weight\": 153, \"edge\": 94}, {\"source\": \"Abteilungsleiter\", \"x\": 495.0878518798413, \"y\": 122.10702815038731, \"pair\": [\"Abteilungsleiter\", \"Email\"], \"target\": \"Email\", \"weight\": 153, \"edge\": 94}, {\"source\": \"Abteilungsleiter\", \"x\": 476.0816172303042, \"y\": 146.0608350651804, \"pair\": [\"Abteilungsleiter\", \"Eigenverantwortlichkeit\"], \"target\": \"Eigenverantwortlichkeit\", \"weight\": 153, \"edge\": 95}, {\"source\": \"Abteilungsleiter\", \"x\": 518.080483657661, \"y\": 110.67919894199888, \"pair\": [\"Abteilungsleiter\", \"Eigenverantwortlichkeit\"], \"target\": \"Eigenverantwortlichkeit\", \"weight\": 153, \"edge\": 95}, {\"source\": \"Abteilungsleiter\", \"x\": 476.0816172303042, \"y\": 146.0608350651804, \"pair\": [\"Abteilungsleiter\", \"Mithilfe\"], \"target\": \"Mithilfe\", \"weight\": 153, \"edge\": 96}, {\"source\": \"Abteilungsleiter\", \"x\": 422.55809559795955, \"y\": 96.6200642357831, \"pair\": [\"Abteilungsleiter\", \"Mithilfe\"], \"target\": \"Mithilfe\", \"weight\": 153, \"edge\": 96}, {\"source\": \"Abteilungsleiter\", \"x\": 476.0816172303042, \"y\": 146.0608350651804, \"pair\": [\"Abteilungsleiter\", \"Herr\"], \"target\": \"Herr\", \"weight\": 155, \"edge\": 97}, {\"source\": \"Abteilungsleiter\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"Abteilungsleiter\", \"Herr\"], \"target\": \"Herr\", \"weight\": 155, \"edge\": 97}, {\"source\": \"Abteilungsleiter\", \"x\": 476.0816172303042, \"y\": 146.0608350651804, \"pair\": [\"Abteilungsleiter\", \"Graf\"], \"target\": \"Graf\", \"weight\": 153, \"edge\": 98}, {\"source\": \"Abteilungsleiter\", \"x\": 467.5987152843378, \"y\": 111.34375590402418, \"pair\": [\"Abteilungsleiter\", \"Graf\"], \"target\": \"Graf\", \"weight\": 153, \"edge\": 98}, {\"source\": \"Email\", \"x\": 495.0878518798413, \"y\": 122.10702815038731, \"pair\": [\"Email\", \"Eigenverantwortlichkeit\"], \"target\": \"Eigenverantwortlichkeit\", \"weight\": 306, \"edge\": 99}, {\"source\": \"Email\", \"x\": 518.080483657661, \"y\": 110.67919894199888, \"pair\": [\"Email\", \"Eigenverantwortlichkeit\"], \"target\": \"Eigenverantwortlichkeit\", \"weight\": 306, \"edge\": 99}, {\"source\": \"Email\", \"x\": 495.0878518798413, \"y\": 122.10702815038731, \"pair\": [\"Email\", \"Mithilfe\"], \"target\": \"Mithilfe\", \"weight\": 306, \"edge\": 100}, {\"source\": \"Email\", \"x\": 422.55809559795955, \"y\": 96.6200642357831, \"pair\": [\"Email\", \"Mithilfe\"], \"target\": \"Mithilfe\", \"weight\": 306, \"edge\": 100}, {\"source\": \"Email\", \"x\": 495.0878518798413, \"y\": 122.10702815038731, \"pair\": [\"Email\", \"Herr\"], \"target\": \"Herr\", \"weight\": 306, \"edge\": 101}, {\"source\": \"Email\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"Email\", \"Herr\"], \"target\": \"Herr\", \"weight\": 306, \"edge\": 101}, {\"source\": \"Email\", \"x\": 495.0878518798413, \"y\": 122.10702815038731, \"pair\": [\"Email\", \"Graf\"], \"target\": \"Graf\", \"weight\": 306, \"edge\": 102}, {\"source\": \"Email\", \"x\": 467.5987152843378, \"y\": 111.34375590402418, \"pair\": [\"Email\", \"Graf\"], \"target\": \"Graf\", \"weight\": 306, \"edge\": 102}, {\"source\": \"Eigenverantwortlichkeit\", \"x\": 518.080483657661, \"y\": 110.67919894199888, \"pair\": [\"Eigenverantwortlichkeit\", \"Mithilfe\"], \"target\": \"Mithilfe\", \"weight\": 459, \"edge\": 103}, {\"source\": \"Eigenverantwortlichkeit\", \"x\": 422.55809559795955, \"y\": 96.6200642357831, \"pair\": [\"Eigenverantwortlichkeit\", \"Mithilfe\"], \"target\": \"Mithilfe\", \"weight\": 459, \"edge\": 103}, {\"source\": \"Eigenverantwortlichkeit\", \"x\": 518.080483657661, \"y\": 110.67919894199888, \"pair\": [\"Eigenverantwortlichkeit\", \"Herr\"], \"target\": \"Herr\", \"weight\": 459, \"edge\": 104}, {\"source\": \"Eigenverantwortlichkeit\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"Eigenverantwortlichkeit\", \"Herr\"], \"target\": \"Herr\", \"weight\": 459, \"edge\": 104}, {\"source\": \"Eigenverantwortlichkeit\", \"x\": 518.080483657661, \"y\": 110.67919894199888, \"pair\": [\"Eigenverantwortlichkeit\", \"Graf\"], \"target\": \"Graf\", \"weight\": 459, \"edge\": 105}, {\"source\": \"Eigenverantwortlichkeit\", \"x\": 467.5987152843378, \"y\": 111.34375590402418, \"pair\": [\"Eigenverantwortlichkeit\", \"Graf\"], \"target\": \"Graf\", \"weight\": 459, \"edge\": 105}, {\"source\": \"Mithilfe\", \"x\": 422.55809559795955, \"y\": 96.6200642357831, \"pair\": [\"Mithilfe\", \"Herr\"], \"target\": \"Herr\", \"weight\": 306, \"edge\": 106}, {\"source\": \"Mithilfe\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"Mithilfe\", \"Herr\"], \"target\": \"Herr\", \"weight\": 306, \"edge\": 106}, {\"source\": \"Mithilfe\", \"x\": 422.55809559795955, \"y\": 96.6200642357831, \"pair\": [\"Mithilfe\", \"Graf\"], \"target\": \"Graf\", \"weight\": 306, \"edge\": 107}, {\"source\": \"Mithilfe\", \"x\": 467.5987152843378, \"y\": 111.34375590402418, \"pair\": [\"Mithilfe\", \"Graf\"], \"target\": \"Graf\", \"weight\": 306, \"edge\": 107}, {\"source\": \"informieren\", \"x\": 517.2303041753258, \"y\": 136.25259777064048, \"pair\": [\"informieren\", \"Email\"], \"target\": \"Email\", \"weight\": 154, \"edge\": 108}, {\"source\": \"informieren\", \"x\": 495.0878518798413, \"y\": 122.10702815038731, \"pair\": [\"informieren\", \"Email\"], \"target\": \"Email\", \"weight\": 154, \"edge\": 108}, {\"source\": \"informieren\", \"x\": 517.2303041753258, \"y\": 136.25259777064048, \"pair\": [\"informieren\", \"Eigenverantwortlichkeit\"], \"target\": \"Eigenverantwortlichkeit\", \"weight\": 153, \"edge\": 109}, {\"source\": \"informieren\", \"x\": 518.080483657661, \"y\": 110.67919894199888, \"pair\": [\"informieren\", \"Eigenverantwortlichkeit\"], \"target\": \"Eigenverantwortlichkeit\", \"weight\": 153, \"edge\": 109}, {\"source\": \"informieren\", \"x\": 517.2303041753258, \"y\": 136.25259777064048, \"pair\": [\"informieren\", \"Mithilfe\"], \"target\": \"Mithilfe\", \"weight\": 153, \"edge\": 110}, {\"source\": \"informieren\", \"x\": 422.55809559795955, \"y\": 96.6200642357831, \"pair\": [\"informieren\", \"Mithilfe\"], \"target\": \"Mithilfe\", \"weight\": 153, \"edge\": 110}, {\"source\": \"informieren\", \"x\": 517.2303041753258, \"y\": 136.25259777064048, \"pair\": [\"informieren\", \"Herr\"], \"target\": \"Herr\", \"weight\": 168, \"edge\": 111}, {\"source\": \"informieren\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"informieren\", \"Herr\"], \"target\": \"Herr\", \"weight\": 168, \"edge\": 111}, {\"source\": \"informieren\", \"x\": 517.2303041753258, \"y\": 136.25259777064048, \"pair\": [\"informieren\", \"Graf\"], \"target\": \"Graf\", \"weight\": 153, \"edge\": 112}, {\"source\": \"informieren\", \"x\": 467.5987152843378, \"y\": 111.34375590402418, \"pair\": [\"informieren\", \"Graf\"], \"target\": \"Graf\", \"weight\": 153, \"edge\": 112}, {\"source\": \"Bedarf\", \"x\": 596.3347817872661, \"y\": 334.3897600604572, \"pair\": [\"Bedarf\", \"Verbandsmaterial\"], \"target\": \"Verbandsmaterial\", \"weight\": 160, \"edge\": 113}, {\"source\": \"Bedarf\", \"x\": 674.645758549027, \"y\": 264.54751558662383, \"pair\": [\"Bedarf\", \"Verbandsmaterial\"], \"target\": \"Verbandsmaterial\", \"weight\": 160, \"edge\": 113}, {\"source\": \"Auflistung\", \"x\": 720.423200453429, \"y\": 243.4772340827508, \"pair\": [\"Auflistung\", \"Verbandsmaterial\"], \"target\": \"Verbandsmaterial\", \"weight\": 160, \"edge\": 114}, {\"source\": \"Auflistung\", \"x\": 674.645758549027, \"y\": 264.54751558662383, \"pair\": [\"Auflistung\", \"Verbandsmaterial\"], \"target\": \"Verbandsmaterial\", \"weight\": 160, \"edge\": 114}, {\"source\": \"finden\", \"x\": 735.1785376912904, \"y\": 291.1156244095976, \"pair\": [\"finden\", \"Auflistung\"], \"target\": \"Auflistung\", \"weight\": 160, \"edge\": 115}, {\"source\": \"finden\", \"x\": 720.423200453429, \"y\": 243.4772340827508, \"pair\": [\"finden\", \"Auflistung\"], \"target\": \"Auflistung\", \"weight\": 160, \"edge\": 115}, {\"source\": \"finden\", \"x\": 735.1785376912904, \"y\": 291.1156244095976, \"pair\": [\"finden\", \"Verbandsmaterial\"], \"target\": \"Verbandsmaterial\", \"weight\": 160, \"edge\": 116}, {\"source\": \"finden\", \"x\": 674.645758549027, \"y\": 264.54751558662383, \"pair\": [\"finden\", \"Verbandsmaterial\"], \"target\": \"Verbandsmaterial\", \"weight\": 160, \"edge\": 116}, {\"source\": \"finden\", \"x\": 735.1785376912904, \"y\": 291.1156244095976, \"pair\": [\"finden\", \"Extradate\"], \"target\": \"Extradate\", \"weight\": 160, \"edge\": 117}, {\"source\": \"finden\", \"x\": 785.8303419610806, \"y\": 294.7005478934442, \"pair\": [\"finden\", \"Extradate\"], \"target\": \"Extradate\", \"weight\": 160, \"edge\": 117}, {\"source\": \"finden\", \"x\": 735.1785376912904, \"y\": 291.1156244095976, \"pair\": [\"finden\", \"Objekt\"], \"target\": \"Objekt\", \"weight\": 160, \"edge\": 118}, {\"source\": \"finden\", \"x\": 781.8439448327981, \"y\": 320.95692423956166, \"pair\": [\"finden\", \"Objekt\"], \"target\": \"Objekt\", \"weight\": 160, \"edge\": 118}, {\"source\": \"Extradate\", \"x\": 785.8303419610806, \"y\": 294.7005478934442, \"pair\": [\"Extradate\", \"Objekt\"], \"target\": \"Objekt\", \"weight\": 160, \"edge\": 119}, {\"source\": \"Extradate\", \"x\": 781.8439448327981, \"y\": 320.95692423956166, \"pair\": [\"Extradate\", \"Objekt\"], \"target\": \"Objekt\", \"weight\": 160, \"edge\": 119}, {\"source\": \"Wartungsarbeit\", \"x\": 206.36689967882106, \"y\": 332.7460797279426, \"pair\": [\"Wartungsarbeit\", \"sehen\"], \"target\": \"sehen\", \"weight\": 207, \"edge\": 120}, {\"source\": \"Wartungsarbeit\", \"x\": 228.32042320045343, \"y\": 286.822218023805, \"pair\": [\"Wartungsarbeit\", \"sehen\"], \"target\": \"sehen\", \"weight\": 207, \"edge\": 120}, {\"source\": \"Wartungsarbeit\", \"x\": 206.36689967882106, \"y\": 332.7460797279426, \"pair\": [\"Wartungsarbeit\", \"Arbeitsplan\"], \"target\": \"Arbeitsplan\", \"weight\": 207, \"edge\": 121}, {\"source\": \"Wartungsarbeit\", \"x\": 166.91668241073114, \"y\": 308.89854524844134, \"pair\": [\"Wartungsarbeit\", \"Arbeitsplan\"], \"target\": \"Arbeitsplan\", \"weight\": 207, \"edge\": 121}, {\"source\": \"Einrichtung\", \"x\": 234.80068014358585, \"y\": 26.582278481012658, \"pair\": [\"Einrichtung\", \"Luftdruckkontrolle\"], \"target\": \"Luftdruckkontrolle\", \"weight\": 240, \"edge\": 122}, {\"source\": \"Einrichtung\", \"x\": 272.26525599848856, \"y\": 62.44709994332137, \"pair\": [\"Einrichtung\", \"Luftdruckkontrolle\"], \"target\": \"Luftdruckkontrolle\", \"weight\": 240, \"edge\": 122}, {\"source\": \"Abschmierung\", \"x\": 107.06971471755148, \"y\": 236.42074437936898, \"pair\": [\"Abschmierung\", \"Ventilator\"], \"target\": \"Ventilator\", \"weight\": 221, \"edge\": 123}, {\"source\": \"Abschmierung\", \"x\": 150.3344039297185, \"y\": 200.71320612129227, \"pair\": [\"Abschmierung\", \"Ventilator\"], \"target\": \"Ventilator\", \"weight\": 221, \"edge\": 123}, {\"source\": \"Abschmierung\", \"x\": 107.06971471755148, \"y\": 236.42074437936898, \"pair\": [\"Abschmierung\", \"Motor\"], \"target\": \"Motor\", \"weight\": 221, \"edge\": 124}, {\"source\": \"Abschmierung\", \"x\": 86.69185716984697, \"y\": 190.72359720385415, \"pair\": [\"Abschmierung\", \"Motor\"], \"target\": \"Motor\", \"weight\": 221, \"edge\": 124}, {\"source\": \"Ventilator\", \"x\": 150.3344039297185, \"y\": 200.71320612129227, \"pair\": [\"Ventilator\", \"Motor\"], \"target\": \"Motor\", \"weight\": 221, \"edge\": 125}, {\"source\": \"Ventilator\", \"x\": 86.69185716984697, \"y\": 190.72359720385415, \"pair\": [\"Ventilator\", \"Motor\"], \"target\": \"Motor\", \"weight\": 221, \"edge\": 125}, {\"source\": \"durchf\\u00fchren\", \"x\": 444.1715473266578, \"y\": 250.0661250708483, \"pair\": [\"durchf\\u00fchren\", \"Monat\"], \"target\": \"Monat\", \"weight\": 221, \"edge\": 126}, {\"source\": \"durchf\\u00fchren\", \"x\": 529.453995843567, \"y\": 272.3691668241073, \"pair\": [\"durchf\\u00fchren\", \"Monat\"], \"target\": \"Monat\", \"weight\": 221, \"edge\": 126}, {\"source\": \"Erledigungsdatum\", \"x\": 153.60476100510107, \"y\": 171.19780842622333, \"pair\": [\"Erledigungsdatum\", \"Motor\"], \"target\": \"Motor\", \"weight\": 221, \"edge\": 127}, {\"source\": \"Erledigungsdatum\", \"x\": 86.69185716984697, \"y\": 190.72359720385415, \"pair\": [\"Erledigungsdatum\", \"Motor\"], \"target\": \"Motor\", \"weight\": 221, \"edge\": 127}, {\"source\": \"anschreiben\", \"x\": 114.09975439259398, \"y\": 211.83638768184395, \"pair\": [\"anschreiben\", \"Motor\"], \"target\": \"Motor\", \"weight\": 221, \"edge\": 128}, {\"source\": \"anschreiben\", \"x\": 86.69185716984697, \"y\": 190.72359720385415, \"pair\": [\"anschreiben\", \"Motor\"], \"target\": \"Motor\", \"weight\": 221, \"edge\": 128}, {\"source\": \"Wechseln\", \"x\": 169.57679954657095, \"y\": 339.7883997732855, \"pair\": [\"Wechseln\", \"V-R\\u00f6hre\"], \"target\": \"V-R\\u00f6hre\", \"weight\": 225, \"edge\": 129}, {\"source\": \"Wechseln\", \"x\": 198.4696769317967, \"y\": 392.3436614396373, \"pair\": [\"Wechseln\", \"V-R\\u00f6hre\"], \"target\": \"V-R\\u00f6hre\", \"weight\": 225, \"edge\": 129}, {\"source\": \"Wechseln\", \"x\": 169.57679954657095, \"y\": 339.7883997732855, \"pair\": [\"Wechseln\", \"Betriebsstunde\"], \"target\": \"Betriebsstunde\", \"weight\": 225, \"edge\": 130}, {\"source\": \"Wechseln\", \"x\": 229.71849612696013, \"y\": 361.07122614774227, \"pair\": [\"Wechseln\", \"Betriebsstunde\"], \"target\": \"Betriebsstunde\", \"weight\": 225, \"edge\": 130}, {\"source\": \"W\\u00e4scherkontrolle\", \"x\": 555.223880597015, \"y\": 319.45494048743626, \"pair\": [\"W\\u00e4scherkontrolle\", \"Reinigung\"], \"target\": \"Reinigung\", \"weight\": 221, \"edge\": 131}, {\"source\": \"W\\u00e4scherkontrolle\", \"x\": 531.0221046665406, \"y\": 357.3304364254676, \"pair\": [\"W\\u00e4scherkontrolle\", \"Reinigung\"], \"target\": \"Reinigung\", \"weight\": 221, \"edge\": 131}, {\"source\": \"W\\u00e4scherkontrolle\", \"x\": 555.223880597015, \"y\": 319.45494048743626, \"pair\": [\"W\\u00e4scherkontrolle\", \"Bedarf\"], \"target\": \"Bedarf\", \"weight\": 221, \"edge\": 132}, {\"source\": \"W\\u00e4scherkontrolle\", \"x\": 596.3347817872661, \"y\": 334.3897600604572, \"pair\": [\"W\\u00e4scherkontrolle\", \"Bedarf\"], \"target\": \"Bedarf\", \"weight\": 221, \"edge\": 132}, {\"source\": \"Verschmutzung\", \"x\": 61.158133383714336, \"y\": 219.38881541658793, \"pair\": [\"Verschmutzung\", \"Fremdk\\u00f6rper\"], \"target\": \"Fremdk\\u00f6rper\", \"weight\": 164, \"edge\": 133}, {\"source\": \"Verschmutzung\", \"x\": 93.3799357642169, \"y\": 250.23616096731533, \"pair\": [\"Verschmutzung\", \"Fremdk\\u00f6rper\"], \"target\": \"Fremdk\\u00f6rper\", \"weight\": 164, \"edge\": 133}, {\"source\": \"Sicherstellung\", \"x\": 75.89457774419043, \"y\": 363.9193274135651, \"pair\": [\"Sicherstellung\", \"Ausblas\\u00f6ffnung\"], \"target\": \"Ausblas\\u00f6ffnung\", \"weight\": 164, \"edge\": 134}, {\"source\": \"Sicherstellung\", \"x\": 108.11638012469298, \"y\": 394.76667296429247, \"pair\": [\"Sicherstellung\", \"Ausblas\\u00f6ffnung\"], \"target\": \"Ausblas\\u00f6ffnung\", \"weight\": 164, \"edge\": 134}, {\"source\": \"anfragen\", \"x\": 120.30984318911769, \"y\": 26.664462497638393, \"pair\": [\"anfragen\", \"Termin\"], \"target\": \"Termin\", \"weight\": 423, \"edge\": 135}, {\"source\": \"anfragen\", \"x\": 166.4783676553939, \"y\": 70.86671075004723, \"pair\": [\"anfragen\", \"Termin\"], \"target\": \"Termin\", \"weight\": 423, \"edge\": 135}, {\"source\": \"Vorbelegung\", \"x\": 334.12053655771774, \"y\": 291.0589457774419, \"pair\": [\"Vorbelegung\", \"Extradatum\"], \"target\": \"Extradatum\", \"weight\": 564, \"edge\": 136}, {\"source\": \"Vorbelegung\", \"x\": 274.49461552994524, \"y\": 283.46400906858116, \"pair\": [\"Vorbelegung\", \"Extradatum\"], \"target\": \"Extradatum\", \"weight\": 564, \"edge\": 136}, {\"source\": \"Lagerung\", \"x\": 396.3725675420367, \"y\": 346.78821084451164, \"pair\": [\"Lagerung\", \"Palette\"], \"target\": \"Palette\", \"weight\": 282, \"edge\": 137}, {\"source\": \"Lagerung\", \"x\": 343.86926128849416, \"y\": 349.43793689778954, \"pair\": [\"Lagerung\", \"Palette\"], \"target\": \"Palette\", \"weight\": 282, \"edge\": 137}, {\"source\": \"Lagerung\", \"x\": 396.3725675420367, \"y\": 346.78821084451164, \"pair\": [\"Lagerung\", \"Fach\"], \"target\": \"Fach\", \"weight\": 188, \"edge\": 138}, {\"source\": \"Lagerung\", \"x\": 439.3538635934252, \"y\": 315.6716417910448, \"pair\": [\"Lagerung\", \"Fach\"], \"target\": \"Fach\", \"weight\": 188, \"edge\": 138}, {\"source\": \"Lagerung\", \"x\": 396.3725675420367, \"y\": 346.78821084451164, \"pair\": [\"Lagerung\", \"Hochregal\"], \"target\": \"Hochregal\", \"weight\": 188, \"edge\": 139}, {\"source\": \"Lagerung\", \"x\": 443.92593992064985, \"y\": 372.76119402985074, \"pair\": [\"Lagerung\", \"Hochregal\"], \"target\": \"Hochregal\", \"weight\": 188, \"edge\": 139}, {\"source\": \"Lagerung\", \"x\": 396.3725675420367, \"y\": 346.78821084451164, \"pair\": [\"Lagerung\", \"Halle\"], \"target\": \"Halle\", \"weight\": 188, \"edge\": 140}, {\"source\": \"Lagerung\", \"x\": 481.4660872850935, \"y\": 342.52314377479695, \"pair\": [\"Lagerung\", \"Halle\"], \"target\": \"Halle\", \"weight\": 188, \"edge\": 140}, {\"source\": \"Fach\", \"x\": 439.3538635934252, \"y\": 315.6716417910448, \"pair\": [\"Fach\", \"Hochregal\"], \"target\": \"Hochregal\", \"weight\": 188, \"edge\": 141}, {\"source\": \"Fach\", \"x\": 443.92593992064985, \"y\": 372.76119402985074, \"pair\": [\"Fach\", \"Hochregal\"], \"target\": \"Hochregal\", \"weight\": 188, \"edge\": 141}, {\"source\": \"Fach\", \"x\": 439.3538635934252, \"y\": 315.6716417910448, \"pair\": [\"Fach\", \"Halle\"], \"target\": \"Halle\", \"weight\": 188, \"edge\": 142}, {\"source\": \"Fach\", \"x\": 481.4660872850935, \"y\": 342.52314377479695, \"pair\": [\"Fach\", \"Halle\"], \"target\": \"Halle\", \"weight\": 188, \"edge\": 142}, {\"source\": \"Hochregal\", \"x\": 443.92593992064985, \"y\": 372.76119402985074, \"pair\": [\"Hochregal\", \"Halle\"], \"target\": \"Halle\", \"weight\": 188, \"edge\": 143}, {\"source\": \"Hochregal\", \"x\": 481.4660872850935, \"y\": 342.52314377479695, \"pair\": [\"Hochregal\", \"Halle\"], \"target\": \"Halle\", \"weight\": 188, \"edge\": 143}, {\"source\": \"tauschen\", \"x\": 469.9225392027206, \"y\": 222.23691668241074, \"pair\": [\"tauschen\", \"Lager\"], \"target\": \"Lager\", \"weight\": 209, \"edge\": 144}, {\"source\": \"tauschen\", \"x\": 414.8309087474022, \"y\": 211.62384281126015, \"pair\": [\"tauschen\", \"Lager\"], \"target\": \"Lager\", \"weight\": 209, \"edge\": 144}, {\"source\": \"reinigen\", \"x\": 568.2977517475911, \"y\": 231.43302474966939, \"pair\": [\"reinigen\", \"Woche\"], \"target\": \"Woche\", \"weight\": 185, \"edge\": 145}, {\"source\": \"reinigen\", \"x\": 598.6019270734932, \"y\": 295.8057812204799, \"pair\": [\"reinigen\", \"Woche\"], \"target\": \"Woche\", \"weight\": 185, \"edge\": 145}, {\"source\": \"reinigen\", \"x\": 568.2977517475911, \"y\": 231.43302474966939, \"pair\": [\"reinigen\", \"Monat\"], \"target\": \"Monat\", \"weight\": 185, \"edge\": 146}, {\"source\": \"reinigen\", \"x\": 529.453995843567, \"y\": 272.3691668241073, \"pair\": [\"reinigen\", \"Monat\"], \"target\": \"Monat\", \"weight\": 185, \"edge\": 146}, {\"source\": \"Rauwalze\", \"x\": 281.8061590780276, \"y\": 2.4870583789911205, \"pair\": [\"Rauwalze\", \"Einziehwalze\"], \"target\": \"Einziehwalze\", \"weight\": 1283, \"edge\": 147}, {\"source\": \"Rauwalze\", \"x\": 314.83090874740225, \"y\": 34.11486869450217, \"pair\": [\"Rauwalze\", \"Einziehwalze\"], \"target\": \"Einziehwalze\", \"weight\": 1283, \"edge\": 147}, {\"source\": \"erfolgen\", \"x\": 132.13867372000755, \"y\": 143.60948422444739, \"pair\": [\"erfolgen\", \"Pr\\u00fcfung\"], \"target\": \"Pr\\u00fcfung\", \"weight\": 160, \"edge\": 148}, {\"source\": \"erfolgen\", \"x\": 71.89495560173815, \"y\": 122.97704515397695, \"pair\": [\"erfolgen\", \"Pr\\u00fcfung\"], \"target\": \"Pr\\u00fcfung\", \"weight\": 160, \"edge\": 148}, {\"source\": \"Absprache\", \"x\": 453.8447005478934, \"y\": 44.39778953334593, \"pair\": [\"Absprache\", \"Herr\"], \"target\": \"Herr\", \"weight\": 154, \"edge\": 149}, {\"source\": \"Absprache\", \"x\": 368.60003778575475, \"y\": 99.59994332136785, \"pair\": [\"Absprache\", \"Herr\"], \"target\": \"Herr\", \"weight\": 154, \"edge\": 149}, {\"source\": \"Baugruppe\", \"x\": 353.1456640846401, \"y\": 177.17740411864727, \"pair\": [\"Baugruppe\", \"Pos.-Nr\"], \"target\": \"Pos.-Nr\", \"weight\": 185, \"edge\": 150}, {\"source\": \"Baugruppe\", \"x\": 377.95201209144153, \"y\": 203.34876251653125, \"pair\": [\"Baugruppe\", \"Pos.-Nr\"], \"target\": \"Pos.-Nr\", \"weight\": 185, \"edge\": 150}, {\"source\": \"Baugruppe\", \"x\": 353.1456640846401, \"y\": 177.17740411864727, \"pair\": [\"Baugruppe\", \"Nr.\"], \"target\": \"Nr.\", \"weight\": 185, \"edge\": 151}, {\"source\": \"Baugruppe\", \"x\": 382.9019459663707, \"y\": 190.0292839599471, \"pair\": [\"Baugruppe\", \"Nr.\"], \"target\": \"Nr.\", \"weight\": 185, \"edge\": 151}, {\"source\": \"Baugruppe\", \"x\": 353.1456640846401, \"y\": 177.17740411864727, \"pair\": [\"Baugruppe\", \"St\\u00fcckliste\"], \"target\": \"St\\u00fcckliste\", \"weight\": 185, \"edge\": 152}, {\"source\": \"Baugruppe\", \"x\": 367.29642924617417, \"y\": 158.61515208766298, \"pair\": [\"Baugruppe\", \"St\\u00fcckliste\"], \"target\": \"St\\u00fcckliste\", \"weight\": 185, \"edge\": 152}, {\"source\": \"Nr.\", \"x\": 382.9019459663707, \"y\": 190.0292839599471, \"pair\": [\"Nr.\", \"St\\u00fcckliste\"], \"target\": \"St\\u00fcckliste\", \"weight\": 185, \"edge\": 153}, {\"source\": \"Nr.\", \"x\": 367.29642924617417, \"y\": 158.61515208766298, \"pair\": [\"Nr.\", \"St\\u00fcckliste\"], \"target\": \"St\\u00fcckliste\", \"weight\": 185, \"edge\": 153}, {\"source\": \"E-Nummer\", \"x\": 491.36595503495187, \"y\": 375.9210277725298, \"pair\": [\"E-Nummer\", \"Bezeichnung\"], \"target\": \"Bezeichnung\", \"weight\": 185, \"edge\": 154}, {\"source\": \"E-Nummer\", \"x\": 526.941243151332, \"y\": 409.97071604005293, \"pair\": [\"E-Nummer\", \"Bezeichnung\"], \"target\": \"Bezeichnung\", \"weight\": 185, \"edge\": 154}, {\"source\": \"verbauen\", \"x\": 56.54827130171925, \"y\": 38.6590780275836, \"pair\": [\"verbauen\", \"Hersteller\"], \"target\": \"Hersteller\", \"weight\": 185, \"edge\": 155}, {\"source\": \"verbauen\", \"x\": 85.38447005478935, \"y\": 91.44672208577367, \"pair\": [\"verbauen\", \"Hersteller\"], \"target\": \"Hersteller\", \"weight\": 185, \"edge\": 155}, {\"source\": \"verbauen\", \"x\": 56.54827130171925, \"y\": 38.6590780275836, \"pair\": [\"verbauen\", \"Anzahl\"], \"target\": \"Anzahl\", \"weight\": 185, \"edge\": 156}, {\"source\": \"verbauen\", \"x\": 117.14906480256943, \"y\": 58.873512185905916, \"pair\": [\"verbauen\", \"Anzahl\"], \"target\": \"Anzahl\", \"weight\": 185, \"edge\": 156}, {\"source\": \"Wartungsintervall\", \"x\": 463.78235405252224, \"y\": 279.5673531078783, \"pair\": [\"Wartungsintervall\", \"Wechselintervall\"], \"target\": \"Wechselintervall\", \"weight\": 185, \"edge\": 157}, {\"source\": \"Wartungsintervall\", \"x\": 499.3576421689023, \"y\": 313.6170413754015, \"pair\": [\"Wartungsintervall\", \"Wechselintervall\"], \"target\": \"Wechselintervall\", \"weight\": 185, \"edge\": 157}, {\"source\": \"Rollenkette-zweifach\", \"x\": 546.5331569998111, \"y\": 2.548838088040809, \"pair\": [\"Rollenkette-zweifach\", \"\\u00d6l\"], \"target\": \"\\u00d6l\", \"weight\": 185, \"edge\": 158}, {\"source\": \"Rollenkette-zweifach\", \"x\": 582.1084451161912, \"y\": 36.6044776119403, \"pair\": [\"Rollenkette-zweifach\", \"\\u00d6l\"], \"target\": \"\\u00d6l\", \"weight\": 185, \"edge\": 158}, {\"source\": \"E50\", \"x\": 681.3905157755526, \"y\": 366.569053466843, \"pair\": [\"E50\", \"Bedarf\"], \"target\": \"Bedarf\", \"weight\": 185, \"edge\": 159}, {\"source\": \"E50\", \"x\": 596.3347817872661, \"y\": 334.3897600604572, \"pair\": [\"E50\", \"Bedarf\"], \"target\": \"Bedarf\", \"weight\": 185, \"edge\": 159}, {\"source\": \"Kettbaum\", \"x\": 121.25826563385604, \"y\": 86.90676365010391, \"pair\": [\"Kettbaum\", \"Gewind\"], \"target\": \"Gewind\", \"weight\": 266, \"edge\": 160}, {\"source\": \"Kettbaum\", \"x\": 158.9873417721519, \"y\": 138.13999622142452, \"pair\": [\"Kettbaum\", \"Gewind\"], \"target\": \"Gewind\", \"weight\": 266, \"edge\": 160}, {\"source\": \"Kettbaum\", \"x\": 121.25826563385604, \"y\": 86.90676365010391, \"pair\": [\"Kettbaum\", \"nachschneiden\"], \"target\": \"nachschneiden\", \"weight\": 266, \"edge\": 161}, {\"source\": \"Kettbaum\", \"x\": 199.2820706593614, \"y\": 87.95106744757227, \"pair\": [\"Kettbaum\", \"nachschneiden\"], \"target\": \"nachschneiden\", \"weight\": 266, \"edge\": 161}, {\"source\": \"nachschneiden\", \"x\": 199.2820706593614, \"y\": 87.95106744757227, \"pair\": [\"nachschneiden\", \"Gewind\"], \"target\": \"Gewind\", \"weight\": 274, \"edge\": 162}, {\"source\": \"nachschneiden\", \"x\": 158.9873417721519, \"y\": 138.13999622142452, \"pair\": [\"nachschneiden\", \"Gewind\"], \"target\": \"Gewind\", \"weight\": 274, \"edge\": 162}], \"data-9c8dfa733adb65d964260e658cca7ff7\": [{\"y\": 271.1222369166824, \"x\": 89.60891743812581, \"degree_centrality\": 0.04225352112676056, \"id\": \"Wartungst\\u00e4tigkeit\", \"__node_size\": 205.5211267605634, \"__node_r\": 7.16800402414374, \"__y_label\": 251.9542328925387}, {\"y\": 298.95144530512, \"x\": 217.00358964670318, \"degree_centrality\": 0.035211267605633804, \"id\": \"Vorgabe\", \"__node_size\": 195.26760563380282, \"__node_r\": 6.986909288694873, \"__y_label\": 279.96453601642514}, {\"y\": 335.40997543925937, \"x\": 95.86245985263555, \"degree_centrality\": 0.014084507042253521, \"id\": \"Maschinenhersteller\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 316.9969605037255}, {\"y\": 315.7424900812394, \"x\": 463.5367466465143, \"degree_centrality\": 0.014084507042253521, \"id\": \"Sichtkontrolle\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 297.32947514570554}, {\"y\": 357.3304364254676, \"x\": 531.0221046665406, \"degree_centrality\": 0.035211267605633804, \"id\": \"Reinigung\", \"__node_size\": 195.26760563380282, \"__node_r\": 6.986909288694873, \"__y_label\": 338.34352713677276}, {\"y\": 141.48828641602117, \"x\": 581.5605516720195, \"degree_centrality\": 0.04225352112676056, \"id\": \"\\u00dcberpr\\u00fcfung\", \"__node_size\": 205.5211267605634, \"__node_r\": 7.16800402414374, \"__y_label\": 122.32028239187744}, {\"y\": 209.4558851313055, \"x\": 537.5401473644436, \"degree_centrality\": 0.007042253521126761, \"id\": \"\\u00d6labscheider\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 191.24594307991}, {\"y\": 459.4653315699981, \"x\": 463.38560362743243, \"degree_centrality\": 0.09154929577464789, \"id\": \"Kontrolle\", \"__node_size\": 277.29577464788736, \"__node_r\": 8.326100147246118, \"__y_label\": 439.139231422752}, {\"y\": 468.1088229737389, \"x\": 551.4075193651993, \"degree_centrality\": 0.007042253521126761, \"id\": \"C-Anlage\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 449.8988809223434}, {\"y\": 525.3117324768563, \"x\": 501.60589457774415, \"degree_centrality\": 0.007042253521126761, \"id\": \"Stabbreithalter\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 507.10179042546076}, {\"y\": 134.97732854713774, \"x\": 25.492159455885133, \"degree_centrality\": 0.007042253521126761, \"id\": \"Scharniere\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 116.76738649574224}, {\"y\": 165.7424900812394, \"x\": 57.63083317589269, \"degree_centrality\": 0.007042253521126761, \"id\": \"--\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 147.5325480298439}, {\"y\": 183.24201775930476, \"x\": 304.1375401473644, \"degree_centrality\": 0.007042253521126761, \"id\": \"Schlie\\u00dfvorrichtung\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 165.03207570790926}, {\"y\": 212.9841299829964, \"x\": 335.1974305686756, \"degree_centrality\": 0.007042253521126761, \"id\": \"Schlo\\u00df\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 194.7741879316009}, {\"y\": 503.30625354241454, \"x\": 434.8762516531268, \"degree_centrality\": 0.007042253521126761, \"id\": \"Kompressorstation\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 485.09631149101904}, {\"y\": 501.96013602871716, \"x\": 588.3619875307008, \"degree_centrality\": 0.007042253521126761, \"id\": \"Wasseraufbereitungsanlage\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 483.75019397732166}, {\"y\": 462.28509351974304, \"x\": 403.7030039675043, \"degree_centrality\": 0.007042253521126761, \"id\": \"Heizungsanlage\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 444.07515146834754}, {\"y\": 432.88305308898543, \"x\": 563.4611751369733, \"degree_centrality\": 0.007042253521126761, \"id\": \"Druckkontrolle\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 414.67311103758993}, {\"y\": 38.74267901001323, \"x\": 424.9008123937275, \"degree_centrality\": 0.007042253521126761, \"id\": \"machen\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 20.532736958617726}, {\"y\": 78.90940865293784, \"x\": 466.8430001889288, \"degree_centrality\": 0.007042253521126761, \"id\": \"Filter\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 60.69946660154234}, {\"y\": 145.0122803703004, \"x\": 693.4252786699415, \"degree_centrality\": 0.014084507042253521, \"id\": \"Leiter\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 126.59926543476655}, {\"y\": 327.81503873039867, \"x\": 248.42244473833367, \"degree_centrality\": 0.007042253521126761, \"id\": \"Analyse\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 309.60509667900317}, {\"y\": 375.6092952956736, \"x\": 298.3374267901001, \"degree_centrality\": 0.007042253521126761, \"id\": \"Kesselwasser\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 357.3993532442781}, {\"y\": 363.94766672964295, \"x\": 122.02153788021917, \"degree_centrality\": 0.007042253521126761, \"id\": \"\\u00fcberpr\\u00fcfen\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 345.73772467824745}, {\"y\": 411.74192329491785, \"x\": 171.94596637067824, \"degree_centrality\": 0.007042253521126761, \"id\": \"Wasserverbrauch\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 393.53198124352235}, {\"y\": 128.57972794256565, \"x\": 195.05006612507088, \"degree_centrality\": 0.014084507042253521, \"id\": \"auff\\u00fcllen\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 110.1667130070318}, {\"y\": 187.407897222747, \"x\": 174.98394105422256, \"degree_centrality\": 0.007042253521126761, \"id\": \"Desifektionsmittel\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 169.1979551713515}, {\"y\": 122.93737011146798, \"x\": 260.23049310409976, \"degree_centrality\": 0.014084507042253521, \"id\": \"Aschenbecher\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 104.52435517593413}, {\"y\": 157.12733799357645, \"x\": 300.7557150954091, \"degree_centrality\": 0.007042253521126761, \"id\": \"leeren\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 138.91739594218095}, {\"y\": 195.30039675042508, \"x\": 473.70111467976574, \"degree_centrality\": 0.014084507042253521, \"id\": \"Wartung\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 176.88738181489123}, {\"y\": 250.00944643869263, \"x\": 493.44417154732673, \"degree_centrality\": 0.007042253521126761, \"id\": \"Toilette\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 231.79950438729713}, {\"y\": 261.89778953334593, \"x\": 203.83525410920086, \"degree_centrality\": 0.02112676056338028, \"id\": \"Wartungsplan\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 243.28793773129541}, {\"y\": 286.822218023805, \"x\": 228.32042320045343, \"degree_centrality\": 0.04929577464788733, \"id\": \"sehen\", \"__node_size\": 215.77464788732397, \"__node_r\": 7.344634910724357, \"__y_label\": 267.47758311308064}, {\"y\": 283.46400906858116, \"x\": 274.49461552994524, \"degree_centrality\": 0.035211267605633804, \"id\": \"Extradatum\", \"__node_size\": 195.26760563380282, \"__node_r\": 6.986909288694873, \"__y_label\": 264.4770997798863}, {\"y\": 68.88720952201021, \"x\": 536.8600037785754, \"degree_centrality\": 0.007042253521126761, \"id\": \"Kompensator\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 50.67726747061471}, {\"y\": 103.98545248441339, \"x\": 655.318344983941, \"degree_centrality\": 0.02112676056338028, \"id\": \"Verschlei\\u00df\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 85.37560068236287}, {\"y\": 171.778764405819, \"x\": 637.5023616096731, \"degree_centrality\": 0.014084507042253521, \"id\": \"Dichtigkeit\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 153.36574947028515}, {\"y\": 220.59323634989607, \"x\": 531.0221046665406, \"degree_centrality\": 0.007042253521126761, \"id\": \"K\\u00fchlturm\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 202.38329429850057}, {\"y\": 403.83525410920083, \"x\": 394.7099943321367, \"degree_centrality\": 0.035211267605633804, \"id\": \"schmieren\", \"__node_size\": 195.26760563380282, \"__node_r\": 6.986909288694873, \"__y_label\": 384.848344820506}, {\"y\": 423.6727753636879, \"x\": 403.7407897222747, \"degree_centrality\": 0.014084507042253521, \"id\": \"Rieme\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 405.25976042815404}, {\"y\": 308.9977328547138, \"x\": 22.542981296051387, \"degree_centrality\": 0.014084507042253521, \"id\": \"Maschinenbediener\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 290.5847179191799}, {\"y\": 277.58360098242963, \"x\": 12.063291139240507, \"degree_centrality\": 0.014084507042253521, \"id\": \"Laserabteilung\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 259.1705860468958}, {\"y\": 308.89854524844134, \"x\": 166.91668241073114, \"degree_centrality\": 0.02112676056338028, \"id\": \"Arbeitsplan\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 290.2886934463908}, {\"y\": 157.69412431513322, \"x\": 249.00812393727566, \"degree_centrality\": 0.02112676056338028, \"id\": \"abarbeiten\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 139.0842725130827}, {\"y\": 25.26450028339316, \"x\": 759.7203854146985, \"degree_centrality\": 0.02112676056338028, \"id\": \"K\\u00fcsters-Anlage\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 6.654648481342647}, {\"y\": 35.193179671263934, \"x\": 655.4694880030229, \"degree_centrality\": 0.014084507042253521, \"id\": \"Anlage\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 16.780164735730082}, {\"y\": 14.584829019459665, \"x\": 713.5839788399772, \"degree_centrality\": 0.014084507042253521, \"id\": \"Leckage\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": -3.8281859160741885}, {\"y\": 74.45446816550161, \"x\": 722.1046665407141, \"degree_centrality\": 0.035211267605633804, \"id\": \"pr\\u00fcfen\", \"__node_size\": 195.26760563380282, \"__node_r\": 6.986909288694873, \"__y_label\": 55.467558876806734}, {\"y\": 159.19610806725865, \"x\": 412.3370489325524, \"degree_centrality\": 0.014084507042253521, \"id\": \"abschmieren\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 140.7830931317248}, {\"y\": 211.62384281126015, \"x\": 414.8309087474022, \"degree_centrality\": 0.014084507042253521, \"id\": \"Lager\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 193.2108278757263}, {\"y\": 169.58246740978652, \"x\": 466.9752503306253, \"degree_centrality\": 0.007042253521126761, \"id\": \"Campen-Aufwickler\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 151.37252535839102}, {\"y\": 393.34970716040056, \"x\": 270.1870394861137, \"degree_centrality\": 0.007042253521126761, \"id\": \"Linearkugellager\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 375.13976510900505}, {\"y\": 339.90175703759684, \"x\": 290.10013225014166, \"degree_centrality\": 0.007042253521126761, \"id\": \"Campen-Abwickler\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 321.69181498620134}, {\"y\": 314.93481957302095, \"x\": 346.72208577366337, \"degree_centrality\": 0.007042253521126761, \"id\": \"Wumag-Trockner\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 296.72487752162544}, {\"y\": 533.4734555072738, \"x\": 421.2733799357643, \"degree_centrality\": 0.007042253521126761, \"id\": \"Gesamtanlage\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 515.2635134558783}, {\"y\": 486.4301908180616, \"x\": 414.7742301152466, \"degree_centrality\": 0.007042253521126761, \"id\": \"Besch\\u00e4digung\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 468.2202487666661}, {\"y\": 50.72170791611562, \"x\": 214.81201587001698, \"degree_centrality\": 0.014084507042253521, \"id\": \"Stand\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 32.30869298058177}, {\"y\": 105.21821273379935, \"x\": 220.49877196296995, \"degree_centrality\": 0.007042253521126761, \"id\": \"St\\u00f6ppel\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 87.00827068240385}, {\"y\": 51.754675987152844, \"x\": 320.40430757604383, \"degree_centrality\": 0.02112676056338028, \"id\": \"-Leiterpr\\u00fcfung\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 33.14482418510233}, {\"y\": 99.59994332136785, \"x\": 368.60003778575475, \"degree_centrality\": 0.1056338028169014, \"id\": \"Herr\", \"__node_size\": 297.80281690140845, \"__node_r\": 8.62848215072339, \"__y_label\": 78.97146117064446}, {\"y\": 51.71216701303609, \"x\": 348.42244473833364, \"degree_centrality\": 0.035211267605633804, \"id\": \"Buschmann\", \"__node_size\": 195.26760563380282, \"__node_r\": 6.986909288694873, \"__y_label\": 32.72525772434121}, {\"y\": 112.81173247685622, \"x\": 280.91819384092196, \"degree_centrality\": 0.028169014084507043, \"id\": \"F\\u00f6rster\", \"__node_size\": 185.01408450704224, \"__node_r\": 6.800994127828708, \"__y_label\": 94.01073834902752}, {\"y\": 38.67183071981863, \"x\": 363.5367466465143, \"degree_centrality\": 0.014084507042253521, \"id\": \"terminieren\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 20.258815784284778}, {\"y\": 192.70734932930284, \"x\": 729.2272813149443, \"degree_centrality\": 0.007042253521126761, \"id\": \"reparieren\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 174.49740727790734}, {\"y\": 162.7385225769885, \"x\": 519.7430568675609, \"degree_centrality\": 0.007042253521126761, \"id\": \"Akku\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 144.528580525593}, {\"y\": 233.17589268845646, \"x\": 370.8105044398262, \"degree_centrality\": 0.07746478873239437, \"id\": \"Firma\", \"__node_size\": 256.7887323943662, \"__node_r\": 8.012314465782753, \"__y_label\": 213.1635782226737}, {\"y\": 272.7234082750803, \"x\": 411.1467976572832, \"degree_centrality\": 0.007042253521126761, \"id\": \"Hawker\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 254.51346622368482}, {\"y\": 122.97704515397695, \"x\": 71.89495560173815, \"degree_centrality\": 0.014084507042253521, \"id\": \"Pr\\u00fcfung\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 104.5640302184431}, {\"y\": 176.38390326846778, \"x\": 98.43755904024182, \"degree_centrality\": 0.007042253521126761, \"id\": \"V\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 158.17396121707228}, {\"y\": 506.49442660117137, \"x\": 496.4292461741923, \"degree_centrality\": 0.007042253521126761, \"id\": \"Erste-Hilfe-Koffer\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 488.28448454977587}, {\"y\": 26.629038352541095, \"x\": 473.24768562252035, \"degree_centrality\": 0.014084507042253521, \"id\": \"Blombe\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 8.216023417007243}, {\"y\": 79.09078027583601, \"x\": 497.37389004345357, \"degree_centrality\": 0.014084507042253521, \"id\": \"Ticket\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 60.67776534030216}, {\"y\": 36.43727564708105, \"x\": 546.0797279425656, \"degree_centrality\": 0.014084507042253521, \"id\": \"Magazin\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 18.0242607115472}, {\"y\": 387.9085584734555, \"x\": 59.59758171169469, \"degree_centrality\": 0.007042253521126761, \"id\": \"Leiterpr\\u00fcfung\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 369.69861642206}, {\"y\": 420.65463820139803, \"x\": 93.80691479312298, \"degree_centrality\": 0.007042253521126761, \"id\": \"Arbeit\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 402.4446961500025}, {\"y\": 146.0608350651804, \"x\": 476.0816172303042, \"degree_centrality\": 0.035211267605633804, \"id\": \"Abteilungsleiter\", \"__node_size\": 195.26760563380282, \"__node_r\": 6.986909288694873, \"__y_label\": 127.07392577648554}, {\"y\": 122.10702815038731, \"x\": 495.0878518798413, \"degree_centrality\": 0.04225352112676056, \"id\": \"Email\", \"__node_size\": 205.5211267605634, \"__node_r\": 7.16800402414374, \"__y_label\": 102.93902412624357}, {\"y\": 110.67919894199888, \"x\": 518.080483657661, \"degree_centrality\": 0.04225352112676056, \"id\": \"Eigenverantwortlichkeit\", \"__node_size\": 205.5211267605634, \"__node_r\": 7.16800402414374, \"__y_label\": 91.51119491785514}, {\"y\": 96.6200642357831, \"x\": 422.55809559795955, \"degree_centrality\": 0.04225352112676056, \"id\": \"Mithilfe\", \"__node_size\": 205.5211267605634, \"__node_r\": 7.16800402414374, \"__y_label\": 77.45206021163936}, {\"y\": 111.34375590402418, \"x\": 467.5987152843378, \"degree_centrality\": 0.04225352112676056, \"id\": \"Graf\", \"__node_size\": 205.5211267605634, \"__node_r\": 7.16800402414374, \"__y_label\": 92.17575187988044}, {\"y\": 136.25259777064048, \"x\": 517.2303041753258, \"degree_centrality\": 0.035211267605633804, \"id\": \"informieren\", \"__node_size\": 195.26760563380282, \"__node_r\": 6.986909288694873, \"__y_label\": 117.2656884819456}, {\"y\": 405.209710938976, \"x\": 443.5480823729454, \"degree_centrality\": 0.007042253521126761, \"id\": \"Pflasterschrank\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 386.9997688875805}, {\"y\": 334.3897600604572, \"x\": 596.3347817872661, \"degree_centrality\": 0.028169014084507043, \"id\": \"Bedarf\", \"__node_size\": 185.01408450704224, \"__node_r\": 6.800994127828708, \"__y_label\": 315.5887659326285}, {\"y\": 264.54751558662383, \"x\": 674.645758549027, \"degree_centrality\": 0.02112676056338028, \"id\": \"Verbandsmaterial\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 245.93766378457332}, {\"y\": 243.4772340827508, \"x\": 720.423200453429, \"degree_centrality\": 0.014084507042253521, \"id\": \"Auflistung\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 225.06421914721696}, {\"y\": 291.1156244095976, \"x\": 735.1785376912904, \"degree_centrality\": 0.028169014084507043, \"id\": \"finden\", \"__node_size\": 185.01408450704224, \"__node_r\": 6.800994127828708, \"__y_label\": 272.3146302817689}, {\"y\": 294.7005478934442, \"x\": 785.8303419610806, \"degree_centrality\": 0.014084507042253521, \"id\": \"Extradate\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 276.28753295791034}, {\"y\": 320.95692423956166, \"x\": 781.8439448327981, \"degree_centrality\": 0.014084507042253521, \"id\": \"Objekt\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 302.5439093040278}, {\"y\": 332.7460797279426, \"x\": 206.36689967882106, \"degree_centrality\": 0.014084507042253521, \"id\": \"Wartungsarbeit\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 314.3330647924087}, {\"y\": 26.582278481012658, \"x\": 234.80068014358585, \"degree_centrality\": 0.007042253521126761, \"id\": \"Einrichtung\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 8.372336429617157}, {\"y\": 62.44709994332137, \"x\": 272.26525599848856, \"degree_centrality\": 0.007042253521126761, \"id\": \"Luftdruckkontrolle\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 44.23715789192587}, {\"y\": 236.42074437936898, \"x\": 107.06971471755148, \"degree_centrality\": 0.014084507042253521, \"id\": \"Abschmierung\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 218.00772944383513}, {\"y\": 200.71320612129227, \"x\": 150.3344039297185, \"degree_centrality\": 0.014084507042253521, \"id\": \"Ventilator\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 182.30019118575842}, {\"y\": 190.72359720385415, \"x\": 86.69185716984697, \"degree_centrality\": 0.028169014084507043, \"id\": \"Motor\", \"__node_size\": 185.01408450704224, \"__node_r\": 6.800994127828708, \"__y_label\": 171.92260307602544}, {\"y\": 250.0661250708483, \"x\": 444.1715473266578, \"degree_centrality\": 0.007042253521126761, \"id\": \"durchf\\u00fchren\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 231.8561830194528}, {\"y\": 272.3691668241073, \"x\": 529.453995843567, \"degree_centrality\": 0.014084507042253521, \"id\": \"Monat\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 253.95615188857346}, {\"y\": 171.19780842622333, \"x\": 153.60476100510107, \"degree_centrality\": 0.007042253521126761, \"id\": \"Erledigungsdatum\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 152.98786637482783}, {\"y\": 211.83638768184395, \"x\": 114.09975439259398, \"degree_centrality\": 0.007042253521126761, \"id\": \"anschreiben\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 193.62644563044844}, {\"y\": 339.7883997732855, \"x\": 169.57679954657095, \"degree_centrality\": 0.014084507042253521, \"id\": \"Wechseln\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 321.37538483775165}, {\"y\": 392.3436614396373, \"x\": 198.4696769317967, \"degree_centrality\": 0.007042253521126761, \"id\": \"V-R\\u00f6hre\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 374.1337193882418}, {\"y\": 361.07122614774227, \"x\": 229.71849612696013, \"degree_centrality\": 0.007042253521126761, \"id\": \"Betriebsstunde\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 342.86128409634676}, {\"y\": 319.45494048743626, \"x\": 555.223880597015, \"degree_centrality\": 0.014084507042253521, \"id\": \"W\\u00e4scherkontrolle\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 301.0419255519024}, {\"y\": 69.1691857169847, \"x\": 800.0, \"degree_centrality\": 0.007042253521126761, \"id\": \"Sitz\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 50.9592436655892}, {\"y\": 219.38881541658793, \"x\": 61.158133383714336, \"degree_centrality\": 0.007042253521126761, \"id\": \"Verschmutzung\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 201.17887336519243}, {\"y\": 363.9193274135651, \"x\": 75.89457774419043, \"degree_centrality\": 0.007042253521126761, \"id\": \"Sicherstellung\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 345.7093853621696}, {\"y\": 394.76667296429247, \"x\": 108.11638012469298, \"degree_centrality\": 0.007042253521126761, \"id\": \"Ausblas\\u00f6ffnung\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 376.55673091289697}, {\"y\": 250.23616096731533, \"x\": 93.3799357642169, \"degree_centrality\": 0.007042253521126761, \"id\": \"Fremdk\\u00f6rper\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 232.02621891591983}, {\"y\": 26.664462497638393, \"x\": 120.30984318911769, \"degree_centrality\": 0.007042253521126761, \"id\": \"anfragen\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 8.454520446242896}, {\"y\": 70.86671075004723, \"x\": 166.4783676553939, \"degree_centrality\": 0.007042253521126761, \"id\": \"Termin\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 52.65676869865173}, {\"y\": 212.37483468732287, \"x\": 270.2437181182694, \"degree_centrality\": 0.007042253521126761, \"id\": \"Menzel\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 194.16489263592737}, {\"y\": 291.0589457774419, \"x\": 334.12053655771774, \"degree_centrality\": 0.02112676056338028, \"id\": \"Vorbelegung\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 272.4490939753914}, {\"y\": 312.58265633856035, \"x\": 390.7802758360099, \"degree_centrality\": 0.007042253521126761, \"id\": \"Stehlagergeh\\u00e4use\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 294.37271428716485}, {\"y\": 219.75722652559986, \"x\": 232.36349896089177, \"degree_centrality\": 0.007042253521126761, \"id\": \"M\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 201.54728447420436}, {\"y\": 80.44539958435671, \"x\": 268.959002456074, \"degree_centrality\": 0.007042253521126761, \"id\": \"Moser\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 62.235457532961206}, {\"y\": 346.78821084451164, \"x\": 396.3725675420367, \"degree_centrality\": 0.028169014084507043, \"id\": \"Lagerung\", \"__node_size\": 185.01408450704224, \"__node_r\": 6.800994127828708, \"__y_label\": 327.98721671668295}, {\"y\": 349.43793689778954, \"x\": 343.86926128849416, \"degree_centrality\": 0.007042253521126761, \"id\": \"Palette\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 331.22799484639404}, {\"y\": 315.6716417910448, \"x\": 439.3538635934252, \"degree_centrality\": 0.02112676056338028, \"id\": \"Fach\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 297.0617899889943}, {\"y\": 372.76119402985074, \"x\": 443.92593992064985, \"degree_centrality\": 0.02112676056338028, \"id\": \"Hochregal\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 354.1513422278002}, {\"y\": 342.52314377479695, \"x\": 481.4660872850935, \"degree_centrality\": 0.02112676056338028, \"id\": \"Halle\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 323.91329197274644}, {\"y\": 222.23691668241074, \"x\": 469.9225392027206, \"degree_centrality\": 0.007042253521126761, \"id\": \"tauschen\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 204.02697463101524}, {\"y\": 231.43302474966939, \"x\": 568.2977517475911, \"degree_centrality\": 0.014084507042253521, \"id\": \"reinigen\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 213.02000981413553}, {\"y\": 2.4870583789911205, \"x\": 281.8061590780276, \"degree_centrality\": 0.007042253521126761, \"id\": \"Rauwalze\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": -15.722883672404379}, {\"y\": 34.11486869450217, \"x\": 314.83090874740225, \"degree_centrality\": 0.007042253521126761, \"id\": \"Einziehwalze\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 15.90492664310667}, {\"y\": 143.60948422444739, \"x\": 132.13867372000755, \"degree_centrality\": 0.007042253521126761, \"id\": \"erfolgen\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 125.39954217305188}, {\"y\": 44.39778953334593, \"x\": 453.8447005478934, \"degree_centrality\": 0.007042253521126761, \"id\": \"Absprache\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 26.187847481950428}, {\"y\": 177.17740411864727, \"x\": 353.1456640846401, \"degree_centrality\": 0.028169014084507043, \"id\": \"Baugruppe\", \"__node_size\": 185.01408450704224, \"__node_r\": 6.800994127828708, \"__y_label\": 158.37640999081856}, {\"y\": 203.34876251653125, \"x\": 377.95201209144153, \"degree_centrality\": 0.014084507042253521, \"id\": \"Pos.-Nr\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 184.9357475809974}, {\"y\": 190.0292839599471, \"x\": 382.9019459663707, \"degree_centrality\": 0.02112676056338028, \"id\": \"Nr.\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 171.41943215789658}, {\"y\": 158.61515208766298, \"x\": 367.29642924617417, \"degree_centrality\": 0.02112676056338028, \"id\": \"St\\u00fcckliste\", \"__node_size\": 174.7605633802817, \"__node_r\": 6.609851802050514, \"__y_label\": 140.00530028561246}, {\"y\": 375.9210277725298, \"x\": 491.36595503495187, \"degree_centrality\": 0.007042253521126761, \"id\": \"E-Nummer\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 357.7110857211343}, {\"y\": 409.97071604005293, \"x\": 526.941243151332, \"degree_centrality\": 0.007042253521126761, \"id\": \"Bezeichnung\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 391.76077398865743}, {\"y\": 38.6590780275836, \"x\": 56.54827130171925, \"degree_centrality\": 0.014084507042253521, \"id\": \"verbauen\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 20.246063092049745}, {\"y\": 91.44672208577367, \"x\": 85.38447005478935, \"degree_centrality\": 0.007042253521126761, \"id\": \"Hersteller\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 73.23678003437817}, {\"y\": 58.873512185905916, \"x\": 117.14906480256943, \"degree_centrality\": 0.007042253521126761, \"id\": \"Anzahl\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 40.663570134510415}, {\"y\": 279.5673531078783, \"x\": 463.78235405252224, \"degree_centrality\": 0.007042253521126761, \"id\": \"Wartungsintervall\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 261.3574110564828}, {\"y\": 313.6170413754015, \"x\": 499.3576421689023, \"degree_centrality\": 0.007042253521126761, \"id\": \"Wechselintervall\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 295.407099324006}, {\"y\": 2.548838088040809, \"x\": 546.5331569998111, \"degree_centrality\": 0.007042253521126761, \"id\": \"Rollenkette-zweifach\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": -15.661103963354691}, {\"y\": 36.6044776119403, \"x\": 582.1084451161912, \"degree_centrality\": 0.007042253521126761, \"id\": \"\\u00d6l\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 18.394535560544796}, {\"y\": 366.569053466843, \"x\": 681.3905157755526, \"degree_centrality\": 0.007042253521126761, \"id\": \"E50\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 348.3591114154475}, {\"y\": 295.8057812204799, \"x\": 598.6019270734932, \"degree_centrality\": 0.007042253521126761, \"id\": \"Woche\", \"__node_size\": 154.25352112676057, \"__node_r\": 6.209942051395499, \"__y_label\": 277.5958391690844}, {\"y\": 86.90676365010391, \"x\": 121.25826563385604, \"degree_centrality\": 0.014084507042253521, \"id\": \"Kettbaum\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 68.49374871457006}, {\"y\": 138.13999622142452, \"x\": 158.9873417721519, \"degree_centrality\": 0.014084507042253521, \"id\": \"Gewind\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 119.72698128589067}, {\"y\": 87.95106744757227, \"x\": 199.2820706593614, \"degree_centrality\": 0.014084507042253521, \"id\": \"nachschneiden\", \"__node_size\": 164.50704225352112, \"__node_r\": 6.4130149355338535, \"__y_label\": 69.53805251203842}]}}, {\"mode\": \"vega-lite\"});\n",
"</script>"
],
"text/plain": [
"alt.LayerChart(...)"
]
},
"execution_count": 260,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"alph(tkg, **alph_params).configure_view(strokeWidth=0)"
]
},
{
"cell_type": "code",
"execution_count": 261,
"id": "842e01fa-29cd-4028-9461-c7af24e01c33",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'id': 'Wartungstätigkeit', 'degree_centrality': 0.04225352112676056}"
]
},
"execution_count": 261,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"tkg.nodes['Wartungstätigkeit']"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "8d36d22e-73fd-44fe-ab08-98f8186bc6b2",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"id": "7f6d1b73-7378-4c98-aeed-b72bf27a942e",
"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.11.9"
}
},
"nbformat": 4,
"nbformat_minor": 5
}