Version 1.0.0 (2025-10-12): Frisch

This commit is contained in:
nomisge 2025-10-12 02:52:01 +02:00
parent 2a3d0fbd7b
commit 1fda4c2ed5
223 changed files with 188349 additions and 0 deletions

BIN
duc/00_ablauf.odt Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
duc/02_duc_code39.odt Normal file

Binary file not shown.

Binary file not shown.

BIN
duc/02_duc_code39_lsg.odt Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 693 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 644 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 673 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 883 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 957 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 628 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 658 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 752 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 753 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 716 KiB

BIN
duc/BilderRastern.exe Normal file

Binary file not shown.

View file

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" xml:lang="de-DE">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
Code39-Generator
</title>
<script type="text/javascript" src="jquery-1.9.1.js"></script>
<style type="text/css">
body
{
font-family: Arial;
margin: 40px;
}
</style>
</head>
<body>
<p>Text: <input id="txt" onkeyup="javascript:generate39();" onchange="javascript:generate39();" value="INFORMATIK" /></p>
<p>Code39:</p>
<p id="error">aa</p>
<canvas id="cnv39" width="256" height="100"></canvas>
<div style="position: fixed; bottom: 10px; right: 10px; font-size:80%;">
<p xmlns:cc="http://creativecommons.org/ns#" xmlns:dct="http://purl.org/dc/terms/"><a property="dct:title" rel="cc:attributionURL" href="https://tools.info-bw.de/code39/">Code39-Generator</a> von <span property="cc:attributionName"><a href="mailto:rainer.helfrich@zsl-rstue.de">Rainer Helfrich</a></span> lizenziert als <a href="https://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY-SA 4.0<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/sa.svg?ref=chooser-v1" alt=""></a></p>
</div>
</body>
<script type="text/javascript">//<![CDATA[
const chars="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. *$/+%";
const codes=new Array(
"111221211","211211112","112211112","212211111","111221112","211221111","112221111","111211212",
"211211211","112211211","211112112","112112112","212112111","111122112","211122111","112122111",
"111112212","211112211","112112211","111122211","211111122","112111122","212111121","111121122",
"211121121","112121121","111111222","211111221","112111221","111121221","221111112","122111112",
"222111111","121121112","221121111","122121111","121111212","221111211","122111211","121121211",
"121212111","121211121","121112121","111212121");
function generate39()
{
var input = "*"+document.getElementById("txt").value+"*";
const canvas = document.getElementById('cnv39');
if (input.length == 2)
{
document.getElementById("error").textContent = "Leerer Text";
canvas.style.display="none";
return;
}
canvas.style.display="";
var w = input.length * 13*2 - 2;
document.getElementById("error").textContent = "";
document.getElementById("cnv39").width = w;
var img = new ImageData(w, 100);
var x = 0;
for (var i = 0; i < input.length; i++)
{
var idx = chars.indexOf(input[i]);
if (idx < 0)
{
document.getElementById("error").textContent = "Ungültiges Zeichen '"+input[i]+"'.";
return;
}
var code = codes[idx];
if (i < input.length-1)
code += "1";
for (var j = 0; j < code.length; j++)
{
zeichneFarbe(img, x, w, j % 2 == 0);
x++;
if (code[j] == '2')
{
zeichneFarbe(img, x, w, j % 2 == 0);
x++;
}
}
}
const ctx = canvas.getContext('2d');
ctx.putImageData(img, 0, 0);
}
function zeichneFarbe(imgdata, x, width, bit)
{
for (var y = 0; y < 100; y++)
{
for (var i = 0; i < 3; i++)
{
imgdata.data[4*(y*width+2*x)+i] = bit ? 0 : 255;
}
imgdata.data[4*(y*width+2*x)+3] = 255;
for (var i = 0; i < 3; i++)
{
imgdata.data[4*(y*width+2*x+1)+i] = bit ? 0 : 255;
}
imgdata.data[4*(y*width+2*x+1)+3] = 255;
}
}
generate39();
//]]></script>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,8 @@
Erklärung der Buchstaben:
https://www.youtube.com/watch?v=UpNnIo80V8M
Übungen (z.B. langsamer abspielen):
Level 1-3:
https://www.youtube.com/watch?v=-uKrwF2cKPY
https://www.youtube.com/watch?v=neSdBJRu9Tk
https://www.youtube.com/watch?v=Lmoy6K4ew3w
Mehr davon: https://www.youtube.com/@gebaerdenservice/videos

310
duc/Material/morse.drawio Normal file
View file

