This commit is contained in:
Gokhan Kul 2018-02-02 19:04:20 -05:00
commit 3cb34e0a56
17 changed files with 14661 additions and 89 deletions

View file

@ -5,7 +5,8 @@
"due": "",
"topic": "Introduction",
"materials": {
"slides" : "https://odin.cse.buffalo.edu/slides/cse4562sp2018/2018-01-29-Intro.html"
"slides" : "https://odin.cse.buffalo.edu/slides/cse4562sp2018/2018-01-29-Intro.html",
"print" : "https://odin.cse.buffalo.edu/slides/cse4562sp2018/2018-01-29-Intro.html?print-pdf"
}
},
{
@ -14,7 +15,8 @@
"due": "",
"topic": "SQL Overview + Physical Data Organization",
"materials": {
"slides" : "https://odin.cse.buffalo.edu/slides/cse4562sp2018/2018-01-31-SQL+Physical.html"
"slides" : "https://odin.cse.buffalo.edu/slides/cse4562sp2018/2018-01-31-SQL+Physical.html",
"print" : "https://odin.cse.buffalo.edu/slides/cse4562sp2018/2018-01-31-SQL+Physical.html?print-pdf"
}
},
{

View file

@ -2,6 +2,7 @@ require 'yaml'
require 'redcarpet'
require 'erb'
require 'pipeline.rb'
require 'date'
class Array
def where

View file

@ -43,13 +43,6 @@
<!-- Any Talk-Specific Header Content Goes Here -->
CSE 4/562 - Database Systems
</div>
<div class="footer">
<!-- Any Talk-Specific Footer Content Goes Here -->
<div style="float: left; margin-top: 15px; ">
Exploring <u><b>O</b></u>nline <u><b>D</b></u>ata <u><b>In</b></u>teractions
</div>
<img src="graphics/LabLogo-FullText-white.png" height="40" style="float: right;"/>
</div>
<div class="slides">
@ -502,7 +495,7 @@
// Full list of configuration options available at:
// https://github.com/hakimel/../reveal.js#configuration
Reveal.initialize({
controls: false,
controls: true,
progress: true,
history: true,
center: true,

View file

@ -43,13 +43,6 @@
<!-- Any Talk-Specific Header Content Goes Here -->
CSE 4/562 - Database Systems
</div>
<div class="footer">
<!-- Any Talk-Specific Footer Content Goes Here -->
<div style="float: left; margin-top: 15px; ">
Exploring <u><b>O</b></u>nline <u><b>D</b></u>ata <u><b>In</b></u>teractions
</div>
<img src="graphics/LabLogo-FullText-white.png" height="40" style="float: right;"/>
</div>
<div class="slides">
@ -237,7 +230,7 @@
SELECT tree_id FROM Trees WHERE spc_common = 'sycamore maple'
</code></pre>
<p style="font-size: 70%">Computes the <b>set-union</b> of any two <b>union-compatible</b> sets of tuples</p>
<p style="font-size: 70%">Adding <code>ALL</code> preserves duplicates across the inputs.</p>
<p style="font-size: 70%">Adding <code>ALL</code> preserves duplicates across the inputs (<b>bag-union</b>).</p>
</section>
<section>
@ -247,15 +240,13 @@
FROM relationlist
WHERE condition
GROUP BY groupinglist
HAVING group-condition
HAVING groupcondition
</code></pre>
<div style="font-size: 70%">
<p>The target-list now contains...<ol class="tight" style="margin-top: 0px; margin-left: 100px;">
<li>grouped attributes</li>
<li>aggregate expressions</li>
</ol></p>
<p>Targets of type (1) must be a subset of the grouping-list</p>
<p>The <span color="red">targetlist</span> now contains <b>(a)</b> Grouped attributes, and <b>(b)</b>Aggregate expressions.</p>
<p>Targets of type (a) must be a subset of the grouping-list</p>
<p style="font-size: 70%">(intuitively each answer tuple corresponds to a single group, and each group must have a single value for each attribute)</p>
<p style="margin-top: 20px"><span color="red">groupcondition</span> is applied <i>after</i> aggregation and may contain aggregate expressions.</p>
</div>
</section>
@ -317,10 +308,24 @@
</section>
<section>
<h3>Record Layout 2: Delimiters</h3>
<h3>Record Layout 2: Headers</h3>
<svg data-src="graphics/2018-01-31-record-header.svg" />
</section>
<section>
<h3>Record Formats</h3>
<dl>
<dt>Fixed</dt>
<dd>Constant-size fields. Field $i$ at byte $\sum_{j < i} |Field_j|$</dd>
<dt>Delimited</dt>
<dd>Special character or string (e.g., <code>,</code>) between fields</dd>
<dt>Header</dt>
<dd>Fixed-size header points to start of each field</dd>
<dt>&nbsp;</dt>
<dd>&nbsp;</dd>
</dl>
</section>
<section>
<h3>File Formats</h3>
<dl>
@ -341,6 +346,7 @@
<section>
<svg data-src="graphics/2018-01-31-mem_bulk_loading.svg" class="stretch"/>
<imagecredits>openclipart.org</imagecredits>
</section>
<section>
@ -356,6 +362,19 @@
<dd>A primitive value (for now)</dd>
</dl>
</section>
<section>
<svg data-src="graphics/2018-01-29-db_as_mediator.svg" class="stretch"/>
</section>
<section>
<pre><code class="python">
with db_open('Trees') as data:
for record in data:
if(records['BORONAME'] == 'Brooklyn'):
print(fields['TREE_ID']);
</code></pre>
</section>
</section>
@ -369,7 +388,7 @@
// Full list of configuration options available at:
// https://github.com/hakimel/../reveal.js#configuration
Reveal.initialize({
controls: false,
controls: true,
progress: true,
history: true,
center: true,

View file

@ -0,0 +1,962 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="140.29842mm"
height="174.36986mm"
viewBox="0 0 497.12037 617.84595"
id="svg4174"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="2018-01-29-db_as_mediator.svg">
<defs
id="defs4176">
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker4773"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4775"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="marker4769"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4771"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;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="marker4763"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4765"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="marker4759"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4761"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;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="marker4753"
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:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
id="path4755"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker4749"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
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:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
id="path4751"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker4743"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path4745"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="marker4739"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path4741"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="marker4733"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4735"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;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="Arrow1Lend"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4458"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4455"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;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.4"
inkscape:cx="227.72149"
inkscape:cy="266.07547"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="2560"
inkscape:window-height="1388"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata4179">
<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(-143.58269,-193.07647)">
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker4769);marker-end:url(#marker4773)"
d="m 388.57143,280.93361 0,87.14286"
id="path4767"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.99921262;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Lstart);marker-end:url(#Arrow1Lend)"
d="m 516.42857,303.79075 c -13.07526,8.63414 -124.91159,66.23586 -124.28571,65.71429 l 0,103.57143"
id="path4445"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.99921262;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4733)"
d="m 248.57143,300.93361 143.57143,67.14286"
id="path4447"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
id="g4247"
transform="translate(0,80)">
<rect
y="566.64795"
x="145.71429"
height="162.85715"
width="148.57143"
id="rect4213"
style="opacity:1;fill:#800000;fill-opacity:1;stroke:#000000;stroke-width:2.83464575;stroke-miterlimit:4;stroke-dasharray:none" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="174.13086"
y="662.63708"
id="text4184-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4186-6"
x="174.13086"
y="662.63708"
style="font-weight:bold;fill:#cccccc">CSV</tspan></text>
</g>
<g
id="g4252"
transform="translate(0,80)">
<rect
style="opacity:1;fill:#000080;fill-opacity:1;stroke:#000000;stroke-width:2.83464575;stroke-miterlimit:4;stroke-dasharray:none"
id="rect4217"
width="148.57143"
height="162.85715"
x="318.21432"
y="566.64795" />
<text
sodipodi:linespacing="125%"
id="text4239"
y="657.39661"
x="324.18338"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-weight:bold;font-size:25px;fill:#cccccc"
y="657.39661"
x="324.18338"
id="tspan4241"
sodipodi:role="line">ProtoBuff</tspan></text>
</g>
<g
id="g4257"
transform="translate(0,80)">
<rect
y="566.64795"
x="490.71432"
height="162.85715"
width="148.57143"
id="rect4219"
style="opacity:1;fill:#2d5016;fill-opacity:1;stroke:#000000;stroke-width:2.83464575;stroke-miterlimit:4;stroke-dasharray:none" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="530.11725"
y="662.92029"
id="text4243"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4245"
x="530.11725"
y="662.92029"
style="font-weight:bold;fill:#cccccc">???</tspan></text>
</g>
<g
id="g4432"
transform="translate(5.0714117,0)">
<image
width="105.28571"
height="105.28571"
preserveAspectRatio="none"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALoAAAC6CAYAAAAZDlfxAAAABGdBTUEAALGPC/xhBQAAACBjSFJN
AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABWWlUWHRYTUw6Y29tLmFkb2Jl
LnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1Q
IENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5
OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91
dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4w
LyI+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAg
IDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpMwidZAAAxXElE
QVR4Ae19B3xcxbX+WWnVe5d7x2BsY2MwpvdgHu9RQ3ukvX8KBB6hhCR0AgkJCQQnJOQXjIkJJBBC
wHm08CAECDwgtNBMMbYBd9mSrC6ttNr9f9+Vjjy6uruSvNqVVpqxRzNz5ky5Z7579tyZuXNFrLMS
GAMS8CX4GiO1F4me4O7tdnNhj5LmNZn5ZtyjmCXFQwLmYMSjfq2T7fhOP/10X1NTk7+iosLX3Nzs
a2trS1T72o/dCrds2eKUGz9+vGicBHc6PT09XFhYGNqwYUN49erVIbB0wkcDtnn90fjYnHUxSMAU
dAzV9FuU7YQfeuihfeF+npaWlhEKhcJwiWo/agfRl6j56GdPvhnXcqTB0wXh2zs7O9vq6+sbcFPX
paam1sJv37p1a1VDQ8PmzMzMzc8991zN3XffXU+Z9FQsktKdNmlGto3GIgF/LIUHWJZgToUPpqSk
FOXk5ByYlZXlDwaDAywefzaA07MRN51pk6ZxDVmJ8hQXF/fUyWsdN24c81pxE1TPnTt38xe+8IW1
LS0tb6xbt+6fl1xyyTtgbu4uQMDTsVPeHXOy7Z/BSCBRQGef/BhYP7RgZ0dHx4gAOkHp83X9qJhg
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
"
id="image4355"
x="185.57146"
y="200.79079" />
<g
transform="matrix(0.39047619,0,0,0.39047619,340.06124,116.01123)"
id="g4423">
<image
y="197.3622"
x="336.42859"
id="image4416"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsCAYAAAB5fY51AAAABGdBTUEAALGPC/xhBQAAACBjSFJN
AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABWWlUWHRYTUw6Y29tLmFkb2Jl
LnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1Q
IENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5
OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91
dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4w
LyI+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAg
IDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpMwidZAABAAElE
QVR4Ae2dS+i223nWuw8lNoiDDkK0IkUcpAcHFUnSZKdQbAUzETzVUQdSaUIp1KYtTSm1pYiIiCBI
BxYcqAgdRNuJVGuTsHegaC2xOQ5EVChmpFKLtNmH+tzf/q7da/++a633Wf/n+X/f/13vWrBzH9bv
vu71rrXe9R33ztd8zRprB9YOrB1YO7B2YO3A2oG1A2sH1g6sHVg7sHZg7cDagbUDawfWDqwdWDuw
dmDtwNqBtQNrB9YOrB1YO7B2YO3A2oG1A2sH1g6sHVg7sHZg7cDagbUDawfWDqwdWDuwdmDtwNqB
tQNrB9YOrB1YO7B2YO3A2oG1A2sH1g6sHVg7sHZg7cDagbUDawfWDqwdWDuwdmDtwNqBtQNrB9YO
rB1YO7B2YO3A2oG1A2sH1g6sHVg7sHZg7cDagbUDawfWDqwdWDuwdmDtwNqBtQNrB9YOrB1YO7B2
YO3A2oG1A2sH1g6sHVg7sHZg7cDagbUDawfWDqwdWDuwdmDtwNqBtQNv7sBzt74Rr7zyyh97/fXX
v+u55577xu2fb/j93//9r6892fy4Nc8//3zMpyQ1jtS6/l4d9i+NI7Vaw16N4rmGI7Wt/t/0Td/0
VzXXsl/+8pf/7Hve855fb82v/HXsQP5WXsfa77zK7VF6/uWXX/7ezX50E3mvhPjlqnzKpXyLG2GT
RsolzVYu5Vua98Wmfil31/7f/M3ffPEebw/Wz236v7s9Wn+r+qxxnTuw/6cL1/n5nlj1pz/96e/Y
/vnP22P1T7fJtx6rArfco3+8qHJpkGXsNdRosSnPWukeYVOt68ovO8p6rfykUbk0yDL2mpaGM/Lf
eOONcn9oe7j+oXLLXt8O3NSD9clPfvIj2yX/99sxfevIF+EMNmlULg2yjL2GGmewSYN9tAayjMWV
5RxjsoyL50g5Moof91uPljbkCu3NPFjbY/WT2/n83HZpX/RzenyJPfXIT/nKpXGETbXqwX4tNuVZ
65qcY9xiUx9n5ZcdZb1WftJorVU1e+ymsR6tPRv1AJmbeLB+9Vd/9S9te/+z2v+RLwJZxtIsW3M+
zmCTBvuoJ1nG4spS4ww2abCP1kCWsTit1XV6rNf1/E1jPVq9DXqgc9M/WNvPrP74tvf/LO0/Lz5j
r6k5Hy025VkrnSNsqnVd+WVbbMpXLo0jbKpVD/YbZaVzF7v1Wo/WXTbuGdZM/2Btl/Jntv195+gX
oXiOpJG4qiPL2LWpcQabNNhHayDLWFxZapzBJg320RrItjjxbllbc1tuPVq+SQ/cn/rB+pVf+ZU/
uV3I7/UzaF3wxmX20rd8sozfAjeH/VpsyrNWukfYVOu68su22JSvXBpH2FSrHq1+mu9Z1m7xerR6
G/aA5qZ+sLZ9/ivbPy/y4jP28wiX+YlHR/xeNvVjrWv6XKp1Vn7ZM9ik4evp9Uu14qlxBtvTUF9Z
siFej5Y26wHbqR+s7S8n/kXf+7qkPnhpNZfyrD2DTX1cV37ZFpvyt7ZW36dLPvfG92/zf+hLX/rS
P7ikseaf3Q5M/WBt2/q2vxha2+wXVNvOS+x5n0u1zsovewabNHw9vX6pVjw1zmCTBvt4f59Ltc7K
L9tjnev5ScPW88Pr0ert3rOdm/bB+uVf/uV3bZfw0S8H0xbz0jL2GrvMj9ItNuVZK90jbKp1Xfll
W2zKVy6NI2yqVQ/2a7Epz1ppjljqWrwerZGNfIrstA/WCy+88G7to11Epd6yvPiMBSaNvWyqdV35
Zc9gk8atrdX3VH5vD8SUfbx/69HyTXkg/rQP1nbp/ggvKGOdweMLqlAX9q3YnVG2V6s5alZ+71pH
2NTH1yBfmmkNSSNxLY29bOqj9bU0NN+zrdrUb8utR6u3mc9gbtoHS3vJi8hYXNma8zHKeq38pME+
LTbVOiu/7Bls0rimtfp+0H/8Lz8/SqfPKZ6fd4t/+Atf+ML6jXht0DO20z9Y2t9wEZ94oIpNl5m1
rulzqfaurOrKtnRT3tdzSWMvm/pImxotNuVZ65qcY+ys/EuWGhUzVxrMb3/avB6tS5v7lOZv5sFK
F1G5tNe8tIy9hpd+lHUt+UmDfVpsqnVWftkz2KTxtNfqn6nn33Wt9Whtf3r493vaa+7+d2DqB+tp
fmnu+kWoI061OnrOMRYnHcbFcySNxEmTc4ylT13G4qTLOOkmjcS51h6fuoxdQ/02+yPr0fKdefr+
1A9Wbeeei6ht18VULJs09rKp1nXllx1lvVZ+0ngIa01ruK+1ai/2WK4rral0lN/serT2bOw9MdM/
WNo3XkzP+5wupubdco4xWcbeR3NJI3HFk2UszbuwvVrNpX5716o1ScstdRmT7cU+R/+stW6/gb8e
LW7uU4qnfrB48Rn7HvMyj7KuJT9psE+LTbXOyi87ynqt/KTxENaa1pDWqs9xyfZq2avHrkfr0k7f
z/zUD5a2bO9FTBeUta7pc6n2rqzqyrZ0U97X09NIteI5x1hcWfZrsSnPWukeZaVD63+toeZSn1a+
tdZ6tLa/8rB+I56bfY/xTTxYoxeRl5mxnwcv8yjrWvKTBvu02FTrrPyyo6zXyk8aT3utWssle09r
/ZHPf/7zf+9S7zV/zg5M+2C99tprcYd4aRl7Eb94LTblWStdsozFleUcY7KMi+dIGomrOrKMXZtz
jMkyLp4jaSSOdZdi6jL2evZL7PZXHn5sPVq+a/fnT/tg1Zaly6WtTBdRc26TBmvFk2Usriw1RlnX
kp802KfFplpn5ZcdZb1WftI4Y63S32PZL62pdFKetevR2rPjx5mpHyxtDy+X530uXcy7sqor29JN
eV9PTyPViuccY3Fl2a/FpjxrpUuWsTj1d51LbK/W5+h7D59L/fayrK1H64tf/OL65aFv8Mn+1A+W
XzxeLt9H5yo/yrqW/KTBPi021Torv+wo67Xyk8Y1rVWf45JNn1M1/Lx3Zbe69WhpU+/BTv1g1X7t
vYjpgrJW+0+WsTj1d51LbK9Wc0nDe4i7S3/XSX2k7Vzq41xiNe+W/Rj3WJ+75Ld0U75yafTYbW49
WmnTTshN/2DVHvUuF/eQLGPna87HKOu18pMG+7TYVOus/LKjrNfKTxrPeq1aW7JcG2PV8HMxFleW
GmI3ux4t36iT/Jt4sLRXrculebd7WV3QXq3myDIWV5ZzjMkyLp4jaSSu6sgydm3OMSbLuHiOpJE4
1l2KqcvY69mvxab849yPbX9P6++65vKP7cDUDxYvXG1V63KlbTzCplr14LpGWem4TRrsI54sY3Fl
qTHKupb8pME+LTbVih2x7MdYWqnfXvZx7Y+vR0u7edxO/WDV9gxerrij1Hh8EQ+xSYN91IAsY3Fl
OceYLOPiOZJG4qqOLGPX5hxjsoyLPzLYj7Frc44xWcQ/vv09rfUzLd+UO/rTP1i1L4OXKz5ySaNy
aRxhU616sN8oKx23SYN9xJNlLK4sNUZZ15KfNNhHLG39qzktlvnUR3qJ1ZzboLEeLd+gO/pTP1jp
cjFX+xYuV/dyu0aq1Vk41+ozyqZ+7OOaPpdq78qqrmxLN+V9PT2NVCu+NyemZVu1KV+5NMgy9hrM
rUfLN+cO/tQPVu0HLsyjLapcGmQZew01WmzKs1a6R9hU67ryy46yXis/aVQuDbKMvYYaI6zrXPLZ
Rzz7MRZXlho72fVo+SYO+tM/WNqPO16uR+Wti5jy7OP9fS7VOiu/7Bls0vD19PqlWvGcYyyuLPu1
2JRnrXRbec27pS5jsoxTr6SRuNIytn4j/u+4/vL37cC0D1b6l5/twry1Ozsu1zCb+kiE/VpsyrPW
NTnHuMWmPs7KLzvKeq38pHHGWqW/x7IfY2nc11of6/7EerS00/vttA9WbcHei5gupraQGmewSYN9
vL/PpVpn5Zc9g00avp5ev1QrnnOMxZVlvx7rdT2fGoy9lnOMyTIunqNy2x8ErEeLG3MhnvrBqs9+
1uXipWOsfU799rKp1nXll22xKb+3v3S9j3zqMhaXNEZZ15KfNCq3d/A/4Kc6aqQ+PVZzbpMG+4iv
R+tzn/vc+uWhNuSCnf7B0udvXZiRy0WWsXqVZb8z2KTBPloDWcbirnGt/pnd98+U/NYepHxLlyxj
78s5xsauR8s2o+dO/WDxgjD2jeEcY7KMi+dIGomruiNsqtVa2K/FpjxrXZNzjFts6uOs/LIjrNdd
8p/1Whv916N16eC2+akfLH1+XpCRLwJrXZNzjFvsaP+ernqUbemmfE/T51KtejrX66851SlmfSuf
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
TxpPe61ayyx22ger9x/wS4f3EC4XLzNjrfuhrjWtd631yccv7YmfrfyyLTblKzf7mPbBGj1sHTQv
AmNx0mecLk3SSJw0fS7VqifnGIuTLmPvo7mkkThpco5xSzf1cVZ+q08rv7e/6r2PfK6NsbikMcq6
lvykUbk0yLa4VHuNuakfLB1I6xB52OLLsoax2KSxl021riu/7CjrtfKTxkNYa1rDWuuTZ572xM9W
/sx26gfLvwh3OWzWMPaLwTnGZBkXz5E0Eld1ZBm7NucYk2VcPEfSSFzVHWFTrdbCfi025Vnrmpxj
3GJTH2fllx1lvVZ+T0PMtdupH6w6HF4uxjrA3mGzZpRVD7dJg33Ek2Usriw1RlnXkp802KfFplpn
5Zc9g00at7bW1u/f+l5fqz/9g5W+COlS6wBbcyl/1hfBdVIfX5v89Lk0lzS8h7ikkWrFc46xOOky
TmtIGomTJucYqyd1GYuTLuOkmzQSJ03OMVZP6jIWJ13GLV3nZvFv4sHSYfFgRy6Ga7jOiMYoq55u
k4avp8emWvHUGGWl4zZpsI94sozFlaXGGWzSYB+tgSxjcQ9hrb6WGfypH6x04dLlSpwuW2/OL0DS
bWn0NH2upZl0L7FrrW//fTff597ePOt91Vn7GuVzbYzFzWSnfrDqoO7jYuoCpAtyH/1SH1+D/LJ7
+4+wo/17a7jmtabPlfYmcdpvn0u12h/nUq04zXk8sz/9g6UD5QXQoTLfukStfNK/xKp3qtVc0qhc
GmQZew3nGJNlXDxH0khc1ZFl7NqcY0yWcfEcSSNxVXeETbVaC/u12JRnrWu25sTMYKd+sHiAjHWA
lecc4x7rc/LLjmjsZYvrsew/wnqt/NSvp+lzqdZ15ZcdZb1WftLw9YgrS5YxWcY93T1s6tfT9LlU
q57OKTeTnfrBqoPi4TL2w+QcY7Iey2cNY3FlOceYLOPiOZJG4qqOLGPX5hxjsoyL50gaias6soxd
m3OMyTIuniNpJK7qjrCpVmthvx6rmtns9A+WDmzksBMrHbe9C5M0mJMW84yd4xzjFltcj1Vd2VHW
a+UnjV5/n0u1riu/7CjrtfKThq9HXFmyjMky7unuYVO/lqbrzeJP+2Clvzw3cthkGfsFaM2lfOXS
IMvYazjHmCzj4jmSRuKqjixj1+YcY7KMi+dIGomrOrKMXZtzjMkyLp4jaSSu6o6wqZZrmSGe9sHS
BUiHxMNl7DU152OEVR1rGIsre6Qfa6Wb+u1lU63ryi87ynqt/KSx1jr2s2Pt5Yx26gerDix9AXSQ
/CK02JRnrWv25sSVTbqtfE/T51qaSfcSWzUaLTblK5cGWcZewznGZBkXz5E0Eld1ZBm7NucYk2Vc
PEfSSFzVJZZ6s8TTP1g6qJHD3sv2LspejVrfXnak3yirfXKbNNZaj/9s52ntq5/lLP7UDxYvBmM/
RM4xJsu4eI4zNEqT2i3dlGet1kiWsTj1d51LbK9Wc0nDe4i7S3/XSX2k7Vzq41xiNe+W/RgfYXu1
mqt+6fdvNX/tduoHS4eTLhtzPVZzbtNF7GmmuaMaSbPWSF3G/ByMe7pkPZaf+vU0fS7Vuq78sqOs
18pPGr4ecWXJMibLuKdL1mP5qV9LUzWz2Zt4sOrQRg6bLGO/BJxjTNZj+axhLK5szfk4g00a7KOe
ZBmLK8s5xmQZF8+RNBJXdWQZuzbnGJNlXDxH0khc1ZFl7NqcY+zsbP7NPFg6OB4uY3Fla87HKOu1
8kc1uIbSSRqJO8qmPv455Lf6aJ5rY+wc5xi32OJ6rOrKjrJeKz9p9Pr7XKp1XfllR1mvndGf+sEa
PWy/VDrspJG44skylmZiNZdqzuqnHr3+mtvD3uda/TOnPlqfc1o7c6184hJ7qb/rXGK17tRHc0nD
e4hLGi3Oa67Zn/rB0sG0DvHoxejpqnfZ1EfzPQ2fG9FosSnvPbSm1pr3sqmPtKkxykrHbdJgH/Fk
GYsrS41R1rXkJw32abGp1ln5M9upHyy/CCOHfQabNHw9fqkSq3nWtNiUZ61r+lyqdVZ+2TPYpOHr
6fVLteI5x1hcWfZrsSnPWumSZSxO/V3nEtur1VxPQ8y126kfrDocvxSKmWvlE3eU7V2qZ92vtbaU
f6hr1fmU1bi1tepzz2inf7Dq0I584VKtLgK/CGewZ2joM2udirneVj5xiZ1prf6Zz/hcScN79M4m
1YrnHGNxs9qbeLB0eDxcxuLK1pyPFpvyrJXOUbZ0jmrsXVvq459DfmtNrfze/qr3PvK5NsbiksYo
61ryk0bl0iDL2GuoMcq61qz+tA/Wq6+++sSjo0PcezHShWGta/pcqr0rqzq31GdMlrGvlXOME5v6
Ja60yDJmP8Y93T1s6tfT9LlUq56cYyyurGsqZq6VT1xie/2Ln2FM+2DpcPYedvF72d7FoMYoq3W7
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
dVZ+2VHWa+UnjYew1rSGtdb+metMZ7I38WDpwHjp04UvNuVZ65o+l2rvyqqubEs35X09PY1UK55z
jMWVZb8Wm/Ksle4RNtW6rvyyLTblK5fGETbVqgf7jbDSmM1O+2C1/n2qdOi8GDpksozFlaXGKOta
8pMG+7TYVOus/LKjrNfKTxoPYa1pDbeyVp3NTHbaB6sOKV1MHR7nGIuTDuPiOZJG4qTpc6lW+pxj
LE66jL2P5pJG4qTpc6m2pXuJVV3qo7mk4esR19LYy6Y+0qZGi0151rom5xi32NRH7Mx26gdLB9c7
XF4Qxj2Nvexo/56u1lO2x3GOsXQq73OMxaV+o6xryU8avh5x6u9zqVa8c6lWnOYYs14c84ylU3mf
YyxOuoy9lnOMW6xzs/hTP1g8SMY6xMr7HGNxZTnHmCxj76O5pJG44skyluZd2F6t5lK/Gdeq/dPn
dss9YEyWcdqvpJG40hphvfcM/tQPVjrcdNg6SF6QUVY6bpMG+4gny1hcWWqMsq4lP2mwT4tNtc7K
LzvKeq38pPEQ1prW8BDWqn27djv9g6UD4kVKl6jYlGeta/pcqr0rq7qyLd2U9/X0NFKteM4xFleW
/VpsyrNWumQZi1N/17nE9mo1lzS8h7jUXzln5FOXsbik0WJTvvUHTq5/rf7NPFi6BHXAPhhrjheB
sbiy1BhlXUt+0mCfFptqnZVfdpT1WvlJY6317b/NoL0qy71J+ycusa4lv6Wh+Vns1A8WD1uHxnzv
sPeySYO13t/nUu1dWdWVbemmvK+np5FqxXOOsbiy7NdiU5610iXLWJz6u84ltleruaThPcSl/so5
I5+6jMX1NJy5Zn/qB0sHmC5NOvTEtTT2sqmPLgw1RlnpuE0a7COeLGNxZakxyrqW/KTBPi021Tor
v+wo67Xyk8ZDWGtrDVr3bHb6B0sH1jpYXkTGqi9LjTPYpME+WgNZxuK0Vte5xPZqNZc0vIe4u/R3
ndRH2s6lPs4lVvNu2Y/xEbZXq7nUj2u/C6uamezUDxYvAmM/SF6QFpvyrJXuETbVuq78sqOs18pP
GpVLgyxjr6HGKOta8pMG+7TYVOus/LKjrNfKTxpPe61aywx26gdLB8QLki5RsSnPWtf0uVTrrPyy
Z7BJw9fT65dqxXOOsbiy7NdiU5610iXLWJz6u84ltleruaThPcTdpb/rpD7Sdi71cS6xmp/R3sSD
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
nzR8PeLKkmVMlnFPdw+b+rU0t/+br0d333Vn8Z+b5YOkz/Hxj3+8/qNYL2ruuefyx035lCudlE+5
xLa4+2JTv5S7r/4jumldKTeieV9sWlfK3Vf/C7pf/b7v+753FDPjmPlnWPWj4q/5oaUfpWo+5Vs/
eh1hU63Wx36jrHTcJg32EU+Wsbiy1BhlXUt+0mCfFptqnZVfdpT1WvlJ4yGs9fEa/oPWOaOd+sHa
ftT7xQd+ud52p+5zrf6FSn20EOcq12JTnrWu6XOp9q6s6sq2dFPe19PTSLXiOcdYXFn2a7Epz1rp
Jnb7/at/pfkZ7dQP1nagn9gO7bU6OB4uYz/cmvPRYlOetdI5wqZa15VfdpT1WvlJo3JpkGXsNdQY
ZV1LftJgnxabap2VX3aU9Vr5SePktb72+uuv152fdrww7SfbPtgrr7zyvz/wgQ/8ie1nWn/GP2f6
/YaUqxrmGfd0W2zKp1zq38qlfEvzvtjUL+Xuq/+IblpXyo1o3heb1pVy2+P38x/5yEf+ea1j1jH1
z7Dq0N75znf+7c38Pz/Ap/Aj3aN2qU9NpHzlTF0xswAAAyhJREFU0jjCplr1YL9RVjpukwb7iCfL
WFxZaoyyriU/abBPi021zsovO8p6rfykEdb6O9ufDtZdn3pM/TOsOrlPfepT/3f7WdaXtx+Rvied
ZPqRKuWqNuVTLrEtboRNGimXNFu5lG9p3heb+qXcffUf0U3rSrkRzTPY7QH7no9+9KO/Xlozj+kf
rDq8z3zmM1/64Ac/WH/F4c89hMuVLlRaV8pVLfOMXZ9zjO/CJo2UW2t9c3e5N4x1BimfcmFfP/79
3//9Py+dme1NPFh1gNuj9fKHPvSh/7n9SPQXtkvQ/KUwLwhjXYaUT7niUz7lEtviRtikkXJJs5VL
+ZbmfbGpX8rdV/8R3bSulBvR3Nivbhof2R6rf1R1tzBu5sGqw9x+E/4/vfTSS5/e3G/b/nn33gtT
tXvZFpc0zmCTRsrdV/8R3bSulBvRvC82rSvl7qv/Dt3PPv/8839te6x+sdhbGTf1YNWhbj/T+u/f
/d3f/U+236D8r1v4Ddsl/KObjX8FnheUcelpcI5xi6v8fbAtzdSvxaZ8yiXNVi7lW5r3xaZ+KXdf
/Ud0sa43tl8h/Mct9+Nf+cpXfvBjH/vY/yitWxrxi3pLG/CjP/qj795+pPrz22f+xu0ifMN2Ib6e
n/+FF+7+rh+p1TpGNLbPorJHFhf+bXMMWKv5IxpHah9K/1rH3s+R9vBI7XYf/9em+VvbEv7b9nes
/u0P/MAPTPvvCeq8l107sHZg7cDagbUDawfWDqwdWDuwdmDtwNqBtQNrB9YOrB1YO7B2YO3A2oG1
A2sH1g6sHVg7sHZg7cDagbUDawfWDqwdWDuwdmDtwNqBtQNrB9YOrB1YO7B2YO3A2oG1A2sH1g6s
HVg7sHZg7cDagbUDawfWDqwdWDuwdmDtwNqBtQNrB9YOrB1YO7B2YO3A2oG1A2sH1g6sHVg7sHZg
7cDagbUDawfWDqwdWDuwdmDtwNqBtQNrB9YOrB1YO7B2YO3A2oG1A2sH1g6sHVg7sHZg7cDagbUD
awfWDqwdWDuwdmDtwNqBtQNrB9YOrB1YO7B2YO3A2oG1A2sH1g6sHdizA/8fWPjdZgn98fkAAAAA
SUVORK5CYII=
"
preserveAspectRatio="none"
height="300"
width="300" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="420"
y="366.64789"
id="text4419"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4421"
x="420"
y="366.64789">Python</tspan></text>
</g>
<text
sodipodi:linespacing="125%"
id="text4428"
y="253.79074"
x="362.07062"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="253.79074"
x="362.07062"
id="tspan4430"
sodipodi:role="line">...</tspan></text>
</g>
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.83464575;stroke-miterlimit:4;stroke-dasharray:none"
id="rect4449"
width="99.285713"
height="52.142857"
x="340.71429"
y="340.21933" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="351.53308"
y="383.13611"
id="text4441"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4443"
x="351.53308"
y="383.13611">SQL</tspan></text>
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker4739);marker-end:url(#marker4743)"
d="m 220,558.07647 0,87.14286"
id="path4737"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4747"
d="m 391.42857,558.07647 0,87.14286"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker4749);marker-end:url(#marker4753)" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker4759);marker-end:url(#marker4763)"
d="m 560.71428,558.07647 0,87.14286"
id="path4757"
inkscape:connector-curvature="0" />
<g
id="g4208"
transform="translate(-28.571429,34.285714)">
<rect
y="438.73514"
x="172.80156"
height="84.396919"
width="495.82547"
id="rect4182"
style="opacity:1;fill:#666666;fill-opacity:1;stroke:#000000;stroke-width:1.29487348;stroke-miterlimit:4;stroke-dasharray:none" />
<text
sodipodi:linespacing="125%"
id="text4184"
y="495.8457"
x="313.31195"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-weight:bold;fill:#cccccc"
y="495.8457"
x="313.31195"
id="tspan4186"
sodipodi:role="line">Database</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 56 KiB

View file

@ -15,10 +15,24 @@
viewBox="0 0 332.51187 156.21313"
version="1.1"
id="svg6103"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
inkscape:version="0.91 r13725"
sodipodi:docname="2018-01-31-mem_bulk_loading.svg">
<defs
id="defs6097">
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Lend"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path5337"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
<radialGradient
inkscape:collect="always"
r="117.14"
@ -1238,16 +1252,16 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="757.38124"
inkscape:cy="293.27318"
inkscape:zoom="1"
inkscape:cx="412.38124"
inkscape:cy="290.41604"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1031"
inkscape:window-width="2560"
inkscape:window-height="1388"
inkscape:window-x="0"
inkscape:window-y="1"
inkscape:window-y="0"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
@ -1261,7 +1275,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -9110,5 +9124,26 @@
id="tspan8751"
sodipodi:role="line">Record</tspan></text>
</g>
<g
id="g5982"
class="fragment">
<text
sodipodi:linespacing="125%"
id="text5324"
y="88.552711"
x="100.57293"
style="font-style:normal;font-weight:normal;font-size:11.28888893px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="88.552711"
x="100.57293"
id="tspan5326"
sodipodi:role="line">BAD!</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path5328"
d="m 111.66023,88.955891 15.07874,23.706669"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 376 KiB

After

Width:  |  Height:  |  Size: 378 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 176 KiB

View file

@ -15,7 +15,7 @@
viewBox="0 0 296.23718 102.27598"
version="1.1"
id="svg833"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
inkscape:version="0.91 r13725"
sodipodi:docname="blackbox.svg">
<defs
id="defs827">
@ -335,13 +335,13 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="685.91543"
inkscape:cy="-56.660697"
inkscape:cx="193.97114"
inkscape:cy="-60.701307"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1440"
inkscape:window-height="852"
inkscape:window-width="2560"
inkscape:window-height="1388"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
@ -414,6 +414,37 @@
id="path8427"
inkscape:connector-curvature="0" />
</g>
<g
id="g8958"
class="fragment">
<text
id="text6992"
y="129.44296"
x="-77.865608"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
y="129.44296"
x="-77.865608"
id="tspan6990"
sodipodi:role="line">💩</tspan></text>
<path
inkscape:connector-curvature="0"
id="path7578"
d="M -28.324667,117.21108 H 5.9498742"
style="fill:none;stroke:#000000;stroke-width:1.43818665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="-77.865608"
y="129.44296"
id="text4385"><tspan
sodipodi:role="line"
id="tspan4387"
x="-77.865608"
y="129.44296"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">💩</tspan></text>
</g>
<g
id="g8986"
class="">
@ -436,7 +467,7 @@
rx="16.667517"
ry="5.5558391" />
<path
d="m 288.41,517.5 v 30.092 h 0.125 c -0.0806,0.24126 -0.125,0.47032 -0.125,0.71875 0,3.6263 8.8086,6.5625 19.688,6.5625 10.8794,0 19.688,-2.9362 19.688,-6.5625 0,-0.24879 -0.0442,-0.47715 -0.125,-0.71875 h 0.125 V 517.5 h -39.375 z"
d="m 288.41,517.5 0,30.092 0.125,0 c -0.0806,0.24126 -0.125,0.47032 -0.125,0.71875 0,3.6263 8.8086,6.5625 19.688,6.5625 10.8794,0 19.688,-2.9362 19.688,-6.5625 0,-0.24879 -0.0442,-0.47715 -0.125,-0.71875 l 0.125,0 0,-30.092 -39.375,0 z"
style="fill:url(#linearGradient6110)"
sodipodi:nodetypes="cccssscccc"
id="path5488"
@ -504,34 +535,27 @@
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
d="m 58,848.9057 c 0,-32.79 26.58137,-59.371 59.37067,-59.371 h 185.724 c 32.789,0 59.371,26.581 59.371,59.371 v 579.105 c 0,32.79 -26.582,59.37 -59.371,59.37 h -185.724 c -32.7893,0 -59.37067,-26.58 -59.37067,-59.37 z"
d="m 58,848.9057 c 0,-32.79 26.58137,-59.371 59.37067,-59.371 l 185.724,0 c 32.789,0 59.371,26.581 59.371,59.371 l 0,579.105 c 0,32.79 -26.582,59.37 -59.371,59.37 l -185.724,0 c -32.7893,0 -59.37067,-26.58 -59.37067,-59.37 z"
id="path6745" />
<path
inkscape:connector-curvature="0"
d="M 117.37109,749.53516 C 62.964173,749.53516 18,794.49879 18,848.90625 v 579.10355 c 0,54.4074 44.964986,99.3711 99.37109,99.3711 h 185.72266 c 54.40601,0 99.37109,-44.9632 99.37109,-99.3711 V 848.90625 c 0,-54.40797 -44.96427,-99.37109 -99.37109,-99.37109 z m 0,80 h 185.72266 c 11.17118,0 19.37109,8.19906 19.37109,19.37109 v 579.10355 c 0,11.172 -8.1991,19.3711 -19.37109,19.3711 H 117.37109 C 106.1986,1447.3809 98,1439.1823 98,1428.0098 V 848.90625 c 0,-11.17254 8.19941,-19.37109 19.37109,-19.37109 z"
d="M 117.37109,749.53516 C 62.964173,749.53516 18,794.49879 18,848.90625 l 0,579.10355 c 0,54.4074 44.964986,99.3711 99.37109,99.3711 l 185.72266,0 c 54.40601,0 99.37109,-44.9632 99.37109,-99.3711 l 0,-579.10355 c 0,-54.40797 -44.96427,-99.37109 -99.37109,-99.37109 z m 0,80 185.72266,0 c 11.17118,0 19.37109,8.19906 19.37109,19.37109 l 0,579.10355 c 0,11.172 -8.1991,19.3711 -19.37109,19.3711 l -185.72266,0 C 106.1986,1447.3809 98,1439.1823 98,1428.0098 l 0,-579.10355 c 0,-11.17254 8.19941,-19.37109 19.37109,-19.37109 z"
id="path6747" />
</g>
</g>
</g>
<g
id="g8958"
class="fragment">
<text
id="text6992"
y="129.44296"
x="-77.865608"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
y="129.44296"
x="-77.865608"
id="tspan6990"
sodipodi:role="line">💩</tspan></text>
<path
inkscape:connector-curvature="0"
id="path7578"
d="M -28.324667,117.21108 H 5.9498742"
style="fill:none;stroke:#000000;stroke-width:1.43818665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
</g>
<text
id="text6992-3"
y="125.307"
x="177.66937"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
class="fragment"
sodipodi:linespacing="125%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="125.307"
x="177.66937"
id="tspan6990-6"
sodipodi:role="line">💩</tspan></text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View file

@ -0,0 +1,774 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="158.45157mm"
height="54.521618mm"
viewBox="0 0 158.45157 54.521618"
version="1.1"
id="svg8"
inkscape:version="0.91 r13725"
sodipodi:docname="dataquality-poop.svg">
<defs
id="defs2">
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4708"
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>
<linearGradient
id="linearGradient6035">
<stop
offset="0"
style="stop-color:#ffffff"
id="stop6037" />
<stop
offset="1"
style="stop-color:#ffffff;stop-opacity:0"
id="stop6039" />
</linearGradient>
<filter
inkscape:collect="always"
x="-0.064257003"
y="-0.19277"
width="1.1285"
height="1.3855"
id="filter6093"
style="color-interpolation-filters:sRGB">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.89250425"
id="feGaussianBlur6095" />
</filter>
<linearGradient
inkscape:collect="always"
x1="269.97"
y1="511.97"
gradientTransform="matrix(1.1818,0,0,1.1818,-30.649,-69.394)"
x2="286.63"
gradientUnits="userSpaceOnUse"
spreadMethod="reflect"
y2="511.97"
id="linearGradient6110">
<stop
offset="0"
style="stop-color:#c6c6c6"
id="stop5497" />
<stop
offset=".20485"
style="stop-color:#e3e3e3"
id="stop5501" />
<stop
offset="1"
style="stop-color:#a5a5a8"
id="stop5499" />
</linearGradient>
<linearGradient
inkscape:collect="always"
x1="282.35999"
y1="518.56"
x2="286.63"
gradientUnits="userSpaceOnUse"
y2="527.34003"
id="linearGradient6112">
<stop
offset="0"
style="stop-color:#e3e3e3"
id="stop5468" />
<stop
offset="1"
style="stop-color:#a5a5a8"
id="stop5470" />
</linearGradient>
<linearGradient
inkscape:collect="always"
x1="308.5"
y1="522.60999"
gradientTransform="translate(0,0.25)"
x2="327.78"
gradientUnits="userSpaceOnUse"
spreadMethod="reflect"
xlink:href="#linearGradient6035"
y2="520.33002"
id="linearGradient6114" />
<linearGradient
inkscape:collect="always"
x1="308.5"
y1="522.60999"
gradientTransform="translate(0,12)"
x2="327.78"
gradientUnits="userSpaceOnUse"
spreadMethod="reflect"
xlink:href="#linearGradient6035"
y2="520.33002"
id="linearGradient6116" />
<linearGradient
inkscape:collect="always"
x1="308.5"
y1="522.60999"
gradientTransform="translate(0,22)"
x2="327.78"
gradientUnits="userSpaceOnUse"
spreadMethod="reflect"
xlink:href="#linearGradient6035"
y2="520.33002"
id="linearGradient6118" />
<linearGradient
inkscape:collect="always"
x1="7.9769001"
y1="14.04"
x2="8"
gradientUnits="userSpaceOnUse"
y2="1"
id="linearGradient2889">
<stop
offset="0"
style="stop-color:#888a85"
id="stop2885" />
<stop
offset="1"
style="stop-color:#babdb6"
id="stop2887" />
</linearGradient>
<linearGradient
inkscape:collect="always"
x1="13"
y1="6.7143002"
gradientTransform="matrix(1,0,0,1.1667,0,12.167)"
x2="13"
gradientUnits="userSpaceOnUse"
y2="10.143"
id="linearGradient2901">
<stop
offset="0"
style="stop-color:#d7dbd3"
id="stop2897" />
<stop
offset="1"
style="stop-color:#babdb6"
id="stop2899" />
</linearGradient>
<linearGradient
inkscape:collect="always"
x1="7.2870002"
y1="14"
gradientTransform="matrix(1.2731,0,0,1,-0.27702,0)"
x2="7.2870002"
gradientUnits="userSpaceOnUse"
y2="3"
id="linearGradient3241">
<stop
offset="0"
style="stop-color:#d7dbd3"
id="stop3237" />
<stop
offset="1"
style="stop-color:#fafafa"
id="stop3239" />
</linearGradient>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker13046"
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="path13044"
inkscape:connector-curvature="0" />
</marker>
<inkscape:perspective
id="perspective8542"
inkscape:persp3d-origin="84.222297 : 34.228086 : 1"
inkscape:vp_z="164.39246 : 51.803072 : 1"
inkscape:vp_y="0 : 999.99994 : 0"
inkscape:vp_x="4.052134 : 51.803072 : 1"
sodipodi:type="inkscape:persp3d" />
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker8404"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path8402"
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="marker8136"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path8134"
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="marker8002"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path8000"
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="marker7616"
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="path7614"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker7558"
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="path7556"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker7506"
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="path7504"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker7418"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path7416"
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="marker7402"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path7400"
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="marker7392"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path7390"
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="marker5742"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path5740"
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.83319398"
inkscape:cx="211.17175"
inkscape:cy="30.768214"
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="2560"
inkscape:window-height="1388"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-4.7850731,-25.566568)">
<g
transform="matrix(0.26458334,0,0,0.26458334,-70.841435,-109.54132)"
inkscape:label="Layer 1"
id="layer1-4">
<g
transform="matrix(4.1992,0,0,4.1992,-914.56,-1633.8)"
id="g6097">
<ellipse
transform="matrix(1.1818,0,0,1.1818,-30.649,-65.984)"
style="fill:#2e3436;filter:url(#filter6093)"
id="path6079"
cx="286.6308"
cy="521.77954"
rx="16.667517"
ry="5.5558391" />
<path
d="m 288.41,517.5 v 30.092 h 0.125 c -0.0806,0.24126 -0.125,0.47032 -0.125,0.71875 0,3.6263 8.8086,6.5625 19.688,6.5625 10.8794,0 19.688,-2.9362 19.688,-6.5625 0,-0.24879 -0.0442,-0.47715 -0.125,-0.71875 h 0.125 V 517.5 h -39.375 z"
style="fill:url(#linearGradient6110)"
sodipodi:nodetypes="cccssscccc"
id="path5488"
inkscape:connector-curvature="0" />
<ellipse
transform="matrix(1.1818,0,0,1.1818,-30.649,-99.394)"
style="fill:url(#linearGradient6112)"
id="path5460"
cx="286.6308"
cy="521.77954"
rx="16.667517"
ry="5.5558391" />
<path
d="m 288.38,539.09 c 0.14735,3.584 8.9318,6.4688 19.719,6.4688 10.756,0 19.492,-2.8677 19.688,-6.4375 -3.4515,2.9359 -10.959,4.9688 -19.688,4.9688 -8.7461,0 -16.277,-2.0544 -19.719,-5 z"
style="fill:#565656"
id="path6026"
inkscape:connector-curvature="0" />
<path
d="m 288.38,517.34 c 0.14735,3.584 8.9318,6.4688 19.719,6.4688 10.756,0 19.492,-2.8677 19.688,-6.4375 -0.21572,0.18349 -0.44078,0.35509 -0.6875,0.53125 -0.009,0.0117 -0.0216,0.0196 -0.0312,0.0312 -2.2921,2.7774 -9.9035,4.8125 -18.969,4.8125 -9.122,0 -16.786,-2.0707 -19.031,-4.875 -0.0249,-0.0179 -0.038,-0.0446 -0.0625,-0.0625 -0.21872,-0.15969 -0.43159,-0.30323 -0.625,-0.46875 z"
style="fill:url(#linearGradient6114)"
id="path6030"
inkscape:connector-curvature="0" />
<g
id="g6071">
<g
transform="translate(0,-0.52315)"
id="g6067">
<path
d="m 288.38,529.09 c 0.14735,3.584 8.9318,6.4688 19.719,6.4688 10.756,0 19.492,-2.8677 19.688,-6.4375 -3.4515,2.9359 -10.959,4.9688 -19.688,4.9688 -8.7461,0 -16.277,-2.0544 -19.719,-5 z"
style="fill:#565656"
id="path6022"
inkscape:connector-curvature="0" />
<path
d="m 288.38,529.09 c 0.14735,3.584 8.9318,6.4688 19.719,6.4688 10.756,0 19.492,-2.8677 19.688,-6.4375 -0.0497,0.0422 -0.10543,0.0838 -0.15625,0.125 -1.2422,3.2268 -9.5106,5.7188 -19.531,5.7188 -10.113,0 -18.468,-2.5112 -19.594,-5.7812 -0.0401,-0.0317 -0.0863,-0.0607 -0.125,-0.0937 z"
style="fill:url(#linearGradient6116)"
id="path6043"
inkscape:connector-curvature="0" />
</g>
<path
d="m 288.38,539.09 c 0.14735,3.584 8.9318,6.4688 19.719,6.4688 10.756,0 19.492,-2.8677 19.688,-6.4375 -0.0497,0.0422 -0.10543,0.0838 -0.15625,0.125 -1.2422,3.2268 -9.5106,5.7188 -19.531,5.7188 -10.113,0 -18.468,-2.5112 -19.594,-5.7812 -0.0401,-0.0317 -0.0863,-0.0607 -0.125,-0.0937 z"
style="fill:url(#linearGradient6118)"
id="path6054"
inkscape:connector-curvature="0" />
</g>
<path
d="m 288.5,549.94 c 1.126,3.27 9.481,5.7812 19.594,5.7812 10.021,0 18.289,-2.492 19.531,-5.7188 -3.5163,2.8678 -10.929,4.8438 -19.531,4.8438 -8.6478,0 -16.1,-2.0137 -19.594,-4.9062 z"
style="fill:#565656"
id="path6060"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g6825"
class="fragment">
<path
inkscape:connector-curvature="0"
id="path209"
d="M 55.598493,52.404362 H 119.19702"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
<g
id="layer1-0"
inkscape:label="Calque 1"
transform="matrix(2.3481772,0,0,2.3481772,125.6658,1.4856692)">
<path
inkscape:connector-curvature="0"
id="rect2881"
style="fill:url(#linearGradient2889)"
transform="translate(0,14)"
d="M 0,0 H 16 V 15 H 0 Z" />
<path
inkscape:connector-curvature="0"
id="rect3233"
style="fill:url(#linearGradient3241)"
d="M 1,1 V 14 H 11 V 1 Z m 11,0 v 13 h 3 V 1 Z"
transform="translate(0,14)" />
<path
inkscape:connector-curvature="0"
id="rect2891"
style="fill:#babdb6"
transform="translate(0,14)"
d="m 1,15 h 14 v 1 H 1 Z" />
<path
inkscape:connector-curvature="0"
id="rect2893"
style="fill:url(#linearGradient2901)"
d="m 12,18 h 3 v 7 h -3 z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4"
style="fill:#888a85"
d="m 13,16 h 1 v 1 h -1 z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-0"
style="fill:#888a85"
d="m 13,26 h 1 v 1 h -1 z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9"
style="fill:#888a85"
d="m 2,16 h 1 v 1 H 2 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4"
style="fill:#d7dbd3"
d="m 3,16 h 1 v 1 H 3 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8"
style="fill:#babdb6"
d="m 4,16 h 1 v 1 H 4 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-82"
style="fill:#d7dbd3"
d="m 5,16 h 1 v 1 H 5 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-45"
style="fill:#888a85"
d="m 7,16 h 1 v 1 H 7 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-5"
style="fill:#d7dbd3"
d="m 8,16 h 1 v 1 H 8 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8-1"
style="fill:#babdb6"
d="m 9,16 h 1 v 1 H 9 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-7"
style="fill:#888a85"
d="m 2,18 h 1 v 1 H 2 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-1"
style="fill:#d7dbd3"
d="m 3,18 h 1 v 1 H 3 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8-15"
style="fill:#babdb6"
d="m 4,18 h 1 v 1 H 4 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-82-2"
style="fill:#d7dbd3"
d="m 5,18 h 1 v 1 H 5 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-45-7"
style="fill:#888a85"
d="m 7,18 h 1 v 1 H 7 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-5-6"
style="fill:#d7dbd3"
d="m 8,18 h 1 v 1 H 8 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8-1-1"
style="fill:#babdb6"
d="m 9,18 h 1 v 1 H 9 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-2"
style="fill:#888a85"
d="m 2,20 h 1 v 1 H 2 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-3"
style="fill:#d7dbd3"
d="m 3,20 h 1 v 1 H 3 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8-2"
style="fill:#babdb6"
d="m 4,20 h 1 v 1 H 4 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-82-21"
style="fill:#d7dbd3"
d="m 5,20 h 1 v 1 H 5 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-45-6"
style="fill:#888a85"
d="m 7,20 h 1 v 1 H 7 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-5-8"
style="fill:#d7dbd3"
d="m 8,20 h 1 v 1 H 8 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8-1-5"
style="fill:#babdb6"
d="m 9,20 h 1 v 1 H 9 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-6"
style="fill:#888a85"
d="m 2,22 h 1 v 1 H 2 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-18"
style="fill:#d7dbd3"
d="m 3,22 h 1 v 1 H 3 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8-9"
style="fill:#babdb6"
d="m 4,22 h 1 v 1 H 4 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-82-27"
style="fill:#d7dbd3"
d="m 5,22 h 1 v 1 H 5 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-45-9"
style="fill:#888a85"
d="m 7,22 h 1 v 1 H 7 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-5-5"
style="fill:#d7dbd3"
d="m 8,22 h 1 v 1 H 8 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8-1-4"
style="fill:#babdb6"
d="m 9,22 h 1 v 1 H 9 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-1"
style="fill:#888a85"
d="m 2,24 h 1 v 1 H 2 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-2"
style="fill:#d7dbd3"
d="m 3,24 h 1 v 1 H 3 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8-3"
style="fill:#babdb6"
d="m 4,24 h 1 v 1 H 4 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-82-3"
style="fill:#d7dbd3"
d="m 5,24 h 1 v 1 H 5 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-45-4"
style="fill:#888a85"
d="m 7,24 h 1 v 1 H 7 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-5-1"
style="fill:#d7dbd3"
d="m 8,24 h 1 v 1 H 8 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8-1-13"
style="fill:#babdb6"
d="m 9,24 h 1 v 1 H 9 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-74"
style="fill:#888a85"
d="m 2,26 h 1 v 1 H 2 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-27"
style="fill:#d7dbd3"
d="m 3,26 h 1 v 1 H 3 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8-7"
style="fill:#babdb6"
d="m 4,26 h 1 v 1 H 4 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-82-9"
style="fill:#d7dbd3"
d="m 5,26 h 1 v 1 H 5 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-45-3"
style="fill:#888a85"
d="m 7,26 h 1 v 1 H 7 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-5-19"
style="fill:#d7dbd3"
d="m 8,26 h 1 v 1 H 8 Z" />
<path
inkscape:connector-curvature="0"
id="rect2903-4-9-4-8-1-8"
style="fill:#babdb6"
d="m 9,26 h 1 v 1 H 9 Z" />
</g>
</g>
<g
id="g14667"
transform="matrix(0.01744303,0,0,0.01744303,71.641424,34.074771)"
class="fragment">
<path
id="path14659"
d="m 867.20567,0.4227 c 89.45,-7.31733 168.44703,67.8533 178.56703,154.76 18.25,93.412 -12.1,187.411 -58.73503,267.74 -24.835,55.204 -62.136,113.96 -48.687,176.84 46.812,12.947 105.14203,-1.596 156.29203,3.269 83.64,1.948 169.32,-3.629 251.13,16.287 54.96,25.792 90.98,84.905 105.34,142.28 -3.5,52.644 -84.51,95.832 -30.02,149.36 47.38,46.553 21.64,103.302 -22.49,140.412 -40.67,54.73 50.39,112.71 8.47,168.84 -30.43,42.42 -90.69,73.95 -75.17,135.35 7.1,61.69 -53.36,101.55 -97.19,133.04 -77.18,38.53 -167.56,28.5 -251.25503,30.49 -140.11,-4.42 -281.42,-6.19 -418.52,-38.51 -65.784,-12.46 -131.88,-23.51 -197.46,-36.9 l -1.935,-622.477 c 55.352,7.866 99.96,-31.753 129.24,-74.413 64.804,-87.312 99.96,-191.1 146.391,-288.1 43.382,-65.348 127.94,-96.117 153.269,-175.12 36.043,-83.668 39.88,-176.1 49.535,-265.38 -4.062,-11.536 31.497,-18.048 23.221,-17.7693 z"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
<path
id="path14661"
d="m 885.00586,-40.027344 c -5.35644,-0.142459 -10.77817,0.0097 -16.23047,0.320313 -1.38768,-0.01908 -2.10173,0.122706 -2.92383,0.15039 a 40.004,40.004 0 0 0 -0.29492,0.02539 c -0.53916,0.03963 -1.07134,0.04372 -1.61133,0.08789 l 0.35547,0.01758 a 40.004,40.004 0 0 0 -13.83008,3.533203 c 0.91282,-0.17774 1.31105,0.120586 1.70899,0 -0.64419,0.220238 -3.10243,1.167585 -4.87305,1.798828 0.4647,-0.343624 0.79222,-0.52756 1.15625,-0.751953 a 40.004,40.004 0 0 0 -1.85742,1.011719 c -1.82529,0.66053 -2.39597,0.784754 -4.70899,1.740234 -5.4779,2.262854 -12.03887,4.755703 -20.67968,12.068359 -4.32041,3.656328 -9.60924,8.8214 -13.64453,17.9355472 -2.17321,4.9084281 -3.37321,11.1854241 -3.52735,17.5917968 -9.72879,90.507627 -14.3139,177.905617 -46.33789,252.244137 a 40.004,40.004 0 0 0 -1.35547,3.61329 c -9.17461,28.61627 -29.64569,50.14269 -57.95508,74.65039 -28.30938,24.50769 -63.83451,50.31777 -90.54882,90.55859 a 40.004,40.004 0 0 0 -2.75391,4.85156 c -47.83359,99.93019 -82.54269,200.84142 -142.43164,281.53125 a 40.004,40.004 0 0 0 -0.85938,1.20313 C 449.25656,742.43367 433.66634,759.22204 418,769.49805 c -15.66634,10.27601 -29.89752,14.50978 -46.83008,12.10351 a 40.004,40.004 0 0 0 -45.62695,39.72656 l 1.93555,622.47658 a 40.004,40.004 0 0 0 31.99804,39.0683 c 66.37878,13.5531 132.52361,24.6131 197.61328,36.9356 142.32213,33.3505 285.94154,34.8715 425.10743,39.2617 a 40.004,40.004 0 0 0 2.21093,0.01 c 79.8179,-1.8978 177.3426,10.6516 268.1699,-34.6914 a 40.004,40.004 0 0 0 5.4746,-3.3028 c 21.332,-15.3261 49.7535,-34.2349 73.9121,-60.7304 24.1586,-26.4956 44.8123,-64.7399 39.6758,-109.3692 a 40.004,40.004 0 0 0 -0.957,-5.2285 c -4.3471,-17.198 -0.5712,-23.5129 12.6328,-39.7832 13.1332,-16.183 36.2342,-34.709 55.9336,-62.0234 16.4952,-22.2091 21.1445,-49.9746 18.0703,-71.7071 -3.0829,-21.7944 -11.1272,-38.7903 -17.3848,-53.0507 -6.2575,-14.2604 -10.7343,-25.8317 -11.7402,-32.3477 -0.7695,-4.9845 -1.1278,-6.114 0.4688,-8.6953 24.9255,-21.9833 45.9654,-49.6496 54.3535,-83.93946 8.8737,-36.2752 -1.8216,-80.2759 -33.8906,-111.78516 a 40.004,40.004 0 0 0 0,-0.002 c -8.1695,-8.02532 -6.8188,-8.68162 -6.8203,-10.02539 0,-1.34378 1.2844,-7.07005 6.7051,-16.47071 10.8415,-18.80131 38.9605,-45.69381 42.0176,-91.67578 a 40.004,40.004 0 0 0 -1.1094,-12.36523 c -16.6139,-66.38062 -56.9965,-135.85703 -127.1504,-168.7793 a 40.004,40.004 0 0 0 -7.5312,-2.6543 c -89.6568,-21.82624 -178.3165,-15.528 -259.502,-17.4082 -45.4049,-3.93407 -88.0454,1.74112 -119.47263,1.25781 3.54094,-36.12595 25.45383,-76.77688 46.42973,-123.18164 49.0748,-85.16617 83.0093,-187.82134 62.3417,-293.60742 l 0.4727,3.04297 C 1073.7105,49.279121 989.09422,-37.259023 885.00586,-40.027344 Z m -40.08008,73.625 a 40.004,40.004 0 0 0 14.96875,6.150391 l 0.008,0.002 a 40.004,40.004 0 0 0 0.0859,0.01172 c -2.83826,-0.104348 -7.49358,0.348432 -15.0625,-6.164063 z m 37.75,6.429688 c 60.75257,2.326598 116.18367,58.108707 123.36522,119.781246 a 40.004,40.004 0 0 0 0.4746,3.04297 c 15.6815,80.2651 -10.45462,164.86014 -54.07029,239.98828 a 40.004,40.004 0 0 0 -1.88672,3.67188 c -23.04367,51.22218 -69.00102,118.9612 -51.32226,201.61719 a 40.004,40.004 0 0 0 28.45117,30.18554 c 62.45743,17.27413 122.3517,0.65498 163.168,4.53711 a 40.004,40.004 0 0 0 2.8554,0.16992 c 84.4049,1.96582 165.5068,-2.59187 238.3243,14.20899 36.0419,18.6151 64.8072,61.74872 77.8632,106.05078 -3.7895,9.30508 -15.9526,27.98741 -30.1933,52.68359 -8.458,14.66785 -17.4275,33.06569 -17.4024,56.51954 0.025,23.45384 11.6824,48.27108 30.7578,67.00976 15.3078,15.04162 15.4336,22.69291 12.25,35.70703 -3.1837,13.01505 -15.1411,30.99823 -32.4511,45.55473 a 40.004,40.004 0 0 0 -6.3633,6.7558 c -16.4464,22.1321 -20.6846,50.0369 -17.3652,71.5391 3.3194,21.5021 11.3631,38.195 17.5468,52.2871 6.1837,14.0921 10.5018,25.5376 11.4317,32.1113 0.9299,6.5737 1.264,7.0017 -3.086,12.8262 a 40.004,40.004 0 0 0 -0.4531,0.6191 c -10.6617,14.8626 -32.7195,33.2183 -53.373,58.668 -19.9904,24.6326 -37.9663,63.0482 -28.9746,105.5684 1.6092,16.5433 -4.4255,28.9306 -19.3731,45.3242 -14.5632,15.9719 -36.84,31.9624 -58.4062,47.4453 -62.8933,30.2139 -144.5908,23.2346 -230.58012,25.1836 -140.32589,-4.4175 -278.57289,-6.5123 -409.74805,-37.4356 a 40.004,40.004 0 0 0 -1.73437,-0.3691 C 516.89365,1430.7696 461.7646,1421.2683 407.375,1410.7422 l -1.71289,-551.29298 c 20.75413,-4.0296 39.88325,-12.34494 56.2168,-23.0586 27.79566,-18.23199 49.14899,-42.58421 65.88281,-66.96484 68.42598,-92.68097 103.94928,-197.57314 148.14062,-290.5332 16.82407,-24.31912 44.51329,-46.13094 74.85547,-72.39844 30.72321,-26.59736 64.64776,-59.45025 81.07031,-108.69531 36.64706,-86.01964 41.99147,-175.41483 50.19336,-257.757814 0.21719,0.0069 0.43725,-0.02199 0.6543,-0.01367 z m -17.39062,0.304687 a 40.004,40.004 0 0 0 3.26172,0.05273 l -0.002,0.01367 c -0.36209,0.01219 -1.27779,0.09572 -3.25976,-0.06641 z"
inkscape:connector-curvature="0" />
<path
id="path14663"
d="m 58,848.9057 c 0,-32.79 26.58137,-59.371 59.37067,-59.371 h 185.724 c 32.789,0 59.371,26.581 59.371,59.371 v 579.105 c 0,32.79 -26.582,59.37 -59.371,59.37 h -185.724 c -32.7893,0 -59.37067,-26.58 -59.37067,-59.37 z"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
<path
id="path14665"
d="M 117.37109,749.53516 C 62.964173,749.53516 18,794.49879 18,848.90625 v 579.10355 c 0,54.4074 44.964986,99.3711 99.37109,99.3711 h 185.72266 c 54.40601,0 99.37109,-44.9632 99.37109,-99.3711 V 848.90625 c 0,-54.40797 -44.96427,-99.37109 -99.37109,-99.37109 z m 0,80 h 185.72266 c 11.17118,0 19.37109,8.19906 19.37109,19.37109 v 579.10355 c 0,11.172 -8.1991,19.3711 -19.37109,19.3711 H 117.37109 C 106.1986,1447.3809 98,1439.1823 98,1428.0098 V 848.90625 c 0,-11.17254 8.19941,-19.37109 19.37109,-19.37109 z"
inkscape:connector-curvature="0" />
</g>
<text
id="text6992-3"
y="69.40992"
x="29.298269"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
class="fragment"
sodipodi:linespacing="125%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="69.40992"
x="29.298269"
id="tspan6990-6"
sodipodi:role="line">💩</tspan></text>
<text
id="text6992-3-8"
y="61.84584"
x="142.9966"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
class="fragment"
sodipodi:linespacing="125%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"
y="61.84584"
x="142.9966"
id="tspan6990-6-9"
sodipodi:role="line">?</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View file

@ -0,0 +1,250 @@
<svg id="svg6521" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="68mm" width="84.709mm" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 300.14851 240.9455" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs id="defs6523">
<mask id="mask3634-9" height="1" width="1" y="0" x="0" maskUnits="userSpaceOnUse">
<g id="g3636-0">
<g id="g3638-2" clip-path="url(#clipPath3626-6)">
<g id="g3640-3" transform="translate(985.9 506.12)">
<g id="g3642-8">
<g id="g3644-8" clip-path="url(#clipPath3630-5)">
<g id="g3646-7" transform="matrix(31.176 -139.12 136.27 30.537 -27.535 122.87)">
<path id="path3648-6" d="m0.1 0h-0.1556v1h0.1556v-1z" fill="#fff"/>
<path id="path3650-6" d="m0.9 0h0.1556v1h-0.1556v-1z"/>
<image id="image3652-8" height="1" width="1" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAYAAAAxWXB3AAAABHNCSVQICAgIfAhkiAAAABNJREFUOI1j/A8BDKN4FI/ikYcBWBT+H8Tl7TsAAAAASUVORK5CYII=" transform="matrix(1,0,0,-1,0,1)"/>
</g>
</g>
</g>
</g>
</g>
</g>
</mask>
<clipPath id="clipPath3626-6" clipPathUnits="userSpaceOnUse">
<path id="path3628-3" d="m985.9 506.12h112.37v137.16h-112.37v-137.16z"/>
</clipPath>
<clipPath id="clipPath3630-5" clipPathUnits="userSpaceOnUse">
<path id="path3632-2" clip-rule="evenodd" d="m0 0h112.37v137.16h-112.37v-137.16z"/>
</clipPath>
<mask id="mask3600-6" height="1" width="1" y="0" x="0" maskUnits="userSpaceOnUse">
<g id="g3602-0">
<g id="g3604-4" clip-path="url(#clipPath3592-4)">
<g id="g3606-9" transform="translate(992.79 507.76)">
<g id="g3608-9">
<g id="g3610-3" clip-path="url(#clipPath3596-7)">
<g id="g3612-1" transform="matrix(31.21 -139.27 137.02 30.706 -27.533 122.86)">
<path id="path3614-1" d="m0.1 0h-0.1556v1h0.1556v-1z" fill="#fff"/>
<path id="path3616-7" d="m0.9 0h0.1556v1h-0.1556v-1z"/>
<image id="image3618-3" height="1" width="1" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAYAAAAxWXB3AAAABHNCSVQICAgIfAhkiAAAABNJREFUOI1j/A8BDKN4FI/ikYcBWBT+H8Tl7TsAAAAASUVORK5CYII=" transform="matrix(1,0,0,-1,0,1)"/>
</g>
</g>
</g>
</g>
</g>
</g>
</mask>
<clipPath id="clipPath3592-4" clipPathUnits="userSpaceOnUse">
<path id="path3594-7" d="m992.79 507.76h113.17v137.16h-113.17v-137.16z"/>
</clipPath>
<clipPath id="clipPath3596-7" clipPathUnits="userSpaceOnUse">
<path id="path3598-2" clip-rule="evenodd" d="m0 0h113.17v137.16h-113.17v-137.16z"/>
</clipPath>
<mask id="mask3566-4" height="1" width="1" y="0" x="0" maskUnits="userSpaceOnUse">
<g id="g3568-3">
<g id="g3570-4" clip-path="url(#clipPath3558-6)">
<g id="g3572-6" transform="translate(865.84 481.01)">
<g id="g3574-7">
<g id="g3576-8" clip-path="url(#clipPath3562-2)">
<g id="g3578-8" transform="matrix(31.157 -139.03 151.51 33.952 -27.142 121.12)">
<path id="path3580-2" d="m0.1 0h-0.1682v1h0.1682v-1z" fill="#fff"/>
<path id="path3582-7" d="m0.9 0h0.1682v1h-0.1682v-1z"/>
<image id="image3584-1" height="1" width="1" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAYAAAAxWXB3AAAABHNCSVQICAgIfAhkiAAAABNJREFUOI1j/A8BDKN4FI/ikYcBWBT+H8Tl7TsAAAAASUVORK5CYII=" transform="matrix(1,0,0,-1,0,1)"/>
</g>
</g>
</g>
</g>
</g>
</g>
</mask>
<clipPath id="clipPath3558-6" clipPathUnits="userSpaceOnUse">
<path id="path3560-7" d="m865.84 481.01h128.38v137.16h-128.38v-137.16z"/>
</clipPath>
<clipPath id="clipPath3562-2" clipPathUnits="userSpaceOnUse">
<path id="path3564-2" clip-rule="evenodd" d="m0 0h128.38v137.16h-128.38v-137.16z"/>
</clipPath>
<mask id="mask3532-6" height="1" width="1" y="0" x="0" maskUnits="userSpaceOnUse">
<g id="g3534-8">
<g id="g3536-8" clip-path="url(#clipPath3524-0)">
<g id="g3538-0" transform="translate(874.16 481.01)">
<g id="g3540-9">
<g id="g3542-9" clip-path="url(#clipPath3528-6)">
<g id="g3544-1" transform="matrix(31.148 -139 135.66 30.4 -27.536 122.88)">
<path id="path3546-9" d="m0.1 0h-0.1556v1h0.1556v-1z" fill="#fff"/>
<path id="path3548-5" d="m0.9 0h0.1556v1h-0.1556v-1z"/>
<image id="image3550-7" height="1" width="1" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAYAAAAxWXB3AAAABHNCSVQICAgIfAhkiAAAABNJREFUOI1j/A8BDKN4FI/ikYcBWBT+H8Tl7TsAAAAASUVORK5CYII=" transform="matrix(1,0,0,-1,0,1)"/>
</g>
</g>
</g>
</g>
</g>
</g>
</mask>
<clipPath id="clipPath3524-0" clipPathUnits="userSpaceOnUse">
<path id="path3526-3" d="m874.16 481.01h111.74v137.16h-111.74v-137.16z"/>
</clipPath>
<clipPath id="clipPath3528-6" clipPathUnits="userSpaceOnUse">
<path id="path3530-7" clip-rule="evenodd" d="m0 0h111.74v137.16h-111.74v-137.16z"/>
</clipPath>
<mask id="mask3496-8" height="1" width="1" y="0" x="0" maskUnits="userSpaceOnUse">
<g id="g3498-6">
<g id="g3500-3" clip-path="url(#clipPath3488-5)">
<g id="g3502-4" transform="translate(980.61 556.83)">
<g id="g3504-0">
<g id="g3506-8" clip-path="url(#clipPath3492-4)">
<g id="g3508-0" transform="matrix(23.441 -79.04 112.82 33.461 -18.317 61.76)">
<path id="path3510-9" d="m0.1 0h-0.225v1h0.225v-1z" fill="#fff"/>
<path id="path3512-6" d="m0.9 0h0.225v1h-0.225v-1z"/>
<image id="image3514-2" height="1" width="1" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAYAAAAxWXB3AAAABHNCSVQICAgIfAhkiAAAABNJREFUOI1j/A8BDKN4FI/ikYcBWBT+H8Tl7TsAAAAASUVORK5CYII=" transform="matrix(1,0,0,-1,0,1)"/>
</g>
</g>
</g>
</g>
</g>
</g>
</mask>
<clipPath id="clipPath3488-5" clipPathUnits="userSpaceOnUse">
<path id="path3490-0" d="m980.61 556.83h99.632v77.941h-99.632v-77.941z"/>
</clipPath>
<clipPath id="clipPath3492-4" clipPathUnits="userSpaceOnUse">
<path id="path3494-2" clip-rule="evenodd" d="m0 0h99.632v77.941h-99.632v-77.941z"/>
</clipPath>
<mask id="mask3462-1" height="1" width="1" y="0" x="0" maskUnits="userSpaceOnUse">
<g id="g3464-7">
<g id="g3466-6" clip-path="url(#clipPath3454-9)">
<g id="g3468-6" transform="translate(978.69 557.47)">
<g id="g3470-0">
<g id="g3472-5" clip-path="url(#clipPath3458-2)">
<g id="g3474-5" transform="matrix(31.392 -140.09 125.96 28.226 -27.901 124.51)">
<path id="path3476-6" d="m0.1 0h-0.1435v1h0.1435v-1z" fill="#fff"/>
<path id="path3478-4" d="m0.9 0h0.1435v1h-0.1435v-1z"/>
<image id="image3480-3" height="1" width="1" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAYAAAAxWXB3AAAABHNCSVQICAgIfAhkiAAAABNJREFUOI1j/A8BDKN4FI/ikYcBWBT+H8Tl7TsAAAAASUVORK5CYII=" transform="matrix(1,0,0,-1,0,1)"/>
</g>
</g>
</g>
</g>
</g>
</g>
</mask>
<clipPath id="clipPath3454-9" clipPathUnits="userSpaceOnUse">
<path id="path3456-1" d="m978.69 557.47h101.55v137.16h-101.55v-137.16z"/>
</clipPath>
<clipPath id="clipPath3458-2" clipPathUnits="userSpaceOnUse">
<path id="path3460-6" clip-rule="evenodd" d="m0 0h101.55v137.16h-101.55v-137.16z"/>
</clipPath>
<mask id="mask3428-9" height="1" width="1" y="0" x="0" maskUnits="userSpaceOnUse">
<g id="g3430-4">
<g id="g3432-1" clip-path="url(#clipPath3420-9)">
<g id="g3434-6" transform="translate(883.67 533.29)">
<g id="g3436-3">
<g id="g3438-4" clip-path="url(#clipPath3424-6)">
<g id="g3440-1" transform="matrix(30.917 -137.97 101.43 22.731 -28.28 126.2)">
<path id="path3442-7" d="m0.1 0h-0.1319v1h0.1319v-1z" fill="#fff"/>
<path id="path3444-3" d="m0.9 0h0.1319v1h-0.1319v-1z"/>
<image id="image3446-1" height="1" width="1" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAYAAAAxWXB3AAAABHNCSVQICAgIfAhkiAAAABNJREFUOI1j/A8BDKN4FI/ikYcBWBT+H8Tl7TsAAAAASUVORK5CYII=" transform="matrix(1,0,0,-1,0,1)"/>
</g>
</g>
</g>
</g>
</g>
</g>
</mask>
<clipPath id="clipPath3420-9" clipPathUnits="userSpaceOnUse">
<path id="path3422-8" d="m883.67 533.29h75.793v137.16h-75.793v-137.16z"/>
</clipPath>
<clipPath id="clipPath3424-6" clipPathUnits="userSpaceOnUse">
<path id="path3426-5" clip-rule="evenodd" d="m0 0h75.793v137.16h-75.793v-137.16z"/>
</clipPath>
<mask id="mask3394-8" height="1" width="1" y="0" x="0" maskUnits="userSpaceOnUse">
<g id="g3396-9">
<g id="g3398-5" clip-path="url(#clipPath3386-2)">
<g id="g3400-0" transform="translate(890.74 531.8)">
<g id="g3402-3">
<g id="g3404-7" clip-path="url(#clipPath3390-8)">
<g id="g3406-3" transform="matrix(16.543 -70.017 88.172 20.832 -14.338 60.686)">
<path id="path3408-7" d="m0.1 0h-0.2098v1h0.2098v-1z" fill="#fff"/>
<path id="path3410-1" d="m0.9 0h0.2098v1h-0.2098v-1z"/>
<image id="image3412-4" height="1" width="1" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAYAAAAxWXB3AAAABHNCSVQICAgIfAhkiAAAABNJREFUOI1j/A8BDKN4FI/ikYcBWBT+H8Tl7TsAAAAASUVORK5CYII=" transform="matrix(1,0,0,-1,0,1)"/>
</g>
</g>
</g>
</g>
</g>
</g>
</mask>
<clipPath id="clipPath3386-2" clipPathUnits="userSpaceOnUse">
<path id="path3388-9" d="m890.74 531.8h76.039v72.187h-76.039v-72.187z"/>
</clipPath>
<clipPath id="clipPath3390-8" clipPathUnits="userSpaceOnUse">
<path id="path3392-0" clip-rule="evenodd" d="m0 0h76.039v72.187h-76.039v-72.187z"/>
</clipPath>
<mask id="mask3360-0" height="1" width="1" y="0" x="0" maskUnits="userSpaceOnUse">
<g id="g3362-0">
<g id="g3364-7" clip-path="url(#clipPath3352-8)">
<g id="g3366-5" transform="translate(947.16 522.12)">
<g id="g3368-8">
<g id="g3370-3" clip-path="url(#clipPath3356-5)">
<g id="g3372-7" transform="matrix(19.419 -102.25 76.969 14.617 -17.931 94.42)">
<path id="path3374-3" d="m0.1 0h-0.1319v1h0.1319v-1z" fill="#fff"/>
<path id="path3376-8" d="m0.9 0h0.1319v1h-0.1319v-1z"/>
<image id="image3378-0" height="1" width="1" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAYAAAAxWXB3AAAABHNCSVQICAgIfAhkiAAAABNJREFUOI1j/A8BDKN4FI/ikYcBWBT+H8Tl7TsAAAAASUVORK5CYII=" transform="matrix(1,0,0,-1,0,1)"/>
</g>
</g>
</g>
</g>
</g>
</g>
</mask>
<clipPath id="clipPath3352-8" clipPathUnits="userSpaceOnUse">
<path id="path3354-5" d="m947.16 522.12h60.525v101.21h-60.525v-101.21z"/>
</clipPath>
<clipPath id="clipPath3356-5" clipPathUnits="userSpaceOnUse">
<path id="path3358-0" clip-rule="evenodd" d="m0 0h60.525v101.21h-60.525v-101.21z"/>
</clipPath>
</defs>
<g id="layer1" transform="translate(-161.35 -400.46)">
<g fill-rule="evenodd">
<path id="path3340" d="m222.71 444.35 142.18-31.861 96.62 46.186-300.15 67.261 61.352-81.585z" fill="#ccc"/>
<path id="path3342" d="m346.36 640.8 115.14-182.12-300.15 67.261 185.01 114.86z" fill="#ccc"/>
<path id="path3344" d="m238.11 440.9 112.69-25.253 79.583 50.004-237.9 53.311 45.625-78.061z" fill="#d6d6d6"/>
<path id="path3346" d="m346.04 640.87 84.34-175.22-237.9 53.311 153.56 121.91z" fill="#d6d6d6"/>
<path id="path3348" d="m265.6 434.74 60.03-13.452 49.159 56.821-126.73 28.399 17.54-71.768z" fill="#e0e0e0"/>
</g>
<g id="g3380" mask="url(#mask3360-0)" transform="matrix(1.25 0 0 -1.25 -920.95 1195.9)">
<path id="path3382" d="m947.16 597.13 26.987 16.318 30.685-4.3273-19.747-42.602-37.925 30.612z" fill-rule="evenodd" fill="#fff"/>
</g>
<g id="g3414" mask="url(#mask3394-8)" transform="matrix(1.25 0 0 -1.25 -920.95 1195.9)">
<path id="path3416" d="m947.16 597.13-19.913 6.8519-36.501-62.449 56.414 55.597z" fill-rule="evenodd" fill="#fff"/>
</g>
<g id="g3448" mask="url(#mask3428-9)" transform="matrix(1.25 0 0 -1.25 -920.95 1195.9)">
<path id="path3450" d="m883.67 559.67 13.982 18.593-6.9128-36.725-7.0696 18.132z" fill-rule="evenodd" fill="#fff"/>
</g>
<g id="g3482" mask="url(#mask3462-1)" transform="matrix(1.25 0 0 -1.25 -920.95 1195.9)">
<path id="path3484" d="m1079.8 602.28-22.128 10.577 22.599-28.86-0.4712 18.284z" fill-rule="evenodd" fill="#fff"/>
</g>
<g id="g3516" mask="url(#mask3496-8)" transform="matrix(1.25 0 0 -1.25 -920.95 1195.9)">
<path id="path3518" d="m1005.5 610.2 11.897 13.981 62.848-40.186-74.745 26.205z" fill-rule="evenodd" fill="#fff"/>
</g>
<path id="path3520" d="m343.65 641.41 31.148-163.3-126.73 28.399 95.582 134.9z" fill-rule="evenodd" fill="#e0e0e0"/>
<g id="g3552" mask="url(#mask3532-6)" transform="matrix(1.25 0 0 -1.25 -920.95 1195.9)">
<path id="path3554" d="m890.74 541.53 95.158 21.324-12.458-65.32-82.699 43.996z" fill-rule="evenodd" fill="#fff"/>
</g>
<g id="g3586" mask="url(#mask3566-4)" transform="matrix(1.25 0 0 -1.25 -920.95 1195.9)">
<path id="path3588" d="m890.74 541.53-24.902-5.5802 86.323-43.184-61.421 48.764z" fill-rule="evenodd" fill="#fff"/>
</g>
<g id="g3620" mask="url(#mask3600-6)" transform="matrix(1.25 0 0 -1.25 -920.95 1195.9)">
<path id="path3622" d="m1081.1 584.18 24.901 5.5797-58.637-75.669 33.736 70.089z" fill-rule="evenodd" fill="#fff"/>
</g>
<g id="g3654" mask="url(#mask3634-9)" transform="matrix(1.25 0 0 -1.25 -920.95 1195.9)">
<path id="path3656" d="m1081.1 584.18-95.158-21.325 39.143-53.756 56.015 75.081z" fill-rule="evenodd" fill="#fff"/>
</g>
<path id="path3658" d="m207.89 402.93 26.152 26.334 23.408-28.801-16.964 33.01 34.624 13.362-36.636-5.9332-2.0087 37.059-5.6782-36.677-35.866 9.5418 33.127-16.734-20.158-31.162z" fill-rule="evenodd" fill="#fff"/>
<path id="path3660" d="m428.31 437.43-1.5463 28.09 28.096-1.4461-27.194 7.2104 10.057 26.273-15.26-23.634-21.88 17.684 17.762-21.816-23.58-15.344 26.238 10.15 7.3067-27.168z" fill-rule="evenodd" fill="#fff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 1.1 MiB

View file

@ -111,13 +111,7 @@
points="20,60 140,60 120,50 140,60 120,70 140,60"
transform="translate(0,390) rotate(-60)"
/>
<g style="font-size: 18px; stroke-width: 0; fill: rgba(120,120,120,1); ">
<text x="130" y="211">Probability</text>
<text x="130" y="237">Expectation</text>
<text x="130" y="263">Variance</text>
<text x="130" y="289">Histogram</text>
</g>
<g class="fragment" data-fragment-index="7">
<g>
<image
xlink:href="graphics/dagobert83-female-user-icon-800px.png"
width="100" height="100"

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -196,7 +196,7 @@
<section>
<p>We have tools that can solve these problem!</p>
<img src="graphics/happy_alice.svg" width="200px" height="200px" />
<img src="graphics/happy_alice.svg" width="200px" height="200px" class="fragment" />
</section>
<section>
@ -230,7 +230,11 @@
<section>
<p>
<b>In the name of Codd</b><br/><span class="fragment grow highlight-current-blue" data-fragment-index="2">Thou shalt not give the user a wrong answer.</span>
<b>In the name of Codd</b><br/>Thou shalt not give the user a wrong answer.
</p>
<p style="margin-top: 50px;" class="fragment">
... but this assumes that we start with perfect data.
</p>
</section>
@ -238,6 +242,10 @@
<svg data-src="graphics/blackbox.svg" class="stretch" />
</section>
<section>
<img src="graphics/dataquality-poop.svg"/>
</section>
<section>
<img src="graphics/obamacare_stats_fail.jpg" height="400" />
<imagecredits>(Fox News)</imagecredits>
@ -322,17 +330,35 @@ Sampling (x10), 300, 242.5666234549135, 300, 119.61607021316885, 162.00108394436
<section>
<section>
<p>The <img src="graphics/mimir_logo_final.png" height="150px" style="vertical-align: middle"/>Uncertainty-Aware Database</p>
<h2>Declarative Uncertainty</h2>
</section>
<section>
<img src="graphics/mimir_logo_final.png" height="150px" style="vertical-align: middle"/>
<p>The Uncertainty Management System</p>
<p><a href="http://mimirdb.info">http://mimirdb.info</a></p>
</section>
<section>
<p>Mimir is a vehicle for research on...</p>
<svg data-src="graphics/mimir-workflow.svg" />
</section>
<section>
<p>At each step, Mimir tracks ambiguity and potential errors.</p>
<ul>
<li>A row that may or may not exist.</li>
<li>An attribute value that is missing or ambiguous.</li>
<li>A table with multiple possible schemas.</li>
<li style="color: #999">A violated constraint.</li>
</ul>
</section>
<section>
<p>Declarative uncertainty requires...</p>
<ol>
<li class="fragment" data-fragment-index="1">... uncertainty capture</li>
<li class="fragment" data-fragment-index="2"><span class="fragment highlight-current-red" data-fragment-index="5">... query processing over uncertain data</span></li>
<li class="fragment" data-fragment-index="3"><span class="fragment highlight-current-red" data-fragment-index="5">... intuitive and qualitative presentation of uncertainty</span></li>
<li class="fragment" data-fragment-index="4">... other things that we can do to make Alice's life easier</li>
<li class="fragment" data-fragment-index="2"><span class="fragment highlight-current-red" data-fragment-index="4">... query processing over uncertain data</span></li>
<li class="fragment" data-fragment-index="3"><span class="fragment highlight-current-red" data-fragment-index="4">... intuitive and qualitative presentation of uncertainty</span></li>
</ol>
</section>
@ -398,13 +424,12 @@ Sampling (x10), 300, 242.5666234549135, 300, 119.61607021316885, 162.00108394436
$$R(1, 2) \mapsto 1$$
$$R(1, 3) \mapsto 1$$
$$R(4, 3) \mapsto 1$$
$$S(2, 5) \mapsto 1$$
$$S(3, 6) \mapsto 2$$
</p>
<p class="fragment">
$$R(4, 5) \mapsto 0$$
</p>
<p class="fragment">
$$S(3, 6) \mapsto 2$$
</p>
</section>
<section>
@ -513,19 +538,20 @@ Sampling (x10), 300, 242.5666234549135, 300, 119.61607021316885, 162.00108394436
</section>
<section>
<h3>Information Extractors</h3>
<h3>Summarizing Possible Worlds</h3>
$$\mathcal K^W \rightarrow \mathcal K$$
(plug in any $K$-Relation-compatible $\mathcal K$)
<dl>
<dt class="fragment" data-fragment-index="1" style="margin-top: 50px;">Possible World Value</dt>
<dt class="fragment" data-fragment-index="1" style="margin-top: 50px;">Annotation in World $i$</dt>
<dd class="fragment" data-fragment-index="1">$\texttt{PW}_i(\vec k) \equiv \vec k_i$</dd>
<dt class="fragment" data-fragment-index="2" style="margin-top: 20px;">Certain Value</dt>
<dt class="fragment" data-fragment-index="2" style="margin-top: 20px;">Certain Annotation</dt>
<dd class="fragment" data-fragment-index="2">$\mathcal C(\vec k) \equiv min(\vec k)$</dd>
<dt class="fragment" data-fragment-index="3" style="margin-top: 20px;">Possible Value</dt>
<dt class="fragment" data-fragment-index="3" style="margin-top: 20px;">Possible Annotation</dt>
<dd class="fragment" data-fragment-index="3">$\mathcal P(\vec k) \equiv max(\vec k)$</dd>
</dl>
<p style="font-size: 50%" class="fragment">Correct/Possible mirrors "Correctness of SQL Queries on Databases with Nulls" [Guagliardo, Libkin 2017]</p>
</section>
<section>
@ -629,7 +655,7 @@ Sampling (x10), 300, 242.5666234549135, 300, 119.61607021316885, 162.00108394436
<section>
<p>Can we do the same thing for $\mathcal C(Q(\mathcal D))$?</p>
<p class="fragment">$$C(Q(\mathcal D)) \stackrel{?}{=} C(Q(\mathcal D))$$</p>
<p class="fragment">$$C(Q(\mathcal D)) \stackrel{?}{=} Q(\mathcal C(\mathcal D))$$</p>
</section>
<section>
@ -650,9 +676,10 @@ Sampling (x10), 300, 242.5666234549135, 300, 119.61607021316885, 162.00108394436
<section>
<table>
<tr><th style="border-right: solid 1px">$\pi_B$R</th><th>B</th><td></td><th>$K^W$</th><th>$\mathcal C$</th></tr>
<tr><td style="border-right: solid 1px"> </td><td>2</td><td>$\mapsto$</td><td>$[1,1]$</td><td class="fragment">$1$</td></tr>
<tr><td style="border-right: solid 1px"> </td><td>3</td><td>$\mapsto$</td><td>$[2,2]$</td><td class="fragment">$1+0+0=1$</td></tr>
<tr><td style="border-right: solid 1px"> </td><td>2</td><td>$\mapsto$</td><td>$[1,1]$</td><td class="fragment">$\mathcal C([1,1]) = 1$</td></tr>
<tr><td style="border-right: solid 1px"> </td><td>3</td><td>$\mapsto$</td><td>$[2,2]$</td><td class="fragment">$\mathcal C([1,1])+\mathcal C([1,0])+\mathcal C([0,1])$</td></tr>
</table>
<p class="fragment">$=1+0+0=1$ <span class="fragment">$\neq C([2,2])$</span></p>
</section>
<section>
@ -662,11 +689,11 @@ Sampling (x10), 300, 242.5666234549135, 300, 119.61607021316885, 162.00108394436
<section>
<h3>We can Approximate</h3>
<dl>
<dt>Soundness</dt>
<dt>(C-) Soundness</dt>
<dd class="fragment" data-fragment-index="1">$Q(\mathcal C(\mathcal D)) \leq \mathcal C(Q(\mathcal D))$</dd>
<dd class="fragment" data-fragment-index="2">We can efficiently compute a conservative approximation of $\mathcal C$.
<dt>(Conditional) Completeness</dt>
<dt>Completeness (for some queries)</dt>
<dd class="fragment" data-fragment-index="3">$Q(\mathcal C(\mathcal D)) = \mathcal C(Q(\mathcal D))$ ...if $Q$ is <i>safe</i></dd>
</dl>
</section>
@ -933,6 +960,11 @@ Tuple Bundles, 14.65919489, 300, 300
</section>
</section>
<section>
<img src="graphics/mimir_logo_final.png" height="150px" style="vertical-align: middle"/>
<p><a href="http://mimirdb.info">http://mimirdb.info</a></p>
</section>
<section>
<table>

View file

@ -57,6 +57,7 @@
<image
xlink:href="papers/p37-aggarwal.png"
class="fragment"
data-autoslide="200"
width="215.89999"
height="279.39999"
preserveAspectRatio="none"
@ -66,6 +67,7 @@
<image
xlink:href="papers/p517-shepard.png"
class="fragment"
data-autoslide="200"
width="215.89999"
height="279.39999"
preserveAspectRatio="none"
@ -75,6 +77,7 @@
<image
xlink:href="papers/p1-bhattacharya.png"
class="fragment"
data-autoslide="200"
width="215.89999"
height="279.39999"
preserveAspectRatio="none"
@ -84,6 +87,7 @@
<image
xlink:href="papers/p1483-wang.png"
class="fragment"
data-autoslide="200"
width="215.89999"
height="279.39999"
preserveAspectRatio="none"
@ -93,6 +97,7 @@
<image
xlink:href="papers/p2018-getoor.png"
class="fragment"
data-autoslide="200"
width="215.89999"
height="279.39999"
preserveAspectRatio="none"
@ -102,6 +107,7 @@
<image
xlink:href="papers/hodge.png"
class="fragment"
data-autoslide="200"
width="209.804"
height="297.01068"
preserveAspectRatio="none"
@ -111,6 +117,7 @@
<image
xlink:href="papers/btr597.png"
class="fragment"
data-autoslide="200"
width="215.73067"
height="279.06134"
preserveAspectRatio="none"
@ -120,6 +127,7 @@
<image
xlink:href="papers/778_2008_Article_98.png"
class="fragment"
data-autoslide="200"
width="209.97333"
height="278.892"
preserveAspectRatio="none"

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

23
src/seminar/2018sp.erb Normal file
View file

@ -0,0 +1,23 @@
---
title: The UBDB Seminar - Spring 2018
schedule:
- when: March 1; 1:00-2:30 PM
what: "Data, Responsibly"
who: Julia Stoyanovich (Drexel)
where: Davis 113A
details:
abstract: |
Data-driven algorithmic decision making promises to improve people's lives, accelerate scientific discovery and innovation, and bring about positive societal change. Yet, if not used responsibly, this same technology can reinforce inequity, limit accountability and infringe on the privacy of individuals: irreproducible results can influence global economic policy; algorithmic changes in search engines can sway elections and incite violence; models based on biased data can legitimize and amplify discrimination in the criminal justice system; algorithmic hiring practices can silently reinforce diversity issues and potentially violate the law; privacy and security violations can erode the trust of users and expose companies to legal and financial consequences.<br/>
In this talk I will discuss our recent work on establishing a foundational new role for database technology, in which managing data in accordance with ethical and moral norms, and legal and policy considerations becomes a core system requirement. I will define properties of responsible data management, which include fairness, transparency, and data protection. I will highlight some of our recent technical advances, and will discuss the over-all framework in which these responsibility properties are managed and enforced through all stages of the data lifecycle. The broader goal of our project is to help usher in a new phase of data science, in which the technology considers not only the accuracy of the model but also ensures that the data on which it depends respect the relevant laws, societal norms, and impacts on humans. Additional information about our project is available at DataResponsibly.com.
bio: |
Julia Stoyanovich is Assistant Professor of Computer Science at Drexel University, and an affiliated faculty at the Center for Information Technology Policy at Princeton. She is a recipient of an NSF CAREER award and of an NSF/CRA Computing Innovations Fellowship. Julia's research focuses on responsible data management and analysis practices: on operationalizing fairness, diversity, transparency, and data protection in all stages of the data acquisition and processing lifecycle. She established the Data, Responsibly consortium, serves on the ACM task force to revise the Code of Ethics and Professional Conduct, and is active in the New York City algorithmic transparency effort. In addition to data ethics, Julia works on management and analysis of preference data, and on querying large evolving graphs. She holds M.S. and Ph.D. degrees in Computer Science from Columbia University, and a B.S. in Computer Science and in Mathematics and Statistics from the University of Massachusetts at Amherst.
- when: March 8; Time TBD
what: Title TBD
who: Bill Howe (University of Washington)
where: Location TBD
details:
abstract: TBD
bio: TBD
---
<p>Subscribe to <a href="https://listserv.buffalo.edu/cgi-bin/wa?A0=cse-database-list">cse-database-list</a> for more details about the UBDB seminar.</p>

View file

@ -1,5 +1,5 @@
---
title: The UBDB Talk Series
redirect: 2017sp.html
redirect: 2018sp.html
---
Redirecting you <a href="<%=redirect%>">here</a>...