Tuesday Slides

This commit is contained in:
Oliver Kennedy 2021-03-29 09:39:29 -04:00
parent 4106e5e3d5
commit da5f2478cd
Signed by: okennedy
GPG key ID: 3E5F9B3ABD3FDB60
10 changed files with 5700 additions and 0 deletions

View file

@ -92,6 +92,8 @@ schedule:
count_min_sketch: https://ieeexplore-ieee-org.gate.lib.buffalo.edu/document/6042851
- date: "Mar. 30"
topic: "Streaming Queries"
materials:
slides: slide/2021-03-30-StreamingQueries.html
- date: "Apr. 1"
topic: "Data Updates + Incremental View Maintenance"
due: "Checkpoint 2"

View file

@ -0,0 +1,272 @@
---
template: templates/cse4562_2021_slides.erb
title: Streaming Queries
date: March 30, 2021
textbook:
---
<section>
<section>
<h3>Sequential Data</h3>
<ul>
<li>Temporal Data (today's focus)</li>
<li>Bi-Temporal (time the event happened + time the event was recorded)</li>
<li>Spatial (2d data, 3d data)</li>
<li>Spatio-Temporal Data (Spatial + Time)</li>
</ul>
</section>
<section>
<h3>Example Queries</h3>
<p style="font-weight: bold;">Find the % change in monthly sales, each month</p>
<pre class="fragment"><code class="sql">
SELECT A.Month, (A.Sales-B.Sales) / B.Sales
FROM (SELECT … AS Month, SUM(…) AS Sales FROM …) A,
(SELECT … AS Month, SUM(…) AS Sales FROM …) B
WHERE A.Month = B.Month + 1
</code></pre>
</section>
<section>
<h3>Example Queries</h3>
<p style="font-weight: bold;">Find the % change in monthly sales, each month</p>
<svg data-src="2021-03-30/OffsetJoin.svg" />
</section>
<section>
<h3>Example Queries</h3>
<p style="font-weight: bold;">Find the daily top-5 products by sales in the last week</p>
<pre class="fragment"><code class="sql">
SELECT Product, SUM(…) AS Sales FROM … WHERE date = today - 1
ORDER BY Sales Desc LIMIT 5 UNION ALL
SELECT Product, SUM(…) AS Sales FROM … WHERE date = today - 2
ORDER BY Sales Desc LIMIT 5 UNION ALL …
</code></pre>
</section>
<section>
<h3>Example Queries</h3>
<p style="font-weight: bold;">Find the trailing n-day moving average of sales</p>
<p class="fragment" style="margin-top: 100px;">… almost impossible to express if n is a parameter<br/>(i.e., query size depends on N)</p>
</section>
</section>
<section>
<section>
<h3>The <code>WINDOW</code> Operator</h3>
<ol>
<li class="fragment">Define a Sequence (i.e., sort the relation)</li>
<li class="fragment">Compute all subsequences<ul>
<li>Fixed <u>Physical</u> Size: N records exactly.</li>
<li>Fixed <u>Logical</u> Size: Records within N units of time.</li>
</ul></li>
<li class="fragment">Compute an aggregate for each subsequence (one output row per subsequence)</li>
</ol>
</section>
<section>
<pre><code class="sql">
SELECT L.state, T.month,
AVG(S.sales) OVER W as movavg
FROM Sales S, Times T, Locations L
WHERE S.timeid = T.timeid
AND S.locid = L.locid
WINDOW W AS (
PARTITION BY L.state
ORDER BY T.month
RANGE BETWEEN INTERVAL 1 MONTH PRECEDING
AND INTERVAL 1 MONTH FOLLOWING
)
</code></pre>
</section>
<section>
<svg data-src="2021-03-30/Windows.svg" class="stretch" />
</section>
<section>
<dl>
<div>
<dt><code>PARTITION BY</code></dt>
<dd class="fragment">Like <code>GROUP BY</code></dd>
</div>
<div>
<dt><code>ORDER BY</code></dt>
<dd class="fragment">The sequence to create. The output has one row for each value of this column.</dd>
</div>
<div>
<dt><code>RANGE BETWEEN ... AND ...</code></dt>
<dd class="fragment">Physical/Logical size of the window</dd>
</div>
<div>
<dt><code>[Aggregate] OVER [WindowName]</code></dt>
<dd class="fragment">A single query can have multiple windows.</dd>
</div>
</dl>
</section>
</section>
<section>
<section>
<dl>
<dt>OLAP</dt>
<dd>Changing Queries, Fixed Data</dd>
<dt>OLTP</dt>
<dd>Changing Data, Minimal Queries</dd>
<div class="fragment">
<dt>Streaming</dt>
<dd>Changing Data, Fixed Queries</dd>
</div>
</dl>
</section>
<section>
<p><b>Challenge: </b> Need to react to new data <u>as it arrives</u></p>
</section>
<section>
<h3>Streaming Queries</h3>
<ul>
<li class="fragment">Push vs Pull Data Flow</li>
<li class="fragment">Revisit Joins</li>
<li class="fragment">Revisit Indexing</li>
<li class="fragment">Revisit Aggregation</li>
</ul>
</section>
</section>
<section>
<section>
<svg data-src="2021-03-30/PushVsPull.svg" class="stretch" />
</section>
<section>
<ul>
<li class="fragment">Each operator operates independently</li>
<li class="fragment">Each operator buffers input</li>
<li class="fragment">Operators are scheduled <span class="fragment">(possibly in different threads)</span></li>
</ul>
</section>
</section>
<section>
<section>
<h3>Stream Joins</h3>
</section>
<section>
<svg data-src="2021-03-30/StreamJoin.svg" class="stretch" />
</section>
<section>
<ul>
<li><b>Problem 1: </b> Eventually run out of buffer!</li>
<li><b>Problem 2: </b> Looping over all buffer entries is slow</li>
</ul>
</section>
<section>
<p><b>Idea 1: </b> Mandate ONLY <code>WINDOW</code> queries</p>
<p class="fragment" style="margin-top: 50px;"><b>Idea 2: </b> Index the buffer!</p>
<p class="fragment" style="margin-top: 100px;"><b>Challenge: </b> Maintaining the index as tuples fall out of the buffer</p>
</section>
</section>
<section>
<section>
<h3>Streaming Indexes</h3>
</section>
<section>
<img src="2021-03-30/Windows.svg" />
<p class="fragment">Tuples always enter from one side and exit out the other</p>
</section>
<section>
<img src="2021-03-30/StreamJoin.svg" height="400px;" />
<p class="fragment">Lots of lookups for active tuples.</p>
</section>
<section>
<h3>What is the best layout?</h3>
<dl>
<div class="fragment">
<dt>Queue/Linked List</dt>
<dd>Insert/remove in (nearly) temporal order</dd>
</div>
<div class="fragment">
<dt>Hash/Tree</dt>
<dd>Lookup (randomly ordered) Join Key</dd>
</div>
</dl>
</section>
<section>
<svg data-src="2021-03-30/LinkedIndex.svg" class="stretch" />
</section>
<section>
<p>$O(1 + log(|W|))$ insertions.</p>
<p>$O(1 + log(|W|))$ expiration.</p>
</section>
</section>
<section>
<section>
<h3>Streaming Aggregation</h3>
</section>
<section>
<svg data-src="2021-03-30/Window-Sum.svg" class="stretch" />
</section>
<section>
<svg data-src="2021-03-30/Window-Max.svg" class="stretch" />
</section>
<section>
<dl>
<dt>Ring Aggregates (Sum, Count, Average)</dt>
<dd>Add new values - $O(|\Delta|)$</dd>
<dd>Subtract old values - $O(|\Delta|)$</dd>
<dt>Semiring Aggregates (Min, Max)</dt>
<dd>Rescan for new max - $O(|W|)$</dd>
</dl>
</section>
<section>
<svg data-src="2021-03-30/Window-MaxTree.svg" class="stretch" />
</section>
</section>
<section>
<section>
<h3>Summary</h3>
<dl>
<dt>Push vs Pull Data Flow</dt>
<dd>Push is a better fit because sources produce data at different rates.</dd>
<dt>Revisit Joins</dt>
<dd>Focus on ripple-style <code>WINDOW</code> joins.</dd>
<dt>Revisit Indexing</dt>
<dd>Linked Hash/Tree Indexes for efficient windowed indexing.</dd>
<dt>Revisit Aggregation</dt>
<dd>Sliding window aggregates.</dd>
</dl>
</section>
</section>

View file

@ -0,0 +1,688 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="171.58995mm"
height="205.70709mm"
viewBox="0 0 171.58995 205.70709"
version="1.1"
id="svg5049"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="2019-03-08-LinkedIndex.svg">
<defs
id="defs5043">
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker12348"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path12346"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker12060"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path12058"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker11874"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path11872"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker11712"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path11710"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker11430"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path11428"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker11220"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path11218"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker10926"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path10924"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker10848"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path10846"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker10697"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path10695"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker10565"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path10563"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker10481"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path10479"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker10397"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path10395"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker10319"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path10317"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker10247"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path10245"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker10181"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path10179"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path9694"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="152.03209"
inkscape:cy="393.86894"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1053"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5046">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-8.9237168,-18.630568)">
<g
id="g12673">
<g
id="g9539">
<rect
ry="1.4699826"
rx="1.599"
y="18.996767"
x="124.72181"
height="20"
width="50"
id="rect14183"
style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="149.7218"
y="32.023285"
id="text9534"><tspan
sodipodi:role="line"
id="tspan9532"
x="149.7218"
y="32.023285"
style="font-size:9.87777805px;text-align:center;text-anchor:middle;stroke-width:0.26458332">&lt;1, 1&gt;</tspan></text>
</g>
<g
transform="translate(0,26.458334)"
id="g9547">
<rect
style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect9541"
width="50"
height="20"
x="124.72181"
y="18.996767"
rx="1.599"
ry="1.4699826" />
<text
id="text9545"
y="32.023285"
x="149.7218"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:9.87777805px;text-align:center;text-anchor:middle;stroke-width:0.26458332"
y="32.023285"
x="149.7218"
id="tspan9543"
sodipodi:role="line">&lt;2, 3&gt;</tspan></text>
</g>
<g
transform="translate(0,52.916669)"
id="g9555">
<rect
style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect9549"
width="50"
height="20"
x="124.72181"
y="18.996767"
rx="1.599"
ry="1.4699826" />
<text
id="text9553"
y="32.023285"
x="149.7218"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:9.87777805px;text-align:center;text-anchor:middle;stroke-width:0.26458332"
y="32.023285"
x="149.7218"
id="tspan9551"
sodipodi:role="line">&lt;3, 4&gt;</tspan></text>
</g>
<g
id="g9563"
transform="translate(0,79.375004)">
<rect
ry="1.4699826"
rx="1.599"
y="18.996767"
x="124.72181"
height="20"
width="50"
id="rect9557"
style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="149.7218"
y="32.023285"
id="text9561"><tspan
sodipodi:role="line"
id="tspan9559"
x="149.7218"
y="32.023285"
style="font-size:9.87777805px;text-align:center;text-anchor:middle;stroke-width:0.26458332">&lt;4, 3&gt;</tspan></text>
</g>
<g
transform="translate(0,105.83334)"
id="g9571">
<rect
style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect9565"
width="50"
height="20"
x="124.72181"
y="18.996767"
rx="1.599"
ry="1.4699826" />
<text
id="text9569"
y="32.023285"
x="149.7218"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:9.87777805px;text-align:center;text-anchor:middle;stroke-width:0.26458332"
y="32.023285"
x="149.7218"
id="tspan9567"
sodipodi:role="line">&lt;5, 2&gt;</tspan></text>
</g>
<g
id="g9579"
transform="translate(0,132.29169)">
<rect
ry="1.4699826"
rx="1.599"
y="18.996767"
x="124.72181"
height="20"
width="50"
id="rect9573"
style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="149.7218"
y="32.023285"
id="text9577"><tspan
sodipodi:role="line"
id="tspan9575"
x="149.7218"
y="32.023285"
style="font-size:9.87777805px;text-align:center;text-anchor:middle;stroke-width:0.26458332">&lt;6, 5&gt;</tspan></text>
</g>
<g
id="g9587"
transform="translate(0,158.75004)">
<rect
ry="1.4699826"
rx="1.599"
y="18.996767"
x="124.72181"
height="20"
width="50"
id="rect9581"
style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="149.7218"
y="32.023285"
id="text9585"><tspan
sodipodi:role="line"
id="tspan9583"
x="149.7218"
y="32.023285"
style="font-size:9.87777805px;text-align:center;text-anchor:middle;stroke-width:0.26458332">&lt;7, 3&gt;</tspan></text>
</g>
<g
transform="translate(0,185.20839)"
id="g9595">
<rect
style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect9589"
width="50"
height="20"
x="124.72181"
y="18.996767"
rx="1.599"
ry="1.4699826" />
<text
id="text9593"
y="32.023285"
x="149.7218"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:9.87777805px;text-align:center;text-anchor:middle;stroke-width:0.26458332"
y="32.023285"
x="149.7218"
id="tspan9591"
sodipodi:role="line">&lt;8, 1&gt;</tspan></text>
</g>
</g>
<g
id="g10796"
class="fragment">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9689"
d="m 174.7218,37.938431 c 7.55602,6.23534 7.55598,8.23986 -0.0612,14.921598"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker10181)"
d="m 174.7218,64.396766 c 7.55602,6.23534 7.55598,8.23986 -0.0612,14.921598"
id="path10177"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path10243"
d="m 174.7218,90.855101 c 7.55602,6.23534 7.55598,8.23986 -0.0612,14.921599"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker10247)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker10319)"
d="m 174.7218,117.31344 c 7.55602,6.23535 7.55598,8.23987 -0.0612,14.92161"
id="path10315"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path10393"
d="m 174.7218,143.77179 c 7.55602,6.23535 7.55598,8.23987 -0.0612,14.92161"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker10397)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker10481)"
d="m 174.7218,170.23014 c 7.55602,6.23535 7.55598,8.23987 -0.0612,14.92161"
id="path10477"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path10561"
d="m 174.7218,196.68849 c 7.55602,6.23535 7.55598,8.23987 -0.0612,14.92161"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker10565)" />
</g>
<g
id="g12639"
class="fragment">
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path10798"
d="M 50.781209,19.039691 V 133.96559 L 9.087164,76.769908 Z"
style="fill:#916f6f;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<text
id="text10802"
y="30.799551"
x="54.592815"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="30.799551"
x="54.592815"
id="tspan10800"
sodipodi:role="line">1</tspan><tspan
id="tspan10804"
style="stroke-width:0.26458332"
y="38.737049"
x="54.592815"
sodipodi:role="line" /><tspan
id="tspan10842"
style="stroke-width:0.26458332"
y="46.674549"
x="54.592815"
sodipodi:role="line" /><tspan
id="tspan10806"
style="stroke-width:0.26458332"
y="54.612049"
x="54.592815"
sodipodi:role="line">2</tspan><tspan
id="tspan10808"
style="stroke-width:0.26458332"
y="62.549549"
x="54.592815"
sodipodi:role="line" /><tspan
id="tspan10840"
style="stroke-width:0.26458332"
y="70.487053"
x="54.592815"
sodipodi:role="line" /><tspan
id="tspan10810"
style="stroke-width:0.26458332"
y="78.424553"
x="54.592815"
sodipodi:role="line">3</tspan><tspan
id="tspan10812"
style="stroke-width:0.26458332"
y="86.362053"
x="54.592815"
sodipodi:role="line" /><tspan
id="tspan10838"
style="stroke-width:0.26458332"
y="94.299553"
x="54.592815"
sodipodi:role="line" /><tspan
id="tspan10814"
style="stroke-width:0.26458332"
y="102.23705"
x="54.592815"
sodipodi:role="line">4</tspan><tspan
id="tspan10816"
style="stroke-width:0.26458332"
y="110.17455"
x="54.592815"
sodipodi:role="line" /><tspan
id="tspan10836"
style="stroke-width:0.26458332"
y="118.11205"
x="54.592815"
sodipodi:role="line" /><tspan
id="tspan10826"
style="stroke-width:0.26458332"
y="126.04955"
x="54.592815"
sodipodi:role="line">5</tspan></text>
</g>
<g
id="g12622"
class="fragment">
<path
inkscape:connector-curvature="0"
id="path10844"
d="m 62.006529,29.195934 56.126601,0.534538"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker10848)" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker10926)"
d="M 62.006529,29.195934 118.13313,204.35547"
id="path10922"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path11216"
d="M 62.006529,52.479267 118.13313,135.5638"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker11220)"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker11430)"
d="M 62.006529,75.7626 118.13313,56.1888"
id="path11426"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path11708"
d="m 62.006529,75.7626 56.126601,33.34287"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker11712)"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker11874)"
d="M 62.006529,75.7626 118.13313,177.89714"
id="path11870"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path12056"
d="M 62.006529,100.63343 118.13313,82.64714"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12060)"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12348)"
d="m 62.006529,123.3876 56.126601,33.34287"
id="path12344"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

