diff options
-rw-r--r-- | ebus/webapp/static/console.html | 107 | ||||
-rw-r--r-- | ebus/webapp/static/control.html | 52 | ||||
-rw-r--r-- | ebus/webapp/static/draw.svg | 1052 | ||||
-rw-r--r-- | ebus/webapp/static/src/d3.control.js | 80 |
4 files changed, 858 insertions, 433 deletions
diff --git a/ebus/webapp/static/console.html b/ebus/webapp/static/console.html deleted file mode 100644 index e905c28..0000000 --- a/ebus/webapp/static/console.html +++ /dev/null @@ -1,107 +0,0 @@ -<html> -<head> - <title>Console</title> - <script src="lib/d3-v2.6.1/d3.js" type="text/javascript"></script> - <script src="lib/d3-v2.6.1/d3.time.js" type="text/javascript"></script> - <script src="src/d3.plot.js" type="text/javascript"></script> - <style> - path { - stroke: steelblue; - stroke-width: 2; - fill: none; - } - line { - stroke: black; - } - div.popup { - position: absolute; - border: 2px solid gray; - background-color: #fefefe; - } - div.popup .plot { - margin: 5px; - } - #log { - height: 300px; - overflow-y: scroll; - } - </style> -</head> -<body> -<div id="image"> -</div> -<div id="log"> -</div> -<script> - var mapping = { - "heizkesselWert" : "heizkreisregler10.betriebsdatenRegler1.kesselTemperatur", - "tempkollektorWert" : "heizkreisregler9.solarDaten.tempKollektor", - "boilerWert" : "feuerungsautomat1.betriebsdatenRegler1.boilerTemperatur" - }; - - function process(data) { - for (var i in data) { - var row = data[i]; - var caption = "[" + d3.format("02d")(row.timestamp) + "] " + row.name + " Value: " + row.value_real + " - " + row.value_string; - - d3.select("#log").insert("div", "div").text(caption); - - for (var mapping_element_id in mapping) { - var mapping_sensor_name = mapping[mapping_element_id]; - if (row.name == mapping_sensor_name) { - d3.select(document.getElementById(mapping_element_id)) - .text(""+row.value_real); - } - } - } - } - - function reload(time_stop) { - d3.json("../stream/" + time_stop, function(resp) { - if (resp == null) return; - process(resp.data); - reload(resp.time_stop); - }); - } - - d3.xml("draw.svg", "image/svg+xml", function(xml) { - // Write SVG Data into the DOM - d3.select("#image")[0][0].appendChild(xml.documentElement); - - // Create Popup - for (var mapping_element_id in mapping) { - d3.select(document.getElementById(mapping_element_id)) - .on("click", function() { - var elem = d3.select( this ); - var sensor_name = mapping[elem.attr("id")]; - var popup = d3.select("body") - .append("div") - .classed("popup", true) - .style("top", d3.event.clientY-5) - .style("left", d3.event.clientX-5) - .on("click", function() { - d3.select(this).remove(); - }); - popup.append("div") - .text(sensor_name); - - var startdate = (new Date().getTime()/1000) - 7*60*60*24 - var enddate = (new Date().getTime()/1000) - var plot = d3.plot(popup); - d3.json("../sensor/"+sensor_name+"/" + startdate + "/" + enddate, function(resp) { - var data = resp.data.map(function(d) { - return [new Date(d[0]), d[1]]; - }) - plot.draw(data); - }); - }); - } - - d3.json("../all_values", function(resp) { - process(resp.data); - reload(resp.time_stop); - }); - }); -</script> -</body> -</html> diff --git a/ebus/webapp/static/control.html b/ebus/webapp/static/control.html new file mode 100644 index 0000000..db9e7b8 --- /dev/null +++ b/ebus/webapp/static/control.html @@ -0,0 +1,52 @@ +<html> +<head> + <title>Control Panel</title> + <script src="lib/d3-v2.6.1/d3.js" type="text/javascript"></script> + <script src="lib/d3-v2.6.1/d3.time.js" type="text/javascript"></script> + <script src="src/d3.plot.js" type="text/javascript"></script> + <script src="src/d3.control.js" type="text/javascript"></script> + <style> + path { + stroke: steelblue; + stroke-width: 2; + fill: none; + } + line { + stroke: black; + } + div.popup { + position: absolute; + border: 2px solid gray; + background-color: #fefefe; + } + div.popup .plot { + margin: 5px; + } + </style> +</head> +<body> + <div id="image"></div> + <script type="text/javascript"> + var mapping = { + /* id : { options } */ + "heizkesselWert":{ + type:"text", + sensor:"heizkreisregler10.betriebsdatenRegler1.kesselTemperatur", + range:7*60*60*24*1000 /*7 days*/}, + "tempkollektorWert":{ + type:"text", + sensor:"heizkreisregler9.solarDaten.tempKollektor", + range:7*60*60*24*1000}, + "temperatur_oel":{ + type:"text", + sensor:"feuerungsautomat1.betriebsdatenRegler1.boilerTemperatur", + range:7*60*60*24*1000}, + "temperatur_holz":{ + type:"text", + sensor:"feuerungsautomat1.betriebsdatenRegler1.boilerTemperatur", + range:7*60*60*24*1000}, + }; + var control = d3.control(d3.select("#image"), "draw.svg", mapping); +</script> +</body> +</html> diff --git a/ebus/webapp/static/draw.svg b/ebus/webapp/static/draw.svg index 6a9055c..e3c46b5 100644 --- a/ebus/webapp/static/draw.svg +++ b/ebus/webapp/static/draw.svg @@ -179,66 +179,6 @@ xlink:href="#linearGradient26051" inkscape:collect="always" /> <linearGradient - y2="299.88538" - x2="-953.87994" - y1="448.68289" - x1="-1006.61" - gradientTransform="matrix(0.939411,0,0,1.446184,1125.509,-315.4759)" - gradientUnits="userSpaceOnUse" - id="linearGradient4515" - xlink:href="#linearGradient17250" - inkscape:collect="always" /> - <linearGradient - y2="272.82257" - x2="-1335.0436" - y1="330.19891" - x1="-1308.2009" - gradientTransform="matrix(0.701579,0,0,1.93643,1125.509,-315.4759)" - gradientUnits="userSpaceOnUse" - id="linearGradient4512" - xlink:href="#linearGradient17250" - inkscape:collect="always" /> - <linearGradient - y2="713.54688" - x2="122.41663" - y1="743.14014" - x1="78.645653" - gradientTransform="matrix(1.155963,0,0,0.86508,22.7417,-276.1547)" - gradientUnits="userSpaceOnUse" - id="linearGradient4507" - xlink:href="#linearGradient14625" - inkscape:collect="always" /> - <linearGradient - y2="376.90421" - x2="239.46423" - y1="244.048" - x1="110.44791" - gradientTransform="matrix(0.601918,0,0,1.661356,26.29964,-269.4538)" - gradientUnits="userSpaceOnUse" - id="linearGradient4504" - xlink:href="#linearGradient14625" - inkscape:collect="always" /> - <linearGradient - y2="232.90141" - x2="502.45129" - y1="232.90141" - x1="468.40564" - gradientTransform="matrix(0.606945,0,0,1.647595,0.392598,-250.4193)" - gradientUnits="userSpaceOnUse" - id="linearGradient4501" - xlink:href="#linearGradient26051" - inkscape:collect="always" /> - <linearGradient - y2="500.80176" - x2="323.10443" - y1="256.78357" - x1="9.6549549" - gradientTransform="matrix(0.805965,0,0,1.240749,18.001,-263.9643)" - gradientUnits="userSpaceOnUse" - id="linearGradient4498" - xlink:href="#linearGradient29186" - inkscape:collect="always" /> - <linearGradient y2="832.44" x2="163.65744" y1="927.5675" @@ -259,66 +199,6 @@ xlink:href="#linearGradient13377" inkscape:collect="always" /> <linearGradient - y2="362.15622" - x2="-857.95917" - y1="438.47348" - x1="-916.89685" - gradientTransform="matrix(0.926747,0,0,1.465945,1125.509,-315.4759)" - gradientUnits="userSpaceOnUse" - id="linearGradient4479" - xlink:href="#linearGradient17250" - inkscape:collect="always" /> - <linearGradient - y2="485.78278" - x2="317.13544" - y1="384.39618" - x1="501.40482" - gradientTransform="matrix(0.7951,0,0,1.257703,24.0962,-278.8637)" - gradientUnits="userSpaceOnUse" - id="linearGradient4476" - xlink:href="#linearGradient14625" - inkscape:collect="always" /> - <linearGradient - y2="294.8653" - x2="572.40991" - y1="294.8653" - x1="533.78339" - gradientTransform="matrix(0.602527,0,0,1.659677,0.392598,-252.4511)" - gradientUnits="userSpaceOnUse" - id="linearGradient4473" - xlink:href="#linearGradient26051" - inkscape:collect="always" /> - <linearGradient - y2="306.75836" - x2="-1102.728" - y1="404.58243" - x1="-1131.0251" - gradientTransform="matrix(0.796212,0,0,1.70628,1125.509,-315.4759)" - gradientUnits="userSpaceOnUse" - id="linearGradient4470" - xlink:href="#linearGradient17250" - inkscape:collect="always" /> - <linearGradient - y2="179.97382" - x2="390.31766" - y1="179.97382" - x1="349.43204" - gradientTransform="matrix(0.544121,0,0,1.837828,0.392598,-250.4193)" - gradientUnits="userSpaceOnUse" - id="linearGradient4466" - xlink:href="#linearGradient26051" - inkscape:collect="always" /> - <linearGradient - y2="403.09412" - x2="342.54471" - y1="246.21246" - x1="198.88322" - gradientTransform="matrix(0.683108,0,0,1.463898,22.7417,-283.6045)" - gradientUnits="userSpaceOnUse" - id="linearGradient4463" - xlink:href="#linearGradient14625" - inkscape:collect="always" /> - <linearGradient gradientTransform="translate(-385.82338,59.419123)" gradientUnits="userSpaceOnUse" y2="76.294113" @@ -408,6 +288,378 @@ offset="1" style="stop-color:black;stop-opacity:0;" /> </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient17250" + id="linearGradient3121" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.939411,0,0,1.446184,1125.509,-315.4759)" + x1="-1006.61" + y1="448.68289" + x2="-953.87994" + y2="299.88538" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient29186" + id="linearGradient3123" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.805965,0,0,1.240749,18.001,-263.9643)" + x1="9.6549549" + y1="256.78357" + x2="323.10443" + y2="500.80176" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient17250" + id="linearGradient3125" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.701579,0,0,1.93643,1125.509,-315.4759)" + x1="-1308.2009" + y1="330.19891" + x2="-1335.0436" + y2="272.82257" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient14625" + id="linearGradient3127" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.155963,0,0,0.86508,22.7417,-276.1547)" + x1="78.645653" + y1="743.14014" + x2="122.41663" + y2="713.54688" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient26051" + id="linearGradient3129" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.606945,0,0,1.647595,0.392598,-250.4193)" + x1="468.40564" + y1="232.90141" + x2="502.45129" + y2="232.90141" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient17250" + id="linearGradient3131" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.926747,0,0,1.465945,1125.509,-315.4759)" + x1="-916.89685" + y1="438.47348" + x2="-857.95917" + y2="362.15622" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient14625" + id="linearGradient3133" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7951,0,0,1.257703,24.0962,-278.8637)" + x1="501.40482" + y1="384.39618" + x2="317.13544" + y2="485.78278" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient26051" + id="linearGradient3135" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.602527,0,0,1.659677,0.392598,-252.4511)" + x1="533.78339" + y1="294.8653" + x2="572.40991" + y2="294.8653" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient17250" + id="linearGradient3137" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.796212,0,0,1.70628,1125.509,-315.4759)" + x1="-1131.0251" + y1="404.58243" + x2="-1102.728" + y2="306.75836" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient26051" + id="linearGradient3139" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.544121,0,0,1.837828,0.392598,-250.4193)" + x1="349.43204" + y1="179.97382" + x2="390.31766" + y2="179.97382" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient14625" + id="linearGradient3141" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.683108,0,0,1.463898,22.7417,-283.6045)" + x1="198.88322" + y1="246.21246" + x2="342.54471" + y2="403.09412" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient14625" + id="linearGradient3143" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.601918,0,0,1.661356,26.29964,-269.4538)" + x1="110.44791" + y1="244.048" + x2="239.46423" + y2="376.90421" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient17250-4" + id="linearGradient3121-9" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.939411,0,0,1.446184,1125.509,-315.4759)" + x1="-1006.61" + y1="448.68289" + x2="-953.87994" + y2="299.88538" /> + <linearGradient + id="linearGradient17250-4"> + <stop + style="stop-color:#dc0000;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop17251-7" /> + <stop + style="stop-color:#ffb200;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop17252-8" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient29186-5" + id="linearGradient3123-4" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.805965,0,0,1.240749,18.001,-263.9643)" + x1="9.6549549" + y1="256.78357" + x2="323.10443" + y2="500.80176" /> + <linearGradient + id="linearGradient29186-5"> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop29187-0" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop29188-3" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient17250-4" + id="linearGradient3125-6" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.701579,0,0,1.93643,1125.509,-315.4759)" + x1="-1308.2009" + y1="330.19891" + x2="-1335.0436" + y2="272.82257" /> + <linearGradient + id="linearGradient3985"> + <stop + style="stop-color:#dc0000;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop3987" /> + <stop + style="stop-color:#ffb200;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop3989" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient14625-0" + id="linearGradient3127-1" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.155963,0,0,0.86508,22.7417,-276.1547)" + x1="78.645653" + y1="743.14014" + x2="122.41663" + y2="713.54688" /> + <linearGradient + id="linearGradient14625-0"> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop14626-6" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop14627-3" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient26051-0" + id="linearGradient3129-2" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.606945,0,0,1.647595,0.392598,-250.4193)" + x1="468.40564" + y1="232.90141" + x2="502.45129" + y2="232.90141" /> + <linearGradient + id="linearGradient26051-0"> + <stop + style="stop-color:#ffffff;stop-opacity:0.44927537;" + offset="0.0000000" + id="stop26052-6" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop26053-1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient17250-4" + id="linearGradient3131-5" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.926747,0,0,1.465945,1125.509,-315.4759)" + x1="-916.89685" + y1="438.47348" + x2="-857.95917" + y2="362.15622" /> + <linearGradient + id="linearGradient4000"> + <stop + style="stop-color:#dc0000;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop4002" /> + <stop + style="stop-color:#ffb200;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop4004" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient14625-0" + id="linearGradient3133-5" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7951,0,0,1.257703,24.0962,-278.8637)" + x1="501.40482" + y1="384.39618" + x2="317.13544" + y2="485.78278" /> + <linearGradient + id="linearGradient4007"> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop4009" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4011" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient26051-0" + id="linearGradient3135-4" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.602527,0,0,1.659677,0.392598,-252.4511)" + x1="533.78339" + y1="294.8653" + x2="572.40991" + y2="294.8653" /> + <linearGradient + id="linearGradient4014"> + <stop + style="stop-color:#ffffff;stop-opacity:0.44927537;" + offset="0.0000000" + id="stop4016" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4018" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient17250-4" + id="linearGradient3137-7" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.796212,0,0,1.70628,1125.509,-315.4759)" + x1="-1131.0251" + y1="404.58243" + x2="-1102.728" + y2="306.75836" /> + <linearGradient + id="linearGradient4021"> + <stop + style="stop-color:#dc0000;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop4023" /> + <stop + style="stop-color:#ffb200;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop4025" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient26051-0" + id="linearGradient3139-6" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.544121,0,0,1.837828,0.392598,-250.4193)" + x1="349.43204" + y1="179.97382" + x2="390.31766" + y2="179.97382" /> + <linearGradient + id="linearGradient4028"> + <stop + style="stop-color:#ffffff;stop-opacity:0.44927537;" + offset="0.0000000" + id="stop4030" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4032" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient14625-0" + id="linearGradient3141-5" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.683108,0,0,1.463898,22.7417,-283.6045)" + x1="198.88322" + y1="246.21246" + x2="342.54471" + y2="403.09412" /> + <linearGradient + id="linearGradient4035"> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop4037" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4039" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient14625-0" + id="linearGradient3143-6" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.601918,0,0,1.661356,26.29964,-269.4538)" + x1="110.44791" + y1="244.048" + x2="239.46423" + y2="376.90421" /> + <linearGradient + id="linearGradient4042"> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop4044" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4046" /> + </linearGradient> </defs> <sodipodi:namedview id="base" @@ -416,9 +668,9 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="150.59342" - inkscape:cy="208.20173" + inkscape:zoom="0.98994949" + inkscape:cx="331.61151" + inkscape:cy="140.47805" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" @@ -444,230 +696,378 @@ inkscape:groupmode="layer" id="layer1" transform="translate(0,-699.36011)"> - <rect - style="opacity:0.98000004;fill:#ffffff;fill-opacity:1;stroke:#000000" - id="rect2985-1" - width="77.781746" - height="131.31982" - x="329.81479" - y="902.85754" /> - <rect - style="opacity:0.98000004;fill:#ffffff;fill-opacity:1;stroke:#000000" - id="rect2985" - width="77.781746" - height="131.31982" - x="17.752008" - y="911.11322" /> - <text - xml:space="preserve" - style="font-size:18.44056702px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" - x="14.663156" - y="903.1358" - id="text2987" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan2989" + <g + id="g3954" + transform="translate(320,-11.428544)"> + <rect + y="905.71466" + x="17.752008" + height="131.31982" + width="77.781746" + id="rect2985" + style="opacity:0.98000004;fill:#ffffff;fill-opacity:1;stroke:#000000" /> + <text + sodipodi:linespacing="125%" + id="text2987" + y="903.1358" x="14.663156" - y="903.1358">Heizkessel</tspan></text> - <text - xml:space="preserve" - style="font-size:18.44056702px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" - x="206.36427" - y="743.71051" - id="text2987-8" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan2989-4" - x="206.36427" - y="743.71051">Kollektor: <tspan - style="font-weight:normal;-inkscape-font-specification:Linux Biolinum Slanted O Italic" - id="tempkollektorWert">XXX</tspan> °C</tspan></text> - <path - style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 94.523609,934.34678 105.055861,0 0,-115.15739" - id="path3074" - inkscape:connector-curvature="0" /> - <path - sodipodi:type="arc" - style="opacity:0.98000004;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.58299994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.166, 1.583;stroke-dashoffset:0" - id="path3046" - sodipodi:cx="68.185295" - sodipodi:cy="362.11163" - sodipodi:rx="29.7995" - sodipodi:ry="48.487324" - d="m 97.984795,362.11163 c 0,26.77881 -13.341691,48.48733 -29.7995,48.48733 -16.457809,0 -29.799499,-21.70852 -29.799499,-48.48733 0,-26.77881 13.34169,-48.48732 29.799499,-48.48732 16.457809,0 29.7995,21.70851 29.7995,48.48732 z" - transform="translate(-13.131983,615.4972)" /> - <text - xml:space="preserve" - style="font-size:20.3476944px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" - x="28.318602" - y="981.48914" - id="text2993" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan2995" - y="981.48914" - x="28.318602" - style="display:inline"><tspan - style="font-weight:normal;-inkscape-font-specification:Linux Biolinum Slanted O Italic" - id="heizkesselWert">XXX</tspan> °C</tspan></text> + style="font-size:18.44056702px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" + xml:space="preserve"><tspan + y="903.1358" + x="14.663156" + id="tspan2989" + sodipodi:role="line">Heizkessel</tspan></text> + <text + sodipodi:linespacing="125%" + id="text2993" + y="1035.0605" + x="26.89003" + style="font-size:20.3476944px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" + xml:space="preserve"><tspan + style="display:inline" + x="26.89003" + y="1035.0605" + id="tspan2995" + sodipodi:role="line"><tspan + id="heizkesselWert" + style="font-weight:normal;-inkscape-font-specification:Linux Biolinum Slanted O Italic">XXX</tspan> °C</tspan></text> + </g> <path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 199.00005,234.81215 129.29953,0" + d="m 539.01386,766.31511 -15.01382,0 0,237.83069 -119.00004,0" id="path3058" inkscape:connector-curvature="0" - transform="translate(0,699.36011)" /> - <text - xml:space="preserve" - style="font-size:18.44056702px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" - x="325.99301" - y="898.08942" - id="text2987-9" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan2989-47" + sodipodi:nodetypes="cccc" /> + <g + id="g3095" + transform="translate(-190.71428,-8.5714271)"> + <rect + y="902.85754" + x="329.81479" + height="131.31982" + width="77.781746" + id="rect2985-1" + style="opacity:0.98000004;fill:#ffffff;fill-opacity:1;stroke:#000000" /> + <text + sodipodi:linespacing="125%" + id="text2987-9" + y="898.08942" x="325.99301" - y="898.08942">Ofen/Boiler</tspan></text> - <path - sodipodi:type="arc" - style="opacity:0.98000004;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.58299994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.166, 1.583;stroke-dashoffset:0" - id="path3046-8" - sodipodi:cx="68.185295" - sodipodi:cy="362.11163" - sodipodi:rx="29.7995" - sodipodi:ry="48.487324" - d="m 97.984795,362.11163 c 0,26.77881 -13.341691,48.48733 -29.7995,48.48733 -16.457809,0 -29.799499,-21.70852 -29.799499,-48.48733 0,-26.77881 13.34169,-48.48732 29.799499,-48.48732 16.457809,0 29.7995,21.70851 29.7995,48.48732 z" - transform="matrix(1.0481376,0,0,0.60942325,296.73303,720.89972)" /> - <text - xml:space="preserve" - style="font-size:18.9864254px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" - x="346.35474" - y="946.48315" - id="text3048" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan3050" + style="font-size:18.44056702px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" + xml:space="preserve"><tspan + y="898.08942" + x="325.99301" + id="tspan2989-47" + sodipodi:role="line">Holz</tspan></text> + <path + transform="matrix(1.0481376,0,0,0.60942325,296.73303,720.89972)" + d="m 97.984795,362.11163 c 0,26.77881 -13.341691,48.48733 -29.7995,48.48733 -16.457809,0 -29.799499,-21.70852 -29.799499,-48.48733 0,-26.77881 13.34169,-48.48732 29.799499,-48.48732 16.457809,0 29.7995,21.70851 29.7995,48.48732 z" + sodipodi:ry="48.487324" + sodipodi:rx="29.7995" + sodipodi:cy="362.11163" + sodipodi:cx="68.185295" + id="path3046-8" + style="opacity:0.98000004;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.58299994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.166, 1.583;stroke-dashoffset:0" + sodipodi:type="arc" /> + <text + sodipodi:linespacing="125%" + id="text3048" + y="946.48315" x="346.35474" - y="946.48315"><tspan - style="font-weight:normal;-inkscape-font-specification:Linux Biolinum Slanted O Italic" - id="boilerWert">XX</tspan> °C</tspan></text> - <path - style="opacity:0.98000004;fill:#ffff00;fill-opacity:1;stroke:#ffff00;stroke-width:0.82573485;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.65146976, 0.82573488;stroke-dashoffset:0" - inkscape:transform-center-x="0.98497389" - inkscape:transform-center-y="-1.2124102" - d="m 306.76606,791.91313 -12.1917,-15.84216 9.87347,17.80337 -9.97137,-17.3258 7.41242,18.96052 -7.5731,-18.50027 4.81909,19.77933 -5.03968,-19.34459 2.13976,20.24516 -2.41633,-19.84371 -0.57774,20.34973 0.25013,-19.98872 -3.28494,20.09116 2.91214,-19.77704 -5.93352,19.47405 5.52217,-19.21242 -8.47622,18.50944 8.03367,-18.30497 -10.86765,17.21451 10.40181,-17.07085 -13.06517,15.6124 12.58432,-15.53212 -15.02951,13.73169 14.54226,-13.71621 -16.72567,11.60593 16.2407,-11.65553 -18.12335,9.27305 17.64932,-9.38685 -19.19762,6.77471 18.74299,-6.95068 -19.92931,4.15547 19.50219,-4.39047 -20.30536,1.46208 19.91337,-1.75191 -20.31906,-1.2574 19.9692,0.91791 -19.97017,-3.95445 19.66868,3.57136 -19.26491,-6.58093 19.01717,6.16107 -18.21587,-9.08997 18.0263,8.64084 -16.84175,-11.43681 16.71374,10.96642 -15.16711,-13.57955 15.10294,13.09629 -13.2218,-15.47996 13.22261,14.99246 -11.04055,-17.10413 11.10634,16.62109 -8.66229,-18.42308 8.79186,17.95312 -6.12944,-19.41327 6.32051,18.96477 -3.48722,-20.05703 3.73635,19.638 -0.78276,-20.34287 1.08553,19.96079 1.93566,-20.2657 -1.58468,19.92738 4.61955,-19.82688 -4.22659,19.53836 7.22099,-19.03425 -6.79309,18.80068 9.69358,-17.90195 -9.23837,17.72749 11.99319,-16.45019 -11.51878,16.33797 14.07878,-14.70488 -13.59365,14.65689 15.91313,-12.69715 -15.42593,12.71426 17.46351,-10.46286 -16.98293,10.54474 18.70224,-8.04184 -18.23688,8.18705 19.60725,-5.47732 -19.16538,5.68326 20.16236,-2.81506 -19.75189,3.07806 20.35767,-0.10256 -19.98591,0.41793 20.18969,2.61176 -19.86329,-2.24967 19.66144,5.27949 -19.38622,-4.87711 18.78234,7.85299 -18.56319,-7.41752 17.56804,10.28636 -17.4089,-9.82557 16.04025,12.53617 -15.94394,-12.05828 14.22622,14.56227 -14.19447,-14.07581 z" - id="path3138" - inkscape:connector-curvature="0" /> + style="font-size:18.9864254px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" + xml:space="preserve"><tspan + y="946.48315" + x="346.35474" + id="tspan3050" + sodipodi:role="line"><tspan + id="temperatur_holz" + style="font-weight:normal;-inkscape-font-specification:Linux Biolinum Slanted O Italic">XX</tspan> °C</tspan></text> + <g + id="layer1-5" + inkscape:label="Layer 1" + transform="matrix(0.22131573,0,0,0.22131573,260.27179,946.67008)"> + <g + transform="translate(243.44676,29.294424)" + id="g9278"> + <path + inkscape:connector-curvature="0" + d="m 135.30628,265.02207 c 19.34779,57.177 49.95772,87.4982 104.82457,90.9635 60.35355,19.3477 116.37549,-20.2141 100.49298,-82.3003 -7.21932,13.2835 -11.83968,20.5029 -24.25693,24.2569 4.90915,-34.364 -26.5671,-40.1394 -11.26214,-77.1024 10.68461,-22.813 17.03761,-50.824 -1.73263,-73.63705 -7.79687,25.98955 -17.32637,43.31595 -36.38539,62.37495 2.02141,-31.765 18.77023,-57.46582 8.66318,-87.4982 1.44387,-20.21411 -31.76502,-19.63656 -32.05379,-81.433972 -21.08042,26.56712 -30.03238,47.069994 -26.85588,87.498202 -7.79688,32.63133 -26.85587,44.47107 -23.3906,79.70137 -2.88773,-19.6366 -4.90914,-36.6742 -0.86633,-51.11285 -2.31018,-17.90391 -4.62037,-33.20889 -22.52428,-45.9149 5.48669,22.23552 11.83969,55.73318 -6.93055,64.10755 -5.19791,10.6846 -31.18748,47.3588 -2.59896,104.8246 -8.37441,-4.9091 -16.74884,-6.353 -25.12325,-14.7274 z" + id="path15991" + style="fill:url(#linearGradient3121);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 237.3145,53.086958 c -14.99272,19.6852 -21.35119,44.824274 -19.43988,69.336882 1.42824,11.98691 -4.94471,23.14648 -9.48162,33.85446 -8.34272,15.96187 -15.88957,33.39387 -13.60832,51.83627 -0.65803,10.6267 -5.37917,-0.0876 -4.88201,-5.4325 -2.26101,-15.0353 -3.22798,-30.6271 -0.14386,-45.52138 -1.55449,-14.49363 -5.22591,-30.20475 -17.19431,-39.72998 3.55402,17.20403 8.17212,36.5942 -0.40625,53.03126 -3.07779,5.5067 -9.96235,7.0124 -11.40127,13.6249 -14.44272,25.3005 -15.53094,56.8434 -4.56582,83.6283 2.28194,6.1006 5.25844,11.9243 7.84209,17.903 -8.0473,-4.5949 -16.87846,-7.7132 -24.65625,-12.75 10.77369,31.5464 31.25961,62.5809 63.599,74.8578 12.71752,5.4142 26.58607,6.4191 40.02243,8.5564 29.45045,9.1939 65.99724,3.1529 85.42735,-22.475 11.41608,-14.8269 14.58747,-34.8363 10.70122,-52.9079 -5.14255,10.4007 -14.05368,18.83 -25.5625,21.5 2.648,-13.3531 -1.38352,-26.7154 -8.28212,-38.1368 -7.44722,-12.1869 -9.19816,-27.5924 -3.25495,-40.7594 9.01742,-19.7648 15.83315,-43.6826 5.33139,-64.25316 -3.24996,-9.49614 -5.5378,-3.66685 -7.18432,3.05922 -6.86632,21.12134 -20.73135,39.08884 -36.4225,54.49634 1.08657,-21.5478 8.60459,-41.9354 11.79956,-63.11733 1.82434,-10.79074 -0.2714,-21.61899 -2.53052,-32.06873 -1.53783,-11.74214 -13.77556,-17.76553 -18.93886,-27.820728 -9.20134,-13.3735 -12.2617,-29.995394 -12.79893,-45.961924 -1.32292,1.75 -2.64583,3.5 -3.96875,5.25 z" + id="path29198" + style="fill:url(#linearGradient3123);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 234.06662,347.32237 c -45.91489,-48.5139 -53.71176,-82.3003 -23.3906,-114.3541 34.0752,-60.6423 25.70078,-98.76034 0.86632,-135.145718 23.3906,80.567618 -27.72221,132.546718 -44.18226,155.937318 -9.81827,-30.3211 -1.44387,-43.3159 12.12847,-80.5676 -26.56712,28.8773 -42.73841,63.8188 -32.92012,97.0277 17.90392,49.9577 60.06476,60.9311 87.49819,77.1024 z" + id="path15990" + style="fill:url(#linearGradient3125);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 289.78874,164.02436 c -6.15481,-17.90098 -1.13221,-21.73459 4.25922,-29.55503 5.56163,-2.16613 3.85697,-9.71866 6.89186,-26.53845 4.59515,18.77349 16.93135,27.30949 -11.15108,56.09348 z" + id="path15994" + style="fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 137.41874,341.68107 26.98534,-14.8972 22.07902,17.6818 -5.38874,9.1479 -13.84243,5.939 -29.83319,-17.8715 z" + id="path24159" + style="fill:url(#linearGradient3127);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 296.70508,104.9869 c -1.8714,7.98026 -1.0254,16.77505 -4.5,24.21875 -8.14108,6.21937 -11.69097,17.77603 -8.12116,27.5835 1.10834,8.21993 3.67934,9.63805 8.23707,2.13192 9.73188,-10.01426 18.83749,-24.36261 13.29618,-38.71175 -2.50026,-7.31882 -4.68961,-14.74903 -7.47459,-21.972418 -0.47917,2.249998 -0.95833,4.499998 -1.4375,6.749998 z" + id="path28563" + style="fill:url(#linearGradient3129);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 329.36169,273.68527 c 15.88251,-15.305 12.70601,-21.9468 11.26214,-32.9201 -4.62036,-5.1979 1.15509,-12.1285 6.93055,-31.1875 -14.72742,17.0376 -32.0538,19.3478 -18.19269,64.1076 z" + id="path15993" + style="fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 254.85827,347.32237 c 17.90392,-10.1071 22.81305,-41.8721 25.12325,-77.1024 4.33159,-34.0752 12.99478,-68.1504 70.17182,-73.6371 -23.39062,18.7703 -42.44962,41.8721 -33.78644,84.8993 -2.31018,62.6637 -48.80262,60.3535 -61.50863,65.8402 z" + id="path15992" + style="fill:url(#linearGradient3131);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 343.565,191.60497 c -24.38123,3.4569 -49.51237,18.1046 -56.66827,42.9832 -11.48365,31.097 -5.13799,66.4903 -20.80048,96.3606 -5.94812,2.585 -4.49399,13.6743 2.85181,11.5046 21.51646,-3.9012 41.93765,-18.849 47.38887,-40.7861 5.2576,-15.2337 2.27636,-31.3498 1.71705,-46.9973 0.71542,-22.6934 13.85513,-43.1578 31.10477,-57.1587 3.01956,-4.349 -2.01656,-5.8119 -5.59375,-5.9063 z" + id="path26056" + style="fill:url(#linearGradient3133);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 343.86133,203.48637 c -9.82497,10.4001 -24.0785,20.1331 -23.73462,36.1235 -0.72619,11.4565 3.35351,22.3796 5.89087,33.3765 8.52867,-8.1385 18.22308,-18.74 15.09898,-31.5746 -0.0222,-5.6554 -4.28458,-10.6025 -0.93838,-16.1128 3.2139,-8.7256 6.57589,-17.4081 8.80815,-26.4688 -1.70833,1.5521 -3.41667,3.1042 -5.125,4.6562 z" + id="path28562" + style="fill:url(#linearGradient3135);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 223.6708,323.93177 c -2.31019,-27.7222 -5.48669,-47.6476 29.45484,-72.7708 59.19844,-41.2945 30.03238,-65.2627 -6.93055,-108.28985 10.97337,42.73835 -6.64178,76.81355 -21.65798,99.62665 -9.81827,14.1499 -43.89347,43.0272 -0.86631,81.434 z" + id="path15989" + style="fill:url(#linearGradient3137);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 201.08933,120.58171 c 15.98844,-18.41045 11.88217,-25.988498 9.27078,-38.664238 -5.5549,-5.843464 0.13128,-14.122384 4.68167,-36.476504 -14.55919,20.37399 -33.34836,23.76285 -13.95245,75.140742 z" + id="path15995" + style="fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 211.20508,41.518148 c -9.30969,12.17423 -23.42746,23.40799 -22.6875,40.281254 -0.10028,14.02936 5.4291,27.118428 9.5625,40.281248 8.44026,-9.6347 17.42012,-21.86984 13.66358,-35.446138 0.0257,-5.37156 -3.737,-9.541874 -3.84544,-14.615204 2.05688,-11.97534 6.31265,-23.54307 7.99436,-35.62616 -1.5625,1.70833 -3.125,3.41667 -4.6875,5.125 z" + id="path28564" + style="fill:url(#linearGradient3139);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 245.30425,135.70802 c 6.40508,29.13536 -0.19164,59.82845 -14.93562,85.42475 -9.15363,17.5973 -27.2009,31.0743 -28.92062,52.011 -2.7585,18.2445 10.38732,33.4514 22.56898,45.241 4.96184,6.239 0.70889,-8.5105 1.38422,-11.9632 -1.97971,-17.9487 1.09873,-38.0878 15.5825,-50.3998 16.12514,-15.6874 39.12358,-26.5619 46.8475,-49.1093 5.22432,-19.9129 -8.69668,-37.76184 -20.83869,-51.90179 -7.32268,-8.88533 -15.04301,-17.40614 -22.71952,-25.99016 0.34375,2.22917 0.6875,4.45833 1.03125,6.6875 z" + id="path26055" + style="fill:url(#linearGradient3141);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 216.20594,109.85866 c 0.63387,13.77775 4.55106,27.42117 2.75732,41.32831 -1.5823,32.4669 -15.84784,62.9987 -35.54194,88.4141 -3.65343,5.1912 -7.54448,10.2093 -11.30913,15.3201 -5.03417,-16.7728 -2.76155,-34.8581 4.01864,-50.7747 3.57049,-8.5047 6.07648,-17.3319 7.38761,-26.47531 -18.82095,17.16941 -32.10356,40.57371 -36.78125,65.62501 -3.79164,23.1694 4.35914,46.9902 19.73048,64.403 19.32727,22.8014 47.11664,35.6135 74.05077,47.0657 -15.26216,-21.468 -36.50831,-40.8391 -41.02033,-67.9622 -3.09495,-15.7494 3.10673,-31.5567 13.44976,-43.3319 11.83939,-16.266 19.21325,-35.6153 23.59367,-55.1462 5.68892,-25.43627 1.12856,-52.93969 -12.7731,-74.99716 -3.43037,-2.50771 -9.55995,-15.684492 -7.5625,-3.46875 z" + id="path26054" + style="fill:url(#linearGradient3143);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + </g> + </g> <g - transform="matrix(0.22131573,0,0,0.22131573,260.27179,946.67008)" - inkscape:label="Layer 1" - id="layer1-5"> + id="g3084" + transform="translate(389.28571,-8.5714286)"> + <text + sodipodi:linespacing="125%" + id="text2987-8" + y="743.71051" + x="206.36427" + style="font-size:18.44056702px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" + xml:space="preserve"><tspan + y="743.71051" + x="206.36427" + id="tspan2989-4" + sodipodi:role="line">Kollektor: <tspan + id="tempkollektorWert" + style="font-weight:normal;-inkscape-font-specification:Linux Biolinum Slanted O Italic">XXX</tspan> °C</tspan></text> + <path + inkscape:connector-curvature="0" + id="path3138" + d="m 306.76606,791.91313 -12.1917,-15.84216 9.87347,17.80337 -9.97137,-17.3258 7.41242,18.96052 -7.5731,-18.50027 4.81909,19.77933 -5.03968,-19.34459 2.13976,20.24516 -2.41633,-19.84371 -0.57774,20.34973 0.25013,-19.98872 -3.28494,20.09116 2.91214,-19.77704 -5.93352,19.47405 5.52217,-19.21242 -8.47622,18.50944 8.03367,-18.30497 -10.86765,17.21451 10.40181,-17.07085 -13.06517,15.6124 12.58432,-15.53212 -15.02951,13.73169 14.54226,-13.71621 -16.72567,11.60593 16.2407,-11.65553 -18.12335,9.27305 17.64932,-9.38685 -19.19762,6.77471 18.74299,-6.95068 -19.92931,4.15547 19.50219,-4.39047 -20.30536,1.46208 19.91337,-1.75191 -20.31906,-1.2574 19.9692,0.91791 -19.97017,-3.95445 19.66868,3.57136 -19.26491,-6.58093 19.01717,6.16107 -18.21587,-9.08997 18.0263,8.64084 -16.84175,-11.43681 16.71374,10.96642 -15.16711,-13.57955 15.10294,13.09629 -13.2218,-15.47996 13.22261,14.99246 -11.04055,-17.10413 11.10634,16.62109 -8.66229,-18.42308 8.79186,17.95312 -6.12944,-19.41327 6.32051,18.96477 -3.48722,-20.05703 3.73635,19.638 -0.78276,-20.34287 1.08553,19.96079 1.93566,-20.2657 -1.58468,19.92738 4.61955,-19.82688 -4.22659,19.53836 7.22099,-19.03425 -6.79309,18.80068 9.69358,-17.90195 -9.23837,17.72749 11.99319,-16.45019 -11.51878,16.33797 14.07878,-14.70488 -13.59365,14.65689 15.91313,-12.69715 -15.42593,12.71426 17.46351,-10.46286 -16.98293,10.54474 18.70224,-8.04184 -18.23688,8.18705 19.60725,-5.47732 -19.16538,5.68326 20.16236,-2.81506 -19.75189,3.07806 20.35767,-0.10256 -19.98591,0.41793 20.18969,2.61176 -19.86329,-2.24967 19.66144,5.27949 -19.38622,-4.87711 18.78234,7.85299 -18.56319,-7.41752 17.56804,10.28636 -17.4089,-9.82557 16.04025,12.53617 -15.94394,-12.05828 14.22622,14.56227 -14.19447,-14.07581 z" + inkscape:transform-center-y="-1.2124102" + inkscape:transform-center-x="0.98497389" + style="opacity:0.98000004;fill:#ffff00;fill-opacity:1;stroke:#ffff00;stroke-width:0.82573485;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.65146976, 0.82573488;stroke-dashoffset:0" /> <g - id="g9278" - transform="translate(243.44676,29.294424)"> - <path - style="fill:url(#linearGradient4515);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" - id="path15991" - d="m 135.30628,265.02207 c 19.34779,57.177 49.95772,87.4982 104.82457,90.9635 60.35355,19.3477 116.37549,-20.2141 100.49298,-82.3003 -7.21932,13.2835 -11.83968,20.5029 -24.25693,24.2569 4.90915,-34.364 -26.5671,-40.1394 -11.26214,-77.1024 10.68461,-22.813 17.03761,-50.824 -1.73263,-73.63705 -7.79687,25.98955 -17.32637,43.31595 -36.38539,62.37495 2.02141,-31.765 18.77023,-57.46582 8.66318,-87.4982 1.44387,-20.21411 -31.76502,-19.63656 -32.05379,-81.433972 -21.08042,26.56712 -30.03238,47.069994 -26.85588,87.498202 -7.79688,32.63133 -26.85587,44.47107 -23.3906,79.70137 -2.88773,-19.6366 -4.90914,-36.6742 -0.86633,-51.11285 -2.31018,-17.90391 -4.62037,-33.20889 -22.52428,-45.9149 5.48669,22.23552 11.83969,55.73318 -6.93055,64.10755 -5.19791,10.6846 -31.18748,47.3588 -2.59896,104.8246 -8.37441,-4.9091 -16.74884,-6.353 -25.12325,-14.7274 z" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient4498);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path29198" - d="m 237.3145,53.086958 c -14.99272,19.6852 -21.35119,44.824274 -19.43988,69.336882 1.42824,11.98691 -4.94471,23.14648 -9.48162,33.85446 -8.34272,15.96187 -15.88957,33.39387 -13.60832,51.83627 -0.65803,10.6267 -5.37917,-0.0876 -4.88201,-5.4325 -2.26101,-15.0353 -3.22798,-30.6271 -0.14386,-45.52138 -1.55449,-14.49363 -5.22591,-30.20475 -17.19431,-39.72998 3.55402,17.20403 8.17212,36.5942 -0.40625,53.03126 -3.07779,5.5067 -9.96235,7.0124 -11.40127,13.6249 -14.44272,25.3005 -15.53094,56.8434 -4.56582,83.6283 2.28194,6.1006 5.25844,11.9243 7.84209,17.903 -8.0473,-4.5949 -16.87846,-7.7132 -24.65625,-12.75 10.77369,31.5464 31.25961,62.5809 63.599,74.8578 12.71752,5.4142 26.58607,6.4191 40.02243,8.5564 29.45045,9.1939 65.99724,3.1529 85.42735,-22.475 11.41608,-14.8269 14.58747,-34.8363 10.70122,-52.9079 -5.14255,10.4007 -14.05368,18.83 -25.5625,21.5 2.648,-13.3531 -1.38352,-26.7154 -8.28212,-38.1368 -7.44722,-12.1869 -9.19816,-27.5924 -3.25495,-40.7594 9.01742,-19.7648 15.83315,-43.6826 5.33139,-64.25316 -3.24996,-9.49614 -5.5378,-3.66685 -7.18432,3.05922 -6.86632,21.12134 -20.73135,39.08884 -36.4225,54.49634 1.08657,-21.5478 8.60459,-41.9354 11.79956,-63.11733 1.82434,-10.79074 -0.2714,-21.61899 -2.53052,-32.06873 -1.53783,-11.74214 -13.77556,-17.76553 -18.93886,-27.820728 -9.20134,-13.3735 -12.2617,-29.995394 -12.79893,-45.961924 -1.32292,1.75 -2.64583,3.5 -3.96875,5.25 z" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient4512);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" - id="path15990" - d="m 234.06662,347.32237 c -45.91489,-48.5139 -53.71176,-82.3003 -23.3906,-114.3541 34.0752,-60.6423 25.70078,-98.76034 0.86632,-135.145718 23.3906,80.567618 -27.72221,132.546718 -44.18226,155.937318 -9.81827,-30.3211 -1.44387,-43.3159 12.12847,-80.5676 -26.56712,28.8773 -42.73841,63.8188 -32.92012,97.0277 17.90392,49.9577 60.06476,60.9311 87.49819,77.1024 z" - inkscape:connector-curvature="0" /> - <path - style="fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" - id="path15994" - d="m 289.78874,164.02436 c -6.15481,-17.90098 -1.13221,-21.73459 4.25922,-29.55503 5.56163,-2.16613 3.85697,-9.71866 6.89186,-26.53845 4.59515,18.77349 16.93135,27.30949 -11.15108,56.09348 z" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient4507);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path24159" - d="m 137.41874,341.68107 26.98534,-14.8972 22.07902,17.6818 -5.38874,9.1479 -13.84243,5.939 -29.83319,-17.8715 z" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient4501);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path28563" - d="m 296.70508,104.9869 c -1.8714,7.98026 -1.0254,16.77505 -4.5,24.21875 -8.14108,6.21937 -11.69097,17.77603 -8.12116,27.5835 1.10834,8.21993 3.67934,9.63805 8.23707,2.13192 9.73188,-10.01426 18.83749,-24.36261 13.29618,-38.71175 -2.50026,-7.31882 -4.68961,-14.74903 -7.47459,-21.972418 -0.47917,2.249998 -0.95833,4.499998 -1.4375,6.749998 z" - inkscape:connector-curvature="0" /> - <path - style="fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" - id="path15993" - d="m 329.36169,273.68527 c 15.88251,-15.305 12.70601,-21.9468 11.26214,-32.9201 -4.62036,-5.1979 1.15509,-12.1285 6.93055,-31.1875 -14.72742,17.0376 -32.0538,19.3478 -18.19269,64.1076 z" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient4479);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" - id="path15992" - d="m 254.85827,347.32237 c 17.90392,-10.1071 22.81305,-41.8721 25.12325,-77.1024 4.33159,-34.0752 12.99478,-68.1504 70.17182,-73.6371 -23.39062,18.7703 -42.44962,41.8721 -33.78644,84.8993 -2.31018,62.6637 -48.80262,60.3535 -61.50863,65.8402 z" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient4476);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path26056" - d="m 343.565,191.60497 c -24.38123,3.4569 -49.51237,18.1046 -56.66827,42.9832 -11.48365,31.097 -5.13799,66.4903 -20.80048,96.3606 -5.94812,2.585 -4.49399,13.6743 2.85181,11.5046 21.51646,-3.9012 41.93765,-18.849 47.38887,-40.7861 5.2576,-15.2337 2.27636,-31.3498 1.71705,-46.9973 0.71542,-22.6934 13.85513,-43.1578 31.10477,-57.1587 3.01956,-4.349 -2.01656,-5.8119 -5.59375,-5.9063 z" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient4473);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path28562" - d="m 343.86133,203.48637 c -9.82497,10.4001 -24.0785,20.1331 -23.73462,36.1235 -0.72619,11.4565 3.35351,22.3796 5.89087,33.3765 8.52867,-8.1385 18.22308,-18.74 15.09898,-31.5746 -0.0222,-5.6554 -4.28458,-10.6025 -0.93838,-16.1128 3.2139,-8.7256 6.57589,-17.4081 8.80815,-26.4688 -1.70833,1.5521 -3.41667,3.1042 -5.125,4.6562 z" - inkscape:connector-curvature="0" /> + transform="translate(338.59482,84.506185)" + id="g3254"> <path - style="fill:url(#linearGradient4470);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" - id="path15989" - d="m 223.6708,323.93177 c -2.31019,-27.7222 -5.48669,-47.6476 29.45484,-72.7708 59.19844,-41.2945 30.03238,-65.2627 -6.93055,-108.28985 10.97337,42.73835 -6.64178,76.81355 -21.65798,99.62665 -9.81827,14.1499 -43.89347,43.0272 -0.86631,81.434 z" - inkscape:connector-curvature="0" /> + sodipodi:nodetypes="ssssscssccsssssssssssscsssssccssssssscsscsssssssssscccccsssc" + inkscape:connector-curvature="0" + id="path3262" + d="m -141.64871,731.31997 c -22.71912,-19.44593 -41.57543,-35.35622 -41.90292,-35.35622 -0.32748,0 -1.38939,-0.93725 -2.35979,-2.08277 -0.9704,-1.14552 -7.90154,-7.32971 -15.40255,-13.74263 -7.501,-6.41292 -13.63819,-11.94371 -13.63819,-12.29064 0,-0.88187 32.94299,-40.77529 33.63762,-40.7346 0.31135,0.0182 2.09744,1.36979 3.96908,3.00344 3.28207,2.86475 3.35476,3.04536 2.04582,5.08275 -1.35586,2.11043 -1.3229,2.14175 34.24589,32.54236 17.1942,14.70863 2.10006,2.23702 49.76002,42.17705 3.337624,3.54064 12.833354,11.65568 13.638778,11.65568 0.374084,0 1.368139,-0.635 2.209022,-1.41111 1.415168,-1.30616 1.790534,-1.19664 5.047204,1.4725 1.935081,1.58598 3.518332,3.2382 3.518332,3.6716 0,0.60316 -27.142705,34.25352 -32.452888,40.2337 -0.798338,0.89908 -9.597358,-6.21682 -42.315428,-34.22111 z m 55.643272,1.80366 c 3.369577,-4.09088 6.031292,-7.52437 5.914922,-7.62997 -0.116371,-0.1056 -3.134056,-2.6544 -6.705963,-5.66399 -3.571906,-3.00959 -7.468532,-6.32401 -8.659167,-7.36537 -18.785954,-16.43073 -83.388544,-71.25434 -83.964104,-71.25434 -0.428,0 -3.79888,3.63115 -7.49085,8.06923 l -6.71267,8.06923 2.99805,2.74906 c 6.28446,5.76252 25.34774,22.23643 27.19665,23.50251 1.06397,0.72858 7.73348,6.34831 14.82114,12.48828 45.0405,39.01819 54.37458,46.69552 55.42343,45.58612 0.578623,-0.61204 3.808977,-4.45988 7.178562,-8.55076 z m -6.845773,-7.63839 -5.621765,-4.84248 -1.594264,2.23206 c -2.83332,3.96681 -9.24307,2.0621 -9.24307,-2.74664 0,-1.96694 1.60967,-4.36691 3.25883,-4.85882 0.60173,-0.17948 -3.00265,-3.81087 -8.00973,-8.06975 -5.00708,-4.25888 -9.10377,-7.19989 -9.10377,-6.53558 0,3.85753 -6.76833,5.48036 -9.04303,2.16822 -1.84953,-2.69305 -1.69925,-3.94115 0.77882,-6.46847 l 2.1268,-2.16906 -8.81055,-7.52721 c -8.35729,-7.13998 -8.84757,-7.42514 -9.53022,-5.54308 -0.8623,2.37734 -2.17164,3.32697 -4.61231,3.34516 -4.31354,0.0322 -6.32588,-6.65891 -2.76722,-9.20103 1.16504,-0.83225 1.58826,-1.65868 1.0824,-2.11364 -0.45686,-0.41089 -3.72549,-3.24889 -7.26362,-6.30667 -6.03575,-5.21631 -6.4753,-5.4429 -7.11851,-3.66958 -0.37705,1.03952 -1.65513,2.34058 -2.84017,2.89126 -4.9528,2.30149 -9.04335,-5.04194 -4.84885,-8.70476 1.6688,-1.45726 1.60964,-1.57837 -2.69206,-5.51089 -4.33567,-3.96356 -4.37391,-4.0434 -2.68305,-5.60092 1.67653,-1.54433 2.77013,-0.6785 48.36917,38.2949 25.65962,21.93122 47.175072,40.37583 47.812101,40.98803 0.963913,0.92633 0.96529,1.42821 0.0078,2.99122 -0.632534,1.03298 -1.348578,1.86061 -1.591208,1.83918 -0.24263,-0.0215 -2.970934,-2.21808 -6.062915,-4.88145 z m -36.808149,23.46605 c -0.29434,-0.48572 -0.12251,-0.88313 0.38185,-0.88313 0.50437,0 0.91703,0.39741 0.91703,0.88313 0,0.48572 -0.17183,0.88312 -0.38185,0.88312 -0.21002,0 -0.62268,-0.3974 -0.91703,-0.88312 z" + style="fill:#cacaca" /> <path - style="fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" - id="path15995" - d="m 201.08933,120.58171 c 15.98844,-18.41045 11.88217,-25.988498 9.27078,-38.664238 -5.5549,-5.843464 0.13128,-14.122384 4.68167,-36.476504 -14.55919,20.37399 -33.34836,23.76285 -13.95245,75.140742 z" - inkscape:connector-curvature="0" /> + sodipodi:nodetypes="ccscscscssscccssscsccssscsscccccscssssssscsssscccsssssssscssscsssss" + inkscape:connector-curvature="0" + id="path3260" + d="m -141.70294,730.79802 c -19.70363,-14.08884 -39.13144,-33.87071 -55.75597,-47.91474 -6.52563,-5.49424 -13.14755,-11.1008 -14.71536,-12.45902 l -2.85057,-2.46949 16.61467,-20.21663 c 9.13806,-11.11914 16.69487,-20.32309 16.79289,-20.45321 0.098,-0.13012 1.7884,1.2608 3.7564,3.09094 l 3.57817,3.32752 -9.94372,11.87508 c -5.46905,6.53129 -9.94372,11.95688 -9.94372,12.05686 0,0.1 5.57145,4.93405 12.381,10.74237 6.80956,5.80833 13.49072,11.60947 14.84703,12.89144 26.78141,21.10707 22.69793,19.28577 46.45645,39.59158 l 26.492029,22.6407 9.697878,-11.84664 c 5.333839,-6.51565 10.005573,-11.84664 10.381649,-11.84664 0.376067,0 2.105823,1.29157 3.843891,2.87016 l 3.160128,2.87016 -16.400307,19.85766 c -9.020177,10.92171 -16.709328,19.94057 -17.087018,20.04191 -0.37767,0.10135 -18.96517,-15.49116 -41.30552,-34.65001 z m 56.268003,14.46643 c 8.061849,-9.79926 14.937938,-18.28594 15.280192,-18.85928 0.352246,-0.59009 -0.262676,-1.89033 -1.417082,-2.99639 l -2.039355,-1.95396 -9.745494,11.7612 c -5.360025,6.46867 -10.222295,11.71497 -10.805048,11.65847 -0.582753,-0.0565 -16.544136,-13.36963 -35.469746,-29.58471 -18.94546,-13.73014 -37.5743,-32.11549 -53.48048,-45.78046 l -13.62042,-11.67063 9.94399,-12.04378 9.944,-12.04379 -2.19523,-2.23168 c -1.43393,-1.45773 -2.41119,-1.89629 -2.81795,-1.26459 -0.3425,0.53189 -7.40344,9.19475 -15.69099,19.25079 -8.28755,10.05604 -14.71698,18.59076 -14.28763,18.96604 0.42936,0.37529 5.65143,4.84671 11.60461,9.9365 5.95318,5.08979 18.03271,15.42525 26.84342,22.96768 56.51704,48.38165 72.22034,61.70544 72.72547,61.70544 0.3134,0 7.165885,-8.01758 15.227743,-17.81685 z m -7.855917,-20.58612 c -2.857526,-2.64073 -5.445508,-4.81682 -5.751064,-4.83576 -0.305565,-0.0189 -0.798575,0.95304 -1.095582,2.15994 -0.61291,2.49054 -4.28466,3.8934 -6.49261,2.48061 -0.75973,-0.48613 -1.76306,-1.97694 -2.22962,-3.31291 -0.73489,-2.1043 -0.53626,-2.70279 1.48574,-4.4766 l 2.33403,-2.04754 -8.8211,-7.57633 -8.8211,-7.57634 -1.12922,2.19802 c -2.56146,4.98588 -9.24388,3.01172 -8.70422,-2.57147 0.16368,-1.69349 0.94934,-3.02345 2.1421,-3.62616 1.7596,-0.88914 1.26079,-1.48573 -7.57677,-9.06202 -7.2849,-6.24522 -9.46038,-7.71108 -9.46038,-6.37449 0,2.27319 -3.71861,4.74263 -6.01994,3.9977 -3.90318,-1.26344 -4.44878,-7.77734 -0.76774,-9.1661 1.62055,-0.6114 0.97197,-1.42003 -5.92672,-7.38933 l -7.74641,-6.7028 -0.95129,2.57037 c -0.80454,2.17381 -1.42577,2.57036 -4.02676,2.57036 -4.95501,0 -6.78966,-5.7403 -2.70668,-8.46874 l 2.16155,-1.44445 -4.32634,-3.58926 c -4.4612,-3.70114 -5.1153,-5.04226 -3.23534,-6.63349 0.99717,-0.84403 17.71344,13.13391 94.466073,78.99136 2.027856,1.74 2.280608,2.35424 1.409323,3.42494 -1.653165,2.03152 -2.643601,1.60452 -8.20993,-3.53951 z" + style="fill:#084af1" /> <path - style="fill:url(#linearGradient4466);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path28564" - d="m 211.20508,41.518148 c -9.30969,12.17423 -23.42746,23.40799 -22.6875,40.281254 -0.10028,14.02936 5.4291,27.118428 9.5625,40.281248 8.44026,-9.6347 17.42012,-21.86984 13.66358,-35.446138 0.0257,-5.37156 -3.737,-9.541874 -3.84544,-14.615204 2.05688,-11.97534 6.31265,-23.54307 7.99436,-35.62616 -1.5625,1.70833 -3.125,3.41667 -4.6875,5.125 z" - inkscape:connector-curvature="0" /> + sodipodi:nodetypes="ccscscscssscccssscsccssscsscccccscssssssscsssscccsssssssscssscsssssssssssssssssssssss" + inkscape:connector-curvature="0" + id="path3258" + d="m -141.70294,730.79802 c -19.70363,-14.08884 -39.13144,-33.87071 -55.75597,-47.91474 -6.52563,-5.49424 -13.14755,-11.1008 -14.71536,-12.45902 l -2.85057,-2.46949 16.61467,-20.21663 c 9.13806,-11.11914 16.69487,-20.32309 16.79289,-20.45321 0.098,-0.13012 1.7884,1.2608 3.7564,3.09094 l 3.57817,3.32752 -9.94372,11.87508 c -5.46905,6.53129 -9.94372,11.95688 -9.94372,12.05686 0,0.1 5.57145,4.93405 12.381,10.74237 6.80956,5.80833 13.49072,11.60947 14.84703,12.89144 26.78141,21.10707 22.69793,19.28577 46.45645,39.59158 l 26.492029,22.6407 9.697878,-11.84664 c 5.333839,-6.51565 10.005573,-11.84664 10.381649,-11.84664 0.376067,0 2.105823,1.29157 3.843891,2.87016 l 3.160128,2.87016 -16.400307,19.85766 c -9.020177,10.92171 -16.709328,19.94057 -17.087018,20.04191 -0.37767,0.10135 -18.96517,-15.49116 -41.30552,-34.65001 z m 56.268003,14.46643 c 8.061849,-9.79926 14.937938,-18.28594 15.280192,-18.85928 0.352246,-0.59009 -0.262676,-1.89033 -1.417082,-2.99639 l -2.039355,-1.95396 -9.745494,11.7612 c -5.360025,6.46867 -10.222295,11.71497 -10.805048,11.65847 -0.582753,-0.0565 -16.544136,-13.36963 -35.469746,-29.58471 -18.94546,-13.73014 -37.5743,-32.11549 -53.48048,-45.78046 l -13.62042,-11.67063 9.94399,-12.04378 9.944,-12.04379 -2.19523,-2.23168 c -1.43393,-1.45773 -2.41119,-1.89629 -2.81795,-1.26459 -0.3425,0.53189 -7.40344,9.19475 -15.69099,19.25079 -8.28755,10.05604 -14.71698,18.59076 -14.28763,18.96604 0.42936,0.37529 5.65143,4.84671 11.60461,9.9365 5.95318,5.08979 18.03271,15.42525 26.84342,22.96768 56.51704,48.38165 72.22034,61.70544 72.72547,61.70544 0.3134,0 7.165885,-8.01758 15.227743,-17.81685 z m -7.855917,-20.58612 c -2.857526,-2.64073 -5.445508,-4.81682 -5.751064,-4.83576 -0.305565,-0.0189 -0.798575,0.95304 -1.095582,2.15994 -0.61291,2.49054 -4.28466,3.8934 -6.49261,2.48061 -0.75973,-0.48613 -1.76306,-1.97694 -2.22962,-3.31291 -0.73489,-2.1043 -0.53626,-2.70279 1.48574,-4.4766 l 2.33403,-2.04754 -8.8211,-7.57633 -8.8211,-7.57634 -1.12922,2.19802 c -2.56146,4.98588 -9.24388,3.01172 -8.70422,-2.57147 0.16368,-1.69349 0.94934,-3.02345 2.1421,-3.62616 1.7596,-0.88914 1.26079,-1.48573 -7.57677,-9.06202 -7.2849,-6.24522 -9.46038,-7.71108 -9.46038,-6.37449 0,2.27319 -3.71861,4.74263 -6.01994,3.9977 -3.90318,-1.26344 -4.44878,-7.77734 -0.76774,-9.1661 1.62055,-0.6114 0.97197,-1.42003 -5.92672,-7.38933 l -7.74641,-6.7028 -0.95129,2.57037 c -0.80454,2.17381 -1.42577,2.57036 -4.02676,2.57036 -4.95501,0 -6.78966,-5.7403 -2.70668,-8.46874 l 2.16155,-1.44445 -4.32634,-3.58926 c -4.4612,-3.70114 -5.1153,-5.04226 -3.23534,-6.63349 0.99717,-0.84403 17.71344,13.13391 94.466073,78.99136 2.027856,1.74 2.280608,2.35424 1.409323,3.42494 -1.653165,2.03152 -2.643601,1.60452 -8.20993,-3.53951 z m -9.126616,-2.61999 c 1.39088,-1.70921 0.31669,-4.89958 -1.64967,-4.89958 -2.4706,0 -3.81387,2.18896 -2.67505,4.35918 1.11901,2.13243 2.85289,2.34909 4.32472,0.5404 z m -23.84179,-20.4156 c 1.86378,-1.90082 0.27164,-5.01365 -2.36745,-4.62868 -2.17675,0.31754 -2.94808,2.86824 -1.43108,4.73243 1.33185,1.63667 2.11294,1.61534 3.79853,-0.10375 z m -23.31618,-22.45838 c 0,-1.72542 -0.49612,-2.26649 -2.27066,-2.47637 -2.43692,-0.28822 -3.69168,1.44456 -2.78705,3.84883 0.32712,0.8694 1.34869,1.27403 2.78705,1.10391 1.77454,-0.20988 2.27066,-0.75094 2.27066,-2.47637 z m -20.78446,-16.77148 c 0.7387,-2.3737 -0.11655,-3.54041 -2.59529,-3.54041 -2.47874,0 -3.334,1.16671 -2.5953,3.54041 0.3432,1.1028 1.31077,1.75835 2.5953,1.75835 1.28452,0 2.25209,-0.65555 2.59529,-1.75835 z" + style="fill:#686868" /> <path - style="fill:url(#linearGradient4463);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path26055" - d="m 245.30425,135.70802 c 6.40508,29.13536 -0.19164,59.82845 -14.93562,85.42475 -9.15363,17.5973 -27.2009,31.0743 -28.92062,52.011 -2.7585,18.2445 10.38732,33.4514 22.56898,45.241 4.96184,6.239 0.70889,-8.5105 1.38422,-11.9632 -1.97971,-17.9487 1.09873,-38.0878 15.5825,-50.3998 16.12514,-15.6874 39.12358,-26.5619 46.8475,-49.1093 5.22432,-19.9129 -8.69668,-37.76184 -20.83869,-51.90179 -7.32268,-8.88533 -15.04301,-17.40614 -22.71952,-25.99016 0.34375,2.22917 0.6875,4.45833 1.03125,6.6875 z" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient4504);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path26054" - d="m 216.20594,109.85866 c 0.63387,13.77775 4.55106,27.42117 2.75732,41.32831 -1.5823,32.4669 -15.84784,62.9987 -35.54194,88.4141 -3.65343,5.1912 -7.54448,10.2093 -11.30913,15.3201 -5.03417,-16.7728 -2.76155,-34.8581 4.01864,-50.7747 3.57049,-8.5047 6.07648,-17.3319 7.38761,-26.47531 -18.82095,17.16941 -32.10356,40.57371 -36.78125,65.62501 -3.79164,23.1694 4.35914,46.9902 19.73048,64.403 19.32727,22.8014 47.11664,35.6135 74.05077,47.0657 -15.26216,-21.468 -36.50831,-40.8391 -41.02033,-67.9622 -3.09495,-15.7494 3.10673,-31.5567 13.44976,-43.3319 11.83939,-16.266 19.21325,-35.6153 23.59367,-55.1462 5.68892,-25.43627 1.12856,-52.93969 -12.7731,-74.99716 -3.43037,-2.50771 -9.55995,-15.684492 -7.5625,-3.46875 z" - inkscape:connector-curvature="0" /> + inkscape:connector-curvature="0" + id="path3256" + d="m -93.290854,724.21682 c -5.650575,-4.88726 -6.093301,-5.11007 -6.531783,-3.28723 -0.258703,1.07545 -1.424043,2.44028 -2.589643,3.03294 -2.87198,1.46029 -5.50687,-0.32662 -5.86645,-3.97847 -0.21233,-2.15635 0.18365,-2.95556 1.92559,-3.88638 2.1918,-1.17123 2.1882,-1.17583 -7.2792,-9.29207 l -9.47209,-8.12026 -1.11907,2.39248 c -0.7513,1.60623 -1.91675,2.48601 -3.54631,2.67708 -4.93352,0.57846 -6.72744,-4.44693 -2.7317,-7.65245 l 2.18856,-1.75573 -9.30755,-8.03849 c -8.79076,-7.59217 -9.34738,-7.92868 -10.02494,-6.06065 -1.42821,3.93754 -5.85089,4.60031 -8.033,1.20381 -1.61808,-2.51858 -0.57089,-5.46204 2.333,-6.55761 1.51187,-0.57039 0.67241,-1.56294 -6.27773,-7.42256 l -8.02298,-6.76412 -1.5594,2.61518 c -1.97838,3.31784 -5.29108,3.52331 -7.26516,0.45061 -1.6479,-2.56499 -0.99967,-5.4643 1.39502,-6.23945 2.48539,-0.80452 2.14176,-1.52638 -2.71475,-5.70283 -3.85706,-3.31696 -4.2459,-3.94533 -3.13961,-5.07361 1.1063,-1.12828 6.98696,3.60455 47.48165,38.21383 25.42043,21.72589 46.789541,40.04177 47.486916,40.70196 1.113318,1.05396 1.113318,1.35805 0,2.49349 -1.113326,1.13543 -2.00716,0.65379 -7.32937,-3.94947 z m -9.126616,-2.15848 c 1.39088,-1.70921 0.31669,-4.89958 -1.64967,-4.89958 -2.4706,0 -3.81387,2.18896 -2.67505,4.35918 1.11901,2.13243 2.85289,2.34909 4.32472,0.5404 z m -23.84179,-20.4156 c 1.86378,-1.90082 0.27164,-5.01365 -2.36745,-4.62868 -2.17675,0.31754 -2.94808,2.86824 -1.43108,4.73243 1.33185,1.63667 2.11294,1.61534 3.79853,-0.10375 z m -23.31618,-22.45838 c 0,-1.72542 -0.49612,-2.26649 -2.27066,-2.47637 -2.43692,-0.28822 -3.69168,1.44456 -2.78705,3.84883 0.32712,0.8694 1.34869,1.27403 2.78705,1.10391 1.77454,-0.20988 2.27066,-0.75094 2.27066,-2.47637 z m -20.78446,-16.77148 c 0.7387,-2.3737 -0.11655,-3.54041 -2.59529,-3.54041 -2.47874,0 -3.334,1.16671 -2.5953,3.54041 0.3432,1.1028 1.31077,1.75835 2.5953,1.75835 1.28452,0 2.25209,-0.65555 2.59529,-1.75835 z" + style="fill:#050606" /> </g> </g> <g - id="g3254" - transform="translate(338.59482,84.506185)"> - <path - style="fill:#cacaca" - d="m -141.64871,731.31997 c -22.71912,-19.44593 -41.57543,-35.35622 -41.90292,-35.35622 -0.32748,0 -1.38939,-0.93725 -2.35979,-2.08277 -0.9704,-1.14552 -7.90154,-7.32971 -15.40255,-13.74263 -7.501,-6.41292 -13.63819,-11.94371 -13.63819,-12.29064 0,-0.88187 32.94299,-40.77529 33.63762,-40.7346 0.31135,0.0182 2.09744,1.36979 3.96908,3.00344 3.28207,2.86475 3.35476,3.04536 2.04582,5.08275 -1.35586,2.11043 -1.3229,2.14175 34.24589,32.54236 17.1942,14.70863 2.10006,2.23702 49.76002,42.17705 3.337624,3.54064 12.833354,11.65568 13.638778,11.65568 0.374084,0 1.368139,-0.635 2.209022,-1.41111 1.415168,-1.30616 1.790534,-1.19664 5.047204,1.4725 1.935081,1.58598 3.518332,3.2382 3.518332,3.6716 0,0.60316 -27.142705,34.25352 -32.452888,40.2337 -0.798338,0.89908 -9.597358,-6.21682 -42.315428,-34.22111 z m 55.643272,1.80366 c 3.369577,-4.09088 6.031292,-7.52437 5.914922,-7.62997 -0.116371,-0.1056 -3.134056,-2.6544 -6.705963,-5.66399 -3.571906,-3.00959 -7.468532,-6.32401 -8.659167,-7.36537 -18.785954,-16.43073 -83.388544,-71.25434 -83.964104,-71.25434 -0.428,0 -3.79888,3.63115 -7.49085,8.06923 l -6.71267,8.06923 2.99805,2.74906 c 6.28446,5.76252 25.34774,22.23643 27.19665,23.50251 1.06397,0.72858 7.73348,6.34831 14.82114,12.48828 45.0405,39.01819 54.37458,46.69552 55.42343,45.58612 0.578623,-0.61204 3.808977,-4.45988 7.178562,-8.55076 z m -6.845773,-7.63839 -5.621765,-4.84248 -1.594264,2.23206 c -2.83332,3.96681 -9.24307,2.0621 -9.24307,-2.74664 0,-1.96694 1.60967,-4.36691 3.25883,-4.85882 0.60173,-0.17948 -3.00265,-3.81087 -8.00973,-8.06975 -5.00708,-4.25888 -9.10377,-7.19989 -9.10377,-6.53558 0,3.85753 -6.76833,5.48036 -9.04303,2.16822 -1.84953,-2.69305 -1.69925,-3.94115 0.77882,-6.46847 l 2.1268,-2.16906 -8.81055,-7.52721 c -8.35729,-7.13998 -8.84757,-7.42514 -9.53022,-5.54308 -0.8623,2.37734 -2.17164,3.32697 -4.61231,3.34516 -4.31354,0.0322 -6.32588,-6.65891 -2.76722,-9.20103 1.16504,-0.83225 1.58826,-1.65868 1.0824,-2.11364 -0.45686,-0.41089 -3.72549,-3.24889 -7.26362,-6.30667 -6.03575,-5.21631 -6.4753,-5.4429 -7.11851,-3.66958 -0.37705,1.03952 -1.65513,2.34058 -2.84017,2.89126 -4.9528,2.30149 -9.04335,-5.04194 -4.84885,-8.70476 1.6688,-1.45726 1.60964,-1.57837 -2.69206,-5.51089 -4.33567,-3.96356 -4.37391,-4.0434 -2.68305,-5.60092 1.67653,-1.54433 2.77013,-0.6785 48.36917,38.2949 25.65962,21.93122 47.175072,40.37583 47.812101,40.98803 0.963913,0.92633 0.96529,1.42821 0.0078,2.99122 -0.632534,1.03298 -1.348578,1.86061 -1.591208,1.83918 -0.24263,-0.0215 -2.970934,-2.21808 -6.062915,-4.88145 z m -36.808149,23.46605 c -0.29434,-0.48572 -0.12251,-0.88313 0.38185,-0.88313 0.50437,0 0.91703,0.39741 0.91703,0.88313 0,0.48572 -0.17183,0.88312 -0.38185,0.88312 -0.21002,0 -0.62268,-0.3974 -0.91703,-0.88312 z" - id="path3262" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ssssscssccsssssssssssscsssssccssssssscsscsssssssssscccccsssc" /> + id="g3950"> <path - style="fill:#084af1" - d="m -141.70294,730.79802 c -19.70363,-14.08884 -39.13144,-33.87071 -55.75597,-47.91474 -6.52563,-5.49424 -13.14755,-11.1008 -14.71536,-12.45902 l -2.85057,-2.46949 16.61467,-20.21663 c 9.13806,-11.11914 16.69487,-20.32309 16.79289,-20.45321 0.098,-0.13012 1.7884,1.2608 3.7564,3.09094 l 3.57817,3.32752 -9.94372,11.87508 c -5.46905,6.53129 -9.94372,11.95688 -9.94372,12.05686 0,0.1 5.57145,4.93405 12.381,10.74237 6.80956,5.80833 13.49072,11.60947 14.84703,12.89144 26.78141,21.10707 22.69793,19.28577 46.45645,39.59158 l 26.492029,22.6407 9.697878,-11.84664 c 5.333839,-6.51565 10.005573,-11.84664 10.381649,-11.84664 0.376067,0 2.105823,1.29157 3.843891,2.87016 l 3.160128,2.87016 -16.400307,19.85766 c -9.020177,10.92171 -16.709328,19.94057 -17.087018,20.04191 -0.37767,0.10135 -18.96517,-15.49116 -41.30552,-34.65001 z m 56.268003,14.46643 c 8.061849,-9.79926 14.937938,-18.28594 15.280192,-18.85928 0.352246,-0.59009 -0.262676,-1.89033 -1.417082,-2.99639 l -2.039355,-1.95396 -9.745494,11.7612 c -5.360025,6.46867 -10.222295,11.71497 -10.805048,11.65847 -0.582753,-0.0565 -16.544136,-13.36963 -35.469746,-29.58471 -18.94546,-13.73014 -37.5743,-32.11549 -53.48048,-45.78046 l -13.62042,-11.67063 9.94399,-12.04378 9.944,-12.04379 -2.19523,-2.23168 c -1.43393,-1.45773 -2.41119,-1.89629 -2.81795,-1.26459 -0.3425,0.53189 -7.40344,9.19475 -15.69099,19.25079 -8.28755,10.05604 -14.71698,18.59076 -14.28763,18.96604 0.42936,0.37529 5.65143,4.84671 11.60461,9.9365 5.95318,5.08979 18.03271,15.42525 26.84342,22.96768 56.51704,48.38165 72.22034,61.70544 72.72547,61.70544 0.3134,0 7.165885,-8.01758 15.227743,-17.81685 z m -7.855917,-20.58612 c -2.857526,-2.64073 -5.445508,-4.81682 -5.751064,-4.83576 -0.305565,-0.0189 -0.798575,0.95304 -1.095582,2.15994 -0.61291,2.49054 -4.28466,3.8934 -6.49261,2.48061 -0.75973,-0.48613 -1.76306,-1.97694 -2.22962,-3.31291 -0.73489,-2.1043 -0.53626,-2.70279 1.48574,-4.4766 l 2.33403,-2.04754 -8.8211,-7.57633 -8.8211,-7.57634 -1.12922,2.19802 c -2.56146,4.98588 -9.24388,3.01172 -8.70422,-2.57147 0.16368,-1.69349 0.94934,-3.02345 2.1421,-3.62616 1.7596,-0.88914 1.26079,-1.48573 -7.57677,-9.06202 -7.2849,-6.24522 -9.46038,-7.71108 -9.46038,-6.37449 0,2.27319 -3.71861,4.74263 -6.01994,3.9977 -3.90318,-1.26344 -4.44878,-7.77734 -0.76774,-9.1661 1.62055,-0.6114 0.97197,-1.42003 -5.92672,-7.38933 l -7.74641,-6.7028 -0.95129,2.57037 c -0.80454,2.17381 -1.42577,2.57036 -4.02676,2.57036 -4.95501,0 -6.78966,-5.7403 -2.70668,-8.46874 l 2.16155,-1.44445 -4.32634,-3.58926 c -4.4612,-3.70114 -5.1153,-5.04226 -3.23534,-6.63349 0.99717,-0.84403 17.71344,13.13391 94.466073,78.99136 2.027856,1.74 2.280608,2.35424 1.409323,3.42494 -1.653165,2.03152 -2.643601,1.60452 -8.20993,-3.53951 z" - id="path3260" + sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" - sodipodi:nodetypes="ccscscscssscccssscsccssscsscccccscssssssscsssscccsssssssscssscsssss" /> + id="path3058-1" + d="m 577.72122,796.48048 -25.7281,0 0,219.97352 -144.00005,0" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path - style="fill:#686868" - d="m -141.70294,730.79802 c -19.70363,-14.08884 -39.13144,-33.87071 -55.75597,-47.91474 -6.52563,-5.49424 -13.14755,-11.1008 -14.71536,-12.45902 l -2.85057,-2.46949 16.61467,-20.21663 c 9.13806,-11.11914 16.69487,-20.32309 16.79289,-20.45321 0.098,-0.13012 1.7884,1.2608 3.7564,3.09094 l 3.57817,3.32752 -9.94372,11.87508 c -5.46905,6.53129 -9.94372,11.95688 -9.94372,12.05686 0,0.1 5.57145,4.93405 12.381,10.74237 6.80956,5.80833 13.49072,11.60947 14.84703,12.89144 26.78141,21.10707 22.69793,19.28577 46.45645,39.59158 l 26.492029,22.6407 9.697878,-11.84664 c 5.333839,-6.51565 10.005573,-11.84664 10.381649,-11.84664 0.376067,0 2.105823,1.29157 3.843891,2.87016 l 3.160128,2.87016 -16.400307,19.85766 c -9.020177,10.92171 -16.709328,19.94057 -17.087018,20.04191 -0.37767,0.10135 -18.96517,-15.49116 -41.30552,-34.65001 z m 56.268003,14.46643 c 8.061849,-9.79926 14.937938,-18.28594 15.280192,-18.85928 0.352246,-0.59009 -0.262676,-1.89033 -1.417082,-2.99639 l -2.039355,-1.95396 -9.745494,11.7612 c -5.360025,6.46867 -10.222295,11.71497 -10.805048,11.65847 -0.582753,-0.0565 -16.544136,-13.36963 -35.469746,-29.58471 -18.94546,-13.73014 -37.5743,-32.11549 -53.48048,-45.78046 l -13.62042,-11.67063 9.94399,-12.04378 9.944,-12.04379 -2.19523,-2.23168 c -1.43393,-1.45773 -2.41119,-1.89629 -2.81795,-1.26459 -0.3425,0.53189 -7.40344,9.19475 -15.69099,19.25079 -8.28755,10.05604 -14.71698,18.59076 -14.28763,18.96604 0.42936,0.37529 5.65143,4.84671 11.60461,9.9365 5.95318,5.08979 18.03271,15.42525 26.84342,22.96768 56.51704,48.38165 72.22034,61.70544 72.72547,61.70544 0.3134,0 7.165885,-8.01758 15.227743,-17.81685 z m -7.855917,-20.58612 c -2.857526,-2.64073 -5.445508,-4.81682 -5.751064,-4.83576 -0.305565,-0.0189 -0.798575,0.95304 -1.095582,2.15994 -0.61291,2.49054 -4.28466,3.8934 -6.49261,2.48061 -0.75973,-0.48613 -1.76306,-1.97694 -2.22962,-3.31291 -0.73489,-2.1043 -0.53626,-2.70279 1.48574,-4.4766 l 2.33403,-2.04754 -8.8211,-7.57633 -8.8211,-7.57634 -1.12922,2.19802 c -2.56146,4.98588 -9.24388,3.01172 -8.70422,-2.57147 0.16368,-1.69349 0.94934,-3.02345 2.1421,-3.62616 1.7596,-0.88914 1.26079,-1.48573 -7.57677,-9.06202 -7.2849,-6.24522 -9.46038,-7.71108 -9.46038,-6.37449 0,2.27319 -3.71861,4.74263 -6.01994,3.9977 -3.90318,-1.26344 -4.44878,-7.77734 -0.76774,-9.1661 1.62055,-0.6114 0.97197,-1.42003 -5.92672,-7.38933 l -7.74641,-6.7028 -0.95129,2.57037 c -0.80454,2.17381 -1.42577,2.57036 -4.02676,2.57036 -4.95501,0 -6.78966,-5.7403 -2.70668,-8.46874 l 2.16155,-1.44445 -4.32634,-3.58926 c -4.4612,-3.70114 -5.1153,-5.04226 -3.23534,-6.63349 0.99717,-0.84403 17.71344,13.13391 94.466073,78.99136 2.027856,1.74 2.280608,2.35424 1.409323,3.42494 -1.653165,2.03152 -2.643601,1.60452 -8.20993,-3.53951 z m -9.126616,-2.61999 c 1.39088,-1.70921 0.31669,-4.89958 -1.64967,-4.89958 -2.4706,0 -3.81387,2.18896 -2.67505,4.35918 1.11901,2.13243 2.85289,2.34909 4.32472,0.5404 z m -23.84179,-20.4156 c 1.86378,-1.90082 0.27164,-5.01365 -2.36745,-4.62868 -2.17675,0.31754 -2.94808,2.86824 -1.43108,4.73243 1.33185,1.63667 2.11294,1.61534 3.79853,-0.10375 z m -23.31618,-22.45838 c 0,-1.72542 -0.49612,-2.26649 -2.27066,-2.47637 -2.43692,-0.28822 -3.69168,1.44456 -2.78705,3.84883 0.32712,0.8694 1.34869,1.27403 2.78705,1.10391 1.77454,-0.20988 2.27066,-0.75094 2.27066,-2.47637 z m -20.78446,-16.77148 c 0.7387,-2.3737 -0.11655,-3.54041 -2.59529,-3.54041 -2.47874,0 -3.334,1.16671 -2.5953,3.54041 0.3432,1.1028 1.31077,1.75835 2.5953,1.75835 1.28452,0 2.25209,-0.65555 2.59529,-1.75835 z" - id="path3258" inkscape:connector-curvature="0" - sodipodi:nodetypes="ccscscscssscccssscsccssscsscccccscssssssscsssscccsssssssscssscsssssssssssssssssssssss" /> + d="m 538.17131,877.50741 14.36578,-14.36577 14.27031,14.27032 m -0.0571,-0.78216 c 0,7.90271 -6.40642,14.30913 -14.30914,14.30913 -7.90272,0 -14.30914,-6.40642 -14.30914,-14.30913 0,-7.90272 6.40642,-14.30914 14.30914,-14.30914 7.90272,0 14.30914,6.40642 14.30914,14.30914 z" + style="fill:#ffffff;stroke:#000000;stroke-width:1.88988566;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path3947" + sodipodi:nodetypes="cccsssss" /> + </g> + <g + id="g3095-9" + transform="translate(-300.74096,-9.7303817)"> + <rect + y="902.85754" + x="329.81479" + height="131.31982" + width="77.781746" + id="rect2985-1-3" + style="opacity:0.98000004;fill:#ffffff;fill-opacity:1;stroke:#000000" /> + <text + sodipodi:linespacing="125%" + id="text2987-9-7" + y="898.08942" + x="325.99301" + style="font-size:18.44056702px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" + xml:space="preserve"><tspan + y="898.08942" + x="325.99301" + id="tspan2989-47-4" + sodipodi:role="line">Öl</tspan></text> <path - style="fill:#050606" - d="m -93.290854,724.21682 c -5.650575,-4.88726 -6.093301,-5.11007 -6.531783,-3.28723 -0.258703,1.07545 -1.424043,2.44028 -2.589643,3.03294 -2.87198,1.46029 -5.50687,-0.32662 -5.86645,-3.97847 -0.21233,-2.15635 0.18365,-2.95556 1.92559,-3.88638 2.1918,-1.17123 2.1882,-1.17583 -7.2792,-9.29207 l -9.47209,-8.12026 -1.11907,2.39248 c -0.7513,1.60623 -1.91675,2.48601 -3.54631,2.67708 -4.93352,0.57846 -6.72744,-4.44693 -2.7317,-7.65245 l 2.18856,-1.75573 -9.30755,-8.03849 c -8.79076,-7.59217 -9.34738,-7.92868 -10.02494,-6.06065 -1.42821,3.93754 -5.85089,4.60031 -8.033,1.20381 -1.61808,-2.51858 -0.57089,-5.46204 2.333,-6.55761 1.51187,-0.57039 0.67241,-1.56294 -6.27773,-7.42256 l -8.02298,-6.76412 -1.5594,2.61518 c -1.97838,3.31784 -5.29108,3.52331 -7.26516,0.45061 -1.6479,-2.56499 -0.99967,-5.4643 1.39502,-6.23945 2.48539,-0.80452 2.14176,-1.52638 -2.71475,-5.70283 -3.85706,-3.31696 -4.2459,-3.94533 -3.13961,-5.07361 1.1063,-1.12828 6.98696,3.60455 47.48165,38.21383 25.42043,21.72589 46.789541,40.04177 47.486916,40.70196 1.113318,1.05396 1.113318,1.35805 0,2.49349 -1.113326,1.13543 -2.00716,0.65379 -7.32937,-3.94947 z m -9.126616,-2.15848 c 1.39088,-1.70921 0.31669,-4.89958 -1.64967,-4.89958 -2.4706,0 -3.81387,2.18896 -2.67505,4.35918 1.11901,2.13243 2.85289,2.34909 4.32472,0.5404 z m -23.84179,-20.4156 c 1.86378,-1.90082 0.27164,-5.01365 -2.36745,-4.62868 -2.17675,0.31754 -2.94808,2.86824 -1.43108,4.73243 1.33185,1.63667 2.11294,1.61534 3.79853,-0.10375 z m -23.31618,-22.45838 c 0,-1.72542 -0.49612,-2.26649 -2.27066,-2.47637 -2.43692,-0.28822 -3.69168,1.44456 -2.78705,3.84883 0.32712,0.8694 1.34869,1.27403 2.78705,1.10391 1.77454,-0.20988 2.27066,-0.75094 2.27066,-2.47637 z m -20.78446,-16.77148 c 0.7387,-2.3737 -0.11655,-3.54041 -2.59529,-3.54041 -2.47874,0 -3.334,1.16671 -2.5953,3.54041 0.3432,1.1028 1.31077,1.75835 2.5953,1.75835 1.28452,0 2.25209,-0.65555 2.59529,-1.75835 z" - id="path3256" - inkscape:connector-curvature="0" /> + transform="matrix(1.0481376,0,0,0.60942325,296.73303,720.89972)" + d="m 97.984795,362.11163 c 0,26.77881 -13.341691,48.48733 -29.7995,48.48733 -16.457809,0 -29.799499,-21.70852 -29.799499,-48.48733 0,-26.77881 13.34169,-48.48732 29.799499,-48.48732 16.457809,0 29.7995,21.70851 29.7995,48.48732 z" + sodipodi:ry="48.487324" + sodipodi:rx="29.7995" + sodipodi:cy="362.11163" + sodipodi:cx="68.185295" + id="path3046-8-5" + style="opacity:0.98000004;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.58299994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.166, 1.583;stroke-dashoffset:0" + sodipodi:type="arc" /> + <text + sodipodi:linespacing="125%" + id="text3048-2" + y="946.48315" + x="346.35474" + style="font-size:18.9864254px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum Slanted O;-inkscape-font-specification:Linux Biolinum Slanted O Bold Italic" + xml:space="preserve"><tspan + y="946.48315" + x="346.35474" + id="tspan3050-5" + sodipodi:role="line"><tspan + id="temperatur_oel" + style="font-weight:normal;-inkscape-font-specification:Linux Biolinum Slanted O Italic">XX</tspan> °C</tspan></text> + <g + id="layer1-5-7" + inkscape:label="Layer 1" + transform="matrix(0.22131573,0,0,0.22131573,260.27179,946.67008)"> + <g + transform="translate(243.44676,29.294424)" + id="g9278-4"> + <path + inkscape:connector-curvature="0" + d="m 135.30628,265.02207 c 19.34779,57.177 49.95772,87.4982 104.82457,90.9635 60.35355,19.3477 116.37549,-20.2141 100.49298,-82.3003 -7.21932,13.2835 -11.83968,20.5029 -24.25693,24.2569 4.90915,-34.364 -26.5671,-40.1394 -11.26214,-77.1024 10.68461,-22.813 17.03761,-50.824 -1.73263,-73.63705 -7.79687,25.98955 -17.32637,43.31595 -36.38539,62.37495 2.02141,-31.765 18.77023,-57.46582 8.66318,-87.4982 1.44387,-20.21411 -31.76502,-19.63656 -32.05379,-81.433972 -21.08042,26.56712 -30.03238,47.069994 -26.85588,87.498202 -7.79688,32.63133 -26.85587,44.47107 -23.3906,79.70137 -2.88773,-19.6366 -4.90914,-36.6742 -0.86633,-51.11285 -2.31018,-17.90391 -4.62037,-33.20889 -22.52428,-45.9149 5.48669,22.23552 11.83969,55.73318 -6.93055,64.10755 -5.19791,10.6846 -31.18748,47.3588 -2.59896,104.8246 -8.37441,-4.9091 -16.74884,-6.353 -25.12325,-14.7274 z" + id="path15991-4" + style="fill:url(#linearGradient3121-9);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 237.3145,53.086958 c -14.99272,19.6852 -21.35119,44.824274 -19.43988,69.336882 1.42824,11.98691 -4.94471,23.14648 -9.48162,33.85446 -8.34272,15.96187 -15.88957,33.39387 -13.60832,51.83627 -0.65803,10.6267 -5.37917,-0.0876 -4.88201,-5.4325 -2.26101,-15.0353 -3.22798,-30.6271 -0.14386,-45.52138 -1.55449,-14.49363 -5.22591,-30.20475 -17.19431,-39.72998 3.55402,17.20403 8.17212,36.5942 -0.40625,53.03126 -3.07779,5.5067 -9.96235,7.0124 -11.40127,13.6249 -14.44272,25.3005 -15.53094,56.8434 -4.56582,83.6283 2.28194,6.1006 5.25844,11.9243 7.84209,17.903 -8.0473,-4.5949 -16.87846,-7.7132 -24.65625,-12.75 10.77369,31.5464 31.25961,62.5809 63.599,74.8578 12.71752,5.4142 26.58607,6.4191 40.02243,8.5564 29.45045,9.1939 65.99724,3.1529 85.42735,-22.475 11.41608,-14.8269 14.58747,-34.8363 10.70122,-52.9079 -5.14255,10.4007 -14.05368,18.83 -25.5625,21.5 2.648,-13.3531 -1.38352,-26.7154 -8.28212,-38.1368 -7.44722,-12.1869 -9.19816,-27.5924 -3.25495,-40.7594 9.01742,-19.7648 15.83315,-43.6826 5.33139,-64.25316 -3.24996,-9.49614 -5.5378,-3.66685 -7.18432,3.05922 -6.86632,21.12134 -20.73135,39.08884 -36.4225,54.49634 1.08657,-21.5478 8.60459,-41.9354 11.79956,-63.11733 1.82434,-10.79074 -0.2714,-21.61899 -2.53052,-32.06873 -1.53783,-11.74214 -13.77556,-17.76553 -18.93886,-27.820728 -9.20134,-13.3735 -12.2617,-29.995394 -12.79893,-45.961924 -1.32292,1.75 -2.64583,3.5 -3.96875,5.25 z" + id="path29198-3" + style="fill:url(#linearGradient3123-4);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 234.06662,347.32237 c -45.91489,-48.5139 -53.71176,-82.3003 -23.3906,-114.3541 34.0752,-60.6423 25.70078,-98.76034 0.86632,-135.145718 23.3906,80.567618 -27.72221,132.546718 -44.18226,155.937318 -9.81827,-30.3211 -1.44387,-43.3159 12.12847,-80.5676 -26.56712,28.8773 -42.73841,63.8188 -32.92012,97.0277 17.90392,49.9577 60.06476,60.9311 87.49819,77.1024 z" + id="path15990-0" + style="fill:url(#linearGradient3125-6);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 289.78874,164.02436 c -6.15481,-17.90098 -1.13221,-21.73459 4.25922,-29.55503 5.56163,-2.16613 3.85697,-9.71866 6.89186,-26.53845 4.59515,18.77349 16.93135,27.30949 -11.15108,56.09348 z" + id="path15994-7" + style="fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 137.41874,341.68107 26.98534,-14.8972 22.07902,17.6818 -5.38874,9.1479 -13.84243,5.939 -29.83319,-17.8715 z" + id="path24159-8" + style="fill:url(#linearGradient3127-1);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 296.70508,104.9869 c -1.8714,7.98026 -1.0254,16.77505 -4.5,24.21875 -8.14108,6.21937 -11.69097,17.77603 -8.12116,27.5835 1.10834,8.21993 3.67934,9.63805 8.23707,2.13192 9.73188,-10.01426 18.83749,-24.36261 13.29618,-38.71175 -2.50026,-7.31882 -4.68961,-14.74903 -7.47459,-21.972418 -0.47917,2.249998 -0.95833,4.499998 -1.4375,6.749998 z" + id="path28563-6" + style="fill:url(#linearGradient3129-2);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 329.36169,273.68527 c 15.88251,-15.305 12.70601,-21.9468 11.26214,-32.9201 -4.62036,-5.1979 1.15509,-12.1285 6.93055,-31.1875 -14.72742,17.0376 -32.0538,19.3478 -18.19269,64.1076 z" + id="path15993-8" + style="fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 254.85827,347.32237 c 17.90392,-10.1071 22.81305,-41.8721 25.12325,-77.1024 4.33159,-34.0752 12.99478,-68.1504 70.17182,-73.6371 -23.39062,18.7703 -42.44962,41.8721 -33.78644,84.8993 -2.31018,62.6637 -48.80262,60.3535 -61.50863,65.8402 z" + id="path15992-8" + style="fill:url(#linearGradient3131-5);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 343.565,191.60497 c -24.38123,3.4569 -49.51237,18.1046 -56.66827,42.9832 -11.48365,31.097 -5.13799,66.4903 -20.80048,96.3606 -5.94812,2.585 -4.49399,13.6743 2.85181,11.5046 21.51646,-3.9012 41.93765,-18.849 47.38887,-40.7861 5.2576,-15.2337 2.27636,-31.3498 1.71705,-46.9973 0.71542,-22.6934 13.85513,-43.1578 31.10477,-57.1587 3.01956,-4.349 -2.01656,-5.8119 -5.59375,-5.9063 z" + id="path26056-4" + style="fill:url(#linearGradient3133-5);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 343.86133,203.48637 c -9.82497,10.4001 -24.0785,20.1331 -23.73462,36.1235 -0.72619,11.4565 3.35351,22.3796 5.89087,33.3765 8.52867,-8.1385 18.22308,-18.74 15.09898,-31.5746 -0.0222,-5.6554 -4.28458,-10.6025 -0.93838,-16.1128 3.2139,-8.7256 6.57589,-17.4081 8.80815,-26.4688 -1.70833,1.5521 -3.41667,3.1042 -5.125,4.6562 z" + id="path28562-3" + style="fill:url(#linearGradient3135-4);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 223.6708,323.93177 c -2.31019,-27.7222 -5.48669,-47.6476 29.45484,-72.7708 59.19844,-41.2945 30.03238,-65.2627 -6.93055,-108.28985 10.97337,42.73835 -6.64178,76.81355 -21.65798,99.62665 -9.81827,14.1499 -43.89347,43.0272 -0.86631,81.434 z" + id="path15989-1" + style="fill:url(#linearGradient3137-7);fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 201.08933,120.58171 c 15.98844,-18.41045 11.88217,-25.988498 9.27078,-38.664238 -5.5549,-5.843464 0.13128,-14.122384 4.68167,-36.476504 -14.55919,20.37399 -33.34836,23.76285 -13.95245,75.140742 z" + id="path15995-4" + style="fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke:#ffff00;stroke-width:2.1563108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50381679" /> + <path + inkscape:connector-curvature="0" + d="m 211.20508,41.518148 c -9.30969,12.17423 -23.42746,23.40799 -22.6875,40.281254 -0.10028,14.02936 5.4291,27.118428 9.5625,40.281248 8.44026,-9.6347 17.42012,-21.86984 13.66358,-35.446138 0.0257,-5.37156 -3.737,-9.541874 -3.84544,-14.615204 2.05688,-11.97534 6.31265,-23.54307 7.99436,-35.62616 -1.5625,1.70833 -3.125,3.41667 -4.6875,5.125 z" + id="path28564-9" + style="fill:url(#linearGradient3139-6);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 245.30425,135.70802 c 6.40508,29.13536 -0.19164,59.82845 -14.93562,85.42475 -9.15363,17.5973 -27.2009,31.0743 -28.92062,52.011 -2.7585,18.2445 10.38732,33.4514 22.56898,45.241 4.96184,6.239 0.70889,-8.5105 1.38422,-11.9632 -1.97971,-17.9487 1.09873,-38.0878 15.5825,-50.3998 16.12514,-15.6874 39.12358,-26.5619 46.8475,-49.1093 5.22432,-19.9129 -8.69668,-37.76184 -20.83869,-51.90179 -7.32268,-8.88533 -15.04301,-17.40614 -22.71952,-25.99016 0.34375,2.22917 0.6875,4.45833 1.03125,6.6875 z" + id="path26055-2" + style="fill:url(#linearGradient3141-5);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + d="m 216.20594,109.85866 c 0.63387,13.77775 4.55106,27.42117 2.75732,41.32831 -1.5823,32.4669 -15.84784,62.9987 -35.54194,88.4141 -3.65343,5.1912 -7.54448,10.2093 -11.30913,15.3201 -5.03417,-16.7728 -2.76155,-34.8581 4.01864,-50.7747 3.57049,-8.5047 6.07648,-17.3319 7.38761,-26.47531 -18.82095,17.16941 -32.10356,40.57371 -36.78125,65.62501 -3.79164,23.1694 4.35914,46.9902 19.73048,64.403 19.32727,22.8014 47.11664,35.6135 74.05077,47.0657 -15.26216,-21.468 -36.50831,-40.8391 -41.02033,-67.9622 -3.09495,-15.7494 3.10673,-31.5567 13.44976,-43.3319 11.83939,-16.266 19.21325,-35.6153 23.59367,-55.1462 5.68892,-25.43627 1.12856,-52.93969 -12.7731,-74.99716 -3.43037,-2.50771 -9.55995,-15.684492 -7.5625,-3.46875 z" + id="path26054-0" + style="fill:url(#linearGradient3143-6);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + </g> </g> + <path + id="path4228" + transform="translate(0,699.36011)" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 194.28571,203.71429 0,-56.38525 m 152.85715,107.81382 -29.28572,0 0,-107.85715 -242.85714,0 0,47.85715 m 127.14286,9.28571 0,-49.32532 m 145,108.61104 -35,0 0,-108.57143 -230.714289,0 0,44.28571" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccc" /> </g> </svg> diff --git a/ebus/webapp/static/src/d3.control.js b/ebus/webapp/static/src/d3.control.js new file mode 100644 index 0000000..def7c65 --- /dev/null +++ b/ebus/webapp/static/src/d3.control.js @@ -0,0 +1,80 @@ +var d3_control = function(element, svgurl, mapping) { + this.mapping = mapping; + this.element = element; + var control = this; + d3.xml(svgurl, "image/svg+xml", function(xml) { + element[0][0].appendChild(xml.documentElement); + // Setup mapping + for (var element_id in this.mapping) { + control.initElement(element_id); + } + d3.json("../all_values", function(response) { + control.process(response.data); + control.reload(response.time_stop); + }); + }); +}; + +d3_control.prototype = { + initElement:function(element_id) { + var options = this.mapping[element_id]; + d3.select(document.getElementById(element_id)) + .on("click", function() { + var elem = d3.select(this); + var popup = d3.select("body") + .append("div") + .classed("popup", true) + .style("top", d3.event.clientY-5) + .style("left", d3.event.clientX-5) + .on("click", function() { + d3.select(this).remove(); + }); + popup.append("div") + .text(sensor_name); + + var startdate = (new Date().getTime()/1000) - 7*60*60*24; + var enddate = (new Date().getTime()/1000); + var plot = d3.plot(popup); + d3.json("../sensor/"+sensor_name+"/" + startdate + "/" + enddate, + function(resp) { + var data = resp.data.map(function(d) { + return [new Date(d[0]), d[1]]; + }); + plot.draw(data); + }); + }); + }, + process:function(data) { + for (var i in data) { + var row = data[i]; + + if (typeof(console) != "undefined") { + console.log("[" + d3.format("02d")(row.timestamp) + "] " + + row.name + " Value: " + row.value_real + " - " + + row.value_string); + } + + for (var element_id in this.mapping) { + var options = this.mapping[element_id]; + if (row.name == options.sensor){ + d3.select(document.getElementById(element_id)) + .text(""+row.value_real); + } + } + } + }, + reload:function(time_stop) { + var url = "../stream"; + if (time_stop != null) + url += "/" + time_stop; + var control = this; + d3.json(url, function(response) { + control.process(response.data); + control.reload(response.time_stop); + }); + } +}; + +d3.control = function(element, svgurl, mapping) { + return new d3_control(element,svgurl,mapping); +};
\ No newline at end of file |