diff --git a/code/semiconductors.py b/code/semiconductors.py
index 320fda317e5f66bce49f440b733823a61de5b4da..b01f1b0ca2a0c50d43eb0744986800b062ce0d45 100644
--- a/code/semiconductors.py
+++ b/code/semiconductors.py
@@ -11,21 +11,23 @@ from scipy.integrate import quad
 import common
 from common import draw_classic_axes
 
+E_V, E_C, E_F = -1.2, 1.8, .4
+E_D, E_A = E_C - .7, E_V + .5
+m_h, m_e = 1, .5
+
 
 def plot_dos():
     E = np.linspace(-3, 3, 1000)
     fig, ax = pyplot.subplots()
 
-    E_V, E_C, E_F = -.5, 1, 0.3
-    m_h, m_e = 1, .5
     n_F = 1/(np.exp(2*(E - E_F)) + 1)
     g_e = m_e * sqrt_plus(E - E_C)
     g_h = m_h * sqrt_plus(E_V - E)
     sqrt_plus = lambda x: np.sqrt(x * (x >= 0))
     ax.plot(E, g_h, label="$g_e$")
     ax.plot(E, g_e, label="$g_h$")
-    ax.plot(E, g_h * (1-n_F), label="$n_h$")
-    ax.plot(E, g_e * n_F, label="$n_e$")
+    ax.plot(E, 10 * g_h * (1-n_F), label="$n_h$")
+    ax.plot(E, 10 * g_e * n_F, label="$n_e$")
     ax.plot(E, n_F, label="$n_F$", linestyle='dashed')
     ax.set_ylim(top=1.5)
 
@@ -37,9 +39,33 @@ def plot_dos():
     draw_classic_axes(ax, xlabeloffset=.2)
     fig.savefig('intrinsic_DOS.svg')
 
+def plot_doping():    
+    E = np.linspace(-3, 3, 1000)
+    fig, ax = pyplot.subplots()
+
+    n_F = 1/(np.exp(2*(E - E_F)) + 1)
+    g_e = m_e * sqrt_plus(E - E_C)
+    g_h = m_h * sqrt_plus(E_V - E)
+    sqrt_plus = lambda x: np.sqrt(x * (x >= 0))
+    ax.plot(E, g_h, label="$g_e$")
+    ax.plot(E, g_e, label="$g_h$")
+
+    sigma = 0.01
+    g_D = np.exp(-(E_D - E)**2 / sigma**2)
+    g_A = .7 * np.exp(-(E_A - E)**2 / sigma**2)
+    ax.plot(E, g_D, label='$g_D$')
+    ax.plot(E, g_A, label='$g_A$')
+    ax.legend()
+    ax.set_xticks([E_V, E_C, E_A, E_D])
+    ax.set_xticklabels(['$E_V$', '$E_C$', '$E_A$', '$E_D$'])
+    draw_classic_axes(ax, xlabeloffset=.2)
+    fig.savefig('doping.svg')
+
 
 def main():
     os.chdir('docs/figures')
+    plot_dos()
+    plot_doping()
 
 if __name__ == "__main__":
     main()