View file

@ -0,0 +1,820 @@
<?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"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="175.88998mm"
height="91.121895mm"
viewBox="0 0 175.88998 91.121892"
version="1.1"
id="svg8"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="OffsetJoin.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="271.9746"
inkscape:cy="166.25321"
inkscape:document-units="mm"
inkscape:current-layer="layer2"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1053"
inkscape:window-x="960"
inkscape:window-y="398"
inkscape:window-maximized="1"
inkscape:document-rotation="0" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Data"
transform="translate(12.115728)"
style="display:inline">
<g
id="g1171"
class="fragment">
<g
id="g846"
transform="translate(-12.115538,-21.017754)">
<rect
ry="1.4699824"
rx="1.5987259"
y="21.044212"
x="14.967088"
height="12.962573"
width="22.98518"
id="rect839"
style="fill:#ac9d93;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text817"
y="30.323778"
x="19.023439"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="30.323778"
x="19.023439"
id="tspan815"
sodipodi:role="line">Jan</tspan></text>
</g>
<g
id="g895"
transform="translate(-20.668166,-40.662064)">
<rect
style="fill:#deaa87;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect841"
width="22.98518"
height="12.962573"
x="46.504894"
y="40.688522"
rx="1.5987259"
ry="1.4699824" />
<text
id="text821"
y="51.115303"
x="48.393421"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="51.115303"
x="48.393421"
id="tspan819"
sodipodi:role="line">Feb</tspan></text>
</g>
<g
id="g859"
transform="translate(-37.105238,-40.528428)">
<rect
ry="1.4699824"
rx="1.5987259"
y="40.554886"
x="85.927147"
height="12.962573"
width="22.98518"
id="rect848"
style="fill:#c87137;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text825"
y="50.818886"
x="86.911331"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="50.818886"
x="86.911331"
id="tspan823"
sodipodi:role="line">Mar</tspan></text>
</g>
<g
id="g864"
transform="translate(-1.9592953,-59.504563)">
<rect
style="fill:#d4aa00;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect850"
width="22.98518"
height="12.962573"
x="73.76638"
y="59.531021"
rx="1.5987259"
ry="1.4699824" />
<text
id="text829"
y="68.769249"
x="76.065735"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="68.769249"
x="76.065735"
id="tspan827"
sodipodi:role="line">Apr</tspan></text>
</g>
<g
id="g874"
transform="translate(1.3815711,-73.536208)">
<rect
style="fill:#aad400;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect854"
width="22.98518"
height="12.962573"
x="116.39587"
y="73.562668"
rx="1.5987259"
ry="1.4699824" />
<text
id="text837"
y="82.842232"
x="120.33853"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="82.842232"
x="120.33853"
id="tspan835"
sodipodi:role="line">Jun</tspan></text>
</g>
<g
id="g919"
transform="translate(-21.603605,-60.573638)">
<rect
ry="1.4699824"
rx="1.5987259"
y="60.600098"
x="116.39587"
height="12.962573"
width="22.98518"
id="rect913"
style="fill:#decd87;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text917"
y="69.838326"
x="116.58165"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="69.838326"
x="116.58165"
id="tspan915"
sodipodi:role="line">May</tspan></text>
</g>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="17.12229"
y="34.681988"
id="text12877"><tspan
sodipodi:role="line"
id="tspan12875"
x="17.12229"
y="34.681988"
style="stroke-width:0.264583">5</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="35.332542"
y="20.120562"
id="text12889"><tspan
sodipodi:role="line"
id="tspan12887"
x="35.332542"
y="20.120562"
style="stroke-width:0.264583">9</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="58.238655"
y="20.123663"
id="text12893"><tspan
sodipodi:role="line"
id="tspan12891"
x="58.238655"
y="20.123663"
style="stroke-width:0.264583">1</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="81.364914"
y="20.165518"
id="text12901"><tspan
sodipodi:role="line"
id="tspan12899"
x="81.364914"
y="20.165518"
style="stroke-width:0.264583">2</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="104.28807"
y="20.123659"
id="text12905"><tspan
sodipodi:role="line"
id="tspan12903"
x="104.28807"
y="20.123659"
style="stroke-width:0.264583">4</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="127.28255"
y="20.078699"
id="text12917"><tspan
sodipodi:role="line"
id="tspan12915"
x="127.28255"
y="20.078699"
style="stroke-width:0.264583">5</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-12.19841"
y="10.365378"
id="text1063"><tspan
sodipodi:role="line"
id="tspan1061"
x="-12.19841"
y="10.365378"
style="stroke-width:0.264583">A</tspan></text>
</g>
<g
id="g1211"
class="fragment">
<g
id="g941"
transform="translate(10.869638,23.694817)">
<rect
ry="1.4699824"
rx="1.5987259"
y="21.044212"
x="14.967088"
height="12.962573"
width="22.98518"
id="rect935"
style="fill:#ac9d93;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text939"
y="30.323778"
x="19.023439"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="30.323778"
x="19.023439"
id="tspan937"
sodipodi:role="line">Jan</tspan></text>
</g>
<g
id="g949"
transform="translate(2.3170101,4.0505071)">
<rect
style="fill:#deaa87;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect943"
width="22.98518"
height="12.962573"
x="46.504894"
y="40.688522"
rx="1.5987259"
ry="1.4699824" />
<text
id="text947"
y="51.115303"
x="48.393421"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="51.115303"
x="48.393421"
id="tspan945"
sodipodi:role="line">Feb</tspan></text>
</g>
<g
id="g957"
transform="translate(-14.120062,4.1841431)">
<rect
ry="1.4699824"
rx="1.5987259"
y="40.554886"
x="85.927147"
height="12.962573"
width="22.98518"
id="rect951"
style="fill:#c87137;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text955"
y="50.818886"
x="86.911331"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="50.818886"
x="86.911331"
id="tspan953"
sodipodi:role="line">Mar</tspan></text>
</g>
<g
id="g965"
transform="translate(21.025881,-14.791991)">
<rect
style="fill:#d4aa00;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect959"
width="22.98518"
height="12.962573"
x="73.76638"
y="59.531021"
rx="1.5987259"
ry="1.4699824" />
<text
id="text963"
y="68.769249"
x="76.065735"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="68.769249"
x="76.065735"
id="tspan961"
sodipodi:role="line">Apr</tspan></text>
</g>
<g
id="g973"
transform="translate(24.366747,-28.823636)">
<rect
style="fill:#aad400;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect967"
width="22.98518"
height="12.962573"
x="116.39587"
y="73.562668"
rx="1.5987259"
ry="1.4699824" />
<text
id="text971"
y="82.842232"
x="120.33853"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="82.842232"
x="120.33853"
id="tspan969"
sodipodi:role="line">Jun</tspan></text>
</g>
<g
id="g981"
transform="translate(1.3815711,-15.861066)">
<rect
ry="1.4699824"
rx="1.5987259"
y="60.600098"
x="116.39587"
height="12.962573"
width="22.98518"
id="rect975"
style="fill:#decd87;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text979"
y="69.838326"
x="116.58165"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="69.838326"
x="116.58165"
id="tspan977"
sodipodi:role="line">May</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="35.341839"
y="42.566269"
id="text985"><tspan
sodipodi:role="line"
id="tspan983"
x="35.341839"
y="42.566269"
style="stroke-width:0.264583">5</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="58.317719"
y="42.608131"
id="text989"><tspan
sodipodi:role="line"
id="tspan987"
x="58.317719"
y="42.608131"
style="stroke-width:0.264583">9</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="81.223831"
y="42.611229"
id="text993"><tspan
sodipodi:role="line"
id="tspan991"
x="81.223831"
y="42.611229"
style="stroke-width:0.264583">1</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="104.35009"
y="42.653084"
id="text997"><tspan
sodipodi:role="line"
id="tspan995"
x="104.35009"
y="42.653084"
style="stroke-width:0.264583">2</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="127.27325"
y="42.611229"
id="text1001"><tspan
sodipodi:role="line"
id="tspan999"
x="127.27325"
y="42.611229"
style="stroke-width:0.264583">4</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="150.26773"
y="42.566269"
id="text1005"><tspan
sodipodi:role="line"
id="tspan1003"
x="150.26773"
y="42.566269"
style="stroke-width:0.264583">5</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-12.356023"
y="55.07795"
id="text1067"><tspan
sodipodi:role="line"
id="tspan1065"
x="-12.356023"
y="55.07795"
style="stroke-width:0.264583">B</tspan></text>
</g>
<g
id="g1238"
class="fragment">
<g
id="g1019">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="33.095985"
y="31.123177"
id="text1009"><tspan
sodipodi:role="line"
id="tspan1007"
x="33.095985"
y="31.123177"
style="font-size:8.46667px;stroke-width:0.264583">⋈</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 37.32932,22.256036 v 4.022722"
id="path1011" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 37.32932,31.781036 v 4.022722"
id="path1013" />
</g>
<g
id="g1029"
transform="translate(22.985177)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="33.095985"
y="31.123177"
id="text1023"><tspan
sodipodi:role="line"
id="tspan1021"
x="33.095985"
y="31.123177"
style="font-size:8.46667px;stroke-width:0.264583">⋈</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 37.32932,22.256036 v 4.022722"
id="path1025" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 37.32932,31.781036 v 4.022722"
id="path1027" />
</g>
<g
id="g1039"
transform="translate(45.970359)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="33.095985"
y="31.123177"
id="text1033"><tspan
sodipodi:role="line"
id="tspan1031"
x="33.095985"
y="31.123177"
style="font-size:8.46667px;stroke-width:0.264583">⋈</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 37.32932,22.256036 v 4.022722"
id="path1035" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 37.32932,31.781036 v 4.022722"
id="path1037" />
</g>
<g
id="g1049"
transform="translate(68.955528)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="33.095985"
y="31.123177"
id="text1043"><tspan
sodipodi:role="line"
id="tspan1041"
x="33.095985"
y="31.123177"
style="font-size:8.46667px;stroke-width:0.264583">⋈</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 37.32932,22.256036 v 4.022722"
id="path1045" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 37.32932,31.781036 v 4.022722"
id="path1047" />
</g>
<g
id="g1059"
transform="translate(91.940702)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="33.095985"
y="31.123177"
id="text1053"><tspan
sodipodi:role="line"
id="tspan1051"
x="33.095985"
y="31.123177"
style="font-size:8.46667px;stroke-width:0.264583">⋈</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 37.32932,22.256036 v 4.022722"
id="path1055" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 37.32932,31.781036 v 4.022722"
id="path1057" />
</g>
</g>
<g
id="g1272"
class="fragment">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-12.356023"
y="86.827942"
id="text1071"><tspan
sodipodi:role="line"
id="tspan1069"
x="-12.356023"
y="86.827942"
style="stroke-width:0.264583">Result</tspan></text>
<g
id="g1079"
transform="translate(-20.668166,30.246267)">
<rect
style="fill:#deaa87;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect1073"
width="22.98518"
height="12.962573"
x="46.504894"
y="40.688522"
rx="1.5987259"
ry="1.4699824" />
<text
id="text1077"
y="51.115303"
x="48.393421"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="51.115303"
x="48.393421"
id="tspan1075"
sodipodi:role="line">Feb</tspan></text>
</g>
<g
id="g1087"
transform="translate(-37.105238,30.379903)">
<rect
ry="1.4699824"
rx="1.5987259"
y="40.554886"
x="85.927147"
height="12.962573"
width="22.98518"
id="rect1081"
style="fill:#c87137;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text1085"
y="50.818886"
x="86.911331"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="50.818886"
x="86.911331"
id="tspan1083"
sodipodi:role="line">Mar</tspan></text>
</g>
<g
id="g1095"
transform="translate(-1.9592953,11.403768)">
<rect
style="fill:#d4aa00;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect1089"
width="22.98518"
height="12.962573"
x="73.76638"
y="59.531021"
rx="1.5987259"
ry="1.4699824" />
<text
id="text1093"
y="68.769249"
x="76.065735"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="68.769249"
x="76.065735"
id="tspan1091"
sodipodi:role="line">Apr</tspan></text>
</g>
<g
id="g1103"
transform="translate(1.3815711,-2.6278711)">
<rect
style="fill:#aad400;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect1097"
width="22.98518"
height="12.962573"
x="116.39587"
y="73.562668"
rx="1.5987259"
ry="1.4699824" />
<text
id="text1101"
y="82.842232"
x="120.33853"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="82.842232"
x="120.33853"
id="tspan1099"
sodipodi:role="line">Jun</tspan></text>
</g>
<g
id="g1111"
transform="translate(-21.603605,10.334693)">
<rect
ry="1.4699824"
rx="1.5987259"
y="60.600098"
x="116.39587"
height="12.962573"
width="22.98518"
id="rect1105"
style="fill:#decd87;stroke:#808080;stroke-width:0.0529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text1109"
y="69.838326"
x="116.58165"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="69.838326"
x="116.58165"
id="tspan1107"
sodipodi:role="line">May</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="32.249008"
y="91.028877"
id="text1115"><tspan
sodipodi:role="line"
id="tspan1113"
x="32.249008"
y="91.028877"
style="stroke-width:0.264583">0.8</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="52.167709"
y="91.031975"
id="text1119"><tspan
sodipodi:role="line"
id="tspan1117"
x="52.167709"
y="91.031975"
style="stroke-width:0.264583">-0.89</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="81.223831"
y="91.07383"
id="text1123"><tspan
sodipodi:role="line"
id="tspan1121"
x="81.223831"
y="91.07383"
style="stroke-width:0.264583">1</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="104.20901"
y="91.031975"
id="text1127"><tspan
sodipodi:role="line"
id="tspan1125"
x="104.20901"
y="91.031975"
style="stroke-width:0.264583">1</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="122.26891"
y="90.987015"
id="text1131"><tspan
sodipodi:role="line"
id="tspan1129"
x="122.26891"
y="90.987015"
style="stroke-width:0.264583">0.25</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 39 KiB

