Lecture Notes

This commit is contained in:
Oliver Kennedy 2018-02-23 01:43:24 -05:00
parent 0b65aee4f4
commit c7803eeb46
10 changed files with 4477 additions and 0 deletions

View file

@ -0,0 +1,321 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CSE 4/562 - Spring 2018</title>
<meta name="description" content="CSE 4/562 - Spring 2018">
<meta name="author" content="Oliver Kennedy">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="../reveal.js-3.6.0/css/reveal.css">
<link rel="stylesheet" href="ubodin.css" id="theme">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="../reveal.js-3.6.0/lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../reveal.js-3.6.0/css/print/pdf.css' : '../reveal.js-3.6.0/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<script src="../reveal.js-3.6.0/lib/js/head.min.js"></script>
<!--[if lt IE 9]>
<script src="../reveal.js-3.6.0/lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="header">
<!-- Any Talk-Specific Header Content Goes Here -->
CSE 4/562 - Database Systems
</div>
<div class="slides">
<section>
<h1>Indexes</h1>
<h3>CSE 4/562 Database Systems</h3>
<h5>February 19, 2018</h5>
</section>
<section>
<section>
<h3>Recap</h3>
</section>
<section>
<div style="display: inline-block; margin-right: 100px;">
<h3>Index</h3>
<img src="graphics/2018-02-23-Index.png" height="300px" />
</div>
<div style="display: inline-block;">
<h3>Data</h3>
<img src="graphics/2018-02-23-Data.png" height="300px" />
</div>
</section>
<section>
<p>Data, even if well organized still requires you to page through a lot.</p>
<p>An index helps you quickly jump to specific data you might be interested in.</p>
</section>
<section>
<h3>Data Organization</h3>
<dl>
<div class="fragment">
<dt>Unordered Heap</dt>
<dd>No organization at all. $O(N)$ reads.</dd>
</div>
<div class="fragment">
<dt>(Secondary) Index</dt>
<dd>Index structure over unorganized data. $O(\ll N)$ <b>random</b> reads for <b>some</b> queries.</dd>
</div>
<div class="fragment">
<dt>Clustered (Primary) Index</dt>
<dd>Index structure over clustered data. $O(\ll N)$ <b>sequential</b> reads for <b>some</b> queries.</dd>
</div>
</dl>
</section>
</section>
<section>
<section>
<h3>Hash Indexes</h3>
<p style="margin-top: 100px; text-align: left;">
A hash function $h(k)$ is ...
<dl>
<dt>... deterministic</dt>
<dd>The same $k$ always produces the same hash value.</dd>
<dt>... (pseudo-)random</dt>
<dd>Different $k$s are unlikely to have the same hash value.</dd>
</dl>
</p>
<p class="fragment">Modulus $h(k)\%N$ gives you a random number in $[0, N)$</p>
</section>
<section>
<svg data-src="graphics/2018-02-23-HashTable.svg" class="stretch"/>
</section>
<section>
<h3>Problems</h3>
<dl>
<dt>$N$ is too small</dt>
<dd>Too many overflow pages (slower reads).</dd>
<dt>$N$ is too big</dt>
<dd>Too many normal pages (wasted space).</dd>
</dl>
</section>
<section>
<p><b>Idea:</b> Resize the structure as needed</p>
</section>
<section>
<p>To keep things simple, let's use $$h(k) = k$$</p>
<p class="fragment" style="font-size: 70%">(you wouldn't actually do this in practice)</p>
</section>
<section>
<svg data-src="graphics/2018-02-23-HashResize-Naive.svg" class="stretch"/>
</section>
<section>
<h3>Problems</h3>
<dl>
<dt class="fragment" data-fragment-index="1">Changing hash functions reallocates everything</dt>
<dd class="fragment" data-fragment-index="1">Only double/halve the size of a hash function</dd>
<dt class="fragment" data-fragment-index="2">Changing sizes still requires reading everything</dt>
<dd class="fragment" data-fragment-index="3"><b>Idea:</b> Only redistribute buckets that are too big</dd>
</dl>
</section>
<section>
<svg data-src="graphics/2018-02-23-HashResize-Dynamic.svg" class="stretch" />
</section>
<section>
<h3>Dynamic Hashing</h3>
<ul>
<li>Add a level of indirection (Directory).</li>
<li>A data page $i$ can store data with $h(k)%2^n=i$ for any $n$.</li>
<li>Double the size of the directory (almost free) by duplicating existing entries.</li>
<li>When bucket $i$ fills up, split on the next power of 2.</li>
<li>Can also merge buckets/halve the directory size. </li>
</ul>
</section>
</section>
<section>
<section>
<h3>CDF-Based Indexing</h3>
<p class="fragment" style="margin-top: 100px;"><b>"The Case for Learned Index Structures"</b><br/>by Kraska, Beutel, Chi, Dean, Polyzotis</p>
</section>
<section>
<svg data-src="graphics/2018-02-23-CDF-Linear.svg"/>
</section>
<section>
<svg data-src="graphics/2018-02-23-CDF-LinearApprox.svg"/>
</section>
<section>
<h3>Cumulative Distribution Function (CDF)</h3>
<img src="graphics/2018-02-23-CDF-Plot.png" />
<p>$f(key) \mapsto position$</p>
<p class="fragment" style="font-size: 50%">(not exactly true, but close enough for today)</p>
</section>
<section>
<h3>Using CDFs to find records</h3>
<dl>
<dt>Ideal: $f(k) = position$</dt>
<dd>$f$ encodes the <b>exact</b> location of a record</dd>
<dt class="fragment">Ok: $f(k) \approx position$ <span class="fragment">($\left|f(k) - position\right| < \epsilon$)</span></dt>
<dd class="fragment">$f$ gets you to within $\epsilon$ of the key</dd>
<dd class="fragment">Only need local search on one (or so) leaf pages.</dd>
</dl>
<p class="fragment"><b>Simplified Use Case:</b> Static data with "infinite" prep time.</p>
</section>
<section>
<h3>How to define $f$?</h3>
<ul>
<li class="fragment">Linear ($f(k) = a\cdot k + b$)</li>
<li class="fragment">Polynomial ($f(k) = a\cdot k + b \cdot k^2 + \ldots$)</li>
<li class="fragment">Neural Network ($f(k) = $<img src="graphics/Clipart/magic-wand.png" height="100px" style="vertical-align: middle;">)</li>
</ul>
</section>
<section>
<p>We have infinite prep time, so fit a (tiny) neural network to the CDF.</p>
</section>
<section>
<h3>Neural Networks</h3>
<ul>
<dt class="fragment" data-fragment-index="1">Extremely Generalized Regression</dt>
<dd class="fragment" data-fragment-index="1">Essentially a really really really complex, fittable function with a lot of parameters.</dd>
<dt class="fragment" data-fragment-index="2">Captures Nonlinearities</dt>
<dd class="fragment" data-fragment-index="2">Most regressions can't handle discontinuous functions, which many key spaces have.</dd>
<dt class="fragment" data-fragment-index="3">No Branching</dt>
<dd class="fragment" data-fragment-index="3"><code>if</code> statements are <b>really</b> expensive on modern processors.</dd>
<dd class="fragment" data-fragment-index="4">(Compare to B+Trees with $\log_2 N$ if statements)</dd>
</ul>
</section>
<section>
<h3>Summary</h3>
<dl>
<dt>Tree Indexes</dt>
<dd>$O(\log N)$ access, supports range queries, easy size changes.</dd>
<dt>Hash Indexes</dt>
<dd>$O(1)$ access, doesn't change size efficiently, only equality tests.</dd>
<dt>CDF Indexes</dt>
<dd>$O(1)$ access, supports range queries, static data only.</dd>
</dl>
</section>
</section>
<section>
<p><b>Next Class:</b> Using Indexes</p>
</section>
</div></div>
<script src="../reveal.js-3.6.0/js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/../reveal.js#configuration
Reveal.initialize({
controls: false,
progress: true,
history: true,
center: true,
slideNumber: true,
transition: 'fade', // none/fade/slide/convex/concave/zoom
chart: {
defaults: {
global: {
title: { fontColor: "#333", fontSize: 24 },
legend: {
labels: { fontColor: "#333", fontSize: 20 },
},
responsiveness: true
},
scale: {
scaleLabel: { fontColor: "#333", fontSize: 20 },
gridLines: { color: "#333", zeroLineColor: "#333" },
ticks: { fontColor: "#333", fontSize: 16 },
}
},
line: { borderColor: [ "rgba(20,220,220,.8)" , "rgba(220,120,120,.8)", "rgba(20,120,220,.8)" ], "borderDash": [ [5,10], [0,0] ]},
bar: { backgroundColor: [
"rgba(220,220,220,0.8)",
"rgba(151,187,205,0.8)",
"rgba(205,151,187,0.8)",
"rgba(187,205,151,0.8)"
]
},
pie: { backgroundColor: [ ["rgba(0,0,0,.8)" , "rgba(220,20,20,.8)", "rgba(20,220,20,.8)", "rgba(220,220,20,.8)", "rgba(20,20,220,.8)"] ]},
radar: { borderColor: [ "rgba(20,220,220,.8)" , "rgba(220,120,120,.8)", "rgba(20,120,220,.8)" ]},
},
// Optional ../reveal.js plugins
dependencies: [
{ src: '../reveal.js-3.6.0/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: '../reveal.js-3.6.0/plugin/math/math.js',
condition: function() { return true; },
mathjax: '../reveal.js-3.6.0/js/MathJax.js'
},
{ src: '../reveal.js-3.6.0/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '../reveal.js-3.6.0/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '../reveal.js-3.6.0/plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: '../reveal.js-3.6.0/plugin/zoom-js/zoom.js', async: true },
{ src: '../reveal.js-3.6.0/plugin/notes/notes.js', async: true },
// Chart.min.js
{ src: '../reveal.js-3.6.0/plugin/chart/Chart.min.js'},
// the plugin
{ src: '../reveal.js-3.6.0/plugin/chart/csv2chart.js'},
{ src: '../reveal.js-3.6.0/plugin/svginline/es6-promise.auto.js', async: false },
{ src: '../reveal.js-3.6.0/plugin/svginline/data-src-svg.js', async: false }
]
});
</script>
</body>
</html>

View file

@ -0,0 +1,745 @@
<?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="108.24573mm"
height="61.899597mm"
viewBox="0 0 108.24573 61.8996"
version="1.1"
id="svg8"
sodipodi:docname="2018-02-23-CDF-Linear.svg"
inkscape:version="0.92.2 5c3e80d, 2017-08-06">
<defs
id="defs2">
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1364"
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.98994949"
inkscape:cx="-13.789868"
inkscape:cy="64.031378"
inkscape:document-units="mm"
inkscape:current-layer="g1652"
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="1031"
inkscape:window-x="0"
inkscape:window-y="1"
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(-32.037239,-21.356545)">
<g
id="g346"
class="fragment">
<g
transform="translate(-20.819374,16.427514)"
id="g8908"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8902"
width="13.468219"
height="15.829144"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="59.84589"
y="37.334286"
id="text8906"><tspan
sodipodi:role="line"
id="tspan8904"
x="59.84589"
y="37.334286"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">0</tspan></text>
</g>
<g
style="display:inline"
id="g122"
transform="translate(-7.3511577,16.427514)">
<rect
y="25.567236"
x="53.106613"
height="15.829144"
width="13.468219"
id="rect116"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text120"
y="37.334286"
x="59.84589"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332"
y="37.334286"
x="59.84589"
id="tspan118"
sodipodi:role="line">1</tspan></text>
</g>
<g
transform="translate(6.1170583,16.427514)"
id="g130"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect124"
width="13.468219"
height="15.829144"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="59.84589"
y="37.334286"
id="text128"><tspan
sodipodi:role="line"
id="tspan126"
x="59.84589"
y="37.334286"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">2</tspan></text>
</g>
<g
style="display:inline"
id="g138"
transform="translate(19.585274,16.427514)">
<rect
y="25.567236"
x="53.106613"
height="15.829144"
width="13.468219"
id="rect132"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text136"
y="37.334286"
x="59.84589"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332"
y="37.334286"
x="59.84589"
id="tspan134"
sodipodi:role="line">3</tspan></text>
</g>
<g
transform="translate(33.05349,16.427514)"
id="g146"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect140"
width="13.468219"
height="15.829144"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="59.84589"
y="37.334286"
id="text144"><tspan
sodipodi:role="line"
id="tspan142"
x="59.84589"
y="37.334286"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">4</tspan></text>
</g>
<g
style="display:inline"
id="g154"
transform="translate(46.521706,16.427514)">
<rect
y="25.567236"
x="53.106613"
height="15.829144"
width="13.468219"
id="rect148"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text152"
y="37.334286"
x="59.84589"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332"
y="37.334286"
x="59.84589"
id="tspan150"
sodipodi:role="line">5</tspan></text>
</g>
<g
transform="translate(59.989922,16.427514)"
id="g162"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect156"
width="13.468219"
height="15.829144"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="59.84589"
y="37.334286"
id="text160"><tspan
sodipodi:role="line"
id="tspan158"
x="59.84589"
y="37.334286"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">6</tspan></text>
</g>
<g
style="display:inline"
id="g170"
transform="translate(73.458138,16.427514)">
<rect
y="25.567236"
x="53.106613"
height="15.829144"
width="13.468219"
id="rect164"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text168"
y="37.334286"
x="59.84589"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332"
y="37.334286"
x="59.84589"
id="tspan166"
sodipodi:role="line">0</tspan></text>
</g>
<g
transform="translate(73.458138,16.427514)"
id="g178"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect172"
width="13.468219"
height="15.829144"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="59.84589"
y="37.334286"
id="text176"><tspan
sodipodi:role="line"
id="tspan174"
x="59.84589"
y="37.334286"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">7</tspan></text>
</g>
</g>
<g
id="g444"
class="fragment fade-out">
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g8916"
transform="translate(-23.888092,-1.5119049)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect8910"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text8914"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan8912"
sodipodi:role="line">1</tspan></text>
</g>
<g
style="display:inline"
transform="translate(-13.040177,-1.5119049)"
id="g40"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect34"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text38"><tspan
sodipodi:role="line"
id="tspan36"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">2</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g48"
transform="translate(-2.1922635,-1.5119049)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect42"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text46"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan44"
sodipodi:role="line">3</tspan></text>
</g>
<g
style="display:inline"
transform="translate(8.6556512,-1.5119049)"
id="g56"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect50"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text54"><tspan
sodipodi:role="line"
id="tspan52"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">4</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g64"
transform="translate(19.503569,-1.5119049)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect58"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text62"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan60"
sodipodi:role="line">5</tspan></text>
</g>
<g
style="display:inline"
transform="translate(30.351484,-1.5119049)"
id="g72"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect66"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text70"><tspan
sodipodi:role="line"
id="tspan68"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">6</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g80"
transform="translate(41.199399,-1.5119049)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect74"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text78"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan76"
sodipodi:role="line">7</tspan></text>
</g>
<g
style="display:inline"
transform="translate(-34.736007,-1.5119049)"
id="g88"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect82"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text86"><tspan
sodipodi:role="line"
id="tspan84"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">0</tspan></text>
</g>
</g>
<g
id="g478"
class="fragment">
<g
style="display:inline"
transform="translate(-29.217114,22.005434)"
id="g354"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect348"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text352"><tspan
sodipodi:role="line"
id="tspan350"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">1</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g362"
transform="translate(-15.723364,22.005434)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect356"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text360"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan358"
sodipodi:role="line">2</tspan></text>
</g>
<g
style="display:inline"
transform="translate(-2.2296205,22.005434)"
id="g370"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect364"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text368"><tspan
sodipodi:role="line"
id="tspan366"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">3</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g378"
transform="translate(11.264128,22.005434)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect372"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text376"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan374"
sodipodi:role="line">4</tspan></text>
</g>
<g
style="display:inline"
transform="translate(24.757887,22.005434)"
id="g386"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect380"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text384"><tspan
sodipodi:role="line"
id="tspan382"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">5</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g394"
transform="translate(38.251637,22.005434)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect388"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text392"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan390"
sodipodi:role="line">6</tspan></text>
</g>
<g
style="display:inline"
transform="translate(51.745387,22.005434)"
id="g402"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect396"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text400"><tspan
sodipodi:role="line"
id="tspan398"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">7</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g410"
transform="translate(-42.710864,22.005434)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect404"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text408"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan406"
sodipodi:role="line">0</tspan></text>
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="40.85714"
y="81.860878"
id="text548"
class="fragment"><tspan
sodipodi:role="line"
id="tspan546"
x="40.85714"
y="81.860878"
style="stroke-width:0.26458332">f(k) = k</tspan></text>
<g
id="g1652"
class="fragment">
<text
id="text552"
y="82.395424"
x="101.52731"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;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.395424"
x="101.52731"
id="tspan550"
sodipodi:role="line">5?</tspan></text>
<path
inkscape:connector-curvature="0"
id="path554"
d="M 107.67451,72.506448 106.87271,59.94478"
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)"
class="fragment" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 40 KiB

View file

@ -0,0 +1,793 @@
<?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="108.24573mm"
height="61.899597mm"
viewBox="0 0 108.24573 61.8996"
version="1.1"
id="svg8"
sodipodi:docname="2018-02-23-CDF-LinearApprox.svg"
inkscape:version="0.92.2 5c3e80d, 2017-08-06">
<defs
id="defs2">
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker2031"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path2029"
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="marker1839"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1837" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path1364"
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.98994949"
inkscape:cx="-13.789868"
inkscape:cy="64.031378"
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="1031"
inkscape:window-x="0"
inkscape:window-y="1"
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(-32.037239,-21.356545)">
<g
id="g346"
class="fragment">
<g
transform="translate(-20.819374,16.427514)"
id="g8908"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8902"
width="13.468219"
height="15.829144"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="59.84589"
y="37.334286"
id="text8906"><tspan
sodipodi:role="line"
id="tspan8904"
x="59.84589"
y="37.334286"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">0</tspan></text>
</g>
<g
style="display:inline"
id="g122"
transform="translate(-7.3511577,16.427514)">
<rect
y="25.567236"
x="53.106613"
height="15.829144"
width="13.468219"
id="rect116"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text120"
y="37.334286"
x="59.84589"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332"
y="37.334286"
x="59.84589"
id="tspan118"
sodipodi:role="line">1</tspan></text>
</g>
<g
transform="translate(6.1170583,16.427514)"
id="g130"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect124"
width="13.468219"
height="15.829144"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="59.84589"
y="37.334286"
id="text128"><tspan
sodipodi:role="line"
id="tspan126"
x="59.84589"
y="37.334286"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">2</tspan></text>
</g>
<g
style="display:inline"
id="g138"
transform="translate(19.585274,16.427514)">
<rect
y="25.567236"
x="53.106613"
height="15.829144"
width="13.468219"
id="rect132"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text136"
y="37.334286"
x="59.84589"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332"
y="37.334286"
x="59.84589"
id="tspan134"
sodipodi:role="line">3</tspan></text>
</g>
<g
transform="translate(33.05349,16.427514)"
id="g146"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect140"
width="13.468219"
height="15.829144"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="59.84589"
y="37.334286"
id="text144"><tspan
sodipodi:role="line"
id="tspan142"
x="59.84589"
y="37.334286"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">4</tspan></text>
</g>
<g
style="display:inline"
id="g154"
transform="translate(46.521706,16.427514)">
<rect
y="25.567236"
x="53.106613"
height="15.829144"
width="13.468219"
id="rect148"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text152"
y="37.334286"
x="59.84589"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332"
y="37.334286"
x="59.84589"
id="tspan150"
sodipodi:role="line">5</tspan></text>
</g>
<g
transform="translate(59.989922,16.427514)"
id="g162"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect156"
width="13.468219"
height="15.829144"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="59.84589"
y="37.334286"
id="text160"><tspan
sodipodi:role="line"
id="tspan158"
x="59.84589"
y="37.334286"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">6</tspan></text>
</g>
<g
style="display:inline"
id="g170"
transform="translate(73.458138,16.427514)">
<rect
y="25.567236"
x="53.106613"
height="15.829144"
width="13.468219"
id="rect164"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text168"
y="37.334286"
x="59.84589"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332"
y="37.334286"
x="59.84589"
id="tspan166"
sodipodi:role="line">0</tspan></text>
</g>
<g
transform="translate(73.458138,16.427514)"
id="g178"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect172"
width="13.468219"
height="15.829144"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="59.84589"
y="37.334286"
id="text176"><tspan
sodipodi:role="line"
id="tspan174"
x="59.84589"
y="37.334286"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">7</tspan></text>
</g>
</g>
<g
id="g444"
class="fragment fade-out">
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g8916"
transform="translate(-23.888092,-1.5119049)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect8910"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text8914"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan8912"
sodipodi:role="line">1</tspan></text>
</g>
<g
style="display:inline"
transform="translate(-13.040177,-1.5119049)"
id="g40"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect34"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text38"><tspan
sodipodi:role="line"
id="tspan36"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">2</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g48"
transform="translate(-2.1922635,-1.5119049)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect42"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text46"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan44"
sodipodi:role="line">3</tspan></text>
</g>
<g
style="display:inline"
transform="translate(8.6556512,-1.5119049)"
id="g56"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect50"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text54"><tspan
sodipodi:role="line"
id="tspan52"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">5</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g64"
transform="translate(19.503569,-1.5119049)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect58"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text62"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan60"
sodipodi:role="line">6</tspan></text>
</g>
<g
style="display:inline"
transform="translate(30.351484,-1.5119049)"
id="g72"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect66"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text70"><tspan
sodipodi:role="line"
id="tspan68"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">7</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g80"
transform="translate(41.199399,-1.5119049)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect74"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text78"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan76"
sodipodi:role="line">8</tspan></text>
</g>
<g
style="display:inline"
transform="translate(-34.736007,-1.5119049)"
id="g88"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect82"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text86"><tspan
sodipodi:role="line"
id="tspan84"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">0</tspan></text>
</g>
</g>
<g
id="g478"
class="fragment">
<g
style="display:inline"
transform="translate(-29.217114,22.005434)"
id="g354"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect348"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text352"><tspan
sodipodi:role="line"
id="tspan350"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">1</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g362"
transform="translate(-15.723364,22.005434)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect356"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text360"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan358"
sodipodi:role="line">2</tspan></text>
</g>
<g
style="display:inline"
transform="translate(-2.2296205,22.005434)"
id="g370"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect364"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text368"><tspan
sodipodi:role="line"
id="tspan366"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">3</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g378"
transform="translate(11.264128,22.005434)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect372"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text376"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan374"
sodipodi:role="line">5</tspan></text>
</g>
<g
style="display:inline"
transform="translate(24.757887,22.005434)"
id="g386"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect380"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text384"><tspan
sodipodi:role="line"
id="tspan382"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">6</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g394"
transform="translate(38.251637,22.005434)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect388"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text392"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan390"
sodipodi:role="line">7</tspan></text>
</g>
<g
style="display:inline"
transform="translate(51.745387,22.005434)"
id="g402"
inkscape:transform-center-x="8.8198944"
inkscape:transform-center-y="-20.312484">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect396"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text400"><tspan
sodipodi:role="line"
id="tspan398"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">8</tspan></text>
</g>
<g
inkscape:transform-center-y="-20.312484"
inkscape:transform-center-x="8.8198944"
id="g410"
transform="translate(-42.710864,22.005434)"
style="display:inline">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect404"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text408"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan406"
sodipodi:role="line">0</tspan></text>
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="40.85714"
y="81.860878"
id="text548"
class="fragment"><tspan
sodipodi:role="line"
x="40.85714"
y="81.860878"
style="stroke-width:0.26458332"
id="tspan1699">f(k) = k±1 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="107.75114"
y="80.274536"
id="text552"
class="fragment"><tspan
sodipodi:role="line"
id="tspan550"
x="107.75114"
y="80.274536"
style="stroke-width:0.26458332">5?</tspan></text>
<g
id="g2270"
class="fragment">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path554"
d="m 113.89834,70.38556 -6.949,-11.22532"
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)"
class="" />
<path
class=""
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(#marker1839)"
d="M 113.89834,70.38556 93.585864,58.89297"
id="path1835"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path2027"
d="m 113.89834,70.38556 5.87994,-12.294399"
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(#marker2031)"
class="" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

View file

@ -0,0 +1,704 @@
<?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="130.83144mm"
height="80.862282mm"
viewBox="0 0 130.83144 80.862282"
version="1.1"
id="svg8136"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
sodipodi:docname="2018-02-23-HashResize-Dynamic.svg">
<defs
id="defs8130" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="208.88297"
inkscape:cy="125.42993"
inkscape:document-units="mm"
inkscape:current-layer="svg8136"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1031"
inkscape:window-x="0"
inkscape:window-y="1"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata8133">
<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="Headers"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
class=""
transform="translate(-3.3065529,-3.9650993)">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="2.2678566"
y="12.005952"
id="text8442"><tspan
sodipodi:role="line"
id="tspan8440"
x="2.2678566"
y="12.005952"
style="stroke-width:0.26458332">Directory</tspan></text>
<text
id="text8446"
y="12.005952"
x="74.839279"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;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="12.005952"
x="74.839279"
id="tspan8444"
sodipodi:role="line">Data Pages</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="2 Pages"
class="fragment"
transform="translate(-3.3065529,-3.9650993)">
<g
transform="translate(30.804099,-7.5136679)"
id="g8628"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8622"
width="42.333332"
height="16.630953"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="74.27845"
y="37.735191"
id="text8626"><tspan
sodipodi:role="line"
id="tspan8624"
x="74.27845"
y="37.735191"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">0</tspan></text>
</g>
<g
transform="translate(30.804099,9.1172853)"
id="g8636"
style="display:inline">
<rect
y="25.567236"
x="53.106613"
height="16.630953"
width="42.333332"
id="rect8630"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text8634"
y="37.735191"
x="74.27845"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332"
y="37.735191"
x="74.27845"
id="tspan8632"
sodipodi:role="line">1</tspan></text>
</g>
<rect
style="display:inline;fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.28592426;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8638"
width="13.821218"
height="16.657711"
x="19.54772"
y="17.946529" />
<rect
y="34.60424"
x="19.54772"
height="16.657711"
width="13.821218"
id="rect8640"
style="display:inline;fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.28592426;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="23.233719"
y="30.202793"
id="text8654"><tspan
sodipodi:role="line"
id="tspan8652"
x="23.233719"
y="30.202793"
style="stroke-width:0.26458332">0</tspan></text>
<text
id="text8658"
y="46.860504"
x="23.233719"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;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="46.860504"
x="23.233719"
id="tspan8656"
sodipodi:role="line">1</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer8"
inkscape:label="Data-1"
style="display:inline"
class="fragment"
transform="translate(-3.3065529,-3.9650993)">
<g
id="g8697"
transform="translate(10.753424,-1.5497084)">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect3411"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text3415"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan3413"
sodipodi:role="line">2</tspan></text>
</g>
<g
transform="translate(23.718007,-1.5497084)"
id="g8711">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8705"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text8709"><tspan
sodipodi:role="line"
id="tspan8707"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">4</tspan></text>
</g>
<g
transform="translate(10.753424,14.892256)"
id="g8723">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8717"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text8721"><tspan
sodipodi:role="line"
id="tspan8719"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">1</tspan></text>
</g>
<g
id="g8731"
transform="translate(23.718007,14.892256)">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect8725"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text8729"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan8727"
sodipodi:role="line">3</tspan></text>
</g>
<g
id="g8743"
transform="translate(36.68259,14.892256)">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect8737"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text8741"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan8739"
sodipodi:role="line">5</tspan></text>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer12"
inkscape:label="Double Size"
style="display:inline"
class="fragment">
<rect
transform="translate(-3.3065529,-3.9650993)"
style="display:inline;fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.28592426;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect9292"
width="13.821218"
height="16.657711"
x="19.54772"
y="67.91967" />
<text
transform="translate(-3.3065529,-3.9650993)"
id="text9296"
y="80.101006"
x="23.094193"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="80.101006"
x="23.094193"
id="tspan9294"
sodipodi:role="line">1</tspan></text>
<rect
transform="translate(-3.3065529,-3.9650993)"
style="display:inline;fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.28592426;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8779"
width="13.821218"
height="16.657711"
x="19.54772"
y="51.261959" />
<text
transform="translate(-3.3065529,-3.9650993)"
id="text8791"
y="63.443291"
x="23.094193"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="63.443291"
x="23.094193"
id="tspan8789"
sodipodi:role="line">0</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer13"
inkscape:label="Allocate Page"
class="fragment">
<g
transform="translate(27.497545,38.414092)"
id="g8777"
style="display:inline">
<rect
y="25.567236"
x="53.106613"
height="16.630953"
width="42.333332"
id="rect8771"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text8775"
y="37.735191"
x="74.27845"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332"
y="37.735191"
x="74.27845"
id="tspan8773"
sodipodi:role="line">3</tspan></text>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Split Page 1"
class="fragment"
transform="translate(-3.3065529,-3.9650993)"
style="display:inline">
<rect
y="67.91967"
x="19.54772"
height="16.657711"
width="13.821218"
id="rect8781"
style="display:inline;fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.28592426;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="23.094193"
y="80.101006"
id="text8797"><tspan
sodipodi:role="line"
id="tspan8795"
x="23.094193"
y="80.101006"
style="stroke-width:0.26458332">3</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer9"
inkscape:label="Data-2"
style="display:inline"
class="fragment"
transform="translate(-3.3065529,-3.9650993)">
<g
style="display:inline"
id="g8805"
transform="translate(30.804099,9.1172853)">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8799"
width="42.333332"
height="16.630953"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="74.27845"
y="37.735191"
id="text8803"><tspan
sodipodi:role="line"
id="tspan8801"
x="74.27845"
y="37.735191"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">1</tspan></text>
</g>
<g
style="display:inline"
id="g8822"
transform="translate(10.753424,14.892256)">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect8816"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text8820"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan8818"
sodipodi:role="line">1</tspan></text>
</g>
<g
style="display:inline"
transform="translate(10.753424,48.343149)"
id="g8830">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8824"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text8828"><tspan
sodipodi:role="line"
id="tspan8826"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">3</tspan></text>
</g>
<g
style="display:inline"
transform="translate(23.718007,14.892256)"
id="g8838">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8832"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text8836"><tspan
sodipodi:role="line"
id="tspan8834"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">5</tspan></text>
</g>
<g
id="g8858"
transform="translate(23.718007,48.343149)"
style="display:inline"
class="fragment">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect8852"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text8856"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan8854"
sodipodi:role="line">7</tspan></text>
</g>
<g
style="display:inline"
id="g8874"
transform="translate(36.68259,-1.5497084)"
class="fragment">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect8868"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text8872"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan8870"
sodipodi:role="line">6</tspan></text>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer10"
inkscape:label="Split Page 0"
transform="translate(-3.3065529,-3.9650993)"
class="fragment"
style="display:inline">
<g
id="g8887"
transform="translate(30.804099,25.748239)"
style="display:inline">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8881"
width="42.333332"
height="16.630953"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="74.27845"
y="37.735191"
id="text8885"><tspan
sodipodi:role="line"
id="tspan8883"
x="74.27845"
y="37.735191"
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332">2</tspan></text>
</g>
<rect
y="51.261959"
x="19.54772"
height="16.657711"
width="13.821218"
id="rect8893"
style="display:inline;fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.28592426;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="23.094193"
y="63.443291"
id="text8897"><tspan
sodipodi:role="line"
id="tspan8895"
x="23.094193"
y="63.443291"
style="stroke-width:0.26458332">2</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer11"
inkscape:label="Data-3"
transform="translate(-3.3065529,-3.9650993)"
class="fragment"
style="display:inline">
<g
style="display:inline"
id="g8908"
transform="translate(30.804099,-7.5136679)">
<rect
y="25.567236"
x="53.106613"
height="16.630953"
width="42.333332"
id="rect8902"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text8906"
y="37.735191"
x="74.27845"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;fill:#999999;stroke-width:0.26458332"
y="37.735191"
x="74.27845"
id="tspan8904"
sodipodi:role="line">0</tspan></text>
</g>
<g
style="display:inline"
transform="translate(10.753424,-1.5497084)"
id="g8916">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8910"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text8914"><tspan
sodipodi:role="line"
id="tspan8912"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">2</tspan></text>
</g>
<g
style="display:inline"
id="g8924"
transform="translate(23.718007,-1.5497084)">
<rect
ry="2.6458352"
y="23.11845"
x="76.748062"
height="9.5250053"
width="9.7895842"
id="rect8918"
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text8922"
y="30.151272"
x="81.586357"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="30.151272"
x="81.586357"
id="tspan8920"
sodipodi:role="line">4</tspan></text>
</g>
<g
transform="translate(10.753424,31.712196)"
id="g8957"
style="display:inline">
<rect
style="display:inline;fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8951"
width="9.7895842"
height="9.5250053"
x="76.748062"
y="23.11845"
ry="2.6458352" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="81.586357"
y="30.151272"
id="text8955"><tspan
sodipodi:role="line"
id="tspan8953"
x="81.586357"
y="30.151272"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332">6</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 66 KiB

View file

@ -0,0 +1,540 @@
<?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="233.78786mm"
height="169.44829mm"
viewBox="0 0 233.78786 169.44829"
version="1.1"
id="svg8"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
sodipodi:docname="2018-02-23-HashTable.svg">
<defs
id="defs2">
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker2512"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path2510"
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)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker2158"
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="path2156"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker2088"
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="path2086"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker1954"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1952"
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="marker1902"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1900"
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="marker1856"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1854"
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="marker1624"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1622"
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="marker1206"
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="path1204"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker1178"
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="path1176"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker1156"
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="path1154"
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="path875"
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="1"
inkscape:cx="182.1925"
inkscape:cy="367.60749"
inkscape:document-units="mm"
inkscape:current-layer="g2259"
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="1031"
inkscape:window-x="0"
inkscape:window-y="1"
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(-10.068749,-16.850569)">
<g
id="g1824"
class="fragment">
<g
transform="translate(41.275,-8.4666666)"
id="g19">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect10"
width="42.333332"
height="16.630953"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="74.27845"
y="37.735191"
id="text14"><tspan
sodipodi:role="line"
id="tspan12"
x="74.27845"
y="37.735191"
style="text-align:center;text-anchor:middle;stroke-width:0.26458332">0</tspan></text>
</g>
<g
transform="translate(41.275,8.1642867)"
id="g27">
<rect
y="25.567236"
x="53.106613"
height="16.630953"
width="42.333332"
id="rect21"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text25"
y="37.735191"
x="74.27845"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;stroke-width:0.26458332"
y="37.735191"
x="74.27845"
id="tspan23"
sodipodi:role="line">1</tspan></text>
</g>
<g
id="g35"
transform="translate(41.275,24.79524)">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect29"
width="42.333332"
height="16.630953"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="74.27845"
y="37.735191"
id="text33"><tspan
sodipodi:role="line"
id="tspan31"
x="74.27845"
y="37.735191"
style="text-align:center;text-anchor:middle;stroke-width:0.26458332">2</tspan></text>
</g>
<g
transform="translate(41.275,41.426193)"
id="g43">
<rect
y="25.567236"
x="53.106613"
height="102.42447"
width="42.333328"
id="rect37"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text41"
y="80.63195"
x="74.278442"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;stroke-width:0.26458332"
y="80.63195"
x="74.278442"
id="tspan39"
sodipodi:role="line">...</tspan></text>
</g>
<g
transform="translate(41.275,143.85067)"
id="g51">
<rect
y="25.567236"
x="53.106613"
height="16.630953"
width="42.333332"
id="rect45"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text49"
y="37.735191"
x="74.27845"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;stroke-width:0.26458332"
y="37.735191"
x="74.27845"
id="tspan47"
sodipodi:role="line">N-1</tspan></text>
</g>
</g>
<g
id="g2412"
class="fragment">
<rect
ry="2.6458352"
y="41.941666"
x="10.318749"
height="9.5250053"
width="25.664585"
id="rect53"
style="fill:#c87137;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text2407"
y="48.974487"
x="23.094545"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;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;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="48.974487"
x="23.094545"
id="tspan2405"
sodipodi:role="line">&lt;k,v&gt;</tspan></text>
</g>
<g
id="g1708"
class="fragment">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path59"
d="M 61.780207,89.83125 94.381612,33.731522"
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(#marker1156)" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path61"
d="M 61.780207,89.83125 94.381612,50.362474"
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
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path63"
d="M 61.780207,89.83125 94.381612,66.993428"
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(#marker1206)" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path65"
d="M 61.780207,89.83125 94.381612,169.4179"
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(#marker1178)" />
<text
id="text1246"
y="97.768745"
x="76.199997"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;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="97.768745"
x="76.199997"
id="tspan1244"
sodipodi:role="line">...</tspan></text>
<g
id="g2397">
<text
id="text57"
y="94.064583"
x="14.552083"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;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="94.064583"
x="14.552083"
id="tspan55"
sodipodi:role="line">h(k) % N</tspan></text>
<path
inkscape:connector-curvature="0"
id="path1614"
d="m 19.446875,51.86354 7.276041,33.602083"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker1624)" />
<text
id="text1670"
y="69.125999"
x="25.069881"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;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.125999"
x="25.069881"
id="tspan1668"
sodipodi:role="line">k</tspan></text>
</g>
</g>
<g
id="g2259"
class="fragment">
<g
id="g1802"
transform="translate(97.763536,-8.4666666)">
<rect
y="25.567236"
x="53.106613"
height="16.630953"
width="42.333332"
id="rect1796"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text1800"
y="37.735191"
x="74.27845"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;stroke-width:0.26458332"
y="37.735191"
x="74.27845"
id="tspan1798"
sodipodi:role="line">0'</tspan></text>
</g>
<g
transform="translate(148.16666,-8.4666666)"
id="g1832">
<rect
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect1826"
width="42.333332"
height="16.630953"
x="53.106613"
y="25.567236" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="74.27845"
y="37.735191"
id="text1830"><tspan
sodipodi:role="line"
id="tspan1828"
x="74.27845"
y="37.735191"
style="text-align:center;text-anchor:middle;stroke-width:0.26458332">0''</tspan></text>
</g>
<g
id="g1840"
transform="translate(97.763537,24.79524)">
<rect
y="25.567236"
x="53.106613"
height="16.630953"
width="42.333332"
id="rect1834"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text1838"
y="37.735191"
x="74.27845"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="text-align:center;text-anchor:middle;stroke-width:0.26458332"
y="37.735191"
x="74.27845"
id="tspan1836"
sodipodi:role="line">2'</tspan></text>
</g>
<path
inkscape:connector-curvature="0"
id="path1842"
d="m 134.40833,25.416046 15.875,0"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2088)"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path1844"
d="m 191.02917,25.416046 9.52499,0"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2158)"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 132.48158,17.100569 V 33.731522"
id="path2414"
inkscape:connector-curvature="0" />
<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(#marker2512)"
d="m 134.40833,58.677952 h 15.875"
id="path2506"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path2508"
d="M 132.48158,50.362475 V 66.993428"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path2782"
d="M 189.10241,17.100569 V 33.731522"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 KiB