Start from clean GIT
BIN
images/changes.pdf
Normal file
BIN
images/consumption-hosts.pdf
Normal file
BIN
images/consumption-nodes.pdf
Normal file
BIN
images/consumption-phases.pdf
Normal file
BIN
images/consumption-regress.pdf
Normal file
BIN
images/convergence.pdf
Normal file
BIN
images/dag.pdf
Normal file
BIN
images/host-node.pdf
Normal file
132
images/host-node.tex
Normal file
|
@ -0,0 +1,132 @@
|
|||
\documentclass[crop,tikz]{standalone}
|
||||
\usepackage{tikz}
|
||||
\begin{document}
|
||||
\usetikzlibrary{shapes.misc,positioning,circuits.ee.IEC,fit}
|
||||
\tikzstyle{system}=[shape=rounded rectangle,fill=green!20,text centered,draw]
|
||||
\tikzstyle{sensor}=[rectangle,fill=orange!20,text centered,draw]
|
||||
\tikzstyle{processor}=[rectangle,fill=blue!20,text centered,draw]
|
||||
\tikzstyle{connector}=[rectangle,fill=yellow!20,text centered,draw]
|
||||
\tikzstyle{memory}=[rectangle,fill=green!20,text centered,draw]
|
||||
\tikzstyle{radio}=[rectangle,fill=magenta!20,text centered,draw]
|
||||
\tikzstyle{bus}=[<->,color=black,draw]
|
||||
\tikzstyle{buslabel}=[near end,color=black,font=\tiny,auto]
|
||||
\tikzstyle{vcc}=[->,color=red,font=\tiny,draw,text=black]
|
||||
|
||||
\pgfdeclarelayer{background}
|
||||
\pgfdeclarelayer{foreground}
|
||||
\pgfsetlayers{background,main,foreground}
|
||||
|
||||
\begin{tikzpicture}
|
||||
% CN part
|
||||
|
||||
\node[processor] (cpu)[minimum width=50,minimum height=50] {M3};
|
||||
\node[radio] (wireless) [right of=cpu,right=0.5] {Radio};
|
||||
\node[radio] (bridge) [below of=cpu,below=0.5] {USB Bridge};
|
||||
|
||||
\path[bus] (bridge.120) -- node [buslabel,left] {JTAG} (cpu.260);
|
||||
\path[bus] (bridge.60) -- node [buslabel,right] {SPI} (cpu.280);
|
||||
|
||||
\path[bus] (wireless.north west) -- node [buslabel,above] {SPI} (cpu.15);
|
||||
\path[bus] (wireless.south west) -- node [buslabel,below] {GPIO} (cpu.-15);
|
||||
|
||||
\begin{pgfonlayer}{background}
|
||||
\node [draw,fit=(cpu)(wireless)(bridge),label=above:\tiny{Control Node},fill=gray!20] (cn) {};
|
||||
\end{pgfonlayer}
|
||||
|
||||
\node[processor] (a8) [minimum width=100,minimum height=100,left of=cn,left=4,above of=cpu] (a8) {A8};
|
||||
\node[processor] (eth) [below of=a8,below=1] {ETH SW};
|
||||
\node[connector] (eth0) [below of=eth,right of=eth,below=0.001] {ETH};
|
||||
\node[connector] (eth1) [below of=eth,below=0.001] {ETH};
|
||||
\node[connector] (eth2) [below of=eth,left of=eth,below=0.001] {ETH};
|
||||
\path[bus] (eth) -- node[buslabel,above] {ETH} (a8);
|
||||
\path[bus] (eth1) -- (eth);
|
||||
\path[bus] (eth0) |- (eth);
|
||||
\path[bus] (eth2) |- (eth);
|
||||
|
||||
\node[processor] (uhub) [above of=a8,above=2,left of=a8] {USB Hub};
|
||||
\path[bus] (uhub) -- node[buslabel,below] {USB} (a8.120);
|
||||
|
||||
\node[connector] (usb0) [above of=uhub] {USB};
|
||||
\node[connector] (usb1) [above of=uhub,left of=uhub] {USB};
|
||||
\node[connector] (usb2) [above of=uhub,right of=uhub] {USB};
|
||||
\path[bus] (usb2) |- (uhub);
|
||||
\path[bus] (usb0) -- (uhub);
|
||||
\path[bus] (usb1) |- (uhub);
|
||||
|
||||
\node[processor] (ubridge2) [right of=uhub,right=2,above of=a8,above=1] {USB Bridge};
|
||||
\path[bus] (ubridge2) -- node[buslabel,below] {UART} (a8.60);
|
||||
|
||||
\node[connector] (onc) [minimum width=200,right of=usb2,right=0.5] {Open Node Connector};
|
||||
|
||||
\node[connector] (pwr) [right of=onc,right=3] {Power};
|
||||
|
||||
\node[processor] (pwrmgnt) [below of=pwr,below=1] {Power Mgnt};
|
||||
|
||||
\node[processor] (cmsr) [below of=pwrmgnt,left of=pwrmgnt,left=2] {Current Msr};
|
||||
|
||||
\path[bus] (ubridge2) |- node[buslabel] {USB} (onc.south west);
|
||||
\path[bus] (eth.north east) -| node[buslabel] {ETH} (onc.187);
|
||||
\path[bus] (bridge.north west) -| node[buslabel] {UART} (onc.190);
|
||||
\path[bus] (cpu.160) -| node[buslabel,left] {GPIO} (onc.192);
|
||||
\path[bus] (cpu.north west) -| node[buslabel,right] {I2C} (onc.194);
|
||||
|
||||
\path[vcc,<-] (usb2.south east) |- (3.55,4) -- (pwrmgnt.north west);
|
||||
\node[label=above left:\tiny{5V}] at (3.55,4) {};
|
||||
\path[vcc] (3.55,4) -| (cmsr.100);
|
||||
\path[vcc] (pwrmgnt.north west) -- (onc.south east);
|
||||
\path[vcc] (pwr) -- node[buslabel,right] {+3.3V to 5V} (pwrmgnt);
|
||||
\path[vcc,<->] (cmsr.north east) |- (pwrmgnt);
|
||||
\path[vcc] (pwrmgnt) |- node[buslabel] {+48V} (4.5,-2.4) -| (eth0.east);
|
||||
|
||||
\path[vcc,orange] (pwrmgnt.160) |- (onc.east);
|
||||
\path[vcc,orange] (pwrmgnt.160) |- node[buslabel,below] {+3.3V} (1,3.5) -- (cmsr.28);
|
||||
|
||||
\node[draw,rounded rectangle] (gnd) at (2.8,2) {GND};
|
||||
\path[vcc] (gnd) |- (pwrmgnt);
|
||||
\end{tikzpicture}
|
||||
|
||||
\begin{tikzpicture}
|
||||
\node[processor] (cpu)[minimum width=50,minimum height=50] {CPU}; %STM32F103RKEY
|
||||
|
||||
\node[memory] (flash) [below of=cpu,below=0.5] {Flash}; %N25Q128A
|
||||
\draw[bus,transform canvas={xshift=-10}] (flash) edge node[buslabel] {GPIO} (cpu);
|
||||
\draw[bus,transform canvas={xshift=10}] (flash) edge node[buslabel] {SPI} (cpu);
|
||||
|
||||
\node[radio] (wireless) [right of=cpu,above of=cpu,right=0.4] {Radio}; %AT86RF231
|
||||
\path[bus] (wireless.240) |- node[buslabel,above] {GPIO} (cpu.10);
|
||||
\path[bus] (wireless) |- node[buslabel] {SPI} (cpu);
|
||||
|
||||
\node[system] (usbb) [above of=cpu,above=1] {USB Bridge};
|
||||
\path[bus] (usbb) edge node[buslabel] {JTAG} (cpu);
|
||||
\path[bus,transform canvas={xshift= 20}] (usbb) edge node[buslabel] {UART} (cpu);
|
||||
|
||||
\node[connector] (oc) [above of=usbb,above=1,minimum width=100] {Open Node Connector};
|
||||
\path[bus] (usbb) edge node[buslabel]{USB} (oc) ;
|
||||
\path[bus] (oc.190) |- node[buslabel]{GPIO} (cpu.160) ;
|
||||
|
||||
\node[connector] (usb) [right of=oc,below of=oc,right=0.5] {USB};
|
||||
\path[bus] (oc) |- (usb);
|
||||
|
||||
\node[system] (pm) [below of=usb] {Power};
|
||||
|
||||
\node[sensor] (light) [minimum width=80,below left of=oc,left=1.5] {Light Sensor}; %ISL29020
|
||||
\node[sensor] (pressure)[minimum width=80,below of=light] {Pressure Sensor}; %LPS331AP
|
||||
\node[sensor] (gyro) [minimum width=80,below of=pressure] {Gyroscope}; %L3G4200D
|
||||
\node[sensor] (magneto) [minimum width=80,below of=gyro] {Magnetometer}; %LSM303DLHC
|
||||
|
||||
\path[bus] (oc.188) |- (light);
|
||||
\path[bus] (oc.188) |- (gyro);
|
||||
\path[bus] (oc.188) |- (magneto);
|
||||
\path[bus] (oc.188) |- (pressure);
|
||||
\path[bus] (oc.188) |- node[buslabel,below] {I2C} (cpu.190);
|
||||
\path[bus] (gyro) -| node[buslabel,below] {GPIO} (cpu.120);
|
||||
\path[bus] (magneto.10)-| (cpu.120);
|
||||
|
||||
\path[vcc] (pm.210) |- node[auto] {+3.3 V} (usbb.10);
|
||||
\path[vcc,yellow,text=black] (pm) -- node[auto] {+3.3 V mon.} (wireless);
|
||||
\path[vcc] (usb) -- node[left] {+5} (pm);
|
||||
\path[vcc] (oc.340) |- node[near start,auto] {+3.3} (pm.175);
|
||||
\path[vcc,yellow,text=black] (oc.330) |- node[near start,left] {+5} (pm.185);
|
||||
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
BIN
images/ibr_logos/ibr_de.pdf
Normal file
64
images/ibr_logos/ibr_de.svg
Normal file
|
@ -0,0 +1,64 @@
|
|||
<?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"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
width="410"
|
||||
height="118"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="ibr_de.svg"><metadata
|
||||
id="metadata8"><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><defs
|
||||
id="defs6" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2558"
|
||||
inkscape:window-height="1419"
|
||||
id="namedview4"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.2561405"
|
||||
inkscape:cx="190.33662"
|
||||
inkscape:cy="-61.699627"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="19"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g10" /><g
|
||||
id="g10"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="dummy_institut"
|
||||
transform="matrix(1.25,0,0,-1.25,0,118)"><text
|
||||
id="text14"
|
||||
transform="scale(1,-1)"
|
||||
x="90.314079"
|
||||
y="-28.827282"
|
||||
style="line-height:100%"
|
||||
sodipodi:linespacing="100%"><tspan
|
||||
sodipodi:role="line"
|
||||
y="-28.827282"
|
||||
x="90.314079"
|
||||
style="font-size:20.56000137px;font-variant:normal;font-weight:normal;line-height:100%;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:NexusSansPro;-inkscape-font-specification:NexusSansPro-Regular"
|
||||
id="tspan3033">Institut für Betriebssysteme</tspan><tspan
|
||||
sodipodi:role="line"
|
||||
y="-8.2672796"
|
||||
x="90.314079"
|
||||
style="font-size:20.56000137px;font-variant:normal;font-weight:normal;line-height:100%;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:NexusSansPro;-inkscape-font-specification:NexusSansPro-Regular"
|
||||
id="tspan2987">und Rechnerverbund</tspan></text>
|
||||
|
||||
|
||||
</g></svg>
|
After Width: | Height: | Size: 2.4 KiB |
BIN
images/ibr_logos/ibr_de_alternative.pdf
Normal file
69
images/ibr_logos/ibr_de_alternative.svg
Normal file
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 15.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<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"
|
||||
version="1.1"
|
||||
id="Ebene_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="536.582px"
|
||||
height="113.16px"
|
||||
viewBox="0 0 536.582 113.16"
|
||||
enable-background="new 0 0 536.582 113.16"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.47 r22583"
|
||||
sodipodi:docname="ibr_deu.svg"><metadata
|
||||
id="metadata13"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs11"><inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 56.580002 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="536.58197 : 56.580002 : 1"
|
||||
inkscape:persp3d-origin="268.29099 : 37.720001 : 1"
|
||||
id="perspective15" /></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1272"
|
||||
inkscape:window-height="707"
|
||||
id="namedview9"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.0045064"
|
||||
inkscape:cx="228.47043"
|
||||
inkscape:cy="56.580002"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Ebene_1" />
|
||||
<text
|
||||
id="text3"
|
||||
x="149.10063"
|
||||
y="25.019604"
|
||||
style="font-size:8.35147095px"><tspan
|
||||
x="149.10063"
|
||||
y="25.019604"
|
||||
font-size="48"
|
||||
id="tspan5"
|
||||
style="font-size:33.40588379px;font-family:NexusSansPro-Bold">Institut für Betriebssysteme </tspan><tspan
|
||||
x="149.10063"
|
||||
y="65.106667"
|
||||
font-size="48"
|
||||
id="tspan7"
|
||||
style="font-size:33.40588379px;font-family:NexusSansPro-Bold">und Rechnerverbund</tspan></text>
|
||||
|
||||
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
BIN
images/ibr_logos/ibr_en.pdf
Normal file
63
images/ibr_logos/ibr_en.svg
Normal file
|
@ -0,0 +1,63 @@
|
|||
<?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"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
width="410"
|
||||
height="118"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="ibr_en.svg"><metadata
|
||||
id="metadata8"><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><defs
|
||||
id="defs6" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2558"
|
||||
inkscape:window-height="1419"
|
||||
id="namedview4"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.1512195"
|
||||
inkscape:cx="208.47458"
|
||||
inkscape:cy="58.999999"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="19"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g10" /><g
|
||||
id="g10"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="dummy_institut"
|
||||
transform="matrix(1.25,0,0,-1.25,0,118)"><text
|
||||
id="text14"
|
||||
transform="scale(1,-1)"
|
||||
x="63.03368"
|
||||
y="-33.679443"
|
||||
style="line-height:100%"
|
||||
sodipodi:linespacing="100%"><tspan
|
||||
id="tspan18"
|
||||
sodipodi:role="line"
|
||||
y="-33.679443"
|
||||
x="63.03368"
|
||||
style="font-size:20.56000137px;font-variant:normal;font-weight:normal;line-height:100%;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:NexusSansPro;-inkscape-font-specification:NexusSansPro-Regular">Institute of Operating Systems</tspan><tspan
|
||||
sodipodi:role="line"
|
||||
y="-13.11944"
|
||||
x="63.03368"
|
||||
style="font-size:20.56000137px;font-variant:normal;font-weight:normal;line-height:100%;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:NexusSansPro;-inkscape-font-specification:NexusSansPro-Regular"
|
||||
id="tspan3033">and Computer Networks</tspan></text>
|
||||
|
||||
</g></svg>
|
After Width: | Height: | Size: 2.4 KiB |
BIN
images/ibr_logos/ibr_en_alternative.pdf
Normal file
69
images/ibr_logos/ibr_en_alternative.svg
Normal file
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 15.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<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"
|
||||
version="1.1"
|
||||
id="Ebene_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="536.582px"
|
||||
height="113.16px"
|
||||
viewBox="0 0 536.582 113.16"
|
||||
enable-background="new 0 0 536.582 113.16"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.47 r22583"
|
||||
sodipodi:docname="ibr_deu.svg"><metadata
|
||||
id="metadata13"><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><defs
|
||||
id="defs11"><inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 56.580002 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="536.58197 : 56.580002 : 1"
|
||||
inkscape:persp3d-origin="268.29099 : 37.720001 : 1"
|
||||
id="perspective15" /></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1272"
|
||||
inkscape:window-height="707"
|
||||
id="namedview9"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.4205866"
|
||||
inkscape:cx="300.63629"
|
||||
inkscape:cy="66.541814"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Ebene_1" />
|
||||
<text
|
||||
id="text3"
|
||||
x="109.10063"
|
||||
y="25.019604"
|
||||
style="font-size:8.35147095px"><tspan
|
||||
x="109.10063"
|
||||
y="25.019604"
|
||||
font-size="48"
|
||||
id="tspan5"
|
||||
style="font-size:33.40588379px;font-family:NexusSansPro-Bold">Institute of Operating Systems </tspan><tspan
|
||||
x="109.10063"
|
||||
y="65.106667"
|
||||
font-size="48"
|
||||
id="tspan7"
|
||||
style="font-size:33.40588379px;font-family:NexusSansPro-Bold">and Computer Networks</tspan></text>
|
||||
|
||||
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
BIN
images/ibr_logos/title_iz_corner.jpg
Normal file
After Width: | Height: | Size: 108 KiB |
BIN
images/lille_8032.png
Normal file
After Width: | Height: | Size: 1.8 MiB |
BIN
images/performance-consumption.pdf
Normal file
BIN
images/performance-delay.pdf
Normal file
BIN
images/performance-jitter.pdf
Normal file
BIN
images/performance-loss.pdf
Normal file
BIN
images/performance-overhead.pdf
Normal file
BIN
images/performance-rank.pdf
Normal file
BIN
images/routes.pdf
Normal file
BIN
images/sim_star_new.pdf
Normal file
753
images/sim_star_new.svg
Normal file
|
@ -0,0 +1,753 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 715 715"
|
||||
height="715"
|
||||
width="715"
|
||||
xml:space="preserve"
|
||||
version="1.1"
|
||||
id="svg2"><metadata
|
||||
id="metadata8"><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><defs
|
||||
id="defs6"><clipPath
|
||||
id="clipPath16"
|
||||
clipPathUnits="userSpaceOnUse"><path
|
||||
style="clip-rule:evenodd"
|
||||
id="path18"
|
||||
d="m 0,-0.3 572.3,0 0,572.3 L 0,572 0,-0.3 Z" /></clipPath></defs><g
|
||||
transform="matrix(1.25,0,0,-1.25,0,715)"
|
||||
id="g10"><g
|
||||
id="g12"><g
|
||||
clip-path="url(#clipPath16)"
|
||||
id="g14"><path
|
||||
id="path20"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 0,572 572.4,0 0,-572.4 L 0,-0.4 0,572 Z" /><path
|
||||
id="path22"
|
||||
style="fill:#1c1c1c;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 283.3,299.4 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z m -19.8,0 0,0 z m 39.7,-39.6 0,0 z" /><g
|
||||
id="g24"><path
|
||||
id="path26"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 283.3,299.4 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g28"><path
|
||||
id="path30"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 263.5,299.4 0,0 z" /></g><g
|
||||
id="g32"><path
|
||||
id="path34"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 303.2,259.8 0,0 z" /></g><g
|
||||
id="g36"><text
|
||||
id="text38"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,277.2,272)"><tspan
|
||||
id="tspan40"
|
||||
y="0"
|
||||
x="0">1</tspan></text>
|
||||
</g><g
|
||||
id="g42"><path
|
||||
id="path44"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 369.7,339 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g46"><path
|
||||
id="path48"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 349.9,339 0,0 z" /></g><g
|
||||
id="g50"><path
|
||||
id="path52"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 389.6,299.4 0,0 z" /></g><g
|
||||
id="g54"><text
|
||||
id="text56"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,363.6,311.6)"><tspan
|
||||
id="tspan58"
|
||||
y="0"
|
||||
x="0">3</tspan></text>
|
||||
</g><g
|
||||
id="g60"><path
|
||||
id="path62"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 348.1,227.4 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g64"><path
|
||||
id="path66"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 328.3,227.4 0,0 z" /></g><g
|
||||
id="g68"><path
|
||||
id="path70"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 368,187.8 0,0 z" /></g><g
|
||||
id="g72"><text
|
||||
id="text74"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,342,200)"><tspan
|
||||
id="tspan76"
|
||||
y="0"
|
||||
x="0">4</tspan></text>
|
||||
</g><g
|
||||
id="g78"><path
|
||||
id="path80"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 236.5,223.8 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g82"><path
|
||||
id="path84"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 216.7,223.8 0,0 z" /></g><g
|
||||
id="g86"><path
|
||||
id="path88"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 256.4,184.2 0,0 z" /></g><g
|
||||
id="g90"><text
|
||||
id="text92"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,230.4,196.4)"><tspan
|
||||
id="tspan94"
|
||||
y="0"
|
||||
x="0">5</tspan></text>
|
||||
</g><g
|
||||
id="g96"><path
|
||||
id="path98"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 200.5,324.6 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g100"><path
|
||||
id="path102"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 180.7,324.6 0,0 z" /></g><g
|
||||
id="g104"><path
|
||||
id="path106"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 220.4,285 0,0 z" /></g><g
|
||||
id="g108"><text
|
||||
id="text110"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,194.4,297.2)"><tspan
|
||||
id="tspan112"
|
||||
y="0"
|
||||
x="0">6</tspan></text>
|
||||
</g><g
|
||||
id="g114"><path
|
||||
id="path116"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 272.5,396.6 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g118"><path
|
||||
id="path120"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 252.7,396.6 0,0 z" /></g><g
|
||||
id="g122"><path
|
||||
id="path124"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 292.4,357 0,0 z" /></g><g
|
||||
id="g126"><text
|
||||
id="text128"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,266.4,369.2)"><tspan
|
||||
id="tspan130"
|
||||
y="0"
|
||||
x="0">2</tspan></text>
|
||||
</g><g
|
||||
id="g132"><path
|
||||
id="path134"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 355.3,429 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g136"><path
|
||||
id="path138"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 335.5,429 0,0 z" /></g><g
|
||||
id="g140"><path
|
||||
id="path142"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 375.2,389.4 0,0 z" /></g><g
|
||||
id="g144"><text
|
||||
id="text146"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,349.2,401.6)"><tspan
|
||||
id="tspan148"
|
||||
y="0"
|
||||
x="0">7</tspan></text>
|
||||
</g><g
|
||||
id="g150"><path
|
||||
id="path152"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 182.5,414.6 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g154"><path
|
||||
id="path156"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 162.7,414.6 0,0 z" /></g><g
|
||||
id="g158"><path
|
||||
id="path160"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 202.4,375 0,0 z" /></g><g
|
||||
id="g162"><text
|
||||
id="text164"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,170.3,387.2)"><tspan
|
||||
id="tspan166"
|
||||
y="0"
|
||||
x="0 12.21">11</tspan></text>
|
||||
</g><g
|
||||
id="g168"><path
|
||||
id="path170"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 103.3,295.8 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g172"><path
|
||||
id="path174"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 83.5,295.8 0,0 z" /></g><g
|
||||
id="g176"><path
|
||||
id="path178"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 123.2,256.2 0,0 z" /></g><g
|
||||
id="g180"><text
|
||||
id="text182"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,91.1,268.4)"><tspan
|
||||
id="tspan184"
|
||||
y="0"
|
||||
x="0 12.21">15</tspan></text>
|
||||
</g><g
|
||||
id="g186"><path
|
||||
id="path188"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 135.7,238.2 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g190"><path
|
||||
id="path192"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 115.9,238.2 0,0 z" /></g><g
|
||||
id="g194"><path
|
||||
id="path196"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 155.6,198.6 0,0 z" /></g><g
|
||||
id="g198"><text
|
||||
id="text200"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,123.5,210.8)"><tspan
|
||||
id="tspan202"
|
||||
y="0"
|
||||
x="0 12.21">10</tspan></text>
|
||||
</g><g
|
||||
id="g204"><path
|
||||
id="path206"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 136.5,137.4 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g208"><path
|
||||
id="path210"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 116.7,137.4 0,0 z" /></g><g
|
||||
id="g212"><path
|
||||
id="path214"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 156.3,97.8 0,0 z" /></g><g
|
||||
id="g216"><text
|
||||
id="text218"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,124.2,110)"><tspan
|
||||
id="tspan220"
|
||||
y="0"
|
||||
x="0 12.276">20</tspan></text>
|
||||
</g><g
|
||||
id="g222"><path
|
||||
id="path224"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 236.5,115.8 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g226"><path
|
||||
id="path228"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 216.7,115.8 0,0 z" /></g><g
|
||||
id="g230"><path
|
||||
id="path232"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 256.4,76.2 0,0 z" /></g><g
|
||||
id="g234"><text
|
||||
id="text236"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,224.3,88.4)"><tspan
|
||||
id="tspan238"
|
||||
y="0"
|
||||
x="0 12.21">14</tspan></text>
|
||||
</g><g
|
||||
id="g240"><path
|
||||
id="path242"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 297.7,137.4 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g244"><path
|
||||
id="path246"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 277.9,137.4 0,0 z" /></g><g
|
||||
id="g248"><path
|
||||
id="path250"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 317.6,97.8 0,0 z" /></g><g
|
||||
id="g252"><text
|
||||
id="text254"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,291.6,110)"><tspan
|
||||
id="tspan256"
|
||||
y="0"
|
||||
x="0">9</tspan></text>
|
||||
</g><g
|
||||
id="g258"><path
|
||||
id="path260"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 402.1,97.8 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g262"><path
|
||||
id="path264"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 382.3,97.8 0,0 z" /></g><g
|
||||
id="g266"><path
|
||||
id="path268"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 422,58.2 0,0 z" /></g><g
|
||||
id="g270"><text
|
||||
id="text272"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,389.9,70.4)"><tspan
|
||||
id="tspan274"
|
||||
y="0"
|
||||
x="0 12.21">19</tspan></text>
|
||||
</g><g
|
||||
id="g276"><path
|
||||
id="path278"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 438.1,252.6 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g280"><path
|
||||
id="path282"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 418.3,252.6 0,0 z" /></g><g
|
||||
id="g284"><path
|
||||
id="path286"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 458,213 0,0 z" /></g><g
|
||||
id="g288"><text
|
||||
id="text290"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,432,225.2)"><tspan
|
||||
id="tspan292"
|
||||
y="0"
|
||||
x="0">8</tspan></text>
|
||||
</g><g
|
||||
id="g294"><path
|
||||
id="path296"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 438.1,414.6 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g298"><path
|
||||
id="path300"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 418.3,414.6 0,0 z" /></g><g
|
||||
id="g302"><path
|
||||
id="path304"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 458,375 0,0 z" /></g><g
|
||||
id="g306"><text
|
||||
id="text308"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,425.9,387.2)"><tspan
|
||||
id="tspan310"
|
||||
y="0"
|
||||
x="0 12.21">12</tspan></text>
|
||||
</g><g
|
||||
id="g312"><path
|
||||
id="path314"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 546.1,421.8 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g316"><path
|
||||
id="path318"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 526.3,421.8 0,0 z" /></g><g
|
||||
id="g320"><path
|
||||
id="path322"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 566,382.2 0,0 z" /></g><g
|
||||
id="g324"><text
|
||||
id="text326"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,533.9,394.4)"><tspan
|
||||
id="tspan328"
|
||||
y="0"
|
||||
x="0 12.21">22</tspan></text>
|
||||
</g><g
|
||||
id="g330"><path
|
||||
id="path332"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 510.1,335.4 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g334"><path
|
||||
id="path336"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 490.3,335.4 0,0 z" /></g><g
|
||||
id="g338"><path
|
||||
id="path340"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 530,295.8 0,0 z" /></g><g
|
||||
id="g342"><text
|
||||
id="text344"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,497.9,308)"><tspan
|
||||
id="tspan346"
|
||||
y="0"
|
||||
x="0 12.21">18</tspan></text>
|
||||
</g><g
|
||||
id="g348"><path
|
||||
id="path350"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 488.5,108.6 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g352"><path
|
||||
id="path354"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 468.7,108.6 0,0 z" /></g><g
|
||||
id="g356"><path
|
||||
id="path358"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 508.4,69 0,0 z" /></g><g
|
||||
id="g360"><text
|
||||
id="text362"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,476.3,81.2)"><tspan
|
||||
id="tspan364"
|
||||
y="0"
|
||||
x="0 12.21">23</tspan></text>
|
||||
</g><g
|
||||
id="g366"><path
|
||||
id="path368"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 452.5,195 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g370"><path
|
||||
id="path372"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 432.7,195 0,0 z" /></g><g
|
||||
id="g374"><path
|
||||
id="path376"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 472.4,155.4 0,0 z" /></g><g
|
||||
id="g378"><text
|
||||
id="text380"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,440.3,167.6)"><tspan
|
||||
id="tspan382"
|
||||
y="0"
|
||||
x="0 12.21">13</tspan></text>
|
||||
</g><g
|
||||
id="g384"><path
|
||||
id="path386"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 160.9,51 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g388"><path
|
||||
id="path390"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 141.1,51 0,0 z" /></g><g
|
||||
id="g392"><path
|
||||
id="path394"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 180.8,11.4 0,0 z" /></g><g
|
||||
id="g396"><text
|
||||
id="text398"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,148.7,23.6)"><tspan
|
||||
id="tspan400"
|
||||
y="0"
|
||||
x="0 12.21">24</tspan></text>
|
||||
</g><g
|
||||
id="g402"><path
|
||||
id="path404"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 309.3,526.2 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g406"><path
|
||||
id="path408"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 289.5,526.2 0,0 z" /></g><g
|
||||
id="g410"><path
|
||||
id="path412"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 329.1,486.6 0,0 z" /></g><g
|
||||
id="g414"><text
|
||||
id="text416"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,297,498.8)"><tspan
|
||||
id="tspan418"
|
||||
y="0"
|
||||
x="0 12.276">17</tspan></text>
|
||||
</g><g
|
||||
id="g420"><path
|
||||
id="path422"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 214.9,483 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g424"><path
|
||||
id="path426"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 195.1,483 0,0 z" /></g><g
|
||||
id="g428"><path
|
||||
id="path430"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 234.8,443.4 0,0 z" /></g><g
|
||||
id="g432"><text
|
||||
id="text434"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,202.7,455.6)"><tspan
|
||||
id="tspan436"
|
||||
y="0"
|
||||
x="0 12.21">16</tspan></text>
|
||||
</g><g
|
||||
id="g438"><path
|
||||
id="path440"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 232.9,565.8 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g442"><path
|
||||
id="path444"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 213.1,565.8 0,0 z" /></g><g
|
||||
id="g446"><path
|
||||
id="path448"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 252.8,526.2 0,0 z" /></g><g
|
||||
id="g450"><text
|
||||
id="text452"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,220.7,538.4)"><tspan
|
||||
id="tspan454"
|
||||
y="0"
|
||||
x="0 12.21">26</tspan></text>
|
||||
</g><g
|
||||
id="g456"><path
|
||||
id="path458"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 85.3,396.6 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g460"><path
|
||||
id="path462"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 65.5,396.6 0,0 z" /></g><g
|
||||
id="g464"><path
|
||||
id="path466"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 105.2,357 0,0 z" /></g><g
|
||||
id="g468"><text
|
||||
id="text470"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,73.1,369.2)"><tspan
|
||||
id="tspan472"
|
||||
y="0"
|
||||
x="0 12.21">21</tspan></text>
|
||||
</g><g
|
||||
id="g474"><path
|
||||
id="path476"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 24.1,331.8 c 11.2,0 19.8,-8.5 19.8,-19.8 0,-11.2 -8.6,-19.8 -19.8,-19.8 -11.2,0 -19.8,8.6 -19.8,19.8 0,11.3 8.6,19.8 19.8,19.8 z" /></g><g
|
||||
id="g478"><path
|
||||
id="path480"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 4.3,331.8 0,0 z" /></g><g
|
||||
id="g482"><path
|
||||
id="path484"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 44,292.2 0,0 z" /></g><g
|
||||
id="g486"><text
|
||||
id="text488"
|
||||
style="font-variant:normal;font-weight:bold;font-size:22px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,11.9,304.4)"><tspan
|
||||
id="tspan490"
|
||||
y="0"
|
||||
x="0 12.21">25</tspan></text>
|
||||
</g><g
|
||||
id="g492"><path
|
||||
id="path494"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 303.2,285 350,313.8" /></g><g
|
||||
id="g496"><path
|
||||
id="path498"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 281.6,299.4 274.4,357" /></g><g
|
||||
id="g500"><path
|
||||
id="path502"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 263.6,281.4 -43.2,18" /></g><g
|
||||
id="g504"><path
|
||||
id="path506"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 270.8,263.4 245.6,220.2" /></g><g
|
||||
id="g508"><path
|
||||
id="path510"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 296,263.4 36,-43.2" /></g><g
|
||||
id="g512"><path
|
||||
id="path514"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 353.6,227.4 18,72" /></g><g
|
||||
id="g516"><path
|
||||
id="path518"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 328.4,205.8 -72,-3.6" /></g><g
|
||||
id="g520"><path
|
||||
id="path522"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 224,220.2 206,285" /></g><g
|
||||
id="g524"><path
|
||||
id="path526"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 206,324.6 50.4,43.2" /></g><g
|
||||
id="g528"><path
|
||||
id="path530"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 292.4,371.4 61.2,-39.6" /></g><g
|
||||
id="g532"><path
|
||||
id="path534"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 360.8,389.4 368,339" /></g><g
|
||||
id="g536"><path
|
||||
id="path538"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 335.6,403.8 -46.8,-18" /></g><g
|
||||
id="g540"><path
|
||||
id="path542"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 252.8,382.2 202.4,393" /></g><g
|
||||
id="g544"><path
|
||||
id="path546"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 195.2,324.6 180.8,375" /></g><g
|
||||
id="g548"><path
|
||||
id="path550"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 184.4,414.6 18,32.4" /></g><g
|
||||
id="g552"><path
|
||||
id="path554"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 267.2,396.6 -36,54" /></g><g
|
||||
id="g556"><path
|
||||
id="path558"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 350,429 -28.8,61.2" /></g><g
|
||||
id="g560"><path
|
||||
id="path562"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 292.4,519 -39.6,25.2" /></g><g
|
||||
id="g564"><path
|
||||
id="path566"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 216.8,483 10.8,43.2" /></g><g
|
||||
id="g568"><path
|
||||
id="path570"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 292.4,497.4 234.8,468.6" /></g><g
|
||||
id="g572"><path
|
||||
id="path574"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 162.1,390.7 -56.9,-8.5" /></g><g
|
||||
id="g576"><path
|
||||
id="path578"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 69.2,367.8 30.3,330.5" /></g><g
|
||||
id="g580"><path
|
||||
id="path582"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 83.6,281.4 40.4,303" /></g><g
|
||||
id="g584"><path
|
||||
id="path586"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 180.8,299.4 123.9,277.8" /></g><g
|
||||
id="g588"><path
|
||||
id="path590"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 101.6,295.8 90.8,357" /></g><g
|
||||
id="g592"><path
|
||||
id="path594"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 123.2,234.6 -14.4,21.6" /></g><g
|
||||
id="g596"><path
|
||||
id="path598"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 148.4,234.6 39.6,54" /></g><g
|
||||
id="g600"><path
|
||||
id="path602"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 152,209.4 64.8,-7.2" /></g><g
|
||||
id="g604"><path
|
||||
id="path606"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 134,198.6 0,-61.2" /></g><g
|
||||
id="g608"><path
|
||||
id="path610"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 238.4,184.2 0,-68.4" /></g><g
|
||||
id="g612"><path
|
||||
id="path614"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 141.2,97.8 152,47.4" /></g><g
|
||||
id="g616"><path
|
||||
id="path618"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 155.6,115.8 61.2,-14.4" /></g><g
|
||||
id="g620"><path
|
||||
id="path622"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 177.2,40.2 54,36" /></g><g
|
||||
id="g624"><path
|
||||
id="path626"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 256.4,97.8 25.2,10.8" /></g><g
|
||||
id="g628"><path
|
||||
id="path630"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 252.8,191.4 32.4,-57.6" /></g><g
|
||||
id="g632"><path
|
||||
id="path634"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 342.8,187.8 -32.4,-54" /></g><g
|
||||
id="g636"><path
|
||||
id="path638"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 382.4,79.8 314,105" /></g><g
|
||||
id="g640"><path
|
||||
id="path642"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 468.8,83.4 422,79.8" /></g><g
|
||||
id="g644"><path
|
||||
id="path646"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 483.2,108.6 461.6,159" /></g><g
|
||||
id="g648"><path
|
||||
id="path650"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 407.6,97.8 440,159" /></g><g
|
||||
id="g652"><path
|
||||
id="path654"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 432.8,180.6 -68.4,18" /></g><g
|
||||
id="g656"><path
|
||||
id="path658"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 450.8,195 -7.2,18" /></g><g
|
||||
id="g660"><path
|
||||
id="path662"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 418.4,231 368,213" /></g><g
|
||||
id="g664"><path
|
||||
id="path666"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 501.2,299.4 -46.8,-54" /></g><g
|
||||
id="g668"><path
|
||||
id="path670"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 386,310.2 46.8,-57.6" /></g><g
|
||||
id="g672"><path
|
||||
id="path674"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 375.2,411 43.2,-10.8" /></g><g
|
||||
id="g676"><path
|
||||
id="path678"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 458,396.6 68.4,3.6" /></g><g
|
||||
id="g680"><path
|
||||
id="path682"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 522.8,328.2 21.6,54" /></g><g
|
||||
id="g684"><path
|
||||
id="path686"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 497.6,331.8 -46.8,46.8" /></g><g
|
||||
id="g688"><path
|
||||
id="path690"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.99979997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 386,331.8 36,50.4" /></g></g></g></g></svg>
|
After Width: | Height: | Size: 49 KiB |
BIN
images/stability.pdf
Normal file
BIN
images/starmesh.png
Normal file
After Width: | Height: | Size: 145 KiB |