View file

@ -0,0 +1,754 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="196.02872mm"
height="113.11823mm"
viewBox="0 0 196.02871 113.11823"
version="1.1"
id="svg1012"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="2019-03-08-PushVsPull.svg">
<defs
id="defs1006">
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker11137"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path11135"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker11001"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path10999"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker8177"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path8175"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker8093"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path8091"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker7168"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path7166"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker7090"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7088"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker5310"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path5308"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker4878"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path4876"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker4416"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path4414"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker3390"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path3388"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker3342"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3340"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker2742"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path2740"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker2070"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2068"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path1691"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="457.66711"
inkscape:cy="368.39673"
inkscape:document-units="mm"
inkscape:current-layer="g7810"
showgrid="false"
inkscape:window-width="1200"
inkscape:window-height="1026"
inkscape:window-x="719"
inkscape:window-y="0"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata1009">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(18.161988,6.3526818)">
<g
id="g1660">
<circle
cx="39.937405"
cy="37.870457"
r="7.5650873"
id="path1651"
style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text1655"
y="40.663567"
x="36.707626"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="40.663567"
x="36.707626"
id="tspan1653"
sodipodi:role="line">π</tspan></text>
</g>
<g
id="g1668"
transform="translate(0,25.123338)">
<circle
style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="circle1662"
r="7.5650873"
cy="37.870457"
cx="39.937405" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="36.446663"
y="40.689407"
id="text1666"><tspan
sodipodi:role="line"
id="tspan1664"
x="36.446663"
y="40.689407"
style="stroke-width:0.26458332">σ</tspan></text>
<text
id="text8045-5"
y="41.984493"
x="41.013599"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:2.82222223px;stroke-width:0.26458332"
y="41.984493"
x="41.013599"
id="tspan8043-5"
sodipodi:role="line">&lt;4</tspan></text>
</g>
<g
id="g1676"
transform="translate(0,50.246675)">
<circle
style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="circle1670"
r="7.5650873"
cy="37.870457"
cx="39.937405" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="35.893723"
y="41.728104"
id="text1674"><tspan
sodipodi:role="line"
id="tspan1672"
x="35.893723"
y="41.728104"
style="stroke-width:0.26458332">R</tspan></text>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 39.937405,45.63301 v 9.888971"
id="path1678"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path1680"
d="m 39.937405,71.033011 v 9.888971"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="g7787"
class="fragment">
<text
id="text1684"
y="24.155416"
x="53.876297"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:5.64444447px;stroke-width:0.26458332"
y="24.155416"
x="53.876297"
id="tspan1682"
sodipodi:role="line">&quot;give me a tuple&quot;</tspan></text>
<path
inkscape:connector-curvature="0"
id="path1686"
d="m 50.113035,16.901534 c 4.810853,5.211756 8.953529,12.695304 -2.138156,19.109772"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
</g>
<path
inkscape:connector-curvature="0"
id="path2066"
d="m 46.772166,42.297512 c 8.418992,2.138156 12.561668,12.428034 1.469983,18.842502"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2070)"
sodipodi:nodetypes="cc"
class="fragment" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2742)"
d="m 46.772166,67.287213 c 8.418992,2.138156 12.561668,12.428034 1.469983,18.842502"
id="path2738"
inkscape:connector-curvature="0"
class="fragment" />
<g
id="g7810"
class="fragment"
transform="translate(-0.15118776,-0.07559521)">
<path
inkscape:connector-curvature="0"
id="path4412"
d="M 33.455985,84.392463 C 25.036993,82.254307 20.894317,71.964429 31.986002,65.549961"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4416)"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="-18.553747"
y="90.945938"
id="text7072"><tspan
sodipodi:role="line"
id="tspan7070"
x="-18.553747"
y="90.945938"
style="font-size:5.64444447px;stroke-width:0.26458332">&quot;here's a tuple&quot;</tspan></text>
</g>
<g
id="g13469"
class="fragment">
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3342)"
d="M 46.696569,67.362809 C 61.26276,68.565522 60.861854,90.08072 46.562935,93.421588"
id="path3338"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3386"
d="m 46.696569,67.362809 c 12.160765,2.138156 12.160764,16.303442 1.069079,22.71791"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3390)"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker7090)"
d="m 31.968449,86.855926 c -8.418992,-2.13815 -11.22532,-14.96709 -0.133635,-21.38156"
id="path7086"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path7164"
d="m 32.502988,89.929526 c -9.75534,-2.13815 -11.759859,-18.04069 -0.668174,-24.45516"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker7168)"
sodipodi:nodetypes="cc" />
</g>
<path
inkscape:connector-curvature="0"
id="path4874"
d="M 33.455985,59.402762 C 25.036993,57.264606 20.894317,46.974728 31.986002,40.56026"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4878)"
sodipodi:nodetypes="cc"
class="fragment" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5310)"
d="M 33.455985,33.744887 C 26.774245,32.274905 29.580577,25.192261 32.119637,18.644158"
id="path5306"
inkscape:connector-curvature="0"
class="fragment" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="32.033249"
y="1.6881708"
id="text11462"><tspan
sodipodi:role="line"
id="tspan11460"
x="32.033249"
y="1.6881708"
style="stroke-width:0.26458332">Pull</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Layer 2"
style="display:inline"
class="fragment"
sodipodi:insensitive="true"
transform="translate(0.15118789,10.758049)">
<g
id="g11411"
transform="translate(18.0108,-4.4053673)">
<g
transform="translate(111.12501,60.830008)"
id="g7994">
<circle
cx="39.937405"
cy="37.870457"
r="7.5650873"
id="circle7988"
style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text7992"
y="41.728104"
x="35.893723"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="41.728104"
x="35.893723"
id="tspan7990"
sodipodi:role="line">R</tspan></text>
</g>
<g
id="g11385">
<g
id="g7986"
transform="translate(111.12501,17.715003)">
<circle
style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="circle7980"
r="7.5650873"
cy="37.870457"
cx="39.937405" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="36.446663"
y="40.689407"
id="text7984"><tspan
sodipodi:role="line"
id="tspan7982"
x="36.446663"
y="40.689407"
style="stroke-width:0.26458332">σ</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="41.548824"
y="41.68499"
id="text8045"><tspan
sodipodi:role="line"
id="tspan8043"
x="41.548824"
y="41.68499"
style="font-size:2.82222223px;stroke-width:0.26458332">&lt;4</tspan></text>
</g>
<g
id="g8017"
transform="translate(42.763124,-27.662396)">
<rect
ry="1.4699826"
rx="1.5987263"
y="92.271538"
x="100.49334"
height="11.492589"
width="11.492589"
id="rect8008"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect8010"
width="11.492589"
height="11.492589"
x="111.98593"
y="92.271538"
rx="1.5987263"
ry="1.4699826" />
<rect
ry="1.4699826"
rx="1.5987263"
y="92.271538"
x="123.47852"
height="11.492589"
width="11.492589"
id="rect8012"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
</g>
</g>
<g
id="g11373">
<g
id="g7978"
transform="translate(111.12501,-25.400002)">
<circle
cx="39.937405"
cy="37.870457"
r="7.5650873"
id="circle7972"
style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text7976"
y="40.663567"
x="36.707626"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="40.663567"
x="36.707626"
id="tspan7974"
sodipodi:role="line">π</tspan></text>
</g>
<g
transform="translate(42.763124,-70.524899)"
id="g8025">
<rect
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect8019"
width="11.492589"
height="11.492589"
x="100.49334"
y="92.271538"
rx="1.5987263"
ry="1.4699826" />
<rect
ry="1.4699826"
rx="1.5987263"
y="92.271538"
x="111.98593"
height="11.492589"
width="11.492589"
id="rect8021"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect8023"
width="11.492589"
height="11.492589"
x="123.47852"
y="92.271538"
rx="1.5987263"
ry="1.4699826" />
</g>
</g>
</g>
<g
class="fragment"
id="g11330"
transform="translate(18.0108,-4.4053673)">
<text
id="text8029"
y="74.097214"
x="145.6619"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="74.097214"
x="145.6619"
id="tspan8027"
sodipodi:role="line">6</tspan></text>
<path
inkscape:connector-curvature="0"
id="path8083"
d="m 151.00728,65.811854 c -1.87089,-13.898014 -1.89567,-16.56317 -1.89567,-16.56317"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker8093)"
transform="translate(0,25.123338)" />
</g>
<g
class="fragment"
id="g11341"
transform="translate(18.0108,-4.4053673)">
<text
id="text8033"
y="74.102379"
x="157.24232"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="74.102379"
x="157.24232"
id="tspan8031"
sodipodi:role="line">7</tspan></text>
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker8177)"
d="m 151.00728,65.811854 c -1.11494,-7.094443 3.58499,-8.1532 8.97115,-16.0907"
id="path8173"
inkscape:connector-curvature="0"
transform="translate(0,25.123338)" />
</g>
<g
class="fragment"
id="g11352"
transform="translate(18.0108,-4.4053673)">
<text
id="text8037"
y="74.097214"
x="168.64705"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="74.097214"
x="168.64705"
id="tspan8035"
sodipodi:role="line">3</tspan></text>
<path
transform="translate(0,25.123338)"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker11001)"
d="M 151.00728,65.811854 C 149.89234,58.717411 163.6637,56.430231 170.46727,50.09913"
id="path10891"
inkscape:connector-curvature="0" />
</g>
<text
class="fragment"
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="162.5867"
y="69.777664"
id="text11315"><tspan
sodipodi:role="line"
id="tspan11313"
x="162.5867"
y="69.777664"
style="fill:#aa0000;stroke-width:0.26458332">✘</tspan></text>
<text
class="fragment"
id="text11319"
y="69.966652"
x="174.26624"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="fill:#aa0000;stroke-width:0.26458332"
y="69.966652"
x="174.26624"
id="tspan11317"
sodipodi:role="line">✘</tspan></text>
<g
class="fragment"
id="g11363"
transform="translate(18.0108,-4.4053673)">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="145.6619"
y="31.234709"
id="text8041"><tspan
sodipodi:role="line"
id="tspan8039"
x="145.6619"
y="31.234709"
style="stroke-width:0.26458332">3</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker11137)"
d="m 151.00728,48.072689 c -1.87089,-13.898014 -1.89567,-16.56317 -1.89567,-16.56317"
id="path11133"
inkscape:connector-curvature="0" />
</g>
<text
transform="translate(18.0108,-4.4053673)"
id="text11466"
y="1.6881708"
x="139.52974"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="1.6881708"
x="139.52974"
id="tspan11464"
sodipodi:role="line">Push</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

