diff --git a/src/11_nearly_free_electron_model.md b/src/11_nearly_free_electron_model.md index 9886f3ee4d59fa8b154ec965244ea3367e3c6ef4..43aa9d126459ac175d114b56f79c7205b1e884b4 100644 --- a/src/11_nearly_free_electron_model.md +++ b/src/11_nearly_free_electron_model.md @@ -1,7 +1,12 @@ ```python tags=["initialize"] +import matplotlib +from matplotlib import pyplot + import numpy as np -import plotly.offline as py -import plotly.graph_objs as go + +from common import draw_classic_axes, configure_plotting + +configure_plotting() pi = np.pi ``` @@ -50,7 +55,39 @@ In the free electron model, the dispersion is $E = \hbar^2 |\mathbf{k}|^2/2m$. T Within the **nearly free electron model** we start from the dispersion relation of free electrons and analyze the effect of introducing a weak lattice potential. The logic is very similar to getting optical and acoustic phonon branches by changing atom masses (and thereby reducing the size of the Brillouin zone). The lattice potential results in a band structure that is periodic in $k$-space, with a period given by the period of the reciprocal lattice: - +```python +# Use colors from the default color cycle +default_colors = pyplot.rcParams['axes.prop_cycle'].by_key()['color'] +blue, orange, *_ = default_colors + +def energy(k, V=1): + k = (k + pi) % (2*pi) - pi + k_vals = k + 2*pi * np.arange(-1, 2) + h = np.diag(k_vals**2) + V * (1 - np.identity(3)) + return np.linalg.eigvalsh(h) + +energy = np.vectorize(energy, signature="(),()->(m)") + +fig, ax = pyplot.subplots(1, 1) + +momenta = np.linspace(-3*pi, 3*pi, 400) +energies = energy(momenta, 0) +max_en = 60 +energies[energies > max_en] = np.nan +ax.plot(momenta, energies, c=blue) +energies = energy(momenta, 3) +max_en = 60 +energies[energies > max_en] = np.nan +ax.plot(momenta, energies, c=orange) + +ax.set_xlabel("$ka$") +ax.set_ylabel("$E$") +ax.set_ylim(-.5, max_en + 5) +ax.set_xticks(pi * np.arange(-3, 4)) +ax.set_xticklabels(fr"${i}\pi$".replace("1", "") if i else "$0$" for i in range(-3, 4)) + +draw_classic_axes(ax, xlabeloffset=4) +``` In this figure, the red curves represent the nearly-free electron dispersion, which differs from the free-electron dispersion (black curves) because of the interaction with the lattice. We see that **band gaps** open where two copies of the free-electron dispersion cross. A key goal of this lecture is to understand how the weak interaction with the lattice leads to this modified band structure. @@ -165,21 +202,65 @@ There are several common ways to **plot** the same dispersion relation (no diffe Repeated BZ (all possible Bloch bands): - +```python +fig +``` * Contains redundant information * May be easier to count/follow the bands Reduced BZ (all bands within 1st BZ): - +```python +fig, ax = pyplot.subplots(1, 1) + +momenta = np.linspace(-pi, pi, 400) +energies = energy(momenta, 0) +max_en = 60 +energies[energies > max_en] = np.nan +ax.plot(momenta, energies, c=blue) +energies = energy(momenta, 3) +max_en = 60 +energies[energies > max_en] = np.nan +ax.plot(momenta, energies, c=orange) + +ax.set_xlabel("$ka$") +ax.set_ylabel("$E$") +ax.set_ylim(-.5, max_en + 5) +ax.set_xticks(pi * np.arange(-1, 2)) +ax.set_xticklabels(r"$-\pi$ $0$ $\pi$".split()) + +draw_classic_axes(ax, xlabeloffset=4) +``` * No redundant information * Hard to relate to original dispersion Extended BZ (n-th band within n-th BZ): - +```python +fig, ax = pyplot.subplots(1, 1) + +momenta = np.linspace(-3*pi, 3*pi, 400) +energies = energy(momenta, 0) +max_en = 60 +energies[energies > max_en] = np.nan +energies[~((abs(momenta) // pi).reshape(-1, 1) == np.arange(3).reshape(1, -1))] = np.nan +ax.plot(momenta, energies, c=blue) +energies = energy(momenta, 3) +max_en = 60 +energies[energies > max_en] = np.nan +energies[~((abs(momenta) // pi).reshape(-1, 1) == np.arange(3).reshape(1, -1))] = np.nan +ax.plot(momenta, energies, c=orange) + +ax.set_xlabel("$ka$") +ax.set_ylabel("$E$") +ax.set_ylim(-.5, max_en + 5) +ax.set_xticks(pi * np.arange(-3, 4)) +ax.set_xticklabels(fr"${i}\pi$".replace("1", "") if i else "$0$" for i in range(-3, 4)) + +draw_classic_axes(ax, xlabeloffset=4) +``` * No redundant information * Easy to relate to free electron model diff --git a/src/figures/extended_nearly_free_electron_bands.svg b/src/figures/extended_nearly_free_electron_bands.svg deleted file mode 100644 index eb4ad6d1a440788080f1fa87bf0e6649cd137a27..0000000000000000000000000000000000000000 --- a/src/figures/extended_nearly_free_electron_bands.svg +++ /dev/null @@ -1,323 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - 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="87.325607mm" - height="54.120304mm" - viewBox="0 0 309.42144 191.76486" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="nearly_free_electron_bands.svg"> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.8284271" - inkscape:cx="129.44356" - inkscape:cy="102.21399" - 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" - inkscape:object-nodes="true" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <defs - id="defs4"> - <marker - inkscape:collect="always" - inkscape:isstock="true" - style="overflow:visible" - id="Arrow1Lend-3" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow1Lend"> - <path - 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="path4164-6" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:collect="always" - inkscape:isstock="true" - style="overflow:visible" - id="Arrow1Lend" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow1Lend"> - <path - 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="path4164" - inkscape:connector-curvature="0" /> - </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></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-30.203563,-313.62264)"> - <path - inkscape:connector-curvature="0" - id="path4155" - d="m 167.56642,505.38749 0,-187.17645" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.48831511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path4155-7" - d="m 33.808769,470.44487 302.188471,0" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.48831511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend-3)" /> - <path - 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" - inkscape:connector-curvature="0" - d="m 154.42712,321.67264 0,0 0.0125,0 0,-0.0125 0,0 0,-0.0125 0,-0.0125 0.0125,0 0,-0.0125 0,0 0,-0.0125 0.0125,-0.0125 0,0 0,-0.025 0.0125,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.0125 0.0125,0 0,-0.0125 0,-0.0125 0,0 0,-0.0125 0,-0.0125 0,0 0,-0.0125 c 0,-0.0875 -0.075,-0.175 -0.175,-0.175 -0.075,0 -0.1125,0.0125 -0.1625,0.075 -0.0375,0.0125 -0.0375,0.05 -0.2,0.4125 -1.0625,2.5125 -1.825,3.5875 -4.7,3.5875 l -2.6125,0 c -0.25,0 -0.2875,0 -0.4,-0.025 -0.2,-0.0125 -0.2125,-0.05 -0.2125,-0.2 0,-0.125 0.0375,-0.225 0.075,-0.3875 l 1.2375,-4.95 1.775,0 c 1.4,0 1.5,0.3 1.5,0.8375 0,0.1875 0,0.35 -0.125,0.8875 -0.0375,0.0625 -0.05,0.1375 -0.05,0.1875 0,0.1375 0.0875,0.1875 0.2,0.1875 0.1625,0 0.175,-0.125 0.25,-0.375 l 1.025,-4.1625 c 0,-0.0875 -0.075,-0.175 -0.1875,-0.175 -0.1625,0 -0.175,0.0625 -0.25,0.3125 -0.3625,1.3875 -0.7125,1.775 -2.3125,1.775 l -1.7,0 1.1125,-4.4125 c 0.15,-0.625 0.1875,-0.675 0.925,-0.675 l 2.5625,0 c 2.2125,0 2.6625,0.5875 2.6625,1.95 0,0.025 0,0.525 -0.075,1.1125 -0.025,0.075 -0.0375,0.175 -0.0375,0.2125 0,0.15 0.0875,0.2 0.2,0.2 0.125,0 0.2,-0.075 0.225,-0.3875 l 0.3875,-3.1375 c 0,-0.0625 0.0375,-0.2375 0.0375,-0.275 0,-0.2 -0.1625,-0.2 -0.4875,-0.2 l -8.75,0 c -0.35,0 -0.525,0 -0.525,0.325 0,0.2 0.125,0.2 0.425,0.2 1.1125,0 1.1125,0.125 1.1125,0.325 0,0.0875 -0.0125,0.1625 -0.0625,0.35 l -2.425,9.6875 c -0.1625,0.625 -0.2,0.8125 -1.45,0.8125 -0.3375,0 -0.525,0 -0.525,0.325 0,0.1875 0.1125,0.1875 0.4625,0.1875 l 9.0125,0 c 0.3875,0 0.4125,-0.0125 0.5375,-0.3 z" - id="path5267" /> - <path - inkscape:connector-curvature="0" - id="path5104" - d="m 167.68329,462.36365 0,16.16244" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 127.68329,462.36365 0,16.16244" - id="path5106" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path5108" - d="m 87.68329,462.36365 0,16.16244" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 47.68329,462.36365 0,16.16244" - id="path5110" - inkscape:connector-curvature="0" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 207.68329,462.36365 0,16.16244" - id="path5112" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path5114" - d="m 247.68329,462.36365 0,16.16244" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 287.68329,462.36365 0,16.16244" - id="path5116" - inkscape:connector-curvature="0" /> - <g - id="g5343" - transform="translate(-23.428572,256.22857)"> - <path - id="path5251" - d="m 63.96964,233.4036 0.05,0 0.0625,0 0.05,0 0.0375,-0.0125 0.025,0 0.025,0 0.025,0 0.025,0 0.025,-0.0125 0.025,0 0.025,-0.0125 0.025,0 0.025,-0.0125 0.025,-0.0125 0.0125,0 0.025,-0.0125 0.0125,-0.0125 0.025,-0.0125 0.0125,-0.025 0.0125,-0.0125 0.0125,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,0 0,-0.0125 0,-0.0125 0.0125,-0.0125 0,-0.0125 0,-0.025 0,-0.0125 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.025 0,-0.0125 c 0,-0.3625 -0.325,-0.3625 -0.625,-0.3625 l -9.7125,0 c -0.3,0 -0.625,0 -0.625,0.3625 0,0.3625 0.325,0.3625 0.625,0.3625 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="path5253" - d="m 69.39464,231.0911 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.025,0 -0.025,0.0125 -0.0125,0 -0.025,0 -0.0125,0 -0.025,0 -0.0125,0.0125 -0.0125,0 -0.0125,0 -0.0125,0.0125 -0.0125,0 -0.0125,0 -0.0125,0.0125 -0.0125,0 0,0.0125 -0.0125,0 0,0.0125 -0.0125,0 0,0.0125 -0.0125,0.0125 0,0.0125 0,0 0,0.0125 -0.0125,0.0125 0,0.0125 0,0.0125 0,0.0125 0,0.025 c 0,0.175 0.0875,0.175 0.4125,0.175 l 0.825,0 c 1.525,0 2.2,1.25 2.2,2.975 0,2.35 -1.2125,2.975 -2.0875,2.975 -0.8625,0 -2.3375,-0.4125 -2.85,-1.5875 0.5625,0.0875 1.0875,-0.2375 1.0875,-0.8875 0,-0.5125 -0.375,-0.875 -0.875,-0.875 -0.4375,0 -0.9,0.25 -0.9,0.925 0,1.6 1.6,2.9125 3.5875,2.9125 2.1375,0 3.7125,-1.6375 3.7125,-3.45 0,-1.65 -1.325,-2.9375 -3.05,-3.2375 1.5625,-0.45 2.5625,-1.7625 2.5625,-3.1625 0,-1.4125 -1.4625,-2.45 -3.2125,-2.45 -1.7875,0 -3.1125,1.0875 -3.1125,2.4 0,0.7125 0.55,0.8625 0.825,0.8625 0.375,0 0.8,-0.275 0.8,-0.8125 0,-0.575 -0.425,-0.825 -0.825,-0.825 -0.1,0 -0.1375,0 -0.1875,0.025 0.675,-1.225 2.3625,-1.225 2.45,-1.225 0.5875,0 1.7625,0.275 1.7625,2.025 0,0.35 -0.0625,1.35 -0.575,2.125 -0.5375,0.7875 -1.15,0.8375 -1.6375,0.85 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="path5255" - d="m 79.51964,230.7661 2.025,0 c -0.4875,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.225,0 0.825,0 0.825,-0.575 0,-0.4 -0.35,-0.4 -0.675,-0.4 l -5.9,0 c -0.4125,0 -1.0125,0 -1.8375,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.1875,0.1375 0.125,0 0.15,-0.05 0.2375,-0.15 0.9375,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.025,0 c -0.4,1.3375 -0.85,2.9 -2.3125,6.0375 -0.15,0.2875 -0.15,0.325 -0.15,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.525,0 0.6625,-0.4625 0.875,-1.225 0.2875,-0.9125 0.2875,-0.95 0.475,-1.6625 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="g5348" - transform="translate(-21.071429,256.42857)"> - <path - id="path5257" - d="m 103.15714,233.4036 0.05,0 0.0625,0 0.05,0 0.0375,-0.0125 0.025,0 0.025,0 0.025,0 0.025,0 0.025,-0.0125 0.025,0 0.025,-0.0125 0.025,0 0.025,-0.0125 0.025,-0.0125 0.0125,0 0.025,-0.0125 0.0125,-0.0125 0.025,-0.0125 0.0125,-0.025 0.0125,-0.0125 0.0125,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,0 0,-0.0125 0,-0.0125 0.0125,-0.0125 0,-0.0125 0,-0.025 0,-0.0125 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.025 0,-0.0125 c 0,-0.3625 -0.325,-0.3625 -0.625,-0.3625 l -9.7,0 c -0.3125,0 -0.6375,0 -0.6375,0.3625 0,0.3625 0.325,0.3625 0.6375,0.3625 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="path5259" - d="m 113.16964,234.5161 -0.4,0 c -0.05,0.3 -0.2,1.2875 -0.375,1.575 -0.125,0.1625 -1.15,0.1625 -1.6875,0.1625 l -3.3125,0 c 0.4875,-0.4125 1.575,-1.5625 2.0375,-1.9875 2.725,-2.5125 3.7375,-3.45 3.7375,-5.225 0,-2.0625 -1.6375,-3.4375 -3.7125,-3.4375 -2.0875,0 -3.3,1.775 -3.3,3.3125 0,0.9125 0.7875,0.9125 0.8375,0.9125 0.375,0 0.85,-0.2625 0.85,-0.8375 0,-0.5 -0.35,-0.85 -0.85,-0.85 -0.1625,0 -0.2,0 -0.25,0.025 0.3375,-1.225 1.3125,-2.05 2.475,-2.05 1.525,0 2.4625,1.275 2.4625,2.925 0,1.525 -0.8875,2.85 -1.9,4 l -3.625,4.05 0,0.4375 6.5375,0 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="path5261" - d="m 118.70714,230.7661 2.025,0 c -0.4875,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.1375,-0.3875 -0.475,-1.2375 -0.475,-2.775 -0.475,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.225,0 0.825,0 0.825,-0.575 0,-0.4 -0.35,-0.4 -0.675,-0.4 l -5.9,0 c -0.4,0 -1.0125,0 -1.8375,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.1875,0.1375 0.125,0 0.15,-0.05 0.2375,-0.15 0.9375,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.025,0 c -0.4,1.3375 -0.85,2.9 -2.3125,6.0375 -0.15,0.2875 -0.15,0.325 -0.15,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.525,0 0.6625,-0.4625 0.875,-1.225 0.2875,-0.9125 0.2875,-0.95 0.475,-1.6625 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="g5353" - transform="translate(-20.357143,256.42857)"> - <path - id="path5263" - d="m 142.33214,233.4036 0.05,0 0.0625,0 0.0625,0 0.025,-0.0125 0.025,0 0.025,0 0.025,0 0.025,0 0.0375,-0.0125 0.025,0 0.0125,-0.0125 0.025,0 0.025,-0.0125 0.025,-0.0125 0.025,0 0.0125,-0.0125 0.025,-0.0125 0.0125,-0.0125 0.0125,-0.025 0.025,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,-0.0125 0,0 0,-0.0125 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.0125 0,-0.025 0,-0.0125 c 0,-0.3625 -0.325,-0.3625 -0.625,-0.3625 l -9.7,0 c -0.3125,0 -0.625,0 -0.625,0.3625 0,0.3625 0.3125,0.3625 0.625,0.3625 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="path5265" - d="m 149.10714,230.7661 2.025,0 c -0.4875,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.225,0 0.825,0 0.825,-0.575 0,-0.4 -0.3375,-0.4 -0.6625,-0.4 l -5.9,0 c -0.4125,0 -1.025,0 -1.85,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.2,0.1375 0.125,0 0.1375,-0.05 0.225,-0.15 0.9375,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.025,0 c -0.3875,1.3375 -0.8375,2.9 -2.3125,6.0375 -0.15,0.2875 -0.15,0.325 -0.15,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.525,0 0.6625,-0.4625 0.8875,-1.225 0.275,-0.9125 0.275,-0.95 0.4625,-1.6625 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> - <path - 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" - inkscape:connector-curvature="0" - d="m 164.95714,488.01967 -0.0125,-0.2875 0,-0.275 -0.0125,-0.275 0,-0.275 -0.025,-0.275 -0.025,-0.275 -0.025,-0.275 -0.0375,-0.2625 -0.0375,-0.275 -0.05,-0.2625 -0.0625,-0.2625 -0.0625,-0.275 -0.0875,-0.2625 -0.0875,-0.25 -0.1,-0.2625 -0.0625,-0.125 -0.05,-0.1375 c -0.7375,-1.4875 -2.025,-1.875 -2.9125,-1.875 -1.0375,0 -2.3125,0.5125 -2.975,2 -0.5,1.1375 -0.675,2.25 -0.675,4.1875 0,1.7375 0.125,3.05 0.7625,4.3125 0.7,1.3625 1.9375,1.8 2.875,1.8 l 0,-0.3625 c -0.575,0 -1.7375,-0.325 -2.0875,-2.275 -0.1875,-1.075 -0.1875,-2.4375 -0.1875,-3.7 0,-1.4625 0,-2.7875 0.2875,-3.85 0.3,-1.2 1.2125,-1.7625 1.9875,-1.7625 0.675,0 1.725,0.4125 2.0625,1.9625 0.225,1.025 0.225,2.4375 0.225,3.65 0,1.2125 0,2.575 -0.1875,3.6625 -0.35,1.975 -1.475,2.3125 -2.1,2.3125 l 0,0 0,0.3625 c 1.5625,0 2.45,-0.9375 2.975,-1.975 0.65,-1.3375 0.6875,-3.1 0.6875,-4.1375 z" - id="path5268" /> - <path - 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" - inkscape:connector-curvature="0" - d="m 207.13038,487.19467 2.025,0 c -0.4875,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.225,0 0.825,0 0.825,-0.575 0,-0.4 -0.3375,-0.4 -0.6625,-0.4 l -5.9,0 c -0.4125,0 -1.025,0 -1.85,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.2,0.1375 0.125,0 0.1375,-0.05 0.225,-0.15 0.9375,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.025,0 c -0.3875,1.3375 -0.8375,2.9 -2.3125,6.0375 -0.15,0.2875 -0.15,0.325 -0.15,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.525,0 0.6625,-0.4625 0.8875,-1.225 0.275,-0.9125 0.275,-0.95 0.4625,-1.6625 z" - id="path5270" /> - <g - id="g5361" - transform="translate(57.857142,256.42857)"> - <path - id="path5272" - d="m 188.19464,234.5161 -0.4,0 c -0.05,0.3 -0.1875,1.2875 -0.375,1.575 -0.125,0.1625 -1.15,0.1625 -1.6875,0.1625 l -3.3125,0 c 0.4875,-0.4125 1.575,-1.5625 2.05,-1.9875 2.725,-2.5125 3.725,-3.45 3.725,-5.225 0,-2.0625 -1.6375,-3.4375 -3.7125,-3.4375 -2.075,0 -3.3,1.775 -3.3,3.3125 0,0.9125 0.7875,0.9125 0.8375,0.9125 0.3875,0 0.85,-0.2625 0.85,-0.8375 0,-0.5 -0.3375,-0.85 -0.85,-0.85 -0.15,0 -0.1875,0 -0.25,0.025 0.35,-1.225 1.3125,-2.05 2.475,-2.05 1.525,0 2.4625,1.275 2.4625,2.925 0,1.525 -0.875,2.85 -1.9,4 l -3.625,4.05 0,0.4375 6.55,0 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="path5274" - d="m 193.71964,230.7661 2.025,0 c -0.475,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.2375,0 0.825,0 0.825,-0.575 0,-0.4 -0.3375,-0.4 -0.6625,-0.4 l -5.9,0 c -0.4125,0 -1.025,0 -1.85,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.2,0.1375 0.125,0 0.1375,-0.05 0.2375,-0.15 0.925,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.0125,0 c -0.3875,1.3375 -0.8375,2.9 -2.3125,6.0375 -0.1375,0.2875 -0.1375,0.325 -0.1375,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.5125,0 0.6625,-0.4625 0.875,-1.225 0.2875,-0.9125 0.2875,-0.95 0.4625,-1.6625 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="g5365" - transform="translate(77.857142,256.22857)"> - <path - id="path5276" - d="m 202.99464,231.0911 -0.0125,0 -0.025,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.025,0.0125 -0.025,0 -0.0125,0 -0.025,0 -0.0125,0 -0.0125,0.0125 -0.025,0 -0.0125,0 -0.0125,0.0125 -0.0125,0 0,0 -0.0125,0.0125 -0.0125,0 -0.0125,0.0125 0,0 -0.0125,0.0125 0,0 -0.0125,0.0125 0,0.0125 0,0.0125 -0.0125,0 0,0.0125 0,0.0125 0,0.0125 0,0.0125 0,0.0125 0,0.025 c 0,0.175 0.0875,0.175 0.4125,0.175 l 0.825,0 c 1.525,0 2.2,1.25 2.2,2.975 0,2.35 -1.225,2.975 -2.1,2.975 -0.8625,0 -2.325,-0.4125 -2.85,-1.5875 0.575,0.0875 1.1,-0.2375 1.1,-0.8875 0,-0.5125 -0.3875,-0.875 -0.8875,-0.875 -0.425,0 -0.8875,0.25 -0.8875,0.925 0,1.6 1.5875,2.9125 3.575,2.9125 2.1375,0 3.7125,-1.6375 3.7125,-3.45 0,-1.65 -1.325,-2.9375 -3.0375,-3.2375 1.55,-0.45 2.5625,-1.7625 2.5625,-3.1625 0,-1.4125 -1.475,-2.45 -3.2125,-2.45 -1.7875,0 -3.125,1.0875 -3.125,2.4 0,0.7125 0.5625,0.8625 0.825,0.8625 0.375,0 0.8125,-0.275 0.8125,-0.8125 0,-0.575 -0.4375,-0.825 -0.825,-0.825 -0.1125,0 -0.15,0 -0.2,0.025 0.6875,-1.225 2.375,-1.225 2.4625,-1.225 0.5875,0 1.75,0.275 1.75,2.025 0,0.35 -0.05,1.35 -0.575,2.125 -0.5375,0.7875 -1.15,0.8375 -1.625,0.85 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="path5278" - d="m 213.10714,230.7661 2.025,0 c -0.475,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.2375,0 0.825,0 0.825,-0.575 0,-0.4 -0.3375,-0.4 -0.6625,-0.4 l -5.9,0 c -0.4125,0 -1.025,0 -1.85,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.2,0.1375 0.125,0 0.1375,-0.05 0.225,-0.15 0.9375,-1.475 1.875,-1.475 2.3125,-1.475 l 1.025,0 c -0.3875,1.3375 -0.8375,2.9 -2.3125,6.0375 -0.1375,0.2875 -0.1375,0.325 -0.1375,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.5125,0 0.6625,-0.4625 0.875,-1.225 0.2875,-0.9125 0.2875,-0.95 0.4625,-1.6625 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="g5369" - transform="translate(102.14286,256.42857)"> - <path - id="path5280" - d="m 224.10714,225.5286 0,-0.0125 0,0 0.0125,-0.0125 0,0 0,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.025 0,-0.0125 0.0125,-0.025 0,-0.0125 0,-0.0125 0,-0.025 0,0 0,-0.0125 0,-0.0125 0,0 c 0,-0.1875 -0.175,-0.1875 -0.2125,-0.1875 -0.0125,0 -0.6625,0.05 -0.9875,0.0875 -0.3,0.025 -0.575,0.0625 -0.8875,0.075 -0.4375,0.0375 -0.5625,0.05 -0.5625,0.375 0,0.175 0.1875,0.175 0.3625,0.175 0.9125,0 0.9125,0.1625 0.9125,0.35 0,0.075 0,0.1 -0.0875,0.425 l -2.5625,10.2625 c -0.075,0.2625 -0.075,0.3 -0.075,0.4125 0,0.3875 0.3,0.4625 0.4875,0.4625 0.5,0 0.6,-0.3875 0.75,-0.95 l 0.8375,-3.35 c 1.3,0.1375 2.0625,0.675 2.0625,1.5375 0,0.1125 0,0.1875 -0.05,0.45 -0.075,0.275 -0.075,0.4875 -0.075,0.575 0,1.0375 0.6875,1.7375 1.6,1.7375 0.825,0 1.25,-0.75 1.4,-1 0.375,-0.6625 0.6125,-1.675 0.6125,-1.7375 0,-0.1 -0.075,-0.1625 -0.1875,-0.1625 -0.1625,0 -0.175,0.0625 -0.25,0.35 -0.25,0.9375 -0.625,2.1875 -1.5375,2.1875 -0.3625,0 -0.6,-0.175 -0.6,-0.8625 0,-0.3375 0.075,-0.725 0.15,-1 0.075,-0.325 0.075,-0.3375 0.075,-0.55 0,-1.0625 -0.95,-1.65 -2.6,-1.875 0.6375,-0.3875 1.2875,-1.0875 1.5375,-1.35 1.025,-1.15 1.725,-1.725 2.55,-1.725 0.4125,0 0.5125,0.1 0.6375,0.2125 -0.6625,0.075 -0.9125,0.5375 -0.9125,0.9 0,0.425 0.35,0.575 0.6,0.575 0.475,0 0.9125,-0.4125 0.9125,-0.9875 0,-0.525 -0.4125,-1.0625 -1.225,-1.0625 -0.9875,0 -1.7875,0.7 -3.0625,2.1375 -0.1875,0.2125 -0.85,0.8875 -1.5125,1.15 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="path5282" - d="m 235.33214,230.8036 -0.0125,-0.05 -0.025,-0.0375 -0.025,-0.05 -0.025,-0.05 -0.025,-0.05 -0.025,-0.05 -0.025,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.0375 -0.05,-0.05 -0.0375,-0.05 -0.05,-0.05 -0.05,-0.0375 -0.05,-0.0375 -0.0625,-0.05 -0.05,-0.0375 -0.0625,-0.0375 -0.0625,-0.025 -0.0625,-0.0375 -0.0625,-0.025 -0.075,-0.025 -0.0625,-0.025 -0.075,-0.025 -0.075,-0.0125 -0.0875,-0.0125 -0.075,-0.0125 -0.0875,-0.0125 -0.0875,0 0,0.3625 c 1.1875,0 1.425,1.4625 1.425,1.6125 0,0.0125 -0.0625,0.25 -0.075,0.2875 l -0.875,3.5125 c -0.1,0.3 -0.1,0.3375 -0.35,0.6875 -0.3875,0.5 -1.175,1.2625 -2.025,1.2625 -0.7375,0 -1.15,-0.6625 -1.15,-1.7125 0,-0.9875 0.5625,-3 0.9,-3.75 0.6125,-1.2625 1.45,-1.9 2.15,-1.9 l 0,-0.3625 c -2.025,0 -4.2125,2.625 -4.2125,5.275 0,1.775 1.0375,2.8125 2.2625,2.8125 0.9875,0 1.825,-0.775 2.325,-1.3625 0.1875,1.0625 1.025,1.3625 1.5625,1.3625 0.5375,0 0.975,-0.325 1.2875,-0.9625 0.3,-0.6125 0.5375,-1.7125 0.5375,-1.775 0,-0.1 -0.0625,-0.1625 -0.175,-0.1625 -0.1625,0 -0.175,0.0875 -0.25,0.35 -0.2625,1.0625 -0.6125,2.1875 -1.3375,2.1875 -0.525,0 -0.5625,-0.4625 -0.5625,-0.825 0,-0.4125 0.05,-0.6 0.2125,-1.3 0.125,-0.45 0.2125,-0.85 0.3625,-1.3625 0.6625,-2.7 0.825,-3.3375 0.825,-3.45 0,-0.25 -0.2,-0.45 -0.4625,-0.45 -0.575,0 -0.725,0.6375 -0.7625,0.85 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="g5395"> - <path - inkscape:connector-curvature="0" - id="path5373" - d="m 167.14286,469.86218 c 65,0 101.78571,-135 101.78571,-135" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 167.14286,469.86218 c -65,0 -101.785709,-135 -101.785709,-135" - id="path5393" - inkscape:connector-curvature="0" /> - </g> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.51785,459.4604 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5436-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 117.9375,442.00233 c 4.50893,3.25893 5.53572,3.88393 9.375,3.92858" - id="path5436-7" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5489" - d="m 197.76785,459.4604 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5497" - d="m 216.6875,442.00233 c -4.50893,3.25893 -5.53572,3.88393 -9.375,3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 197.76785,459.4604 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - id="path5501" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 216.6875,442.00233 c -4.50893,3.25893 -5.53572,3.88393 -9.375,3.92858" - id="path5509" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5543" - d="m 97.544646,412.89789 c -2.462,-4.32999 -6.41059,-12.57079 -10.42411,-12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5555" - d="m 76.696428,367.98885 c 2.461994,4.32999 6.410586,12.57079 10.424108,12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 236.69643,412.89789 c 2.46199,-4.32999 6.41058,-12.57079 10.42411,-12.65625" - id="path5567" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 257.54465,367.98885 c -2.462,4.32999 -6.41059,12.57079 -10.42411,12.65625" - id="path5573" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> -</svg> diff --git a/src/figures/nearly_free_electron_bands.svg b/src/figures/nearly_free_electron_bands.svg deleted file mode 100644 index fa7035b768c6e05a371842c640ad4a3fbc94639b..0000000000000000000000000000000000000000 --- a/src/figures/nearly_free_electron_bands.svg +++ /dev/null @@ -1,545 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - 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="87.325607mm" - height="54.120304mm" - viewBox="0 0 309.42144 191.76486" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="nearly_free_electron_bands.svg"> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.979899" - inkscape:cx="152.14338" - inkscape:cy="170.81258" - inkscape:document-units="px" - inkscape:current-layer="g5395" - showgrid="false" - inkscape:window-width="1855" - inkscape:window-height="1056" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:object-nodes="true" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <defs - id="defs4"> - <marker - inkscape:collect="always" - inkscape:isstock="true" - style="overflow:visible" - id="Arrow1Lend-3" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow1Lend"> - <path - 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="path4164-6" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:collect="always" - inkscape:isstock="true" - style="overflow:visible" - id="Arrow1Lend" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow1Lend"> - <path - 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="path4164" - inkscape:connector-curvature="0" /> - </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></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-30.203563,-313.62264)"> - <path - inkscape:connector-curvature="0" - id="path4155" - d="m 167.56642,505.38749 0,-187.17645" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.48831511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path4155-7" - d="m 33.808769,470.44487 302.188471,0" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.48831511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend-3)" /> - <path - 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" - inkscape:connector-curvature="0" - d="m 154.42712,321.67264 0,0 0.0125,0 0,-0.0125 0,0 0,-0.0125 0,-0.0125 0.0125,0 0,-0.0125 0,0 0,-0.0125 0.0125,-0.0125 0,0 0,-0.025 0.0125,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.0125 0.0125,0 0,-0.0125 0,-0.0125 0,0 0,-0.0125 0,-0.0125 0,0 0,-0.0125 c 0,-0.0875 -0.075,-0.175 -0.175,-0.175 -0.075,0 -0.1125,0.0125 -0.1625,0.075 -0.0375,0.0125 -0.0375,0.05 -0.2,0.4125 -1.0625,2.5125 -1.825,3.5875 -4.7,3.5875 l -2.6125,0 c -0.25,0 -0.2875,0 -0.4,-0.025 -0.2,-0.0125 -0.2125,-0.05 -0.2125,-0.2 0,-0.125 0.0375,-0.225 0.075,-0.3875 l 1.2375,-4.95 1.775,0 c 1.4,0 1.5,0.3 1.5,0.8375 0,0.1875 0,0.35 -0.125,0.8875 -0.0375,0.0625 -0.05,0.1375 -0.05,0.1875 0,0.1375 0.0875,0.1875 0.2,0.1875 0.1625,0 0.175,-0.125 0.25,-0.375 l 1.025,-4.1625 c 0,-0.0875 -0.075,-0.175 -0.1875,-0.175 -0.1625,0 -0.175,0.0625 -0.25,0.3125 -0.3625,1.3875 -0.7125,1.775 -2.3125,1.775 l -1.7,0 1.1125,-4.4125 c 0.15,-0.625 0.1875,-0.675 0.925,-0.675 l 2.5625,0 c 2.2125,0 2.6625,0.5875 2.6625,1.95 0,0.025 0,0.525 -0.075,1.1125 -0.025,0.075 -0.0375,0.175 -0.0375,0.2125 0,0.15 0.0875,0.2 0.2,0.2 0.125,0 0.2,-0.075 0.225,-0.3875 l 0.3875,-3.1375 c 0,-0.0625 0.0375,-0.2375 0.0375,-0.275 0,-0.2 -0.1625,-0.2 -0.4875,-0.2 l -8.75,0 c -0.35,0 -0.525,0 -0.525,0.325 0,0.2 0.125,0.2 0.425,0.2 1.1125,0 1.1125,0.125 1.1125,0.325 0,0.0875 -0.0125,0.1625 -0.0625,0.35 l -2.425,9.6875 c -0.1625,0.625 -0.2,0.8125 -1.45,0.8125 -0.3375,0 -0.525,0 -0.525,0.325 0,0.1875 0.1125,0.1875 0.4625,0.1875 l 9.0125,0 c 0.3875,0 0.4125,-0.0125 0.5375,-0.3 z" - id="path5267" /> - <path - inkscape:connector-curvature="0" - id="path5104" - d="m 167.68329,462.36365 0,16.16244" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 127.68329,462.36365 0,16.16244" - id="path5106" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path5108" - d="m 87.68329,462.36365 0,16.16244" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 47.68329,462.36365 0,16.16244" - id="path5110" - inkscape:connector-curvature="0" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 207.68329,462.36365 0,16.16244" - id="path5112" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path5114" - d="m 247.68329,462.36365 0,16.16244" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 287.68329,462.36365 0,16.16244" - id="path5116" - inkscape:connector-curvature="0" /> - <g - id="g5343" - transform="translate(-23.428572,256.22857)"> - <path - id="path5251" - d="m 63.96964,233.4036 0.05,0 0.0625,0 0.05,0 0.0375,-0.0125 0.025,0 0.025,0 0.025,0 0.025,0 0.025,-0.0125 0.025,0 0.025,-0.0125 0.025,0 0.025,-0.0125 0.025,-0.0125 0.0125,0 0.025,-0.0125 0.0125,-0.0125 0.025,-0.0125 0.0125,-0.025 0.0125,-0.0125 0.0125,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,0 0,-0.0125 0,-0.0125 0.0125,-0.0125 0,-0.0125 0,-0.025 0,-0.0125 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.025 0,-0.0125 c 0,-0.3625 -0.325,-0.3625 -0.625,-0.3625 l -9.7125,0 c -0.3,0 -0.625,0 -0.625,0.3625 0,0.3625 0.325,0.3625 0.625,0.3625 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="path5253" - d="m 69.39464,231.0911 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.025,0 -0.025,0.0125 -0.0125,0 -0.025,0 -0.0125,0 -0.025,0 -0.0125,0.0125 -0.0125,0 -0.0125,0 -0.0125,0.0125 -0.0125,0 -0.0125,0 -0.0125,0.0125 -0.0125,0 0,0.0125 -0.0125,0 0,0.0125 -0.0125,0 0,0.0125 -0.0125,0.0125 0,0.0125 0,0 0,0.0125 -0.0125,0.0125 0,0.0125 0,0.0125 0,0.0125 0,0.025 c 0,0.175 0.0875,0.175 0.4125,0.175 l 0.825,0 c 1.525,0 2.2,1.25 2.2,2.975 0,2.35 -1.2125,2.975 -2.0875,2.975 -0.8625,0 -2.3375,-0.4125 -2.85,-1.5875 0.5625,0.0875 1.0875,-0.2375 1.0875,-0.8875 0,-0.5125 -0.375,-0.875 -0.875,-0.875 -0.4375,0 -0.9,0.25 -0.9,0.925 0,1.6 1.6,2.9125 3.5875,2.9125 2.1375,0 3.7125,-1.6375 3.7125,-3.45 0,-1.65 -1.325,-2.9375 -3.05,-3.2375 1.5625,-0.45 2.5625,-1.7625 2.5625,-3.1625 0,-1.4125 -1.4625,-2.45 -3.2125,-2.45 -1.7875,0 -3.1125,1.0875 -3.1125,2.4 0,0.7125 0.55,0.8625 0.825,0.8625 0.375,0 0.8,-0.275 0.8,-0.8125 0,-0.575 -0.425,-0.825 -0.825,-0.825 -0.1,0 -0.1375,0 -0.1875,0.025 0.675,-1.225 2.3625,-1.225 2.45,-1.225 0.5875,0 1.7625,0.275 1.7625,2.025 0,0.35 -0.0625,1.35 -0.575,2.125 -0.5375,0.7875 -1.15,0.8375 -1.6375,0.85 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="path5255" - d="m 79.51964,230.7661 2.025,0 c -0.4875,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.225,0 0.825,0 0.825,-0.575 0,-0.4 -0.35,-0.4 -0.675,-0.4 l -5.9,0 c -0.4125,0 -1.0125,0 -1.8375,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.1875,0.1375 0.125,0 0.15,-0.05 0.2375,-0.15 0.9375,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.025,0 c -0.4,1.3375 -0.85,2.9 -2.3125,6.0375 -0.15,0.2875 -0.15,0.325 -0.15,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.525,0 0.6625,-0.4625 0.875,-1.225 0.2875,-0.9125 0.2875,-0.95 0.475,-1.6625 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="g5348" - transform="translate(-21.071429,256.42857)"> - <path - id="path5257" - d="m 103.15714,233.4036 0.05,0 0.0625,0 0.05,0 0.0375,-0.0125 0.025,0 0.025,0 0.025,0 0.025,0 0.025,-0.0125 0.025,0 0.025,-0.0125 0.025,0 0.025,-0.0125 0.025,-0.0125 0.0125,0 0.025,-0.0125 0.0125,-0.0125 0.025,-0.0125 0.0125,-0.025 0.0125,-0.0125 0.0125,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,0 0,-0.0125 0,-0.0125 0.0125,-0.0125 0,-0.0125 0,-0.025 0,-0.0125 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.025 0,-0.0125 c 0,-0.3625 -0.325,-0.3625 -0.625,-0.3625 l -9.7,0 c -0.3125,0 -0.6375,0 -0.6375,0.3625 0,0.3625 0.325,0.3625 0.6375,0.3625 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="path5259" - d="m 113.16964,234.5161 -0.4,0 c -0.05,0.3 -0.2,1.2875 -0.375,1.575 -0.125,0.1625 -1.15,0.1625 -1.6875,0.1625 l -3.3125,0 c 0.4875,-0.4125 1.575,-1.5625 2.0375,-1.9875 2.725,-2.5125 3.7375,-3.45 3.7375,-5.225 0,-2.0625 -1.6375,-3.4375 -3.7125,-3.4375 -2.0875,0 -3.3,1.775 -3.3,3.3125 0,0.9125 0.7875,0.9125 0.8375,0.9125 0.375,0 0.85,-0.2625 0.85,-0.8375 0,-0.5 -0.35,-0.85 -0.85,-0.85 -0.1625,0 -0.2,0 -0.25,0.025 0.3375,-1.225 1.3125,-2.05 2.475,-2.05 1.525,0 2.4625,1.275 2.4625,2.925 0,1.525 -0.8875,2.85 -1.9,4 l -3.625,4.05 0,0.4375 6.5375,0 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="path5261" - d="m 118.70714,230.7661 2.025,0 c -0.4875,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.1375,-0.3875 -0.475,-1.2375 -0.475,-2.775 -0.475,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.225,0 0.825,0 0.825,-0.575 0,-0.4 -0.35,-0.4 -0.675,-0.4 l -5.9,0 c -0.4,0 -1.0125,0 -1.8375,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.1875,0.1375 0.125,0 0.15,-0.05 0.2375,-0.15 0.9375,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.025,0 c -0.4,1.3375 -0.85,2.9 -2.3125,6.0375 -0.15,0.2875 -0.15,0.325 -0.15,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.525,0 0.6625,-0.4625 0.875,-1.225 0.2875,-0.9125 0.2875,-0.95 0.475,-1.6625 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="g5353" - transform="translate(-20.357143,256.42857)"> - <path - id="path5263" - d="m 142.33214,233.4036 0.05,0 0.0625,0 0.0625,0 0.025,-0.0125 0.025,0 0.025,0 0.025,0 0.025,0 0.0375,-0.0125 0.025,0 0.0125,-0.0125 0.025,0 0.025,-0.0125 0.025,-0.0125 0.025,0 0.0125,-0.0125 0.025,-0.0125 0.0125,-0.0125 0.0125,-0.025 0.025,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,-0.0125 0,0 0,-0.0125 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.0125 0,-0.025 0,-0.0125 c 0,-0.3625 -0.325,-0.3625 -0.625,-0.3625 l -9.7,0 c -0.3125,0 -0.625,0 -0.625,0.3625 0,0.3625 0.3125,0.3625 0.625,0.3625 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="path5265" - d="m 149.10714,230.7661 2.025,0 c -0.4875,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.225,0 0.825,0 0.825,-0.575 0,-0.4 -0.3375,-0.4 -0.6625,-0.4 l -5.9,0 c -0.4125,0 -1.025,0 -1.85,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.2,0.1375 0.125,0 0.1375,-0.05 0.225,-0.15 0.9375,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.025,0 c -0.3875,1.3375 -0.8375,2.9 -2.3125,6.0375 -0.15,0.2875 -0.15,0.325 -0.15,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.525,0 0.6625,-0.4625 0.8875,-1.225 0.275,-0.9125 0.275,-0.95 0.4625,-1.6625 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> - <path - 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" - inkscape:connector-curvature="0" - d="m 164.95714,488.01967 -0.0125,-0.2875 0,-0.275 -0.0125,-0.275 0,-0.275 -0.025,-0.275 -0.025,-0.275 -0.025,-0.275 -0.0375,-0.2625 -0.0375,-0.275 -0.05,-0.2625 -0.0625,-0.2625 -0.0625,-0.275 -0.0875,-0.2625 -0.0875,-0.25 -0.1,-0.2625 -0.0625,-0.125 -0.05,-0.1375 c -0.7375,-1.4875 -2.025,-1.875 -2.9125,-1.875 -1.0375,0 -2.3125,0.5125 -2.975,2 -0.5,1.1375 -0.675,2.25 -0.675,4.1875 0,1.7375 0.125,3.05 0.7625,4.3125 0.7,1.3625 1.9375,1.8 2.875,1.8 l 0,-0.3625 c -0.575,0 -1.7375,-0.325 -2.0875,-2.275 -0.1875,-1.075 -0.1875,-2.4375 -0.1875,-3.7 0,-1.4625 0,-2.7875 0.2875,-3.85 0.3,-1.2 1.2125,-1.7625 1.9875,-1.7625 0.675,0 1.725,0.4125 2.0625,1.9625 0.225,1.025 0.225,2.4375 0.225,3.65 0,1.2125 0,2.575 -0.1875,3.6625 -0.35,1.975 -1.475,2.3125 -2.1,2.3125 l 0,0 0,0.3625 c 1.5625,0 2.45,-0.9375 2.975,-1.975 0.65,-1.3375 0.6875,-3.1 0.6875,-4.1375 z" - id="path5268" /> - <path - 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" - inkscape:connector-curvature="0" - d="m 207.13038,487.19467 2.025,0 c -0.4875,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.225,0 0.825,0 0.825,-0.575 0,-0.4 -0.3375,-0.4 -0.6625,-0.4 l -5.9,0 c -0.4125,0 -1.025,0 -1.85,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.2,0.1375 0.125,0 0.1375,-0.05 0.225,-0.15 0.9375,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.025,0 c -0.3875,1.3375 -0.8375,2.9 -2.3125,6.0375 -0.15,0.2875 -0.15,0.325 -0.15,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.525,0 0.6625,-0.4625 0.8875,-1.225 0.275,-0.9125 0.275,-0.95 0.4625,-1.6625 z" - id="path5270" /> - <g - id="g5361" - transform="translate(57.857142,256.42857)"> - <path - id="path5272" - d="m 188.19464,234.5161 -0.4,0 c -0.05,0.3 -0.1875,1.2875 -0.375,1.575 -0.125,0.1625 -1.15,0.1625 -1.6875,0.1625 l -3.3125,0 c 0.4875,-0.4125 1.575,-1.5625 2.05,-1.9875 2.725,-2.5125 3.725,-3.45 3.725,-5.225 0,-2.0625 -1.6375,-3.4375 -3.7125,-3.4375 -2.075,0 -3.3,1.775 -3.3,3.3125 0,0.9125 0.7875,0.9125 0.8375,0.9125 0.3875,0 0.85,-0.2625 0.85,-0.8375 0,-0.5 -0.3375,-0.85 -0.85,-0.85 -0.15,0 -0.1875,0 -0.25,0.025 0.35,-1.225 1.3125,-2.05 2.475,-2.05 1.525,0 2.4625,1.275 2.4625,2.925 0,1.525 -0.875,2.85 -1.9,4 l -3.625,4.05 0,0.4375 6.55,0 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="path5274" - d="m 193.71964,230.7661 2.025,0 c -0.475,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.2375,0 0.825,0 0.825,-0.575 0,-0.4 -0.3375,-0.4 -0.6625,-0.4 l -5.9,0 c -0.4125,0 -1.025,0 -1.85,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.2,0.1375 0.125,0 0.1375,-0.05 0.2375,-0.15 0.925,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.0125,0 c -0.3875,1.3375 -0.8375,2.9 -2.3125,6.0375 -0.1375,0.2875 -0.1375,0.325 -0.1375,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.5125,0 0.6625,-0.4625 0.875,-1.225 0.2875,-0.9125 0.2875,-0.95 0.4625,-1.6625 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="g5365" - transform="translate(77.857142,256.22857)"> - <path - id="path5276" - d="m 202.99464,231.0911 -0.0125,0 -0.025,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.0125,0 -0.025,0.0125 -0.025,0 -0.0125,0 -0.025,0 -0.0125,0 -0.0125,0.0125 -0.025,0 -0.0125,0 -0.0125,0.0125 -0.0125,0 0,0 -0.0125,0.0125 -0.0125,0 -0.0125,0.0125 0,0 -0.0125,0.0125 0,0 -0.0125,0.0125 0,0.0125 0,0.0125 -0.0125,0 0,0.0125 0,0.0125 0,0.0125 0,0.0125 0,0.0125 0,0.025 c 0,0.175 0.0875,0.175 0.4125,0.175 l 0.825,0 c 1.525,0 2.2,1.25 2.2,2.975 0,2.35 -1.225,2.975 -2.1,2.975 -0.8625,0 -2.325,-0.4125 -2.85,-1.5875 0.575,0.0875 1.1,-0.2375 1.1,-0.8875 0,-0.5125 -0.3875,-0.875 -0.8875,-0.875 -0.425,0 -0.8875,0.25 -0.8875,0.925 0,1.6 1.5875,2.9125 3.575,2.9125 2.1375,0 3.7125,-1.6375 3.7125,-3.45 0,-1.65 -1.325,-2.9375 -3.0375,-3.2375 1.55,-0.45 2.5625,-1.7625 2.5625,-3.1625 0,-1.4125 -1.475,-2.45 -3.2125,-2.45 -1.7875,0 -3.125,1.0875 -3.125,2.4 0,0.7125 0.5625,0.8625 0.825,0.8625 0.375,0 0.8125,-0.275 0.8125,-0.8125 0,-0.575 -0.4375,-0.825 -0.825,-0.825 -0.1125,0 -0.15,0 -0.2,0.025 0.6875,-1.225 2.375,-1.225 2.4625,-1.225 0.5875,0 1.75,0.275 1.75,2.025 0,0.35 -0.05,1.35 -0.575,2.125 -0.5375,0.7875 -1.15,0.8375 -1.625,0.85 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="path5278" - d="m 213.10714,230.7661 2.025,0 c -0.475,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.2375,0 0.825,0 0.825,-0.575 0,-0.4 -0.3375,-0.4 -0.6625,-0.4 l -5.9,0 c -0.4125,0 -1.025,0 -1.85,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.2,0.1375 0.125,0 0.1375,-0.05 0.225,-0.15 0.9375,-1.475 1.875,-1.475 2.3125,-1.475 l 1.025,0 c -0.3875,1.3375 -0.8375,2.9 -2.3125,6.0375 -0.1375,0.2875 -0.1375,0.325 -0.1375,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.5125,0 0.6625,-0.4625 0.875,-1.225 0.2875,-0.9125 0.2875,-0.95 0.4625,-1.6625 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="g5369" - transform="translate(102.14286,256.42857)"> - <path - id="path5280" - d="m 224.10714,225.5286 0,-0.0125 0,0 0.0125,-0.0125 0,0 0,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.025 0,-0.0125 0.0125,-0.025 0,-0.0125 0,-0.0125 0,-0.025 0,0 0,-0.0125 0,-0.0125 0,0 c 0,-0.1875 -0.175,-0.1875 -0.2125,-0.1875 -0.0125,0 -0.6625,0.05 -0.9875,0.0875 -0.3,0.025 -0.575,0.0625 -0.8875,0.075 -0.4375,0.0375 -0.5625,0.05 -0.5625,0.375 0,0.175 0.1875,0.175 0.3625,0.175 0.9125,0 0.9125,0.1625 0.9125,0.35 0,0.075 0,0.1 -0.0875,0.425 l -2.5625,10.2625 c -0.075,0.2625 -0.075,0.3 -0.075,0.4125 0,0.3875 0.3,0.4625 0.4875,0.4625 0.5,0 0.6,-0.3875 0.75,-0.95 l 0.8375,-3.35 c 1.3,0.1375 2.0625,0.675 2.0625,1.5375 0,0.1125 0,0.1875 -0.05,0.45 -0.075,0.275 -0.075,0.4875 -0.075,0.575 0,1.0375 0.6875,1.7375 1.6,1.7375 0.825,0 1.25,-0.75 1.4,-1 0.375,-0.6625 0.6125,-1.675 0.6125,-1.7375 0,-0.1 -0.075,-0.1625 -0.1875,-0.1625 -0.1625,0 -0.175,0.0625 -0.25,0.35 -0.25,0.9375 -0.625,2.1875 -1.5375,2.1875 -0.3625,0 -0.6,-0.175 -0.6,-0.8625 0,-0.3375 0.075,-0.725 0.15,-1 0.075,-0.325 0.075,-0.3375 0.075,-0.55 0,-1.0625 -0.95,-1.65 -2.6,-1.875 0.6375,-0.3875 1.2875,-1.0875 1.5375,-1.35 1.025,-1.15 1.725,-1.725 2.55,-1.725 0.4125,0 0.5125,0.1 0.6375,0.2125 -0.6625,0.075 -0.9125,0.5375 -0.9125,0.9 0,0.425 0.35,0.575 0.6,0.575 0.475,0 0.9125,-0.4125 0.9125,-0.9875 0,-0.525 -0.4125,-1.0625 -1.225,-1.0625 -0.9875,0 -1.7875,0.7 -3.0625,2.1375 -0.1875,0.2125 -0.85,0.8875 -1.5125,1.15 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="path5282" - d="m 235.33214,230.8036 -0.0125,-0.05 -0.025,-0.0375 -0.025,-0.05 -0.025,-0.05 -0.025,-0.05 -0.025,-0.05 -0.025,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.0375 -0.05,-0.05 -0.0375,-0.05 -0.05,-0.05 -0.05,-0.0375 -0.05,-0.0375 -0.0625,-0.05 -0.05,-0.0375 -0.0625,-0.0375 -0.0625,-0.025 -0.0625,-0.0375 -0.0625,-0.025 -0.075,-0.025 -0.0625,-0.025 -0.075,-0.025 -0.075,-0.0125 -0.0875,-0.0125 -0.075,-0.0125 -0.0875,-0.0125 -0.0875,0 0,0.3625 c 1.1875,0 1.425,1.4625 1.425,1.6125 0,0.0125 -0.0625,0.25 -0.075,0.2875 l -0.875,3.5125 c -0.1,0.3 -0.1,0.3375 -0.35,0.6875 -0.3875,0.5 -1.175,1.2625 -2.025,1.2625 -0.7375,0 -1.15,-0.6625 -1.15,-1.7125 0,-0.9875 0.5625,-3 0.9,-3.75 0.6125,-1.2625 1.45,-1.9 2.15,-1.9 l 0,-0.3625 c -2.025,0 -4.2125,2.625 -4.2125,5.275 0,1.775 1.0375,2.8125 2.2625,2.8125 0.9875,0 1.825,-0.775 2.325,-1.3625 0.1875,1.0625 1.025,1.3625 1.5625,1.3625 0.5375,0 0.975,-0.325 1.2875,-0.9625 0.3,-0.6125 0.5375,-1.7125 0.5375,-1.775 0,-0.1 -0.0625,-0.1625 -0.175,-0.1625 -0.1625,0 -0.175,0.0875 -0.25,0.35 -0.2625,1.0625 -0.6125,2.1875 -1.3375,2.1875 -0.525,0 -0.5625,-0.4625 -0.5625,-0.825 0,-0.4125 0.05,-0.6 0.2125,-1.3 0.125,-0.45 0.2125,-0.85 0.3625,-1.3625 0.6625,-2.7 0.825,-3.3375 0.825,-3.45 0,-0.25 -0.2,-0.45 -0.4625,-0.45 -0.575,0 -0.725,0.6375 -0.7625,0.85 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="g5395"> - <path - inkscape:connector-curvature="0" - id="path5373" - d="m 167.14286,469.86218 c 65,0 101.78571,-135 101.78571,-135" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 167.14286,469.86218 c -65,0 -101.785709,-135 -101.785709,-135" - id="path5393" - inkscape:connector-curvature="0" /> - </g> - <g - id="g5399" - transform="translate(80,0)"> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 167.14286,469.86218 c 20.5494,0 38.27885,-13.4929 52.91752,-31.94728" - id="path5401" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - inkscape:connector-curvature="0" - id="path5403" - d="m 167.14286,469.86218 c -65,0 -101.785709,-135 -101.785709,-135" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - </g> - <g - id="g5416" - transform="translate(-80,0)"> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 167.14286,469.86218 c 65,0 101.78571,-135 101.78571,-135" - id="path5418" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path5420" - d="m 167.14286,469.86218 c -20.35561,0 -37.94421,-13.23962 -52.50256,-31.42652" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - sodipodi:nodetypes="cc" /> - </g> - <g - transform="translate(-160,0)" - id="g5422"> - <path - inkscape:connector-curvature="0" - id="path5424" - d="m 195.52645,460.99554 c 47.21904,-30.04397 73.40212,-126.13336 73.40212,-126.13336" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - sodipodi:nodetypes="cc" /> - </g> - <g - transform="translate(160,0)" - id="g5428"> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 142.71938,463.33015 C 93.006378,436.33217 65.357151,334.86218 65.357151,334.86218" - id="path5432" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <g - id="g5462" - transform="translate(0.2232143,-0.31250002)"> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5436" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5436-3" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - </g> - <g - id="g5462-6" - transform="matrix(1,0,0,-1,0.39286032,901.77523)"> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5436-7" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5436-3-5" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - </g> - <g - transform="translate(80.223214,-0.31250002)" - id="g5487"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - id="path5489" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5491" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <g - transform="matrix(1,0,0,-1,80.39286,901.77523)" - id="g5493"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - id="path5495" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5497" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <g - id="g5499" - transform="translate(80.223214,-0.31250002)"> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5501" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5503" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - </g> - <g - id="g5505" - transform="matrix(1,0,0,-1,80.39286,901.77523)"> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5507" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5509" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - </g> - <g - transform="translate(160.22321,-0.31250002)" - id="g5511"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - id="path5513" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5515" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <g - transform="matrix(1,0,0,-1,160.39286,901.77523)" - id="g5517"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - id="path5519" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5521" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <g - transform="translate(-79.776786,-0.31250002)" - id="g5523"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - id="path5525" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5527" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <g - transform="matrix(1,0,0,-1,-79.60714,901.77523)" - id="g5529"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - id="path5531" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5533" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 76.696428,412.89789 c 2.461994,-4.32999 6.410586,-12.57079 10.424108,-12.65625" - id="path5541" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5543" - d="m 97.544646,412.89789 c -2.462,-4.32999 -6.41059,-12.57079 -10.42411,-12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5555" - d="m 76.696428,367.98885 c 2.461994,4.32999 6.410586,12.57079 10.424108,12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 97.544646,367.98885 c -2.462,4.32999 -6.41059,12.57079 -10.42411,12.65625" - id="path5557" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5559" - d="m 156.69643,412.89789 c 2.46199,-4.32999 6.41058,-12.57079 10.42411,-12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 177.54465,412.89789 c -2.462,-4.32999 -6.41059,-12.57079 -10.42411,-12.65625" - id="path5561" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 156.69643,367.98885 c 2.46199,4.32999 6.41058,12.57079 10.42411,12.65625" - id="path5563" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5565" - d="m 177.54465,367.98885 c -2.462,4.32999 -6.41059,12.57079 -10.42411,12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 236.69643,412.89789 c 2.46199,-4.32999 6.41058,-12.57079 10.42411,-12.65625" - id="path5567" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5569" - d="m 257.54465,412.89789 c -2.462,-4.32999 -6.41059,-12.57079 -10.42411,-12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5571" - d="m 236.69643,367.98885 c 2.46199,4.32999 6.41058,12.57079 10.42411,12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 257.54465,367.98885 c -2.462,4.32999 -6.41059,12.57079 -10.42411,12.65625" - id="path5573" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> -</svg> diff --git a/src/figures/reduced_nearly_free_electron_bands.svg b/src/figures/reduced_nearly_free_electron_bands.svg deleted file mode 100644 index bb079014b9095b347aed3d60ba8ebed652e262b3..0000000000000000000000000000000000000000 --- a/src/figures/reduced_nearly_free_electron_bands.svg +++ /dev/null @@ -1,387 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - 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="87.325607mm" - height="54.120304mm" - viewBox="0 0 309.42144 191.76486" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="nearly_free_electron_bands.svg"> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.8284271" - inkscape:cx="129.44356" - inkscape:cy="102.21399" - 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" - inkscape:object-nodes="true" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <defs - id="defs4"> - <marker - inkscape:collect="always" - inkscape:isstock="true" - style="overflow:visible" - id="Arrow1Lend-3" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow1Lend"> - <path - 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="path4164-6" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:collect="always" - inkscape:isstock="true" - style="overflow:visible" - id="Arrow1Lend" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow1Lend"> - <path - 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="path4164" - inkscape:connector-curvature="0" /> - </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></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-30.203563,-313.62264)"> - <path - inkscape:connector-curvature="0" - id="path4155" - d="m 167.56642,505.38749 0,-187.17645" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.48831511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path4155-7" - d="m 33.808769,470.44487 302.188471,0" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.48831511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend-3)" /> - <path - 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" - inkscape:connector-curvature="0" - d="m 154.42712,321.67264 0,0 0.0125,0 0,-0.0125 0,0 0,-0.0125 0,-0.0125 0.0125,0 0,-0.0125 0,0 0,-0.0125 0.0125,-0.0125 0,0 0,-0.025 0.0125,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.0125 0.0125,0 0,-0.0125 0,-0.0125 0,0 0,-0.0125 0,-0.0125 0,0 0,-0.0125 c 0,-0.0875 -0.075,-0.175 -0.175,-0.175 -0.075,0 -0.1125,0.0125 -0.1625,0.075 -0.0375,0.0125 -0.0375,0.05 -0.2,0.4125 -1.0625,2.5125 -1.825,3.5875 -4.7,3.5875 l -2.6125,0 c -0.25,0 -0.2875,0 -0.4,-0.025 -0.2,-0.0125 -0.2125,-0.05 -0.2125,-0.2 0,-0.125 0.0375,-0.225 0.075,-0.3875 l 1.2375,-4.95 1.775,0 c 1.4,0 1.5,0.3 1.5,0.8375 0,0.1875 0,0.35 -0.125,0.8875 -0.0375,0.0625 -0.05,0.1375 -0.05,0.1875 0,0.1375 0.0875,0.1875 0.2,0.1875 0.1625,0 0.175,-0.125 0.25,-0.375 l 1.025,-4.1625 c 0,-0.0875 -0.075,-0.175 -0.1875,-0.175 -0.1625,0 -0.175,0.0625 -0.25,0.3125 -0.3625,1.3875 -0.7125,1.775 -2.3125,1.775 l -1.7,0 1.1125,-4.4125 c 0.15,-0.625 0.1875,-0.675 0.925,-0.675 l 2.5625,0 c 2.2125,0 2.6625,0.5875 2.6625,1.95 0,0.025 0,0.525 -0.075,1.1125 -0.025,0.075 -0.0375,0.175 -0.0375,0.2125 0,0.15 0.0875,0.2 0.2,0.2 0.125,0 0.2,-0.075 0.225,-0.3875 l 0.3875,-3.1375 c 0,-0.0625 0.0375,-0.2375 0.0375,-0.275 0,-0.2 -0.1625,-0.2 -0.4875,-0.2 l -8.75,0 c -0.35,0 -0.525,0 -0.525,0.325 0,0.2 0.125,0.2 0.425,0.2 1.1125,0 1.1125,0.125 1.1125,0.325 0,0.0875 -0.0125,0.1625 -0.0625,0.35 l -2.425,9.6875 c -0.1625,0.625 -0.2,0.8125 -1.45,0.8125 -0.3375,0 -0.525,0 -0.525,0.325 0,0.1875 0.1125,0.1875 0.4625,0.1875 l 9.0125,0 c 0.3875,0 0.4125,-0.0125 0.5375,-0.3 z" - id="path5267" /> - <path - inkscape:connector-curvature="0" - id="path5104" - d="m 167.68329,462.36365 0,16.16244" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 127.68329,462.36365 0,16.16244" - id="path5106" - inkscape:connector-curvature="0" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 207.68329,462.36365 0,16.16244" - id="path5112" - inkscape:connector-curvature="0" /> - <g - id="g5353" - transform="translate(-20.357143,256.42857)"> - <path - id="path5263" - d="m 142.33214,233.4036 0.05,0 0.0625,0 0.0625,0 0.025,-0.0125 0.025,0 0.025,0 0.025,0 0.025,0 0.0375,-0.0125 0.025,0 0.0125,-0.0125 0.025,0 0.025,-0.0125 0.025,-0.0125 0.025,0 0.0125,-0.0125 0.025,-0.0125 0.0125,-0.0125 0.0125,-0.025 0.025,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,-0.0125 0,-0.0125 0.0125,-0.0125 0,0 0,-0.0125 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.0125 0,-0.0125 0,-0.0125 0,-0.025 0,-0.0125 c 0,-0.3625 -0.325,-0.3625 -0.625,-0.3625 l -9.7,0 c -0.3125,0 -0.625,0 -0.625,0.3625 0,0.3625 0.3125,0.3625 0.625,0.3625 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="path5265" - d="m 149.10714,230.7661 2.025,0 c -0.4875,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.225,0 0.825,0 0.825,-0.575 0,-0.4 -0.3375,-0.4 -0.6625,-0.4 l -5.9,0 c -0.4125,0 -1.025,0 -1.85,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.2,0.1375 0.125,0 0.1375,-0.05 0.225,-0.15 0.9375,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.025,0 c -0.3875,1.3375 -0.8375,2.9 -2.3125,6.0375 -0.15,0.2875 -0.15,0.325 -0.15,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.525,0 0.6625,-0.4625 0.8875,-1.225 0.275,-0.9125 0.275,-0.95 0.4625,-1.6625 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> - <path - 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" - inkscape:connector-curvature="0" - d="m 164.95714,488.01967 -0.0125,-0.2875 0,-0.275 -0.0125,-0.275 0,-0.275 -0.025,-0.275 -0.025,-0.275 -0.025,-0.275 -0.0375,-0.2625 -0.0375,-0.275 -0.05,-0.2625 -0.0625,-0.2625 -0.0625,-0.275 -0.0875,-0.2625 -0.0875,-0.25 -0.1,-0.2625 -0.0625,-0.125 -0.05,-0.1375 c -0.7375,-1.4875 -2.025,-1.875 -2.9125,-1.875 -1.0375,0 -2.3125,0.5125 -2.975,2 -0.5,1.1375 -0.675,2.25 -0.675,4.1875 0,1.7375 0.125,3.05 0.7625,4.3125 0.7,1.3625 1.9375,1.8 2.875,1.8 l 0,-0.3625 c -0.575,0 -1.7375,-0.325 -2.0875,-2.275 -0.1875,-1.075 -0.1875,-2.4375 -0.1875,-3.7 0,-1.4625 0,-2.7875 0.2875,-3.85 0.3,-1.2 1.2125,-1.7625 1.9875,-1.7625 0.675,0 1.725,0.4125 2.0625,1.9625 0.225,1.025 0.225,2.4375 0.225,3.65 0,1.2125 0,2.575 -0.1875,3.6625 -0.35,1.975 -1.475,2.3125 -2.1,2.3125 l 0,0 0,0.3625 c 1.5625,0 2.45,-0.9375 2.975,-1.975 0.65,-1.3375 0.6875,-3.1 0.6875,-4.1375 z" - id="path5268" /> - <path - 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" - inkscape:connector-curvature="0" - d="m 207.13038,487.19467 2.025,0 c -0.4875,2.0125 -0.7875,3.3125 -0.7875,4.75 0,0.25 0,2.1875 0.7375,2.1875 0.375,0 0.7,-0.3375 0.7,-0.65 0,-0.0875 0,-0.125 -0.125,-0.3875 -0.4875,-1.2375 -0.4875,-2.775 -0.4875,-2.9125 0,-0.1 0,-1.375 0.375,-2.9875 l 2.0125,0 c 0.225,0 0.825,0 0.825,-0.575 0,-0.4 -0.3375,-0.4 -0.6625,-0.4 l -5.9,0 c -0.4125,0 -1.025,0 -1.85,0.8875 -0.4625,0.5125 -1.0375,1.4625 -1.0375,1.575 0,0.1125 0.0875,0.1375 0.2,0.1375 0.125,0 0.1375,-0.05 0.225,-0.15 0.9375,-1.475 1.8625,-1.475 2.3125,-1.475 l 1.025,0 c -0.3875,1.3375 -0.8375,2.9 -2.3125,6.0375 -0.15,0.2875 -0.15,0.325 -0.15,0.4375 0,0.375 0.325,0.4625 0.4875,0.4625 0.525,0 0.6625,-0.4625 0.8875,-1.225 0.275,-0.9125 0.275,-0.95 0.4625,-1.6625 z" - id="path5270" /> - <g - id="g5369" - transform="translate(102.14286,256.42857)"> - <path - id="path5280" - d="m 224.10714,225.5286 0,-0.0125 0,0 0.0125,-0.0125 0,0 0,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.0125 0,-0.025 0.0125,-0.0125 0,-0.025 0,-0.0125 0.0125,-0.025 0,-0.0125 0,-0.0125 0,-0.025 0,0 0,-0.0125 0,-0.0125 0,0 c 0,-0.1875 -0.175,-0.1875 -0.2125,-0.1875 -0.0125,0 -0.6625,0.05 -0.9875,0.0875 -0.3,0.025 -0.575,0.0625 -0.8875,0.075 -0.4375,0.0375 -0.5625,0.05 -0.5625,0.375 0,0.175 0.1875,0.175 0.3625,0.175 0.9125,0 0.9125,0.1625 0.9125,0.35 0,0.075 0,0.1 -0.0875,0.425 l -2.5625,10.2625 c -0.075,0.2625 -0.075,0.3 -0.075,0.4125 0,0.3875 0.3,0.4625 0.4875,0.4625 0.5,0 0.6,-0.3875 0.75,-0.95 l 0.8375,-3.35 c 1.3,0.1375 2.0625,0.675 2.0625,1.5375 0,0.1125 0,0.1875 -0.05,0.45 -0.075,0.275 -0.075,0.4875 -0.075,0.575 0,1.0375 0.6875,1.7375 1.6,1.7375 0.825,0 1.25,-0.75 1.4,-1 0.375,-0.6625 0.6125,-1.675 0.6125,-1.7375 0,-0.1 -0.075,-0.1625 -0.1875,-0.1625 -0.1625,0 -0.175,0.0625 -0.25,0.35 -0.25,0.9375 -0.625,2.1875 -1.5375,2.1875 -0.3625,0 -0.6,-0.175 -0.6,-0.8625 0,-0.3375 0.075,-0.725 0.15,-1 0.075,-0.325 0.075,-0.3375 0.075,-0.55 0,-1.0625 -0.95,-1.65 -2.6,-1.875 0.6375,-0.3875 1.2875,-1.0875 1.5375,-1.35 1.025,-1.15 1.725,-1.725 2.55,-1.725 0.4125,0 0.5125,0.1 0.6375,0.2125 -0.6625,0.075 -0.9125,0.5375 -0.9125,0.9 0,0.425 0.35,0.575 0.6,0.575 0.475,0 0.9125,-0.4125 0.9125,-0.9875 0,-0.525 -0.4125,-1.0625 -1.225,-1.0625 -0.9875,0 -1.7875,0.7 -3.0625,2.1375 -0.1875,0.2125 -0.85,0.8875 -1.5125,1.15 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="path5282" - d="m 235.33214,230.8036 -0.0125,-0.05 -0.025,-0.0375 -0.025,-0.05 -0.025,-0.05 -0.025,-0.05 -0.025,-0.05 -0.025,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.05 -0.0375,-0.0375 -0.05,-0.05 -0.0375,-0.05 -0.05,-0.05 -0.05,-0.0375 -0.05,-0.0375 -0.0625,-0.05 -0.05,-0.0375 -0.0625,-0.0375 -0.0625,-0.025 -0.0625,-0.0375 -0.0625,-0.025 -0.075,-0.025 -0.0625,-0.025 -0.075,-0.025 -0.075,-0.0125 -0.0875,-0.0125 -0.075,-0.0125 -0.0875,-0.0125 -0.0875,0 0,0.3625 c 1.1875,0 1.425,1.4625 1.425,1.6125 0,0.0125 -0.0625,0.25 -0.075,0.2875 l -0.875,3.5125 c -0.1,0.3 -0.1,0.3375 -0.35,0.6875 -0.3875,0.5 -1.175,1.2625 -2.025,1.2625 -0.7375,0 -1.15,-0.6625 -1.15,-1.7125 0,-0.9875 0.5625,-3 0.9,-3.75 0.6125,-1.2625 1.45,-1.9 2.15,-1.9 l 0,-0.3625 c -2.025,0 -4.2125,2.625 -4.2125,5.275 0,1.775 1.0375,2.8125 2.2625,2.8125 0.9875,0 1.825,-0.775 2.325,-1.3625 0.1875,1.0625 1.025,1.3625 1.5625,1.3625 0.5375,0 0.975,-0.325 1.2875,-0.9625 0.3,-0.6125 0.5375,-1.7125 0.5375,-1.775 0,-0.1 -0.0625,-0.1625 -0.175,-0.1625 -0.1625,0 -0.175,0.0875 -0.25,0.35 -0.2625,1.0625 -0.6125,2.1875 -1.3375,2.1875 -0.525,0 -0.5625,-0.4625 -0.5625,-0.825 0,-0.4125 0.05,-0.6 0.2125,-1.3 0.125,-0.45 0.2125,-0.85 0.3625,-1.3625 0.6625,-2.7 0.825,-3.3375 0.825,-3.45 0,-0.25 -0.2,-0.45 -0.4625,-0.45 -0.575,0 -0.725,0.6375 -0.7625,0.85 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="g5395"> - <path - inkscape:connector-curvature="0" - id="path5373" - d="m 167.14286,469.86218 c 65,0 101.78571,-135 101.78571,-135" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 167.14286,469.86218 c -65,0 -101.785709,-135 -101.785709,-135" - id="path5393" - inkscape:connector-curvature="0" /> - </g> - <g - id="g5399" - transform="translate(80,0)"> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 167.14286,469.86218 c 20.5494,0 38.27885,-13.4929 52.91752,-31.94728" - id="path5401" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - inkscape:connector-curvature="0" - id="path5403" - d="m 167.14286,469.86218 c -65,0 -101.785709,-135 -101.785709,-135" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - </g> - <path - inkscape:connector-curvature="0" - id="path5418" - d="m 87.14286,469.86218 c 65,0 101.78571,-135 101.78571,-135" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <g - transform="translate(160,0)" - id="g5428"> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 142.71938,463.33015 C 93.006378,436.33217 65.357151,334.86218 65.357151,334.86218" - id="path5432" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.51785,459.4604 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5436-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <g - id="g5462-6" - transform="matrix(1,0,0,-1,0.39286032,901.77523)"> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5436-7" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5436-3-5" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - </g> - <g - transform="translate(80.223214,-0.31250002)" - id="g5487"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - id="path5489" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5491" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <g - transform="matrix(1,0,0,-1,80.39286,901.77523)" - id="g5493"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - id="path5495" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5497" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <g - id="g5499" - transform="translate(80.223214,-0.31250002)"> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5501" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5503" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - </g> - <g - id="g5505" - transform="matrix(1,0,0,-1,80.39286,901.77523)"> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5507" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5509" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - </g> - <g - transform="translate(160.22321,-0.31250002)" - id="g5511"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - id="path5513" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5515" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <g - transform="matrix(1,0,0,-1,160.39286,901.77523)" - id="g5517"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 117.54464,459.7729 c 4.50893,-3.25893 5.53572,-3.88393 9.375,-3.92858" - id="path5519" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 136.29464,459.7729 c -4.50893,-3.25893 -5.53572,-3.88393 -9.375,-3.92858" - id="path5521" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5559" - d="m 156.69643,412.89789 c 2.46199,-4.32999 6.41058,-12.57079 10.42411,-12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 177.54465,412.89789 c -2.462,-4.32999 -6.41059,-12.57079 -10.42411,-12.65625" - id="path5561" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 156.69643,367.98885 c 2.46199,4.32999 6.41058,12.57079 10.42411,12.65625" - id="path5563" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5565" - d="m 177.54465,367.98885 c -2.462,4.32999 -6.41059,12.57079 -10.42411,12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 236.69643,412.89789 c 2.46199,-4.32999 6.41058,-12.57079 10.42411,-12.65625" - id="path5567" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5569" - d="m 257.54465,412.89789 c -2.462,-4.32999 -6.41059,-12.57079 -10.42411,-12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5571" - d="m 236.69643,367.98885 c 2.46199,4.32999 6.41058,12.57079 10.42411,12.65625" - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 257.54465,367.98885 c -2.462,4.32999 -6.41059,12.57079 -10.42411,12.65625" - id="path5573" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - id="rect4240" - width="96.722115" - height="136.0257" - x="28.961178" - y="332.33795" /> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - id="rect4240-3" - width="96.722115" - height="136.0257" - x="209.64372" - y="332.21863" /> - </g> -</svg>