diff --git a/exploration_modeling_toolkit.ipynb b/exploration_modeling_toolkit.ipynb
index 7fec51502cbc3200b3d0ffc6bbba1fe85e197f3d..bac329f8eefd055b40d8b825ce89a84ceda366e1 100644
--- a/exploration_modeling_toolkit.ipynb
+++ b/exploration_modeling_toolkit.ipynb
@@ -1,6 +1,523 @@
 {
- "cells": [],
- "metadata": {},
+ "cells": [
+  {
+   "cell_type": "code",
+   "execution_count": 1,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "using ModelingToolkit, Plots, DifferentialEquations"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "ConstantVoltage (generic function with 1 method)"
+      ]
+     },
+     "execution_count": 2,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "@variables t\n",
+    "@connector function Pin(;name)\n",
+    "    sts = @variables v(t)=1.0 i(t)=1.0 [connect = Flow]\n",
+    "    ODESystem(Equation[], t, sts, []; name=name)\n",
+    "end\n",
+    "\n",
+    "function Ground(;name)\n",
+    "    @named g = Pin()\n",
+    "    eqs = [g.v ~ 0]\n",
+    "    compose(ODESystem(eqs, t, [], []; name=name), g)\n",
+    "end\n",
+    "\n",
+    "function OnePort(;name)\n",
+    "    @named p = Pin()\n",
+    "    @named n = Pin()\n",
+    "    sts = @variables v(t)=1.0 i(t)=1.0\n",
+    "    eqs = [\n",
+    "           v ~ p.v - n.v\n",
+    "           0 ~ p.i + n.i\n",
+    "           i ~ p.i\n",
+    "          ]\n",
+    "    compose(ODESystem(eqs, t, sts, []; name=name), p, n)\n",
+    "end\n",
+    "\n",
+    "function Resistor(;name, R = 1.0)\n",
+    "    @named oneport = OnePort()\n",
+    "    @unpack v, i = oneport\n",
+    "    ps = @parameters R=R\n",
+    "    eqs = [\n",
+    "           v ~ i * R\n",
+    "          ]\n",
+    "    extend(ODESystem(eqs, t, [], ps; name=name), oneport)\n",
+    "end\n",
+    "\n",
+    "function Capacitor(;name, C = 1.0)\n",
+    "    @named oneport = OnePort()\n",
+    "    @unpack v, i = oneport\n",
+    "    ps = @parameters C=C\n",
+    "    D = Differential(t)\n",
+    "    eqs = [\n",
+    "           D(v) ~ i / C\n",
+    "          ]\n",
+    "    extend(ODESystem(eqs, t, [], ps; name=name), oneport)\n",
+    "end\n",
+    "\n",
+    "function ConstantVoltage(;name, V = 1.0)\n",
+    "    @named oneport = OnePort()\n",
+    "    @unpack v = oneport\n",
+    "    ps = @parameters V=V\n",
+    "    eqs = [\n",
+    "           V ~ v\n",
+    "          ]\n",
+    "    extend(ODESystem(eqs, t, [], ps; name=name), oneport)\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 3,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "\u001b[0m\u001b[1mModel rc_model with 17 equations\u001b[22m\n",
+       "\u001b[0m\u001b[1mStates (20):\u001b[22m\n",
+       "  resistor₊v(t) [defaults to 1.0]\n",
+       "  resistor₊i(t) [defaults to 1.0]\n",
+       "  resistor₊p₊v(t) [defaults to 1.0]\n",
+       "  resistor₊p₊i(t) [defaults to 1.0]\n",
+       "  resistor₊n₊v(t) [defaults to 1.0]\n",
+       "  resistor₊n₊i(t) [defaults to 1.0]\n",
+       "⋮\n",
+       "\u001b[0m\u001b[1mParameters (3):\u001b[22m\n",
+       "  resistor₊R [defaults to 1.0]\n",
+       "  capacitor₊C [defaults to 1.0]\n",
+       "  source₊V [defaults to 1.0]"
+      ]
+     },
+     "execution_count": 3,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "R = 1.0\n",
+    "C = 1.0\n",
+    "V = 1.0\n",
+    "@named resistor = Resistor(R=R)\n",
+    "@named capacitor = Capacitor(C=C)\n",
+    "@named source = ConstantVoltage(V=V)\n",
+    "@named ground = Ground()\n",
+    "\n",
+    "rc_eqs = [\n",
+    "          connect(source.p, resistor.p)\n",
+    "          connect(resistor.n, capacitor.p)\n",
+    "          connect(capacitor.n, source.n)\n",
+    "          connect(capacitor.n, ground.g)\n",
+    "         ]\n",
+    "\n",
+    "@named _rc_model = ODESystem(rc_eqs, t)\n",
+    "@named rc_model = compose(_rc_model,\n",
+    "                          [resistor, capacitor, source, ground])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/latex": [
+       "\\begin{align}\n",
+       "\\frac{dcapacitor_{+}v(t)}{dt} =& \\frac{\\mathrm{capacitor_{+}i}\\left( t \\right)}{capacitor_{+}C}\n",
+       "\\end{align}\n"
+      ],
+      "text/plain": [
+       "\u001b[0m\u001b[1mModel rc_model with 1 equations\u001b[22m\n",
+       "\u001b[0m\u001b[1mStates (1):\u001b[22m\n",
+       "  capacitor₊v(t) [defaults to 1.0]\n",
+       "\u001b[0m\u001b[1mParameters (3):\u001b[22m\n",
+       "  resistor₊R [defaults to 1.0]\n",
+       "  capacitor₊C [defaults to 1.0]\n",
+       "  source₊V [defaults to 1.0]\n",
+       "\u001b[35mIncidence matrix:\u001b[39msparse([1, 1], [1, 2], Num[×, ×], 1, 2)"
+      ]
+     },
+     "execution_count": 4,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "sys = structural_simplify(rc_model)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "1-element Vector{Pair{Num, Float64}}:\n",
+       " capacitor₊v(t) => 0.0"
+      ]
+     },
+     "execution_count": 5,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "u0 = [\n",
+    "      capacitor.v => 0.0\n",
+    "     ]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "\u001b[36mODEProblem\u001b[0m with uType \u001b[36mVector{Float64}\u001b[0m and tType \u001b[36mFloat64\u001b[0m. In-place: \u001b[36mtrue\u001b[0m\n",
+       "timespan: (0.0, 10.0)\n",
+       "u0: 1-element Vector{Float64}:\n",
+       " 0.0"
+      ]
+     },
+     "execution_count": 6,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "prob = ODAEProblem(sys, u0, (0, 10.0))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 7,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "retcode: Success\n",
+       "Interpolation: specialized 4th order \"free\" interpolation\n",
+       "t: 19-element Vector{Float64}:\n",
+       "  0.0\n",
+       "  9.999999999999999e-5\n",
+       "  0.0010999999999999998\n",
+       "  0.011099999999999997\n",
+       "  0.076742091466188\n",
+       "  0.2256219976613778\n",
+       "  0.4455760022489606\n",
+       "  0.7272505097568545\n",
+       "  1.0899643857570624\n",
+       "  1.5331652827982714\n",
+       "  2.06972399829104\n",
+       "  2.705750446504391\n",
+       "  3.4562444530999095\n",
+       "  4.3378403240538095\n",
+       "  5.377903566781988\n",
+       "  6.614654307931712\n",
+       "  8.1073506878944\n",
+       "  9.946895379599903\n",
+       " 10.0\n",
+       "u: 19-element Vector{Vector{Float64}}:\n",
+       " [0.0]\n",
+       " [9.999500016666247e-5]\n",
+       " [0.001099395221772342]\n",
+       " [0.011038622307372232]\n",
+       " [0.0738713206981718]\n",
+       " [0.20198030129465663]\n",
+       " [0.3595447255651815]\n",
+       " [0.5167641452122546]\n",
+       " [0.6637713825376194]\n",
+       " [0.7841482271226826]\n",
+       " [0.873778404447212]\n",
+       " [0.9331779821204202]\n",
+       " [0.9684489616227437]\n",
+       " [0.9869310637824636]\n",
+       " [0.9953772824474669]\n",
+       " [0.9986536797747498]\n",
+       " [0.9996930416967437]\n",
+       " [0.9999471971800106]\n",
+       " [0.9999499280997356]"
+      ]
+     },
+     "execution_count": 7,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "sol = solve(prob, Tsit5())"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 8,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "image/svg+xml": [
+       "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
+       "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip760\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip760)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip761\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip760)\" d=\"\n",
+       "M186.274 1423.18 L2352.76 1423.18 L2352.76 47.2441 L186.274 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip762\">\n",
+       "    <rect x=\"186\" y=\"47\" width=\"2167\" height=\"1377\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip762)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  186.274,1423.18 186.274,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip762)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  619.57,1423.18 619.57,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip762)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1052.87,1423.18 1052.87,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip762)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1486.16,1423.18 1486.16,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip762)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1919.46,1423.18 1919.46,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip762)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2352.76,1423.18 2352.76,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  186.274,1423.18 2352.76,1423.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  186.274,1423.18 186.274,1404.28 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  619.57,1423.18 619.57,1404.28 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1052.87,1423.18 1052.87,1404.28 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1486.16,1423.18 1486.16,1404.28 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1919.46,1423.18 1919.46,1404.28 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2352.76,1423.18 2352.76,1404.28 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip760)\" d=\"M186.274 1454.1 Q182.663 1454.1 180.834 1457.66 Q179.029 1461.2 179.029 1468.33 Q179.029 1475.44 180.834 1479.01 Q182.663 1482.55 186.274 1482.55 Q189.908 1482.55 191.714 1479.01 Q193.542 1475.44 193.542 1468.33 Q193.542 1461.2 191.714 1457.66 Q189.908 1454.1 186.274 1454.1 M186.274 1450.39 Q192.084 1450.39 195.14 1455 Q198.218 1459.58 198.218 1468.33 Q198.218 1477.06 195.14 1481.67 Q192.084 1486.25 186.274 1486.25 Q180.464 1486.25 177.385 1481.67 Q174.33 1477.06 174.33 1468.33 Q174.33 1459.58 177.385 1455 Q180.464 1450.39 186.274 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M614.223 1481.64 L630.543 1481.64 L630.543 1485.58 L608.598 1485.58 L608.598 1481.64 Q611.26 1478.89 615.844 1474.26 Q620.45 1469.61 621.631 1468.27 Q623.876 1465.74 624.756 1464.01 Q625.658 1462.25 625.658 1460.56 Q625.658 1457.8 623.714 1456.07 Q621.793 1454.33 618.691 1454.33 Q616.492 1454.33 614.038 1455.09 Q611.607 1455.86 608.83 1457.41 L608.83 1452.69 Q611.654 1451.55 614.107 1450.97 Q616.561 1450.39 618.598 1450.39 Q623.969 1450.39 627.163 1453.08 Q630.357 1455.77 630.357 1460.26 Q630.357 1462.39 629.547 1464.31 Q628.76 1466.2 626.654 1468.8 Q626.075 1469.47 622.973 1472.69 Q619.871 1475.88 614.223 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M1055.88 1455.09 L1044.07 1473.54 L1055.88 1473.54 L1055.88 1455.09 M1054.65 1451.02 L1060.53 1451.02 L1060.53 1473.54 L1065.46 1473.54 L1065.46 1477.43 L1060.53 1477.43 L1060.53 1485.58 L1055.88 1485.58 L1055.88 1477.43 L1040.27 1477.43 L1040.27 1472.92 L1054.65 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M1486.57 1466.44 Q1483.42 1466.44 1481.57 1468.59 Q1479.74 1470.74 1479.74 1474.49 Q1479.74 1478.22 1481.57 1480.39 Q1483.42 1482.55 1486.57 1482.55 Q1489.72 1482.55 1491.55 1480.39 Q1493.4 1478.22 1493.4 1474.49 Q1493.4 1470.74 1491.55 1468.59 Q1489.72 1466.44 1486.57 1466.44 M1495.85 1451.78 L1495.85 1456.04 Q1494.09 1455.21 1492.29 1454.77 Q1490.5 1454.33 1488.74 1454.33 Q1484.11 1454.33 1481.66 1457.45 Q1479.23 1460.58 1478.88 1466.9 Q1480.25 1464.89 1482.31 1463.82 Q1484.37 1462.73 1486.85 1462.73 Q1492.05 1462.73 1495.06 1465.9 Q1498.1 1469.05 1498.1 1474.49 Q1498.1 1479.82 1494.95 1483.03 Q1491.8 1486.25 1486.57 1486.25 Q1480.57 1486.25 1477.4 1481.67 Q1474.23 1477.06 1474.23 1468.33 Q1474.23 1460.14 1478.12 1455.28 Q1482.01 1450.39 1488.56 1450.39 Q1490.32 1450.39 1492.1 1450.74 Q1493.91 1451.09 1495.85 1451.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M1919.46 1469.17 Q1916.13 1469.17 1914.2 1470.95 Q1912.31 1472.73 1912.31 1475.86 Q1912.31 1478.98 1914.2 1480.77 Q1916.13 1482.55 1919.46 1482.55 Q1922.79 1482.55 1924.71 1480.77 Q1926.64 1478.96 1926.64 1475.86 Q1926.64 1472.73 1924.71 1470.95 Q1922.82 1469.17 1919.46 1469.17 M1914.78 1467.18 Q1911.77 1466.44 1910.08 1464.38 Q1908.42 1462.32 1908.42 1459.35 Q1908.42 1455.21 1911.36 1452.8 Q1914.32 1450.39 1919.46 1450.39 Q1924.62 1450.39 1927.56 1452.8 Q1930.5 1455.21 1930.5 1459.35 Q1930.5 1462.32 1928.81 1464.38 Q1927.14 1466.44 1924.16 1467.18 Q1927.54 1467.96 1929.41 1470.26 Q1931.31 1472.55 1931.31 1475.86 Q1931.31 1480.88 1928.23 1483.57 Q1925.18 1486.25 1919.46 1486.25 Q1913.74 1486.25 1910.66 1483.57 Q1907.61 1480.88 1907.61 1475.86 Q1907.61 1472.55 1909.51 1470.26 Q1911.4 1467.96 1914.78 1467.18 M1913.07 1459.79 Q1913.07 1462.48 1914.74 1463.98 Q1916.43 1465.49 1919.46 1465.49 Q1922.47 1465.49 1924.16 1463.98 Q1925.87 1462.48 1925.87 1459.79 Q1925.87 1457.11 1924.16 1455.6 Q1922.47 1454.1 1919.46 1454.1 Q1916.43 1454.1 1914.74 1455.6 Q1913.07 1457.11 1913.07 1459.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M2327.44 1481.64 L2335.08 1481.64 L2335.08 1455.28 L2326.77 1456.95 L2326.77 1452.69 L2335.04 1451.02 L2339.71 1451.02 L2339.71 1481.64 L2347.35 1481.64 L2347.35 1485.58 L2327.44 1485.58 L2327.44 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M2366.8 1454.1 Q2363.18 1454.1 2361.36 1457.66 Q2359.55 1461.2 2359.55 1468.33 Q2359.55 1475.44 2361.36 1479.01 Q2363.18 1482.55 2366.8 1482.55 Q2370.43 1482.55 2372.23 1479.01 Q2374.06 1475.44 2374.06 1468.33 Q2374.06 1461.2 2372.23 1457.66 Q2370.43 1454.1 2366.8 1454.1 M2366.8 1450.39 Q2372.61 1450.39 2375.66 1455 Q2378.74 1459.58 2378.74 1468.33 Q2378.74 1477.06 2375.66 1481.67 Q2372.61 1486.25 2366.8 1486.25 Q2360.99 1486.25 2357.91 1481.67 Q2354.85 1477.06 2354.85 1468.33 Q2354.85 1459.58 2357.91 1455 Q2360.99 1450.39 2366.8 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M1268.58 1522.27 L1268.58 1532.4 L1280.64 1532.4 L1280.64 1536.95 L1268.58 1536.95 L1268.58 1556.3 Q1268.58 1560.66 1269.75 1561.9 Q1270.96 1563.14 1274.62 1563.14 L1280.64 1563.14 L1280.64 1568.04 L1274.62 1568.04 Q1267.84 1568.04 1265.27 1565.53 Q1262.69 1562.98 1262.69 1556.3 L1262.69 1536.95 L1258.39 1536.95 L1258.39 1532.4 L1262.69 1532.4 L1262.69 1522.27 L1268.58 1522.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip762)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  186.274,1384.24 2352.76,1384.24 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip762)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  186.274,1059.71 2352.76,1059.71 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip762)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  186.274,735.179 2352.76,735.179 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip762)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  186.274,410.65 2352.76,410.65 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip762)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  186.274,86.1207 2352.76,86.1207 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  186.274,1423.18 186.274,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  186.274,1384.24 205.172,1384.24 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  186.274,1059.71 205.172,1059.71 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  186.274,735.179 205.172,735.179 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  186.274,410.65 205.172,410.65 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  186.274,86.1207 205.172,86.1207 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip760)\" d=\"M62.9365 1370.04 Q59.3254 1370.04 57.4967 1373.6 Q55.6912 1377.14 55.6912 1384.27 Q55.6912 1391.38 57.4967 1394.94 Q59.3254 1398.49 62.9365 1398.49 Q66.5707 1398.49 68.3763 1394.94 Q70.205 1391.38 70.205 1384.27 Q70.205 1377.14 68.3763 1373.6 Q66.5707 1370.04 62.9365 1370.04 M62.9365 1366.33 Q68.7467 1366.33 71.8022 1370.94 Q74.8809 1375.52 74.8809 1384.27 Q74.8809 1393 71.8022 1397.61 Q68.7467 1402.19 62.9365 1402.19 Q57.1264 1402.19 54.0477 1397.61 Q50.9921 1393 50.9921 1384.27 Q50.9921 1375.52 54.0477 1370.94 Q57.1264 1366.33 62.9365 1366.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M83.0984 1395.64 L87.9827 1395.64 L87.9827 1401.52 L83.0984 1401.52 L83.0984 1395.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M108.168 1370.04 Q104.557 1370.04 102.728 1373.6 Q100.922 1377.14 100.922 1384.27 Q100.922 1391.38 102.728 1394.94 Q104.557 1398.49 108.168 1398.49 Q111.802 1398.49 113.608 1394.94 Q115.436 1391.38 115.436 1384.27 Q115.436 1377.14 113.608 1373.6 Q111.802 1370.04 108.168 1370.04 M108.168 1366.33 Q113.978 1366.33 117.033 1370.94 Q120.112 1375.52 120.112 1384.27 Q120.112 1393 117.033 1397.61 Q113.978 1402.19 108.168 1402.19 Q102.358 1402.19 99.2789 1397.61 Q96.2234 1393 96.2234 1384.27 Q96.2234 1375.52 99.2789 1370.94 Q102.358 1366.33 108.168 1366.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M138.33 1370.04 Q134.719 1370.04 132.89 1373.6 Q131.084 1377.14 131.084 1384.27 Q131.084 1391.38 132.89 1394.94 Q134.719 1398.49 138.33 1398.49 Q141.964 1398.49 143.769 1394.94 Q145.598 1391.38 145.598 1384.27 Q145.598 1377.14 143.769 1373.6 Q141.964 1370.04 138.33 1370.04 M138.33 1366.33 Q144.14 1366.33 147.195 1370.94 Q150.274 1375.52 150.274 1384.27 Q150.274 1393 147.195 1397.61 Q144.14 1402.19 138.33 1402.19 Q132.519 1402.19 129.441 1397.61 Q126.385 1393 126.385 1384.27 Q126.385 1375.52 129.441 1370.94 Q132.519 1366.33 138.33 1366.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M63.9319 1045.51 Q60.3208 1045.51 58.4921 1049.07 Q56.6865 1052.61 56.6865 1059.74 Q56.6865 1066.85 58.4921 1070.41 Q60.3208 1073.96 63.9319 1073.96 Q67.5661 1073.96 69.3717 1070.41 Q71.2004 1066.85 71.2004 1059.74 Q71.2004 1052.61 69.3717 1049.07 Q67.5661 1045.51 63.9319 1045.51 M63.9319 1041.8 Q69.742 1041.8 72.7976 1046.41 Q75.8763 1050.99 75.8763 1059.74 Q75.8763 1068.47 72.7976 1073.08 Q69.742 1077.66 63.9319 1077.66 Q58.1217 1077.66 55.043 1073.08 Q51.9875 1068.47 51.9875 1059.74 Q51.9875 1050.99 55.043 1046.41 Q58.1217 1041.8 63.9319 1041.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M84.0938 1071.11 L88.978 1071.11 L88.978 1076.99 L84.0938 1076.99 L84.0938 1071.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M103.191 1073.05 L119.51 1073.05 L119.51 1076.99 L97.566 1076.99 L97.566 1073.05 Q100.228 1070.3 104.811 1065.67 Q109.418 1061.02 110.598 1059.67 Q112.844 1057.15 113.723 1055.41 Q114.626 1053.66 114.626 1051.97 Q114.626 1049.21 112.682 1047.48 Q110.76 1045.74 107.658 1045.74 Q105.459 1045.74 103.006 1046.5 Q100.575 1047.27 97.7974 1048.82 L97.7974 1044.1 Q100.621 1042.96 103.075 1042.38 Q105.529 1041.8 107.566 1041.8 Q112.936 1041.8 116.131 1044.49 Q119.325 1047.17 119.325 1051.66 Q119.325 1053.79 118.515 1055.72 Q117.728 1057.61 115.621 1060.21 Q115.043 1060.88 111.941 1064.1 Q108.839 1067.29 103.191 1073.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M129.371 1042.43 L147.728 1042.43 L147.728 1046.36 L133.654 1046.36 L133.654 1054.84 Q134.672 1054.49 135.691 1054.33 Q136.709 1054.14 137.728 1054.14 Q143.515 1054.14 146.894 1057.31 Q150.274 1060.48 150.274 1065.9 Q150.274 1071.48 146.802 1074.58 Q143.33 1077.66 137.01 1077.66 Q134.834 1077.66 132.566 1077.29 Q130.32 1076.92 127.913 1076.18 L127.913 1071.48 Q129.996 1072.61 132.219 1073.17 Q134.441 1073.72 136.918 1073.72 Q140.922 1073.72 143.26 1071.62 Q145.598 1069.51 145.598 1065.9 Q145.598 1062.29 143.26 1060.18 Q140.922 1058.08 136.918 1058.08 Q135.043 1058.08 133.168 1058.49 Q131.316 1058.91 129.371 1059.79 L129.371 1042.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M62.9365 720.978 Q59.3254 720.978 57.4967 724.543 Q55.6912 728.085 55.6912 735.214 Q55.6912 742.321 57.4967 745.885 Q59.3254 749.427 62.9365 749.427 Q66.5707 749.427 68.3763 745.885 Q70.205 742.321 70.205 735.214 Q70.205 728.085 68.3763 724.543 Q66.5707 720.978 62.9365 720.978 M62.9365 717.274 Q68.7467 717.274 71.8022 721.881 Q74.8809 726.464 74.8809 735.214 Q74.8809 743.941 71.8022 748.547 Q68.7467 753.131 62.9365 753.131 Q57.1264 753.131 54.0477 748.547 Q50.9921 743.941 50.9921 735.214 Q50.9921 726.464 54.0477 721.881 Q57.1264 717.274 62.9365 717.274 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M83.0984 746.58 L87.9827 746.58 L87.9827 752.459 L83.0984 752.459 L83.0984 746.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M98.2141 717.899 L116.57 717.899 L116.57 721.835 L102.496 721.835 L102.496 730.307 Q103.515 729.96 104.534 729.798 Q105.552 729.612 106.571 729.612 Q112.358 729.612 115.737 732.784 Q119.117 735.955 119.117 741.372 Q119.117 746.95 115.645 750.052 Q112.172 753.131 105.853 753.131 Q103.677 753.131 101.409 752.76 Q99.1632 752.39 96.7558 751.649 L96.7558 746.95 Q98.8391 748.084 101.061 748.64 Q103.284 749.196 105.76 749.196 Q109.765 749.196 112.103 747.089 Q114.441 744.983 114.441 741.372 Q114.441 737.76 112.103 735.654 Q109.765 733.548 105.76 733.548 Q103.885 733.548 102.01 733.964 Q100.159 734.381 98.2141 735.26 L98.2141 717.899 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M138.33 720.978 Q134.719 720.978 132.89 724.543 Q131.084 728.085 131.084 735.214 Q131.084 742.321 132.89 745.885 Q134.719 749.427 138.33 749.427 Q141.964 749.427 143.769 745.885 Q145.598 742.321 145.598 735.214 Q145.598 728.085 143.769 724.543 Q141.964 720.978 138.33 720.978 M138.33 717.274 Q144.14 717.274 147.195 721.881 Q150.274 726.464 150.274 735.214 Q150.274 743.941 147.195 748.547 Q144.14 753.131 138.33 753.131 Q132.519 753.131 129.441 748.547 Q126.385 743.941 126.385 735.214 Q126.385 726.464 129.441 721.881 Q132.519 717.274 138.33 717.274 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M63.9319 396.449 Q60.3208 396.449 58.4921 400.014 Q56.6865 403.555 56.6865 410.685 Q56.6865 417.791 58.4921 421.356 Q60.3208 424.898 63.9319 424.898 Q67.5661 424.898 69.3717 421.356 Q71.2004 417.791 71.2004 410.685 Q71.2004 403.555 69.3717 400.014 Q67.5661 396.449 63.9319 396.449 M63.9319 392.745 Q69.742 392.745 72.7976 397.352 Q75.8763 401.935 75.8763 410.685 Q75.8763 419.412 72.7976 424.018 Q69.742 428.601 63.9319 428.601 Q58.1217 428.601 55.043 424.018 Q51.9875 419.412 51.9875 410.685 Q51.9875 401.935 55.043 397.352 Q58.1217 392.745 63.9319 392.745 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M84.0938 422.05 L88.978 422.05 L88.978 427.93 L84.0938 427.93 L84.0938 422.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M97.9826 393.37 L120.205 393.37 L120.205 395.361 L107.658 427.93 L102.774 427.93 L114.58 397.305 L97.9826 397.305 L97.9826 393.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M129.371 393.37 L147.728 393.37 L147.728 397.305 L133.654 397.305 L133.654 405.777 Q134.672 405.43 135.691 405.268 Q136.709 405.083 137.728 405.083 Q143.515 405.083 146.894 408.254 Q150.274 411.426 150.274 416.842 Q150.274 422.421 146.802 425.523 Q143.33 428.601 137.01 428.601 Q134.834 428.601 132.566 428.231 Q130.32 427.861 127.913 427.12 L127.913 422.421 Q129.996 423.555 132.219 424.111 Q134.441 424.666 136.918 424.666 Q140.922 424.666 143.26 422.56 Q145.598 420.453 145.598 416.842 Q145.598 413.231 143.26 411.125 Q140.922 409.018 136.918 409.018 Q135.043 409.018 133.168 409.435 Q131.316 409.851 129.371 410.731 L129.371 393.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M53.7467 99.4655 L61.3856 99.4655 L61.3856 73.0999 L53.0754 74.7666 L53.0754 70.5073 L61.3393 68.8407 L66.0152 68.8407 L66.0152 99.4655 L73.654 99.4655 L73.654 103.401 L53.7467 103.401 L53.7467 99.4655 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M83.0984 97.5211 L87.9827 97.5211 L87.9827 103.401 L83.0984 103.401 L83.0984 97.5211 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M108.168 71.9194 Q104.557 71.9194 102.728 75.4842 Q100.922 79.0258 100.922 86.1554 Q100.922 93.2618 102.728 96.8266 Q104.557 100.368 108.168 100.368 Q111.802 100.368 113.608 96.8266 Q115.436 93.2618 115.436 86.1554 Q115.436 79.0258 113.608 75.4842 Q111.802 71.9194 108.168 71.9194 M108.168 68.2157 Q113.978 68.2157 117.033 72.8221 Q120.112 77.4054 120.112 86.1554 Q120.112 94.8822 117.033 99.4887 Q113.978 104.072 108.168 104.072 Q102.358 104.072 99.2789 99.4887 Q96.2234 94.8822 96.2234 86.1554 Q96.2234 77.4054 99.2789 72.8221 Q102.358 68.2157 108.168 68.2157 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip760)\" d=\"M138.33 71.9194 Q134.719 71.9194 132.89 75.4842 Q131.084 79.0258 131.084 86.1554 Q131.084 93.2618 132.89 96.8266 Q134.719 100.368 138.33 100.368 Q141.964 100.368 143.769 96.8266 Q145.598 93.2618 145.598 86.1554 Q145.598 79.0258 143.769 75.4842 Q141.964 71.9194 138.33 71.9194 M138.33 68.2157 Q144.14 68.2157 147.195 72.8221 Q150.274 77.4054 150.274 86.1554 Q150.274 94.8822 147.195 99.4887 Q144.14 104.072 138.33 104.072 Q132.519 104.072 129.441 99.4887 Q126.385 94.8822 126.385 86.1554 Q126.385 77.4054 129.441 72.8221 Q132.519 68.2157 138.33 68.2157 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip762)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  186.274,1384.24 188.443,1371.31 190.611,1358.51 192.78,1345.84 194.949,1333.29 197.117,1320.87 199.286,1308.57 201.455,1296.39 203.623,1284.34 205.792,1272.4 \n",
+       "  207.961,1260.59 210.129,1248.89 212.298,1237.31 214.466,1225.84 216.635,1214.49 218.804,1203.25 220.972,1192.13 223.141,1181.11 225.31,1170.2 227.478,1159.41 \n",
+       "  229.647,1148.72 231.816,1138.13 233.984,1127.66 236.153,1117.28 238.322,1107.01 240.49,1096.84 242.659,1086.78 244.828,1076.81 246.996,1066.94 249.165,1057.17 \n",
+       "  251.334,1047.5 253.502,1037.93 255.671,1028.45 257.839,1019.06 260.008,1009.77 262.177,1000.57 264.345,991.46 266.514,982.443 268.683,973.516 270.851,964.677 \n",
+       "  273.02,955.927 275.189,947.263 277.357,938.686 279.526,930.195 281.695,921.788 283.863,913.464 286.032,905.224 288.201,897.065 290.369,888.988 292.538,880.992 \n",
+       "  294.707,873.075 296.875,865.236 299.044,857.476 301.212,849.794 303.381,842.187 305.55,834.657 307.718,827.201 309.887,819.82 312.056,812.512 314.224,805.278 \n",
+       "  316.393,798.115 318.562,791.023 320.73,784.002 322.899,777.051 325.068,770.17 327.236,763.357 329.405,756.611 331.574,749.933 333.742,743.322 335.911,736.776 \n",
+       "  338.08,730.295 340.248,723.879 342.417,717.527 344.585,711.238 346.754,705.012 348.923,698.848 351.091,692.745 353.26,686.703 355.429,680.721 357.597,674.798 \n",
+       "  359.766,668.935 361.935,663.13 364.103,657.383 366.272,651.693 368.441,646.06 370.609,640.483 372.778,634.961 374.947,629.495 377.115,624.083 379.284,618.724 \n",
+       "  381.453,613.42 383.621,608.168 385.79,602.968 387.959,597.82 390.127,592.724 392.296,587.678 394.464,582.683 396.633,577.737 398.802,572.841 400.97,567.993 \n",
+       "  403.139,563.194 405.308,558.442 407.476,553.738 409.645,549.08 411.814,544.469 413.982,539.904 416.151,535.384 418.32,530.91 420.488,526.479 422.657,522.093 \n",
+       "  424.826,517.751 426.994,513.452 429.163,509.196 431.332,504.982 433.5,500.81 435.669,496.679 437.837,492.59 440.006,488.541 442.175,484.533 444.343,480.564 \n",
+       "  446.512,476.635 448.681,472.746 450.849,468.895 453.018,465.082 455.187,461.308 457.355,457.571 459.524,453.871 461.693,450.208 463.861,446.582 466.03,442.991 \n",
+       "  468.199,439.437 470.367,435.918 472.536,432.434 474.705,428.985 476.873,425.57 479.042,422.189 481.21,418.842 483.379,415.528 485.548,412.247 487.716,408.999 \n",
+       "  489.885,405.784 492.054,402.6 494.222,399.448 496.391,396.327 498.56,393.238 500.728,390.179 502.897,387.151 505.066,384.152 507.234,381.184 509.403,378.245 \n",
+       "  511.572,375.336 513.74,372.455 515.909,369.603 518.078,366.78 520.246,363.984 522.415,361.217 524.583,358.477 526.752,355.764 528.921,353.078 531.089,350.419 \n",
+       "  533.258,347.786 535.427,345.18 537.595,342.599 539.764,340.044 541.933,337.515 544.101,335.011 546.27,332.531 548.439,330.077 550.607,327.647 552.776,325.241 \n",
+       "  554.945,322.859 557.113,320.501 559.282,318.166 561.451,315.855 563.619,313.567 565.788,311.301 567.956,309.058 570.125,306.838 572.294,304.64 574.462,302.463 \n",
+       "  576.631,300.308 578.8,298.175 580.968,296.063 583.137,293.972 585.306,291.902 587.474,289.853 589.643,287.824 591.812,285.815 593.98,283.826 596.149,281.857 \n",
+       "  598.318,279.908 600.486,277.978 602.655,276.068 604.824,274.176 606.992,272.303 609.161,270.449 611.33,268.613 613.498,266.796 615.667,264.996 617.835,263.215 \n",
+       "  620.004,261.451 622.173,259.705 624.341,257.976 626.51,256.265 628.679,254.57 630.847,252.892 633.016,251.231 635.185,249.587 637.353,247.959 639.522,246.347 \n",
+       "  641.691,244.751 643.859,243.17 646.028,241.606 648.197,240.057 650.365,238.523 652.534,237.005 654.703,235.502 656.871,234.014 659.04,232.54 661.208,231.082 \n",
+       "  663.377,229.637 665.546,228.207 667.714,226.792 669.883,225.39 672.052,224.003 674.22,222.629 676.389,221.269 678.558,219.923 680.726,218.59 682.895,217.271 \n",
+       "  685.064,215.964 687.232,214.671 689.401,213.39 691.57,212.122 693.738,210.867 695.907,209.625 698.076,208.395 700.244,207.177 702.413,205.971 704.581,204.778 \n",
+       "  706.75,203.596 708.919,202.426 711.087,201.268 713.256,200.121 715.425,198.986 717.593,197.862 719.762,196.749 721.931,195.648 724.099,194.557 726.268,193.477 \n",
+       "  728.437,192.408 730.605,191.35 732.774,190.302 734.943,189.265 737.111,188.238 739.28,187.221 741.449,186.214 743.617,185.218 745.786,184.231 747.954,183.254 \n",
+       "  750.123,182.287 752.292,181.329 754.46,180.381 756.629,179.443 758.798,178.513 760.966,177.593 763.135,176.682 765.304,175.781 767.472,174.888 769.641,174.004 \n",
+       "  771.81,173.128 773.978,172.262 776.147,171.404 778.316,170.554 780.484,169.713 782.653,168.88 784.822,168.055 786.99,167.239 789.159,166.431 791.328,165.63 \n",
+       "  793.496,164.838 795.665,164.054 797.833,163.277 800.002,162.508 802.171,161.747 804.339,160.993 806.508,160.247 808.677,159.508 810.845,158.777 813.014,158.053 \n",
+       "  815.183,157.336 817.351,156.626 819.52,155.923 821.689,155.228 823.857,154.539 826.026,153.857 828.195,153.183 830.363,152.514 832.532,151.853 834.701,151.198 \n",
+       "  836.869,150.55 839.038,149.908 841.206,149.272 843.375,148.643 845.544,148.02 847.712,147.404 849.881,146.794 852.05,146.189 854.218,145.591 856.387,144.999 \n",
+       "  858.556,144.412 860.724,143.832 862.893,143.257 865.062,142.689 867.23,142.125 869.399,141.568 871.568,141.016 873.736,140.469 875.905,139.928 878.074,139.393 \n",
+       "  880.242,138.862 882.411,138.338 884.579,137.818 886.748,137.303 888.917,136.794 891.085,136.29 893.254,135.79 895.423,135.296 897.591,134.807 899.76,134.322 \n",
+       "  901.929,133.842 904.097,133.367 906.266,132.897 908.435,132.432 910.603,131.971 912.772,131.514 914.941,131.062 917.109,130.615 919.278,130.172 921.447,129.734 \n",
+       "  923.615,129.3 925.784,128.87 927.952,128.444 930.121,128.023 932.29,127.605 934.458,127.192 936.627,126.783 938.796,126.378 940.964,125.977 943.133,125.58 \n",
+       "  945.302,125.186 947.47,124.797 949.639,124.412 951.808,124.03 953.976,123.652 956.145,123.278 958.314,122.907 960.482,122.54 962.651,122.177 964.82,121.818 \n",
+       "  966.988,121.462 969.157,121.109 971.326,120.76 973.494,120.415 975.663,120.073 977.831,119.734 980,119.399 982.169,119.067 984.337,118.738 986.506,118.413 \n",
+       "  988.675,118.091 990.843,117.772 993.012,117.456 995.181,117.144 997.349,116.835 999.518,116.528 1001.69,116.225 1003.86,115.925 1006.02,115.628 1008.19,115.334 \n",
+       "  1010.36,115.043 1012.53,114.755 1014.7,114.469 1016.87,114.187 1019.04,113.907 1021.2,113.63 1023.37,113.356 1025.54,113.085 1027.71,112.816 1029.88,112.551 \n",
+       "  1032.05,112.287 1034.22,112.027 1036.39,111.769 1038.55,111.514 1040.72,111.261 1042.89,111.011 1045.06,110.763 1047.23,110.518 1049.4,110.275 1051.57,110.035 \n",
+       "  1053.73,109.797 1055.9,109.561 1058.07,109.328 1060.24,109.097 1062.41,108.869 1064.58,108.643 1066.75,108.419 1068.91,108.197 1071.08,107.978 1073.25,107.76 \n",
+       "  1075.42,107.545 1077.59,107.332 1079.76,107.121 1081.93,106.913 1084.1,106.706 1086.26,106.501 1088.43,106.299 1090.6,106.098 1092.77,105.9 1094.94,105.703 \n",
+       "  1097.11,105.508 1099.28,105.316 1101.44,105.125 1103.61,104.936 1105.78,104.749 1107.95,104.563 1110.12,104.38 1112.29,104.198 1114.46,104.018 1116.63,103.84 \n",
+       "  1118.79,103.664 1120.96,103.489 1123.13,103.317 1125.3,103.145 1127.47,102.976 1129.64,102.808 1131.81,102.641 1133.97,102.477 1136.14,102.314 1138.31,102.152 \n",
+       "  1140.48,101.992 1142.65,101.834 1144.82,101.677 1146.99,101.522 1149.15,101.368 1151.32,101.216 1153.49,101.065 1155.66,100.916 1157.83,100.768 1160,100.622 \n",
+       "  1162.17,100.477 1164.34,100.334 1166.5,100.192 1168.67,100.051 1170.84,99.9118 1173.01,99.774 1175.18,99.6375 1177.35,99.5025 1179.52,99.3687 1181.68,99.2364 \n",
+       "  1183.85,99.1053 1186.02,98.9756 1188.19,98.8471 1190.36,98.72 1192.53,98.5941 1194.7,98.4695 1196.87,98.3462 1199.03,98.224 1201.2,98.1032 1203.37,97.9835 \n",
+       "  1205.54,97.8651 1207.71,97.7478 1209.88,97.6318 1212.05,97.5169 1214.21,97.4031 1216.38,97.2906 1218.55,97.1792 1220.72,97.0689 1222.89,96.9597 1225.06,96.8516 \n",
+       "  1227.23,96.7446 1229.39,96.6387 1231.56,96.5339 1233.73,96.4302 1235.9,96.3275 1238.07,96.2259 1240.24,96.1253 1242.41,96.0257 1244.58,95.9271 1246.74,95.8295 \n",
+       "  1248.91,95.7329 1251.08,95.6373 1253.25,95.5427 1255.42,95.4491 1257.59,95.3564 1259.76,95.2646 1261.92,95.1737 1264.09,95.0838 1266.26,94.9948 1268.43,94.9067 \n",
+       "  1270.6,94.8195 1272.77,94.7332 1274.94,94.6477 1277.11,94.5632 1279.27,94.4794 1281.44,94.3965 1283.61,94.3145 1285.78,94.2333 1287.95,94.1528 1290.12,94.0732 \n",
+       "  1292.29,93.9944 1294.45,93.9164 1296.62,93.8392 1298.79,93.7627 1300.96,93.687 1303.13,93.6121 1305.3,93.5379 1307.47,93.4644 1309.63,93.3917 1311.8,93.3197 \n",
+       "  1313.97,93.2483 1316.14,93.1777 1318.31,93.1078 1320.48,93.0386 1322.65,92.97 1324.82,92.9022 1326.98,92.8349 1329.15,92.7684 1331.32,92.7024 1333.49,92.6371 \n",
+       "  1335.66,92.5725 1337.83,92.5084 1340,92.445 1342.16,92.3821 1344.33,92.3199 1346.5,92.2583 1348.67,92.1972 1350.84,92.1367 1353.01,92.0768 1355.18,92.0174 \n",
+       "  1357.35,91.9586 1359.51,91.9004 1361.68,91.8427 1363.85,91.7855 1366.02,91.7289 1368.19,91.6729 1370.36,91.6174 1372.53,91.5624 1374.69,91.5079 1376.86,91.454 \n",
+       "  1379.03,91.4006 1381.2,91.3477 1383.37,91.2953 1385.54,91.2434 1387.71,91.1921 1389.88,91.1412 1392.04,91.0909 1394.21,91.041 1396.38,90.9916 1398.55,90.9428 \n",
+       "  1400.72,90.8943 1402.89,90.8464 1405.06,90.799 1407.22,90.752 1409.39,90.7055 1411.56,90.6595 1413.73,90.6139 1415.9,90.5687 1418.07,90.5241 1420.24,90.4798 \n",
+       "  1422.4,90.4361 1424.57,90.3927 1426.74,90.3498 1428.91,90.3074 1431.08,90.2653 1433.25,90.2237 1435.42,90.1826 1437.59,90.1418 1439.75,90.1015 1441.92,90.0615 \n",
+       "  1444.09,90.022 1446.26,89.9829 1448.43,89.9442 1450.6,89.9059 1452.77,89.8679 1454.93,89.8304 1457.1,89.7933 1459.27,89.7565 1461.44,89.7201 1463.61,89.6841 \n",
+       "  1465.78,89.6485 1467.95,89.6132 1470.12,89.5783 1472.28,89.5438 1474.45,89.5096 1476.62,89.4758 1478.79,89.4424 1480.96,89.4092 1483.13,89.3765 1485.3,89.3441 \n",
+       "  1487.46,89.312 1489.63,89.2802 1491.8,89.2488 1493.97,89.2177 1496.14,89.1869 1498.31,89.1565 1500.48,89.1264 1502.64,89.0966 1504.81,89.0671 1506.98,89.0379 \n",
+       "  1509.15,89.009 1511.32,88.9804 1513.49,88.9521 1515.66,88.9241 1517.83,88.8964 1519.99,88.869 1522.16,88.8419 1524.33,88.815 1526.5,88.7885 1528.67,88.7622 \n",
+       "  1530.84,88.7362 1533.01,88.7104 1535.17,88.6849 1537.34,88.6597 1539.51,88.6348 1541.68,88.61 1543.85,88.5856 1546.02,88.5614 1548.19,88.5374 1550.36,88.5137 \n",
+       "  1552.52,88.4902 1554.69,88.467 1556.86,88.444 1559.03,88.4212 1561.2,88.3987 1563.37,88.3764 1565.54,88.3543 1567.7,88.3324 1569.87,88.3107 1572.04,88.2893 \n",
+       "  1574.21,88.268 1576.38,88.247 1578.55,88.2262 1580.72,88.2055 1582.88,88.1851 1585.05,88.1648 1587.22,88.1448 1589.39,88.1249 1591.56,88.1052 1593.73,88.0857 \n",
+       "  1595.9,88.0664 1598.07,88.0473 1600.23,88.0283 1602.4,88.0095 1604.57,87.9909 1606.74,87.9724 1608.91,87.9541 1611.08,87.936 1613.25,87.918 1615.41,87.9002 \n",
+       "  1617.58,87.8825 1619.75,87.8649 1621.92,87.8475 1624.09,87.8303 1626.26,87.8132 1628.43,87.7963 1630.6,87.7795 1632.76,87.7629 1634.93,87.7464 1637.1,87.7301 \n",
+       "  1639.27,87.7139 1641.44,87.6979 1643.61,87.682 1645.78,87.6663 1647.94,87.6507 1650.11,87.6353 1652.28,87.62 1654.45,87.6048 1656.62,87.5898 1658.79,87.5749 \n",
+       "  1660.96,87.5602 1663.13,87.5456 1665.29,87.5311 1667.46,87.5168 1669.63,87.5026 1671.8,87.4886 1673.97,87.4747 1676.14,87.4609 1678.31,87.4473 1680.47,87.4338 \n",
+       "  1682.64,87.4204 1684.81,87.4072 1686.98,87.3941 1689.15,87.3811 1691.32,87.3683 1693.49,87.3555 1695.65,87.343 1697.82,87.3305 1699.99,87.3182 1702.16,87.3059 \n",
+       "  1704.33,87.2939 1706.5,87.2819 1708.67,87.27 1710.84,87.2583 1713,87.2467 1715.17,87.2352 1717.34,87.2239 1719.51,87.2126 1721.68,87.2015 1723.85,87.1905 \n",
+       "  1726.02,87.1796 1728.18,87.1689 1730.35,87.1582 1732.52,87.1476 1734.69,87.1372 1736.86,87.1269 1739.03,87.1167 1741.2,87.1066 1743.37,87.0966 1745.53,87.0867 \n",
+       "  1747.7,87.0769 1749.87,87.0672 1752.04,87.0577 1754.21,87.0482 1756.38,87.0388 1758.55,87.0296 1760.71,87.0204 1762.88,87.0114 1765.05,87.0024 1767.22,86.9935 \n",
+       "  1769.39,86.9848 1771.56,86.9761 1773.73,86.9676 1775.89,86.9591 1778.06,86.9507 1780.23,86.9424 1782.4,86.9342 1784.57,86.9261 1786.74,86.9181 1788.91,86.9102 \n",
+       "  1791.08,86.9024 1793.24,86.8947 1795.41,86.887 1797.58,86.8794 1799.75,86.872 1801.92,86.8646 1804.09,86.8573 1806.26,86.85 1808.42,86.8429 1810.59,86.8358 \n",
+       "  1812.76,86.8288 1814.93,86.8219 1817.1,86.8151 1819.27,86.8083 1821.44,86.8017 1823.61,86.7951 1825.77,86.7885 1827.94,86.7821 1830.11,86.7757 1832.28,86.7694 \n",
+       "  1834.45,86.7631 1836.62,86.757 1838.79,86.7509 1840.95,86.7448 1843.12,86.7389 1845.29,86.7329 1847.46,86.7271 1849.63,86.7213 1851.8,86.7156 1853.97,86.71 \n",
+       "  1856.13,86.7044 1858.3,86.6988 1860.47,86.6934 1862.64,86.688 1864.81,86.6826 1866.98,86.6773 1869.15,86.672 1871.32,86.6668 1873.48,86.6617 1875.65,86.6566 \n",
+       "  1877.82,86.6516 1879.99,86.6466 1882.16,86.6416 1884.33,86.6367 1886.5,86.6319 1888.66,86.6271 1890.83,86.6223 1893,86.6176 1895.17,86.6129 1897.34,86.6083 \n",
+       "  1899.51,86.6037 1901.68,86.5992 1903.85,86.5947 1906.01,86.5902 1908.18,86.5857 1910.35,86.5813 1912.52,86.577 1914.69,86.5726 1916.86,86.5683 1919.03,86.5641 \n",
+       "  1921.19,86.5598 1923.36,86.5556 1925.53,86.5514 1927.7,86.5473 1929.87,86.5431 1932.04,86.539 1934.21,86.5349 1936.37,86.5309 1938.54,86.5269 1940.71,86.5228 \n",
+       "  1942.88,86.5188 1945.05,86.5149 1947.22,86.5109 1949.39,86.507 1951.56,86.5031 1953.72,86.4993 1955.89,86.4954 1958.06,86.4917 1960.23,86.4879 1962.4,86.4841 \n",
+       "  1964.57,86.4804 1966.74,86.4768 1968.9,86.4731 1971.07,86.4695 1973.24,86.4659 1975.41,86.4623 1977.58,86.4588 1979.75,86.4553 1981.92,86.4518 1984.09,86.4484 \n",
+       "  1986.25,86.445 1988.42,86.4416 1990.59,86.4382 1992.76,86.4349 1994.93,86.4316 1997.1,86.4283 1999.27,86.4251 2001.43,86.4219 2003.6,86.4187 2005.77,86.4156 \n",
+       "  2007.94,86.4124 2010.11,86.4093 2012.28,86.4063 2014.45,86.4032 2016.62,86.4002 2018.78,86.3972 2020.95,86.3943 2023.12,86.3914 2025.29,86.3885 2027.46,86.3856 \n",
+       "  2029.63,86.3827 2031.8,86.3799 2033.96,86.3772 2036.13,86.3744 2038.3,86.3717 2040.47,86.369 2042.64,86.3663 2044.81,86.3636 2046.98,86.361 2049.14,86.3584 \n",
+       "  2051.31,86.3559 2053.48,86.3533 2055.65,86.3508 2057.82,86.3484 2059.99,86.3459 2062.16,86.3435 2064.33,86.3411 2066.49,86.3387 2068.66,86.3363 2070.83,86.334 \n",
+       "  2073,86.3317 2075.17,86.3295 2077.34,86.3272 2079.51,86.325 2081.67,86.3228 2083.84,86.3206 2086.01,86.3185 2088.18,86.3164 2090.35,86.3143 2092.52,86.3122 \n",
+       "  2094.69,86.3102 2096.86,86.3082 2099.02,86.3062 2101.19,86.3042 2103.36,86.3023 2105.53,86.3004 2107.7,86.2985 2109.87,86.2966 2112.04,86.2948 2114.2,86.2929 \n",
+       "  2116.37,86.2911 2118.54,86.2894 2120.71,86.2876 2122.88,86.2859 2125.05,86.2842 2127.22,86.2825 2129.38,86.2808 2131.55,86.2792 2133.72,86.2776 2135.89,86.276 \n",
+       "  2138.06,86.2744 2140.23,86.2728 2142.4,86.2713 2144.57,86.2698 2146.73,86.2683 2148.9,86.2668 2151.07,86.2654 2153.24,86.264 2155.41,86.2626 2157.58,86.2612 \n",
+       "  2159.75,86.2598 2161.91,86.2585 2164.08,86.2571 2166.25,86.2558 2168.42,86.2545 2170.59,86.2533 2172.76,86.252 2174.93,86.2508 2177.1,86.2496 2179.26,86.2484 \n",
+       "  2181.43,86.2472 2183.6,86.246 2185.77,86.2449 2187.94,86.2437 2190.11,86.2426 2192.28,86.2415 2194.44,86.2404 2196.61,86.2394 2198.78,86.2383 2200.95,86.2373 \n",
+       "  2203.12,86.2363 2205.29,86.2353 2207.46,86.2343 2209.62,86.2333 2211.79,86.2323 2213.96,86.2314 2216.13,86.2304 2218.3,86.2295 2220.47,86.2286 2222.64,86.2277 \n",
+       "  2224.81,86.2268 2226.97,86.226 2229.14,86.2251 2231.31,86.2242 2233.48,86.2234 2235.65,86.2226 2237.82,86.2218 2239.99,86.221 2242.15,86.2202 2244.32,86.2194 \n",
+       "  2246.49,86.2186 2248.66,86.2178 2250.83,86.2171 2253,86.2163 2255.17,86.2156 2257.34,86.2149 2259.5,86.2141 2261.67,86.2134 2263.84,86.2127 2266.01,86.212 \n",
+       "  2268.18,86.2113 2270.35,86.2106 2272.52,86.2099 2274.68,86.2093 2276.85,86.2086 2279.02,86.2079 2281.19,86.2072 2283.36,86.2066 2285.53,86.2059 2287.7,86.2053 \n",
+       "  2289.87,86.2046 2292.03,86.204 2294.2,86.2033 2296.37,86.2027 2298.54,86.202 2300.71,86.2014 2302.88,86.2008 2305.05,86.2001 2307.21,86.1995 2309.38,86.1988 \n",
+       "  2311.55,86.1982 2313.72,86.1976 2315.89,86.1969 2318.06,86.1963 2320.23,86.1956 2322.39,86.195 2324.56,86.1943 2326.73,86.1937 2328.9,86.193 2331.07,86.1924 \n",
+       "  2333.24,86.1917 2335.41,86.191 2337.58,86.1904 2339.74,86.1897 2341.91,86.189 2344.08,86.1883 2346.25,86.1877 2348.42,86.187 2350.59,86.1863 2352.76,86.1857 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip760)\" d=\"\n",
+       "M2017.88 196.789 L2280.54 196.789 L2280.54 93.1086 L2017.88 93.1086  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2017.88,196.789 2280.54,196.789 2280.54,93.1086 2017.88,93.1086 2017.88,196.789 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip760)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2041.95,144.949 2186.38,144.949 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip760)\" d=\"M2216.08 158.293 L2232.4 158.293 L2232.4 162.229 L2210.45 162.229 L2210.45 158.293 Q2213.11 155.539 2217.7 150.909 Q2222.3 146.256 2223.48 144.914 Q2225.73 142.391 2226.61 140.655 Q2227.51 138.895 2227.51 137.206 Q2227.51 134.451 2225.57 132.715 Q2223.65 130.979 2220.54 130.979 Q2218.34 130.979 2215.89 131.743 Q2213.46 132.507 2210.68 134.057 L2210.68 129.335 Q2213.51 128.201 2215.96 127.622 Q2218.41 127.044 2220.45 127.044 Q2225.82 127.044 2229.02 129.729 Q2232.21 132.414 2232.21 136.905 Q2232.21 139.034 2231.4 140.956 Q2230.61 142.854 2228.51 145.446 Q2227.93 146.118 2224.83 149.335 Q2221.72 152.53 2216.08 158.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "execution_count": 8,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "plot(sol)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Julia 1.7.2",
+   "language": "julia",
+   "name": "julia-1.7"
+  },
+  "language_info": {
+   "file_extension": ".jl",
+   "mimetype": "application/julia",
+   "name": "julia",
+   "version": "1.7.2"
+  }
+ },
  "nbformat": 4,
  "nbformat_minor": 4
 }
diff --git a/exploration_modia3D.ipynb b/exploration_modia3D.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..3c9ddf0db8b4e0cb5f452555cc9504d879bb0bbb
--- /dev/null
+++ b/exploration_modia3D.ipynb
@@ -0,0 +1,95 @@
+{
+ "cells": [
+  {
+   "cell_type": "code",
+   "execution_count": 1,
+   "id": "d47c9765-5d14-4e9d-a42e-1623da8bf5ae",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "\n",
+      "... Info: ENV[\"DLR_VISUALIZATION\"] is not defined.\n",
+      "          Therefore, no online renderer is used in Modia3D.\n",
+      "\n"
+     ]
+    }
+   ],
+   "source": [
+    "using Modia3D"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "id": "964c5cea-1e33-4fa0-be73-68acff0fd5a2",
+   "metadata": {},
+   "outputs": [
+    {
+     "ename": "LoadError",
+     "evalue": "TypeError: in keyword argument parent, expected Union{Nothing, Object3D}, got a value of type Symbol",
+     "output_type": "error",
+     "traceback": [
+      "TypeError: in keyword argument parent, expected Union{Nothing, Object3D}, got a value of type Symbol",
+      "",
+      "Stacktrace:",
+      " [1] top-level scope",
+      "   @ In[2]:1",
+      " [2] eval",
+      "   @ ./boot.jl:373 [inlined]",
+      " [3] include_string(mapexpr::typeof(REPL.softscope), mod::Module, code::String, filename::String)",
+      "   @ Base ./loading.jl:1196"
+     ]
+    }
+   ],
+   "source": [
+    "Pendulum = Model3D(\n",
+    "    world     = Object3D(feature=Scene()),\n",
+    "    body      = Object3D(feature=Solid(massProperties=MassProperties(mass=1.0))),\n",
+    "    bodyFrame = Object3D(parent=:body, translation=[-0.5, 0.0, 0.0]),\n",
+    "    rev       = Revolute(obj1=:world, obj2=:bodyFrame)\n",
+    ")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "id": "6584c04b-be0e-49f4-a7ac-d4ad06c404a5",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "pendulum = @instantiateModel(Pendulum, unitless=true)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "id": "976e8115-66fb-4bea-a5cf-59dfeffc7224",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "simulate!(pendulum, stopTime=3.0)\n",
+    "\n",
+    "@usingModiaPlot     # use the plot package defined by ENV[\"MODIA_PLOT\"]\n",
+    "plot(pendulum, \"rev.phi\")"
+   ]
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Julia 1.7.2",
+   "language": "julia",
+   "name": "julia-1.7"
+  },
+  "language_info": {
+   "file_extension": ".jl",
+   "mimetype": "application/julia",
+   "name": "julia",
+   "version": "1.7.2"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/physical_specifications.ipynb b/physical_specifications.ipynb
index 7fec51502cbc3200b3d0ffc6bbba1fe85e197f3d..f2be5552f54da78555ab183477e679d484e756ed 100644
--- a/physical_specifications.ipynb
+++ b/physical_specifications.ipynb
@@ -1,6 +1,71 @@
 {
- "cells": [],
- "metadata": {},
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Physical specification for the omnibot"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "The omnibot should consist of three major components:\n",
+    "* Chassi (traingle of plastic)\n",
+    "* 3 omni-wheels\n",
+    "* 3 servos that drive the wheels"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Wheel model"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Servo model"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Chassi model"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Everything combined"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Julia 1.7.2",
+   "language": "julia",
+   "name": "julia-1.7"
+  },
+  "language_info": {
+   "file_extension": ".jl",
+   "mimetype": "application/julia",
+   "name": "julia",
+   "version": "1.7.2"
+  }
+ },
  "nbformat": 4,
  "nbformat_minor": 4
 }