View file

@ -0,0 +1,480 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg14131"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="2019-03-08-StreamJoin.svg">
<defs
id="defs14125">
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Lend"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path1691"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="356.93827"
inkscape:cy="884.88545"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
showguides="false"
inkscape:window-width="1285"
inkscape:window-height="1026"
inkscape:window-x="634"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata14128">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Layer 2">
<rect
style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect14181"
width="21.916101"
height="135.77292"
x="71.542282"
y="15.29791"
rx="1.5987263"
ry="1.4699826" />
<rect
ry="1.4699826"
rx="1.5987263"
y="15.297909"
x="109.2516"
height="135.77292"
width="21.916101"
id="rect14183"
style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="95.69323"
y="85.322525"
id="text14187"><tspan
sodipodi:role="line"
id="tspan14185"
x="95.69323"
y="85.322525"
style="stroke-width:0.26458332">⋈</tspan></text>
<text
id="text14191"
y="85.322525"
x="153.37242"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="85.322525"
x="153.37242"
id="tspan14189"
sodipodi:role="line">=</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
d="M 41.694047,8.6161712 V 158.3932"
id="path14193"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="79.935074"
y="11.047859"
id="text14450"><tspan
sodipodi:role="line"
id="tspan14448"
x="79.935074"
y="11.047859"
style="stroke-width:0.26458332">R</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="115.72771"
y="10.513525"
id="text14454"><tspan
sodipodi:role="line"
id="tspan14452"
x="115.72771"
y="10.513525"
style="stroke-width:0.26458332">S</tspan></text>
</g>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g14386"
class="fragment">
<text
id="text14135"
y="27.538584"
x="16.570711"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="27.538584"
x="16.570711"
id="tspan14133"
sodipodi:role="line">R(1)</tspan></text>
<text
id="text14199"
y="31.793407"
x="79.041946"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
class="fragment"><tspan
style="stroke-width:0.26458332"
y="31.793407"
x="79.041946"
id="tspan14197"
sodipodi:role="line">1</tspan></text>
</g>
<g
id="g14392"
class="fragment">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="16.570711"
y="38.121918"
id="text14139"><tspan
sodipodi:role="line"
id="tspan14137"
x="16.570711"
y="38.121918"
style="stroke-width:0.26458332">S(2)</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="116.0836"
y="31.793407"
id="text14207"><tspan
sodipodi:role="line"
id="tspan14205"
x="116.0836"
y="31.793407"
style="stroke-width:0.26458332">2</tspan></text>
</g>
<g
id="g14398"
class="fragment">
<text
id="text14143"
y="48.705254"
x="16.570711"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="48.705254"
x="16.570711"
id="tspan14141"
sodipodi:role="line">S(1)</tspan></text>
<text
id="text14239"
y="47.668411"
x="116.0836"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="47.668411"
x="116.0836"
id="tspan14237"
sodipodi:role="line">1</tspan></text>
</g>
<text
id="text14247"
y="61.426746"
x="169.00031"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
class="fragment"><tspan
style="stroke-width:0.26458332"
y="61.426746"
x="169.00031"
id="tspan14245"
sodipodi:role="line">&lt;1,1&gt;</tspan></text>
<g
id="g14404"
class="fragment">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="16.570711"
y="59.288589"
id="text14147"><tspan
sodipodi:role="line"
id="tspan14145"
x="16.570711"
y="59.288589"
style="stroke-width:0.26458332">R(3)</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="79.041946"
y="47.668411"
id="text14211"><tspan
sodipodi:role="line"
id="tspan14209"
x="79.041946"
y="47.668411"
style="stroke-width:0.26458332">3</tspan></text>
</g>
<g
id="g14410"
class="fragment">
<text
id="text14151"
y="69.871918"
x="16.570711"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="69.871918"
x="16.570711"
id="tspan14149"
sodipodi:role="line">R(4)</tspan></text>
<text
id="text14215"
y="63.543415"
x="79.041946"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="63.543415"
x="79.041946"
id="tspan14213"
sodipodi:role="line">4</tspan></text>
</g>
<g
id="g14416"
class="fragment">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="16.570711"
y="80.455246"
id="text14155"><tspan
sodipodi:role="line"
id="tspan14153"
x="16.570711"
y="80.455246"
style="stroke-width:0.26458332">R(5)</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="79.041946"
y="79.418411"
id="text14219"><tspan
sodipodi:role="line"
id="tspan14217"
x="79.041946"
y="79.418411"
style="stroke-width:0.26458332">5</tspan></text>
</g>
<g
id="g14422"
class="fragment">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="16.570711"
y="91.038574"
id="text14159"><tspan
sodipodi:role="line"
id="tspan14157"
x="16.570711"
y="91.038574"
style="stroke-width:0.26458332">S(3)</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="116.0836"
y="63.543415"
id="text14243"><tspan
sodipodi:role="line"
id="tspan14241"
x="116.0836"
y="63.543415"
style="stroke-width:0.26458332">3</tspan></text>
</g>
<text
id="text14255"
y="77.301743"
x="169.00031"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
class="fragment"><tspan
style="stroke-width:0.26458332"
y="77.301743"
x="169.00031"
id="tspan14253"
sodipodi:role="line">&lt;3,3&gt;</tspan></text>
<g
id="g14428"
class="fragment">
<text
id="text14163"
y="101.6219"
x="16.570711"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="101.6219"
x="16.570711"
id="tspan14161"
sodipodi:role="line">R(6)</tspan></text>
<text
id="text14223"
y="95.293404"
x="79.041946"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="95.293404"
x="79.041946"
id="tspan14221"
sodipodi:role="line">6</tspan></text>
</g>
<g
id="g14434"
class="fragment">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="16.570711"
y="112.20523"
id="text14167"><tspan
sodipodi:role="line"
id="tspan14165"
x="16.570711"
y="112.20523"
style="stroke-width:0.26458332">R(7)</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="79.041946"
y="111.1684"
id="text14227"><tspan
sodipodi:role="line"
id="tspan14225"
x="79.041946"
y="111.1684"
style="stroke-width:0.26458332">7</tspan></text>
</g>
<g
id="g14440"
class="fragment">
<text
id="text14171"
y="122.78855"
x="16.570711"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="122.78855"
x="16.570711"
id="tspan14169"
sodipodi:role="line">R(2)</tspan></text>
<text
id="text14231"
y="127.0434"
x="79.041946"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="127.0434"
x="79.041946"
id="tspan14229"
sodipodi:role="line">2</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="169.00031"
y="93.176735"
id="text14251"
class="fragment"><tspan
sodipodi:role="line"
id="tspan14249"
x="169.00031"
y="93.176735"
style="stroke-width:0.26458332">&lt;2,2&gt;</tspan></text>
<g
id="g14446"
class="fragment">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="16.570711"
y="133.37189"
id="text14175"><tspan
sodipodi:role="line"
id="tspan14173"
x="16.570711"
y="133.37189"
style="stroke-width:0.26458332">R(3)</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="79.041946"
y="142.91843"
id="text14235"><tspan
sodipodi:role="line"
id="tspan14233"
x="79.041946"
y="142.91843"
style="stroke-width:0.26458332">3</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="169.00031"
y="109.05173"
id="text14370"
class="fragment"><tspan
sodipodi:role="line"
id="tspan14368"
x="169.00031"
y="109.05173"
style="stroke-width:0.26458332">&lt;3,3&gt;</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View file