diff --git a/docs/figures/doping.svg b/docs/figures/doping.svg
deleted file mode 100644
index 693474a854378af733874bf6a9eb78dcd2283521..0000000000000000000000000000000000000000
--- a/docs/figures/doping.svg
+++ /dev/null
@@ -1,252 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:ns0="http://www.iki.fi/pav/software/textext/"
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="126.89755mm"
-   height="96.865898mm"
-   viewBox="0 0 449.63699 343.22562"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.91 r13725"
-   sodipodi:docname="doping.svg">
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="0.98994949"
-     inkscape:cx="356.73156"
-     inkscape:cy="222.51216"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     inkscape:window-width="1855"
-     inkscape:window-height="1056"
-     inkscape:window-x="65"
-     inkscape:window-y="24"
-     inkscape:window-maximized="1"
-     fit-margin-top="0"
-     fit-margin-left="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0" />
-  <defs
-     id="defs4">
-    <marker
-       inkscape:stockid="Arrow1Lend"
-       orient="auto"
-       refY="0"
-       refX="0"
-       id="marker4476"
-       style="overflow:visible"
-       inkscape:isstock="true">
-      <path
-         inkscape:connector-curvature="0"
-         id="path4478"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
-         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
-         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
-    </marker>
-    <marker
-       inkscape:collect="always"
-       inkscape:isstock="true"
-       style="overflow:visible"
-       id="Arrow1Lend"
-       refX="0"
-       refY="0"
-       orient="auto"
-       inkscape:stockid="Arrow1Lend">
-      <path
-         inkscape:connector-curvature="0"
-         transform="matrix(-0.8,0,0,-0.8,-10,0)"
-         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
-         id="path4157" />
-    </marker>
-  </defs>
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     transform="translate(-84.449748,-99.452904)"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       id="path4211"
-       d="m 483.15291,296.83334 -0.0625,-0.12485 -0.0311,-0.12484 -0.0936,-0.12484 -0.0625,-0.12485 -0.0625,-0.12484 -0.0625,-0.12485 -0.0936,-0.12484 -0.0936,-0.12484 -0.0936,-0.12485 -0.0936,-0.12484 -0.0936,-0.12485 -0.0936,-0.12484 -0.12485,-0.12484 -0.0936,-0.12485 -0.12485,-0.0936 -0.12484,-0.12485 -0.12484,-0.0936 -0.12485,-0.12484 -0.15609,-0.0936 -0.12485,-0.0936 -0.15609,-0.0625 -0.1561,-0.0936 -0.15609,-0.0625 -0.1561,-0.0936 -0.15609,-0.0625 -0.1873,-0.0311 -0.18728,-0.0625 -0.1873,-0.0311 -0.18729,-0.0311 -0.1873,-0.0312 -0.1873,0 -0.2185,-0.0312 0,0.90525 c 2.93428,0 3.52737,3.68345 3.52737,3.93317 l -0.12484,0.62432 -2.12265,8.58433 c -0.15609,0.71796 -0.24974,0.90525 -0.84285,1.56079 -1.84172,2.37238 -3.71465,3.24643 -5.08814,3.24643 -1.46715,0 -2.87184,-1.18621 -2.87184,-4.27656 0,-2.34118 1.34227,-7.36691 2.34118,-9.36471 1.27983,-2.52848 3.30886,-4.30777 5.1818,-4.30777 l 0,-0.90525 c -4.86966,0 -10.42606,6.14949 -10.42606,12.79844 0,4.65114 2.80942,6.92989 5.68128,6.92989 2.37238,0 4.46383,-1.87295 5.27544,-2.7782 l -0.96768,4.02683 c -0.65555,2.46604 -0.90527,3.58981 -2.52848,5.1506 -1.8105,1.84172 -3.52737,1.84172 -4.49506,1.84172 -1.34227,0 -2.46604,-0.0936 -3.58981,-0.46825 1.43593,-0.37458 1.7793,-1.62321 1.7793,-2.12265 0,-0.71797 -0.53066,-1.43593 -1.49836,-1.43593 -1.09255,0 -2.24753,0.87404 -2.24753,2.37239 0,1.84174 1.84173,2.52848 5.61884,2.52848 5.7749,0 8.77161,-3.68347 9.36471,-6.11828 l 4.9633,-20.0405 c 0.12484,-0.53066 0.12484,-0.6243 0.12484,-0.71796 0,-0.62431 -0.49945,-1.09255 -1.15497,-1.09255 -1.06135,0 -1.68566,0.87405 -1.84174,2.09147 z"
-       inkscape:connector-curvature="0"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-    <path
-       id="path4213"
-       d="m 492.0806,313.15914 0.0936,0 0.0936,0 0.0936,0 0.12484,0 0.0936,0 0.12484,0 0.12485,-0.0311 0.15609,0 0.12484,0 0.1561,0 0.15609,0 0.1561,-0.0311 0.15609,0 0.1561,-0.0311 0.31214,-0.0311 0.34337,-0.0311 0.34338,-0.0625 0.34338,-0.0311 0.31215,-0.0936 0.34337,-0.0625 0.15609,-0.0311 0.15609,-0.0625 0.18729,-0.0625 0.15609,-0.0312 0.12484,-0.0625 0.1561,-0.0625 c 2.18509,-0.93647 2.34116,-2.747 2.34116,-3.18401 0,-1.37348 -1.18619,-2.65333 -3.34007,-2.65333 l 0,0.68674 c 1.46713,0 2.30996,0.90527 2.30996,1.96659 0,3.21521 -4.9633,3.21521 -6.24315,3.21521 l -1.27983,0 c 1.21741,-4.71356 4.40141,-5.1818 5.21302,-5.1818 l 0,-0.68674 c -3.43373,0 -8.11608,3.02792 -8.11608,8.45946 0,3.15278 1.81051,5.5876 4.86964,5.5876 4.43263,0 7.05475,-3.27764 7.05475,-3.65222 0,-0.1873 -0.1873,-0.40581 -0.37459,-0.40581 -0.1561,0 -0.21851,0.0625 -0.4058,0.31215 -2.46604,3.09036 -5.83734,3.09036 -6.21192,3.09036 -2.43484,0 -2.71577,-2.62212 -2.71577,-3.62101 0,-0.3746 0.0311,-1.31107 0.49945,-3.21523 z"
-       inkscape:connector-curvature="0"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-    <path
-       id="path4215"
-       d="m 119.14544,199.3869 -0.0625,-0.12484 -0.0625,-0.12485 -0.0625,-0.12484 -0.0625,-0.12485 -0.0936,-0.12484 -0.0625,-0.12485 -0.0936,-0.12484 -0.0936,-0.12484 -0.0625,-0.12485 -0.0936,-0.12484 -0.12485,-0.12485 -0.0936,-0.12484 -0.0936,-0.12484 -0.12484,-0.12485 -0.12484,-0.0936 -0.12486,-0.12485 -0.12488,-0.0936 -0.12486,-0.12484 -0.12486,-0.0936 -0.15608,-0.0936 -0.15608,-0.0625 -0.15607,-0.0936 -0.15608,-0.0625 -0.15608,-0.0936 -0.15608,-0.0625 -0.1873,-0.0312 -0.15608,-0.0625 -0.18729,-0.0311 -0.1873,-0.0311 -0.21851,-0.0312 -0.18729,0 -0.21851,-0.0312 0,0.90527 c 2.96549,0 3.52737,3.68345 3.52737,3.93317 l -0.12485,0.62432 -2.09144,8.58431 c -0.1873,0.71796 -0.28095,0.90526 -0.84284,1.56079 -1.84172,2.37239 -3.71466,3.24644 -5.11937,3.24644 -1.46714,0 -2.84063,-1.18621 -2.84063,-4.27655 0,-2.34118 1.31107,-7.36692 2.30996,-9.36471 1.31106,-2.52848 3.30887,-4.30777 5.18181,-4.30777 l 0,-0.90527 c -4.86965,0 -10.42605,6.1495 -10.42605,12.79844 0,4.65115 2.84064,6.92989 5.68127,6.92989 2.37239,0 4.49505,-1.87294 5.27545,-2.7782 l -0.96768,4.02683 c -0.62433,2.46604 -0.90526,3.58981 -2.49727,5.1506 -1.84172,1.84173 -3.52737,1.84173 -4.52627,1.84173 -1.34228,0 -2.46604,-0.0936 -3.58981,-0.46824 1.43592,-0.37458 1.81052,-1.62323 1.81052,-2.12267 0,-0.71795 -0.53068,-1.43592 -1.52957,-1.43592 -1.06135,0 -2.24754,0.87403 -2.24754,2.3724 0,1.84172 1.84173,2.52846 5.65005,2.52846 5.7749,0 8.77161,-3.68345 9.33349,-6.11827 l 4.96329,-20.04049 c 0.1561,-0.53067 0.1561,-0.62432 0.1561,-0.71797 0,-0.6243 -0.49946,-1.09255 -1.18621,-1.09255 -1.06131,0 -1.68563,0.87405 -1.81049,2.09146 z"
-       inkscape:connector-curvature="0"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-    <path
-       id="path4217"
-       d="m 131.16347,201.69686 0,0 0,0 0,0 0,-0.0311 0,0 0,0 0,0 0,-0.0311 -0.0311,0 0,-0.0312 0,0 0,-0.0311 0,0 0,0 0,-0.0311 -0.0311,0 0,-0.0312 0,0 -0.0312,-0.0311 0,0 0,-0.0311 -0.0311,0 0,0 0,0 0,-0.0311 -0.0312,0 0,0 0,0 -0.0312,0 0,-0.0311 0,0 -0.0312,0 0,0 -0.0311,0 0,0 0,0 -0.0312,-0.0311 0,0 -0.0313,0 0,0 -0.0312,0 0,0 -0.0311,0 -0.0312,0 0,0 c -0.71795,0 -2.9967,0.24972 -3.80831,0.31215 -0.21852,0.0311 -0.56189,0.0625 -0.56189,0.6243 0,0.3746 0.24973,0.3746 0.71795,0.3746 1.49837,0 1.56081,0.21852 1.56081,0.53067 l -0.0936,0.62432 -4.49506,17.85538 c -0.12485,0.43702 -0.12485,0.46824 -0.12485,0.68674 0,0.68675 0.6243,0.84283 0.90524,0.84283 0.49946,0 0.99891,-0.37458 1.15499,-0.81161 l 0.56188,-2.34118 0.68675,-2.7782 c 0.1873,-0.68674 0.37459,-1.37349 0.53066,-2.09145 0.0625,-0.1873 0.31216,-1.21741 0.34337,-1.40471 0.0936,-0.28094 1.06134,-1.9978 2.12267,-2.84062 0.68675,-0.49945 1.65443,-1.09255 2.9655,-1.09255 1.34227,0 1.68566,1.06132 1.68566,2.18509 0,1.65443 -1.18621,5.05696 -1.93538,6.9299 -0.24974,0.71796 -0.3746,1.09254 -0.3746,1.71687 0,1.46713 1.06133,2.52846 2.52848,2.52846 2.93428,0 4.05803,-4.52628 4.05803,-4.776 0,-0.31216 -0.24972,-0.31216 -0.34336,-0.31216 -0.31216,0 -0.31216,0.0936 -0.46825,0.56188 -0.46822,1.65442 -1.46713,3.87075 -3.184,3.87075 -0.53066,0 -0.74917,-0.34336 -0.74917,-1.03012 0,-0.78039 0.28095,-1.52957 0.56187,-2.21632 0.49946,-1.34227 1.90417,-5.02572 1.90417,-6.80503 0,-2.02902 -1.24863,-3.34007 -3.5898,-3.34007 -1.93538,0 -3.43375,0.96769 -4.58872,2.40362 z"
-       inkscape:connector-curvature="0"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-    <path
-       id="path4223-1"
-       d="m 531.23163,431.25815 0,-0.0344 0,0 0,-0.0344 0,0 0.0343,-0.0344 0,0 0,-0.0344 0,0 0,-0.0344 0.0344,-0.0344 0,0 0,-0.0344 0.0344,-0.0344 0,-0.0688 0.0342,-0.0344 0,-0.0688 0,-0.0344 0.0344,-0.0344 0,0 0,-0.0344 0,-0.0344 0,0 0,-0.0344 0,-0.0344 0,0 0,-0.0344 0,0 c 0,-0.24079 -0.17194,-0.51598 -0.48159,-0.51598 -0.20638,0 -0.30958,0.069 -0.4472,0.20638 -0.10306,0.069 -0.10306,0.13762 -0.55037,1.13518 -2.88955,6.91423 -5.02228,9.87256 -12.8997,9.87256 l -7.1894,0 c -0.688,0 -0.79117,0 -1.10079,-0.069 -0.51598,-0.0344 -0.58476,-0.13747 -0.58476,-0.51598 0,-0.37842 0.10306,-0.6536 0.20638,-1.10079 l 3.40553,-13.58765 4.88465,0 c 3.81832,0 4.12791,0.82557 4.12791,2.30474 0,0.48158 0,0.92877 -0.344,2.40793 -0.10306,0.20641 -0.13747,0.3784 -0.13747,0.55037 0,0.34401 0.24079,0.48162 0.51598,0.48162 0.4472,0 0.516,-0.34401 0.688,-1.03199 l 2.82072,-11.42052 c 0,-0.27517 -0.20639,-0.51596 -0.48157,-0.51596 -0.4472,0 -0.516,0.20638 -0.688,0.89436 -0.99757,3.7839 -1.99514,4.88469 -6.36383,4.88469 l -4.67829,0 3.06152,-12.1085 c 0.44718,-1.75437 0.516,-1.89195 2.54553,-1.89195 l 7.05184,0 c 6.05424,0 7.2926,1.61675 7.2926,5.36626 0,0.069 0,1.44475 -0.2064,3.06152 -0.0343,0.20639 -0.10306,0.48159 -0.10306,0.58479 0,0.41278 0.27518,0.55039 0.55038,0.55039 0.344,0 0.55039,-0.2064 0.65357,-1.10077 l 1.03199,-8.5998 c 0,-0.17194 0.10322,-0.65356 0.10322,-0.75677 0,-0.55039 -0.44718,-0.55039 -1.34156,-0.55039 l -24.045,0 c -0.92879,0 -1.44477,0 -1.44477,0.89437 0,0.5504 0.34398,0.5504 1.20398,0.5504 3.06151,0 3.06151,0.34398 3.06151,0.89436 0,0.24079 -0.0688,0.4472 -0.2064,0.99759 l -6.67352,26.5906 c -0.4128,1.71994 -0.51598,2.23594 -3.99031,2.23594 -0.92877,0 -1.41035,0 -1.41035,0.85997 0,0.55039 0.27517,0.55039 1.27276,0.55039 l 24.73298,0 c 1.10077,0 1.13516,-0.0344 1.47916,-0.82558 z"
-       inkscape:connector-curvature="0"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-    <path
-       id="path4231-6"
-       d="m 271.34152,102.41777 -0.0625,-0.12485 -0.0625,-0.12484 -0.0625,-0.12485 -0.0625,-0.12484 -0.0936,-0.12484 -0.0625,-0.12485 -0.0936,-0.12484 -0.0625,-0.12485 -0.0936,-0.12484 -0.0936,-0.12484 -0.0936,-0.12485 -0.12485,-0.12484 -0.0936,-0.12485 -0.12485,-0.12484 -0.12484,-0.0936 -0.0936,-0.12484 -0.1561,-0.0936 -0.12484,-0.12485 -0.12485,-0.0936 -0.15609,-0.0936 -0.12484,-0.0625 -0.1561,-0.09359 -0.15609,-0.0625 -0.1873,-0.09359 -0.1561,-0.0625 -0.18729,-0.03109 -0.1561,-0.0625 -0.1873,-0.03109 -0.18729,-0.03109 -0.2185,-0.03125 -0.1873,0 -0.2185,-0.03125 0,0.90525 c 2.96548,0 3.55857,3.68347 3.55857,3.93319 l -0.15609,0.6243 -2.09145,8.58433 c -0.18729,0.71795 -0.28094,0.90525 -0.84283,1.56079 -1.84172,2.37238 -3.71467,3.24643 -5.11938,3.24643 -1.46713,0 -2.84062,-1.18621 -2.84062,-4.27656 0,-2.34118 1.34227,-7.36691 2.30996,-9.36471 1.31106,-2.52846 3.30888,-4.30777 5.18182,-4.30777 l 0,-0.90525 c -4.86966,0 -10.39484,6.1495 -10.39484,12.79844 0,4.65114 2.80942,6.92989 5.68126,6.92989 2.34118,0 4.46385,-1.87295 5.27546,-2.7782 l -0.9989,4.02683 c -0.62433,2.46604 -0.90527,3.58981 -2.49727,5.15059 -1.84173,1.84173 -3.52738,1.84173 -4.52627,1.84173 -1.34227,0 -2.46604,-0.0936 -3.58981,-0.46825 1.43593,-0.37458 1.81052,-1.62321 1.81052,-2.12265 0,-0.71797 -0.53069,-1.43593 -1.52958,-1.43593 -1.06133,0 -2.24753,0.87404 -2.24753,2.3724 0,1.84173 1.84173,2.52847 5.65004,2.52847 5.7749,0 8.77161,-3.68346 9.36471,-6.11828 l 4.9633,-20.04048 c 0.12485,-0.53068 0.12485,-0.62432 0.12485,-0.71797 0,-0.62432 -0.49944,-1.09255 -1.15498,-1.09255 -1.09255,0 -1.71686,0.87405 -1.84172,2.09146 z"
-       inkscape:connector-curvature="0"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path4148"
-       d="m 93.697618,397.23997 434.455062,0"
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path4466"
-       d="m 236.37259,394.69616 c 0,-128.79445 -151.522883,-170.71578 -151.522883,-170.71578"
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path4468"
-       d="m 236.87767,411.36367 0,-298.50007"
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4476)" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path4504"
-       d="m 356.31678,395.70631 c 0,-35.35534 194.45436,-76.7716 194.45436,-76.7716"
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-    <g
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.0000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
-       ns0:page_width=""
-       ns0:preamble=""
-       ns0:text="$E_G$"
-       word-spacing="normal"
-       letter-spacing="normal"
-       font-size-adjust="none"
-       font-stretch="normal"
-       font-weight="normal"
-       font-variant="normal"
-       font-style="normal"
-       stroke-miterlimit="10.433"
-       xml:space="preserve"
-       transform="matrix(2.5141605,0,0,-2.5141605,-224.66638,2203.266)"
-       id="content"><path
-         id="path4533"
-         d="m 233.4,710.45 0,0.01 0.01,0 0,0 0,0.01 0,0 0,0.01 0.01,0.01 0,0 0,0.01 0,0 0.01,0.01 0,0.01 0,0.01 0.01,0.02 0,0.01 0.01,0.01 0,0.02 0,0.01 0,0 0.01,0.01 0,0.01 0,0 0,0.01 0,0 0,0.01 0,0.01 0,0 c 0,0.07 -0.06,0.14 -0.14,0.14 -0.06,0 -0.09,-0.01 -0.13,-0.05 -0.03,-0.02 -0.03,-0.04 -0.16,-0.33 -0.85,-2.01 -1.46,-2.87 -3.76,-2.87 l -2.09,0 c -0.2,0 -0.23,0 -0.32,0.01 -0.16,0.02 -0.17,0.05 -0.17,0.16 0,0.1 0.03,0.19 0.06,0.32 l 0.99,3.96 1.42,0 c 1.12,0 1.2,-0.25 1.2,-0.68 0,-0.14 0,-0.27 -0.1,-0.7 -0.03,-0.06 -0.04,-0.12 -0.04,-0.16 0,-0.1 0.07,-0.14 0.16,-0.14 0.13,0 0.14,0.1 0.2,0.3 l 0.82,3.33 c 0,0.07 -0.06,0.14 -0.15,0.14 -0.13,0 -0.14,-0.06 -0.2,-0.26 -0.29,-1.1 -0.57,-1.42 -1.85,-1.42 l -1.36,0 0.89,3.53 c 0.12,0.5 0.15,0.55 0.74,0.55 l 2.05,0 c 1.77,0 2.13,-0.48 2.13,-1.57 0,-0.01 0,-0.41 -0.06,-0.89 -0.02,-0.05 -0.03,-0.14 -0.03,-0.17 0,-0.11 0.07,-0.16 0.16,-0.16 0.1,0 0.16,0.06 0.18,0.32 l 0.31,2.51 c 0,0.04 0.03,0.19 0.03,0.21 0,0.16 -0.13,0.16 -0.39,0.16 l -7,0 c -0.28,0 -0.42,0 -0.42,-0.26 0,-0.15 0.1,-0.15 0.34,-0.15 0.89,0 0.89,-0.1 0.89,-0.26 0,-0.07 -0.01,-0.13 -0.05,-0.29 l -1.94,-7.75 c -0.13,-0.5 -0.16,-0.64 -1.16,-0.64 -0.27,0 -0.42,0 -0.42,-0.26 0,-0.16 0.09,-0.16 0.37,-0.16 l 7.21,0 c 0.31,0 0.33,0.02 0.43,0.25 z"
-         inkscape:connector-curvature="0"
-         style="fill:#000000;stroke-width:0" /><path
-         id="path4535"
-         d="m 241.4,711.89 0,0.01 0,0 0,0 0,0.01 0,0 0,0 0,0.01 -0.01,0 0,0.01 0,0 0,0 0,0.01 0,0 -0.01,0.01 0,0 0,0.01 -0.01,0 0,0 0,0.01 -0.01,0 0,0 -0.01,0.01 0,0 -0.01,0 0,0.01 0,0 -0.01,0 0,0 0,0 -0.01,0 0,0 0,0 -0.01,0 0,0 0,0 -0.01,0 0,0 -0.01,0 0,0 c -0.03,0 -0.04,-0.01 -0.15,-0.12 l -0.7,-0.76 c -0.09,0.14 -0.54,0.88 -1.65,0.88 -2.22,0 -4.46,-2.2 -4.46,-4.51 0,-1.58 1.1,-2.73 2.71,-2.73 0.44,0 0.89,0.09 1.25,0.24 0.5,0.2 0.69,0.41 0.87,0.61 0.09,-0.25 0.35,-0.62 0.45,-0.62 0.05,0 0.07,0.03 0.07,0.04 0.02,0.02 0.11,0.4 0.17,0.61 l 0.18,0.77 c 0.04,0.16 0.09,0.33 0.13,0.5 0.11,0.45 0.12,0.47 0.69,0.48 0.05,0 0.16,0.01 0.16,0.2 0,0.07 -0.05,0.11 -0.13,0.11 -0.23,0 -0.82,-0.03 -1.04,-0.03 -0.31,0 -1.09,0.03 -1.4,0.03 -0.09,0 -0.21,0 -0.21,-0.2 0,-0.11 0.08,-0.11 0.3,-0.11 0.01,0 0.3,0 0.53,-0.02 0.26,-0.03 0.31,-0.06 0.31,-0.19 0,-0.09 -0.11,-0.54 -0.21,-0.9 -0.28,-1.1 -1.58,-1.21 -1.92,-1.21 -0.96,0 -2.01,0.57 -2.01,2.09 0,0.31 0.1,1.95 1.15,3.25 0.54,0.68 1.5,1.28 2.49,1.28 1.01,0 1.6,-0.76 1.6,-1.92 0,-0.4 -0.03,-0.41 -0.03,-0.51 0,-0.1 0.11,-0.1 0.15,-0.1 0.13,0 0.13,0.02 0.18,0.2 z"
-         inkscape:connector-curvature="0"
-         style="fill:#000000;stroke-width:0" /></g>    <g
-       id="g4589"
-       transform="matrix(2.4888044,0,0,-2.4888044,-344.47306,2186.3757)"
-       xml:space="preserve"
-       stroke-miterlimit="10.433"
-       font-style="normal"
-       font-variant="normal"
-       font-weight="normal"
-       font-stretch="normal"
-       font-size-adjust="none"
-       letter-spacing="normal"
-       word-spacing="normal"
-       ns0:text="$0$"
-       ns0:preamble=""
-       ns0:page_width=""
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.0000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
-         style="fill:#000000;stroke-width:0"
-         inkscape:connector-curvature="0"
-         d="m 229.86,711.71 0,0.23 0,0.22 -0.01,0.22 -0.01,0.22 -0.01,0.22 -0.02,0.22 -0.02,0.22 -0.03,0.21 -0.03,0.22 -0.05,0.21 -0.04,0.21 -0.06,0.22 -0.06,0.21 -0.08,0.2 -0.08,0.21 -0.04,0.1 -0.05,0.11 c -0.59,1.19 -1.62,1.5 -2.32,1.5 -0.83,0 -1.85,-0.41 -2.38,-1.6 -0.41,-0.91 -0.55,-1.8 -0.55,-3.35 0,-1.39 0.1,-2.44 0.62,-3.45 0.56,-1.09 1.55,-1.44 2.29,-1.44 l 0,0.29 c -0.46,0 -1.39,0.26 -1.66,1.82 -0.16,0.86 -0.16,1.95 -0.16,2.96 0,1.17 0,2.23 0.23,3.08 0.24,0.96 0.98,1.41 1.59,1.41 0.55,0 1.38,-0.33 1.65,-1.57 0.19,-0.82 0.19,-1.95 0.19,-2.92 0,-0.97 0,-2.06 -0.16,-2.93 -0.27,-1.58 -1.18,-1.85 -1.68,-1.85 l 0,0 0,-0.29 c 1.25,0 1.97,0.75 2.38,1.58 0.52,1.07 0.55,2.48 0.55,3.31 z"
-         id="path4591" /></g>    <path
-       inkscape:connector-curvature="0"
-       id="path5838"
-       d="m 250.87832,396.24995 0,-170.71428"
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path5840"
-       d="m 321.73546,397.67852 0,-222.85714"
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-    <g
-       id="g5927"
-       transform="matrix(0.75084794,0,0,0.75084794,251.28509,252.27173)">
-      <path
-         id="path5870"
-         d="m 110.34162,-141.56711 0.091,-0.3642 0.0607,-0.15176 0.0303,-0.1821 0.0607,-0.15175 0.0607,-0.15175 0.0607,-0.15176 0.0607,-0.15175 0.091,-0.15175 0.0607,-0.1214 0.0911,-0.15176 0.091,-0.1214 0.091,-0.1214 0.0911,-0.1214 0.1214,-0.1214 0.1214,-0.0911 0.1214,-0.1214 0.1214,-0.091 0.15176,-0.091 0.15175,-0.0911 0.15175,-0.091 0.1821,-0.0911 0.18211,-0.0607 0.21245,-0.0607 0.21245,-0.0607 0.21246,-0.0607 0.2428,-0.0607 0.24281,-0.0303 0.2428,-0.0303 0.27316,-0.0303 0.3035,-0.0304 0.15175,0 0.15176,-0.0303 c 0.1214,0 0.63736,-0.0303 0.63736,-0.75877 0,-0.4856 -0.39456,-0.4856 -0.57666,-0.4856 -0.84982,0 -3.06541,0.091 -3.94557,0.091 l -2.09419,0 c -0.60701,0 -1.39612,-0.091 -2.00313,-0.091 -0.2428,0 -0.78911,0 -0.78911,0.81946 0,0.42491 0.3642,0.42491 0.66771,0.42491 2.61014,0.0911 2.79225,1.09261 2.79225,1.88173 0,0.39455 -0.0607,0.51596 -0.18211,1.12297 l -4.91678,19.66713 -9.317607,-23.18779 c -0.303505,-0.69806 -0.364206,-0.72841 -1.305072,-0.72841 l -5.311339,0 c -0.880165,0 -1.274721,0 -1.274721,0.81946 0,0.42491 0.303505,0.42491 1.122968,0.42491 0.242805,0 2.792247,0 2.792247,0.39455 0,0.091 -0.09105,0.45526 -0.121402,0.57666 l -5.796947,23.06639 c -0.515959,2.15489 -1.578227,3.0654 -4.431175,3.1868 -0.212453,0 -0.667711,0.0607 -0.667711,0.81947 0,0.45526 0.455258,0.45526 0.57666,0.45526 0.880165,0 3.095752,-0.0911 3.945566,-0.0911 l 2.094185,0 c 0.607011,0 1.365773,0.0911 1.972784,0.0911 0.303505,0 0.789113,0 0.789113,-0.84982 0,-0.3642 -0.455258,-0.42491 -0.60701,-0.42491 -1.456825,-0.0303 -2.852948,-0.3035 -2.852948,-1.88173 0,-0.33385 0.09105,-0.72841 0.182103,-1.06226 l 5.887999,-23.3092 c 0.242804,0.42491 0.242804,0.51596 0.424907,0.91052 l 10.37987,25.82828 c 0.21246,0.51596 0.30351,0.78912 0.66772,0.78912 0.45525,0 0.4856,-0.15176 0.66771,-0.88017 z"
-         inkscape:connector-curvature="0"
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-      <path
-         id="path5872"
-         d="m 117.07943,-112.24851 -0.0303,0.1214 -0.0303,0.091 -0.0303,0.0911 -0.0304,0.091 -0.0303,0.091 -0.0303,0.0911 -0.0303,0.0911 -0.0303,0.0607 -0.0303,0.0607 -0.0303,0.0607 -0.0303,0.0607 -0.0607,0.0607 -0.0304,0.0607 -0.0607,0.0303 -0.0607,0.0607 -0.0607,0.0303 -0.0607,0.0303 -0.091,0.0607 -0.0607,0.0304 -0.091,0.0303 -0.1214,0 -0.0304,0.0303 -0.0607,0 -0.0607,0 -0.0607,0.0303 -0.0607,0 -0.0607,0 -0.0607,0 -0.0607,0.0303 -0.091,0 -0.0607,0 -0.0911,0 -0.0607,0 -0.091,0.0303 -0.091,0 -0.091,0 -0.0911,0 -0.091,0 -0.0911,0 -0.091,0 -0.1214,0 -0.091,0 -0.1214,0 c -0.51596,0 -0.84982,0 -0.84982,0.57666 0,0.36421 0.27316,0.36421 0.84982,0.36421 l 10.01567,0 -0.54631,-0.94087 -3.42961,0 c -0.42491,0 -0.48561,0 -0.66771,-0.0303 -0.30351,-0.0303 -0.39456,-0.0607 -0.39456,-0.30351 0,-0.091 0,-0.15175 0.15175,-0.69806 l 4.15802,-16.60173 c 0.27316,-1.06226 0.33386,-1.15332 1.63893,-1.15332 l 3.21716,0 c 2.97435,0 5.49344,1.60858 5.49344,5.61485 0,1.48717 -0.60701,6.43431 -3.18681,9.74251 -0.88016,1.12297 -3.27785,3.42961 -6.98061,3.42961 l 0.54631,0.94087 c 6.28255,0 12.23125,-6.37361 12.23125,-12.99002 0,-4.27942 -2.54944,-7.64833 -7.10202,-7.64833 l -10.16742,0 c -0.57666,0 -0.88016,0 -0.88016,0.54631 0,0.3642 0.2428,0.3642 0.84981,0.3642 0.39456,0 0.94087,0.0303 1.30507,0.0607 0.48561,0.0607 0.66771,0.15176 0.66771,0.48561 0,0.12141 -0.0303,0.21246 -0.1214,0.57666 z"
-         inkscape:connector-curvature="0"
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-    </g>
-    <g
-       id="g5931"
-       transform="matrix(0.75084794,0,0,0.75084794,140.16831,305.80982)">
-      <path
-         id="path5874"
-         d="m 171.86211,-141.56711 0.091,-0.3642 0.0607,-0.15176 0.0607,-0.1821 0.0303,-0.15175 0.0607,-0.15175 0.0607,-0.15176 0.091,-0.15175 0.0607,-0.15175 0.0607,-0.1214 0.091,-0.15176 0.091,-0.1214 0.091,-0.1214 0.1214,-0.1214 0.0911,-0.1214 0.12141,-0.0911 0.1214,-0.1214 0.15175,-0.091 0.1214,-0.091 0.15175,-0.0911 0.18211,-0.091 0.1821,-0.0911 0.1821,-0.0607 0.18211,-0.0607 0.21245,-0.0607 0.21245,-0.0607 0.24281,-0.0607 0.2428,-0.0303 0.24281,-0.0303 0.27315,-0.0303 0.30351,-0.0304 0.15175,0 0.15175,-0.0303 c 0.1214,0 0.63736,-0.0303 0.63736,-0.75877 0,-0.4856 -0.39455,-0.4856 -0.54631,-0.4856 -0.88016,0 -3.09575,0.091 -3.97591,0.091 l -2.09419,0 c -0.60701,0 -1.39612,-0.091 -2.00313,-0.091 -0.24281,0 -0.78912,0 -0.78912,0.81946 0,0.42491 0.36421,0.42491 0.66771,0.42491 2.61015,0.0911 2.79225,1.09261 2.79225,1.88173 0,0.39455 -0.0607,0.51596 -0.1821,1.12297 l -4.91678,19.66713 -9.31761,-23.18779 c -0.30351,-0.69806 -0.36421,-0.72841 -1.30507,-0.72841 l -5.31134,0 c -0.88017,0 -1.27472,0 -1.27472,0.81946 0,0.42491 0.3035,0.42491 1.15332,0.42491 0.21245,0 2.76189,0 2.76189,0.39455 0,0.091 -0.0607,0.45526 -0.1214,0.57666 l -5.79695,23.06639 c -0.51596,2.15489 -1.54787,3.0654 -4.43117,3.1868 -0.21246,0 -0.63736,0.0607 -0.63736,0.81947 0,0.45526 0.4249,0.45526 0.54631,0.45526 0.88016,0 3.09575,-0.0911 3.97591,-0.0911 l 2.09419,0 c 0.60701,0 1.33542,0.0911 1.94243,0.0911 0.30351,0 0.78911,0 0.78911,-0.84982 0,-0.3642 -0.4249,-0.42491 -0.60701,-0.42491 -1.45682,-0.0303 -2.82259,-0.3035 -2.82259,-1.88173 0,-0.33385 0.091,-0.72841 0.15175,-1.06226 l 5.888,-23.3092 c 0.27315,0.42491 0.27315,0.51596 0.42491,0.91052 l 10.37987,25.82828 c 0.21245,0.51596 0.30351,0.78912 0.69806,0.78912 0.42491,0 0.48561,-0.15176 0.63736,-0.88017 z"
-         inkscape:connector-curvature="0"
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-      <path
-         id="path5876"
-         d="m 179.20693,-113.37148 -0.1214,0.21245 -0.1214,0.15175 -0.0911,0.18211 -0.1214,0.15175 -0.1214,0.15175 -0.1214,0.15175 -0.091,0.12141 -0.12141,0.1214 -0.1214,0.1214 -0.091,0.1214 -0.1214,0.091 -0.1214,0.0911 -0.12141,0.0911 -0.091,0.091 -0.1214,0.091 -0.1214,0.0607 -0.1214,0.0607 -0.12141,0.0607 -0.091,0.0607 -0.1214,0.0607 -0.1214,0.0303 -0.1214,0.0607 -0.12141,0.0303 -0.1214,0.0304 -0.1214,0.0303 -0.1214,0.0303 -0.1214,0.0303 -0.091,0 -0.27316,0.0303 -0.2428,0.0303 c -0.36421,0.0303 -0.63736,0.0303 -0.63736,0.60701 0,0.1821 0.15175,0.33386 0.39455,0.33386 0.81947,0 1.76033,-0.0911 2.61015,-0.0911 1.00156,0 2.06383,0.0911 3.03505,0.0911 0.1821,0 0.57666,0 0.57666,-0.57666 0,-0.33386 -0.27316,-0.36421 -0.48561,-0.36421 -0.69806,-0.0607 -1.42647,-0.3035 -1.42647,-1.06227 0,-0.3642 0.1821,-0.69806 0.4249,-1.12297 l 2.27629,-3.85451 7.58763,0 -0.091,-0.94087 -6.91992,0 5.97905,-9.98532 0.94087,9.98532 0.091,0.94087 c 0.091,0.63736 0.48561,4.73468 0.48561,5.03818 0,0.91052 -1.54788,1.00157 -2.15489,1.00157 -0.42491,0 -0.72841,0 -0.72841,0.60701 0,0.33386 0.3642,0.33386 0.42491,0.33386 1.24437,0 2.51909,-0.0911 3.76346,-0.0911 0.75876,0 2.67084,0.0911 3.42961,0.0911 0.1821,0 0.54631,0 0.54631,-0.60701 0,-0.33386 -0.30351,-0.33386 -0.69807,-0.33386 -1.88173,0 -1.88173,-0.21245 -1.97278,-1.09262 l -1.85138,-18.87802 c -0.0607,-0.60701 -0.0607,-0.72841 -0.57666,-0.72841 -0.48561,0 -0.57666,0.21246 -0.78911,0.51596 z"
-         inkscape:connector-curvature="0"
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-    </g>
-    <g
-       id="g5935"
-       transform="matrix(0.75084794,0,0,0.75084794,140.20891,512.91139)">
-      <path
-         id="path5878"
-         d="m 228.223,-126.51325 0,-0.0303 0,0 0.0304,0 0,-0.0304 0,0 0,-0.0303 0,-0.0303 0.0304,0 0,-0.0303 0,0 0,-0.0303 0.0303,-0.0304 0,-0.0303 0,-0.0607 0.0303,-0.0303 0,-0.0303 0.0303,-0.0607 0,-0.0303 0,0 0,-0.0303 0,-0.0304 0.0303,0 0,-0.0303 0,0 0,-0.0303 0,-0.0303 0,0 c 0,-0.21246 -0.18211,-0.42491 -0.45526,-0.42491 -0.15175,0 -0.2428,0.0303 -0.39456,0.15175 -0.0607,0.0607 -0.0607,0.1214 -0.45525,1.00157 -2.5798,6.10045 -4.46153,8.71059 -11.4118,8.71059 l -6.3736,0 c -0.60701,0 -0.69807,0 -0.94087,-0.0303 -0.48561,-0.0607 -0.51596,-0.15175 -0.51596,-0.4856 0,-0.30351 0.0607,-0.57666 0.15175,-0.97122 l 3.0047,-12.0188 4.30978,0 c 3.39925,0 3.67241,0.75876 3.67241,2.06383 0,0.42491 0,0.81947 -0.30351,2.12454 -0.091,0.1821 -0.1214,0.3642 -0.1214,0.48561 0,0.3035 0.21246,0.4249 0.45526,0.4249 0.39456,0 0.45526,-0.3035 0.60701,-0.91051 l 2.48874,-10.10672 c 0,-0.21246 -0.15175,-0.42491 -0.42491,-0.42491 -0.39455,0 -0.4249,0.1821 -0.60701,0.78911 -0.88016,3.33856 -1.76033,4.30978 -5.61484,4.30978 l -4.15802,0 2.7012,-10.71373 c 0.39455,-1.51753 0.4856,-1.66928 2.27628,-1.66928 l 6.22186,0 c 5.37204,0 6.46466,1.45682 6.46466,4.76503 0,0.0303 0,1.24437 -0.18211,2.70119 -0.0607,0.15176 -0.091,0.42491 -0.091,0.51596 0,0.33386 0.21246,0.48561 0.48561,0.48561 0.30351,0 0.45526,-0.1821 0.54631,-0.97122 l 0.91052,-7.61797 c 0,-0.12141 0.091,-0.57666 0.091,-0.63736 0,-0.48561 -0.39456,-0.48561 -1.18367,-0.48561 l -21.24536,0 c -0.81946,0 -1.24437,0 -1.24437,0.78911 0,0.45526 0.3035,0.45526 1.03192,0.45526 2.70119,0 2.70119,0.3035 2.70119,0.78911 0,0.21245 -0.0303,0.39456 -0.15175,0.88017 l -5.888,23.52164 c -0.39456,1.51753 -0.48561,1.94243 -3.52066,1.94243 -0.84981,0 -1.27472,0 -1.27472,0.78912 0,0.48561 0.27315,0.48561 1.12297,0.48561 l 21.85237,0 c 0.97121,0 1.00156,-0.0607 1.30507,-0.75877 z"
-         inkscape:connector-curvature="0"
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-      <path
-         id="path5880"
-         d="m 234.35381,-112.24851 -0.0303,0.1214 -0.0303,0.091 -0.0304,0.0911 -0.0303,0.091 -0.0303,0.091 -0.0304,0.0911 -0.0303,0.0911 -0.0303,0.0607 -0.0303,0.0607 -0.0303,0.0607 -0.0303,0.0607 -0.0607,0.0607 -0.0303,0.0607 -0.0607,0.0303 -0.0607,0.0607 -0.0607,0.0303 -0.0607,0.0303 -0.0911,0.0607 -0.0607,0.0304 -0.091,0.0303 -0.1214,0 -0.0303,0.0303 -0.0607,0 -0.0607,0 -0.0607,0.0303 -0.0607,0 -0.0607,0 -0.0607,0 -0.0607,0.0303 -0.091,0 -0.0607,0 -0.091,0 -0.0607,0 -0.091,0.0303 -0.0911,0 -0.091,0 -0.0911,0 -0.091,0 -0.091,0 -0.091,0 -0.12141,0 -0.091,0 -0.1214,0 c -0.51596,0 -0.84981,0 -0.84981,0.57666 0,0.36421 0.27315,0.36421 0.84981,0.36421 l 10.01567,0 -0.54631,-0.94087 -3.42961,0 c -0.4249,0 -0.48561,0 -0.66771,-0.0303 -0.3035,-0.0303 -0.39455,-0.0607 -0.39455,-0.30351 0,-0.091 0,-0.15175 0.15175,-0.69806 l 4.15802,-16.60173 c 0.27315,-1.06226 0.33385,-1.15332 1.63893,-1.15332 l 3.21715,0 c 2.97435,0 5.49344,1.60858 5.49344,5.61485 0,1.48717 -0.60701,6.43431 -3.1868,9.74251 -0.88017,1.12297 -3.27786,3.42961 -6.98062,3.42961 l 0.54631,0.94087 c 6.28256,0 12.23126,-6.37361 12.23126,-12.99002 0,-4.27942 -2.54945,-7.64833 -7.10202,-7.64833 l -10.16742,0 c -0.57666,0 -0.88017,0 -0.88017,0.54631 0,0.3642 0.2428,0.3642 0.84981,0.3642 0.39456,0 0.94087,0.0303 1.30508,0.0607 0.4856,0.0607 0.66771,0.15176 0.66771,0.48561 0,0.12141 -0.0303,0.21246 -0.1214,0.57666 z"
-         inkscape:connector-curvature="0"
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-    </g>
-    <g
-       id="g5939"
-       transform="matrix(0.75084794,0,0,0.75084794,46.22412,510.91139)">
-      <path
-         id="path5882"
-         d="m 287.19405,-126.51325 0,-0.0303 0,0 0,0 0,-0.0304 0,0 0.0303,-0.0303 0,-0.0303 0,0 0,-0.0303 0.0303,0 0,-0.0303 0,-0.0304 0,-0.0303 0.0303,-0.0607 0,-0.0303 0.0303,-0.0303 0,-0.0607 0,-0.0303 0.0303,0 0,-0.0303 0,-0.0304 0,0 0,-0.0303 0,0 0,-0.0303 0,-0.0303 0,0 c 0,-0.21246 -0.15175,-0.42491 -0.42491,-0.42491 -0.1821,0 -0.27315,0.0303 -0.39455,0.15175 -0.0911,0.0607 -0.0911,0.1214 -0.48561,1.00157 -2.54944,6.10045 -4.43118,8.71059 -11.41179,8.71059 l -6.34326,0 c -0.60701,0 -0.69806,0 -0.97122,-0.0303 -0.45525,-0.0607 -0.51596,-0.15175 -0.51596,-0.4856 0,-0.30351 0.0911,-0.57666 0.18211,-0.97122 l 3.0047,-12.0188 4.30977,0 c 3.39926,0 3.64206,0.75876 3.64206,2.06383 0,0.42491 0,0.81947 -0.3035,2.12454 -0.091,0.1821 -0.12141,0.3642 -0.12141,0.48561 0,0.3035 0.21246,0.4249 0.48561,0.4249 0.39456,0 0.42491,-0.3035 0.60701,-0.91051 l 2.48874,-10.10672 c 0,-0.21246 -0.1821,-0.42491 -0.45525,-0.42491 -0.36421,0 -0.42491,0.1821 -0.60701,0.78911 -0.84982,3.33856 -1.72998,4.30978 -5.61485,4.30978 l -4.12767,0 2.7012,-10.71373 c 0.39456,-1.51753 0.48561,-1.66928 2.27629,-1.66928 l 6.22185,0 c 5.34169,0 6.43431,1.45682 6.43431,4.76503 0,0.0303 0,1.24437 -0.1821,2.70119 -0.0303,0.15176 -0.091,0.42491 -0.091,0.51596 0,0.33386 0.2428,0.48561 0.4856,0.48561 0.30351,0 0.48561,-0.1821 0.57666,-0.97122 l 0.91052,-7.61797 c 0,-0.12141 0.091,-0.57666 0.091,-0.63736 0,-0.48561 -0.39456,-0.48561 -1.18367,-0.48561 l -21.24536,0 c -0.81946,0 -1.27472,0 -1.27472,0.78911 0,0.45526 0.30351,0.45526 1.06227,0.45526 2.70119,0 2.70119,0.3035 2.70119,0.78911 0,0.21245 -0.0607,0.39456 -0.1821,0.88017 l -5.888,23.52164 c -0.39455,1.51753 -0.48561,1.94243 -3.52066,1.94243 -0.81946,0 -1.24437,0 -1.24437,0.78912 0,0.48561 0.24281,0.48561 1.12297,0.48561 l 21.85237,0 c 0.94086,0 1.00157,-0.0607 1.30507,-0.75877 z"
-         inkscape:connector-curvature="0"
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-      <path
-         id="path5884"
-         d="m 293.87116,-113.37148 -0.091,0.21245 -0.1214,0.15175 -0.12141,0.18211 -0.1214,0.15175 -0.091,0.15175 -0.1214,0.15175 -0.1214,0.12141 -0.091,0.1214 -0.12141,0.1214 -0.1214,0.1214 -0.1214,0.091 -0.0911,0.0911 -0.1214,0.0911 -0.12141,0.091 -0.1214,0.091 -0.091,0.0607 -0.1214,0.0607 -0.1214,0.0607 -0.12141,0.0607 -0.1214,0.0607 -0.1214,0.0303 -0.091,0.0607 -0.1214,0.0303 -0.12141,0.0304 -0.1214,0.0303 -0.1214,0.0303 -0.1214,0.0303 -0.1214,0 -0.24281,0.0303 -0.2428,0.0303 c -0.36421,0.0303 -0.63736,0.0303 -0.63736,0.60701 0,0.1821 0.15175,0.33386 0.39455,0.33386 0.81947,0 1.76033,-0.0911 2.61015,-0.0911 0.97121,0 2.03348,0.0911 3.0047,0.0911 0.1821,0 0.57666,0 0.57666,-0.57666 0,-0.33386 -0.27316,-0.36421 -0.48561,-0.36421 -0.69806,-0.0607 -1.42647,-0.3035 -1.42647,-1.06227 0,-0.3642 0.1821,-0.69806 0.4249,-1.12297 l 2.30664,-3.85451 7.58763,0 -0.091,-0.94087 -6.91992,0 5.9487,-9.98532 0.97122,9.98532 0.091,0.94087 c 0.0607,0.63736 0.48561,4.73468 0.48561,5.03818 0,0.91052 -1.57823,1.00157 -2.18524,1.00157 -0.42491,0 -0.72841,0 -0.72841,0.60701 0,0.33386 0.3642,0.33386 0.42491,0.33386 1.24437,0 2.54944,-0.0911 3.79381,-0.0911 0.75876,0 2.64049,0.0911 3.39926,0.0911 0.1821,0 0.54631,0 0.54631,-0.60701 0,-0.33386 -0.30351,-0.33386 -0.69807,-0.33386 -1.85138,0 -1.85138,-0.21245 -1.94243,-1.09262 l -1.85138,-18.87802 c -0.0607,-0.60701 -0.0607,-0.72841 -0.57666,-0.72841 -0.48561,0 -0.60701,0.21246 -0.78911,0.51596 z"
-         inkscape:connector-curvature="0"
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
-    </g>
-  </g>
-</svg>