@ -0,0 +1,310 @@
<mxfile host="Electron" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/24.7.5 Chrome/126.0.6478.183 Electron/31.3.0 Safari/537.36" version="24.7.5">
<diagram name="Page-1" id="97916047-d0de-89f5-080d-49f4d83e522f">
<mxGraphModel dx="1195" dy="698" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1.5" pageWidth="1169" pageHeight="827" background="none" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="WOqUL5JCup-MIi7DiAmT-57" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;entryX=0;entryY=0.75;entryDx=0;entryDy=0;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-55" target="WOqUL5JCup-MIi7DiAmT-56">
<mxGeometry relative="1" as="geometry">
<mxPoint x="70" y="30" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-130" value="&lt;span style=&quot;font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;labelBorderColor=none;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-57">
<mxGeometry x="-0.4504" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-60" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-55" target="WOqUL5JCup-MIi7DiAmT-59">
<mxGeometry relative="1" as="geometry">
<mxPoint x="90" y="505" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-143" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-60">
<mxGeometry x="-0.1041" y="-6" relative="1" as="geometry">
<mxPoint y="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-55" value="" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;fillStyle=solid;fillColor=#000000;" vertex="1" parent="1">
<mxGeometry y="305.64703168680376" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-62" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-56" target="WOqUL5JCup-MIi7DiAmT-61">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-131" value="&lt;span style=&quot;font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-62">
<mxGeometry x="-0.0014" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-71" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-56" target="WOqUL5JCup-MIi7DiAmT-70">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-144" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-71">
<mxGeometry x="0.1798" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-56" value="&lt;font style=&quot;font-size: 20px;&quot;&gt;&lt;font style=&quot;font-size: 20px;&quot;&gt;T&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;font style=&quot;background-color: transparent; font-size: 20px;&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;/font&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="60" y="213.82411217802166" width="50" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-66" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-59" target="WOqUL5JCup-MIi7DiAmT-65">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-142" value="&lt;span style=&quot;font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-66">
<mxGeometry x="-0.3303" y="-2" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-68" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-59" target="WOqUL5JCup-MIi7DiAmT-67">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-153" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-68">
<mxGeometry x="-0.2195" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-59" value="E&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="60" y="382.4699511955858" width="50" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-92" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-61" target="WOqUL5JCup-MIi7DiAmT-91">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-132" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-92">
<mxGeometry x="-0.0772" y="-1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-95" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-61" target="WOqUL5JCup-MIi7DiAmT-94">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-145" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-95">
<mxGeometry x="0.0779" y="6" relative="1" as="geometry">
<mxPoint x="-1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-61" value="M&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="160" y="126.56099171874209" width="65" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-83" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-65" target="WOqUL5JCup-MIi7DiAmT-72">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-141" value="&lt;span style=&quot;font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-83">
<mxGeometry x="-0.1594" y="-2" relative="1" as="geometry">
<mxPoint x="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-85" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-65" target="WOqUL5JCup-MIi7DiAmT-84">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-154" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-85">
<mxGeometry x="-0.046" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-65" value="A&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="160" y="357.41171268306357" width="65" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-82" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-67" target="WOqUL5JCup-MIi7DiAmT-74">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-140" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-82">
<mxGeometry x="0.1583" y="-3" relative="1" as="geometry">
<mxPoint x="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-89" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-67" target="WOqUL5JCup-MIi7DiAmT-88">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-152" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-89">
<mxGeometry x="0.1143" y="2" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-67" value="I&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="160" y="419.9433784747507" width="65" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-77" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-70" target="WOqUL5JCup-MIi7DiAmT-76">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-134" value="&lt;span style=&quot;font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-77">
<mxGeometry x="0.0096" y="6" relative="1" as="geometry">
<mxPoint x="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-81" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-70" target="WOqUL5JCup-MIi7DiAmT-80">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-155" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-81">
<mxGeometry x="0.0072" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-70" value="&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;font style=&quot;font-size: 20px;&quot;&gt;N&amp;nbsp;&lt;span style=&quot;background-color: initial; font-size: 20px;&quot;&gt;-.&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="160" y="217.96169283137735" width="65" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-72" value="W&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="275" y="339.30819601799635" width="80" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-103" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-74" target="WOqUL5JCup-MIi7DiAmT-102">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-202" value="&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 20px; font-weight: 700; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-103">
<mxGeometry x="0.1789" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-194" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-74" target="WOqUL5JCup-MIi7DiAmT-193">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-195" value="&lt;span style=&quot;font-weight: 700; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;&lt;font style=&quot;font-size: 20px;&quot; face=&quot;Courier New&quot;&gt;.&lt;/font&gt;&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-194">
<mxGeometry x="0.1968" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-74" value="S&amp;nbsp;..." style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="275" y="491.93902803886033" width="80" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-117" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-76" target="WOqUL5JCup-MIi7DiAmT-116">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-135" value="&lt;span style=&quot;font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-117">
<mxGeometry x="0.2" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-120" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-76" target="WOqUL5JCup-MIi7DiAmT-119">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-147" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-120">
<mxGeometry x="0.1333" y="3" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-76" value="K&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="275" y="185.36381649138852" width="80" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-122" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-80" target="WOqUL5JCup-MIi7DiAmT-121">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-136" value="&lt;span style=&quot;font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-122">
<mxGeometry x="0.0667" y="6" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-124" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-80" target="WOqUL5JCup-MIi7DiAmT-123">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-148" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-124">
<mxGeometry x="-0.2667" y="-4" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-80" value="D&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="275" y="258.69714982472186" width="80" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-187" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1.011;exitY=0.506;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;orthogonal=1;exitPerimeter=0;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-84" target="WOqUL5JCup-MIi7DiAmT-186">
<mxGeometry relative="1" as="geometry">
<mxPoint x="645" y="2013.9435971396638" as="sourcePoint" />
<mxPoint x="694.6" y="2025.3185971396638" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-189" value="&lt;span style=&quot;font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];textShadow=1;fontFamily=Courier New;fontSize=20;fontStyle=1" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-187">
<mxGeometry x="-0.4101" y="-1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-84" value="R&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="275" y="396.64152935132967" width="80" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-107" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-88" target="WOqUL5JCup-MIi7DiAmT-106">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-151" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-107">
<mxGeometry x="-0.32" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-88" value="U&amp;nbsp;..-" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="275" y="438.605694705527" width="80" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-170" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-91" target="WOqUL5JCup-MIi7DiAmT-169">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-199" value="&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 20px; font-weight: 700; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-170">
<mxGeometry x="-0.3573" y="-1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-173" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-91" target="WOqUL5JCup-MIi7DiAmT-172">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-200" value="&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 20px; font-weight: 700; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-173">
<mxGeometry x="0.0447" y="-1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-91" value="G&amp;nbsp;--." style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="275" y="109.59609815576896" width="80" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-94" value="O&amp;nbsp;---" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="275" y="56.262764822435614" width="80" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-102" value="V ...-" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="405" y="472" width="90" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-106" value="F ..-." style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="405" y="440" width="90" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-116" value="Y&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="405" y="165" width="90" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-119" value="C&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="405" y="205" width="90" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-121" value="X&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="405" y="240" width="90" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-123" value="B&amp;nbsp;&lt;span style=&quot;font-size: 20px;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="405" y="280" width="90" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-163" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;exitX=0.994;exitY=0.192;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" target="WOqUL5JCup-MIi7DiAmT-167" source="WOqUL5JCup-MIi7DiAmT-72">
<mxGeometry relative="1" as="geometry">
<mxPoint x="820" y="1087.6" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-164" value="&lt;span style=&quot;font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);&quot;&gt;-&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-163">
<mxGeometry x="0.0667" y="6" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-165" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;exitX=1;exitY=0.75;exitDx=0;exitDy=0;" edge="1" parent="1" target="WOqUL5JCup-MIi7DiAmT-168" source="WOqUL5JCup-MIi7DiAmT-72">
<mxGeometry relative="1" as="geometry">
<mxPoint x="820" y="1037.6" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-166" value="&lt;span style=&quot;text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;&quot;&gt;.&lt;/span&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-165">
<mxGeometry x="-0.2667" y="-4" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-167" value="J&amp;nbsp;.---" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="405" y="320" width="90" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-168" value="P .--." style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
<mxGeometry x="405" y="360" width="90" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-169" value="Q&amp;nbsp;--.-" style="whiteSpace=wrap;html=1;fontSize=20;fontFamily=Courier New;rounded=1;fontStyle=1;" vertex="1" parent="1">
<mxGeometry x="405" y="90" width="90" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-172" value="Z&amp;nbsp;--.." style="whiteSpace=wrap;html=1;fontSize=20;fontFamily=Courier New;rounded=1;fontStyle=1;" vertex="1" parent="1">
<mxGeometry x="405" y="130" width="90" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-186" value="&lt;span style=&quot;color: rgb(0, 0, 0); font-family: &amp;quot;Courier New&amp;quot;; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(251, 251, 251); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;&quot;&gt;L&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;forced-color-adjust: none; color: rgb(0, 0, 0); font-family: &amp;quot;Courier New&amp;quot;; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(251, 251, 251); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;forced-color-adjust: none; color: rgb(0, 0, 0); font-family: &amp;quot;Courier New&amp;quot;; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(251, 251, 251); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;forced-color-adjust: none; color: rgb(0, 0, 0); font-family: &amp;quot;Courier New&amp;quot;; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(251, 251, 251); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;forced-color-adjust: none; color: rgb(0, 0, 0); font-family: &amp;quot;Courier New&amp;quot;; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(251, 251, 251); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;.&lt;/span&gt;" style="whiteSpace=wrap;html=1;fontSize=20;fontFamily=Courier New;rounded=1;fontStyle=1;" vertex="1" parent="1">
<mxGeometry x="405" y="397" width="90" height="25" as="geometry" />
</mxCell>
<mxCell id="WOqUL5JCup-MIi7DiAmT-193" value="H&amp;nbsp;...." style="whiteSpace=wrap;html=1;fontSize=20;fontFamily=Courier New;rounded=1;fontStyle=1;" vertex="1" parent="1">
<mxGeometry x="405" y="512" width="90" height="25" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
</mxfile>

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 221 KiB

BIN
duc/comic_con.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 MiB