@ -0,0 +1,701 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="271.80771mm"
height="81.877014mm"
viewBox="0 0 271.80771 81.877012"
version="1.1"
id="svg8"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="2019-03-08-Window-Max.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="507.32312"
inkscape:cy="-33.129523"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1053"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Data"
sodipodi:insensitive="true"
transform="translate(8.334945)"
style="display:inline">
<g
id="g846"
transform="translate(-12.115538,-21.017754)">
<rect
ry="1.4699824"
rx="1.5987259"
y="21.044212"
x="14.967088"
height="12.962573"
width="22.98518"
id="rect839"
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text817"
y="30.323778"
x="19.023439"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="30.323778"
x="19.023439"
id="tspan815"
sodipodi:role="line">Jan</tspan></text>
</g>
<g
id="g895"
transform="translate(25.302192,-40.662064)">
<rect
style="fill:#deaa87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect841"
width="22.98518"
height="12.962573"
x="46.504894"
y="40.688522"
rx="1.5987259"
ry="1.4699824" />
<text
id="text821"
y="51.115303"
x="48.393421"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="51.115303"
x="48.393421"
id="tspan819"
sodipodi:role="line">Feb</tspan></text>
</g>
<g
id="g859"
transform="translate(8.8651194,-40.528428)">
<rect
ry="1.4699824"
rx="1.5987259"
y="40.554886"
x="85.927147"
height="12.962573"
width="22.98518"
id="rect848"
style="fill:#c87137;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text825"
y="50.818886"
x="86.911331"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="50.818886"
x="86.911331"
id="tspan823"
sodipodi:role="line">Mar</tspan></text>
</g>
<g
id="g864"
transform="translate(66.996239,-59.504559)">
<rect
style="fill:#d4aa00;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect850"
width="22.98518"
height="12.962573"
x="73.76638"
y="59.531021"
rx="1.5987259"
ry="1.4699824" />
<text
id="text829"
y="68.769249"
x="76.065735"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="68.769249"
x="76.065735"
id="tspan827"
sodipodi:role="line">Apr</tspan></text>
</g>
<g
id="g869"
transform="translate(70.337103,-60.573634)">
<rect
ry="1.4699824"
rx="1.5987259"
y="60.600098"
x="116.39587"
height="12.962573"
width="22.98518"
id="rect852"
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text833"
y="69.838326"
x="116.58165"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="69.838326"
x="116.58165"
id="tspan831"
sodipodi:role="line">May</tspan></text>
</g>
<g
id="g874"
transform="translate(116.30745,-73.536204)">
<rect
style="fill:#aad400;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect854"
width="22.98518"
height="12.962573"
x="116.39587"
y="73.562668"
rx="1.5987259"
ry="1.4699824" />
<text
id="text837"
y="82.842232"
x="120.33853"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="82.842232"
x="120.33853"
id="tspan835"
sodipodi:role="line">Jun</tspan></text>
</g>
<g
transform="translate(10.869641,-21.017754)"
id="g882">
<rect
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect876"
width="22.98518"
height="12.962573"
x="14.967088"
y="21.044212"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="19.023439"
y="30.323778"
id="text880"><tspan
sodipodi:role="line"
id="tspan878"
x="19.023439"
y="30.323778"
style="stroke-width:0.26458332">Jan</tspan></text>
</g>
<g
id="g890"
transform="translate(33.854821,-21.017754)">
<rect
ry="1.4699824"
rx="1.5987259"
y="21.044212"
x="14.967088"
height="12.962573"
width="22.98518"
id="rect884"
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text888"
y="30.323778"
x="19.023439"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="30.323778"
x="19.023439"
id="tspan886"
sodipodi:role="line">Jan</tspan></text>
</g>
<g
id="g903"
transform="translate(31.850296,-40.528428)">
<rect
style="fill:#c87137;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect897"
width="22.98518"
height="12.962573"
x="85.927147"
y="40.554886"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="86.911331"
y="50.818886"
id="text901"><tspan
sodipodi:role="line"
id="tspan899"
x="86.911331"
y="50.818886"
style="stroke-width:0.26458332">Mar</tspan></text>
</g>
<g
id="g911"
transform="translate(93.32228,-60.573634)">
<rect
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect905"
width="22.98518"
height="12.962573"
x="116.39587"
y="60.600098"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="116.58165"
y="69.838326"
id="text909"><tspan
sodipodi:role="line"
id="tspan907"
x="116.58165"
y="69.838326"
style="stroke-width:0.26458332">May</tspan></text>
</g>
<g
id="g919"
transform="translate(47.351929,-60.573634)">
<rect
ry="1.4699824"
rx="1.5987259"
y="60.600098"
x="116.39587"
height="12.962573"
width="22.98518"
id="rect913"
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text917"
y="69.838326"
x="116.58165"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="69.838326"
x="116.58165"
id="tspan915"
sodipodi:role="line">May</tspan></text>
</g>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="17.12229"
y="34.681988"
id="text12877"><tspan
sodipodi:role="line"
id="tspan12875"
x="17.12229"
y="34.681988"
style="stroke-width:0.26458332">5</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="40.098167"
y="34.723846"
id="text12881"><tspan
sodipodi:role="line"
id="tspan12879"
x="40.098167"
y="34.723846"
style="stroke-width:0.26458332">9</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="63.038387"
y="34.723846"
id="text12885"><tspan
sodipodi:role="line"
id="tspan12883"
x="63.038387"
y="34.723846"
style="stroke-width:0.26458332">6</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="86.068527"
y="34.723846"
id="text12889"><tspan
sodipodi:role="line"
id="tspan12887"
x="86.068527"
y="34.723846"
style="stroke-width:0.26458332">9</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="108.97464"
y="34.726948"
id="text12893"><tspan
sodipodi:role="line"
id="tspan12891"
x="108.97464"
y="34.726948"
style="stroke-width:0.26458332">1</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="132.04819"
y="34.681988"
id="text12897"><tspan
sodipodi:role="line"
id="tspan12895"
x="132.04819"
y="34.681988"
style="stroke-width:0.26458332">5</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="155.08607"
y="34.768806"
id="text12901"><tspan
sodipodi:role="line"
id="tspan12899"
x="155.08607"
y="34.768806"
style="stroke-width:0.26458332">2</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="178.00923"
y="34.726948"
id="text12905"><tspan
sodipodi:role="line"
id="tspan12903"
x="178.00923"
y="34.726948"
style="stroke-width:0.26458332">4</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="200.98355"
y="34.723846"
id="text12909"><tspan
sodipodi:role="line"
id="tspan12907"
x="200.98355"
y="34.723846"
style="stroke-width:0.26458332">3</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="221.79677"
y="34.723846"
id="text12913"><tspan
sodipodi:role="line"
id="tspan12911"
x="221.79677"
y="34.723846"
style="stroke-width:0.26458332">10</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="246.97406"
y="34.681988"
id="text12917"><tspan
sodipodi:role="line"
id="tspan12915"
x="246.97406"
y="34.681988"
style="stroke-width:0.26458332">5</tspan></text>
</g>
<g
inkscape:label="Sum"
inkscape:groupmode="layer"
id="layer1"
transform="translate(3.5693193,-14.603285)"
style="opacity:0.95999995">
<g
id="g960"
class="fragment"
transform="translate(0,11.641661)">
<rect
ry="0"
rx="0"
y="29.179819"
x="7.6171803"
height="3.4745057"
width="68.955536"
id="rect921"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text935"
y="32.109131"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="32.109131"
x="4.5933709"
id="tspan933"
sodipodi:role="line">1</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="76.572716"
y="44.295979"
id="text12988"
class="fragment"><tspan
sodipodi:role="line"
id="tspan12986"
x="76.572716"
y="44.295979"
style="stroke-width:0.26458332">9</tspan></text>
<g
id="g965"
class="fragment"
transform="translate(0,16.933328)">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect923"
width="91.673447"
height="3.4745064"
x="7.6171803"
y="34.241825"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="37.306305"
id="text939"><tspan
sodipodi:role="line"
id="tspan937"
x="4.5933709"
y="37.306305"
style="font-size:3.52777767px;stroke-width:0.26458332">2</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="99.290627"
y="54.649658"
id="text12992"
class="fragment"><tspan
sodipodi:role="line"
id="tspan12990"
x="99.290627"
y="54.649658"
style="stroke-width:0.26458332">9</tspan></text>
<g
id="g970"
class="fragment"
transform="translate(0,22.224995)">
<rect
ry="0"
rx="0"
y="39.533493"
x="7.6171803"
height="3.4745064"
width="137.97552"
id="rect925"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text943"
y="42.597973"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="42.597973"
x="4.5933709"
id="tspan941"
sodipodi:role="line">3</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="145.59271"
y="65.232986"
id="text12996"
class="fragment"><tspan
sodipodi:role="line"
id="tspan12994"
x="145.59271"
y="65.232986"
style="stroke-width:0.26458332">9</tspan></text>
<g
id="g975"
class="fragment"
transform="translate(0,27.516662)">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect927"
width="91.862434"
height="3.4745064"
x="76.572716"
y="44.525665"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="47.700653"
id="text947"><tspan
sodipodi:role="line"
id="tspan945"
x="4.5933709"
y="47.700653"
style="font-size:3.52777767px;stroke-width:0.26458332">4</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="168.43515"
y="75.51683"
id="text13000"
class="fragment"><tspan
sodipodi:role="line"
id="tspan12998"
x="168.43515"
y="75.51683"
style="stroke-width:0.26458332">9</tspan></text>
<g
id="g980"
class="fragment"
transform="translate(0,32.808329)">
<rect
ry="0"
rx="0"
y="49.587673"
x="99.290627"
height="3.4745045"
width="137.78654"
id="rect929"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text951"
y="52.67104"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="52.67104"
x="4.5933709"
id="tspan949"
sodipodi:role="line">5</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="237.07716"
y="85.870499"
id="text13004"
class="fragment"><tspan
sodipodi:role="line"
id="tspan13002"
x="237.07716"
y="85.870499"
style="stroke-width:0.26458332">10</tspan></text>
<g
id="g985"
class="fragment"
transform="translate(0,38.099996)">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect931"
width="114.919"
height="3.4745026"
x="145.59271"
y="54.879341"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="58.076099"
id="text955"><tspan
sodipodi:role="line"
id="tspan953"
x="4.5933709"
y="58.076099"
style="font-size:3.52777767px;stroke-width:0.26458332">6</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="260.51172"
y="96.453827"
id="text13008"
class="fragment"><tspan
sodipodi:role="line"
id="tspan13006"
x="260.51172"
y="96.453827"
style="stroke-width:0.26458332">10</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="-77.900253"
y="1.1435713"
id="text13084"
transform="rotate(-90)"
class=""><tspan
sodipodi:role="line"
id="tspan13082"
x="-77.900253"
y="1.1435713"
style="font-weight:bold;stroke-width:0.26458332">Max</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

View file

@ -0,0 +1,813 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="267.69827mm"
height="150.24553mm"
viewBox="0 0 267.69827 150.24553"
version="1.1"
id="svg8"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="2019-03-08-Window-MaxTree.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="432.73809"
inkscape:cy="326.2577"
inkscape:document-units="mm"
inkscape:current-layer="layer3"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="2560"
inkscape:window-height="1387"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Data"
sodipodi:insensitive="true"
transform="translate(11.925719,68.368523)"
style="display:inline">
<g
id="g846"
transform="translate(-12.115538,-21.017754)">
<rect
ry="1.4699824"
rx="1.5987259"
y="21.044212"
x="14.967088"
height="12.962573"
width="22.98518"
id="rect839"
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text817"
y="30.323778"
x="19.023439"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="30.323778"
x="19.023439"
id="tspan815"
sodipodi:role="line">Jan</tspan></text>
</g>
<g
id="g895"
transform="translate(25.302192,-40.662064)">
<rect
style="fill:#deaa87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect841"
width="22.98518"
height="12.962573"
x="46.504894"
y="40.688522"
rx="1.5987259"
ry="1.4699824" />
<text
id="text821"
y="51.115303"
x="48.393421"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="51.115303"
x="48.393421"
id="tspan819"
sodipodi:role="line">Feb</tspan></text>
</g>
<g
id="g859"
transform="translate(8.8651194,-40.528428)">
<rect
ry="1.4699824"
rx="1.5987259"
y="40.554886"
x="85.927147"
height="12.962573"
width="22.98518"
id="rect848"
style="fill:#c87137;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text825"
y="50.818886"
x="86.911331"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="50.818886"
x="86.911331"
id="tspan823"
sodipodi:role="line">Mar</tspan></text>
</g>
<g
id="g864"
transform="translate(66.996239,-59.504559)">
<rect
style="fill:#d4aa00;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect850"
width="22.98518"
height="12.962573"
x="73.76638"
y="59.531021"
rx="1.5987259"
ry="1.4699824" />
<text
id="text829"
y="68.769249"
x="76.065735"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="68.769249"
x="76.065735"
id="tspan827"
sodipodi:role="line">Apr</tspan></text>
</g>
<g
id="g869"
transform="translate(70.337103,-60.573634)">
<rect
ry="1.4699824"
rx="1.5987259"
y="60.600098"
x="116.39587"
height="12.962573"
width="22.98518"
id="rect852"
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text833"
y="69.838326"
x="116.58165"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="69.838326"
x="116.58165"
id="tspan831"
sodipodi:role="line">May</tspan></text>
</g>
<g
id="g874"
transform="translate(116.30745,-73.536204)">
<rect
style="fill:#aad400;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect854"
width="22.98518"
height="12.962573"
x="116.39587"
y="73.562668"
rx="1.5987259"
ry="1.4699824" />
<text
id="text837"
y="82.842232"
x="120.33853"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="82.842232"
x="120.33853"
id="tspan835"
sodipodi:role="line">Jun</tspan></text>
</g>
<g
transform="translate(10.869641,-21.017754)"
id="g882">
<rect
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect876"
width="22.98518"
height="12.962573"
x="14.967088"
y="21.044212"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="19.023439"
y="30.323778"
id="text880"><tspan
sodipodi:role="line"
id="tspan878"
x="19.023439"
y="30.323778"
style="stroke-width:0.26458332">Jan</tspan></text>
</g>
<g
id="g890"
transform="translate(33.854821,-21.017754)">
<rect
ry="1.4699824"
rx="1.5987259"
y="21.044212"
x="14.967088"
height="12.962573"
width="22.98518"
id="rect884"
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text888"
y="30.323778"
x="19.023439"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="30.323778"
x="19.023439"
id="tspan886"
sodipodi:role="line">Jan</tspan></text>
</g>
<g
id="g903"
transform="translate(31.850296,-40.528428)">
<rect
style="fill:#c87137;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect897"
width="22.98518"
height="12.962573"
x="85.927147"
y="40.554886"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="86.911331"
y="50.818886"
id="text901"><tspan
sodipodi:role="line"
id="tspan899"
x="86.911331"
y="50.818886"
style="stroke-width:0.26458332">Mar</tspan></text>
</g>
<g
id="g911"
transform="translate(93.32228,-60.573634)">
<rect
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect905"
width="22.98518"
height="12.962573"
x="116.39587"
y="60.600098"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="116.58165"
y="69.838326"
id="text909"><tspan
sodipodi:role="line"
id="tspan907"
x="116.58165"
y="69.838326"
style="stroke-width:0.26458332">May</tspan></text>
</g>
<g
id="g919"
transform="translate(47.351929,-60.573634)">
<rect
ry="1.4699824"
rx="1.5987259"
y="60.600098"
x="116.39587"
height="12.962573"
width="22.98518"
id="rect913"
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text917"
y="69.838326"
x="116.58165"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="69.838326"
x="116.58165"
id="tspan915"
sodipodi:role="line">May</tspan></text>
</g>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="17.12229"
y="34.681988"
id="text12877"><tspan
sodipodi:role="line"
id="tspan12875"
x="17.12229"
y="34.681988"
style="stroke-width:0.26458332">5</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="40.098167"
y="34.723846"
id="text12881"><tspan
sodipodi:role="line"
id="tspan12879"
x="40.098167"
y="34.723846"
style="stroke-width:0.26458332">9</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="63.038387"
y="34.723846"
id="text12885"><tspan
sodipodi:role="line"
id="tspan12883"
x="63.038387"
y="34.723846"
style="stroke-width:0.26458332">6</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="86.068527"
y="34.723846"
id="text12889"><tspan
sodipodi:role="line"
id="tspan12887"
x="86.068527"
y="34.723846"
style="stroke-width:0.26458332">9</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="108.97464"
y="34.726948"
id="text12893"><tspan
sodipodi:role="line"
id="tspan12891"
x="108.97464"
y="34.726948"
style="stroke-width:0.26458332">1</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="132.04819"
y="34.681988"
id="text12897"><tspan
sodipodi:role="line"
id="tspan12895"
x="132.04819"
y="34.681988"
style="stroke-width:0.26458332">5</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="155.08607"
y="34.768806"
id="text12901"><tspan
sodipodi:role="line"
id="tspan12899"
x="155.08607"
y="34.768806"
style="stroke-width:0.26458332">2</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="178.00923"
y="34.726948"
id="text12905"><tspan
sodipodi:role="line"
id="tspan12903"
x="178.00923"
y="34.726948"
style="stroke-width:0.26458332">4</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="200.98355"
y="34.723846"
id="text12909"><tspan
sodipodi:role="line"
id="tspan12907"
x="200.98355"
y="34.723846"
style="stroke-width:0.26458332">3</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="221.79677"
y="34.723846"
id="text12913"><tspan
sodipodi:role="line"
id="tspan12911"
x="221.79677"
y="34.723846"
style="stroke-width:0.26458332">10</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="246.97406"
y="34.681988"
id="text12917"><tspan
sodipodi:role="line"
id="tspan12915"
x="246.97406"
y="34.681988"
style="stroke-width:0.26458332">5</tspan></text>
</g>
<g
inkscape:label="Sum"
inkscape:groupmode="layer"
id="layer1"
transform="translate(7.1600934,53.765238)"
style="opacity:0.95999995">
<g
id="g960"
class=""
transform="translate(0,11.641661)">
<rect
ry="0"
rx="0"
y="29.179819"
x="7.6171803"
height="3.4745057"
width="68.955536"
id="rect921"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text935"
y="32.109131"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="32.109131"
x="4.5933709"
id="tspan933"
sodipodi:role="line">1</tspan></text>
</g>
<g
id="g965"
class=""
transform="translate(0,16.933328)">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect923"
width="91.673447"
height="3.4745064"
x="7.6171803"
y="34.241825"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="37.306305"
id="text939"><tspan
sodipodi:role="line"
id="tspan937"
x="4.5933709"
y="37.306305"
style="font-size:3.52777767px;stroke-width:0.26458332">2</tspan></text>
</g>
<g
id="g970"
class=""
transform="translate(0,22.224995)">
<rect
ry="0"
rx="0"
y="39.533493"
x="7.6171803"
height="3.4745064"
width="137.97552"
id="rect925"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text943"
y="42.597973"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="42.597973"
x="4.5933709"
id="tspan941"
sodipodi:role="line">3</tspan></text>
</g>
<g
id="g975"
class=""
transform="translate(0,27.516662)">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect927"
width="91.862434"
height="3.4745064"
x="76.572716"
y="44.525665"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="47.700653"
id="text947"><tspan
sodipodi:role="line"
id="tspan945"
x="4.5933709"
y="47.700653"
style="font-size:3.52777767px;stroke-width:0.26458332">4</tspan></text>
</g>
<g
id="g980"
class=""
transform="translate(0,32.808329)">
<rect
ry="0"
rx="0"
y="49.587673"
x="99.290627"
height="3.4745045"
width="137.78654"
id="rect929"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text951"
y="52.67104"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="52.67104"
x="4.5933709"
id="tspan949"
sodipodi:role="line">5</tspan></text>
</g>
<g
id="g985"
class=""
transform="translate(0,38.099996)">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect931"
width="114.919"
height="3.4745026"
x="145.59271"
y="54.879341"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="58.076099"
id="text955"><tspan
sodipodi:role="line"
id="tspan953"
x="4.5933709"
y="58.076099"
style="font-size:3.52777767px;stroke-width:0.26458332">6</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="-77.900253"
y="1.1435713"
id="text13084"
transform="rotate(-90)"
class=""><tspan
sodipodi:role="line"
id="tspan13082"
x="-77.900253"
y="1.1435713"
style="font-weight:bold;stroke-width:0.26458332">Max</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Tree"
transform="translate(3.5907741,68.368523)">
<g
id="g1004"
class="fragment">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path917"
d="M 18.881321,10.68678 29.572102,-8.0220861 40.577154,10.68678"
style="opacity:0.95999995;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(3.5693194,-14.603285)" />
<text
id="text940"
y="-6.7072282"
x="23.921839"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;opacity:0.95999995;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"
transform="translate(3.5693194,-14.603285)"><tspan
style="stroke-width:0.26458332px"
y="-6.7072282"
x="23.921839"
id="tspan938"
sodipodi:role="line">9</tspan></text>
</g>
<g
id="g1012"
class="fragment">
<path
style="opacity:0.95999995;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 66.506324,10.68678 77.197105,-8.0220861 88.202157,10.68678"
id="path919"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc"
transform="translate(3.5693194,-14.603285)" />
<path
style="opacity:0.95999995;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 29.572102,-8.0220861 53.09182,-26.730958 77.197105,-8.0220861"
id="path927"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc"
transform="translate(3.5693194,-14.603285)" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;opacity:0.95999995;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="83.188499"
y="-6.7072282"
id="text944"
transform="translate(3.5693194,-14.603285)"><tspan
sodipodi:role="line"
id="tspan942"
x="83.188499"
y="-6.7072282"
style="stroke-width:0.26458332px">9</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;opacity:0.95999995;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="44.559345"
y="-25.757231"
id="text964"
transform="translate(3.5693194,-14.603285)"><tspan
sodipodi:role="line"
id="tspan962"
x="44.559345"
y="-25.757231"
style="stroke-width:0.26458332px">9</tspan></text>
</g>
<g
id="g1020"
class="fragment">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path921"
d="M 112.01465,10.68678 122.70544,-8.0220861 133.7105,10.68678"
style="opacity:0.95999995;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(3.5693194,-14.603285)" />
<text
id="text948"
y="-6.7072282"
x="116.526"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;opacity:0.95999995;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"
transform="translate(3.5693194,-14.603285)"><tspan
style="stroke-width:0.26458332px"
y="-6.7072282"
x="116.526"
id="tspan946"
sodipodi:role="line">5</tspan></text>
</g>
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ac9d93;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect1036"
width="83.644989"
height="64.452019"
x="-3.5907736"
y="-68.368523"
ry="0.3697499"
class="fragment" />
<g
id="g1074"
class="fragment">
<g
id="g1034">
<path
transform="translate(3.5693194,-14.603285)"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path923"
d="M 159.63968,10.68678 170.33047,-8.0220861 181.33553,10.68678"
style="opacity:0.95999995;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
transform="translate(3.5693194,-14.603285)"
style="opacity:0.95999995;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 203.56064,10.68678 214.25143,-8.0220861 225.25649,10.68678"
id="path925"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
transform="translate(3.5693194,-14.603285)"
style="opacity:0.95999995;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 122.70544,-8.0220861 23.51973,-18.7088719 24.1053,18.7088719"
id="path929"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<text
transform="translate(3.5693194,-14.603285)"
id="text952"
y="-6.7072282"
x="176.85107"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;opacity:0.95999995;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
style="stroke-width:0.26458332px"
y="-6.7072282"
x="176.85107"
id="tspan950"
sodipodi:role="line">4</tspan></text>
<text
transform="translate(3.5693194,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;opacity:0.95999995;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="205.95523"
y="-6.7072282"
id="text956"><tspan
sodipodi:role="line"
id="tspan954"
x="205.95523"
y="-6.7072282"
style="stroke-width:0.26458332px">10</tspan></text>
<text
transform="translate(3.5693194,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;opacity:0.95999995;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="155.68436"
y="-25.757231"
id="text968"><tspan
sodipodi:role="line"
id="tspan966"
x="155.68436"
y="-25.757231"
style="stroke-width:0.26458332px">5</tspan></text>
</g>
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ac9d93;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect1038"
width="23.072998"
height="64.452003"
x="80.054214"
y="-68.368523"
ry="0.3697499" />
</g>
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ac9d93;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect1040"
width="58.995106"
height="64.452003"
x="103.12721"
y="-68.368523"
ry="0.3697499"
class="fragment" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

View file

@ -0,0 +1,701 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="271.80771mm"
height="81.877014mm"
viewBox="0 0 271.80771 81.877012"
version="1.1"
id="svg8"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="2019-03-08-Window-SumMax.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="540.65815"
inkscape:cy="-29.088913"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1053"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Data"
sodipodi:insensitive="true"
transform="translate(8.334945)"
style="display:inline">
<g
id="g846"
transform="translate(-12.115538,-21.017754)">
<rect
ry="1.4699824"
rx="1.5987259"
y="21.044212"
x="14.967088"
height="12.962573"
width="22.98518"
id="rect839"
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text817"
y="30.323778"
x="19.023439"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="30.323778"
x="19.023439"
id="tspan815"
sodipodi:role="line">Jan</tspan></text>
</g>
<g
id="g895"
transform="translate(25.302192,-40.662064)">
<rect
style="fill:#deaa87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect841"
width="22.98518"
height="12.962573"
x="46.504894"
y="40.688522"
rx="1.5987259"
ry="1.4699824" />
<text
id="text821"
y="51.115303"
x="48.393421"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="51.115303"
x="48.393421"
id="tspan819"
sodipodi:role="line">Feb</tspan></text>
</g>
<g
id="g859"
transform="translate(8.8651194,-40.528428)">
<rect
ry="1.4699824"
rx="1.5987259"
y="40.554886"
x="85.927147"
height="12.962573"
width="22.98518"
id="rect848"
style="fill:#c87137;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text825"
y="50.818886"
x="86.911331"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="50.818886"
x="86.911331"
id="tspan823"
sodipodi:role="line">Mar</tspan></text>
</g>
<g
id="g864"
transform="translate(66.996239,-59.504559)">
<rect
style="fill:#d4aa00;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect850"
width="22.98518"
height="12.962573"
x="73.76638"
y="59.531021"
rx="1.5987259"
ry="1.4699824" />
<text
id="text829"
y="68.769249"
x="76.065735"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="68.769249"
x="76.065735"
id="tspan827"
sodipodi:role="line">Apr</tspan></text>
</g>
<g
id="g869"
transform="translate(70.337103,-60.573634)">
<rect
ry="1.4699824"
rx="1.5987259"
y="60.600098"
x="116.39587"
height="12.962573"
width="22.98518"
id="rect852"
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text833"
y="69.838326"
x="116.58165"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="69.838326"
x="116.58165"
id="tspan831"
sodipodi:role="line">May</tspan></text>
</g>
<g
id="g874"
transform="translate(116.30745,-73.536204)">
<rect
style="fill:#aad400;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect854"
width="22.98518"
height="12.962573"
x="116.39587"
y="73.562668"
rx="1.5987259"
ry="1.4699824" />
<text
id="text837"
y="82.842232"
x="120.33853"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="82.842232"
x="120.33853"
id="tspan835"
sodipodi:role="line">Jun</tspan></text>
</g>
<g
transform="translate(10.869641,-21.017754)"
id="g882">
<rect
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect876"
width="22.98518"
height="12.962573"
x="14.967088"
y="21.044212"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="19.023439"
y="30.323778"
id="text880"><tspan
sodipodi:role="line"
id="tspan878"
x="19.023439"
y="30.323778"
style="stroke-width:0.26458332">Jan</tspan></text>
</g>
<g
id="g890"
transform="translate(33.854821,-21.017754)">
<rect
ry="1.4699824"
rx="1.5987259"
y="21.044212"
x="14.967088"
height="12.962573"
width="22.98518"
id="rect884"
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text888"
y="30.323778"
x="19.023439"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="30.323778"
x="19.023439"
id="tspan886"
sodipodi:role="line">Jan</tspan></text>
</g>
<g
id="g903"
transform="translate(31.850296,-40.528428)">
<rect
style="fill:#c87137;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect897"
width="22.98518"
height="12.962573"
x="85.927147"
y="40.554886"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="86.911331"
y="50.818886"
id="text901"><tspan
sodipodi:role="line"
id="tspan899"
x="86.911331"
y="50.818886"
style="stroke-width:0.26458332">Mar</tspan></text>
</g>
<g
id="g911"
transform="translate(93.32228,-60.573634)">
<rect
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect905"
width="22.98518"
height="12.962573"
x="116.39587"
y="60.600098"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="116.58165"
y="69.838326"
id="text909"><tspan
sodipodi:role="line"
id="tspan907"
x="116.58165"
y="69.838326"
style="stroke-width:0.26458332">May</tspan></text>
</g>
<g
id="g919"
transform="translate(47.351929,-60.573634)">
<rect
ry="1.4699824"
rx="1.5987259"
y="60.600098"
x="116.39587"
height="12.962573"
width="22.98518"
id="rect913"
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text917"
y="69.838326"
x="116.58165"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="69.838326"
x="116.58165"
id="tspan915"
sodipodi:role="line">May</tspan></text>
</g>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="17.12229"
y="34.681988"
id="text12877"><tspan
sodipodi:role="line"
id="tspan12875"
x="17.12229"
y="34.681988"
style="stroke-width:0.26458332">5</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="40.098167"
y="34.723846"
id="text12881"><tspan
sodipodi:role="line"
id="tspan12879"
x="40.098167"
y="34.723846"
style="stroke-width:0.26458332">9</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="63.038387"
y="34.723846"
id="text12885"><tspan
sodipodi:role="line"
id="tspan12883"
x="63.038387"
y="34.723846"
style="stroke-width:0.26458332">6</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="86.068527"
y="34.723846"
id="text12889"><tspan
sodipodi:role="line"
id="tspan12887"
x="86.068527"
y="34.723846"
style="stroke-width:0.26458332">9</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="108.97464"
y="34.726948"
id="text12893"><tspan
sodipodi:role="line"
id="tspan12891"
x="108.97464"
y="34.726948"
style="stroke-width:0.26458332">1</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="132.04819"
y="34.681988"
id="text12897"><tspan
sodipodi:role="line"
id="tspan12895"
x="132.04819"
y="34.681988"
style="stroke-width:0.26458332">5</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="155.08607"
y="34.768806"
id="text12901"><tspan
sodipodi:role="line"
id="tspan12899"
x="155.08607"
y="34.768806"
style="stroke-width:0.26458332">2</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="178.00923"
y="34.726948"
id="text12905"><tspan
sodipodi:role="line"
id="tspan12903"
x="178.00923"
y="34.726948"
style="stroke-width:0.26458332">4</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="200.98355"
y="34.723846"
id="text12909"><tspan
sodipodi:role="line"
id="tspan12907"
x="200.98355"
y="34.723846"
style="stroke-width:0.26458332">3</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="221.79677"
y="34.723846"
id="text12913"><tspan
sodipodi:role="line"
id="tspan12911"
x="221.79677"
y="34.723846"
style="stroke-width:0.26458332">10</tspan></text>
<text
transform="translate(-4.7656258,-14.603285)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="246.97406"
y="34.681988"
id="text12917"><tspan
sodipodi:role="line"
id="tspan12915"
x="246.97406"
y="34.681988"
style="stroke-width:0.26458332">5</tspan></text>
</g>
<g
inkscape:label="Sum"
inkscape:groupmode="layer"
id="layer1"
transform="translate(3.5693193,-14.603285)"
style="opacity:0.95999995">
<g
id="g960"
class="fragment"
transform="translate(0,11.641661)">
<rect
ry="0"
rx="0"
y="29.179819"
x="7.6171803"
height="3.4745057"
width="68.955536"
id="rect921"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text935"
y="32.109131"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="32.109131"
x="4.5933709"
id="tspan933"
sodipodi:role="line">1</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="76.572716"
y="44.295979"
id="text12988"
class="fragment"><tspan
sodipodi:role="line"
id="tspan12986"
x="76.572716"
y="44.295979"
style="stroke-width:0.26458332">20</tspan></text>
<g
id="g965"
class="fragment"
transform="translate(0,16.933328)">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect923"
width="91.673447"
height="3.4745064"
x="7.6171803"
y="34.241825"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="37.306305"
id="text939"><tspan
sodipodi:role="line"
id="tspan937"
x="4.5933709"
y="37.306305"
style="font-size:3.52777767px;stroke-width:0.26458332">2</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="99.290627"
y="54.649658"
id="text12992"
class="fragment"><tspan
sodipodi:role="line"
id="tspan12990"
x="99.290627"
y="54.649658"
style="stroke-width:0.26458332">29</tspan></text>
<g
id="g970"
class="fragment"
transform="translate(0,22.224995)">
<rect
ry="0"
rx="0"
y="39.533493"
x="7.6171803"
height="3.4745064"
width="137.97552"
id="rect925"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text943"
y="42.597973"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="42.597973"
x="4.5933709"
id="tspan941"
sodipodi:role="line">3</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="145.59271"
y="65.232986"
id="text12996"
class="fragment"><tspan
sodipodi:role="line"
id="tspan12994"
x="145.59271"
y="65.232986"
style="stroke-width:0.26458332">35</tspan></text>
<g
id="g975"
class="fragment"
transform="translate(0,27.516662)">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect927"
width="91.862434"
height="3.4745064"
x="76.572716"
y="44.525665"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="47.700653"
id="text947"><tspan
sodipodi:role="line"
id="tspan945"
x="4.5933709"
y="47.700653"
style="font-size:3.52777767px;stroke-width:0.26458332">4</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="168.43515"
y="75.51683"
id="text13000"
class="fragment"><tspan
sodipodi:role="line"
id="tspan12998"
x="168.43515"
y="75.51683"
style="stroke-width:0.26458332">17</tspan></text>
<g
id="g980"
class="fragment"
transform="translate(0,32.808329)">
<rect
ry="0"
rx="0"
y="49.587673"
x="99.290627"
height="3.4745045"
width="137.78654"
id="rect929"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text951"
y="52.67104"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="52.67104"
x="4.5933709"
id="tspan949"
sodipodi:role="line">5</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="237.07716"
y="85.870499"
id="text13004"
class="fragment"><tspan
sodipodi:role="line"
id="tspan13002"
x="237.07716"
y="85.870499"
style="stroke-width:0.26458332">25</tspan></text>
<g
id="g985"
class="fragment"
transform="translate(0,38.099996)">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect931"
width="114.919"
height="3.4745026"
x="145.59271"
y="54.879341"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="58.076099"
id="text955"><tspan
sodipodi:role="line"
id="tspan953"
x="4.5933709"
y="58.076099"
style="font-size:3.52777767px;stroke-width:0.26458332">6</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="260.51172"
y="96.453827"
id="text13008"
class="fragment"><tspan
sodipodi:role="line"
id="tspan13006"
x="260.51172"
y="96.453827"
style="stroke-width:0.26458332">24</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="-77.900253"
y="1.1435713"
id="text13084"
transform="rotate(-90)"
class=""><tspan
sodipodi:role="line"
id="tspan13082"
x="-77.900253"
y="1.1435713"
style="font-weight:bold;stroke-width:0.26458332">Sum</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

View file

@ -0,0 +1,469 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="255.77254mm"
height="43.777016mm"
viewBox="0 0 255.77254 43.777016"
version="1.1"
id="svg8"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="2019-03-08-Windows.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="408.96625"
inkscape:cy="69.347714"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-4.7656257,-14.603285)">
<g
id="g846"
transform="translate(-7.349912,-6.4144687)">
<rect
ry="1.4699824"
rx="1.5987259"
y="21.044212"
x="14.967088"
height="12.962573"
width="22.98518"
id="rect839"
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text817"
y="30.323778"
x="19.023439"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="30.323778"
x="19.023439"
id="tspan815"
sodipodi:role="line">Jan</tspan></text>
</g>
<g
id="g895"
transform="translate(30.067818,-26.058779)">
<rect
style="fill:#deaa87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect841"
width="22.98518"
height="12.962573"
x="46.504894"
y="40.688522"
rx="1.5987259"
ry="1.4699824" />
<text
id="text821"
y="51.115303"
x="48.393421"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="51.115303"
x="48.393421"
id="tspan819"
sodipodi:role="line">Feb</tspan></text>
</g>
<g
id="g859"
transform="translate(13.630745,-25.925142)">
<rect
ry="1.4699824"
rx="1.5987259"
y="40.554886"
x="85.927147"
height="12.962573"
width="22.98518"
id="rect848"
style="fill:#c87137;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text825"
y="50.818886"
x="86.911331"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="50.818886"
x="86.911331"
id="tspan823"
sodipodi:role="line">Mar</tspan></text>
</g>
<g
id="g864"
transform="translate(71.761864,-44.901273)">
<rect
style="fill:#d4aa00;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect850"
width="22.98518"
height="12.962573"
x="73.76638"
y="59.531021"
rx="1.5987259"
ry="1.4699824" />
<text
id="text829"
y="68.769249"
x="76.065735"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="68.769249"
x="76.065735"
id="tspan827"
sodipodi:role="line">Apr</tspan></text>
</g>
<g
id="g869"
transform="translate(75.10273,-45.97035)">
<rect
ry="1.4699824"
rx="1.5987259"
y="60.600098"
x="116.39587"
height="12.962573"
width="22.98518"
id="rect852"
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text833"
y="69.838326"
x="116.58165"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="69.838326"
x="116.58165"
id="tspan831"
sodipodi:role="line">May</tspan></text>
</g>
<g
id="g874"
transform="translate(121.07308,-58.93292)">
<rect
style="fill:#aad400;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect854"
width="22.98518"
height="12.962573"
x="116.39587"
y="73.562668"
rx="1.5987259"
ry="1.4699824" />
<text
id="text837"
y="82.842232"
x="120.33853"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="82.842232"
x="120.33853"
id="tspan835"
sodipodi:role="line">Jun</tspan></text>
</g>
<g
transform="translate(15.635267,-6.4144687)"
id="g882">
<rect
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect876"
width="22.98518"
height="12.962573"
x="14.967088"
y="21.044212"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="19.023439"
y="30.323778"
id="text880"><tspan
sodipodi:role="line"
id="tspan878"
x="19.023439"
y="30.323778"
style="stroke-width:0.26458332">Jan</tspan></text>
</g>
<g
id="g890"
transform="translate(38.620446,-6.4144687)">
<rect
ry="1.4699824"
rx="1.5987259"
y="21.044212"
x="14.967088"
height="12.962573"
width="22.98518"
id="rect884"
style="fill:#ac9d93;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text888"
y="30.323778"
x="19.023439"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="30.323778"
x="19.023439"
id="tspan886"
sodipodi:role="line">Jan</tspan></text>
</g>
<g
id="g903"
transform="translate(36.615921,-25.925142)">
<rect
style="fill:#c87137;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect897"
width="22.98518"
height="12.962573"
x="85.927147"
y="40.554886"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="86.911331"
y="50.818886"
id="text901"><tspan
sodipodi:role="line"
id="tspan899"
x="86.911331"
y="50.818886"
style="stroke-width:0.26458332">Mar</tspan></text>
</g>
<g
id="g911"
transform="translate(98.087906,-45.97035)">
<rect
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect905"
width="22.98518"
height="12.962573"
x="116.39587"
y="60.600098"
rx="1.5987259"
ry="1.4699824" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="116.58165"
y="69.838326"
id="text909"><tspan
sodipodi:role="line"
id="tspan907"
x="116.58165"
y="69.838326"
style="stroke-width:0.26458332">May</tspan></text>
</g>
<g
id="g919"
transform="translate(52.117554,-45.97035)">
<rect
ry="1.4699824"
rx="1.5987259"
y="60.600098"
x="116.39587"
height="12.962573"
width="22.98518"
id="rect913"
style="fill:#decd87;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text917"
y="69.838326"
x="116.58165"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="69.838326"
x="116.58165"
id="tspan915"
sodipodi:role="line">May</tspan></text>
</g>
<g
id="g960"
class="fragment">
<rect
ry="0"
rx="0"
y="29.179819"
x="7.6171803"
height="3.4745057"
width="68.955536"
id="rect921"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text935"
y="32.109131"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="32.109131"
x="4.5933709"
id="tspan933"
sodipodi:role="line">1</tspan></text>
</g>
<g
id="g965"
class="fragment">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect923"
width="91.673447"
height="3.4745064"
x="7.6171803"
y="34.241825"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="37.306305"
id="text939"><tspan
sodipodi:role="line"
id="tspan937"
x="4.5933709"
y="37.306305"
style="font-size:3.52777767px;stroke-width:0.26458332">2</tspan></text>
</g>
<g
id="g970"
class="fragment">
<rect
ry="0"
rx="0"
y="39.533493"
x="7.6171803"
height="3.4745064"
width="137.97552"
id="rect925"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text943"
y="42.597973"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="42.597973"
x="4.5933709"
id="tspan941"
sodipodi:role="line">3</tspan></text>
</g>
<g
id="g975"
class="fragment">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect927"
width="91.862434"
height="3.4745064"
x="76.572716"
y="44.525665"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="47.700653"
id="text947"><tspan
sodipodi:role="line"
id="tspan945"
x="4.5933709"
y="47.700653"
style="font-size:3.52777767px;stroke-width:0.26458332">4</tspan></text>
</g>
<g
id="g980"
class="fragment">
<rect
ry="0"
rx="0"
y="49.587673"
x="99.290627"
height="3.4745045"
width="137.78654"
id="rect929"
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
<text
id="text951"
y="52.67104"
x="4.5933709"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="52.67104"
x="4.5933709"
id="tspan949"
sodipodi:role="line">5</tspan></text>
</g>
<g
id="g985"
class="fragment">
<rect
style="fill:#6c6753;stroke:#808080;stroke-width:0.05291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect931"
width="114.919"
height="3.4745026"
x="145.59271"
y="54.879341"
rx="0"
ry="0" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1000;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="4.5933709"
y="58.076099"
id="text955"><tspan
sodipodi:role="line"
id="tspan953"
x="4.5933709"
y="58.076099"
style="font-size:3.52777767px;stroke-width:0.26458332">6</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB