Loesungs-Ids wieder als fortlaufende Nummern 1..N (Vorgaenger separat)
- Farm._WurzelId/_KindId ersetzt durch _NeueId: jede Loesung bekommt eine einfache fortlaufende Nummer (Wurzeln wie Mutationskinder gleich) - die Abstammung steckt nicht mehr in der Id, sondern im schon vorher gemerkten Vorgaenger (Abstammung-Knoten 'eltern'); der Baum und die Hervorhebung des Sieger-Astes funktionieren unveraendert - Tests auf das neue Id-Schema umgestellt (Nummern 1..N, Abstammung ueber Vorgaenger), README/CLAUDE.md aktualisiert - Beispiele neu berechnet Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@@ -96,10 +96,9 @@ Pass `--tosvg` to additionally write `<indir>/Sitzplatzverteilung.svg` via
|
|||||||
`Sitzplatzverteilung.alsSVG()` (see below). `--show-development` writes
|
`Sitzplatzverteilung.alsSVG()` (see below). `--show-development` writes
|
||||||
`<indir>/Entwicklung.svg` (value curves + pool-size panel), and `--show-lineage` writes
|
`<indir>/Entwicklung.svg` (value curves + pool-size panel), and `--show-lineage` writes
|
||||||
`<indir>/Abstammung.svg` — the full mutation tree of every solution, with the final best
|
`<indir>/Abstammung.svg` — the full mutation tree of every solution, with the final best
|
||||||
solution's ancestral branch highlighted and labelled with its lineage id. Lineage ids are
|
solution's ancestral branch highlighted and labelled with its id. Every solution gets a plain
|
||||||
hierarchical (`Farm._WurzelId`/`_KindId`): a root solution is a plain counter (`7`), each
|
running number (`Farm._NeueId`, `1..N`); the ancestry is not encoded in the id but recorded
|
||||||
mutation appends `.<child-index>` (`7.2`, then `7.2.1`), so the whole ancestry is readable
|
via each node's stored predecessor (parent id) and followed back along the highlighted branch.
|
||||||
straight off the id.
|
|
||||||
|
|
||||||
Run the test suite with `bin/run_tests.bat` / `bin/run_tests.sh` (or directly: `python -m
|
Run the test suite with `bin/run_tests.bat` / `bin/run_tests.sh` (or directly: `python -m
|
||||||
unittest discover -s tests -p "test_*.py" -v`). A stray global `PYTHONPATH` entry on this
|
unittest discover -s tests -p "test_*.py" -v`). A stray global `PYTHONPATH` entry on this
|
||||||
|
|||||||
@@ -136,9 +136,9 @@ Two more optional graphs go into the `--indir` directory:
|
|||||||
- `--show-development` → `Entwicklung.svg`: the course of the search (best/average/worst
|
- `--show-development` → `Entwicklung.svg`: the course of the search (best/average/worst
|
||||||
value over time, plus a panel with the number of solutions in the pool per step).
|
value over time, plus a panel with the number of solutions in the pool per step).
|
||||||
- `--show-lineage` → `Abstammung.svg`: the mutation tree of every solution. The final best
|
- `--show-lineage` → `Abstammung.svg`: the mutation tree of every solution. The final best
|
||||||
solution's ancestral branch is highlighted and labelled with its lineage id. Ids are
|
solution's ancestral branch is highlighted and labelled with its id. Every solution gets a
|
||||||
hierarchical — a root solution is a plain number (`7`), each mutation appends a child index
|
plain running number (`1..N`); the ancestry is recorded via each node's stored predecessor
|
||||||
(`7.2`, then `7.2.1`) — so the id itself spells out the whole ancestry.
|
(parent id), not encoded in the id itself, and is followed back along the highlighted branch.
|
||||||
|
|
||||||
## Further details
|
## Further details
|
||||||
|
|
||||||
|
|||||||
@@ -3,42 +3,42 @@
|
|||||||
<rect width="100%" height="100%" fill="white"/>
|
<rect width="100%" height="100%" fill="white"/>
|
||||||
<text x="600" y="30" text-anchor="middle" font-size="16" fill="#333">Abstammung der Loesungen (Mutationsbaum)</text>
|
<text x="600" y="30" text-anchor="middle" font-size="16" fill="#333">Abstammung der Loesungen (Mutationsbaum)</text>
|
||||||
<line x1="60.0" y1="60.0" x2="60.0" y2="150.0" stroke="#c04040" stroke-width="2.5"/>
|
<line x1="60.0" y1="60.0" x2="60.0" y2="150.0" stroke="#c04040" stroke-width="2.5"/>
|
||||||
<line x1="420.0" y1="60.0" x2="368.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="420.0" y1="60.0" x2="214.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="780.0" y1="60.0" x2="677.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="780.0" y1="60.0" x2="368.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1140.0" y1="60.0" x2="985.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1140.0" y1="60.0" x2="522.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="60.0" y1="60.0" x2="214.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="60.0" y1="60.0" x2="677.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="420.0" y1="60.0" x2="522.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="420.0" y1="60.0" x2="831.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="780.0" y1="60.0" x2="831.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="780.0" y1="60.0" x2="985.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1140.0" y1="60.0" x2="1140.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1140.0" y1="60.0" x2="1140.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="60.0" y1="150.0" x2="60.0" y2="240.0" stroke="#c04040" stroke-width="2.5"/>
|
<line x1="60.0" y1="150.0" x2="60.0" y2="240.0" stroke="#c04040" stroke-width="2.5"/>
|
||||||
|
<line x1="214.3" y1="150.0" x2="214.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="368.6" y1="150.0" x2="368.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="368.6" y1="150.0" x2="368.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="677.1" y1="150.0" x2="677.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="522.9" y1="150.0" x2="522.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="985.7" y1="150.0" x2="985.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="60.0" y1="150.0" x2="677.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="60.0" y1="150.0" x2="214.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="214.3" y1="150.0" x2="831.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="368.6" y1="150.0" x2="522.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="368.6" y1="150.0" x2="985.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="677.1" y1="150.0" x2="831.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="522.9" y1="150.0" x2="1140.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="985.7" y1="150.0" x2="1140.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<circle cx="60.0" cy="60.0" r="7" fill="#c83232" stroke="#c04040" stroke-width="2"><title>Id 1, Wert -100.0</title></circle>
|
<circle cx="60.0" cy="60.0" r="7" fill="#c83232" stroke="#c04040" stroke-width="2"><title>Id 1, Wert -100.0</title></circle>
|
||||||
<circle cx="420.0" cy="60.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 2, Wert -100.0</title></circle>
|
<circle cx="420.0" cy="60.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 2, Wert -100.0</title></circle>
|
||||||
<circle cx="780.0" cy="60.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 3, Wert -100.0</title></circle>
|
<circle cx="780.0" cy="60.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 3, Wert -100.0</title></circle>
|
||||||
<circle cx="1140.0" cy="60.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 4, Wert -100.0</title></circle>
|
<circle cx="1140.0" cy="60.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 4, Wert -100.0</title></circle>
|
||||||
<circle cx="60.0" cy="150.0" r="7" fill="#785f41" stroke="#c04040" stroke-width="2"><title>Id 1.1, Wert -99.0</title></circle>
|
<circle cx="60.0" cy="150.0" r="7" fill="#785f41" stroke="#c04040" stroke-width="2"><title>Id 5, Wert -99.0</title></circle>
|
||||||
<circle cx="368.6" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 2.1, Wert -99.0</title></circle>
|
<circle cx="214.3" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 6, Wert -99.0</title></circle>
|
||||||
<circle cx="677.1" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 3.1, Wert -99.0</title></circle>
|
<circle cx="368.6" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 7, Wert -99.0</title></circle>
|
||||||
<circle cx="985.7" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 4.1, Wert -99.0</title></circle>
|
<circle cx="522.9" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 8, Wert -99.0</title></circle>
|
||||||
<circle cx="214.3" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 1.2, Wert -99.0</title></circle>
|
<circle cx="677.1" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 9, Wert -99.0</title></circle>
|
||||||
<circle cx="522.9" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 2.2, Wert -99.0</title></circle>
|
<circle cx="831.4" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 10, Wert -99.0</title></circle>
|
||||||
<circle cx="831.4" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 3.2, Wert -99.0</title></circle>
|
<circle cx="985.7" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 11, Wert -99.0</title></circle>
|
||||||
<circle cx="1140.0" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 4.2, Wert -99.0</title></circle>
|
<circle cx="1140.0" cy="150.0" r="5" fill="#785f41" stroke="#333" stroke-width="0.5"><title>Id 12, Wert -99.0</title></circle>
|
||||||
<circle cx="60.0" cy="240.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 1.1.1, Wert -98.0</title></circle>
|
<circle cx="60.0" cy="240.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 13, Wert -98.0</title></circle>
|
||||||
<circle cx="368.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 2.1.1, Wert -98.0</title></circle>
|
<circle cx="214.3" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 14, Wert -98.0</title></circle>
|
||||||
<circle cx="677.1" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 3.1.1, Wert -98.0</title></circle>
|
<circle cx="368.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 15, Wert -98.0</title></circle>
|
||||||
<circle cx="985.7" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 4.1.1, Wert -98.0</title></circle>
|
<circle cx="522.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 16, Wert -98.0</title></circle>
|
||||||
<circle cx="214.3" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 1.1.2, Wert -98.0</title></circle>
|
<circle cx="677.1" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 17, Wert -98.0</title></circle>
|
||||||
<circle cx="522.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 2.1.2, Wert -98.0</title></circle>
|
<circle cx="831.4" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 18, Wert -98.0</title></circle>
|
||||||
<circle cx="831.4" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 3.1.2, Wert -98.0</title></circle>
|
<circle cx="985.7" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 19, Wert -98.0</title></circle>
|
||||||
<circle cx="1140.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 4.1.2, Wert -98.0</title></circle>
|
<circle cx="1140.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 20, Wert -98.0</title></circle>
|
||||||
<text x="60.0" y="262.0" text-anchor="middle" font-size="12" font-weight="bold" fill="#c04040">1.1.1</text>
|
<text x="60.0" y="262.0" text-anchor="middle" font-size="12" font-weight="bold" fill="#c04040">13</text>
|
||||||
<text x="48" y="64.0" text-anchor="end" font-size="11" fill="#666">Gen 0</text>
|
<text x="48" y="64.0" text-anchor="end" font-size="11" fill="#666">Gen 0</text>
|
||||||
<text x="48" y="154.0" text-anchor="end" font-size="11" fill="#666">Gen 1</text>
|
<text x="48" y="154.0" text-anchor="end" font-size="11" fill="#666">Gen 1</text>
|
||||||
<text x="48" y="244.0" text-anchor="end" font-size="11" fill="#666">Gen 2</text>
|
<text x="48" y="244.0" text-anchor="end" font-size="11" fill="#666">Gen 2</text>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
@@ -330,11 +330,14 @@ class Abstammung:
|
|||||||
"""Beobachtungsobjekt: zeichnet den Stammbaum aller Loesungen auf.
|
"""Beobachtungsobjekt: zeichnet den Stammbaum aller Loesungen auf.
|
||||||
|
|
||||||
Jede Loesung bekommt von der Farm eine fortlaufende Abstammungs-Id.
|
Jede Loesung bekommt von der Farm eine fortlaufende Abstammungs-Id.
|
||||||
Beim Erzeugen entsteht ein Wurzelknoten (keine Eltern), beim Mutieren
|
Jede Loesung hat eine fortlaufende Nummer (Id 1..N); die Abstammung
|
||||||
ein Kindknoten mit Verweis auf die Eltern-Id. alsSVG() zeichnet daraus
|
ergibt sich aus dem gemerkten Vorgaenger (Eltern-Id), nicht aus der Id
|
||||||
einen Baum: Generationen als Zeilen (oben Start, nach unten spaeter),
|
selbst. Beim Erzeugen entsteht ein Wurzelknoten (keine Eltern), beim
|
||||||
Knoten als Punkte (Farbe = Wertigkeit), Mutationskanten Eltern->Kind.
|
Mutieren ein Kindknoten mit Verweis auf die Eltern-Id. alsSVG() zeichnet
|
||||||
Domaenen-agnostisch; funktioniert mit jeder Loesung, die .value hat.
|
daraus einen Baum: Generationen als Zeilen (oben Start, nach unten
|
||||||
|
spaeter), Knoten als Punkte (Farbe = Wertigkeit), Mutationskanten
|
||||||
|
Eltern->Kind. Domaenen-agnostisch; funktioniert mit jeder Loesung, die
|
||||||
|
.value hat.
|
||||||
"""
|
"""
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
# je Knoten: Id -> dict(eltern, generation, value, aktion)
|
# je Knoten: Id -> dict(eltern, generation, value, aktion)
|
||||||
@@ -352,9 +355,9 @@ class Abstammung:
|
|||||||
"""zeichnet den aufgezeichneten Stammbaum als SVG.
|
"""zeichnet den aufgezeichneten Stammbaum als SVG.
|
||||||
|
|
||||||
HervorId (optional): Id der hervorzuhebenden Loesung (z.B. der
|
HervorId (optional): Id der hervorzuhebenden Loesung (z.B. der
|
||||||
finalen besten). Ihr Ast wird kraeftig gezeichnet und mit der
|
finalen besten). Ihr Ast (die Kette ihrer Vorgaenger) wird kraeftig
|
||||||
sprechenden Id (z.B. 7.2.1) beschriftet, so dass man ihre ganze
|
gezeichnet und der Knoten mit seiner Nummer beschriftet, so dass man
|
||||||
Abstammung ablesen kann."""
|
die ganze Abstammung im Baum verfolgen kann."""
|
||||||
if not self.Knoten:
|
if not self.Knoten:
|
||||||
raise ValueError("keine Abstammung aufgezeichnet")
|
raise ValueError("keine Abstammung aufgezeichnet")
|
||||||
|
|
||||||
@@ -488,9 +491,8 @@ class Farm:
|
|||||||
# Abstammung: jede Loesung bekommt eine fortlaufende _absid; die
|
# Abstammung: jede Loesung bekommt eine fortlaufende _absid; die
|
||||||
# aktuelle Generationsnummer waechst mit jedem Erzeugen/Mutieren.
|
# aktuelle Generationsnummer waechst mit jedem Erzeugen/Mutieren.
|
||||||
self.Abstammung = Abstammung()
|
self.Abstammung = Abstammung()
|
||||||
self._AbsZaehler = 0
|
self._AbsZaehler = 0 # vergibt fortlaufende Loesungs-Ids 1..N
|
||||||
self._Generation = 0
|
self._Generation = 0
|
||||||
self._KindZaehler = {} # Eltern-Id -> Anzahl bisher vergebener Kinder
|
|
||||||
if getattr(Zyklus, 'Modus', 'statisch') == 'adaptiv':
|
if getattr(Zyklus, 'Modus', 'statisch') == 'adaptiv':
|
||||||
self._LaufAdaptiv(Klasse, *Arguments, **keywords)
|
self._LaufAdaptiv(Klasse, *Arguments, **keywords)
|
||||||
else:
|
else:
|
||||||
@@ -570,28 +572,19 @@ class Farm:
|
|||||||
print("+ Abbruch: %d Generationen ohne nennenswerte "
|
print("+ Abbruch: %d Generationen ohne nennenswerte "
|
||||||
"Verbesserung" % OhneVerbesserung)
|
"Verbesserung" % OhneVerbesserung)
|
||||||
break
|
break
|
||||||
def _WurzelId(self):
|
def _NeueId(self):
|
||||||
"""neue Id fuer eine erzeugte (elternlose) Loesung: schlicht eine
|
"""neue Id fuer eine Loesung: eine fortlaufende Nummer 1..N ueber
|
||||||
fortlaufende Zahl als String ('1', '2', ...)."""
|
alle je erzeugten Loesungen (Wurzeln wie Mutationskinder gleich).
|
||||||
|
Die Abstammung ergibt sich nicht aus der Id, sondern aus dem
|
||||||
|
separat gemerkten Vorgaenger (siehe erfassen(..., Eltern))."""
|
||||||
self._AbsZaehler = self._AbsZaehler + 1
|
self._AbsZaehler = self._AbsZaehler + 1
|
||||||
return str(self._AbsZaehler)
|
return self._AbsZaehler
|
||||||
|
|
||||||
def _KindId(self, ElternId):
|
|
||||||
"""neue Id fuer ein Mutationskind: Eltern-Id + '.' + laufender Index,
|
|
||||||
z.B. '7' -> '7.1', '7.2'; '7.2' -> '7.2.1'. So laesst sich die
|
|
||||||
ganze Abstammung direkt aus der Id ablesen. Fehlt eine Eltern-Id
|
|
||||||
(z.B. bei einer Loesung ohne Aufzeichnung), wird eine Wurzel-Id
|
|
||||||
vergeben."""
|
|
||||||
if not ElternId:
|
|
||||||
return self._WurzelId()
|
|
||||||
self._KindZaehler[ElternId] = self._KindZaehler.get(ElternId, 0) + 1
|
|
||||||
return "%s.%d" % (ElternId, self._KindZaehler[ElternId])
|
|
||||||
|
|
||||||
def LoesungenErzeugen(self, N, Klasse, *Arguments, **keywords):
|
def LoesungenErzeugen(self, N, Klasse, *Arguments, **keywords):
|
||||||
""" Erzeuge Loesungen"""
|
""" Erzeuge Loesungen"""
|
||||||
for i in range(N):
|
for i in range(N):
|
||||||
L = Klasse( *Arguments, **keywords )
|
L = Klasse( *Arguments, **keywords )
|
||||||
L._absid = self._WurzelId()
|
L._absid = self._NeueId() # Wurzel: kein Vorgaenger
|
||||||
self.Abstammung.erfassen(
|
self.Abstammung.erfassen(
|
||||||
L._absid, None, self._Generation, getattr(L, 'value', 0), 'e' )
|
L._absid, None, self._Generation, getattr(L, 'value', 0), 'e' )
|
||||||
self.Pool.append(L)
|
self.Pool.append(L)
|
||||||
@@ -610,10 +603,10 @@ class Farm:
|
|||||||
for L in chain(self.Pool):
|
for L in chain(self.Pool):
|
||||||
O = deepcopy(L)
|
O = deepcopy(L)
|
||||||
Kind = O.mutieren()
|
Kind = O.mutieren()
|
||||||
# Kind-Id = Eltern-Id + '.' + laufender Kindindex, damit man
|
# Kind bekommt eine neue fortlaufende Nummer; der Vorgaenger
|
||||||
# an der Id die ganze Abstammung ablesen kann (z.B. 7.2.1).
|
# (Eltern-Id) wird separat in der Abstammung gemerkt.
|
||||||
ElternId = getattr(L, '_absid', None)
|
ElternId = getattr(L, '_absid', None)
|
||||||
Kind._absid = self._KindId(ElternId)
|
Kind._absid = self._NeueId()
|
||||||
self.Abstammung.erfassen(
|
self.Abstammung.erfassen(
|
||||||
Kind._absid, ElternId, self._Generation,
|
Kind._absid, ElternId, self._Generation,
|
||||||
getattr(Kind, 'value', 0), 'm' )
|
getattr(Kind, 'value', 0), 'm' )
|
||||||
|
|||||||
@@ -351,41 +351,40 @@ class TestAbstammung(unittest.TestCase):
|
|||||||
Z.Adaptiv.update(params)
|
Z.Adaptiv.update(params)
|
||||||
return Z
|
return Z
|
||||||
|
|
||||||
def test_hierarchische_ids_kodieren_abstammung(self):
|
def test_fortlaufende_nummern_ids(self):
|
||||||
Z = self._zyklus( Start=5, Schrumpfung=1.0, MinPopulation=5,
|
Z = self._zyklus( Start=5, Schrumpfung=1.0, MinPopulation=5,
|
||||||
MaxGenerationen=3, Geduld=99, Schwelle=0.0 )
|
MaxGenerationen=3, Geduld=99, Schwelle=0.0 )
|
||||||
F = Farm( Z, self._L )
|
F = Farm( Z, self._L )
|
||||||
Knoten = F.Abstammung.Knoten
|
Knoten = F.Abstammung.Knoten
|
||||||
|
|
||||||
# Wurzeln sind schlichte Zahlen ohne Punkt und haben keine Eltern
|
# alle Ids sind fortlaufende Nummern 1..N ueber alle Loesungen
|
||||||
wurzeln = [ Id for Id, K in Knoten.items() if K['eltern'] is None ]
|
Ids = sorted(Knoten)
|
||||||
self.assertTrue( all( '.' not in Id for Id in wurzeln ) )
|
self.assertTrue( all( isinstance(Id, int) for Id in Ids ) )
|
||||||
self.assertEqual( len(wurzeln), 5 )
|
self.assertEqual( Ids, list(range(1, len(Ids) + 1)) )
|
||||||
|
|
||||||
# jede Kind-Id ist Eltern-Id + '.' + index; die Eltern-Id ist damit
|
# genau die 5 Startloesungen sind Wurzeln (kein Vorgaenger),
|
||||||
# das Praefix bis zum letzten Punkt und existiert als Knoten
|
# alle uebrigen haben einen Vorgaenger, der als Knoten existiert
|
||||||
|
wurzeln = [ Id for Id, K in Knoten.items() if K['eltern'] is None ]
|
||||||
|
self.assertEqual( len(wurzeln), 5 )
|
||||||
for Id, K in Knoten.items():
|
for Id, K in Knoten.items():
|
||||||
if K['eltern'] is None:
|
if K['eltern'] is None:
|
||||||
continue
|
continue
|
||||||
self.assertIn( '.', Id )
|
|
||||||
self.assertEqual( Id.rsplit('.', 1)[0], K['eltern'] )
|
|
||||||
self.assertIn( K['eltern'], Knoten )
|
self.assertIn( K['eltern'], Knoten )
|
||||||
|
self.assertNotEqual( K['eltern'], Id )
|
||||||
|
|
||||||
def test_ahnenkette_ist_aus_id_ablesbar(self):
|
def test_abstammung_ueber_vorgaenger(self):
|
||||||
# Bei einem Kind '3.2.1' muessen '3.2' und '3' die Ahnen sein
|
# Abstammung wird ueber den gemerkten Vorgaenger verfolgt, nicht ueber
|
||||||
|
# die Id selbst (Ids sind schlichte Nummern)
|
||||||
A = Abstammung()
|
A = Abstammung()
|
||||||
A.erfassen( '3', None, 0, -100, 'e' )
|
A.erfassen( 1, None, 0, -100, 'e' )
|
||||||
A.erfassen( '3.2', '3', 1, -99, 'm' )
|
A.erfassen( 2, 1, 1, -99, 'm' )
|
||||||
A.erfassen( '3.2.1', '3.2', 2, -98, 'm' )
|
A.erfassen( 3, 2, 2, -98, 'm' )
|
||||||
# rueckwaerts ueber die Eltern-Verweise
|
|
||||||
kette = []
|
kette = []
|
||||||
Id = '3.2.1'
|
Id = 3
|
||||||
while Id is not None:
|
while Id is not None:
|
||||||
kette.append(Id)
|
kette.append(Id)
|
||||||
Id = A.Knoten[Id]['eltern']
|
Id = A.Knoten[Id]['eltern']
|
||||||
self.assertEqual( kette, ['3.2.1', '3.2', '3'] )
|
self.assertEqual( kette, [3, 2, 1] )
|
||||||
# und das laesst sich auch rein syntaktisch aus der Id ablesen
|
|
||||||
self.assertEqual( '3.2.1'.split('.'), ['3', '2', '1'] )
|
|
||||||
|
|
||||||
def test_svg_hebt_beste_hervor(self):
|
def test_svg_hebt_beste_hervor(self):
|
||||||
Z = self._zyklus( Start=4, Schrumpfung=1.0, MinPopulation=4,
|
Z = self._zyklus( Start=4, Schrumpfung=1.0, MinPopulation=4,
|
||||||
|
|||||||
@@ -3,454 +3,454 @@
|
|||||||
<rect width="100%" height="100%" fill="white"/>
|
<rect width="100%" height="100%" fill="white"/>
|
||||||
<text x="1100" y="30" text-anchor="middle" font-size="16" fill="#333">Abstammung der Loesungen (Mutationsbaum)</text>
|
<text x="1100" y="30" text-anchor="middle" font-size="16" fill="#333">Abstammung der Loesungen (Mutationsbaum)</text>
|
||||||
<line x1="60.0" y1="60.0" x2="60.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="60.0" y1="60.0" x2="60.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="646.7" y1="60.0" x2="639.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="113.3" y1="60.0" x2="86.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1233.3" y1="60.0" x2="1218.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="166.7" y1="60.0" x2="112.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1820.0" y1="60.0" x2="1797.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="220.0" y1="60.0" x2="139.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1926.7" y1="60.0" x2="1903.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="273.3" y1="60.0" x2="165.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1980.0" y1="60.0" x2="1955.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="326.7" y1="60.0" x2="191.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2033.3" y1="60.0" x2="2008.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="380.0" y1="60.0" x2="218.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2086.7" y1="60.0" x2="2061.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="433.3" y1="60.0" x2="244.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2140.0" y1="60.0" x2="2113.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="486.7" y1="60.0" x2="270.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="113.3" y1="60.0" x2="112.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="540.0" y1="60.0" x2="297.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="166.7" y1="60.0" x2="165.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="593.3" y1="60.0" x2="323.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="220.0" y1="60.0" x2="218.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="646.7" y1="60.0" x2="349.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="273.3" y1="60.0" x2="270.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="700.0" y1="60.0" x2="375.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="326.7" y1="60.0" x2="323.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="753.3" y1="60.0" x2="402.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="380.0" y1="60.0" x2="375.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="806.7" y1="60.0" x2="428.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="433.3" y1="60.0" x2="428.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="860.0" y1="60.0" x2="454.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="486.7" y1="60.0" x2="481.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="913.3" y1="60.0" x2="481.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="540.0" y1="60.0" x2="533.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="966.7" y1="60.0" x2="507.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="593.3" y1="60.0" x2="586.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1020.0" y1="60.0" x2="533.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="700.0" y1="60.0" x2="691.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1073.3" y1="60.0" x2="560.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="753.3" y1="60.0" x2="744.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1126.7" y1="60.0" x2="586.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="806.7" y1="60.0" x2="797.2" y2="150.0" stroke="#c04040" stroke-width="2.5"/>
|
<line x1="1180.0" y1="60.0" x2="612.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="860.0" y1="60.0" x2="849.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1233.3" y1="60.0" x2="639.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="913.3" y1="60.0" x2="902.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1286.7" y1="60.0" x2="665.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="966.7" y1="60.0" x2="955.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1340.0" y1="60.0" x2="691.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1020.0" y1="60.0" x2="1007.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1393.3" y1="60.0" x2="718.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1073.3" y1="60.0" x2="1060.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1446.7" y1="60.0" x2="744.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1126.7" y1="60.0" x2="1113.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1500.0" y1="60.0" x2="770.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1180.0" y1="60.0" x2="1165.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1553.3" y1="60.0" x2="797.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1286.7" y1="60.0" x2="1271.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1606.7" y1="60.0" x2="823.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1340.0" y1="60.0" x2="1323.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1660.0" y1="60.0" x2="849.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1393.3" y1="60.0" x2="1376.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1713.3" y1="60.0" x2="876.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1446.7" y1="60.0" x2="1429.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1766.7" y1="60.0" x2="902.5" y2="150.0" stroke="#c04040" stroke-width="2.5"/>
|
||||||
<line x1="1500.0" y1="60.0" x2="1481.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1820.0" y1="60.0" x2="928.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1553.3" y1="60.0" x2="1534.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1873.3" y1="60.0" x2="955.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1606.7" y1="60.0" x2="1587.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1926.7" y1="60.0" x2="981.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1660.0" y1="60.0" x2="1639.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1980.0" y1="60.0" x2="1007.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1713.3" y1="60.0" x2="1692.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2033.3" y1="60.0" x2="1034.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1766.7" y1="60.0" x2="1745.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2086.7" y1="60.0" x2="1060.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1873.3" y1="60.0" x2="1850.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2140.0" y1="60.0" x2="1086.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="60.0" y1="60.0" x2="86.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="60.0" y1="60.0" x2="1113.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="646.7" y1="60.0" x2="665.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="113.3" y1="60.0" x2="1139.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1233.3" y1="60.0" x2="1244.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="166.7" y1="60.0" x2="1165.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1820.0" y1="60.0" x2="1824.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="220.0" y1="60.0" x2="1192.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1926.7" y1="60.0" x2="1929.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="273.3" y1="60.0" x2="1218.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1980.0" y1="60.0" x2="1982.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="326.7" y1="60.0" x2="1244.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2033.3" y1="60.0" x2="2034.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="380.0" y1="60.0" x2="1271.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2086.7" y1="60.0" x2="2087.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="433.3" y1="60.0" x2="1297.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="486.7" y1="60.0" x2="1323.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="540.0" y1="60.0" x2="1350.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="593.3" y1="60.0" x2="1376.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="646.7" y1="60.0" x2="1402.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="700.0" y1="60.0" x2="1429.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="753.3" y1="60.0" x2="1455.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="806.7" y1="60.0" x2="1481.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="860.0" y1="60.0" x2="1508.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="913.3" y1="60.0" x2="1534.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="966.7" y1="60.0" x2="1560.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1020.0" y1="60.0" x2="1587.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1073.3" y1="60.0" x2="1613.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1126.7" y1="60.0" x2="1639.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1180.0" y1="60.0" x2="1666.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1233.3" y1="60.0" x2="1692.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1286.7" y1="60.0" x2="1718.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1340.0" y1="60.0" x2="1745.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1393.3" y1="60.0" x2="1771.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1446.7" y1="60.0" x2="1797.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1500.0" y1="60.0" x2="1824.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1553.3" y1="60.0" x2="1850.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1606.7" y1="60.0" x2="1876.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1660.0" y1="60.0" x2="1903.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1713.3" y1="60.0" x2="1929.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1766.7" y1="60.0" x2="1955.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1820.0" y1="60.0" x2="1982.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1873.3" y1="60.0" x2="2008.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1926.7" y1="60.0" x2="2034.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1980.0" y1="60.0" x2="2061.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="2033.3" y1="60.0" x2="2087.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="2086.7" y1="60.0" x2="2113.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2140.0" y1="60.0" x2="2140.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2140.0" y1="60.0" x2="2140.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="113.3" y1="60.0" x2="139.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="902.5" y1="150.0" x2="60.0" y2="240.0" stroke="#c04040" stroke-width="2.5"/>
|
||||||
<line x1="166.7" y1="60.0" x2="191.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1955.7" y1="150.0" x2="91.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="220.0" y1="60.0" x2="244.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1766.7" y1="60.0" x2="122.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="273.3" y1="60.0" x2="297.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="981.5" y1="150.0" x2="153.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="326.7" y1="60.0" x2="349.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="380.0" y1="60.0" x2="402.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="433.3" y1="60.0" x2="454.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="486.7" y1="60.0" x2="507.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="540.0" y1="60.0" x2="560.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="593.3" y1="60.0" x2="612.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="700.0" y1="60.0" x2="718.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="753.3" y1="60.0" x2="770.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="806.7" y1="60.0" x2="823.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="860.0" y1="60.0" x2="876.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="913.3" y1="60.0" x2="928.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="966.7" y1="60.0" x2="981.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1020.0" y1="60.0" x2="1034.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1073.3" y1="60.0" x2="1086.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1126.7" y1="60.0" x2="1139.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1180.0" y1="60.0" x2="1192.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1286.7" y1="60.0" x2="1297.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1340.0" y1="60.0" x2="1350.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1393.3" y1="60.0" x2="1402.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1446.7" y1="60.0" x2="1455.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1500.0" y1="60.0" x2="1508.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1553.3" y1="60.0" x2="1560.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1606.7" y1="60.0" x2="1613.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1660.0" y1="60.0" x2="1666.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1713.3" y1="60.0" x2="1718.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1766.7" y1="60.0" x2="1771.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1873.3" y1="60.0" x2="1876.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="797.2" y1="150.0" x2="1239.7" y2="240.0" stroke="#c04040" stroke-width="2.5"/>
|
|
||||||
<line x1="823.5" y1="150.0" x2="1301.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="806.7" y1="60.0" x2="1363.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="323.3" y1="150.0" x2="494.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1165.8" y1="150.0" x2="1550.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="349.6" y1="150.0" x2="556.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1192.2" y1="150.0" x2="1612.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1797.7" y1="150.0" x2="1922.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="586.6" y1="150.0" x2="867.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="744.6" y1="150.0" x2="1053.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1587.1" y1="150.0" x2="1674.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1639.7" y1="150.0" x2="1860.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="612.9" y1="150.0" x2="929.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="770.9" y1="150.0" x2="1115.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1613.4" y1="150.0" x2="1736.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="593.3" y1="60.0" x2="991.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="753.3" y1="60.0" x2="1177.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1606.7" y1="60.0" x2="1798.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1955.7" y1="150.0" x2="2046.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="112.7" y1="150.0" x2="60.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="165.3" y1="150.0" x2="184.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="165.3" y1="150.0" x2="184.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="218.0" y1="150.0" x2="308.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="297.0" y1="150.0" x2="215.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="481.3" y1="150.0" x2="680.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1218.5" y1="150.0" x2="246.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1060.5" y1="150.0" x2="1426.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1350.1" y1="150.0" x2="277.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1824.1" y1="150.0" x2="1984.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1429.1" y1="150.0" x2="308.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1982.0" y1="150.0" x2="2109.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="797.2" y1="150.0" x2="339.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="139.0" y1="150.0" x2="122.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2034.7" y1="150.0" x2="370.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="191.6" y1="150.0" x2="246.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="139.0" y1="150.0" x2="401.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="244.3" y1="150.0" x2="370.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="849.9" y1="150.0" x2="432.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="507.6" y1="150.0" x2="743.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1192.2" y1="150.0" x2="463.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1086.8" y1="150.0" x2="1488.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1903.0" y1="150.0" x2="494.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="220.0" y1="60.0" x2="432.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="220.0" y1="60.0" x2="525.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="326.7" y1="60.0" x2="618.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1660.0" y1="60.0" x2="556.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="486.7" y1="60.0" x2="805.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1086.8" y1="150.0" x2="587.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="797.2" y1="150.0" x2="1270.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2140.0" y1="150.0" x2="618.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="823.5" y1="150.0" x2="1332.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="454.9" y1="150.0" x2="649.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="806.7" y1="60.0" x2="1394.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="639.2" y1="150.0" x2="680.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="323.3" y1="150.0" x2="525.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="744.6" y1="150.0" x2="711.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1165.8" y1="150.0" x2="1581.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="770.9" y1="150.0" x2="743.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="349.6" y1="150.0" x2="587.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="928.9" y1="150.0" x2="774.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1192.2" y1="150.0" x2="1643.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1508.1" y1="150.0" x2="805.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1797.7" y1="150.0" x2="1953.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1692.4" y1="150.0" x2="836.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="586.6" y1="150.0" x2="898.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1797.7" y1="150.0" x2="867.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="744.6" y1="150.0" x2="1084.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1824.1" y1="150.0" x2="898.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1587.1" y1="150.0" x2="1705.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="273.3" y1="60.0" x2="929.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1639.7" y1="150.0" x2="1891.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="540.0" y1="60.0" x2="960.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="612.9" y1="150.0" x2="960.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="860.0" y1="60.0" x2="991.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="770.9" y1="150.0" x2="1146.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1446.7" y1="60.0" x2="1022.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1613.4" y1="150.0" x2="1767.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1500.0" y1="60.0" x2="1053.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="593.3" y1="60.0" x2="1022.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="560.3" y1="150.0" x2="1084.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="753.3" y1="60.0" x2="1208.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="902.5" y1="150.0" x2="1115.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1606.7" y1="60.0" x2="1829.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1955.7" y1="150.0" x2="1146.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1955.7" y1="150.0" x2="2077.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1766.7" y1="60.0" x2="1177.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="112.7" y1="150.0" x2="91.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="981.5" y1="150.0" x2="1208.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="165.3" y1="150.0" x2="215.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="165.3" y1="150.0" x2="1239.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="218.0" y1="150.0" x2="339.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="297.0" y1="150.0" x2="1270.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="481.3" y1="150.0" x2="711.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1218.5" y1="150.0" x2="1301.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1060.5" y1="150.0" x2="1457.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1350.1" y1="150.0" x2="1332.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1824.1" y1="150.0" x2="2015.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1429.1" y1="150.0" x2="1363.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1982.0" y1="150.0" x2="2140.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="797.2" y1="150.0" x2="1394.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="139.0" y1="150.0" x2="153.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2034.7" y1="150.0" x2="1426.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="191.6" y1="150.0" x2="277.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="139.0" y1="150.0" x2="1457.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="244.3" y1="150.0" x2="401.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="849.9" y1="150.0" x2="1488.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="507.6" y1="150.0" x2="774.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1192.2" y1="150.0" x2="1519.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1086.8" y1="150.0" x2="1519.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1903.0" y1="150.0" x2="1550.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="220.0" y1="60.0" x2="463.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="220.0" y1="60.0" x2="1581.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="326.7" y1="60.0" x2="649.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1660.0" y1="60.0" x2="1612.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="486.7" y1="60.0" x2="836.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1086.8" y1="150.0" x2="1643.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1239.7" y1="240.0" x2="816.4" y2="330.0" stroke="#c04040" stroke-width="2.5"/>
|
<line x1="2140.0" y1="150.0" x2="1674.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1301.8" y1="240.0" x2="1043.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="454.9" y1="150.0" x2="1705.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1363.9" y1="240.0" x2="1270.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="639.2" y1="150.0" x2="1736.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1270.7" y1="240.0" x2="892.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="744.6" y1="150.0" x2="1767.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1332.8" y1="240.0" x2="1118.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="770.9" y1="150.0" x2="1798.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1394.9" y1="240.0" x2="1345.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="928.9" y1="150.0" x2="1829.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="797.2" y1="150.0" x2="967.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1508.1" y1="150.0" x2="1860.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="823.5" y1="150.0" x2="1194.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1692.4" y1="150.0" x2="1891.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="806.7" y1="60.0" x2="1421.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1797.7" y1="150.0" x2="1922.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="494.6" y1="240.0" x2="60.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1824.1" y1="150.0" x2="1953.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1550.1" y1="240.0" x2="1497.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="273.3" y1="60.0" x2="1984.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="556.7" y1="240.0" x2="286.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="540.0" y1="60.0" x2="2015.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1612.2" y1="240.0" x2="1724.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="860.0" y1="60.0" x2="2046.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="618.8" y1="240.0" x2="513.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1446.7" y1="60.0" x2="2077.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="525.7" y1="240.0" x2="135.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1500.0" y1="60.0" x2="2109.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1581.2" y1="240.0" x2="1572.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="560.3" y1="150.0" x2="2140.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="587.8" y1="240.0" x2="362.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="60.0" y1="240.0" x2="60.0" y2="330.0" stroke="#c04040" stroke-width="2.5"/>
|
||||||
<line x1="1643.3" y1="240.0" x2="1799.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="91.0" y1="240.0" x2="97.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="649.9" y1="240.0" x2="589.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="122.1" y1="240.0" x2="135.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="323.3" y1="150.0" x2="211.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1115.5" y1="240.0" x2="173.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1165.8" y1="150.0" x2="1648.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1146.6" y1="240.0" x2="211.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="349.6" y1="150.0" x2="438.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1177.6" y1="240.0" x2="249.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1192.2" y1="150.0" x2="1875.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="902.5" y1="150.0" x2="286.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1922.7" y1="240.0" x2="1950.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1955.7" y1="150.0" x2="324.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1953.7" y1="240.0" x2="2026.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1766.7" y1="60.0" x2="362.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1797.7" y1="150.0" x2="2102.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="153.1" y1="240.0" x2="400.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="867.2" y1="240.0" x2="665.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1208.7" y1="240.0" x2="438.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1053.4" y1="240.0" x2="740.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="981.5" y1="150.0" x2="476.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1239.7" y1="240.0" x2="854.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="184.2" y1="240.0" x2="513.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1301.8" y1="240.0" x2="1081.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="215.2" y1="240.0" x2="551.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1363.9" y1="240.0" x2="1308.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="246.3" y1="240.0" x2="589.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1270.7" y1="240.0" x2="929.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="277.3" y1="240.0" x2="627.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1332.8" y1="240.0" x2="1156.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="308.4" y1="240.0" x2="665.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1394.9" y1="240.0" x2="1383.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="929.3" y1="240.0" x2="702.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="797.2" y1="150.0" x2="1005.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="960.3" y1="240.0" x2="740.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="823.5" y1="150.0" x2="1232.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1239.7" y1="240.0" x2="778.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="806.7" y1="60.0" x2="1459.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1270.7" y1="240.0" x2="816.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="494.6" y1="240.0" x2="97.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1301.8" y1="240.0" x2="854.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1550.1" y1="240.0" x2="1534.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1332.8" y1="240.0" x2="892.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="556.7" y1="240.0" x2="324.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1363.9" y1="240.0" x2="929.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1612.2" y1="240.0" x2="1761.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1984.8" y1="240.0" x2="967.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="618.8" y1="240.0" x2="551.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2015.8" y1="240.0" x2="1005.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="525.7" y1="240.0" x2="173.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="165.3" y1="150.0" x2="1043.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1581.2" y1="240.0" x2="1610.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="297.0" y1="150.0" x2="1081.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="587.8" y1="240.0" x2="400.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="60.0" y1="240.0" x2="1118.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1643.3" y1="240.0" x2="1837.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="91.0" y1="240.0" x2="1156.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="649.9" y1="240.0" x2="627.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="122.1" y1="240.0" x2="1194.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="323.3" y1="150.0" x2="249.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1115.5" y1="240.0" x2="1232.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1165.8" y1="150.0" x2="1686.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1146.6" y1="240.0" x2="1270.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="349.6" y1="150.0" x2="476.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1177.6" y1="240.0" x2="1308.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1192.2" y1="150.0" x2="1913.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="902.5" y1="150.0" x2="1345.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1922.7" y1="240.0" x2="1988.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1955.7" y1="150.0" x2="1383.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1953.7" y1="240.0" x2="2064.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1766.7" y1="60.0" x2="1421.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1797.7" y1="150.0" x2="2140.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="153.1" y1="240.0" x2="1459.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="867.2" y1="240.0" x2="702.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1208.7" y1="240.0" x2="1497.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1053.4" y1="240.0" x2="778.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="981.5" y1="150.0" x2="1534.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="60.0" cy="60.0" r="5" fill="#7b5c40" stroke="#333" stroke-width="0.5"><title>Id 1, Wert -123.6</title></circle>
|
<line x1="184.2" y1="240.0" x2="1572.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="646.7" cy="60.0" r="5" fill="#3f7f4b" stroke="#333" stroke-width="0.5"><title>Id 2, Wert -91.0</title></circle>
|
<line x1="215.2" y1="240.0" x2="1610.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="1233.3" cy="60.0" r="5" fill="#7b5d40" stroke="#333" stroke-width="0.5"><title>Id 3, Wert -123.3</title></circle>
|
<line x1="246.3" y1="240.0" x2="1648.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="1820.0" cy="60.0" r="5" fill="#636a44" stroke="#333" stroke-width="0.5"><title>Id 4, Wert -110.7</title></circle>
|
<line x1="277.3" y1="240.0" x2="1686.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="1926.7" cy="60.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 5, Wert -90.3</title></circle>
|
<line x1="308.4" y1="240.0" x2="1724.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="1980.0" cy="60.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 6, Wert -87.7</title></circle>
|
<line x1="929.3" y1="240.0" x2="1761.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="2033.3" cy="60.0" r="5" fill="#6a6643" stroke="#333" stroke-width="0.5"><title>Id 7, Wert -114.3</title></circle>
|
<line x1="960.3" y1="240.0" x2="1799.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="2086.7" cy="60.0" r="5" fill="#7b5d40" stroke="#333" stroke-width="0.5"><title>Id 8, Wert -123.3</title></circle>
|
<line x1="1239.7" y1="240.0" x2="1837.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="2140.0" cy="60.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 9, Wert -87.7</title></circle>
|
<line x1="1270.7" y1="240.0" x2="1875.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="113.3" cy="60.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 10, Wert -87.7</title></circle>
|
<line x1="1301.8" y1="240.0" x2="1913.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="166.7" cy="60.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 11, Wert -87.7</title></circle>
|
<line x1="1332.8" y1="240.0" x2="1950.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="220.0" cy="60.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 12, Wert -84.7</title></circle>
|
<line x1="1363.9" y1="240.0" x2="1988.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="273.3" cy="60.0" r="5" fill="#437c4a" stroke="#333" stroke-width="0.5"><title>Id 13, Wert -93.3</title></circle>
|
<line x1="1984.8" y1="240.0" x2="2026.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="326.7" cy="60.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 14, Wert -84.7</title></circle>
|
<line x1="2015.8" y1="240.0" x2="2064.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="380.0" cy="60.0" r="5" fill="#407e4b" stroke="#333" stroke-width="0.5"><title>Id 15, Wert -91.7</title></circle>
|
<line x1="165.3" y1="150.0" x2="2102.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="433.3" cy="60.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 16, Wert -90.3</title></circle>
|
<line x1="297.0" y1="150.0" x2="2140.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="486.7" cy="60.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 17, Wert -84.7</title></circle>
|
<circle cx="60.0" cy="60.0" r="5" fill="#3f7e4b" stroke="#333" stroke-width="0.5"><title>Id 1, Wert -90.3</title></circle>
|
||||||
<circle cx="540.0" cy="60.0" r="5" fill="#a64438" stroke="#333" stroke-width="0.5"><title>Id 18, Wert -146.3</title></circle>
|
<circle cx="113.3" cy="60.0" r="5" fill="#7b5c40" stroke="#333" stroke-width="0.5"><title>Id 2, Wert -120.0</title></circle>
|
||||||
<circle cx="593.3" cy="60.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 19, Wert -83.7</title></circle>
|
<circle cx="166.7" cy="60.0" r="5" fill="#3f7e4b" stroke="#333" stroke-width="0.5"><title>Id 3, Wert -90.3</title></circle>
|
||||||
<circle cx="700.0" cy="60.0" r="5" fill="#437c4a" stroke="#333" stroke-width="0.5"><title>Id 20, Wert -93.3</title></circle>
|
<circle cx="220.0" cy="60.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 4, Wert -83.7</title></circle>
|
||||||
<circle cx="753.3" cy="60.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 21, Wert -83.7</title></circle>
|
<circle cx="273.3" cy="60.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 5, Wert -84.7</title></circle>
|
||||||
<circle cx="806.7" cy="60.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 22, Wert -78.7</title></circle>
|
<circle cx="326.7" cy="60.0" r="5" fill="#706342" stroke="#333" stroke-width="0.5"><title>Id 6, Wert -114.3</title></circle>
|
||||||
<circle cx="860.0" cy="60.0" r="5" fill="#487949" stroke="#333" stroke-width="0.5"><title>Id 23, Wert -96.3</title></circle>
|
<circle cx="380.0" cy="60.0" r="5" fill="#716242" stroke="#333" stroke-width="0.5"><title>Id 7, Wert -114.7</title></circle>
|
||||||
<circle cx="913.3" cy="60.0" r="5" fill="#b33d35" stroke="#333" stroke-width="0.5"><title>Id 24, Wert -153.3</title></circle>
|
<circle cx="433.3" cy="60.0" r="5" fill="#7a5d40" stroke="#333" stroke-width="0.5"><title>Id 8, Wert -119.3</title></circle>
|
||||||
<circle cx="966.7" cy="60.0" r="5" fill="#3f7f4b" stroke="#333" stroke-width="0.5"><title>Id 25, Wert -91.0</title></circle>
|
<circle cx="486.7" cy="60.0" r="5" fill="#84583e" stroke="#333" stroke-width="0.5"><title>Id 9, Wert -124.0</title></circle>
|
||||||
<circle cx="1020.0" cy="60.0" r="5" fill="#81593f" stroke="#333" stroke-width="0.5"><title>Id 26, Wert -126.3</title></circle>
|
<circle cx="540.0" cy="60.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 10, Wert -84.7</title></circle>
|
||||||
<circle cx="1073.3" cy="60.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 27, Wert -84.7</title></circle>
|
<circle cx="593.3" cy="60.0" r="5" fill="#407e4b" stroke="#333" stroke-width="0.5"><title>Id 11, Wert -90.7</title></circle>
|
||||||
<circle cx="1126.7" cy="60.0" r="5" fill="#3e7f4b" stroke="#333" stroke-width="0.5"><title>Id 28, Wert -90.7</title></circle>
|
<circle cx="646.7" cy="60.0" r="5" fill="#7c5c40" stroke="#333" stroke-width="0.5"><title>Id 12, Wert -120.3</title></circle>
|
||||||
<circle cx="1180.0" cy="60.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 29, Wert -84.7</title></circle>
|
<circle cx="700.0" cy="60.0" r="5" fill="#7c5c40" stroke="#333" stroke-width="0.5"><title>Id 13, Wert -120.3</title></circle>
|
||||||
<circle cx="1286.7" cy="60.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 30, Wert -90.3</title></circle>
|
<circle cx="753.3" cy="60.0" r="5" fill="#3f7e4b" stroke="#333" stroke-width="0.5"><title>Id 14, Wert -90.3</title></circle>
|
||||||
<circle cx="1340.0" cy="60.0" r="5" fill="#3d804c" stroke="#333" stroke-width="0.5"><title>Id 31, Wert -90.0</title></circle>
|
<circle cx="806.7" cy="60.0" r="5" fill="#457b4a" stroke="#333" stroke-width="0.5"><title>Id 15, Wert -93.3</title></circle>
|
||||||
<circle cx="1393.3" cy="60.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 32, Wert -90.3</title></circle>
|
<circle cx="860.0" cy="60.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 16, Wert -84.7</title></circle>
|
||||||
<circle cx="1446.7" cy="60.0" r="5" fill="#b93a34" stroke="#333" stroke-width="0.5"><title>Id 33, Wert -156.6</title></circle>
|
<circle cx="913.3" cy="60.0" r="5" fill="#746041" stroke="#333" stroke-width="0.5"><title>Id 17, Wert -116.3</title></circle>
|
||||||
<circle cx="1500.0" cy="60.0" r="5" fill="#3d804c" stroke="#333" stroke-width="0.5"><title>Id 34, Wert -90.0</title></circle>
|
<circle cx="966.7" cy="60.0" r="5" fill="#716242" stroke="#333" stroke-width="0.5"><title>Id 18, Wert -114.7</title></circle>
|
||||||
<circle cx="1553.3" cy="60.0" r="5" fill="#3b804c" stroke="#333" stroke-width="0.5"><title>Id 35, Wert -89.3</title></circle>
|
<circle cx="1020.0" cy="60.0" r="5" fill="#587046" stroke="#333" stroke-width="0.5"><title>Id 19, Wert -102.7</title></circle>
|
||||||
<circle cx="1606.7" cy="60.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 36, Wert -83.7</title></circle>
|
<circle cx="1073.3" cy="60.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 20, Wert -86.3</title></circle>
|
||||||
<circle cx="1660.0" cy="60.0" r="5" fill="#6c6543" stroke="#333" stroke-width="0.5"><title>Id 37, Wert -115.3</title></circle>
|
<circle cx="1126.7" cy="60.0" r="5" fill="#487949" stroke="#333" stroke-width="0.5"><title>Id 21, Wert -94.7</title></circle>
|
||||||
<circle cx="1713.3" cy="60.0" r="5" fill="#765f41" stroke="#333" stroke-width="0.5"><title>Id 38, Wert -120.9</title></circle>
|
<circle cx="1180.0" cy="60.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 22, Wert -86.3</title></circle>
|
||||||
<circle cx="1766.7" cy="60.0" r="5" fill="#437c4a" stroke="#333" stroke-width="0.5"><title>Id 39, Wert -93.3</title></circle>
|
<circle cx="1233.3" cy="60.0" r="5" fill="#3a814c" stroke="#333" stroke-width="0.5"><title>Id 23, Wert -87.7</title></circle>
|
||||||
<circle cx="1873.3" cy="60.0" r="5" fill="#3b804c" stroke="#333" stroke-width="0.5"><title>Id 40, Wert -89.3</title></circle>
|
<circle cx="1286.7" cy="60.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 24, Wert -86.3</title></circle>
|
||||||
<circle cx="60.0" cy="150.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 1.1, Wert -90.3</title></circle>
|
<circle cx="1340.0" cy="60.0" r="5" fill="#4b7749" stroke="#333" stroke-width="0.5"><title>Id 25, Wert -96.3</title></circle>
|
||||||
<circle cx="639.2" cy="150.0" r="5" fill="#3f7f4b" stroke="#333" stroke-width="0.5"><title>Id 2.1, Wert -91.0</title></circle>
|
<circle cx="1393.3" cy="60.0" r="5" fill="#84583e" stroke="#333" stroke-width="0.5"><title>Id 26, Wert -124.0</title></circle>
|
||||||
<circle cx="1218.5" cy="150.0" r="5" fill="#ba3934" stroke="#333" stroke-width="0.5"><title>Id 3.1, Wert -157.3</title></circle>
|
<circle cx="1446.7" cy="60.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 27, Wert -84.7</title></circle>
|
||||||
<circle cx="1797.7" cy="150.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 4.1, Wert -82.0</title></circle>
|
<circle cx="1500.0" cy="60.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 28, Wert -84.7</title></circle>
|
||||||
<circle cx="1903.0" cy="150.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 5.1, Wert -90.3</title></circle>
|
<circle cx="1553.3" cy="60.0" r="5" fill="#6f6442" stroke="#333" stroke-width="0.5"><title>Id 29, Wert -113.7</title></circle>
|
||||||
<circle cx="1955.7" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 6.1, Wert -84.7</title></circle>
|
<circle cx="1606.7" cy="60.0" r="5" fill="#716242" stroke="#333" stroke-width="0.5"><title>Id 30, Wert -114.7</title></circle>
|
||||||
<circle cx="2008.4" cy="150.0" r="5" fill="#6a6643" stroke="#333" stroke-width="0.5"><title>Id 7.1, Wert -114.3</title></circle>
|
<circle cx="1660.0" cy="60.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 31, Wert -83.7</title></circle>
|
||||||
<circle cx="2061.0" cy="150.0" r="5" fill="#4d7648" stroke="#333" stroke-width="0.5"><title>Id 8.1, Wert -99.0</title></circle>
|
<circle cx="1713.3" cy="60.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 32, Wert -86.3</title></circle>
|
||||||
<circle cx="2113.7" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 9.1, Wert -87.7</title></circle>
|
<circle cx="1766.7" cy="60.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 33, Wert -78.7</title></circle>
|
||||||
<circle cx="112.7" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 10.1, Wert -84.7</title></circle>
|
<circle cx="1820.0" cy="60.0" r="5" fill="#82583e" stroke="#333" stroke-width="0.5"><title>Id 34, Wert -123.3</title></circle>
|
||||||
<circle cx="165.3" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 11.1, Wert -84.7</title></circle>
|
<circle cx="1873.3" cy="60.0" r="5" fill="#716242" stroke="#333" stroke-width="0.5"><title>Id 35, Wert -114.7</title></circle>
|
||||||
<circle cx="218.0" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 12.1, Wert -84.7</title></circle>
|
<circle cx="1926.7" cy="60.0" r="5" fill="#696743" stroke="#333" stroke-width="0.5"><title>Id 36, Wert -110.7</title></circle>
|
||||||
<circle cx="270.6" cy="150.0" r="5" fill="#437c4a" stroke="#333" stroke-width="0.5"><title>Id 13.1, Wert -93.3</title></circle>
|
<circle cx="1980.0" cy="60.0" r="5" fill="#7a5d40" stroke="#333" stroke-width="0.5"><title>Id 37, Wert -119.3</title></circle>
|
||||||
<circle cx="323.3" cy="150.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.1, Wert -81.7</title></circle>
|
<circle cx="2033.3" cy="60.0" r="5" fill="#4a7849" stroke="#333" stroke-width="0.5"><title>Id 38, Wert -95.7</title></circle>
|
||||||
<circle cx="375.9" cy="150.0" r="5" fill="#3a814c" stroke="#333" stroke-width="0.5"><title>Id 15.1, Wert -88.7</title></circle>
|
<circle cx="2086.7" cy="60.0" r="5" fill="#517448" stroke="#333" stroke-width="0.5"><title>Id 39, Wert -99.0</title></circle>
|
||||||
<circle cx="428.6" cy="150.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 16.1, Wert -90.3</title></circle>
|
<circle cx="2140.0" cy="60.0" r="5" fill="#696743" stroke="#333" stroke-width="0.5"><title>Id 40, Wert -110.7</title></circle>
|
||||||
<circle cx="481.3" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 17.1, Wert -84.7</title></circle>
|
<circle cx="60.0" cy="150.0" r="5" fill="#39824c" stroke="#333" stroke-width="0.5"><title>Id 41, Wert -87.3</title></circle>
|
||||||
<circle cx="533.9" cy="150.0" r="5" fill="#785e40" stroke="#333" stroke-width="0.5"><title>Id 18.1, Wert -121.9</title></circle>
|
<circle cx="86.3" cy="150.0" r="5" fill="#7f5a3f" stroke="#333" stroke-width="0.5"><title>Id 42, Wert -121.7</title></circle>
|
||||||
<circle cx="586.6" cy="150.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 19.1, Wert -83.7</title></circle>
|
<circle cx="112.7" cy="150.0" r="5" fill="#3f7e4b" stroke="#333" stroke-width="0.5"><title>Id 43, Wert -90.3</title></circle>
|
||||||
<circle cx="691.9" cy="150.0" r="5" fill="#437c4a" stroke="#333" stroke-width="0.5"><title>Id 20.1, Wert -93.3</title></circle>
|
<circle cx="139.0" cy="150.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 44, Wert -83.7</title></circle>
|
||||||
<circle cx="744.6" cy="150.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 21.1, Wert -83.7</title></circle>
|
<circle cx="165.3" cy="150.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 45, Wert -81.7</title></circle>
|
||||||
<circle cx="797.2" cy="150.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 22.1, Wert -78.7</title></circle>
|
<circle cx="191.6" cy="150.0" r="5" fill="#4b7749" stroke="#333" stroke-width="0.5"><title>Id 46, Wert -96.3</title></circle>
|
||||||
<circle cx="849.9" cy="150.0" r="5" fill="#437c4a" stroke="#333" stroke-width="0.5"><title>Id 23.1, Wert -93.3</title></circle>
|
<circle cx="218.0" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 47, Wert -87.0</title></circle>
|
||||||
<circle cx="902.5" cy="150.0" r="5" fill="#b93a34" stroke="#333" stroke-width="0.5"><title>Id 24.1, Wert -156.7</title></circle>
|
<circle cx="244.3" cy="150.0" r="5" fill="#427d4b" stroke="#333" stroke-width="0.5"><title>Id 48, Wert -91.7</title></circle>
|
||||||
<circle cx="955.2" cy="150.0" r="5" fill="#3f7f4b" stroke="#333" stroke-width="0.5"><title>Id 25.1, Wert -91.0</title></circle>
|
<circle cx="270.6" cy="150.0" r="5" fill="#527448" stroke="#333" stroke-width="0.5"><title>Id 49, Wert -99.7</title></circle>
|
||||||
<circle cx="1007.8" cy="150.0" r="5" fill="#7b5c40" stroke="#333" stroke-width="0.5"><title>Id 26.1, Wert -123.6</title></circle>
|
<circle cx="297.0" cy="150.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 50, Wert -81.7</title></circle>
|
||||||
<circle cx="1060.5" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 27.1, Wert -84.7</title></circle>
|
<circle cx="323.3" cy="150.0" r="5" fill="#407e4b" stroke="#333" stroke-width="0.5"><title>Id 51, Wert -90.7</title></circle>
|
||||||
<circle cx="1113.2" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 28.1, Wert -87.7</title></circle>
|
<circle cx="349.6" cy="150.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 52, Wert -115.7</title></circle>
|
||||||
<circle cx="1165.8" cy="150.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.1, Wert -81.7</title></circle>
|
<circle cx="375.9" cy="150.0" r="5" fill="#3c804c" stroke="#333" stroke-width="0.5"><title>Id 53, Wert -88.7</title></circle>
|
||||||
<circle cx="1271.1" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 30.1, Wert -87.3</title></circle>
|
<circle cx="402.3" cy="150.0" r="5" fill="#3f7e4b" stroke="#333" stroke-width="0.5"><title>Id 54, Wert -90.3</title></circle>
|
||||||
<circle cx="1323.8" cy="150.0" r="5" fill="#3d804c" stroke="#333" stroke-width="0.5"><title>Id 31.1, Wert -90.0</title></circle>
|
<circle cx="428.6" cy="150.0" r="5" fill="#3f7e4b" stroke="#333" stroke-width="0.5"><title>Id 55, Wert -90.3</title></circle>
|
||||||
<circle cx="1376.5" cy="150.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 32.1, Wert -90.3</title></circle>
|
<circle cx="454.9" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 56, Wert -84.7</title></circle>
|
||||||
<circle cx="1429.1" cy="150.0" r="5" fill="#567147" stroke="#333" stroke-width="0.5"><title>Id 33.1, Wert -103.7</title></circle>
|
<circle cx="481.3" cy="150.0" r="5" fill="#3c804c" stroke="#333" stroke-width="0.5"><title>Id 57, Wert -88.7</title></circle>
|
||||||
<circle cx="1481.8" cy="150.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 34.1, Wert -87.0</title></circle>
|
<circle cx="507.6" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 58, Wert -87.0</title></circle>
|
||||||
<circle cx="1534.4" cy="150.0" r="5" fill="#36834d" stroke="#333" stroke-width="0.5"><title>Id 35.1, Wert -86.3</title></circle>
|
<circle cx="533.9" cy="150.0" r="5" fill="#527448" stroke="#333" stroke-width="0.5"><title>Id 59, Wert -99.7</title></circle>
|
||||||
<circle cx="1587.1" cy="150.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 36.1, Wert -83.7</title></circle>
|
<circle cx="560.3" cy="150.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 60, Wert -86.3</title></circle>
|
||||||
<circle cx="1639.7" cy="150.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 37.1, Wert -83.7</title></circle>
|
<circle cx="586.6" cy="150.0" r="5" fill="#427d4b" stroke="#333" stroke-width="0.5"><title>Id 61, Wert -91.7</title></circle>
|
||||||
<circle cx="1692.4" cy="150.0" r="5" fill="#487949" stroke="#333" stroke-width="0.5"><title>Id 38.1, Wert -95.9</title></circle>
|
<circle cx="612.9" cy="150.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 62, Wert -86.3</title></circle>
|
||||||
<circle cx="1745.1" cy="150.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 39.1, Wert -90.3</title></circle>
|
<circle cx="639.2" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 63, Wert -84.7</title></circle>
|
||||||
<circle cx="1850.4" cy="150.0" r="5" fill="#36834d" stroke="#333" stroke-width="0.5"><title>Id 40.1, Wert -86.3</title></circle>
|
<circle cx="665.6" cy="150.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 64, Wert -86.3</title></circle>
|
||||||
<circle cx="86.3" cy="150.0" r="5" fill="#c53332" stroke="#333" stroke-width="0.5"><title>Id 1.2, Wert -163.0</title></circle>
|
<circle cx="691.9" cy="150.0" r="5" fill="#4b7749" stroke="#333" stroke-width="0.5"><title>Id 65, Wert -96.3</title></circle>
|
||||||
<circle cx="665.6" cy="150.0" r="5" fill="#3f7f4b" stroke="#333" stroke-width="0.5"><title>Id 2.2, Wert -91.0</title></circle>
|
<circle cx="718.2" cy="150.0" r="5" fill="#3f7f4b" stroke="#333" stroke-width="0.5"><title>Id 66, Wert -90.0</title></circle>
|
||||||
<circle cx="1244.8" cy="150.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 3.2, Wert -164.3</title></circle>
|
<circle cx="744.6" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 67, Wert -84.7</title></circle>
|
||||||
<circle cx="1824.1" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 4.2, Wert -84.7</title></circle>
|
<circle cx="770.9" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 68, Wert -84.7</title></circle>
|
||||||
<circle cx="1929.4" cy="150.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 5.2, Wert -90.3</title></circle>
|
<circle cx="797.2" cy="150.0" r="5" fill="#30874e" stroke="#333" stroke-width="0.5"><title>Id 69, Wert -83.0</title></circle>
|
||||||
<circle cx="1982.0" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 6.2, Wert -84.7</title></circle>
|
<circle cx="823.5" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 70, Wert -87.0</title></circle>
|
||||||
<circle cx="2034.7" cy="150.0" r="5" fill="#35844d" stroke="#333" stroke-width="0.5"><title>Id 7.2, Wert -85.7</title></circle>
|
<circle cx="849.9" cy="150.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 71, Wert -83.7</title></circle>
|
||||||
<circle cx="2087.3" cy="150.0" r="5" fill="#567147" stroke="#333" stroke-width="0.5"><title>Id 8.2, Wert -103.6</title></circle>
|
<circle cx="876.2" cy="150.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 72, Wert -86.3</title></circle>
|
||||||
<circle cx="2140.0" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 9.2, Wert -87.7</title></circle>
|
<circle cx="902.5" cy="150.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 73, Wert -78.7</title></circle>
|
||||||
<circle cx="139.0" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 10.2, Wert -84.7</title></circle>
|
<circle cx="928.9" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 74, Wert -84.7</title></circle>
|
||||||
<circle cx="191.6" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 11.2, Wert -84.7</title></circle>
|
<circle cx="955.2" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 75, Wert -87.0</title></circle>
|
||||||
<circle cx="244.3" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 12.2, Wert -84.7</title></circle>
|
<circle cx="981.5" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 76, Wert -80.7</title></circle>
|
||||||
<circle cx="297.0" cy="150.0" r="5" fill="#437c4a" stroke="#333" stroke-width="0.5"><title>Id 13.2, Wert -93.3</title></circle>
|
<circle cx="1007.8" cy="150.0" r="5" fill="#4f7548" stroke="#333" stroke-width="0.5"><title>Id 77, Wert -98.0</title></circle>
|
||||||
<circle cx="349.6" cy="150.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.2, Wert -81.7</title></circle>
|
<circle cx="1034.2" cy="150.0" r="5" fill="#447c4a" stroke="#333" stroke-width="0.5"><title>Id 78, Wert -92.7</title></circle>
|
||||||
<circle cx="402.3" cy="150.0" r="5" fill="#3a814c" stroke="#333" stroke-width="0.5"><title>Id 15.2, Wert -88.7</title></circle>
|
<circle cx="1060.5" cy="150.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 79, Wert -157.4</title></circle>
|
||||||
<circle cx="454.9" cy="150.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 16.2, Wert -90.3</title></circle>
|
<circle cx="1086.8" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 80, Wert -84.6</title></circle>
|
||||||
<circle cx="507.6" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 17.2, Wert -84.7</title></circle>
|
<circle cx="1113.2" cy="150.0" r="5" fill="#39824c" stroke="#333" stroke-width="0.5"><title>Id 81, Wert -87.3</title></circle>
|
||||||
<circle cx="560.3" cy="150.0" r="5" fill="#447c4a" stroke="#333" stroke-width="0.5"><title>Id 18.2, Wert -93.7</title></circle>
|
<circle cx="1139.5" cy="150.0" r="5" fill="#3f7f4b" stroke="#333" stroke-width="0.5"><title>Id 82, Wert -90.0</title></circle>
|
||||||
<circle cx="612.9" cy="150.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 19.2, Wert -83.7</title></circle>
|
<circle cx="1165.8" cy="150.0" r="5" fill="#3f7e4b" stroke="#333" stroke-width="0.5"><title>Id 83, Wert -90.3</title></circle>
|
||||||
<circle cx="718.2" cy="150.0" r="5" fill="#437c4a" stroke="#333" stroke-width="0.5"><title>Id 20.2, Wert -93.3</title></circle>
|
<circle cx="1192.2" cy="150.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 84, Wert -83.7</title></circle>
|
||||||
<circle cx="770.9" cy="150.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 21.2, Wert -83.7</title></circle>
|
<circle cx="1218.5" cy="150.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 85, Wert -81.7</title></circle>
|
||||||
<circle cx="823.5" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.2, Wert -78.7</title></circle>
|
<circle cx="1244.8" cy="150.0" r="5" fill="#39824c" stroke="#333" stroke-width="0.5"><title>Id 86, Wert -87.3</title></circle>
|
||||||
<circle cx="876.2" cy="150.0" r="5" fill="#437c4a" stroke="#333" stroke-width="0.5"><title>Id 23.2, Wert -93.3</title></circle>
|
<circle cx="1271.1" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 87, Wert -87.0</title></circle>
|
||||||
<circle cx="928.9" cy="150.0" r="5" fill="#3c804c" stroke="#333" stroke-width="0.5"><title>Id 24.2, Wert -89.7</title></circle>
|
<circle cx="1297.5" cy="150.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 88, Wert -89.3</title></circle>
|
||||||
<circle cx="981.5" cy="150.0" r="5" fill="#3f7f4b" stroke="#333" stroke-width="0.5"><title>Id 25.2, Wert -91.0</title></circle>
|
<circle cx="1323.8" cy="150.0" r="5" fill="#527448" stroke="#333" stroke-width="0.5"><title>Id 89, Wert -99.7</title></circle>
|
||||||
<circle cx="1034.2" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 26.2, Wert -87.7</title></circle>
|
<circle cx="1350.1" cy="150.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 90, Wert -81.7</title></circle>
|
||||||
<circle cx="1086.8" cy="150.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 27.2, Wert -84.7</title></circle>
|
<circle cx="1376.5" cy="150.0" r="5" fill="#407e4b" stroke="#333" stroke-width="0.5"><title>Id 91, Wert -90.7</title></circle>
|
||||||
<circle cx="1139.5" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 28.2, Wert -87.7</title></circle>
|
<circle cx="1402.8" cy="150.0" r="5" fill="#3c804c" stroke="#333" stroke-width="0.5"><title>Id 92, Wert -88.7</title></circle>
|
||||||
<circle cx="1192.2" cy="150.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.2, Wert -81.7</title></circle>
|
<circle cx="1429.1" cy="150.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 93, Wert -81.7</title></circle>
|
||||||
<circle cx="1297.5" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 30.2, Wert -87.3</title></circle>
|
<circle cx="1455.4" cy="150.0" r="5" fill="#3f7e4b" stroke="#333" stroke-width="0.5"><title>Id 94, Wert -90.3</title></circle>
|
||||||
<circle cx="1350.1" cy="150.0" r="5" fill="#3d804c" stroke="#333" stroke-width="0.5"><title>Id 31.2, Wert -90.0</title></circle>
|
<circle cx="1481.8" cy="150.0" r="5" fill="#3f7e4b" stroke="#333" stroke-width="0.5"><title>Id 95, Wert -90.3</title></circle>
|
||||||
<circle cx="1402.8" cy="150.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 32.2, Wert -90.3</title></circle>
|
<circle cx="1508.1" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 96, Wert -84.7</title></circle>
|
||||||
<circle cx="1455.4" cy="150.0" r="5" fill="#3e7f4b" stroke="#333" stroke-width="0.5"><title>Id 33.2, Wert -90.7</title></circle>
|
<circle cx="1534.4" cy="150.0" r="5" fill="#3c804c" stroke="#333" stroke-width="0.5"><title>Id 97, Wert -88.7</title></circle>
|
||||||
<circle cx="1508.1" cy="150.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 34.2, Wert -87.0</title></circle>
|
<circle cx="1560.8" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 98, Wert -87.0</title></circle>
|
||||||
<circle cx="1560.8" cy="150.0" r="5" fill="#36834d" stroke="#333" stroke-width="0.5"><title>Id 35.2, Wert -86.3</title></circle>
|
<circle cx="1587.1" cy="150.0" r="5" fill="#527448" stroke="#333" stroke-width="0.5"><title>Id 99, Wert -99.7</title></circle>
|
||||||
<circle cx="1613.4" cy="150.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 36.2, Wert -83.7</title></circle>
|
<circle cx="1613.4" cy="150.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 100, Wert -86.3</title></circle>
|
||||||
<circle cx="1666.1" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 37.2, Wert -87.7</title></circle>
|
<circle cx="1639.7" cy="150.0" r="5" fill="#427d4b" stroke="#333" stroke-width="0.5"><title>Id 101, Wert -91.7</title></circle>
|
||||||
<circle cx="1718.7" cy="150.0" r="5" fill="#3e7f4b" stroke="#333" stroke-width="0.5"><title>Id 38.2, Wert -90.9</title></circle>
|
<circle cx="1666.1" cy="150.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 102, Wert -86.3</title></circle>
|
||||||
<circle cx="1771.4" cy="150.0" r="5" fill="#3d7f4b" stroke="#333" stroke-width="0.5"><title>Id 39.2, Wert -90.3</title></circle>
|
<circle cx="1692.4" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 103, Wert -84.7</title></circle>
|
||||||
<circle cx="1876.7" cy="150.0" r="5" fill="#36834d" stroke="#333" stroke-width="0.5"><title>Id 40.2, Wert -86.3</title></circle>
|
<circle cx="1718.7" cy="150.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 104, Wert -86.3</title></circle>
|
||||||
<circle cx="1239.7" cy="240.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 22.1.1, Wert -78.7</title></circle>
|
<circle cx="1745.1" cy="150.0" r="5" fill="#4b7749" stroke="#333" stroke-width="0.5"><title>Id 105, Wert -96.3</title></circle>
|
||||||
<circle cx="1301.8" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.2.1, Wert -78.7</title></circle>
|
<circle cx="1771.4" cy="150.0" r="5" fill="#c73232" stroke="#333" stroke-width="0.5"><title>Id 106, Wert -156.9</title></circle>
|
||||||
<circle cx="1363.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.3, Wert -78.7</title></circle>
|
<circle cx="1797.7" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 107, Wert -84.7</title></circle>
|
||||||
<circle cx="494.6" cy="240.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.1.1, Wert -81.7</title></circle>
|
<circle cx="1824.1" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 108, Wert -84.7</title></circle>
|
||||||
<circle cx="1550.1" cy="240.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.1.1, Wert -81.7</title></circle>
|
<circle cx="1850.4" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 109, Wert -107.7</title></circle>
|
||||||
<circle cx="556.7" cy="240.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.2.1, Wert -81.7</title></circle>
|
<circle cx="1876.7" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 110, Wert -87.0</title></circle>
|
||||||
<circle cx="1612.2" cy="240.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.2.1, Wert -81.7</title></circle>
|
<circle cx="1903.0" cy="150.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 111, Wert -83.7</title></circle>
|
||||||
<circle cx="1922.7" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 4.1.1, Wert -82.0</title></circle>
|
<circle cx="1929.4" cy="150.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 112, Wert -86.3</title></circle>
|
||||||
<circle cx="867.2" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 19.1.1, Wert -83.7</title></circle>
|
<circle cx="1955.7" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 113, Wert -78.7</title></circle>
|
||||||
<circle cx="1053.4" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 21.1.1, Wert -83.7</title></circle>
|
<circle cx="1982.0" cy="150.0" r="5" fill="#7d5c40" stroke="#333" stroke-width="0.5"><title>Id 114, Wert -120.6</title></circle>
|
||||||
<circle cx="1674.3" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 36.1.1, Wert -83.7</title></circle>
|
<circle cx="2008.4" cy="150.0" r="5" fill="#38824c" stroke="#333" stroke-width="0.5"><title>Id 115, Wert -87.0</title></circle>
|
||||||
<circle cx="1860.6" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 37.1.1, Wert -83.7</title></circle>
|
<circle cx="2034.7" cy="150.0" r="5" fill="#30874e" stroke="#333" stroke-width="0.5"><title>Id 116, Wert -83.0</title></circle>
|
||||||
<circle cx="929.3" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 19.2.1, Wert -83.7</title></circle>
|
<circle cx="2061.0" cy="150.0" r="5" fill="#437c4a" stroke="#333" stroke-width="0.5"><title>Id 117, Wert -92.3</title></circle>
|
||||||
<circle cx="1115.5" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 21.2.1, Wert -83.7</title></circle>
|
<circle cx="2087.3" cy="150.0" r="5" fill="#447c4a" stroke="#333" stroke-width="0.5"><title>Id 118, Wert -92.7</title></circle>
|
||||||
<circle cx="1736.4" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 36.2.1, Wert -83.7</title></circle>
|
<circle cx="2113.7" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 119, Wert -128.9</title></circle>
|
||||||
<circle cx="991.3" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 19.3, Wert -83.7</title></circle>
|
<circle cx="2140.0" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 120, Wert -84.6</title></circle>
|
||||||
<circle cx="1177.6" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 21.3, Wert -83.7</title></circle>
|
<circle cx="60.0" cy="240.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 121, Wert -78.7</title></circle>
|
||||||
<circle cx="1798.5" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 36.3, Wert -83.7</title></circle>
|
<circle cx="91.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 122, Wert -78.7</title></circle>
|
||||||
<circle cx="2046.9" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 6.1.1, Wert -84.7</title></circle>
|
<circle cx="122.1" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 123, Wert -78.7</title></circle>
|
||||||
<circle cx="60.0" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 10.1.1, Wert -84.7</title></circle>
|
<circle cx="153.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 124, Wert -80.7</title></circle>
|
||||||
<circle cx="184.2" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 11.1.1, Wert -84.7</title></circle>
|
<circle cx="184.2" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 125, Wert -81.7</title></circle>
|
||||||
<circle cx="308.4" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 12.1.1, Wert -84.7</title></circle>
|
<circle cx="215.2" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 126, Wert -81.7</title></circle>
|
||||||
<circle cx="680.9" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 17.1.1, Wert -84.7</title></circle>
|
<circle cx="246.3" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 127, Wert -81.7</title></circle>
|
||||||
<circle cx="1426.0" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 27.1.1, Wert -84.7</title></circle>
|
<circle cx="277.3" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 128, Wert -81.7</title></circle>
|
||||||
<circle cx="1984.8" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 4.2.1, Wert -84.7</title></circle>
|
<circle cx="308.4" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 129, Wert -81.7</title></circle>
|
||||||
<circle cx="2109.0" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 6.2.1, Wert -84.7</title></circle>
|
<circle cx="339.4" cy="240.0" r="5" fill="#30874e" stroke="#333" stroke-width="0.5"><title>Id 130, Wert -83.0</title></circle>
|
||||||
<circle cx="122.1" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 10.2.1, Wert -84.7</title></circle>
|
<circle cx="370.4" cy="240.0" r="5" fill="#30874e" stroke="#333" stroke-width="0.5"><title>Id 131, Wert -83.0</title></circle>
|
||||||
<circle cx="246.3" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 11.2.1, Wert -84.7</title></circle>
|
<circle cx="401.5" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 132, Wert -83.7</title></circle>
|
||||||
<circle cx="370.4" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 12.2.1, Wert -84.7</title></circle>
|
<circle cx="432.5" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 133, Wert -83.7</title></circle>
|
||||||
<circle cx="743.0" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 17.2.1, Wert -84.7</title></circle>
|
<circle cx="463.6" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 134, Wert -83.7</title></circle>
|
||||||
<circle cx="1488.1" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 27.2.1, Wert -84.7</title></circle>
|
<circle cx="494.6" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 135, Wert -83.7</title></circle>
|
||||||
<circle cx="432.5" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 12.3, Wert -84.7</title></circle>
|
<circle cx="525.7" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 136, Wert -83.7</title></circle>
|
||||||
<circle cx="618.8" cy="240.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.3, Wert -81.7</title></circle>
|
<circle cx="556.7" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 137, Wert -83.7</title></circle>
|
||||||
<circle cx="805.1" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 17.3, Wert -84.7</title></circle>
|
<circle cx="587.8" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 138, Wert -84.6</title></circle>
|
||||||
<circle cx="1270.7" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.1.2, Wert -78.7</title></circle>
|
<circle cx="618.8" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 139, Wert -84.6</title></circle>
|
||||||
<circle cx="1332.8" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.2.2, Wert -78.7</title></circle>
|
<circle cx="649.9" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 140, Wert -84.7</title></circle>
|
||||||
<circle cx="1394.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.4, Wert -78.7</title></circle>
|
<circle cx="680.9" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 141, Wert -84.7</title></circle>
|
||||||
<circle cx="525.7" cy="240.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.1.2, Wert -81.7</title></circle>
|
<circle cx="711.9" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 142, Wert -84.7</title></circle>
|
||||||
<circle cx="1581.2" cy="240.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.1.2, Wert -81.7</title></circle>
|
<circle cx="743.0" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 143, Wert -84.7</title></circle>
|
||||||
<circle cx="587.8" cy="240.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.2.2, Wert -81.7</title></circle>
|
<circle cx="774.0" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 144, Wert -84.7</title></circle>
|
||||||
<circle cx="1643.3" cy="240.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.2.2, Wert -81.7</title></circle>
|
<circle cx="805.1" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 145, Wert -84.7</title></circle>
|
||||||
<circle cx="1953.7" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 4.1.2, Wert -82.0</title></circle>
|
<circle cx="836.1" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 146, Wert -84.7</title></circle>
|
||||||
<circle cx="898.2" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 19.1.2, Wert -83.7</title></circle>
|
<circle cx="867.2" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 147, Wert -84.7</title></circle>
|
||||||
<circle cx="1084.5" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 21.1.2, Wert -83.7</title></circle>
|
<circle cx="898.2" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 148, Wert -84.7</title></circle>
|
||||||
<circle cx="1705.4" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 36.1.2, Wert -83.7</title></circle>
|
<circle cx="929.3" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 149, Wert -81.7</title></circle>
|
||||||
<circle cx="1891.6" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 37.1.2, Wert -83.7</title></circle>
|
<circle cx="960.3" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 150, Wert -81.7</title></circle>
|
||||||
<circle cx="960.3" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 19.2.2, Wert -83.7</title></circle>
|
<circle cx="991.3" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 151, Wert -84.7</title></circle>
|
||||||
<circle cx="1146.6" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 21.2.2, Wert -83.7</title></circle>
|
<circle cx="1022.4" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 152, Wert -84.7</title></circle>
|
||||||
<circle cx="1767.5" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 36.2.2, Wert -83.7</title></circle>
|
<circle cx="1053.4" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 153, Wert -84.7</title></circle>
|
||||||
<circle cx="1022.4" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 19.4, Wert -83.7</title></circle>
|
<circle cx="1084.5" cy="240.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 154, Wert -86.3</title></circle>
|
||||||
<circle cx="1208.7" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 21.4, Wert -83.7</title></circle>
|
<circle cx="1115.5" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 155, Wert -78.7</title></circle>
|
||||||
<circle cx="1829.6" cy="240.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 36.4, Wert -83.7</title></circle>
|
<circle cx="1146.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 156, Wert -78.7</title></circle>
|
||||||
<circle cx="2077.9" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 6.1.2, Wert -84.7</title></circle>
|
<circle cx="1177.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 157, Wert -78.7</title></circle>
|
||||||
<circle cx="91.0" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 10.1.2, Wert -84.7</title></circle>
|
<circle cx="1208.7" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 158, Wert -80.7</title></circle>
|
||||||
<circle cx="215.2" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 11.1.2, Wert -84.7</title></circle>
|
<circle cx="1239.7" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 159, Wert -81.7</title></circle>
|
||||||
<circle cx="339.4" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 12.1.2, Wert -84.7</title></circle>
|
<circle cx="1270.7" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 160, Wert -81.7</title></circle>
|
||||||
<circle cx="711.9" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 17.1.2, Wert -84.7</title></circle>
|
<circle cx="1301.8" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 161, Wert -81.7</title></circle>
|
||||||
<circle cx="1457.0" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 27.1.2, Wert -84.7</title></circle>
|
<circle cx="1332.8" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 162, Wert -81.7</title></circle>
|
||||||
<circle cx="2015.8" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 4.2.2, Wert -84.7</title></circle>
|
<circle cx="1363.9" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 163, Wert -81.7</title></circle>
|
||||||
<circle cx="2140.0" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 6.2.2, Wert -84.7</title></circle>
|
<circle cx="1394.9" cy="240.0" r="5" fill="#30874e" stroke="#333" stroke-width="0.5"><title>Id 164, Wert -83.0</title></circle>
|
||||||
<circle cx="153.1" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 10.2.2, Wert -84.7</title></circle>
|
<circle cx="1426.0" cy="240.0" r="5" fill="#30874e" stroke="#333" stroke-width="0.5"><title>Id 165, Wert -83.0</title></circle>
|
||||||
<circle cx="277.3" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 11.2.2, Wert -84.7</title></circle>
|
<circle cx="1457.0" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 166, Wert -83.7</title></circle>
|
||||||
<circle cx="401.5" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 12.2.2, Wert -84.7</title></circle>
|
<circle cx="1488.1" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 167, Wert -83.7</title></circle>
|
||||||
<circle cx="774.0" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 17.2.2, Wert -84.7</title></circle>
|
<circle cx="1519.1" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 168, Wert -83.7</title></circle>
|
||||||
<circle cx="1519.1" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 27.2.2, Wert -84.7</title></circle>
|
<circle cx="1550.1" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 169, Wert -83.7</title></circle>
|
||||||
<circle cx="463.6" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 12.4, Wert -84.7</title></circle>
|
<circle cx="1581.2" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 170, Wert -83.7</title></circle>
|
||||||
<circle cx="649.9" cy="240.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.4, Wert -81.7</title></circle>
|
<circle cx="1612.2" cy="240.0" r="5" fill="#32864e" stroke="#333" stroke-width="0.5"><title>Id 171, Wert -83.7</title></circle>
|
||||||
<circle cx="836.1" cy="240.0" r="5" fill="#33854d" stroke="#333" stroke-width="0.5"><title>Id 17.4, Wert -84.7</title></circle>
|
<circle cx="1643.3" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 172, Wert -84.6</title></circle>
|
||||||
<circle cx="816.4" cy="330.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 22.1.1.1, Wert -78.7</title></circle>
|
<circle cx="1674.3" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 173, Wert -84.6</title></circle>
|
||||||
<circle cx="1043.3" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.2.1.1, Wert -78.7</title></circle>
|
<circle cx="1705.4" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 174, Wert -84.7</title></circle>
|
||||||
<circle cx="1270.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.3.1, Wert -78.7</title></circle>
|
<circle cx="1736.4" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 175, Wert -84.7</title></circle>
|
||||||
<circle cx="892.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.1.2.1, Wert -78.7</title></circle>
|
<circle cx="1767.5" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 176, Wert -84.7</title></circle>
|
||||||
<circle cx="1118.9" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.2.2.1, Wert -78.7</title></circle>
|
<circle cx="1798.5" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 177, Wert -84.7</title></circle>
|
||||||
<circle cx="1345.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.4.1, Wert -78.7</title></circle>
|
<circle cx="1829.6" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 178, Wert -84.7</title></circle>
|
||||||
<circle cx="967.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.1.3, Wert -78.7</title></circle>
|
<circle cx="1860.6" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 179, Wert -84.7</title></circle>
|
||||||
<circle cx="1194.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.2.3, Wert -78.7</title></circle>
|
<circle cx="1891.6" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 180, Wert -84.7</title></circle>
|
||||||
<circle cx="1421.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.5, Wert -78.7</title></circle>
|
<circle cx="1922.7" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 181, Wert -84.7</title></circle>
|
||||||
<circle cx="60.0" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.1.1.1, Wert -81.7</title></circle>
|
<circle cx="1953.7" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 182, Wert -84.7</title></circle>
|
||||||
<circle cx="1497.1" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.1.1.1, Wert -81.7</title></circle>
|
<circle cx="1984.8" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 183, Wert -81.7</title></circle>
|
||||||
<circle cx="286.9" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.2.1.1, Wert -81.7</title></circle>
|
<circle cx="2015.8" cy="240.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 184, Wert -81.7</title></circle>
|
||||||
<circle cx="1724.0" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.2.1.1, Wert -81.7</title></circle>
|
<circle cx="2046.9" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 185, Wert -84.7</title></circle>
|
||||||
<circle cx="513.8" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.3.1, Wert -81.7</title></circle>
|
<circle cx="2077.9" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 186, Wert -84.7</title></circle>
|
||||||
<circle cx="135.6" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.1.2.1, Wert -81.7</title></circle>
|
<circle cx="2109.0" cy="240.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 187, Wert -84.7</title></circle>
|
||||||
<circle cx="1572.7" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.1.2.1, Wert -81.7</title></circle>
|
<circle cx="2140.0" cy="240.0" r="5" fill="#37834d" stroke="#333" stroke-width="0.5"><title>Id 188, Wert -86.3</title></circle>
|
||||||
<circle cx="362.5" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.2.2.1, Wert -81.7</title></circle>
|
<circle cx="60.0" cy="330.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 189, Wert -78.7</title></circle>
|
||||||
<circle cx="1799.6" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.2.2.1, Wert -81.7</title></circle>
|
<circle cx="97.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 190, Wert -78.7</title></circle>
|
||||||
<circle cx="589.5" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.4.1, Wert -81.7</title></circle>
|
<circle cx="135.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 191, Wert -78.7</title></circle>
|
||||||
<circle cx="211.3" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.1.3, Wert -81.7</title></circle>
|
<circle cx="173.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 192, Wert -78.7</title></circle>
|
||||||
<circle cx="1648.4" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.1.3, Wert -81.7</title></circle>
|
<circle cx="211.3" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 193, Wert -78.7</title></circle>
|
||||||
<circle cx="438.2" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.2.3, Wert -81.7</title></circle>
|
<circle cx="249.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 194, Wert -78.7</title></circle>
|
||||||
<circle cx="1875.3" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.2.3, Wert -81.7</title></circle>
|
<circle cx="286.9" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 195, Wert -78.7</title></circle>
|
||||||
<circle cx="1950.9" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 4.1.1.1, Wert -82.0</title></circle>
|
<circle cx="324.7" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 196, Wert -78.7</title></circle>
|
||||||
<circle cx="2026.5" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 4.1.2.1, Wert -82.0</title></circle>
|
<circle cx="362.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 197, Wert -78.7</title></circle>
|
||||||
<circle cx="2102.2" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 4.1.3, Wert -82.0</title></circle>
|
<circle cx="400.4" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 198, Wert -80.7</title></circle>
|
||||||
<circle cx="665.1" cy="330.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 19.1.1.1, Wert -83.7</title></circle>
|
<circle cx="438.2" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 199, Wert -80.7</title></circle>
|
||||||
<circle cx="740.7" cy="330.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 21.1.1.1, Wert -83.7</title></circle>
|
<circle cx="476.0" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 200, Wert -80.7</title></circle>
|
||||||
<circle cx="854.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.1.1.2, Wert -78.7</title></circle>
|
<circle cx="513.8" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 201, Wert -81.7</title></circle>
|
||||||
<circle cx="1081.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.2.1.2, Wert -78.7</title></circle>
|
<circle cx="551.6" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 202, Wert -81.7</title></circle>
|
||||||
<circle cx="1308.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.3.2, Wert -78.7</title></circle>
|
<circle cx="589.5" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 203, Wert -81.7</title></circle>
|
||||||
<circle cx="929.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.1.2.2, Wert -78.7</title></circle>
|
<circle cx="627.3" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 204, Wert -81.7</title></circle>
|
||||||
<circle cx="1156.7" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.2.2.2, Wert -78.7</title></circle>
|
<circle cx="665.1" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 205, Wert -81.7</title></circle>
|
||||||
<circle cx="1383.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.4.2, Wert -78.7</title></circle>
|
<circle cx="702.9" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 206, Wert -81.7</title></circle>
|
||||||
<circle cx="1005.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.1.4, Wert -78.7</title></circle>
|
<circle cx="740.7" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 207, Wert -81.7</title></circle>
|
||||||
<circle cx="1232.4" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.2.4, Wert -78.7</title></circle>
|
<circle cx="778.5" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 208, Wert -81.7</title></circle>
|
||||||
<circle cx="1459.3" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 22.6, Wert -78.7</title></circle>
|
<circle cx="816.4" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 209, Wert -81.7</title></circle>
|
||||||
<circle cx="97.8" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.1.1.2, Wert -81.7</title></circle>
|
<circle cx="854.2" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 210, Wert -81.7</title></circle>
|
||||||
<circle cx="1534.9" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.1.1.2, Wert -81.7</title></circle>
|
<circle cx="892.0" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 211, Wert -81.7</title></circle>
|
||||||
<circle cx="324.7" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.2.1.2, Wert -81.7</title></circle>
|
<circle cx="929.8" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 212, Wert -81.7</title></circle>
|
||||||
<circle cx="1761.8" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.2.1.2, Wert -81.7</title></circle>
|
<circle cx="967.6" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 213, Wert -81.7</title></circle>
|
||||||
<circle cx="551.6" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.3.2, Wert -81.7</title></circle>
|
<circle cx="1005.5" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 214, Wert -81.7</title></circle>
|
||||||
<circle cx="173.5" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.1.2.2, Wert -81.7</title></circle>
|
<circle cx="1043.3" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 215, Wert -81.7</title></circle>
|
||||||
<circle cx="1610.5" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.1.2.2, Wert -81.7</title></circle>
|
<circle cx="1081.1" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 216, Wert -81.7</title></circle>
|
||||||
<circle cx="400.4" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.2.2.2, Wert -81.7</title></circle>
|
<circle cx="1118.9" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 217, Wert -78.7</title></circle>
|
||||||
<circle cx="1837.5" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.2.2.2, Wert -81.7</title></circle>
|
<circle cx="1156.7" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 218, Wert -78.7</title></circle>
|
||||||
<circle cx="627.3" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.4.2, Wert -81.7</title></circle>
|
<circle cx="1194.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 219, Wert -78.7</title></circle>
|
||||||
<circle cx="249.1" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.1.4, Wert -81.7</title></circle>
|
<circle cx="1232.4" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 220, Wert -78.7</title></circle>
|
||||||
<circle cx="1686.2" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.1.4, Wert -81.7</title></circle>
|
<circle cx="1270.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 221, Wert -78.7</title></circle>
|
||||||
<circle cx="476.0" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 14.2.4, Wert -81.7</title></circle>
|
<circle cx="1308.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 222, Wert -78.7</title></circle>
|
||||||
<circle cx="1913.1" cy="330.0" r="5" fill="#2d884e" stroke="#333" stroke-width="0.5"><title>Id 29.2.4, Wert -81.7</title></circle>
|
<circle cx="1345.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 223, Wert -78.7</title></circle>
|
||||||
<circle cx="1988.7" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 4.1.1.2, Wert -82.0</title></circle>
|
<circle cx="1383.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 224, Wert -78.7</title></circle>
|
||||||
<circle cx="2064.4" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 4.1.2.2, Wert -82.0</title></circle>
|
<circle cx="1421.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 225, Wert -78.7</title></circle>
|
||||||
<circle cx="2140.0" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 4.1.4, Wert -82.0</title></circle>
|
<circle cx="1459.3" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 226, Wert -80.7</title></circle>
|
||||||
<circle cx="702.9" cy="330.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 19.1.1.2, Wert -83.7</title></circle>
|
<circle cx="1497.1" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 227, Wert -80.7</title></circle>
|
||||||
<circle cx="778.5" cy="330.0" r="5" fill="#31864e" stroke="#333" stroke-width="0.5"><title>Id 21.1.1.2, Wert -83.7</title></circle>
|
<circle cx="1534.9" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 228, Wert -80.7</title></circle>
|
||||||
<text x="816.4" y="352.0" text-anchor="middle" font-size="12" font-weight="bold" fill="#c04040">22.1.1.1</text>
|
<circle cx="1572.7" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 229, Wert -81.7</title></circle>
|
||||||
|
<circle cx="1610.5" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 230, Wert -81.7</title></circle>
|
||||||
|
<circle cx="1648.4" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 231, Wert -81.7</title></circle>
|
||||||
|
<circle cx="1686.2" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 232, Wert -81.7</title></circle>
|
||||||
|
<circle cx="1724.0" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 233, Wert -81.7</title></circle>
|
||||||
|
<circle cx="1761.8" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 234, Wert -81.7</title></circle>
|
||||||
|
<circle cx="1799.6" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 235, Wert -81.7</title></circle>
|
||||||
|
<circle cx="1837.5" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 236, Wert -81.7</title></circle>
|
||||||
|
<circle cx="1875.3" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 237, Wert -81.7</title></circle>
|
||||||
|
<circle cx="1913.1" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 238, Wert -81.7</title></circle>
|
||||||
|
<circle cx="1950.9" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 239, Wert -81.7</title></circle>
|
||||||
|
<circle cx="1988.7" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 240, Wert -81.7</title></circle>
|
||||||
|
<circle cx="2026.5" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 241, Wert -81.7</title></circle>
|
||||||
|
<circle cx="2064.4" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 242, Wert -81.7</title></circle>
|
||||||
|
<circle cx="2102.2" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 243, Wert -81.7</title></circle>
|
||||||
|
<circle cx="2140.0" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 244, Wert -81.7</title></circle>
|
||||||
|
<text x="60.0" y="352.0" text-anchor="middle" font-size="12" font-weight="bold" fill="#c04040">189</text>
|
||||||
<text x="48" y="64.0" text-anchor="end" font-size="11" fill="#666">Gen 0</text>
|
<text x="48" y="64.0" text-anchor="end" font-size="11" fill="#666">Gen 0</text>
|
||||||
<text x="48" y="154.0" text-anchor="end" font-size="11" fill="#666">Gen 1</text>
|
<text x="48" y="154.0" text-anchor="end" font-size="11" fill="#666">Gen 1</text>
|
||||||
<text x="48" y="244.0" text-anchor="end" font-size="11" fill="#666">Gen 2</text>
|
<text x="48" y="244.0" text-anchor="end" font-size="11" fill="#666">Gen 2</text>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
@@ -5,21 +5,21 @@
|
|||||||
<line x1="60" y1="60" x2="60" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
<line x1="60" y1="60" x2="60" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
||||||
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
||||||
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="394.0" text-anchor="end" font-size="11" fill="#666">-164</text>
|
<text x="52" y="394.0" text-anchor="end" font-size="11" fill="#666">-157</text>
|
||||||
<line x1="60" y1="324.0" x2="840" y2="324.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="324.0" x2="840" y2="324.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="328.0" text-anchor="end" font-size="11" fill="#666">-147</text>
|
<text x="52" y="328.0" text-anchor="end" font-size="11" fill="#666">-142</text>
|
||||||
<line x1="60" y1="258.0" x2="840" y2="258.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="258.0" x2="840" y2="258.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="262.0" text-anchor="end" font-size="11" fill="#666">-130</text>
|
<text x="52" y="262.0" text-anchor="end" font-size="11" fill="#666">-126</text>
|
||||||
<line x1="60" y1="192.0" x2="840" y2="192.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="192.0" x2="840" y2="192.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="196.0" text-anchor="end" font-size="11" fill="#666">-113</text>
|
<text x="52" y="196.0" text-anchor="end" font-size="11" fill="#666">-110</text>
|
||||||
<line x1="60" y1="126.0" x2="840" y2="126.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="126.0" x2="840" y2="126.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="130.0" text-anchor="end" font-size="11" fill="#666">-96</text>
|
<text x="52" y="130.0" text-anchor="end" font-size="11" fill="#666">-94</text>
|
||||||
<line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-79</text>
|
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-79</text>
|
||||||
<text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
|
<text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
|
||||||
<polyline points="60.0,60.0 146.7,60.0 233.3,60.0 320.0,60.0 406.7,60.0 493.3,60.0 580.0,60.0 666.7,60.0 753.3,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
|
<polyline points="60.0,60.0 146.7,60.0 233.3,60.0 320.0,60.0 406.7,60.0 493.3,60.0 580.0,60.0 666.7,60.0 753.3,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
|
||||||
<polyline points="60.0,140.1 146.7,114.3 233.3,122.9 320.0,78.3 406.7,77.9 493.3,78.1 580.0,68.5 666.7,68.5 753.3,68.5 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
|
<polyline points="60.0,153.6 146.7,113.8 233.3,127.1 320.0,79.6 406.7,78.9 493.3,79.1 580.0,68.1 666.7,68.1 753.3,68.1 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
|
||||||
<polyline points="60.0,360.3 146.7,390.0 233.3,390.0 320.0,83.1 406.7,83.1 493.3,83.1 580.0,79.3 666.7,79.3 753.3,79.3 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
|
<polyline points="60.0,250.0 146.7,390.0 233.3,390.0 320.0,92.1 406.7,92.1 493.3,92.1 580.0,72.6 666.7,72.6 753.3,72.6 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
|
||||||
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
|
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
|
||||||
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
|
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
|
||||||
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
|
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
@@ -1,72 +1,72 @@
|
|||||||
Aksoy, Rainer, = Hof 1, Tisch 1, Nummer 5
|
Aksoy, Rainer, = Hof 1, Tisch 14, Nummer 7
|
||||||
Aksoy, Renate, = Hof 1, Tisch 1, Nummer 10
|
Aksoy, Renate, = Hof 1, Tisch 14, Nummer 5
|
||||||
Aydin, Horst, = Hof 1, Tisch 3, Nummer 2
|
Aydin, Horst, = Hof 1, Tisch 2, Nummer 6
|
||||||
Aydin, Ursula, = Hof 1, Tisch 3, Nummer 3
|
Aydin, Ursula, = Hof 1, Tisch 2, Nummer 4
|
||||||
Barth, Hannelore, = Hof 1, Tisch 9, Nummer 7
|
Barth, Hannelore, = Hof 1, Tisch 9, Nummer 9
|
||||||
Berger, Sergej, = Hof 1, Tisch 4, Nummer 2
|
Berger, Sergej, = Hof 1, Tisch 1, Nummer 12
|
||||||
Brandt, Andreas, = Hof 1, Tisch 15, Nummer 3
|
Brandt, Andreas, = Hof 1, Tisch 15, Nummer 4
|
||||||
Brandt, Anja, = Hof 1, Tisch 14, Nummer 6
|
Brandt, Anja, = Hof 1, Tisch 13, Nummer 2
|
||||||
Brandt, Anton, = Hof 1, Tisch 16, Nummer 2
|
Brandt, Anton, = Hof 1, Tisch 16, Nummer 2
|
||||||
Brandt, Ben, = Hof 1, Tisch 17, Nummer 3
|
Brandt, Ben, = Hof 1, Tisch 17, Nummer 6
|
||||||
Brandt, Daniel, = Hof 1, Tisch 11, Nummer 4
|
Brandt, Daniel, = Hof 1, Tisch 12, Nummer 9
|
||||||
Brandt, Felix, = Hof 1, Tisch 16, Nummer 14
|
Brandt, Felix, = Hof 1, Tisch 16, Nummer 11
|
||||||
Brandt, Frieda, = Hof 1, Tisch 16, Nummer 8
|
Brandt, Frieda, = Hof 1, Tisch 16, Nummer 13
|
||||||
Brandt, Greta, = Hof 1, Tisch 16, Nummer 10
|
Brandt, Greta, = Hof 1, Tisch 16, Nummer 14
|
||||||
Brandt, Helga, = Hof 1, Tisch 1, Nummer 4
|
Brandt, Helga, = Hof 1, Tisch 1, Nummer 7
|
||||||
Brandt, Julia, = Hof 1, Tisch 1, Nummer 11
|
Brandt, Julia, = Hof 1, Tisch 1, Nummer 9
|
||||||
Brandt, Kathrin, = Hof 1, Tisch 11, Nummer 6
|
Brandt, Kathrin, = Hof 1, Tisch 12, Nummer 4
|
||||||
Brandt, Lena, = Hof 1, Tisch 15, Nummer 8
|
Brandt, Lena, = Hof 1, Tisch 15, Nummer 5
|
||||||
Brandt, Milan, = Hof 1, Tisch 14, Nummer 8
|
Brandt, Milan, = Hof 1, Tisch 13, Nummer 9
|
||||||
Brandt, Paul, = Hof 1, Tisch 17, Nummer 4
|
Brandt, Paul, = Hof 1, Tisch 17, Nummer 4
|
||||||
Brandt, Sofia, = Hof 1, Tisch 14, Nummer 7
|
Brandt, Sofia, = Hof 1, Tisch 13, Nummer 4
|
||||||
Brandt, Theo, = Hof 1, Tisch 15, Nummer 4
|
Brandt, Theo, = Hof 1, Tisch 15, Nummer 6
|
||||||
Brandt, Werner, = Hof 1, Tisch 1, Nummer 8
|
Brandt, Werner, = Hof 1, Tisch 1, Nummer 13
|
||||||
Busch, Stefanie, = Hof 1, Tisch 4, Nummer 4
|
Busch, Stefanie, = Hof 1, Tisch 1, Nummer 3
|
||||||
Demir, Elif, = Hof 1, Tisch 10, Nummer 2
|
Demir, Elif, = Hof 1, Tisch 10, Nummer 9
|
||||||
Demir, Hannelore, = Hof 1, Tisch 13, Nummer 7
|
Demir, Hannelore, = Hof 1, Tisch 3, Nummer 8
|
||||||
Demir, Ingrid, = Hof 1, Tisch 13, Nummer 3
|
Demir, Ingrid, = Hof 1, Tisch 3, Nummer 2
|
||||||
Demir, Monika, = Hof 1, Tisch 13, Nummer 2
|
Demir, Monika, = Hof 1, Tisch 3, Nummer 4
|
||||||
Dietrich, Jennifer, = Hof 1, Tisch 13, Nummer 5
|
Dietrich, Jennifer, = Hof 1, Tisch 13, Nummer 5
|
||||||
Dietrich, Nicole, = Hof 1, Tisch 12, Nummer 2
|
Dietrich, Nicole, = Hof 1, Tisch 12, Nummer 7
|
||||||
Erdem, Erika, = Hof 1, Tisch 15, Nummer 5
|
Erdem, Erika, = Hof 1, Tisch 2, Nummer 9
|
||||||
Erdem, Gerhard, = Hof 1, Tisch 9, Nummer 3
|
Erdem, Gerhard, = Hof 1, Tisch 9, Nummer 7
|
||||||
Erdem, Rainer, = Hof 1, Tisch 9, Nummer 4
|
Erdem, Rainer, = Hof 1, Tisch 9, Nummer 8
|
||||||
Esposito, Christian, = Hof 1, Tisch 12, Nummer 3
|
Esposito, Christian, = Hof 1, Tisch 12, Nummer 6
|
||||||
Esposito, Gisela, = Hof 1, Tisch 9, Nummer 9
|
Esposito, Gisela, = Hof 1, Tisch 9, Nummer 5
|
||||||
Esposito, Julia, = Hof 1, Tisch 4, Nummer 5
|
Esposito, Julia, = Hof 1, Tisch 1, Nummer 4
|
||||||
Fischer, Heinz, = Hof 1, Tisch 2, Nummer 3
|
Fischer, Heinz, = Hof 1, Tisch 6, Nummer 3
|
||||||
Fischer, Helga, = Hof 1, Tisch 2, Nummer 9
|
Fischer, Helga, = Hof 1, Tisch 6, Nummer 2
|
||||||
Fischer, Nicole, = Hof 1, Tisch 12, Nummer 8
|
Fischer, Nicole, = Hof 1, Tisch 12, Nummer 3
|
||||||
Fischer, Sven, = Hof 1, Tisch 10, Nummer 5
|
Fischer, Sven, = Hof 1, Tisch 10, Nummer 3
|
||||||
Frank, Erika, = Hof 1, Tisch 9, Nummer 2
|
Frank, Erika, = Hof 1, Tisch 9, Nummer 3
|
||||||
Frank, Nadine, = Hof 1, Tisch 11, Nummer 9
|
Frank, Nadine, = Hof 1, Tisch 11, Nummer 8
|
||||||
Frank, Timo, = Hof 1, Tisch 10, Nummer 7
|
Frank, Timo, = Hof 1, Tisch 10, Nummer 8
|
||||||
Frank, Tobias, = Hof 1, Tisch 1, Nummer 9
|
Frank, Tobias, = Hof 1, Tisch 1, Nummer 5
|
||||||
Franke, Brigitte, = Hof 1, Tisch 9, Nummer 6
|
Franke, Brigitte, = Hof 1, Tisch 9, Nummer 4
|
||||||
Hansen, Olga, = Hof 1, Tisch 11, Nummer 3
|
Hansen, Olga, = Hof 1, Tisch 11, Nummer 2
|
||||||
Hansen, Wolfgang, = Hof 1, Tisch 9, Nummer 5
|
Hansen, Wolfgang, = Hof 1, Tisch 9, Nummer 6
|
||||||
Hoffmann, Lena, = Hof 1, Tisch 12, Nummer 9
|
Hoffmann, Lena, = Hof 1, Tisch 12, Nummer 2
|
||||||
Horn, Daniel, = Hof 1, Tisch 11, Nummer 2
|
Horn, Daniel, = Hof 1, Tisch 11, Nummer 5
|
||||||
Horn, Svenja, = Hof 1, Tisch 13, Nummer 9
|
Horn, Svenja, = Hof 1, Tisch 13, Nummer 3
|
||||||
Klein, Stefan, = Hof 1, Tisch 10, Nummer 4
|
Klein, Stefan, = Hof 1, Tisch 10, Nummer 7
|
||||||
Koch, Andreas, = Hof 1, Tisch 8, Nummer 2
|
Koch, Andreas, = Hof 1, Tisch 3, Nummer 7
|
||||||
Koch, Giovanna, = Hof 1, Tisch 8, Nummer 4
|
Koch, Giovanna, = Hof 1, Tisch 3, Nummer 9
|
||||||
Kovac, Giovanna, = Hof 1, Tisch 8, Nummer 7
|
Kovac, Giovanna, = Hof 1, Tisch 1, Nummer 8
|
||||||
Kraus, Dennis, = Hof 1, Tisch 12, Nummer 5
|
Kraus, Dennis, = Hof 1, Tisch 14, Nummer 9
|
||||||
Kraus, Matteo, = Hof 1, Tisch 16, Nummer 9
|
Kraus, Matteo, = Hof 1, Tisch 16, Nummer 9
|
||||||
Kraus, Melanie, = Hof 1, Tisch 12, Nummer 6
|
Kraus, Melanie, = Hof 1, Tisch 14, Nummer 6
|
||||||
Kuhn, Leni, = Hof 1, Tisch 16, Nummer 7
|
Kuhn, Leni, = Hof 1, Tisch 16, Nummer 3
|
||||||
Kuhn, Sarah, = Hof 1, Tisch 2, Nummer 2
|
Kuhn, Sarah, = Hof 1, Tisch 15, Nummer 8
|
||||||
Kuhn, Stefan, = Hof 1, Tisch 13, Nummer 6
|
Kuhn, Stefan, = Hof 1, Tisch 13, Nummer 8
|
||||||
Kuhn, Timo, = Hof 1, Tisch 2, Nummer 4
|
Kuhn, Timo, = Hof 1, Tisch 15, Nummer 3
|
||||||
Lange, Milan, = Hof 1, Tisch 11, Nummer 8
|
Lange, Milan, = Hof 1, Tisch 11, Nummer 7
|
||||||
Meyer, Anton, = Hof 1, Tisch 17, Nummer 7
|
Meyer, Anton, = Hof 1, Tisch 17, Nummer 5
|
||||||
Meyer, Christian, = Hof 1, Tisch 13, Nummer 4
|
Meyer, Christian, = Hof 1, Tisch 13, Nummer 6
|
||||||
Meyer, Ida, = Hof 1, Tisch 17, Nummer 5
|
Meyer, Ida, = Hof 1, Tisch 17, Nummer 3
|
||||||
Meyer, Marco, = Hof 1, Tisch 14, Nummer 4
|
Meyer, Marco, = Hof 1, Tisch 14, Nummer 8
|
||||||
Meyer, Mila, = Hof 1, Tisch 16, Nummer 13
|
Meyer, Mila, = Hof 1, Tisch 16, Nummer 8
|
||||||
Meyer, Sandra, = Hof 1, Tisch 14, Nummer 9
|
Meyer, Sandra, = Hof 1, Tisch 14, Nummer 4
|
||||||
Meyer, Wolfgang, = Hof 1, Tisch 9, Nummer 8
|
Meyer, Wolfgang, = Hof 1, Tisch 9, Nummer 2
|
||||||
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 3
|
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 3
|
||||||
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 6
|
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 6
|
||||||
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 7
|
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 7
|
||||||
@@ -80,41 +80,41 @@ Musikverein, Gast, = Hof 1, Tisch 5, Nummer 6
|
|||||||
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 7
|
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 7
|
||||||
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 8
|
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 8
|
||||||
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 9
|
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 9
|
||||||
Peters, Melanie, = Hof 1, Tisch 8, Nummer 6
|
Peters, Melanie, = Hof 1, Tisch 11, Nummer 9
|
||||||
Peters, Yusuf, = Hof 1, Tisch 8, Nummer 3
|
Peters, Yusuf, = Hof 1, Tisch 11, Nummer 3
|
||||||
Polat, Matthias, = Hof 1, Tisch 12, Nummer 4
|
Polat, Matthias, = Hof 1, Tisch 12, Nummer 8
|
||||||
Roth, Stefanie, = Hof 1, Tisch 13, Nummer 8
|
Roth, Stefanie, = Hof 1, Tisch 13, Nummer 7
|
||||||
Schmidt, Dennis, = Hof 1, Tisch 8, Nummer 9
|
Schmidt, Dennis, = Hof 1, Tisch 3, Nummer 3
|
||||||
Schmitt, Markus, = Hof 1, Tisch 11, Nummer 5
|
Schmitt, Markus, = Hof 1, Tisch 11, Nummer 6
|
||||||
Schwarz, Elias, = Hof 1, Tisch 16, Nummer 3
|
Schwarz, Elias, = Hof 1, Tisch 16, Nummer 10
|
||||||
Schwarz, Guenter, = Hof 1, Tisch 1, Nummer 12
|
Schwarz, Guenter, = Hof 1, Tisch 14, Nummer 3
|
||||||
Schwarz, Liam, = Hof 1, Tisch 16, Nummer 12
|
Schwarz, Liam, = Hof 1, Tisch 16, Nummer 12
|
||||||
Schwarz, Sarah, = Hof 1, Tisch 2, Nummer 8
|
Schwarz, Sarah, = Hof 1, Tisch 2, Nummer 5
|
||||||
Schwarz, Yusuf, = Hof 1, Tisch 2, Nummer 5
|
Schwarz, Yusuf, = Hof 1, Tisch 2, Nummer 2
|
||||||
Simon, Jennifer, = Hof 1, Tisch 10, Nummer 8
|
Simon, Jennifer, = Hof 1, Tisch 10, Nummer 5
|
||||||
Simon, Patrick, = Hof 1, Tisch 8, Nummer 8
|
Simon, Patrick, = Hof 1, Tisch 3, Nummer 5
|
||||||
Simon, Stefanie, = Hof 1, Tisch 10, Nummer 6
|
Simon, Stefanie, = Hof 1, Tisch 10, Nummer 6
|
||||||
Sommer, Daniel, = Hof 1, Tisch 1, Nummer 2
|
Sommer, Daniel, = Hof 1, Tisch 1, Nummer 10
|
||||||
Sommer, Dennis, = Hof 1, Tisch 14, Nummer 2
|
Sommer, Dennis, = Hof 1, Tisch 2, Nummer 8
|
||||||
Sommer, Dennis, = Hof 1, Tisch 2, Nummer 6
|
Sommer, Dennis, = Hof 1, Tisch 4, Nummer 4
|
||||||
Sommer, Dieter, = Hof 1, Tisch 1, Nummer 6
|
Sommer, Dieter, = Hof 1, Tisch 1, Nummer 6
|
||||||
Sommer, Emil, = Hof 1, Tisch 16, Nummer 4
|
Sommer, Emil, = Hof 1, Tisch 16, Nummer 4
|
||||||
Sommer, Ida, = Hof 1, Tisch 16, Nummer 5
|
Sommer, Ida, = Hof 1, Tisch 16, Nummer 5
|
||||||
Sommer, Jennifer, = Hof 1, Tisch 2, Nummer 7
|
Sommer, Jennifer, = Hof 1, Tisch 2, Nummer 3
|
||||||
Sommer, Lina, = Hof 1, Tisch 14, Nummer 3
|
Sommer, Lina, = Hof 1, Tisch 4, Nummer 5
|
||||||
Sommer, Max, = Hof 1, Tisch 16, Nummer 11
|
Sommer, Max, = Hof 1, Tisch 16, Nummer 6
|
||||||
Sommer, Nicole, = Hof 1, Tisch 14, Nummer 5
|
Sommer, Nicole, = Hof 1, Tisch 4, Nummer 2
|
||||||
Sommer, Renate, = Hof 1, Tisch 1, Nummer 13
|
Sommer, Renate, = Hof 1, Tisch 1, Nummer 2
|
||||||
Sommer, Theo, = Hof 1, Tisch 16, Nummer 6
|
Sommer, Theo, = Hof 1, Tisch 16, Nummer 7
|
||||||
Stein, Andreas, = Hof 1, Tisch 10, Nummer 9
|
Stein, Andreas, = Hof 1, Tisch 10, Nummer 4
|
||||||
Stein, Werner, = Hof 1, Tisch 1, Nummer 3
|
Stein, Werner, = Hof 1, Tisch 14, Nummer 2
|
||||||
Tran, Heinz, = Hof 1, Tisch 15, Nummer 6
|
Tran, Heinz, = Hof 1, Tisch 2, Nummer 7
|
||||||
Vogel, Anton, = Hof 1, Tisch 17, Nummer 6
|
Vogel, Anton, = Hof 1, Tisch 17, Nummer 7
|
||||||
Vogel, Max, = Hof 1, Tisch 17, Nummer 2
|
Vogel, Max, = Hof 1, Tisch 17, Nummer 2
|
||||||
Vogel, Sandra, = Hof 1, Tisch 15, Nummer 2
|
Vogel, Sandra, = Hof 1, Tisch 15, Nummer 7
|
||||||
Vogel, Svenja, = Hof 1, Tisch 8, Nummer 5
|
Vogel, Svenja, = Hof 1, Tisch 3, Nummer 6
|
||||||
Vogel, Yusuf, = Hof 1, Tisch 15, Nummer 7
|
Vogel, Yusuf, = Hof 1, Tisch 15, Nummer 2
|
||||||
Wagner, Daniel, = Hof 1, Tisch 10, Nummer 3
|
Wagner, Daniel, = Hof 1, Tisch 10, Nummer 2
|
||||||
Wagner, Timo, = Hof 1, Tisch 12, Nummer 7
|
Wagner, Timo, = Hof 1, Tisch 12, Nummer 5
|
||||||
Winkler, Sarah, = Hof 1, Tisch 1, Nummer 7
|
Winkler, Sarah, = Hof 1, Tisch 1, Nummer 11
|
||||||
Yilmaz, Olga, = Hof 1, Tisch 11, Nummer 7
|
Yilmaz, Olga, = Hof 1, Tisch 11, Nummer 4
|
||||||
|
|||||||
|
@@ -1,19 +1,19 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="995.887" height="667.258" viewBox="0 0 995.887 667.258">
|
<svg xmlns="http://www.w3.org/2000/svg" width="995.887" height="667.258" viewBox="0 0 995.887 667.258">
|
||||||
<rect width="100%" height="100%" fill="white"/>
|
<rect width="100%" height="100%" fill="white"/>
|
||||||
<polyline points="435.414,248.104 247.407,414.103" fill="none" stroke="#fabed4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
<polyline points="251.472,258.37 422.161,76.1153" fill="none" stroke="#469990" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
||||||
<polyline points="404.01,253.492 580.101,251.472" fill="none" stroke="#469990" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
<polyline points="404.01,253.492 580.101,251.472" fill="none" stroke="#9a6324" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
||||||
<circle cx="744.415" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
|
||||||
<circle cx="744.415" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
|
|
||||||
<text x="744.415" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">6</text>
|
|
||||||
<circle cx="87.1573" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="87.1573" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="87.1573" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="87.1573" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="87.1573" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">7</text>
|
<text x="87.1573" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">7</text>
|
||||||
<circle cx="251.472" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="251.472" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="251.472" cy="216.979" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle cx="251.472" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<circle cx="251.472" cy="285.965" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<text x="251.472" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">8</text>
|
||||||
<circle cx="251.472" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="744.415" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<text x="251.472" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">3</text>
|
<circle cx="744.415" cy="216.979" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="744.415" cy="285.965" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="744.415" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
|
<text x="744.415" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">6</text>
|
||||||
<circle cx="908.73" cy="415.786" r="48.4" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="908.73" cy="415.786" r="48.4" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="908.73" cy="389.386" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle cx="908.73" cy="389.386" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="931.593" cy="402.586" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle cx="931.593" cy="402.586" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
<circle cx="580.101" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="580.101" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="580.101" cy="545.608" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle cx="580.101" cy="545.608" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="607.069" cy="558.595" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle cx="607.069" cy="558.595" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="613.729" cy="587.776" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle cx="613.729" cy="587.776" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="595.067" cy="611.178" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle cx="595.067" cy="611.178" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="565.135" cy="611.178" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle cx="565.135" cy="611.178" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="546.472" cy="587.776" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle cx="546.472" cy="587.776" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
||||||
@@ -36,125 +36,125 @@
|
|||||||
<circle cx="87.1573" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="87.1573" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="87.1573" cy="216.979" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
<circle cx="87.1573" cy="216.979" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="111.548" cy="227.081" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
<circle cx="111.548" cy="227.081" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="121.651" cy="251.472" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
<circle cx="121.651" cy="251.472" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="111.548" cy="275.862" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
<circle cx="111.548" cy="275.862" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="87.1573" cy="285.965" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
<circle cx="87.1573" cy="285.965" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="62.7669" cy="275.862" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
<circle cx="62.7669" cy="275.862" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="52.664" cy="251.472" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
<circle cx="52.664" cy="251.472" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="62.7669" cy="227.081" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
<circle cx="62.7669" cy="227.081" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="87.1573" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="87.1573" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="87.1573" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">2</text>
|
<text x="87.1573" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">2</text>
|
||||||
|
<circle cx="251.472" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
|
<circle cx="251.472" cy="216.979" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="275.862" cy="227.081" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="285.965" cy="251.472" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="275.862" cy="275.862" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="251.472" cy="285.965" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="227.081" cy="275.862" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="216.979" cy="251.472" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="227.081" cy="227.081" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="251.472" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
|
<text x="251.472" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">3</text>
|
||||||
<circle cx="415.786" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="415.786" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="415.786" cy="216.979" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle cx="415.786" cy="216.979" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="440.177" cy="227.081" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="440.177" cy="227.081" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="450.28" cy="251.472" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle cx="450.28" cy="251.472" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="440.177" cy="275.862" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle cx="440.177" cy="275.862" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="415.786" cy="285.965" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="415.786" cy="285.965" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="391.396" cy="275.862" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="391.396" cy="275.862" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="381.293" cy="251.472" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="381.293" cy="251.472" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="391.396" cy="227.081" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="391.396" cy="227.081" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="415.786" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="415.786" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="415.786" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">4</text>
|
<text x="415.786" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">4</text>
|
||||||
<circle cx="580.101" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="580.101" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="580.101" cy="216.979" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="580.101" cy="216.979" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="604.491" cy="227.081" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="604.491" cy="227.081" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="614.594" cy="251.472" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="614.594" cy="251.472" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="604.491" cy="275.862" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="604.491" cy="275.862" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="580.101" cy="285.965" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="580.101" cy="285.965" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="555.711" cy="275.862" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="555.711" cy="275.862" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="545.608" cy="251.472" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="545.608" cy="251.472" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="555.711" cy="227.081" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle cx="555.711" cy="227.081" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="580.101" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="580.101" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="580.101" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">5</text>
|
<text x="580.101" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">5</text>
|
||||||
<circle cx="251.472" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
|
||||||
<circle cx="251.472" cy="381.293" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="275.862" cy="391.396" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="285.965" cy="415.786" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="275.862" cy="440.177" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="251.472" cy="450.28" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="227.081" cy="440.177" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="216.979" cy="415.786" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="227.081" cy="391.396" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="251.472" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
|
||||||
<text x="251.472" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">8</text>
|
|
||||||
<circle cx="415.786" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="415.786" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="415.786" cy="381.293" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle cx="415.786" cy="381.293" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="440.177" cy="391.396" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle cx="440.177" cy="391.396" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="450.28" cy="415.786" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle cx="450.28" cy="415.786" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="440.177" cy="440.177" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle cx="440.177" cy="440.177" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="415.786" cy="450.28" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle cx="415.786" cy="450.28" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="391.396" cy="440.177" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle cx="391.396" cy="440.177" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="381.293" cy="415.786" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle cx="381.293" cy="415.786" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="391.396" cy="391.396" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle cx="391.396" cy="391.396" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="415.786" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="415.786" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="415.786" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">9</text>
|
<text x="415.786" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">9</text>
|
||||||
<circle cx="580.101" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="580.101" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="580.101" cy="381.293" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
<circle cx="580.101" cy="381.293" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="604.491" cy="391.396" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
<circle cx="604.491" cy="391.396" r="12" fill="#000075" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="614.594" cy="415.786" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
<circle cx="614.594" cy="415.786" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="604.491" cy="440.177" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
|
<circle cx="604.491" cy="440.177" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="580.101" cy="450.28" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
<circle cx="580.101" cy="450.28" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="555.711" cy="440.177" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
<circle cx="555.711" cy="440.177" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="545.608" cy="415.786" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
<circle cx="545.608" cy="415.786" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="555.711" cy="391.396" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
<circle cx="555.711" cy="391.396" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="580.101" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="580.101" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="580.101" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">10</text>
|
<text x="580.101" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">10</text>
|
||||||
<circle cx="744.415" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="744.415" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="744.415" cy="381.293" r="12" fill="#000075" stroke="black" stroke-width="1"/>
|
<circle cx="744.415" cy="381.293" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="768.806" cy="391.396" r="12" fill="#000075" stroke="black" stroke-width="1"/>
|
<circle cx="768.806" cy="391.396" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="778.909" cy="415.786" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle cx="778.909" cy="415.786" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="768.806" cy="440.177" r="12" fill="#000075" stroke="black" stroke-width="1"/>
|
<circle cx="768.806" cy="440.177" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="744.415" cy="450.28" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle cx="744.415" cy="450.28" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="720.025" cy="440.177" r="12" fill="#000075" stroke="black" stroke-width="1"/>
|
<circle cx="720.025" cy="440.177" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="709.922" cy="415.786" r="12" fill="#000075" stroke="black" stroke-width="1"/>
|
<circle cx="709.922" cy="415.786" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="720.025" cy="391.396" r="12" fill="#000075" stroke="black" stroke-width="1"/>
|
<circle cx="720.025" cy="391.396" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="744.415" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="744.415" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="744.415" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">11</text>
|
<text x="744.415" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">11</text>
|
||||||
<circle cx="87.1573" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="87.1573" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="87.1573" cy="545.608" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle cx="87.1573" cy="545.608" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="111.548" cy="555.711" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle cx="111.548" cy="555.711" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="121.651" cy="580.101" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle cx="121.651" cy="580.101" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="111.548" cy="604.491" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle cx="111.548" cy="604.491" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="87.1573" cy="614.594" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle cx="87.1573" cy="614.594" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="62.7669" cy="604.491" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle cx="62.7669" cy="604.491" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="52.664" cy="580.101" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle cx="52.664" cy="580.101" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="62.7669" cy="555.711" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle cx="62.7669" cy="555.711" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="87.1573" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="87.1573" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="87.1573" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">12</text>
|
<text x="87.1573" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">12</text>
|
||||||
<circle cx="251.472" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="251.472" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="251.472" cy="545.608" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle cx="251.472" cy="545.608" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="275.862" cy="555.711" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle cx="275.862" cy="555.711" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="285.965" cy="580.101" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
<circle cx="285.965" cy="580.101" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="275.862" cy="604.491" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
<circle cx="275.862" cy="604.491" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="251.472" cy="614.594" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
<circle cx="251.472" cy="614.594" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="227.081" cy="604.491" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle cx="227.081" cy="604.491" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="216.979" cy="580.101" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
<circle cx="216.979" cy="580.101" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="227.081" cy="555.711" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
<circle cx="227.081" cy="555.711" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="251.472" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="251.472" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="251.472" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">13</text>
|
<text x="251.472" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">13</text>
|
||||||
<circle cx="415.786" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="415.786" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="415.786" cy="545.608" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
<circle cx="415.786" cy="545.608" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="440.177" cy="555.711" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
<circle cx="440.177" cy="555.711" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="450.28" cy="580.101" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
<circle cx="450.28" cy="580.101" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="440.177" cy="604.491" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
<circle cx="440.177" cy="604.491" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="415.786" cy="614.594" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
<circle cx="415.786" cy="614.594" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="391.396" cy="604.491" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
<circle cx="391.396" cy="604.491" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="381.293" cy="580.101" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
<circle cx="381.293" cy="580.101" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="391.396" cy="555.711" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
<circle cx="391.396" cy="555.711" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="415.786" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="415.786" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="415.786" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">14</text>
|
<text x="415.786" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">14</text>
|
||||||
<circle cx="415.786" cy="87.1573" r="73.0009" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="415.786" cy="87.1573" r="73.0009" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="415.786" cy="36.1564" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle cx="415.786" cy="36.1564" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="441.287" cy="42.9892" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle cx="441.287" cy="42.9892" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="459.954" cy="61.6568" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle cx="459.954" cy="61.6568" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="466.787" cy="87.1573" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle cx="466.787" cy="87.1573" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="459.954" cy="112.658" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle cx="459.954" cy="112.658" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="441.287" cy="131.325" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle cx="441.287" cy="131.325" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="415.786" cy="138.158" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle cx="415.786" cy="138.158" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="390.286" cy="131.325" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle cx="390.286" cy="131.325" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="371.618" cy="112.658" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle cx="371.618" cy="112.658" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="364.785" cy="87.1573" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle cx="364.785" cy="87.1573" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="371.618" cy="61.6568" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle cx="371.618" cy="61.6568" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="390.286" cy="42.9892" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle cx="390.286" cy="42.9892" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="415.786" cy="87.1573" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="415.786" cy="87.1573" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="415.786" y="87.1573" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">1</text>
|
<text x="415.786" y="87.1573" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">1</text>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
@@ -1,36 +1,42 @@
|
|||||||
[1]
|
[1]
|
||||||
Daniel Sommer = Hof 1, Tisch 1, Nummer 1
|
Renate Sommer = Hof 1, Tisch 1, Nummer 1
|
||||||
Werner Stein = Hof 1, Tisch 1, Nummer 2
|
Stefanie Busch = Hof 1, Tisch 1, Nummer 2
|
||||||
Helga Brandt = Hof 1, Tisch 1, Nummer 3
|
Julia Esposito = Hof 1, Tisch 1, Nummer 3
|
||||||
Rainer Aksoy = Hof 1, Tisch 1, Nummer 4
|
Tobias Frank = Hof 1, Tisch 1, Nummer 4
|
||||||
Dieter Sommer = Hof 1, Tisch 1, Nummer 5
|
Dieter Sommer = Hof 1, Tisch 1, Nummer 5
|
||||||
Sarah Winkler = Hof 1, Tisch 1, Nummer 6
|
Helga Brandt = Hof 1, Tisch 1, Nummer 6
|
||||||
Werner Brandt = Hof 1, Tisch 1, Nummer 7
|
Giovanna Kovac = Hof 1, Tisch 1, Nummer 7
|
||||||
Tobias Frank = Hof 1, Tisch 1, Nummer 8
|
Julia Brandt = Hof 1, Tisch 1, Nummer 8
|
||||||
Renate Aksoy = Hof 1, Tisch 1, Nummer 9
|
Daniel Sommer = Hof 1, Tisch 1, Nummer 9
|
||||||
Julia Brandt = Hof 1, Tisch 1, Nummer 10
|
Sarah Winkler = Hof 1, Tisch 1, Nummer 10
|
||||||
Guenter Schwarz = Hof 1, Tisch 1, Nummer 11
|
Sergej Berger = Hof 1, Tisch 1, Nummer 11
|
||||||
Renate Sommer = Hof 1, Tisch 1, Nummer 12
|
Werner Brandt = Hof 1, Tisch 1, Nummer 12
|
||||||
|
|
||||||
[2]
|
[2]
|
||||||
Sarah Kuhn = Hof 1, Tisch 2, Nummer 1
|
Yusuf Schwarz = Hof 1, Tisch 2, Nummer 1
|
||||||
Heinz Fischer = Hof 1, Tisch 2, Nummer 2
|
Jennifer Sommer = Hof 1, Tisch 2, Nummer 2
|
||||||
Timo Kuhn = Hof 1, Tisch 2, Nummer 3
|
Ursula Aydin = Hof 1, Tisch 2, Nummer 3
|
||||||
Yusuf Schwarz = Hof 1, Tisch 2, Nummer 4
|
Sarah Schwarz = Hof 1, Tisch 2, Nummer 4
|
||||||
Dennis Sommer = Hof 1, Tisch 2, Nummer 5
|
Horst Aydin = Hof 1, Tisch 2, Nummer 5
|
||||||
Jennifer Sommer = Hof 1, Tisch 2, Nummer 6
|
Heinz Tran = Hof 1, Tisch 2, Nummer 6
|
||||||
Sarah Schwarz = Hof 1, Tisch 2, Nummer 7
|
Dennis Sommer = Hof 1, Tisch 2, Nummer 7
|
||||||
Helga Fischer = Hof 1, Tisch 2, Nummer 8
|
Erika Erdem = Hof 1, Tisch 2, Nummer 8
|
||||||
|
|
||||||
[3]
|
[3]
|
||||||
Horst Aydin = Hof 1, Tisch 3, Nummer 1
|
Ingrid Demir = Hof 1, Tisch 3, Nummer 1
|
||||||
Ursula Aydin = Hof 1, Tisch 3, Nummer 2
|
Dennis Schmidt = Hof 1, Tisch 3, Nummer 2
|
||||||
|
Monika Demir = Hof 1, Tisch 3, Nummer 3
|
||||||
|
Patrick Simon = Hof 1, Tisch 3, Nummer 4
|
||||||
|
Svenja Vogel = Hof 1, Tisch 3, Nummer 5
|
||||||
|
Andreas Koch = Hof 1, Tisch 3, Nummer 6
|
||||||
|
Hannelore Demir = Hof 1, Tisch 3, Nummer 7
|
||||||
|
Giovanna Koch = Hof 1, Tisch 3, Nummer 8
|
||||||
|
|
||||||
[4]
|
[4]
|
||||||
Sergej Berger = Hof 1, Tisch 4, Nummer 1
|
Nicole Sommer = Hof 1, Tisch 4, Nummer 1
|
||||||
Gast Musikverein = Hof 1, Tisch 4, Nummer 2
|
Gast Musikverein = Hof 1, Tisch 4, Nummer 2
|
||||||
Stefanie Busch = Hof 1, Tisch 4, Nummer 3
|
Dennis Sommer = Hof 1, Tisch 4, Nummer 3
|
||||||
Julia Esposito = Hof 1, Tisch 4, Nummer 4
|
Lina Sommer = Hof 1, Tisch 4, Nummer 4
|
||||||
Gast Musikverein = Hof 1, Tisch 4, Nummer 5
|
Gast Musikverein = Hof 1, Tisch 4, Nummer 5
|
||||||
Gast Musikverein = Hof 1, Tisch 4, Nummer 6
|
Gast Musikverein = Hof 1, Tisch 4, Nummer 6
|
||||||
Gast Musikverein = Hof 1, Tisch 4, Nummer 7
|
Gast Musikverein = Hof 1, Tisch 4, Nummer 7
|
||||||
@@ -47,108 +53,102 @@
|
|||||||
Gast Musikverein = Hof 1, Tisch 5, Nummer 8
|
Gast Musikverein = Hof 1, Tisch 5, Nummer 8
|
||||||
|
|
||||||
[6]
|
[6]
|
||||||
|
Helga Fischer = Hof 1, Tisch 6, Nummer 1
|
||||||
|
Heinz Fischer = Hof 1, Tisch 6, Nummer 2
|
||||||
|
|
||||||
[7]
|
[7]
|
||||||
|
|
||||||
[8]
|
[8]
|
||||||
Andreas Koch = Hof 1, Tisch 8, Nummer 1
|
|
||||||
Yusuf Peters = Hof 1, Tisch 8, Nummer 2
|
|
||||||
Giovanna Koch = Hof 1, Tisch 8, Nummer 3
|
|
||||||
Svenja Vogel = Hof 1, Tisch 8, Nummer 4
|
|
||||||
Melanie Peters = Hof 1, Tisch 8, Nummer 5
|
|
||||||
Giovanna Kovac = Hof 1, Tisch 8, Nummer 6
|
|
||||||
Patrick Simon = Hof 1, Tisch 8, Nummer 7
|
|
||||||
Dennis Schmidt = Hof 1, Tisch 8, Nummer 8
|
|
||||||
|
|
||||||
[9]
|
[9]
|
||||||
Erika Frank = Hof 1, Tisch 9, Nummer 1
|
Wolfgang Meyer = Hof 1, Tisch 9, Nummer 1
|
||||||
Gerhard Erdem = Hof 1, Tisch 9, Nummer 2
|
Erika Frank = Hof 1, Tisch 9, Nummer 2
|
||||||
Rainer Erdem = Hof 1, Tisch 9, Nummer 3
|
Brigitte Franke = Hof 1, Tisch 9, Nummer 3
|
||||||
Wolfgang Hansen = Hof 1, Tisch 9, Nummer 4
|
Gisela Esposito = Hof 1, Tisch 9, Nummer 4
|
||||||
Brigitte Franke = Hof 1, Tisch 9, Nummer 5
|
Wolfgang Hansen = Hof 1, Tisch 9, Nummer 5
|
||||||
Hannelore Barth = Hof 1, Tisch 9, Nummer 6
|
Gerhard Erdem = Hof 1, Tisch 9, Nummer 6
|
||||||
Wolfgang Meyer = Hof 1, Tisch 9, Nummer 7
|
Rainer Erdem = Hof 1, Tisch 9, Nummer 7
|
||||||
Gisela Esposito = Hof 1, Tisch 9, Nummer 8
|
Hannelore Barth = Hof 1, Tisch 9, Nummer 8
|
||||||
|
|
||||||
[10]
|
[10]
|
||||||
Elif Demir = Hof 1, Tisch 10, Nummer 1
|
Daniel Wagner = Hof 1, Tisch 10, Nummer 1
|
||||||
Daniel Wagner = Hof 1, Tisch 10, Nummer 2
|
Sven Fischer = Hof 1, Tisch 10, Nummer 2
|
||||||
Stefan Klein = Hof 1, Tisch 10, Nummer 3
|
Andreas Stein = Hof 1, Tisch 10, Nummer 3
|
||||||
Sven Fischer = Hof 1, Tisch 10, Nummer 4
|
Jennifer Simon = Hof 1, Tisch 10, Nummer 4
|
||||||
Stefanie Simon = Hof 1, Tisch 10, Nummer 5
|
Stefanie Simon = Hof 1, Tisch 10, Nummer 5
|
||||||
Timo Frank = Hof 1, Tisch 10, Nummer 6
|
Stefan Klein = Hof 1, Tisch 10, Nummer 6
|
||||||
Jennifer Simon = Hof 1, Tisch 10, Nummer 7
|
Timo Frank = Hof 1, Tisch 10, Nummer 7
|
||||||
Andreas Stein = Hof 1, Tisch 10, Nummer 8
|
Elif Demir = Hof 1, Tisch 10, Nummer 8
|
||||||
|
|
||||||
[11]
|
[11]
|
||||||
Daniel Horn = Hof 1, Tisch 11, Nummer 1
|
Olga Hansen = Hof 1, Tisch 11, Nummer 1
|
||||||
Olga Hansen = Hof 1, Tisch 11, Nummer 2
|
Yusuf Peters = Hof 1, Tisch 11, Nummer 2
|
||||||
Daniel Brandt = Hof 1, Tisch 11, Nummer 3
|
Olga Yilmaz = Hof 1, Tisch 11, Nummer 3
|
||||||
Markus Schmitt = Hof 1, Tisch 11, Nummer 4
|
Daniel Horn = Hof 1, Tisch 11, Nummer 4
|
||||||
Kathrin Brandt = Hof 1, Tisch 11, Nummer 5
|
Markus Schmitt = Hof 1, Tisch 11, Nummer 5
|
||||||
Olga Yilmaz = Hof 1, Tisch 11, Nummer 6
|
Milan Lange = Hof 1, Tisch 11, Nummer 6
|
||||||
Milan Lange = Hof 1, Tisch 11, Nummer 7
|
Nadine Frank = Hof 1, Tisch 11, Nummer 7
|
||||||
Nadine Frank = Hof 1, Tisch 11, Nummer 8
|
Melanie Peters = Hof 1, Tisch 11, Nummer 8
|
||||||
|
|
||||||
[12]
|
[12]
|
||||||
Nicole Dietrich = Hof 1, Tisch 12, Nummer 1
|
Lena Hoffmann = Hof 1, Tisch 12, Nummer 1
|
||||||
Christian Esposito = Hof 1, Tisch 12, Nummer 2
|
Nicole Fischer = Hof 1, Tisch 12, Nummer 2
|
||||||
Matthias Polat = Hof 1, Tisch 12, Nummer 3
|
Kathrin Brandt = Hof 1, Tisch 12, Nummer 3
|
||||||
Dennis Kraus = Hof 1, Tisch 12, Nummer 4
|
Timo Wagner = Hof 1, Tisch 12, Nummer 4
|
||||||
Melanie Kraus = Hof 1, Tisch 12, Nummer 5
|
Christian Esposito = Hof 1, Tisch 12, Nummer 5
|
||||||
Timo Wagner = Hof 1, Tisch 12, Nummer 6
|
Nicole Dietrich = Hof 1, Tisch 12, Nummer 6
|
||||||
Nicole Fischer = Hof 1, Tisch 12, Nummer 7
|
Matthias Polat = Hof 1, Tisch 12, Nummer 7
|
||||||
Lena Hoffmann = Hof 1, Tisch 12, Nummer 8
|
Daniel Brandt = Hof 1, Tisch 12, Nummer 8
|
||||||
|
|
||||||
[13]
|
[13]
|
||||||
Monika Demir = Hof 1, Tisch 13, Nummer 1
|
Anja Brandt = Hof 1, Tisch 13, Nummer 1
|
||||||
Ingrid Demir = Hof 1, Tisch 13, Nummer 2
|
Svenja Horn = Hof 1, Tisch 13, Nummer 2
|
||||||
Christian Meyer = Hof 1, Tisch 13, Nummer 3
|
Sofia Brandt = Hof 1, Tisch 13, Nummer 3
|
||||||
Jennifer Dietrich = Hof 1, Tisch 13, Nummer 4
|
Jennifer Dietrich = Hof 1, Tisch 13, Nummer 4
|
||||||
Stefan Kuhn = Hof 1, Tisch 13, Nummer 5
|
Christian Meyer = Hof 1, Tisch 13, Nummer 5
|
||||||
Hannelore Demir = Hof 1, Tisch 13, Nummer 6
|
Stefanie Roth = Hof 1, Tisch 13, Nummer 6
|
||||||
Stefanie Roth = Hof 1, Tisch 13, Nummer 7
|
Stefan Kuhn = Hof 1, Tisch 13, Nummer 7
|
||||||
Svenja Horn = Hof 1, Tisch 13, Nummer 8
|
Milan Brandt = Hof 1, Tisch 13, Nummer 8
|
||||||
|
|
||||||
[14]
|
[14]
|
||||||
Dennis Sommer = Hof 1, Tisch 14, Nummer 1
|
Werner Stein = Hof 1, Tisch 14, Nummer 1
|
||||||
Lina Sommer = Hof 1, Tisch 14, Nummer 2
|
Guenter Schwarz = Hof 1, Tisch 14, Nummer 2
|
||||||
Marco Meyer = Hof 1, Tisch 14, Nummer 3
|
Sandra Meyer = Hof 1, Tisch 14, Nummer 3
|
||||||
Nicole Sommer = Hof 1, Tisch 14, Nummer 4
|
Renate Aksoy = Hof 1, Tisch 14, Nummer 4
|
||||||
Anja Brandt = Hof 1, Tisch 14, Nummer 5
|
Melanie Kraus = Hof 1, Tisch 14, Nummer 5
|
||||||
Sofia Brandt = Hof 1, Tisch 14, Nummer 6
|
Rainer Aksoy = Hof 1, Tisch 14, Nummer 6
|
||||||
Milan Brandt = Hof 1, Tisch 14, Nummer 7
|
Marco Meyer = Hof 1, Tisch 14, Nummer 7
|
||||||
Sandra Meyer = Hof 1, Tisch 14, Nummer 8
|
Dennis Kraus = Hof 1, Tisch 14, Nummer 8
|
||||||
|
|
||||||
[15]
|
[15]
|
||||||
Sandra Vogel = Hof 1, Tisch 15, Nummer 1
|
Yusuf Vogel = Hof 1, Tisch 15, Nummer 1
|
||||||
Andreas Brandt = Hof 1, Tisch 15, Nummer 2
|
Timo Kuhn = Hof 1, Tisch 15, Nummer 2
|
||||||
Theo Brandt = Hof 1, Tisch 15, Nummer 3
|
Andreas Brandt = Hof 1, Tisch 15, Nummer 3
|
||||||
Erika Erdem = Hof 1, Tisch 15, Nummer 4
|
Lena Brandt = Hof 1, Tisch 15, Nummer 4
|
||||||
Heinz Tran = Hof 1, Tisch 15, Nummer 5
|
Theo Brandt = Hof 1, Tisch 15, Nummer 5
|
||||||
Yusuf Vogel = Hof 1, Tisch 15, Nummer 6
|
Sandra Vogel = Hof 1, Tisch 15, Nummer 6
|
||||||
Lena Brandt = Hof 1, Tisch 15, Nummer 7
|
Sarah Kuhn = Hof 1, Tisch 15, Nummer 7
|
||||||
|
|
||||||
[16]
|
[16]
|
||||||
Anton Brandt = Hof 1, Tisch 16, Nummer 1
|
Anton Brandt = Hof 1, Tisch 16, Nummer 1
|
||||||
Elias Schwarz = Hof 1, Tisch 16, Nummer 2
|
Leni Kuhn = Hof 1, Tisch 16, Nummer 2
|
||||||
Emil Sommer = Hof 1, Tisch 16, Nummer 3
|
Emil Sommer = Hof 1, Tisch 16, Nummer 3
|
||||||
Ida Sommer = Hof 1, Tisch 16, Nummer 4
|
Ida Sommer = Hof 1, Tisch 16, Nummer 4
|
||||||
Theo Sommer = Hof 1, Tisch 16, Nummer 5
|
Max Sommer = Hof 1, Tisch 16, Nummer 5
|
||||||
Leni Kuhn = Hof 1, Tisch 16, Nummer 6
|
Theo Sommer = Hof 1, Tisch 16, Nummer 6
|
||||||
Frieda Brandt = Hof 1, Tisch 16, Nummer 7
|
Mila Meyer = Hof 1, Tisch 16, Nummer 7
|
||||||
Matteo Kraus = Hof 1, Tisch 16, Nummer 8
|
Matteo Kraus = Hof 1, Tisch 16, Nummer 8
|
||||||
Greta Brandt = Hof 1, Tisch 16, Nummer 9
|
Elias Schwarz = Hof 1, Tisch 16, Nummer 9
|
||||||
Max Sommer = Hof 1, Tisch 16, Nummer 10
|
Felix Brandt = Hof 1, Tisch 16, Nummer 10
|
||||||
Liam Schwarz = Hof 1, Tisch 16, Nummer 11
|
Liam Schwarz = Hof 1, Tisch 16, Nummer 11
|
||||||
Mila Meyer = Hof 1, Tisch 16, Nummer 12
|
Frieda Brandt = Hof 1, Tisch 16, Nummer 12
|
||||||
Felix Brandt = Hof 1, Tisch 16, Nummer 13
|
Greta Brandt = Hof 1, Tisch 16, Nummer 13
|
||||||
|
|
||||||
[17]
|
[17]
|
||||||
Max Vogel = Hof 1, Tisch 17, Nummer 1
|
Max Vogel = Hof 1, Tisch 17, Nummer 1
|
||||||
Ben Brandt = Hof 1, Tisch 17, Nummer 2
|
Ida Meyer = Hof 1, Tisch 17, Nummer 2
|
||||||
Paul Brandt = Hof 1, Tisch 17, Nummer 3
|
Paul Brandt = Hof 1, Tisch 17, Nummer 3
|
||||||
Ida Meyer = Hof 1, Tisch 17, Nummer 4
|
Anton Meyer = Hof 1, Tisch 17, Nummer 4
|
||||||
Anton Vogel = Hof 1, Tisch 17, Nummer 5
|
Ben Brandt = Hof 1, Tisch 17, Nummer 5
|
||||||
Anton Meyer = Hof 1, Tisch 17, Nummer 6
|
Anton Vogel = Hof 1, Tisch 17, Nummer 6
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 78 KiB |
@@ -5,21 +5,21 @@
|
|||||||
<line x1="60" y1="60" x2="60" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
<line x1="60" y1="60" x2="60" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
||||||
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
||||||
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="394.0" text-anchor="end" font-size="11" fill="#666">-1164</text>
|
<text x="52" y="394.0" text-anchor="end" font-size="11" fill="#666">-1209</text>
|
||||||
<line x1="60" y1="324.0" x2="840" y2="324.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="324.0" x2="840" y2="324.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="328.0" text-anchor="end" font-size="11" fill="#666">-1050</text>
|
<text x="52" y="328.0" text-anchor="end" font-size="11" fill="#666">-1084</text>
|
||||||
<line x1="60" y1="258.0" x2="840" y2="258.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="258.0" x2="840" y2="258.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="262.0" text-anchor="end" font-size="11" fill="#666">-936</text>
|
<text x="52" y="262.0" text-anchor="end" font-size="11" fill="#666">-959</text>
|
||||||
<line x1="60" y1="192.0" x2="840" y2="192.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="192.0" x2="840" y2="192.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="196.0" text-anchor="end" font-size="11" fill="#666">-822</text>
|
<text x="52" y="196.0" text-anchor="end" font-size="11" fill="#666">-835</text>
|
||||||
<line x1="60" y1="126.0" x2="840" y2="126.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="126.0" x2="840" y2="126.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="130.0" text-anchor="end" font-size="11" fill="#666">-708</text>
|
<text x="52" y="130.0" text-anchor="end" font-size="11" fill="#666">-710</text>
|
||||||
<line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-594</text>
|
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-585</text>
|
||||||
<text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
|
<text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
|
||||||
<polyline points="60.0,121.1 103.3,76.2 146.7,76.2 190.0,76.2 233.3,67.8 276.7,67.8 320.0,67.8 363.3,60.0 406.7,60.0 450.0,60.0 493.3,60.0 536.7,60.0 580.0,60.0 623.3,60.0 666.7,60.0 710.0,60.0 753.3,60.0 796.7,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
|
<polyline points="60.0,148.4 97.1,114.1 134.3,114.1 171.4,114.1 208.6,94.7 245.7,94.7 282.9,94.7 320.0,74.0 357.1,74.0 394.3,74.0 431.4,60.5 468.6,60.5 505.7,60.5 542.9,60.0 580.0,60.0 617.1,60.0 654.3,60.0 691.4,60.0 728.6,60.0 765.7,60.0 802.9,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
|
||||||
<polyline points="60.0,266.7 103.3,215.0 146.7,232.2 190.0,149.5 233.3,128.2 276.7,135.3 320.0,96.3 363.3,82.8 406.7,87.3 450.0,68.9 493.3,66.8 536.7,67.5 580.0,60.4 623.3,60.4 666.7,60.4 710.0,60.0 753.3,60.0 796.7,60.0 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
|
<polyline points="60.0,254.4 97.1,213.4 134.3,227.0 171.4,159.2 208.6,137.3 245.7,144.6 282.9,115.4 320.0,98.2 357.1,104.0 394.3,85.8 431.4,77.2 468.6,80.1 505.7,71.3 542.9,71.0 580.0,71.1 617.1,66.0 654.3,66.0 691.4,66.0 728.6,60.8 765.7,60.8 802.9,60.8 840.0,60.1" fill="none" stroke="#c08a2d" stroke-width="2"/>
|
||||||
<polyline points="60.0,390.0 103.3,355.9 146.7,390.0 190.0,188.5 233.3,196.7 276.7,196.7 320.0,117.6 363.3,113.0 406.7,117.6 450.0,76.2 493.3,78.2 536.7,78.2 580.0,61.0 623.3,61.0 666.7,61.0 710.0,60.0 753.3,60.0 796.7,60.0 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
|
<polyline points="60.0,390.0 97.1,328.5 134.3,390.0 171.4,190.5 208.6,177.5 245.7,190.5 282.9,129.1 320.0,129.3 357.1,129.3 394.3,94.7 431.4,94.8 468.6,94.8 505.7,74.0 542.9,76.1 580.0,76.1 617.1,69.4 654.3,69.4 691.4,69.4 728.6,66.2 765.7,66.2 802.9,66.2 840.0,60.5" fill="none" stroke="#a03030" stroke-width="2"/>
|
||||||
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
|
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
|
||||||
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
|
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
|
||||||
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
|
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
|
||||||
@@ -35,25 +35,28 @@
|
|||||||
<text x="52" y="519.0" text-anchor="end" font-size="11" fill="#666">60</text>
|
<text x="52" y="519.0" text-anchor="end" font-size="11" fill="#666">60</text>
|
||||||
<line x1="60" y1="440.0" x2="840" y2="440.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="440.0" x2="840" y2="440.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="444.0" text-anchor="end" font-size="11" fill="#666">120</text>
|
<text x="52" y="444.0" text-anchor="end" font-size="11" fill="#666">120</text>
|
||||||
<polyline points="60.0,540.0 103.3,490.0 146.7,440.0 190.0,547.5 233.3,505.0 276.7,462.5 320.0,555.0 363.3,520.0 406.7,485.0 450.0,561.2 493.3,532.5 536.7,503.8 580.0,566.2 623.3,542.5 666.7,518.8 710.0,570.0 753.3,550.0 796.7,530.0 840.0,573.8" fill="none" stroke="#4060a0" stroke-width="2"/>
|
<polyline points="60.0,540.0 97.1,490.0 134.3,440.0 171.4,547.5 208.6,505.0 245.7,462.5 282.9,555.0 320.0,520.0 357.1,485.0 394.3,561.2 431.4,532.5 468.6,503.8 505.7,566.2 542.9,542.5 580.0,518.8 617.1,570.0 654.3,550.0 691.4,530.0 728.6,573.8 765.7,557.5 802.9,541.2 840.0,576.2" fill="none" stroke="#4060a0" stroke-width="2"/>
|
||||||
<text x="60.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">e</text>
|
<text x="60.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">e</text>
|
||||||
<text x="103.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
<text x="97.1" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
||||||
<text x="146.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
<text x="134.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
||||||
<text x="190.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
<text x="171.4" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
||||||
<text x="233.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
<text x="208.6" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
||||||
<text x="276.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
<text x="245.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
||||||
<text x="320.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
<text x="282.9" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
||||||
<text x="363.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
<text x="320.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
||||||
<text x="406.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
<text x="357.1" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
||||||
<text x="450.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
<text x="394.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
||||||
<text x="493.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
<text x="431.4" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
||||||
<text x="536.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
<text x="468.6" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
||||||
<text x="580.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
<text x="505.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
||||||
<text x="623.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
<text x="542.9" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
||||||
<text x="666.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
<text x="580.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
||||||
<text x="710.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
<text x="617.1" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
||||||
<text x="753.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
<text x="654.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
||||||
<text x="796.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
<text x="691.4" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
||||||
|
<text x="728.6" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
||||||
|
<text x="765.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
|
||||||
|
<text x="802.9" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
|
||||||
<text x="840.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
<text x="840.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
|
||||||
<text x="450" y="638" text-anchor="middle" font-size="12" fill="#333">Zyklus-Aktion (Zeit)</text>
|
<text x="450" y="638" text-anchor="middle" font-size="12" fill="#333">Zyklus-Aktion (Zeit)</text>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.8 KiB |
@@ -1,300 +1,300 @@
|
|||||||
Aksoy, Luca, = Hof 1, Tisch 35, Nummer 2
|
Aksoy, Luca, = Hof 1, Tisch 22, Nummer 3
|
||||||
Aksoy, Marie, = Hof 1, Tisch 34, Nummer 4
|
Aksoy, Marie, = Hof 1, Tisch 22, Nummer 2
|
||||||
Aksoy, Marija, = Hof 2, Tisch 78, Nummer 3
|
Aksoy, Marija, = Hof 2, Tisch 75, Nummer 2
|
||||||
Aksoy, Michael, Dr. = Hof 2, Tisch 52, Nummer 4
|
Aksoy, Michael, Dr. = Hof 2, Tisch 49, Nummer 4
|
||||||
Aksoy, Nadine, = Hof 1, Tisch 34, Nummer 3
|
Aksoy, Nadine, = Hof 1, Tisch 31, Nummer 2
|
||||||
Aksoy, Nicole, = Hof 2, Tisch 71, Nummer 4
|
Aksoy, Nicole, = Hof 2, Tisch 56, Nummer 3
|
||||||
Aksoy, Sergej, = Hof 1, Tisch 34, Nummer 2
|
Aksoy, Sergej, = Hof 1, Tisch 31, Nummer 4
|
||||||
Aksoy, Sofia, = Hof 1, Tisch 35, Nummer 3
|
Aksoy, Sofia, = Hof 1, Tisch 31, Nummer 3
|
||||||
Aksoy, Thomas, = Hof 1, Tisch 35, Nummer 4
|
Aksoy, Thomas, = Hof 1, Tisch 22, Nummer 4
|
||||||
Albrecht, Andreas, = Hof 1, Tisch 36, Nummer 2
|
Albrecht, Andreas, = Hof 1, Tisch 8, Nummer 3
|
||||||
Albrecht, Emre, Prof. Dr. = Hof 1, Tisch 19, Nummer 3
|
Albrecht, Emre, Prof. Dr. = Hof 2, Tisch 80, Nummer 4
|
||||||
Albrecht, Sarah, = Hof 1, Tisch 36, Nummer 4
|
Albrecht, Sarah, = Hof 1, Tisch 8, Nummer 5
|
||||||
Albrecht, Yusuf, Prof. Dr. = Hof 1, Tisch 29, Nummer 3
|
Albrecht, Yusuf, Prof. Dr. = Hof 1, Tisch 24, Nummer 3
|
||||||
Arnold, Christian, = Hof 1, Tisch 39, Nummer 4
|
Arnold, Christian, = Hof 2, Tisch 46, Nummer 2
|
||||||
Arnold, Jennifer, = Hof 1, Tisch 39, Nummer 2
|
Arnold, Jennifer, = Hof 2, Tisch 46, Nummer 3
|
||||||
Arnold, Jennifer, Dr. = Hof 1, Tisch 19, Nummer 4
|
Arnold, Jennifer, Dr. = Hof 2, Tisch 80, Nummer 5
|
||||||
Arnold, Leni, = Hof 1, Tisch 32, Nummer 5
|
Arnold, Leni, = Hof 2, Tisch 57, Nummer 3
|
||||||
Arnold, Mila, = Hof 1, Tisch 39, Nummer 3
|
Arnold, Mila, = Hof 2, Tisch 46, Nummer 4
|
||||||
Arnold, Nadine, = Hof 2, Tisch 75, Nummer 3
|
Arnold, Nadine, = Hof 2, Tisch 67, Nummer 3
|
||||||
Arnold, Patrick, = Hof 1, Tisch 32, Nummer 4
|
Arnold, Patrick, = Hof 2, Tisch 57, Nummer 2
|
||||||
Barth, Lina, = Hof 2, Tisch 59, Nummer 4
|
Barth, Lina, = Hof 2, Tisch 63, Nummer 4
|
||||||
Barth, Markus, = Hof 1, Tisch 30, Nummer 3
|
Barth, Markus, = Hof 1, Tisch 26, Nummer 3
|
||||||
Barth, Nadine, = Hof 2, Tisch 59, Nummer 3
|
Barth, Nadine, = Hof 2, Tisch 63, Nummer 3
|
||||||
Barth, Patrick, = Hof 2, Tisch 59, Nummer 2
|
Barth, Patrick, = Hof 2, Tisch 63, Nummer 2
|
||||||
Barth, Timo, = Hof 2, Tisch 59, Nummer 5
|
Barth, Timo, = Hof 2, Tisch 63, Nummer 5
|
||||||
Bauer, Dragana, = Hof 1, Tisch 41, Nummer 4
|
Bauer, Dragana, = Hof 1, Tisch 42, Nummer 2
|
||||||
Bauer, Yusuf, = Hof 1, Tisch 3, Nummer 5
|
Bauer, Yusuf, = Hof 1, Tisch 2, Nummer 5
|
||||||
Becker, Jan, = Hof 2, Tisch 54, Nummer 2
|
Becker, Jan, = Hof 2, Tisch 77, Nummer 4
|
||||||
Becker, Marija, = Hof 2, Tisch 47, Nummer 2
|
Becker, Marija, = Hof 2, Tisch 62, Nummer 4
|
||||||
Becker, Nicole, = Hof 2, Tisch 54, Nummer 3
|
Becker, Nicole, = Hof 2, Tisch 77, Nummer 2
|
||||||
Becker, Sandra, = Hof 2, Tisch 54, Nummer 4
|
Becker, Sandra, = Hof 2, Tisch 77, Nummer 3
|
||||||
Berger, Andreas, = Hof 1, Tisch 36, Nummer 5
|
Berger, Andreas, = Hof 1, Tisch 32, Nummer 5
|
||||||
Berger, Anton, = Hof 1, Tisch 28, Nummer 5
|
Berger, Anton, = Hof 1, Tisch 23, Nummer 4
|
||||||
Berger, Jennifer, = Hof 1, Tisch 28, Nummer 2
|
Berger, Jennifer, = Hof 1, Tisch 32, Nummer 4
|
||||||
Berger, Layla, = Hof 1, Tisch 36, Nummer 3
|
Berger, Layla, = Hof 1, Tisch 23, Nummer 3
|
||||||
Berger, Nadine, Dr. = Hof 1, Tisch 1, Nummer 3
|
Berger, Nadine, Dr. = Hof 1, Tisch 12, Nummer 2
|
||||||
Berger, Stefan, = Hof 1, Tisch 28, Nummer 4
|
Berger, Stefan, = Hof 1, Tisch 32, Nummer 3
|
||||||
Berger, Svenja, = Hof 1, Tisch 28, Nummer 3
|
Berger, Svenja, = Hof 1, Tisch 32, Nummer 2
|
||||||
Bianchi, Jan, Dr. = Hof 1, Tisch 3, Nummer 2
|
Bianchi, Jan, Dr. = Hof 1, Tisch 2, Nummer 2
|
||||||
Bianchi, Mia, = Hof 2, Tisch 46, Nummer 3
|
Bianchi, Mia, = Hof 2, Tisch 52, Nummer 2
|
||||||
Bianchi, Sandra, = Hof 2, Tisch 46, Nummer 2
|
Bianchi, Sandra, = Hof 2, Tisch 52, Nummer 3
|
||||||
Bianchi, Thomas, = Hof 1, Tisch 20, Nummer 3
|
Bianchi, Thomas, = Hof 2, Tisch 52, Nummer 4
|
||||||
Bianchi, Thomas, = Hof 2, Tisch 46, Nummer 4
|
Bianchi, Thomas, = Hof 2, Tisch 72, Nummer 2
|
||||||
Braun, Christian, = Hof 1, Tisch 37, Nummer 4
|
Braun, Christian, = Hof 1, Tisch 38, Nummer 2
|
||||||
Braun, Dragana, = Hof 1, Tisch 44, Nummer 3
|
Braun, Dragana, = Hof 1, Tisch 38, Nummer 3
|
||||||
Braun, Jan, = Hof 1, Tisch 44, Nummer 2
|
Braun, Jan, = Hof 1, Tisch 45, Nummer 4
|
||||||
Braun, Julia, = Hof 1, Tisch 37, Nummer 2
|
Braun, Julia, = Hof 1, Tisch 38, Nummer 4
|
||||||
Braun, Milan, = Hof 1, Tisch 37, Nummer 3
|
Braun, Milan, = Hof 1, Tisch 45, Nummer 3
|
||||||
Braun, Nadine, = Hof 1, Tisch 44, Nummer 4
|
Braun, Nadine, = Hof 1, Tisch 45, Nummer 2
|
||||||
Busch, Emre, = Hof 2, Tisch 69, Nummer 3
|
Busch, Emre, = Hof 2, Tisch 61, Nummer 2
|
||||||
Busch, Marie, = Hof 2, Tisch 69, Nummer 4
|
Busch, Marie, = Hof 2, Tisch 61, Nummer 4
|
||||||
Busch, Michael, = Hof 2, Tisch 69, Nummer 2
|
Busch, Michael, = Hof 2, Tisch 61, Nummer 3
|
||||||
Busch, Olga, = Hof 2, Tisch 69, Nummer 5
|
Busch, Olga, = Hof 2, Tisch 61, Nummer 5
|
||||||
Busch, Patrick, = Hof 2, Tisch 51, Nummer 2
|
Busch, Patrick, = Hof 2, Tisch 48, Nummer 4
|
||||||
Celik, Elif, = Hof 1, Tisch 33, Nummer 2
|
Celik, Elif, = Hof 1, Tisch 24, Nummer 2
|
||||||
Celik, Patrick, = Hof 1, Tisch 33, Nummer 4
|
Celik, Patrick, = Hof 1, Tisch 24, Nummer 4
|
||||||
Dallmann, Charlotte, = Hof 1, Tisch 7, Nummer 5
|
Dallmann, Charlotte, = Hof 1, Tisch 7, Nummer 2
|
||||||
Dallmann, Heinrich, = Hof 1, Tisch 7, Nummer 3
|
Dallmann, Heinrich, = Hof 1, Tisch 7, Nummer 5
|
||||||
Dallmann, Margarete, = Hof 1, Tisch 7, Nummer 4
|
Dallmann, Margarete, = Hof 1, Tisch 7, Nummer 4
|
||||||
Dallmann, Maximilian, = Hof 1, Tisch 7, Nummer 2
|
Dallmann, Maximilian, = Hof 1, Tisch 7, Nummer 3
|
||||||
Demir, Sandra, Dr. = Hof 1, Tisch 33, Nummer 5
|
Demir, Sandra, Dr. = Hof 1, Tisch 33, Nummer 5
|
||||||
Dietrich, Dragana, Prof. Dr. = Hof 2, Tisch 51, Nummer 4
|
Dietrich, Dragana, Prof. Dr. = Hof 2, Tisch 49, Nummer 3
|
||||||
Dietrich, Jennifer, = Hof 1, Tisch 14, Nummer 3
|
Dietrich, Jennifer, = Hof 1, Tisch 18, Nummer 4
|
||||||
Dietrich, Marco, = Hof 1, Tisch 14, Nummer 4
|
Dietrich, Marco, = Hof 1, Tisch 18, Nummer 3
|
||||||
Dietrich, Sofia, = Hof 1, Tisch 14, Nummer 2
|
Dietrich, Sofia, = Hof 1, Tisch 18, Nummer 2
|
||||||
Engel, Anja, = Hof 2, Tisch 82, Nummer 3
|
Engel, Anja, = Hof 2, Tisch 87, Nummer 4
|
||||||
Engel, Anton, = Hof 2, Tisch 88, Nummer 4
|
Engel, Anton, = Hof 2, Tisch 80, Nummer 3
|
||||||
Engel, Julia, = Hof 2, Tisch 82, Nummer 2
|
Engel, Julia, = Hof 2, Tisch 80, Nummer 2
|
||||||
Engel, Nicole, = Hof 2, Tisch 88, Nummer 3
|
Engel, Nicole, = Hof 2, Tisch 87, Nummer 2
|
||||||
Engel, Yusuf, = Hof 2, Tisch 82, Nummer 4
|
Engel, Yusuf, = Hof 2, Tisch 87, Nummer 3
|
||||||
Esposito, Jan, Dr. = Hof 1, Tisch 13, Nummer 2
|
Esposito, Jan, Dr. = Hof 1, Tisch 15, Nummer 4
|
||||||
Esposito, Yusuf, Prof. Dr. = Hof 2, Tisch 47, Nummer 3
|
Esposito, Yusuf, Prof. Dr. = Hof 2, Tisch 62, Nummer 3
|
||||||
Frank, Dennis, = Hof 1, Tisch 21, Nummer 3
|
Frank, Dennis, = Hof 1, Tisch 43, Nummer 2
|
||||||
Frank, Finn, = Hof 1, Tisch 10, Nummer 3
|
Frank, Finn, = Hof 1, Tisch 44, Nummer 4
|
||||||
Frank, Lena, = Hof 1, Tisch 10, Nummer 2
|
Frank, Lena, = Hof 1, Tisch 44, Nummer 3
|
||||||
Frank, Marie, = Hof 1, Tisch 21, Nummer 5
|
Frank, Marie, = Hof 1, Tisch 43, Nummer 5
|
||||||
Frank, Nadine, = Hof 1, Tisch 10, Nummer 4
|
Frank, Nadine, = Hof 1, Tisch 44, Nummer 2
|
||||||
Franke, Amira, = Hof 2, Tisch 81, Nummer 2
|
Franke, Amira, = Hof 1, Tisch 20, Nummer 2
|
||||||
Franke, Julia, = Hof 2, Tisch 80, Nummer 4
|
Franke, Julia, = Hof 1, Tisch 37, Nummer 3
|
||||||
Franke, Marco, = Hof 2, Tisch 80, Nummer 3
|
Franke, Marco, = Hof 1, Tisch 20, Nummer 4
|
||||||
Franke, Michael, = Hof 2, Tisch 81, Nummer 3
|
Franke, Michael, = Hof 1, Tisch 37, Nummer 2
|
||||||
Franke, Olga, = Hof 2, Tisch 80, Nummer 2
|
Franke, Olga, = Hof 1, Tisch 20, Nummer 3
|
||||||
Freifrau von Waldeck, Antonia, = Hof 1, Tisch 6, Nummer 5
|
Freifrau von Waldeck, Antonia, = Hof 1, Tisch 6, Nummer 2
|
||||||
Freiherr von Waldeck, Konstantin, Dr. = Hof 1, Tisch 6, Nummer 2
|
Freiherr von Waldeck, Konstantin, Dr. = Hof 1, Tisch 6, Nummer 4
|
||||||
Grothe, Alexander, Dr. h.c. = Hof 1, Tisch 5, Nummer 4
|
Grothe, Alexander, Dr. h.c. = Hof 1, Tisch 5, Nummer 5
|
||||||
Grothe, Beate, = Hof 1, Tisch 5, Nummer 2
|
Grothe, Beate, = Hof 1, Tisch 5, Nummer 3
|
||||||
Haas, Jennifer, Dr. = Hof 1, Tisch 30, Nummer 2
|
Haas, Jennifer, Dr. = Hof 1, Tisch 26, Nummer 4
|
||||||
Haas, Patrick, = Hof 1, Tisch 41, Nummer 3
|
Haas, Patrick, = Hof 1, Tisch 42, Nummer 5
|
||||||
Hansen, Giovanna, = Hof 1, Tisch 22, Nummer 2
|
Hansen, Giovanna, = Hof 1, Tisch 29, Nummer 2
|
||||||
Hansen, Markus, = Hof 1, Tisch 22, Nummer 3
|
Hansen, Markus, = Hof 1, Tisch 29, Nummer 3
|
||||||
Hansen, Nicole, Dr. = Hof 1, Tisch 42, Nummer 4
|
Hansen, Nicole, Dr. = Hof 1, Tisch 43, Nummer 4
|
||||||
Hansen, Olga, = Hof 1, Tisch 22, Nummer 4
|
Hansen, Olga, = Hof 1, Tisch 29, Nummer 4
|
||||||
Hansen, Thomas, = Hof 1, Tisch 2, Nummer 3
|
Hansen, Thomas, = Hof 1, Tisch 15, Nummer 3
|
||||||
Hartmann, Deniz, = Hof 2, Tisch 87, Nummer 2
|
Hartmann, Deniz, = Hof 2, Tisch 84, Nummer 2
|
||||||
Hartmann, Marija, = Hof 2, Tisch 88, Nummer 2
|
Hartmann, Marija, = Hof 2, Tisch 84, Nummer 3
|
||||||
Hartmann, Nadine, = Hof 2, Tisch 88, Nummer 5
|
Hartmann, Nadine, = Hof 2, Tisch 84, Nummer 4
|
||||||
Hartmann, Olga, = Hof 2, Tisch 87, Nummer 3
|
Hartmann, Olga, = Hof 2, Tisch 85, Nummer 5
|
||||||
Hartmann, Thomas, = Hof 2, Tisch 87, Nummer 4
|
Hartmann, Thomas, = Hof 2, Tisch 85, Nummer 3
|
||||||
Hoffmann, Emre, = Hof 2, Tisch 51, Nummer 3
|
Hoffmann, Emre, = Hof 2, Tisch 49, Nummer 5
|
||||||
Hoffmann, Patrick, Prof. Dr. = Hof 2, Tisch 75, Nummer 4
|
Hoffmann, Patrick, Prof. Dr. = Hof 2, Tisch 67, Nummer 2
|
||||||
Hoffmann, Thomas, Dr. = Hof 2, Tisch 61, Nummer 3
|
Hoffmann, Thomas, Dr. = Hof 2, Tisch 50, Nummer 3
|
||||||
Horn, Kathrin, = Hof 2, Tisch 85, Nummer 5
|
Horn, Kathrin, = Hof 2, Tisch 78, Nummer 4
|
||||||
Horn, Layla, = Hof 2, Tisch 85, Nummer 2
|
Horn, Layla, = Hof 2, Tisch 78, Nummer 5
|
||||||
Horn, Leon, = Hof 2, Tisch 85, Nummer 3
|
Horn, Leon, = Hof 2, Tisch 78, Nummer 2
|
||||||
Horn, Michael, = Hof 2, Tisch 85, Nummer 4
|
Horn, Michael, = Hof 2, Tisch 78, Nummer 3
|
||||||
Kaya, Christina, = Hof 2, Tisch 48, Nummer 3
|
Kaya, Christina, = Hof 2, Tisch 69, Nummer 3
|
||||||
Kaya, Luca, = Hof 2, Tisch 48, Nummer 2
|
Kaya, Luca, = Hof 2, Tisch 69, Nummer 4
|
||||||
Kaya, Nicole, = Hof 2, Tisch 48, Nummer 4
|
Kaya, Nicole, = Hof 2, Tisch 69, Nummer 2
|
||||||
Kaya, Patrick, Dr. = Hof 1, Tisch 4, Nummer 2
|
Kaya, Patrick, Dr. = Hof 1, Tisch 2, Nummer 4
|
||||||
Kaya, Timo, Prof. Dr. = Hof 1, Tisch 33, Nummer 3
|
Kaya, Timo, Prof. Dr. = Hof 1, Tisch 33, Nummer 4
|
||||||
Kessler, Ferdinand, Dr. = Hof 1, Tisch 5, Nummer 5
|
Kessler, Ferdinand, Dr. = Hof 1, Tisch 5, Nummer 4
|
||||||
Kessler, Viktoria, = Hof 1, Tisch 5, Nummer 3
|
Kessler, Viktoria, = Hof 1, Tisch 5, Nummer 2
|
||||||
Klein, Emre, = Hof 1, Tisch 4, Nummer 4
|
Klein, Emre, = Hof 1, Tisch 1, Nummer 3
|
||||||
Klein, Lina, = Hof 2, Tisch 64, Nummer 2
|
Klein, Lina, = Hof 2, Tisch 82, Nummer 3
|
||||||
Klein, Markus, = Hof 2, Tisch 71, Nummer 3
|
Klein, Markus, = Hof 2, Tisch 56, Nummer 2
|
||||||
Klein, Milan, = Hof 2, Tisch 64, Nummer 4
|
Klein, Milan, = Hof 2, Tisch 82, Nummer 2
|
||||||
Klein, Olga, Dr. = Hof 1, Tisch 19, Nummer 2
|
Klein, Olga, Dr. = Hof 2, Tisch 72, Nummer 4
|
||||||
Klein, Stefanie, = Hof 2, Tisch 64, Nummer 3
|
Klein, Stefanie, = Hof 2, Tisch 82, Nummer 4
|
||||||
Koch, Emil, = Hof 1, Tisch 42, Nummer 2
|
Koch, Emil, = Hof 2, Tisch 48, Nummer 5
|
||||||
Koch, Jan, = Hof 1, Tisch 43, Nummer 2
|
Koch, Jan, = Hof 2, Tisch 47, Nummer 4
|
||||||
Koch, Kathrin, Dr. = Hof 2, Tisch 67, Nummer 2
|
Koch, Kathrin, Dr. = Hof 1, Tisch 37, Nummer 4
|
||||||
Koch, Marie, = Hof 1, Tisch 43, Nummer 4
|
Koch, Marie, = Hof 2, Tisch 48, Nummer 3
|
||||||
Koch, Michael, = Hof 1, Tisch 43, Nummer 3
|
Koch, Michael, = Hof 2, Tisch 47, Nummer 2
|
||||||
Koch, Olga, = Hof 1, Tisch 42, Nummer 3
|
Koch, Olga, = Hof 2, Tisch 47, Nummer 3
|
||||||
Koch, Sarah, = Hof 1, Tisch 43, Nummer 5
|
Koch, Sarah, = Hof 2, Tisch 47, Nummer 5
|
||||||
Kovac, Anja, = Hof 1, Tisch 21, Nummer 2
|
Kovac, Anja, = Hof 1, Tisch 27, Nummer 2
|
||||||
Kovac, Henry, = Hof 1, Tisch 11, Nummer 3
|
Kovac, Henry, = Hof 1, Tisch 27, Nummer 3
|
||||||
Kovac, Lena, = Hof 1, Tisch 21, Nummer 4
|
Kovac, Lena, = Hof 1, Tisch 27, Nummer 4
|
||||||
Kovac, Luca, = Hof 2, Tisch 72, Nummer 4
|
Kovac, Luca, = Hof 2, Tisch 65, Nummer 3
|
||||||
Kovac, Marco, = Hof 1, Tisch 11, Nummer 4
|
Kovac, Marco, = Hof 1, Tisch 35, Nummer 4
|
||||||
Kovac, Marija, = Hof 1, Tisch 11, Nummer 5
|
Kovac, Marija, = Hof 1, Tisch 35, Nummer 2
|
||||||
Kovac, Matthias, = Hof 2, Tisch 47, Nummer 4
|
Kovac, Matthias, = Hof 2, Tisch 62, Nummer 2
|
||||||
Kovac, Tobias, = Hof 1, Tisch 11, Nummer 2
|
Kovac, Tobias, = Hof 1, Tisch 35, Nummer 3
|
||||||
Kraus, Markus, = Hof 1, Tisch 9, Nummer 3
|
Kraus, Markus, = Hof 1, Tisch 10, Nummer 2
|
||||||
Kraus, Patrick, Dr. = Hof 2, Tisch 58, Nummer 3
|
Kraus, Patrick, Dr. = Hof 2, Tisch 64, Nummer 2
|
||||||
Krause, Andreas, = Hof 2, Tisch 83, Nummer 4
|
Krause, Andreas, = Hof 2, Tisch 83, Nummer 5
|
||||||
Krause, Arda, = Hof 2, Tisch 83, Nummer 3
|
Krause, Arda, = Hof 2, Tisch 83, Nummer 4
|
||||||
Krause, Christina, Dr. = Hof 1, Tisch 3, Nummer 4
|
Krause, Christina, Dr. = Hof 1, Tisch 2, Nummer 3
|
||||||
Krause, Daniel, = Hof 2, Tisch 71, Nummer 2
|
Krause, Daniel, = Hof 2, Tisch 56, Nummer 4
|
||||||
Krause, Dragana, Dr. = Hof 2, Tisch 62, Nummer 3
|
Krause, Dragana, Dr. = Hof 2, Tisch 65, Nummer 5
|
||||||
Krause, Emma, = Hof 2, Tisch 83, Nummer 2
|
Krause, Emma, = Hof 2, Tisch 83, Nummer 3
|
||||||
Krause, Julia, = Hof 2, Tisch 83, Nummer 5
|
Krause, Julia, = Hof 2, Tisch 83, Nummer 2
|
||||||
Krause, Matthias, = Hof 2, Tisch 58, Nummer 4
|
Krause, Matthias, = Hof 2, Tisch 54, Nummer 5
|
||||||
Krause, Thomas, = Hof 1, Tisch 41, Nummer 5
|
Krause, Thomas, = Hof 1, Tisch 42, Nummer 3
|
||||||
Kuhn, Julia, Dr. = Hof 2, Tisch 57, Nummer 3
|
Kuhn, Julia, Dr. = Hof 1, Tisch 37, Nummer 5
|
||||||
Lange, Dragana, = Hof 2, Tisch 81, Nummer 4
|
Lange, Dragana, = Hof 2, Tisch 86, Nummer 4
|
||||||
Lange, Jan, = Hof 2, Tisch 73, Nummer 4
|
Lange, Jan, = Hof 2, Tisch 86, Nummer 3
|
||||||
Lange, Michael, = Hof 2, Tisch 73, Nummer 2
|
Lange, Michael, = Hof 2, Tisch 85, Nummer 2
|
||||||
Lange, Sergej, = Hof 2, Tisch 52, Nummer 3
|
Lange, Sergej, = Hof 2, Tisch 49, Nummer 2
|
||||||
Lange, Sofia, = Hof 2, Tisch 73, Nummer 3
|
Lange, Sofia, = Hof 2, Tisch 85, Nummer 4
|
||||||
Lange, Svenja, = Hof 2, Tisch 81, Nummer 5
|
Lange, Svenja, = Hof 2, Tisch 86, Nummer 2
|
||||||
Lehmann, Giovanna, = Hof 1, Tisch 17, Nummer 3
|
Lehmann, Giovanna, = Hof 1, Tisch 19, Nummer 3
|
||||||
Lehmann, Layla, = Hof 1, Tisch 16, Nummer 4
|
Lehmann, Layla, = Hof 1, Tisch 8, Nummer 4
|
||||||
Lehmann, Markus, = Hof 1, Tisch 17, Nummer 4
|
Lehmann, Markus, = Hof 1, Tisch 19, Nummer 2
|
||||||
Lehmann, Milan, = Hof 1, Tisch 16, Nummer 2
|
Lehmann, Milan, = Hof 1, Tisch 8, Nummer 2
|
||||||
Lehmann, Nicole, = Hof 1, Tisch 17, Nummer 2
|
Lehmann, Nicole, = Hof 1, Tisch 19, Nummer 5
|
||||||
Lehmann, Patrick, = Hof 1, Tisch 1, Nummer 5
|
Lehmann, Patrick, = Hof 1, Tisch 12, Nummer 3
|
||||||
Lehmann, Thomas, = Hof 1, Tisch 16, Nummer 3
|
Lehmann, Thomas, = Hof 1, Tisch 19, Nummer 4
|
||||||
Ludwig, Aylin, Dr. = Hof 2, Tisch 58, Nummer 5
|
Ludwig, Aylin, Dr. = Hof 2, Tisch 54, Nummer 2
|
||||||
Ludwig, Elias, = Hof 2, Tisch 49, Nummer 3
|
Ludwig, Elias, = Hof 2, Tisch 51, Nummer 3
|
||||||
Ludwig, Elif, = Hof 2, Tisch 49, Nummer 5
|
Ludwig, Elif, = Hof 2, Tisch 51, Nummer 2
|
||||||
Ludwig, Emre, = Hof 2, Tisch 49, Nummer 4
|
Ludwig, Emre, = Hof 2, Tisch 51, Nummer 5
|
||||||
Ludwig, Emre, Prof. Dr. = Hof 2, Tisch 71, Nummer 5
|
Ludwig, Emre, Prof. Dr. = Hof 2, Tisch 56, Nummer 5
|
||||||
Ludwig, Giovanna, = Hof 2, Tisch 49, Nummer 2
|
Ludwig, Giovanna, = Hof 2, Tisch 51, Nummer 4
|
||||||
Maier, Arda, = Hof 2, Tisch 55, Nummer 2
|
Maier, Arda, = Hof 2, Tisch 55, Nummer 4
|
||||||
Maier, Christian, = Hof 2, Tisch 55, Nummer 5
|
Maier, Christian, = Hof 2, Tisch 55, Nummer 3
|
||||||
Maier, Olga, = Hof 2, Tisch 55, Nummer 3
|
Maier, Olga, = Hof 2, Tisch 55, Nummer 2
|
||||||
Maier, Sarah, = Hof 2, Tisch 55, Nummer 4
|
Maier, Sarah, = Hof 2, Tisch 55, Nummer 5
|
||||||
Neumann, Jennifer, = Hof 1, Tisch 18, Nummer 5
|
Neumann, Jennifer, = Hof 2, Tisch 74, Nummer 4
|
||||||
Neumann, Lina, = Hof 1, Tisch 18, Nummer 3
|
Neumann, Lina, = Hof 2, Tisch 74, Nummer 5
|
||||||
Neumann, Matteo, = Hof 1, Tisch 18, Nummer 4
|
Neumann, Matteo, = Hof 2, Tisch 74, Nummer 3
|
||||||
Neumann, Thomas, = Hof 1, Tisch 18, Nummer 2
|
Neumann, Thomas, = Hof 2, Tisch 74, Nummer 2
|
||||||
Nguyen, Anja, = Hof 2, Tisch 63, Nummer 3
|
Nguyen, Anja, = Hof 2, Tisch 81, Nummer 3
|
||||||
Nguyen, Daniel, = Hof 2, Tisch 63, Nummer 2
|
Nguyen, Daniel, = Hof 2, Tisch 81, Nummer 2
|
||||||
Nguyen, Julia, = Hof 1, Tisch 13, Nummer 3
|
Nguyen, Julia, = Hof 1, Tisch 4, Nummer 3
|
||||||
Nguyen, Sofia, = Hof 2, Tisch 63, Nummer 4
|
Nguyen, Sofia, = Hof 2, Tisch 81, Nummer 4
|
||||||
Nowak, Aylin, = Hof 1, Tisch 27, Nummer 3
|
Nowak, Aylin, = Hof 1, Tisch 41, Nummer 3
|
||||||
Nowak, Felix, = Hof 1, Tisch 27, Nummer 2
|
Nowak, Felix, = Hof 1, Tisch 41, Nummer 4
|
||||||
Nowak, Kathrin, = Hof 1, Tisch 26, Nummer 4
|
Nowak, Kathrin, = Hof 1, Tisch 34, Nummer 4
|
||||||
Nowak, Lina, = Hof 1, Tisch 26, Nummer 2
|
Nowak, Lina, = Hof 1, Tisch 41, Nummer 5
|
||||||
Nowak, Markus, = Hof 1, Tisch 27, Nummer 4
|
Nowak, Markus, = Hof 1, Tisch 41, Nummer 2
|
||||||
Nowak, Noah, = Hof 1, Tisch 26, Nummer 3
|
Nowak, Noah, = Hof 1, Tisch 34, Nummer 2
|
||||||
Ott, Daniel, = Hof 2, Tisch 77, Nummer 4
|
Ott, Daniel, = Hof 2, Tisch 60, Nummer 2
|
||||||
Ott, Hannah, = Hof 2, Tisch 76, Nummer 4
|
Ott, Hannah, = Hof 2, Tisch 60, Nummer 3
|
||||||
Ott, Luca, = Hof 2, Tisch 62, Nummer 4
|
Ott, Luca, = Hof 2, Tisch 65, Nummer 4
|
||||||
Ott, Matthias, = Hof 2, Tisch 76, Nummer 3
|
Ott, Matthias, = Hof 2, Tisch 70, Nummer 3
|
||||||
Ott, Melanie, = Hof 2, Tisch 76, Nummer 2
|
Ott, Melanie, = Hof 2, Tisch 60, Nummer 4
|
||||||
Ott, Olga, = Hof 2, Tisch 77, Nummer 3
|
Ott, Olga, = Hof 2, Tisch 70, Nummer 5
|
||||||
Ott, Sergej, Prof. Dr. = Hof 1, Tisch 41, Nummer 2
|
Ott, Sergej, Prof. Dr. = Hof 1, Tisch 43, Nummer 3
|
||||||
Ott, Yusuf, Prof. Dr. = Hof 1, Tisch 1, Nummer 4
|
Ott, Yusuf, Prof. Dr. = Hof 1, Tisch 12, Nummer 4
|
||||||
Peters, Christian, = Hof 1, Tisch 8, Nummer 2
|
Peters, Christian, = Hof 1, Tisch 10, Nummer 5
|
||||||
Peters, Nicole, = Hof 1, Tisch 42, Nummer 5
|
Peters, Nicole, = Hof 1, Tisch 42, Nummer 4
|
||||||
Petrov, Giovanna, = Hof 1, Tisch 9, Nummer 2
|
Petrov, Giovanna, = Hof 1, Tisch 10, Nummer 4
|
||||||
Petrov, Kathrin, = Hof 1, Tisch 38, Nummer 4
|
Petrov, Kathrin, = Hof 1, Tisch 34, Nummer 3
|
||||||
Petrov, Kathrin, Prof. Dr. = Hof 1, Tisch 8, Nummer 4
|
Petrov, Kathrin, Prof. Dr. = Hof 1, Tisch 11, Nummer 4
|
||||||
Petrov, Matthias, = Hof 1, Tisch 30, Nummer 4
|
Petrov, Matthias, = Hof 1, Tisch 25, Nummer 3
|
||||||
Petrov, Milan, = Hof 1, Tisch 38, Nummer 2
|
Petrov, Milan, = Hof 1, Tisch 34, Nummer 5
|
||||||
Petrov, Sergej, = Hof 2, Tisch 78, Nummer 4
|
Petrov, Sergej, = Hof 2, Tisch 75, Nummer 3
|
||||||
Pohl, Dragana, = Hof 2, Tisch 60, Nummer 2
|
Pohl, Dragana, = Hof 2, Tisch 59, Nummer 2
|
||||||
Pohl, Emre, = Hof 2, Tisch 60, Nummer 5
|
Pohl, Emre, = Hof 2, Tisch 59, Nummer 3
|
||||||
Pohl, Mia, = Hof 2, Tisch 60, Nummer 3
|
Pohl, Mia, = Hof 2, Tisch 59, Nummer 4
|
||||||
Pohl, Theo, = Hof 2, Tisch 60, Nummer 4
|
Pohl, Theo, = Hof 2, Tisch 59, Nummer 5
|
||||||
Polat, Kathrin, = Hof 2, Tisch 78, Nummer 2
|
Polat, Kathrin, = Hof 2, Tisch 75, Nummer 5
|
||||||
Polat, Katrin, = Hof 2, Tisch 77, Nummer 2
|
Polat, Katrin, = Hof 2, Tisch 70, Nummer 2
|
||||||
Polat, Marija, = Hof 2, Tisch 75, Nummer 2
|
Polat, Marija, = Hof 2, Tisch 67, Nummer 4
|
||||||
Polat, Markus, = Hof 2, Tisch 68, Nummer 2
|
Polat, Markus, = Hof 2, Tisch 70, Nummer 4
|
||||||
Polat, Sarah, = Hof 2, Tisch 68, Nummer 4
|
Polat, Sarah, = Hof 2, Tisch 71, Nummer 2
|
||||||
Polat, Stefan, = Hof 2, Tisch 68, Nummer 3
|
Polat, Stefan, = Hof 2, Tisch 71, Nummer 3
|
||||||
Polat, Stefanie, = Hof 2, Tisch 77, Nummer 5
|
Polat, Stefanie, = Hof 2, Tisch 71, Nummer 4
|
||||||
Popescu, Matthias, = Hof 1, Tisch 29, Nummer 2
|
Popescu, Matthias, = Hof 1, Tisch 23, Nummer 2
|
||||||
Richter, Anja, = Hof 1, Tisch 45, Nummer 5
|
Richter, Anja, = Hof 1, Tisch 39, Nummer 5
|
||||||
Richter, Anja, Prof. Dr. = Hof 2, Tisch 66, Nummer 3
|
Richter, Anja, Prof. Dr. = Hof 1, Tisch 9, Nummer 3
|
||||||
Richter, Anton, = Hof 1, Tisch 45, Nummer 3
|
Richter, Anton, = Hof 1, Tisch 39, Nummer 4
|
||||||
Richter, Greta, = Hof 1, Tisch 45, Nummer 4
|
Richter, Greta, = Hof 1, Tisch 39, Nummer 3
|
||||||
Richter, Julia, Prof. Dr. = Hof 1, Tisch 20, Nummer 2
|
Richter, Julia, Prof. Dr. = Hof 1, Tisch 25, Nummer 4
|
||||||
Richter, Marco, = Hof 2, Tisch 75, Nummer 5
|
Richter, Marco, = Hof 2, Tisch 67, Nummer 5
|
||||||
Richter, Matthias, = Hof 1, Tisch 45, Nummer 2
|
Richter, Matthias, = Hof 1, Tisch 39, Nummer 2
|
||||||
Richter, Stefan, = Hof 2, Tisch 72, Nummer 3
|
Richter, Stefan, = Hof 2, Tisch 64, Nummer 4
|
||||||
Rossi, Emilia, = Hof 1, Tisch 25, Nummer 3
|
Rossi, Emilia, = Hof 1, Tisch 30, Nummer 3
|
||||||
Rossi, Luca, = Hof 1, Tisch 25, Nummer 4
|
Rossi, Luca, = Hof 1, Tisch 30, Nummer 4
|
||||||
Rossi, Melanie, = Hof 1, Tisch 25, Nummer 2
|
Rossi, Melanie, = Hof 1, Tisch 30, Nummer 2
|
||||||
Roth, Christian, = Hof 2, Tisch 65, Nummer 2
|
Roth, Christian, = Hof 1, Tisch 3, Nummer 4
|
||||||
Roth, Julia, Prof. Dr. = Hof 1, Tisch 2, Nummer 2
|
Roth, Julia, Prof. Dr. = Hof 1, Tisch 4, Nummer 5
|
||||||
Roth, Olga, = Hof 1, Tisch 20, Nummer 5
|
Roth, Olga, = Hof 2, Tisch 72, Nummer 3
|
||||||
Roth, Sarah, = Hof 2, Tisch 65, Nummer 3
|
Roth, Sarah, = Hof 1, Tisch 3, Nummer 2
|
||||||
Roth, Sofia, = Hof 2, Tisch 65, Nummer 4
|
Roth, Sofia, = Hof 1, Tisch 3, Nummer 3
|
||||||
Sahin, Kathrin, = Hof 2, Tisch 50, Nummer 2
|
Sahin, Kathrin, = Hof 2, Tisch 53, Nummer 5
|
||||||
Sahin, Markus, = Hof 2, Tisch 50, Nummer 4
|
Sahin, Markus, = Hof 2, Tisch 53, Nummer 4
|
||||||
Sahin, Nicole, = Hof 2, Tisch 50, Nummer 5
|
Sahin, Nicole, = Hof 2, Tisch 53, Nummer 3
|
||||||
Sahin, Patrick, = Hof 2, Tisch 50, Nummer 3
|
Sahin, Patrick, = Hof 2, Tisch 53, Nummer 2
|
||||||
Sahin, Thomas, = Hof 2, Tisch 66, Nummer 4
|
Sahin, Thomas, = Hof 1, Tisch 9, Nummer 4
|
||||||
Schmidt, Giovanna, = Hof 2, Tisch 53, Nummer 3
|
Schmidt, Giovanna, = Hof 2, Tisch 76, Nummer 2
|
||||||
Schmidt, Marie, = Hof 2, Tisch 53, Nummer 4
|
Schmidt, Marie, = Hof 2, Tisch 76, Nummer 3
|
||||||
Schmidt, Matthias, = Hof 2, Tisch 53, Nummer 2
|
Schmidt, Matthias, = Hof 2, Tisch 76, Nummer 4
|
||||||
Schmidt, Nicole, = Hof 1, Tisch 13, Nummer 4
|
Schmidt, Nicole, = Hof 1, Tisch 4, Nummer 4
|
||||||
Schmitt, Dennis, Prof. Dr. = Hof 2, Tisch 72, Nummer 2
|
Schmitt, Dennis, Prof. Dr. = Hof 2, Tisch 64, Nummer 5
|
||||||
Schmitt, Markus, = Hof 1, Tisch 24, Nummer 4
|
Schmitt, Markus, = Hof 1, Tisch 11, Nummer 2
|
||||||
Schmitt, Markus, = Hof 1, Tisch 8, Nummer 3
|
Schmitt, Markus, = Hof 1, Tisch 28, Nummer 4
|
||||||
Schmitt, Sarah, = Hof 1, Tisch 24, Nummer 3
|
Schmitt, Sarah, = Hof 1, Tisch 28, Nummer 2
|
||||||
Schmitt, Sofia, = Hof 1, Tisch 24, Nummer 2
|
Schmitt, Sofia, = Hof 1, Tisch 28, Nummer 3
|
||||||
Schmitt, Stefan, Prof. Dr. = Hof 2, Tisch 67, Nummer 3
|
Schmitt, Stefan, Prof. Dr. = Hof 1, Tisch 36, Nummer 4
|
||||||
Schwarz, Giovanna, = Hof 2, Tisch 58, Nummer 2
|
Schwarz, Giovanna, = Hof 2, Tisch 54, Nummer 3
|
||||||
Seidel, Anja, Dr. = Hof 2, Tisch 61, Nummer 5
|
Seidel, Anja, Dr. = Hof 2, Tisch 50, Nummer 5
|
||||||
Seidel, Markus, Dr. = Hof 1, Tisch 8, Nummer 5
|
Seidel, Markus, Dr. = Hof 1, Tisch 11, Nummer 3
|
||||||
Seidel, Yusuf, Prof. Dr. = Hof 1, Tisch 4, Nummer 3
|
Seidel, Yusuf, Prof. Dr. = Hof 1, Tisch 1, Nummer 2
|
||||||
Seifert, Elif, = Hof 1, Tisch 40, Nummer 2
|
Seifert, Elif, = Hof 1, Tisch 17, Nummer 3
|
||||||
Seifert, Leni, = Hof 1, Tisch 40, Nummer 4
|
Seifert, Leni, = Hof 1, Tisch 17, Nummer 4
|
||||||
Seifert, Marco, Prof. Dr. = Hof 2, Tisch 57, Nummer 4
|
Seifert, Marco, Prof. Dr. = Hof 2, Tisch 54, Nummer 4
|
||||||
Seifert, Nicole, = Hof 1, Tisch 32, Nummer 3
|
Seifert, Nicole, = Hof 1, Tisch 26, Nummer 2
|
||||||
Seifert, Stefanie, Dr. = Hof 1, Tisch 2, Nummer 5
|
Seifert, Stefanie, Dr. = Hof 1, Tisch 4, Nummer 2
|
||||||
Seifert, Timo, = Hof 1, Tisch 32, Nummer 2
|
Seifert, Timo, = Hof 1, Tisch 26, Nummer 5
|
||||||
Seifert, Yusuf, = Hof 1, Tisch 40, Nummer 3
|
Seifert, Yusuf, = Hof 1, Tisch 17, Nummer 2
|
||||||
Simon, Andreas, = Hof 2, Tisch 56, Nummer 4
|
Simon, Andreas, = Hof 2, Tisch 58, Nummer 5
|
||||||
Simon, Emma, = Hof 2, Tisch 56, Nummer 3
|
Simon, Emma, = Hof 2, Tisch 58, Nummer 2
|
||||||
Simon, Lena, = Hof 2, Tisch 56, Nummer 5
|
Simon, Lena, = Hof 2, Tisch 58, Nummer 4
|
||||||
Simon, Markus, = Hof 2, Tisch 56, Nummer 2
|
Simon, Markus, = Hof 2, Tisch 58, Nummer 3
|
||||||
Simon, Svenja, = Hof 1, Tisch 29, Nummer 5
|
Simon, Svenja, = Hof 1, Tisch 24, Nummer 5
|
||||||
Stein, Ben, = Hof 2, Tisch 79, Nummer 2
|
Stein, Ben, = Hof 1, Tisch 13, Nummer 2
|
||||||
Stein, Emilia, = Hof 2, Tisch 79, Nummer 3
|
Stein, Emilia, = Hof 1, Tisch 13, Nummer 5
|
||||||
Stein, Giovanna, = Hof 2, Tisch 79, Nummer 4
|
Stein, Giovanna, = Hof 1, Tisch 13, Nummer 4
|
||||||
Stein, Markus, Prof. Dr. = Hof 1, Tisch 29, Nummer 4
|
Stein, Markus, Prof. Dr. = Hof 1, Tisch 23, Nummer 5
|
||||||
Stein, Nadine, Dr. = Hof 1, Tisch 9, Nummer 4
|
Stein, Nadine, Dr. = Hof 1, Tisch 10, Nummer 3
|
||||||
Stein, Thomas, = Hof 2, Tisch 79, Nummer 5
|
Stein, Thomas, = Hof 1, Tisch 13, Nummer 3
|
||||||
Steinbach, Elisabeth, = Hof 1, Tisch 6, Nummer 4
|
Steinbach, Elisabeth, = Hof 1, Tisch 6, Nummer 3
|
||||||
Steinbach, Georg, = Hof 1, Tisch 6, Nummer 3
|
Steinbach, Georg, = Hof 1, Tisch 6, Nummer 5
|
||||||
Thiel, Christina, = Hof 1, Tisch 23, Nummer 3
|
Thiel, Christina, = Hof 1, Tisch 21, Nummer 2
|
||||||
Thiel, Jan, Dr. = Hof 2, Tisch 66, Nummer 2
|
Thiel, Jan, Dr. = Hof 1, Tisch 9, Nummer 2
|
||||||
Thiel, Julia, = Hof 1, Tisch 23, Nummer 2
|
Thiel, Julia, = Hof 1, Tisch 21, Nummer 3
|
||||||
Thiel, Yusuf, = Hof 1, Tisch 23, Nummer 4
|
Thiel, Yusuf, = Hof 1, Tisch 21, Nummer 4
|
||||||
Tran, Marija, = Hof 2, Tisch 67, Nummer 5
|
Tran, Marija, = Hof 1, Tisch 36, Nummer 5
|
||||||
Tran, Olga, = Hof 2, Tisch 61, Nummer 4
|
Tran, Olga, = Hof 2, Tisch 50, Nummer 4
|
||||||
Tran, Thomas, Prof. Dr. = Hof 2, Tisch 78, Nummer 5
|
Tran, Thomas, Prof. Dr. = Hof 2, Tisch 75, Nummer 4
|
||||||
Wagner, Henry, = Hof 1, Tisch 15, Nummer 5
|
Wagner, Henry, = Hof 2, Tisch 79, Nummer 5
|
||||||
Wagner, Marco, = Hof 1, Tisch 15, Nummer 3
|
Wagner, Marco, = Hof 2, Tisch 79, Nummer 3
|
||||||
Wagner, Nicole, = Hof 1, Tisch 15, Nummer 2
|
Wagner, Nicole, = Hof 2, Tisch 79, Nummer 2
|
||||||
Wagner, Sarah, = Hof 1, Tisch 15, Nummer 4
|
Wagner, Sarah, = Hof 2, Tisch 79, Nummer 4
|
||||||
Weber, Andreas, = Hof 1, Tisch 20, Nummer 4
|
Weber, Andreas, = Hof 1, Tisch 25, Nummer 2
|
||||||
Weber, Julia, = Hof 1, Tisch 1, Nummer 2
|
Weber, Julia, = Hof 1, Tisch 1, Nummer 5
|
||||||
Weber, Katrin, = Hof 2, Tisch 57, Nummer 2
|
Weber, Katrin, = Hof 1, Tisch 36, Nummer 3
|
||||||
Weber, Yusuf, = Hof 2, Tisch 57, Nummer 5
|
Weber, Yusuf, = Hof 2, Tisch 64, Nummer 3
|
||||||
Werner, Andreas, = Hof 2, Tisch 70, Nummer 2
|
Werner, Andreas, = Hof 2, Tisch 66, Nummer 4
|
||||||
Werner, Dennis, Prof. Dr. = Hof 2, Tisch 61, Nummer 2
|
Werner, Dennis, Prof. Dr. = Hof 2, Tisch 50, Nummer 2
|
||||||
Werner, Katrin, = Hof 2, Tisch 52, Nummer 2
|
Werner, Katrin, = Hof 2, Tisch 48, Nummer 2
|
||||||
Werner, Luca, = Hof 2, Tisch 67, Nummer 4
|
Werner, Luca, = Hof 1, Tisch 36, Nummer 2
|
||||||
Werner, Marco, = Hof 2, Tisch 70, Nummer 5
|
Werner, Marco, = Hof 2, Tisch 66, Nummer 2
|
||||||
Werner, Nadine, = Hof 2, Tisch 70, Nummer 4
|
Werner, Nadine, = Hof 2, Tisch 66, Nummer 5
|
||||||
Werner, Sandra, = Hof 2, Tisch 70, Nummer 3
|
Werner, Sandra, = Hof 2, Tisch 66, Nummer 3
|
||||||
Winkler, Lena, = Hof 1, Tisch 38, Nummer 5
|
Winkler, Lena, = Hof 1, Tisch 33, Nummer 3
|
||||||
Winkler, Marco, = Hof 1, Tisch 3, Nummer 3
|
Winkler, Marco, = Hof 1, Tisch 1, Nummer 4
|
||||||
Winkler, Patrick, = Hof 1, Tisch 38, Nummer 3
|
Winkler, Patrick, = Hof 1, Tisch 33, Nummer 2
|
||||||
Winkler, Thomas, = Hof 1, Tisch 2, Nummer 4
|
Winkler, Thomas, = Hof 1, Tisch 15, Nummer 2
|
||||||
Wolf, Ben, = Hof 2, Tisch 84, Nummer 5
|
Wolf, Ben, = Hof 2, Tisch 73, Nummer 5
|
||||||
Wolf, Emma, = Hof 2, Tisch 84, Nummer 3
|
Wolf, Emma, = Hof 2, Tisch 73, Nummer 4
|
||||||
Wolf, Julia, = Hof 2, Tisch 84, Nummer 4
|
Wolf, Julia, = Hof 2, Tisch 73, Nummer 2
|
||||||
Wolf, Thomas, = Hof 2, Tisch 84, Nummer 2
|
Wolf, Thomas, = Hof 2, Tisch 73, Nummer 3
|
||||||
Zimmermann, Jan, = Hof 2, Tisch 74, Nummer 2
|
Zimmermann, Jan, = Hof 1, Tisch 14, Nummer 5
|
||||||
Zimmermann, Markus, = Hof 2, Tisch 74, Nummer 4
|
Zimmermann, Markus, = Hof 1, Tisch 14, Nummer 3
|
||||||
Zimmermann, Mia, = Hof 2, Tisch 74, Nummer 3
|
Zimmermann, Mia, = Hof 1, Tisch 14, Nummer 4
|
||||||
Zimmermann, Patrick, = Hof 2, Tisch 62, Nummer 2
|
Zimmermann, Patrick, = Hof 2, Tisch 65, Nummer 2
|
||||||
Zimmermann, Svenja, = Hof 2, Tisch 74, Nummer 5
|
Zimmermann, Svenja, = Hof 1, Tisch 14, Nummer 2
|
||||||
|
|||||||
|
|
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 57 KiB |
@@ -1,476 +1,476 @@
|
|||||||
[1]
|
[1]
|
||||||
Julia Weber = Hof 1, Tisch 1, Nummer 1
|
Prof. Dr. Yusuf Seidel = Hof 1, Tisch 1, Nummer 1
|
||||||
Dr. Nadine Berger = Hof 1, Tisch 1, Nummer 2
|
Emre Klein = Hof 1, Tisch 1, Nummer 2
|
||||||
Prof. Dr. Yusuf Ott = Hof 1, Tisch 1, Nummer 3
|
Marco Winkler = Hof 1, Tisch 1, Nummer 3
|
||||||
Patrick Lehmann = Hof 1, Tisch 1, Nummer 4
|
Julia Weber = Hof 1, Tisch 1, Nummer 4
|
||||||
|
|
||||||
[2]
|
[2]
|
||||||
Prof. Dr. Julia Roth = Hof 1, Tisch 2, Nummer 1
|
Dr. Jan Bianchi = Hof 1, Tisch 2, Nummer 1
|
||||||
Thomas Hansen = Hof 1, Tisch 2, Nummer 2
|
Dr. Christina Krause = Hof 1, Tisch 2, Nummer 2
|
||||||
Thomas Winkler = Hof 1, Tisch 2, Nummer 3
|
Dr. Patrick Kaya = Hof 1, Tisch 2, Nummer 3
|
||||||
Dr. Stefanie Seifert = Hof 1, Tisch 2, Nummer 4
|
Yusuf Bauer = Hof 1, Tisch 2, Nummer 4
|
||||||
|
|
||||||
[3]
|
[3]
|
||||||
Dr. Jan Bianchi = Hof 1, Tisch 3, Nummer 1
|
Sarah Roth = Hof 1, Tisch 3, Nummer 1
|
||||||
Marco Winkler = Hof 1, Tisch 3, Nummer 2
|
Sofia Roth = Hof 1, Tisch 3, Nummer 2
|
||||||
Dr. Christina Krause = Hof 1, Tisch 3, Nummer 3
|
Christian Roth = Hof 1, Tisch 3, Nummer 3
|
||||||
Yusuf Bauer = Hof 1, Tisch 3, Nummer 4
|
|
||||||
|
|
||||||
[4]
|
[4]
|
||||||
Dr. Patrick Kaya = Hof 1, Tisch 4, Nummer 1
|
Dr. Stefanie Seifert = Hof 1, Tisch 4, Nummer 1
|
||||||
Prof. Dr. Yusuf Seidel = Hof 1, Tisch 4, Nummer 2
|
Julia Nguyen = Hof 1, Tisch 4, Nummer 2
|
||||||
Emre Klein = Hof 1, Tisch 4, Nummer 3
|
Nicole Schmidt = Hof 1, Tisch 4, Nummer 3
|
||||||
|
Prof. Dr. Julia Roth = Hof 1, Tisch 4, Nummer 4
|
||||||
|
|
||||||
[5]
|
[5]
|
||||||
Beate Grothe = Hof 1, Tisch 5, Nummer 1
|
Viktoria Kessler = Hof 1, Tisch 5, Nummer 1
|
||||||
Viktoria Kessler = Hof 1, Tisch 5, Nummer 2
|
Beate Grothe = Hof 1, Tisch 5, Nummer 2
|
||||||
Dr. h.c. Alexander Grothe = Hof 1, Tisch 5, Nummer 3
|
Dr. Ferdinand Kessler = Hof 1, Tisch 5, Nummer 3
|
||||||
Dr. Ferdinand Kessler = Hof 1, Tisch 5, Nummer 4
|
Dr. h.c. Alexander Grothe = Hof 1, Tisch 5, Nummer 4
|
||||||
|
|
||||||
[6]
|
[6]
|
||||||
Dr. Konstantin Freiherr von Waldeck = Hof 1, Tisch 6, Nummer 1
|
Antonia Freifrau von Waldeck = Hof 1, Tisch 6, Nummer 1
|
||||||
Georg Steinbach = Hof 1, Tisch 6, Nummer 2
|
Elisabeth Steinbach = Hof 1, Tisch 6, Nummer 2
|
||||||
Elisabeth Steinbach = Hof 1, Tisch 6, Nummer 3
|
Dr. Konstantin Freiherr von Waldeck = Hof 1, Tisch 6, Nummer 3
|
||||||
Antonia Freifrau von Waldeck = Hof 1, Tisch 6, Nummer 4
|
Georg Steinbach = Hof 1, Tisch 6, Nummer 4
|
||||||
|
|
||||||
[7]
|
[7]
|
||||||
Maximilian Dallmann = Hof 1, Tisch 7, Nummer 1
|
Charlotte Dallmann = Hof 1, Tisch 7, Nummer 1
|
||||||
Heinrich Dallmann = Hof 1, Tisch 7, Nummer 2
|
Maximilian Dallmann = Hof 1, Tisch 7, Nummer 2
|
||||||
Margarete Dallmann = Hof 1, Tisch 7, Nummer 3
|
Margarete Dallmann = Hof 1, Tisch 7, Nummer 3
|
||||||
Charlotte Dallmann = Hof 1, Tisch 7, Nummer 4
|
Heinrich Dallmann = Hof 1, Tisch 7, Nummer 4
|
||||||
|
|
||||||
[8]
|
[8]
|
||||||
Christian Peters = Hof 1, Tisch 8, Nummer 1
|
Milan Lehmann = Hof 1, Tisch 8, Nummer 1
|
||||||
Markus Schmitt = Hof 1, Tisch 8, Nummer 2
|
Andreas Albrecht = Hof 1, Tisch 8, Nummer 2
|
||||||
Prof. Dr. Kathrin Petrov = Hof 1, Tisch 8, Nummer 3
|
Layla Lehmann = Hof 1, Tisch 8, Nummer 3
|
||||||
Dr. Markus Seidel = Hof 1, Tisch 8, Nummer 4
|
Sarah Albrecht = Hof 1, Tisch 8, Nummer 4
|
||||||
|
|
||||||
[9]
|
[9]
|
||||||
Giovanna Petrov = Hof 1, Tisch 9, Nummer 1
|
Dr. Jan Thiel = Hof 1, Tisch 9, Nummer 1
|
||||||
Markus Kraus = Hof 1, Tisch 9, Nummer 2
|
Prof. Dr. Anja Richter = Hof 1, Tisch 9, Nummer 2
|
||||||
Dr. Nadine Stein = Hof 1, Tisch 9, Nummer 3
|
Thomas Sahin = Hof 1, Tisch 9, Nummer 3
|
||||||
|
|
||||||
[10]
|
[10]
|
||||||
Lena Frank = Hof 1, Tisch 10, Nummer 1
|
Markus Kraus = Hof 1, Tisch 10, Nummer 1
|
||||||
Finn Frank = Hof 1, Tisch 10, Nummer 2
|
Dr. Nadine Stein = Hof 1, Tisch 10, Nummer 2
|
||||||
Nadine Frank = Hof 1, Tisch 10, Nummer 3
|
Giovanna Petrov = Hof 1, Tisch 10, Nummer 3
|
||||||
|
Christian Peters = Hof 1, Tisch 10, Nummer 4
|
||||||
|
|
||||||
[11]
|
[11]
|
||||||
Tobias Kovac = Hof 1, Tisch 11, Nummer 1
|
Markus Schmitt = Hof 1, Tisch 11, Nummer 1
|
||||||
Henry Kovac = Hof 1, Tisch 11, Nummer 2
|
Dr. Markus Seidel = Hof 1, Tisch 11, Nummer 2
|
||||||
Marco Kovac = Hof 1, Tisch 11, Nummer 3
|
Prof. Dr. Kathrin Petrov = Hof 1, Tisch 11, Nummer 3
|
||||||
Marija Kovac = Hof 1, Tisch 11, Nummer 4
|
|
||||||
|
|
||||||
[12]
|
[12]
|
||||||
|
Dr. Nadine Berger = Hof 1, Tisch 12, Nummer 1
|
||||||
|
Patrick Lehmann = Hof 1, Tisch 12, Nummer 2
|
||||||
|
Prof. Dr. Yusuf Ott = Hof 1, Tisch 12, Nummer 3
|
||||||
|
|
||||||
[13]
|
[13]
|
||||||
Dr. Jan Esposito = Hof 1, Tisch 13, Nummer 1
|
Ben Stein = Hof 1, Tisch 13, Nummer 1
|
||||||
Julia Nguyen = Hof 1, Tisch 13, Nummer 2
|
Thomas Stein = Hof 1, Tisch 13, Nummer 2
|
||||||
Nicole Schmidt = Hof 1, Tisch 13, Nummer 3
|
Giovanna Stein = Hof 1, Tisch 13, Nummer 3
|
||||||
|
Emilia Stein = Hof 1, Tisch 13, Nummer 4
|
||||||
|
|
||||||
[14]
|
[14]
|
||||||
Sofia Dietrich = Hof 1, Tisch 14, Nummer 1
|
Svenja Zimmermann = Hof 1, Tisch 14, Nummer 1
|
||||||
Jennifer Dietrich = Hof 1, Tisch 14, Nummer 2
|
Markus Zimmermann = Hof 1, Tisch 14, Nummer 2
|
||||||
Marco Dietrich = Hof 1, Tisch 14, Nummer 3
|
Mia Zimmermann = Hof 1, Tisch 14, Nummer 3
|
||||||
|
Jan Zimmermann = Hof 1, Tisch 14, Nummer 4
|
||||||
|
|
||||||
[15]
|
[15]
|
||||||
Nicole Wagner = Hof 1, Tisch 15, Nummer 1
|
Thomas Winkler = Hof 1, Tisch 15, Nummer 1
|
||||||
Marco Wagner = Hof 1, Tisch 15, Nummer 2
|
Thomas Hansen = Hof 1, Tisch 15, Nummer 2
|
||||||
Sarah Wagner = Hof 1, Tisch 15, Nummer 3
|
Dr. Jan Esposito = Hof 1, Tisch 15, Nummer 3
|
||||||
Henry Wagner = Hof 1, Tisch 15, Nummer 4
|
|
||||||
|
|
||||||
[16]
|
[16]
|
||||||
Milan Lehmann = Hof 1, Tisch 16, Nummer 1
|
|
||||||
Thomas Lehmann = Hof 1, Tisch 16, Nummer 2
|
|
||||||
Layla Lehmann = Hof 1, Tisch 16, Nummer 3
|
|
||||||
|
|
||||||
[17]
|
[17]
|
||||||
Nicole Lehmann = Hof 1, Tisch 17, Nummer 1
|
Yusuf Seifert = Hof 1, Tisch 17, Nummer 1
|
||||||
Giovanna Lehmann = Hof 1, Tisch 17, Nummer 2
|
Elif Seifert = Hof 1, Tisch 17, Nummer 2
|
||||||
Markus Lehmann = Hof 1, Tisch 17, Nummer 3
|
Leni Seifert = Hof 1, Tisch 17, Nummer 3
|
||||||
|
|
||||||
[18]
|
[18]
|
||||||
Thomas Neumann = Hof 1, Tisch 18, Nummer 1
|
Sofia Dietrich = Hof 1, Tisch 18, Nummer 1
|
||||||
Lina Neumann = Hof 1, Tisch 18, Nummer 2
|
Marco Dietrich = Hof 1, Tisch 18, Nummer 2
|
||||||
Matteo Neumann = Hof 1, Tisch 18, Nummer 3
|
Jennifer Dietrich = Hof 1, Tisch 18, Nummer 3
|
||||||
Jennifer Neumann = Hof 1, Tisch 18, Nummer 4
|
|
||||||
|
|
||||||
[19]
|
[19]
|
||||||
Dr. Olga Klein = Hof 1, Tisch 19, Nummer 1
|
Markus Lehmann = Hof 1, Tisch 19, Nummer 1
|
||||||
Prof. Dr. Emre Albrecht = Hof 1, Tisch 19, Nummer 2
|
Giovanna Lehmann = Hof 1, Tisch 19, Nummer 2
|
||||||
Dr. Jennifer Arnold = Hof 1, Tisch 19, Nummer 3
|
Thomas Lehmann = Hof 1, Tisch 19, Nummer 3
|
||||||
|
Nicole Lehmann = Hof 1, Tisch 19, Nummer 4
|
||||||
|
|
||||||
[20]
|
[20]
|
||||||
Prof. Dr. Julia Richter = Hof 1, Tisch 20, Nummer 1
|
Amira Franke = Hof 1, Tisch 20, Nummer 1
|
||||||
Thomas Bianchi = Hof 1, Tisch 20, Nummer 2
|
Olga Franke = Hof 1, Tisch 20, Nummer 2
|
||||||
Andreas Weber = Hof 1, Tisch 20, Nummer 3
|
Marco Franke = Hof 1, Tisch 20, Nummer 3
|
||||||
Olga Roth = Hof 1, Tisch 20, Nummer 4
|
|
||||||
|
|
||||||
[21]
|
[21]
|
||||||
Anja Kovac = Hof 1, Tisch 21, Nummer 1
|
Christina Thiel = Hof 1, Tisch 21, Nummer 1
|
||||||
Dennis Frank = Hof 1, Tisch 21, Nummer 2
|
Julia Thiel = Hof 1, Tisch 21, Nummer 2
|
||||||
Lena Kovac = Hof 1, Tisch 21, Nummer 3
|
Yusuf Thiel = Hof 1, Tisch 21, Nummer 3
|
||||||
Marie Frank = Hof 1, Tisch 21, Nummer 4
|
|
||||||
|
|
||||||
[22]
|
[22]
|
||||||
Giovanna Hansen = Hof 1, Tisch 22, Nummer 1
|
Marie Aksoy = Hof 1, Tisch 22, Nummer 1
|
||||||
Markus Hansen = Hof 1, Tisch 22, Nummer 2
|
Luca Aksoy = Hof 1, Tisch 22, Nummer 2
|
||||||
Olga Hansen = Hof 1, Tisch 22, Nummer 3
|
Thomas Aksoy = Hof 1, Tisch 22, Nummer 3
|
||||||
|
|
||||||
[23]
|
[23]
|
||||||
Julia Thiel = Hof 1, Tisch 23, Nummer 1
|
Matthias Popescu = Hof 1, Tisch 23, Nummer 1
|
||||||
Christina Thiel = Hof 1, Tisch 23, Nummer 2
|
Layla Berger = Hof 1, Tisch 23, Nummer 2
|
||||||
Yusuf Thiel = Hof 1, Tisch 23, Nummer 3
|
Anton Berger = Hof 1, Tisch 23, Nummer 3
|
||||||
|
Prof. Dr. Markus Stein = Hof 1, Tisch 23, Nummer 4
|
||||||
|
|
||||||
[24]
|
[24]
|
||||||
Sofia Schmitt = Hof 1, Tisch 24, Nummer 1
|
Elif Celik = Hof 1, Tisch 24, Nummer 1
|
||||||
Sarah Schmitt = Hof 1, Tisch 24, Nummer 2
|
Prof. Dr. Yusuf Albrecht = Hof 1, Tisch 24, Nummer 2
|
||||||
Markus Schmitt = Hof 1, Tisch 24, Nummer 3
|
Patrick Celik = Hof 1, Tisch 24, Nummer 3
|
||||||
|
Svenja Simon = Hof 1, Tisch 24, Nummer 4
|
||||||
|
|
||||||
[25]
|
[25]
|
||||||
Melanie Rossi = Hof 1, Tisch 25, Nummer 1
|
Andreas Weber = Hof 1, Tisch 25, Nummer 1
|
||||||
Emilia Rossi = Hof 1, Tisch 25, Nummer 2
|
Matthias Petrov = Hof 1, Tisch 25, Nummer 2
|
||||||
Luca Rossi = Hof 1, Tisch 25, Nummer 3
|
Prof. Dr. Julia Richter = Hof 1, Tisch 25, Nummer 3
|
||||||
|
|
||||||
[26]
|
[26]
|
||||||
Lina Nowak = Hof 1, Tisch 26, Nummer 1
|
Nicole Seifert = Hof 1, Tisch 26, Nummer 1
|
||||||
Noah Nowak = Hof 1, Tisch 26, Nummer 2
|
Markus Barth = Hof 1, Tisch 26, Nummer 2
|
||||||
Kathrin Nowak = Hof 1, Tisch 26, Nummer 3
|
Dr. Jennifer Haas = Hof 1, Tisch 26, Nummer 3
|
||||||
|
Timo Seifert = Hof 1, Tisch 26, Nummer 4
|
||||||
|
|
||||||
[27]
|
[27]
|
||||||
Felix Nowak = Hof 1, Tisch 27, Nummer 1
|
Anja Kovac = Hof 1, Tisch 27, Nummer 1
|
||||||
Aylin Nowak = Hof 1, Tisch 27, Nummer 2
|
Henry Kovac = Hof 1, Tisch 27, Nummer 2
|
||||||
Markus Nowak = Hof 1, Tisch 27, Nummer 3
|
Lena Kovac = Hof 1, Tisch 27, Nummer 3
|
||||||
|
|
||||||
[28]
|
[28]
|
||||||
Jennifer Berger = Hof 1, Tisch 28, Nummer 1
|
Sarah Schmitt = Hof 1, Tisch 28, Nummer 1
|
||||||
Svenja Berger = Hof 1, Tisch 28, Nummer 2
|
Sofia Schmitt = Hof 1, Tisch 28, Nummer 2
|
||||||
Stefan Berger = Hof 1, Tisch 28, Nummer 3
|
Markus Schmitt = Hof 1, Tisch 28, Nummer 3
|
||||||
Anton Berger = Hof 1, Tisch 28, Nummer 4
|
|
||||||
|
|
||||||
[29]
|
[29]
|
||||||
Matthias Popescu = Hof 1, Tisch 29, Nummer 1
|
Giovanna Hansen = Hof 1, Tisch 29, Nummer 1
|
||||||
Prof. Dr. Yusuf Albrecht = Hof 1, Tisch 29, Nummer 2
|
Markus Hansen = Hof 1, Tisch 29, Nummer 2
|
||||||
Prof. Dr. Markus Stein = Hof 1, Tisch 29, Nummer 3
|
Olga Hansen = Hof 1, Tisch 29, Nummer 3
|
||||||
Svenja Simon = Hof 1, Tisch 29, Nummer 4
|
|
||||||
|
|
||||||
[30]
|
[30]
|
||||||
Dr. Jennifer Haas = Hof 1, Tisch 30, Nummer 1
|
Melanie Rossi = Hof 1, Tisch 30, Nummer 1
|
||||||
Markus Barth = Hof 1, Tisch 30, Nummer 2
|
Emilia Rossi = Hof 1, Tisch 30, Nummer 2
|
||||||
Matthias Petrov = Hof 1, Tisch 30, Nummer 3
|
Luca Rossi = Hof 1, Tisch 30, Nummer 3
|
||||||
|
|
||||||
[31]
|
[31]
|
||||||
|
Nadine Aksoy = Hof 1, Tisch 31, Nummer 1
|
||||||
|
Sofia Aksoy = Hof 1, Tisch 31, Nummer 2
|
||||||
|
Sergej Aksoy = Hof 1, Tisch 31, Nummer 3
|
||||||
|
|
||||||
[32]
|
[32]
|
||||||
Timo Seifert = Hof 1, Tisch 32, Nummer 1
|
Svenja Berger = Hof 1, Tisch 32, Nummer 1
|
||||||
Nicole Seifert = Hof 1, Tisch 32, Nummer 2
|
Stefan Berger = Hof 1, Tisch 32, Nummer 2
|
||||||
Patrick Arnold = Hof 1, Tisch 32, Nummer 3
|
Jennifer Berger = Hof 1, Tisch 32, Nummer 3
|
||||||
Leni Arnold = Hof 1, Tisch 32, Nummer 4
|
Andreas Berger = Hof 1, Tisch 32, Nummer 4
|
||||||
|
|
||||||
[33]
|
[33]
|
||||||
Elif Celik = Hof 1, Tisch 33, Nummer 1
|
Patrick Winkler = Hof 1, Tisch 33, Nummer 1
|
||||||
Prof. Dr. Timo Kaya = Hof 1, Tisch 33, Nummer 2
|
Lena Winkler = Hof 1, Tisch 33, Nummer 2
|
||||||
Patrick Celik = Hof 1, Tisch 33, Nummer 3
|
Prof. Dr. Timo Kaya = Hof 1, Tisch 33, Nummer 3
|
||||||
Dr. Sandra Demir = Hof 1, Tisch 33, Nummer 4
|
Dr. Sandra Demir = Hof 1, Tisch 33, Nummer 4
|
||||||
|
|
||||||
[34]
|
[34]
|
||||||
Sergej Aksoy = Hof 1, Tisch 34, Nummer 1
|
Noah Nowak = Hof 1, Tisch 34, Nummer 1
|
||||||
Nadine Aksoy = Hof 1, Tisch 34, Nummer 2
|
Kathrin Petrov = Hof 1, Tisch 34, Nummer 2
|
||||||
Marie Aksoy = Hof 1, Tisch 34, Nummer 3
|
Kathrin Nowak = Hof 1, Tisch 34, Nummer 3
|
||||||
|
Milan Petrov = Hof 1, Tisch 34, Nummer 4
|
||||||
|
|
||||||
[35]
|
[35]
|
||||||
Luca Aksoy = Hof 1, Tisch 35, Nummer 1
|
Marija Kovac = Hof 1, Tisch 35, Nummer 1
|
||||||
Sofia Aksoy = Hof 1, Tisch 35, Nummer 2
|
Tobias Kovac = Hof 1, Tisch 35, Nummer 2
|
||||||
Thomas Aksoy = Hof 1, Tisch 35, Nummer 3
|
Marco Kovac = Hof 1, Tisch 35, Nummer 3
|
||||||
|
|
||||||
[36]
|
[36]
|
||||||
Andreas Albrecht = Hof 1, Tisch 36, Nummer 1
|
Luca Werner = Hof 1, Tisch 36, Nummer 1
|
||||||
Layla Berger = Hof 1, Tisch 36, Nummer 2
|
Katrin Weber = Hof 1, Tisch 36, Nummer 2
|
||||||
Sarah Albrecht = Hof 1, Tisch 36, Nummer 3
|
Prof. Dr. Stefan Schmitt = Hof 1, Tisch 36, Nummer 3
|
||||||
Andreas Berger = Hof 1, Tisch 36, Nummer 4
|
Marija Tran = Hof 1, Tisch 36, Nummer 4
|
||||||
|
|
||||||
[37]
|
[37]
|
||||||
Julia Braun = Hof 1, Tisch 37, Nummer 1
|
Michael Franke = Hof 1, Tisch 37, Nummer 1
|
||||||
Milan Braun = Hof 1, Tisch 37, Nummer 2
|
Julia Franke = Hof 1, Tisch 37, Nummer 2
|
||||||
Christian Braun = Hof 1, Tisch 37, Nummer 3
|
Dr. Kathrin Koch = Hof 1, Tisch 37, Nummer 3
|
||||||
|
Dr. Julia Kuhn = Hof 1, Tisch 37, Nummer 4
|
||||||
|
|
||||||
[38]
|
[38]
|
||||||
Milan Petrov = Hof 1, Tisch 38, Nummer 1
|
Christian Braun = Hof 1, Tisch 38, Nummer 1
|
||||||
Patrick Winkler = Hof 1, Tisch 38, Nummer 2
|
Dragana Braun = Hof 1, Tisch 38, Nummer 2
|
||||||
Kathrin Petrov = Hof 1, Tisch 38, Nummer 3
|
Julia Braun = Hof 1, Tisch 38, Nummer 3
|
||||||
Lena Winkler = Hof 1, Tisch 38, Nummer 4
|
|
||||||
|
|
||||||
[39]
|
[39]
|
||||||
Jennifer Arnold = Hof 1, Tisch 39, Nummer 1
|
Matthias Richter = Hof 1, Tisch 39, Nummer 1
|
||||||
Mila Arnold = Hof 1, Tisch 39, Nummer 2
|
Greta Richter = Hof 1, Tisch 39, Nummer 2
|
||||||
Christian Arnold = Hof 1, Tisch 39, Nummer 3
|
Anton Richter = Hof 1, Tisch 39, Nummer 3
|
||||||
|
Anja Richter = Hof 1, Tisch 39, Nummer 4
|
||||||
|
|
||||||
[40]
|
[40]
|
||||||
Elif Seifert = Hof 1, Tisch 40, Nummer 1
|
|
||||||
Yusuf Seifert = Hof 1, Tisch 40, Nummer 2
|
|
||||||
Leni Seifert = Hof 1, Tisch 40, Nummer 3
|
|
||||||
|
|
||||||
[41]
|
[41]
|
||||||
Prof. Dr. Sergej Ott = Hof 1, Tisch 41, Nummer 1
|
Markus Nowak = Hof 1, Tisch 41, Nummer 1
|
||||||
Patrick Haas = Hof 1, Tisch 41, Nummer 2
|
Aylin Nowak = Hof 1, Tisch 41, Nummer 2
|
||||||
Dragana Bauer = Hof 1, Tisch 41, Nummer 3
|
Felix Nowak = Hof 1, Tisch 41, Nummer 3
|
||||||
Thomas Krause = Hof 1, Tisch 41, Nummer 4
|
Lina Nowak = Hof 1, Tisch 41, Nummer 4
|
||||||
|
|
||||||
[42]
|
[42]
|
||||||
Emil Koch = Hof 1, Tisch 42, Nummer 1
|
Dragana Bauer = Hof 1, Tisch 42, Nummer 1
|
||||||
Olga Koch = Hof 1, Tisch 42, Nummer 2
|
Thomas Krause = Hof 1, Tisch 42, Nummer 2
|
||||||
Dr. Nicole Hansen = Hof 1, Tisch 42, Nummer 3
|
Nicole Peters = Hof 1, Tisch 42, Nummer 3
|
||||||
Nicole Peters = Hof 1, Tisch 42, Nummer 4
|
Patrick Haas = Hof 1, Tisch 42, Nummer 4
|
||||||
|
|
||||||
[43]
|
[43]
|
||||||
Jan Koch = Hof 1, Tisch 43, Nummer 1
|
Dennis Frank = Hof 1, Tisch 43, Nummer 1
|
||||||
Michael Koch = Hof 1, Tisch 43, Nummer 2
|
Prof. Dr. Sergej Ott = Hof 1, Tisch 43, Nummer 2
|
||||||
Marie Koch = Hof 1, Tisch 43, Nummer 3
|
Dr. Nicole Hansen = Hof 1, Tisch 43, Nummer 3
|
||||||
Sarah Koch = Hof 1, Tisch 43, Nummer 4
|
Marie Frank = Hof 1, Tisch 43, Nummer 4
|
||||||
|
|
||||||
[44]
|
[44]
|
||||||
Jan Braun = Hof 1, Tisch 44, Nummer 1
|
Nadine Frank = Hof 1, Tisch 44, Nummer 1
|
||||||
Dragana Braun = Hof 1, Tisch 44, Nummer 2
|
Lena Frank = Hof 1, Tisch 44, Nummer 2
|
||||||
Nadine Braun = Hof 1, Tisch 44, Nummer 3
|
Finn Frank = Hof 1, Tisch 44, Nummer 3
|
||||||
|
|
||||||
[45]
|
[45]
|
||||||
Matthias Richter = Hof 1, Tisch 45, Nummer 1
|
Nadine Braun = Hof 1, Tisch 45, Nummer 1
|
||||||
Anton Richter = Hof 1, Tisch 45, Nummer 2
|
Milan Braun = Hof 1, Tisch 45, Nummer 2
|
||||||
Greta Richter = Hof 1, Tisch 45, Nummer 3
|
Jan Braun = Hof 1, Tisch 45, Nummer 3
|
||||||
Anja Richter = Hof 1, Tisch 45, Nummer 4
|
|
||||||
|
|
||||||
[46]
|
[46]
|
||||||
Sandra Bianchi = Hof 2, Tisch 46, Nummer 1
|
Christian Arnold = Hof 2, Tisch 46, Nummer 1
|
||||||
Mia Bianchi = Hof 2, Tisch 46, Nummer 2
|
Jennifer Arnold = Hof 2, Tisch 46, Nummer 2
|
||||||
Thomas Bianchi = Hof 2, Tisch 46, Nummer 3
|
Mila Arnold = Hof 2, Tisch 46, Nummer 3
|
||||||
|
|
||||||
[47]
|
[47]
|
||||||
Marija Becker = Hof 2, Tisch 47, Nummer 1
|
Michael Koch = Hof 2, Tisch 47, Nummer 1
|
||||||
Prof. Dr. Yusuf Esposito = Hof 2, Tisch 47, Nummer 2
|
Olga Koch = Hof 2, Tisch 47, Nummer 2
|
||||||
Matthias Kovac = Hof 2, Tisch 47, Nummer 3
|
Jan Koch = Hof 2, Tisch 47, Nummer 3
|
||||||
|
Sarah Koch = Hof 2, Tisch 47, Nummer 4
|
||||||
|
|
||||||
[48]
|
[48]
|
||||||
Luca Kaya = Hof 2, Tisch 48, Nummer 1
|
Katrin Werner = Hof 2, Tisch 48, Nummer 1
|
||||||
Christina Kaya = Hof 2, Tisch 48, Nummer 2
|
Marie Koch = Hof 2, Tisch 48, Nummer 2
|
||||||
Nicole Kaya = Hof 2, Tisch 48, Nummer 3
|
Patrick Busch = Hof 2, Tisch 48, Nummer 3
|
||||||
|
Emil Koch = Hof 2, Tisch 48, Nummer 4
|
||||||
|
|
||||||
[49]
|
[49]
|
||||||
Giovanna Ludwig = Hof 2, Tisch 49, Nummer 1
|
Sergej Lange = Hof 2, Tisch 49, Nummer 1
|
||||||
Elias Ludwig = Hof 2, Tisch 49, Nummer 2
|
Prof. Dr. Dragana Dietrich = Hof 2, Tisch 49, Nummer 2
|
||||||
Emre Ludwig = Hof 2, Tisch 49, Nummer 3
|
Dr. Michael Aksoy = Hof 2, Tisch 49, Nummer 3
|
||||||
Elif Ludwig = Hof 2, Tisch 49, Nummer 4
|
Emre Hoffmann = Hof 2, Tisch 49, Nummer 4
|
||||||
|
|
||||||
[50]
|
[50]
|
||||||
Kathrin Sahin = Hof 2, Tisch 50, Nummer 1
|
Prof. Dr. Dennis Werner = Hof 2, Tisch 50, Nummer 1
|
||||||
Patrick Sahin = Hof 2, Tisch 50, Nummer 2
|
Dr. Thomas Hoffmann = Hof 2, Tisch 50, Nummer 2
|
||||||
Markus Sahin = Hof 2, Tisch 50, Nummer 3
|
Olga Tran = Hof 2, Tisch 50, Nummer 3
|
||||||
Nicole Sahin = Hof 2, Tisch 50, Nummer 4
|
Dr. Anja Seidel = Hof 2, Tisch 50, Nummer 4
|
||||||
|
|
||||||
[51]
|
[51]
|
||||||
Patrick Busch = Hof 2, Tisch 51, Nummer 1
|
Elif Ludwig = Hof 2, Tisch 51, Nummer 1
|
||||||
Emre Hoffmann = Hof 2, Tisch 51, Nummer 2
|
Elias Ludwig = Hof 2, Tisch 51, Nummer 2
|
||||||
Prof. Dr. Dragana Dietrich = Hof 2, Tisch 51, Nummer 3
|
Giovanna Ludwig = Hof 2, Tisch 51, Nummer 3
|
||||||
|
Emre Ludwig = Hof 2, Tisch 51, Nummer 4
|
||||||
|
|
||||||
[52]
|
[52]
|
||||||
Katrin Werner = Hof 2, Tisch 52, Nummer 1
|
Mia Bianchi = Hof 2, Tisch 52, Nummer 1
|
||||||
Sergej Lange = Hof 2, Tisch 52, Nummer 2
|
Sandra Bianchi = Hof 2, Tisch 52, Nummer 2
|
||||||
Dr. Michael Aksoy = Hof 2, Tisch 52, Nummer 3
|
Thomas Bianchi = Hof 2, Tisch 52, Nummer 3
|
||||||
|
|
||||||
[53]
|
[53]
|
||||||
Matthias Schmidt = Hof 2, Tisch 53, Nummer 1
|
Patrick Sahin = Hof 2, Tisch 53, Nummer 1
|
||||||
Giovanna Schmidt = Hof 2, Tisch 53, Nummer 2
|
Nicole Sahin = Hof 2, Tisch 53, Nummer 2
|
||||||
Marie Schmidt = Hof 2, Tisch 53, Nummer 3
|
Markus Sahin = Hof 2, Tisch 53, Nummer 3
|
||||||
|
Kathrin Sahin = Hof 2, Tisch 53, Nummer 4
|
||||||
|
|
||||||
[54]
|
[54]
|
||||||
Jan Becker = Hof 2, Tisch 54, Nummer 1
|
Dr. Aylin Ludwig = Hof 2, Tisch 54, Nummer 1
|
||||||
Nicole Becker = Hof 2, Tisch 54, Nummer 2
|
Giovanna Schwarz = Hof 2, Tisch 54, Nummer 2
|
||||||
Sandra Becker = Hof 2, Tisch 54, Nummer 3
|
Prof. Dr. Marco Seifert = Hof 2, Tisch 54, Nummer 3
|
||||||
|
Matthias Krause = Hof 2, Tisch 54, Nummer 4
|
||||||
|
|
||||||
[55]
|
[55]
|
||||||
Arda Maier = Hof 2, Tisch 55, Nummer 1
|
Olga Maier = Hof 2, Tisch 55, Nummer 1
|
||||||
Olga Maier = Hof 2, Tisch 55, Nummer 2
|
Christian Maier = Hof 2, Tisch 55, Nummer 2
|
||||||
Sarah Maier = Hof 2, Tisch 55, Nummer 3
|
Arda Maier = Hof 2, Tisch 55, Nummer 3
|
||||||
Christian Maier = Hof 2, Tisch 55, Nummer 4
|
Sarah Maier = Hof 2, Tisch 55, Nummer 4
|
||||||
|
|
||||||
[56]
|
[56]
|
||||||
Markus Simon = Hof 2, Tisch 56, Nummer 1
|
Markus Klein = Hof 2, Tisch 56, Nummer 1
|
||||||
Emma Simon = Hof 2, Tisch 56, Nummer 2
|
Nicole Aksoy = Hof 2, Tisch 56, Nummer 2
|
||||||
Andreas Simon = Hof 2, Tisch 56, Nummer 3
|
Daniel Krause = Hof 2, Tisch 56, Nummer 3
|
||||||
Lena Simon = Hof 2, Tisch 56, Nummer 4
|
Prof. Dr. Emre Ludwig = Hof 2, Tisch 56, Nummer 4
|
||||||
|
|
||||||
[57]
|
[57]
|
||||||
Katrin Weber = Hof 2, Tisch 57, Nummer 1
|
Patrick Arnold = Hof 2, Tisch 57, Nummer 1
|
||||||
Dr. Julia Kuhn = Hof 2, Tisch 57, Nummer 2
|
Leni Arnold = Hof 2, Tisch 57, Nummer 2
|
||||||
Prof. Dr. Marco Seifert = Hof 2, Tisch 57, Nummer 3
|
|
||||||
Yusuf Weber = Hof 2, Tisch 57, Nummer 4
|
|
||||||
|
|
||||||
[58]
|
[58]
|
||||||
Giovanna Schwarz = Hof 2, Tisch 58, Nummer 1
|
Emma Simon = Hof 2, Tisch 58, Nummer 1
|
||||||
Dr. Patrick Kraus = Hof 2, Tisch 58, Nummer 2
|
Markus Simon = Hof 2, Tisch 58, Nummer 2
|
||||||
Matthias Krause = Hof 2, Tisch 58, Nummer 3
|
Lena Simon = Hof 2, Tisch 58, Nummer 3
|
||||||
Dr. Aylin Ludwig = Hof 2, Tisch 58, Nummer 4
|
Andreas Simon = Hof 2, Tisch 58, Nummer 4
|
||||||
|
|
||||||
[59]
|
[59]
|
||||||
Patrick Barth = Hof 2, Tisch 59, Nummer 1
|
Dragana Pohl = Hof 2, Tisch 59, Nummer 1
|
||||||
Nadine Barth = Hof 2, Tisch 59, Nummer 2
|
Emre Pohl = Hof 2, Tisch 59, Nummer 2
|
||||||
Lina Barth = Hof 2, Tisch 59, Nummer 3
|
Mia Pohl = Hof 2, Tisch 59, Nummer 3
|
||||||
Timo Barth = Hof 2, Tisch 59, Nummer 4
|
Theo Pohl = Hof 2, Tisch 59, Nummer 4
|
||||||
|
|
||||||
[60]
|
[60]
|
||||||
Dragana Pohl = Hof 2, Tisch 60, Nummer 1
|
Daniel Ott = Hof 2, Tisch 60, Nummer 1
|
||||||
Mia Pohl = Hof 2, Tisch 60, Nummer 2
|
Hannah Ott = Hof 2, Tisch 60, Nummer 2
|
||||||
Theo Pohl = Hof 2, Tisch 60, Nummer 3
|
Melanie Ott = Hof 2, Tisch 60, Nummer 3
|
||||||
Emre Pohl = Hof 2, Tisch 60, Nummer 4
|
|
||||||
|
|
||||||
[61]
|
[61]
|
||||||
Prof. Dr. Dennis Werner = Hof 2, Tisch 61, Nummer 1
|
Emre Busch = Hof 2, Tisch 61, Nummer 1
|
||||||
Dr. Thomas Hoffmann = Hof 2, Tisch 61, Nummer 2
|
Michael Busch = Hof 2, Tisch 61, Nummer 2
|
||||||
Olga Tran = Hof 2, Tisch 61, Nummer 3
|
Marie Busch = Hof 2, Tisch 61, Nummer 3
|
||||||
Dr. Anja Seidel = Hof 2, Tisch 61, Nummer 4
|
Olga Busch = Hof 2, Tisch 61, Nummer 4
|
||||||
|
|
||||||
[62]
|
[62]
|
||||||
Patrick Zimmermann = Hof 2, Tisch 62, Nummer 1
|
Matthias Kovac = Hof 2, Tisch 62, Nummer 1
|
||||||
Dr. Dragana Krause = Hof 2, Tisch 62, Nummer 2
|
Prof. Dr. Yusuf Esposito = Hof 2, Tisch 62, Nummer 2
|
||||||
Luca Ott = Hof 2, Tisch 62, Nummer 3
|
Marija Becker = Hof 2, Tisch 62, Nummer 3
|
||||||
|
|
||||||
[63]
|
[63]
|
||||||
Daniel Nguyen = Hof 2, Tisch 63, Nummer 1
|
Patrick Barth = Hof 2, Tisch 63, Nummer 1
|
||||||
Anja Nguyen = Hof 2, Tisch 63, Nummer 2
|
Nadine Barth = Hof 2, Tisch 63, Nummer 2
|
||||||
Sofia Nguyen = Hof 2, Tisch 63, Nummer 3
|
Lina Barth = Hof 2, Tisch 63, Nummer 3
|
||||||
|
Timo Barth = Hof 2, Tisch 63, Nummer 4
|
||||||
|
|
||||||
[64]
|
[64]
|
||||||
Lina Klein = Hof 2, Tisch 64, Nummer 1
|
Dr. Patrick Kraus = Hof 2, Tisch 64, Nummer 1
|
||||||
Stefanie Klein = Hof 2, Tisch 64, Nummer 2
|
Yusuf Weber = Hof 2, Tisch 64, Nummer 2
|
||||||
Milan Klein = Hof 2, Tisch 64, Nummer 3
|
Stefan Richter = Hof 2, Tisch 64, Nummer 3
|
||||||
|
Prof. Dr. Dennis Schmitt = Hof 2, Tisch 64, Nummer 4
|
||||||
|
|
||||||
[65]
|
[65]
|
||||||
Christian Roth = Hof 2, Tisch 65, Nummer 1
|
Patrick Zimmermann = Hof 2, Tisch 65, Nummer 1
|
||||||
Sarah Roth = Hof 2, Tisch 65, Nummer 2
|
Luca Kovac = Hof 2, Tisch 65, Nummer 2
|
||||||
Sofia Roth = Hof 2, Tisch 65, Nummer 3
|
Luca Ott = Hof 2, Tisch 65, Nummer 3
|
||||||
|
Dr. Dragana Krause = Hof 2, Tisch 65, Nummer 4
|
||||||
|
|
||||||
[66]
|
[66]
|
||||||
Dr. Jan Thiel = Hof 2, Tisch 66, Nummer 1
|
Marco Werner = Hof 2, Tisch 66, Nummer 1
|
||||||
Prof. Dr. Anja Richter = Hof 2, Tisch 66, Nummer 2
|
Sandra Werner = Hof 2, Tisch 66, Nummer 2
|
||||||
Thomas Sahin = Hof 2, Tisch 66, Nummer 3
|
Andreas Werner = Hof 2, Tisch 66, Nummer 3
|
||||||
|
Nadine Werner = Hof 2, Tisch 66, Nummer 4
|
||||||
|
|
||||||
[67]
|
[67]
|
||||||
Dr. Kathrin Koch = Hof 2, Tisch 67, Nummer 1
|
Prof. Dr. Patrick Hoffmann = Hof 2, Tisch 67, Nummer 1
|
||||||
Prof. Dr. Stefan Schmitt = Hof 2, Tisch 67, Nummer 2
|
Nadine Arnold = Hof 2, Tisch 67, Nummer 2
|
||||||
Luca Werner = Hof 2, Tisch 67, Nummer 3
|
Marija Polat = Hof 2, Tisch 67, Nummer 3
|
||||||
Marija Tran = Hof 2, Tisch 67, Nummer 4
|
Marco Richter = Hof 2, Tisch 67, Nummer 4
|
||||||
|
|
||||||
[68]
|
[68]
|
||||||
Markus Polat = Hof 2, Tisch 68, Nummer 1
|
|
||||||
Stefan Polat = Hof 2, Tisch 68, Nummer 2
|
|
||||||
Sarah Polat = Hof 2, Tisch 68, Nummer 3
|
|
||||||
|
|
||||||
[69]
|
[69]
|
||||||
Michael Busch = Hof 2, Tisch 69, Nummer 1
|
Nicole Kaya = Hof 2, Tisch 69, Nummer 1
|
||||||
Emre Busch = Hof 2, Tisch 69, Nummer 2
|
Christina Kaya = Hof 2, Tisch 69, Nummer 2
|
||||||
Marie Busch = Hof 2, Tisch 69, Nummer 3
|
Luca Kaya = Hof 2, Tisch 69, Nummer 3
|
||||||
Olga Busch = Hof 2, Tisch 69, Nummer 4
|
|
||||||
|
|
||||||
[70]
|
[70]
|
||||||
Andreas Werner = Hof 2, Tisch 70, Nummer 1
|
Katrin Polat = Hof 2, Tisch 70, Nummer 1
|
||||||
Sandra Werner = Hof 2, Tisch 70, Nummer 2
|
Matthias Ott = Hof 2, Tisch 70, Nummer 2
|
||||||
Nadine Werner = Hof 2, Tisch 70, Nummer 3
|
Markus Polat = Hof 2, Tisch 70, Nummer 3
|
||||||
Marco Werner = Hof 2, Tisch 70, Nummer 4
|
Olga Ott = Hof 2, Tisch 70, Nummer 4
|
||||||
|
|
||||||
[71]
|
[71]
|
||||||
Daniel Krause = Hof 2, Tisch 71, Nummer 1
|
Sarah Polat = Hof 2, Tisch 71, Nummer 1
|
||||||
Markus Klein = Hof 2, Tisch 71, Nummer 2
|
Stefan Polat = Hof 2, Tisch 71, Nummer 2
|
||||||
Nicole Aksoy = Hof 2, Tisch 71, Nummer 3
|
Stefanie Polat = Hof 2, Tisch 71, Nummer 3
|
||||||
Prof. Dr. Emre Ludwig = Hof 2, Tisch 71, Nummer 4
|
|
||||||
|
|
||||||
[72]
|
[72]
|
||||||
Prof. Dr. Dennis Schmitt = Hof 2, Tisch 72, Nummer 1
|
Thomas Bianchi = Hof 2, Tisch 72, Nummer 1
|
||||||
Stefan Richter = Hof 2, Tisch 72, Nummer 2
|
Olga Roth = Hof 2, Tisch 72, Nummer 2
|
||||||
Luca Kovac = Hof 2, Tisch 72, Nummer 3
|
Dr. Olga Klein = Hof 2, Tisch 72, Nummer 3
|
||||||
|
|
||||||
[73]
|
[73]
|
||||||
Michael Lange = Hof 2, Tisch 73, Nummer 1
|
Julia Wolf = Hof 2, Tisch 73, Nummer 1
|
||||||
Sofia Lange = Hof 2, Tisch 73, Nummer 2
|
Thomas Wolf = Hof 2, Tisch 73, Nummer 2
|
||||||
Jan Lange = Hof 2, Tisch 73, Nummer 3
|
Emma Wolf = Hof 2, Tisch 73, Nummer 3
|
||||||
|
Ben Wolf = Hof 2, Tisch 73, Nummer 4
|
||||||
|
|
||||||
[74]
|
[74]
|
||||||
Jan Zimmermann = Hof 2, Tisch 74, Nummer 1
|
Thomas Neumann = Hof 2, Tisch 74, Nummer 1
|
||||||
Mia Zimmermann = Hof 2, Tisch 74, Nummer 2
|
Matteo Neumann = Hof 2, Tisch 74, Nummer 2
|
||||||
Markus Zimmermann = Hof 2, Tisch 74, Nummer 3
|
Jennifer Neumann = Hof 2, Tisch 74, Nummer 3
|
||||||
Svenja Zimmermann = Hof 2, Tisch 74, Nummer 4
|
Lina Neumann = Hof 2, Tisch 74, Nummer 4
|
||||||
|
|
||||||
[75]
|
[75]
|
||||||
Marija Polat = Hof 2, Tisch 75, Nummer 1
|
Marija Aksoy = Hof 2, Tisch 75, Nummer 1
|
||||||
Nadine Arnold = Hof 2, Tisch 75, Nummer 2
|
Sergej Petrov = Hof 2, Tisch 75, Nummer 2
|
||||||
Prof. Dr. Patrick Hoffmann = Hof 2, Tisch 75, Nummer 3
|
Prof. Dr. Thomas Tran = Hof 2, Tisch 75, Nummer 3
|
||||||
Marco Richter = Hof 2, Tisch 75, Nummer 4
|
Kathrin Polat = Hof 2, Tisch 75, Nummer 4
|
||||||
|
|
||||||
[76]
|
[76]
|
||||||
Melanie Ott = Hof 2, Tisch 76, Nummer 1
|
Giovanna Schmidt = Hof 2, Tisch 76, Nummer 1
|
||||||
Matthias Ott = Hof 2, Tisch 76, Nummer 2
|
Marie Schmidt = Hof 2, Tisch 76, Nummer 2
|
||||||
Hannah Ott = Hof 2, Tisch 76, Nummer 3
|
Matthias Schmidt = Hof 2, Tisch 76, Nummer 3
|
||||||
|
|
||||||
[77]
|
[77]
|
||||||
Katrin Polat = Hof 2, Tisch 77, Nummer 1
|
Nicole Becker = Hof 2, Tisch 77, Nummer 1
|
||||||
Olga Ott = Hof 2, Tisch 77, Nummer 2
|
Sandra Becker = Hof 2, Tisch 77, Nummer 2
|
||||||
Daniel Ott = Hof 2, Tisch 77, Nummer 3
|
Jan Becker = Hof 2, Tisch 77, Nummer 3
|
||||||
Stefanie Polat = Hof 2, Tisch 77, Nummer 4
|
|
||||||
|
|
||||||
[78]
|
[78]
|
||||||
Kathrin Polat = Hof 2, Tisch 78, Nummer 1
|
Leon Horn = Hof 2, Tisch 78, Nummer 1
|
||||||
Marija Aksoy = Hof 2, Tisch 78, Nummer 2
|
Michael Horn = Hof 2, Tisch 78, Nummer 2
|
||||||
Sergej Petrov = Hof 2, Tisch 78, Nummer 3
|
Kathrin Horn = Hof 2, Tisch 78, Nummer 3
|
||||||
Prof. Dr. Thomas Tran = Hof 2, Tisch 78, Nummer 4
|
Layla Horn = Hof 2, Tisch 78, Nummer 4
|
||||||
|
|
||||||
[79]
|
[79]
|
||||||
Ben Stein = Hof 2, Tisch 79, Nummer 1
|
Nicole Wagner = Hof 2, Tisch 79, Nummer 1
|
||||||
Emilia Stein = Hof 2, Tisch 79, Nummer 2
|
Marco Wagner = Hof 2, Tisch 79, Nummer 2
|
||||||
Giovanna Stein = Hof 2, Tisch 79, Nummer 3
|
Sarah Wagner = Hof 2, Tisch 79, Nummer 3
|
||||||
Thomas Stein = Hof 2, Tisch 79, Nummer 4
|
Henry Wagner = Hof 2, Tisch 79, Nummer 4
|
||||||
|
|
||||||
[80]
|
[80]
|
||||||
Olga Franke = Hof 2, Tisch 80, Nummer 1
|
Julia Engel = Hof 2, Tisch 80, Nummer 1
|
||||||
Marco Franke = Hof 2, Tisch 80, Nummer 2
|
Anton Engel = Hof 2, Tisch 80, Nummer 2
|
||||||
Julia Franke = Hof 2, Tisch 80, Nummer 3
|
Prof. Dr. Emre Albrecht = Hof 2, Tisch 80, Nummer 3
|
||||||
|
Dr. Jennifer Arnold = Hof 2, Tisch 80, Nummer 4
|
||||||
|
|
||||||
[81]
|
[81]
|
||||||
Amira Franke = Hof 2, Tisch 81, Nummer 1
|
Daniel Nguyen = Hof 2, Tisch 81, Nummer 1
|
||||||
Michael Franke = Hof 2, Tisch 81, Nummer 2
|
Anja Nguyen = Hof 2, Tisch 81, Nummer 2
|
||||||
Dragana Lange = Hof 2, Tisch 81, Nummer 3
|
Sofia Nguyen = Hof 2, Tisch 81, Nummer 3
|
||||||
Svenja Lange = Hof 2, Tisch 81, Nummer 4
|
|
||||||
|
|
||||||
[82]
|
[82]
|
||||||
Julia Engel = Hof 2, Tisch 82, Nummer 1
|
Milan Klein = Hof 2, Tisch 82, Nummer 1
|
||||||
Anja Engel = Hof 2, Tisch 82, Nummer 2
|
Lina Klein = Hof 2, Tisch 82, Nummer 2
|
||||||
Yusuf Engel = Hof 2, Tisch 82, Nummer 3
|
Stefanie Klein = Hof 2, Tisch 82, Nummer 3
|
||||||
|
|
||||||
[83]
|
[83]
|
||||||
Emma Krause = Hof 2, Tisch 83, Nummer 1
|
Julia Krause = Hof 2, Tisch 83, Nummer 1
|
||||||
Arda Krause = Hof 2, Tisch 83, Nummer 2
|
Emma Krause = Hof 2, Tisch 83, Nummer 2
|
||||||
Andreas Krause = Hof 2, Tisch 83, Nummer 3
|
Arda Krause = Hof 2, Tisch 83, Nummer 3
|
||||||
Julia Krause = Hof 2, Tisch 83, Nummer 4
|
Andreas Krause = Hof 2, Tisch 83, Nummer 4
|
||||||
|
|
||||||
[84]
|
[84]
|
||||||
Thomas Wolf = Hof 2, Tisch 84, Nummer 1
|
Deniz Hartmann = Hof 2, Tisch 84, Nummer 1
|
||||||
Emma Wolf = Hof 2, Tisch 84, Nummer 2
|
Marija Hartmann = Hof 2, Tisch 84, Nummer 2
|
||||||
Julia Wolf = Hof 2, Tisch 84, Nummer 3
|
Nadine Hartmann = Hof 2, Tisch 84, Nummer 3
|
||||||
Ben Wolf = Hof 2, Tisch 84, Nummer 4
|
|
||||||
|
|
||||||
[85]
|
[85]
|
||||||
Layla Horn = Hof 2, Tisch 85, Nummer 1
|
Michael Lange = Hof 2, Tisch 85, Nummer 1
|
||||||
Leon Horn = Hof 2, Tisch 85, Nummer 2
|
Thomas Hartmann = Hof 2, Tisch 85, Nummer 2
|
||||||
Michael Horn = Hof 2, Tisch 85, Nummer 3
|
Sofia Lange = Hof 2, Tisch 85, Nummer 3
|
||||||
Kathrin Horn = Hof 2, Tisch 85, Nummer 4
|
Olga Hartmann = Hof 2, Tisch 85, Nummer 4
|
||||||
|
|
||||||
[86]
|
[86]
|
||||||
|
Svenja Lange = Hof 2, Tisch 86, Nummer 1
|
||||||
|
Jan Lange = Hof 2, Tisch 86, Nummer 2
|
||||||
|
Dragana Lange = Hof 2, Tisch 86, Nummer 3
|
||||||
|
|
||||||
[87]
|
[87]
|
||||||
Deniz Hartmann = Hof 2, Tisch 87, Nummer 1
|
Nicole Engel = Hof 2, Tisch 87, Nummer 1
|
||||||
Olga Hartmann = Hof 2, Tisch 87, Nummer 2
|
Yusuf Engel = Hof 2, Tisch 87, Nummer 2
|
||||||
Thomas Hartmann = Hof 2, Tisch 87, Nummer 3
|
Anja Engel = Hof 2, Tisch 87, Nummer 3
|
||||||
|
|
||||||
[88]
|
[88]
|
||||||
Marija Hartmann = Hof 2, Tisch 88, Nummer 1
|
|
||||||
Nicole Engel = Hof 2, Tisch 88, Nummer 2
|
|
||||||
Anton Engel = Hof 2, Tisch 88, Nummer 3
|
|
||||||
Nadine Hartmann = Hof 2, Tisch 88, Nummer 4
|
|
||||||
|
|
||||||
|
|||||||
@@ -3,454 +3,454 @@
|
|||||||
<rect width="100%" height="100%" fill="white"/>
|
<rect width="100%" height="100%" fill="white"/>
|
||||||
<text x="1100" y="30" text-anchor="middle" font-size="16" fill="#333">Abstammung der Loesungen (Mutationsbaum)</text>
|
<text x="1100" y="30" text-anchor="middle" font-size="16" fill="#333">Abstammung der Loesungen (Mutationsbaum)</text>
|
||||||
<line x1="60.0" y1="60.0" x2="60.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="60.0" y1="60.0" x2="60.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="646.7" y1="60.0" x2="639.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="113.3" y1="60.0" x2="86.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1233.3" y1="60.0" x2="1218.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="166.7" y1="60.0" x2="112.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1820.0" y1="60.0" x2="1797.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="220.0" y1="60.0" x2="139.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1926.7" y1="60.0" x2="1903.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="273.3" y1="60.0" x2="165.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1980.0" y1="60.0" x2="1955.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="326.7" y1="60.0" x2="191.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2033.3" y1="60.0" x2="2008.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="380.0" y1="60.0" x2="218.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2086.7" y1="60.0" x2="2061.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="433.3" y1="60.0" x2="244.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2140.0" y1="60.0" x2="2113.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="486.7" y1="60.0" x2="270.6" y2="150.0" stroke="#c04040" stroke-width="2.5"/>
|
||||||
<line x1="113.3" y1="60.0" x2="112.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="540.0" y1="60.0" x2="297.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="166.7" y1="60.0" x2="165.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="593.3" y1="60.0" x2="323.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="220.0" y1="60.0" x2="218.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="646.7" y1="60.0" x2="349.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="273.3" y1="60.0" x2="270.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="700.0" y1="60.0" x2="375.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="326.7" y1="60.0" x2="323.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="753.3" y1="60.0" x2="402.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="380.0" y1="60.0" x2="375.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="806.7" y1="60.0" x2="428.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="433.3" y1="60.0" x2="428.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="860.0" y1="60.0" x2="454.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="486.7" y1="60.0" x2="481.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="913.3" y1="60.0" x2="481.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="540.0" y1="60.0" x2="533.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="966.7" y1="60.0" x2="507.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="593.3" y1="60.0" x2="586.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1020.0" y1="60.0" x2="533.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="700.0" y1="60.0" x2="691.9" y2="150.0" stroke="#c04040" stroke-width="2.5"/>
|
<line x1="1073.3" y1="60.0" x2="560.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="753.3" y1="60.0" x2="744.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1126.7" y1="60.0" x2="586.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="806.7" y1="60.0" x2="797.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1180.0" y1="60.0" x2="612.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="860.0" y1="60.0" x2="849.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1233.3" y1="60.0" x2="639.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="913.3" y1="60.0" x2="902.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1286.7" y1="60.0" x2="665.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="966.7" y1="60.0" x2="955.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1340.0" y1="60.0" x2="691.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1020.0" y1="60.0" x2="1007.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1393.3" y1="60.0" x2="718.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1073.3" y1="60.0" x2="1060.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1446.7" y1="60.0" x2="744.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1126.7" y1="60.0" x2="1113.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1500.0" y1="60.0" x2="770.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1180.0" y1="60.0" x2="1165.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1553.3" y1="60.0" x2="797.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1286.7" y1="60.0" x2="1271.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1606.7" y1="60.0" x2="823.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1340.0" y1="60.0" x2="1323.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1660.0" y1="60.0" x2="849.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1393.3" y1="60.0" x2="1376.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1713.3" y1="60.0" x2="876.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1446.7" y1="60.0" x2="1429.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1766.7" y1="60.0" x2="902.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1500.0" y1="60.0" x2="1481.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1820.0" y1="60.0" x2="928.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1553.3" y1="60.0" x2="1534.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1873.3" y1="60.0" x2="955.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1606.7" y1="60.0" x2="1587.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1926.7" y1="60.0" x2="981.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1660.0" y1="60.0" x2="1639.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1980.0" y1="60.0" x2="1007.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1713.3" y1="60.0" x2="1692.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2033.3" y1="60.0" x2="1034.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1766.7" y1="60.0" x2="1745.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2086.7" y1="60.0" x2="1060.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1873.3" y1="60.0" x2="1850.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2140.0" y1="60.0" x2="1086.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="60.0" y1="60.0" x2="86.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="60.0" y1="60.0" x2="1113.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="646.7" y1="60.0" x2="665.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="113.3" y1="60.0" x2="1139.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1233.3" y1="60.0" x2="1244.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="166.7" y1="60.0" x2="1165.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1820.0" y1="60.0" x2="1824.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="220.0" y1="60.0" x2="1192.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1926.7" y1="60.0" x2="1929.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="273.3" y1="60.0" x2="1218.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1980.0" y1="60.0" x2="1982.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="326.7" y1="60.0" x2="1244.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2033.3" y1="60.0" x2="2034.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="380.0" y1="60.0" x2="1271.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2086.7" y1="60.0" x2="2087.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="433.3" y1="60.0" x2="1297.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="486.7" y1="60.0" x2="1323.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="540.0" y1="60.0" x2="1350.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="593.3" y1="60.0" x2="1376.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="646.7" y1="60.0" x2="1402.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="700.0" y1="60.0" x2="1429.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="753.3" y1="60.0" x2="1455.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="806.7" y1="60.0" x2="1481.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="860.0" y1="60.0" x2="1508.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="913.3" y1="60.0" x2="1534.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="966.7" y1="60.0" x2="1560.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1020.0" y1="60.0" x2="1587.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1073.3" y1="60.0" x2="1613.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1126.7" y1="60.0" x2="1639.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1180.0" y1="60.0" x2="1666.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1233.3" y1="60.0" x2="1692.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1286.7" y1="60.0" x2="1718.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1340.0" y1="60.0" x2="1745.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1393.3" y1="60.0" x2="1771.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1446.7" y1="60.0" x2="1797.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1500.0" y1="60.0" x2="1824.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1553.3" y1="60.0" x2="1850.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1606.7" y1="60.0" x2="1876.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1660.0" y1="60.0" x2="1903.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1713.3" y1="60.0" x2="1929.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1766.7" y1="60.0" x2="1955.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1820.0" y1="60.0" x2="1982.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1873.3" y1="60.0" x2="2008.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1926.7" y1="60.0" x2="2034.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1980.0" y1="60.0" x2="2061.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="2033.3" y1="60.0" x2="2087.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="2086.7" y1="60.0" x2="2113.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2140.0" y1="60.0" x2="2140.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2140.0" y1="60.0" x2="2140.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="113.3" y1="60.0" x2="139.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="112.7" y1="150.0" x2="60.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="166.7" y1="60.0" x2="191.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="139.0" y1="150.0" x2="91.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="220.0" y1="60.0" x2="244.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="191.6" y1="150.0" x2="122.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="273.3" y1="60.0" x2="297.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="244.3" y1="150.0" x2="153.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="326.7" y1="60.0" x2="349.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="270.6" y1="150.0" x2="184.2" y2="240.0" stroke="#c04040" stroke-width="2.5"/>
|
||||||
<line x1="380.0" y1="60.0" x2="402.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="323.3" y1="150.0" x2="215.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="433.3" y1="60.0" x2="454.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="428.6" y1="150.0" x2="246.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="486.7" y1="60.0" x2="507.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="507.6" y1="150.0" x2="277.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="540.0" y1="60.0" x2="560.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="744.6" y1="150.0" x2="308.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="593.3" y1="60.0" x2="612.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="770.9" y1="150.0" x2="339.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="700.0" y1="60.0" x2="718.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="849.9" y1="150.0" x2="370.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="753.3" y1="60.0" x2="770.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1007.8" y1="150.0" x2="401.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="806.7" y1="60.0" x2="823.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1086.8" y1="150.0" x2="432.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="860.0" y1="60.0" x2="876.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1192.2" y1="150.0" x2="463.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="913.3" y1="60.0" x2="928.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1244.8" y1="150.0" x2="494.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="966.7" y1="60.0" x2="981.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1323.8" y1="150.0" x2="525.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1020.0" y1="60.0" x2="1034.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1376.5" y1="150.0" x2="556.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1073.3" y1="60.0" x2="1086.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1481.8" y1="150.0" x2="587.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1126.7" y1="60.0" x2="1139.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1508.1" y1="150.0" x2="618.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1180.0" y1="60.0" x2="1192.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1560.8" y1="150.0" x2="649.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1286.7" y1="60.0" x2="1297.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1639.7" y1="150.0" x2="680.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1340.0" y1="60.0" x2="1350.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1771.4" y1="150.0" x2="711.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1393.3" y1="60.0" x2="1402.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1850.4" y1="150.0" x2="743.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1446.7" y1="60.0" x2="1455.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1982.0" y1="150.0" x2="774.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1500.0" y1="60.0" x2="1508.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2087.3" y1="150.0" x2="805.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1553.3" y1="60.0" x2="1560.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2140.0" y1="150.0" x2="836.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1606.7" y1="60.0" x2="1613.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="220.0" y1="60.0" x2="867.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1660.0" y1="60.0" x2="1666.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="273.3" y1="60.0" x2="898.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1713.3" y1="60.0" x2="1718.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="326.7" y1="60.0" x2="929.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1766.7" y1="60.0" x2="1771.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="486.7" y1="60.0" x2="960.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1873.3" y1="60.0" x2="1876.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="593.3" y1="60.0" x2="991.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2008.4" y1="150.0" x2="1984.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="806.7" y1="60.0" x2="1022.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2061.0" y1="150.0" x2="2046.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="860.0" y1="60.0" x2="1053.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="112.7" y1="150.0" x2="122.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="966.7" y1="60.0" x2="1084.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="218.0" y1="150.0" x2="246.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="112.7" y1="150.0" x2="1115.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="533.9" y1="150.0" x2="370.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="139.0" y1="150.0" x2="1146.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="691.9" y1="150.0" x2="494.6" y2="240.0" stroke="#c04040" stroke-width="2.5"/>
|
<line x1="191.6" y1="150.0" x2="1177.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="849.9" y1="150.0" x2="618.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="244.3" y1="150.0" x2="1208.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="955.2" y1="150.0" x2="680.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="270.6" y1="150.0" x2="1239.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1007.8" y1="150.0" x2="805.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="323.3" y1="150.0" x2="1270.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1060.5" y1="150.0" x2="867.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="428.6" y1="150.0" x2="1301.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1113.2" y1="150.0" x2="929.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="507.6" y1="150.0" x2="1332.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1165.8" y1="150.0" x2="991.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="744.6" y1="150.0" x2="1363.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1271.1" y1="150.0" x2="1177.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="770.9" y1="150.0" x2="1394.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1323.8" y1="150.0" x2="1301.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="849.9" y1="150.0" x2="1426.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1481.8" y1="150.0" x2="1550.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1007.8" y1="150.0" x2="1457.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1534.4" y1="150.0" x2="1612.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1086.8" y1="150.0" x2="1488.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1745.1" y1="150.0" x2="1860.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1192.2" y1="150.0" x2="1519.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1850.4" y1="150.0" x2="1922.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1244.8" y1="150.0" x2="1550.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2087.3" y1="150.0" x2="2109.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1323.8" y1="150.0" x2="1581.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="139.0" y1="150.0" x2="184.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1376.5" y1="150.0" x2="1612.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="349.6" y1="150.0" x2="308.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1481.8" y1="150.0" x2="1643.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="612.9" y1="150.0" x2="432.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1508.1" y1="150.0" x2="1674.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="770.9" y1="150.0" x2="556.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="981.5" y1="150.0" x2="743.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1192.2" y1="150.0" x2="1053.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1297.5" y1="150.0" x2="1239.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1350.1" y1="150.0" x2="1363.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1402.8" y1="150.0" x2="1426.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1455.4" y1="150.0" x2="1488.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1560.8" y1="150.0" x2="1674.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1613.4" y1="150.0" x2="1736.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1718.7" y1="150.0" x2="1798.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="60.0" y1="60.0" x2="60.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1233.3" y1="60.0" x2="1115.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="2008.4" y1="150.0" x2="2015.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="2061.0" y1="150.0" x2="2077.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="112.7" y1="150.0" x2="153.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="218.0" y1="150.0" x2="277.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="533.9" y1="150.0" x2="401.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="691.9" y1="150.0" x2="525.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="849.9" y1="150.0" x2="649.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="955.2" y1="150.0" x2="711.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1007.8" y1="150.0" x2="836.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1060.5" y1="150.0" x2="898.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1113.2" y1="150.0" x2="960.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1165.8" y1="150.0" x2="1022.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1271.1" y1="150.0" x2="1208.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1323.8" y1="150.0" x2="1332.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1481.8" y1="150.0" x2="1581.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1534.4" y1="150.0" x2="1643.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1745.1" y1="150.0" x2="1891.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1850.4" y1="150.0" x2="1953.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="2087.3" y1="150.0" x2="2140.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="139.0" y1="150.0" x2="215.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="349.6" y1="150.0" x2="339.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="612.9" y1="150.0" x2="463.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="770.9" y1="150.0" x2="587.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="981.5" y1="150.0" x2="774.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1192.2" y1="150.0" x2="1084.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1297.5" y1="150.0" x2="1270.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1350.1" y1="150.0" x2="1394.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1402.8" y1="150.0" x2="1457.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1455.4" y1="150.0" x2="1519.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
|
||||||
<line x1="1560.8" y1="150.0" x2="1705.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1560.8" y1="150.0" x2="1705.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1613.4" y1="150.0" x2="1767.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1639.7" y1="150.0" x2="1736.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1718.7" y1="150.0" x2="1829.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1771.4" y1="150.0" x2="1767.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="60.0" y1="60.0" x2="91.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1850.4" y1="150.0" x2="1798.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1233.3" y1="60.0" x2="1146.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1982.0" y1="150.0" x2="1829.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1984.8" y1="240.0" x2="1875.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2087.3" y1="150.0" x2="1860.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="246.3" y1="240.0" x2="211.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2140.0" y1="150.0" x2="1891.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="494.6" y1="240.0" x2="438.2" y2="330.0" stroke="#c04040" stroke-width="2.5"/>
|
<line x1="220.0" y1="60.0" x2="1922.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="618.8" y1="240.0" x2="589.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="273.3" y1="60.0" x2="1953.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="680.9" y1="240.0" x2="665.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="326.7" y1="60.0" x2="1984.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="805.1" y1="240.0" x2="816.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="486.7" y1="60.0" x2="2015.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="991.3" y1="240.0" x2="967.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="593.3" y1="60.0" x2="2046.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1177.6" y1="240.0" x2="1194.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="806.7" y1="60.0" x2="2077.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1550.1" y1="240.0" x2="1572.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="860.0" y1="60.0" x2="2109.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1612.2" y1="240.0" x2="1648.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="966.7" y1="60.0" x2="2140.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="184.2" y1="240.0" x2="135.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="153.1" y1="240.0" x2="60.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1363.9" y1="240.0" x2="1270.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="184.2" y1="240.0" x2="97.8" y2="330.0" stroke="#c04040" stroke-width="2.5"/>
|
||||||
<line x1="1488.1" y1="240.0" x2="1497.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="215.2" y1="240.0" x2="135.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="525.7" y1="240.0" x2="513.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="277.3" y1="240.0" x2="173.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="711.9" y1="240.0" x2="740.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="339.4" y1="240.0" x2="211.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="898.2" y1="240.0" x2="892.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="370.4" y1="240.0" x2="249.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1022.4" y1="240.0" x2="1043.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="401.5" y1="240.0" x2="286.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1953.7" y1="240.0" x2="1799.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="432.5" y1="240.0" x2="324.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2140.0" y1="240.0" x2="2102.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="494.6" y1="240.0" x2="362.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="463.6" y1="240.0" x2="362.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="525.7" y1="240.0" x2="400.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1394.9" y1="240.0" x2="1345.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="587.8" y1="240.0" x2="438.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1457.0" y1="240.0" x2="1421.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="836.1" y1="240.0" x2="476.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1767.5" y1="240.0" x2="1724.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="867.2" y1="240.0" x2="513.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1146.6" y1="240.0" x2="1118.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="898.2" y1="240.0" x2="551.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2008.4" y1="150.0" x2="1950.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1115.5" y1="240.0" x2="589.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2061.0" y1="150.0" x2="2026.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1146.6" y1="240.0" x2="627.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="112.7" y1="150.0" x2="60.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1208.7" y1="240.0" x2="665.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="218.0" y1="150.0" x2="286.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1426.0" y1="240.0" x2="702.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1984.8" y1="240.0" x2="1913.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1488.1" y1="240.0" x2="740.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="246.3" y1="240.0" x2="249.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1643.3" y1="240.0" x2="778.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="494.6" y1="240.0" x2="476.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1674.3" y1="240.0" x2="816.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="618.8" y1="240.0" x2="627.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1705.4" y1="240.0" x2="854.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="680.9" y1="240.0" x2="702.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1798.5" y1="240.0" x2="892.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="805.1" y1="240.0" x2="854.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1984.8" y1="240.0" x2="929.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="991.3" y1="240.0" x2="1005.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2046.9" y1="240.0" x2="967.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1177.6" y1="240.0" x2="1232.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2077.9" y1="240.0" x2="1005.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1550.1" y1="240.0" x2="1610.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="112.7" y1="150.0" x2="1043.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1612.2" y1="240.0" x2="1686.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="139.0" y1="150.0" x2="1081.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="184.2" y1="240.0" x2="173.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="153.1" y1="240.0" x2="1118.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1363.9" y1="240.0" x2="1308.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="184.2" y1="240.0" x2="1156.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1488.1" y1="240.0" x2="1534.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="215.2" y1="240.0" x2="1194.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="525.7" y1="240.0" x2="551.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="277.3" y1="240.0" x2="1232.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="711.9" y1="240.0" x2="778.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="339.4" y1="240.0" x2="1270.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="898.2" y1="240.0" x2="929.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="370.4" y1="240.0" x2="1308.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1022.4" y1="240.0" x2="1081.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="401.5" y1="240.0" x2="1345.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1953.7" y1="240.0" x2="1837.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="432.5" y1="240.0" x2="1383.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2140.0" y1="240.0" x2="2140.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="494.6" y1="240.0" x2="1421.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="463.6" y1="240.0" x2="400.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="525.7" y1="240.0" x2="1459.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1394.9" y1="240.0" x2="1383.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="587.8" y1="240.0" x2="1497.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1457.0" y1="240.0" x2="1459.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="836.1" y1="240.0" x2="1534.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1767.5" y1="240.0" x2="1761.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="867.2" y1="240.0" x2="1572.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1146.6" y1="240.0" x2="1156.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="898.2" y1="240.0" x2="1610.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2008.4" y1="150.0" x2="1988.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1115.5" y1="240.0" x2="1648.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2061.0" y1="150.0" x2="2064.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1146.6" y1="240.0" x2="1686.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="112.7" y1="150.0" x2="97.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1208.7" y1="240.0" x2="1724.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="218.0" y1="150.0" x2="324.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1426.0" y1="240.0" x2="1761.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="60.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 1, Wert -19.7</title></circle>
|
<line x1="1488.1" y1="240.0" x2="1799.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="646.7" cy="60.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 2, Wert -133.7</title></circle>
|
<line x1="1643.3" y1="240.0" x2="1837.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="1233.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 3, Wert -19.7</title></circle>
|
<line x1="1674.3" y1="240.0" x2="1875.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="1820.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 4, Wert -19.7</title></circle>
|
<line x1="1705.4" y1="240.0" x2="1913.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="1926.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 5, Wert -19.7</title></circle>
|
<line x1="1798.5" y1="240.0" x2="1950.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="1980.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 6, Wert -19.7</title></circle>
|
<line x1="1984.8" y1="240.0" x2="1988.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="2033.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 7, Wert -19.7</title></circle>
|
<line x1="2046.9" y1="240.0" x2="2026.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="2086.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 8, Wert -19.7</title></circle>
|
<line x1="2077.9" y1="240.0" x2="2064.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="2140.0" cy="60.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 9, Wert -60.3</title></circle>
|
<line x1="112.7" y1="150.0" x2="2102.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="113.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 10, Wert -19.7</title></circle>
|
<line x1="139.0" y1="150.0" x2="2140.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<circle cx="166.7" cy="60.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 11, Wert -133.7</title></circle>
|
<circle cx="60.0" cy="60.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 1, Wert -133.7</title></circle>
|
||||||
<circle cx="220.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 12, Wert -19.7</title></circle>
|
<circle cx="113.3" cy="60.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 2, Wert -103.7</title></circle>
|
||||||
<circle cx="273.3" cy="60.0" r="5" fill="#a94237" stroke="#333" stroke-width="0.5"><title>Id 13, Wert -163.7</title></circle>
|
<circle cx="166.7" cy="60.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 3, Wert -67.0</title></circle>
|
||||||
<circle cx="326.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 14, Wert -19.7</title></circle>
|
<circle cx="220.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 4, Wert -19.7</title></circle>
|
||||||
<circle cx="380.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 15, Wert -19.7</title></circle>
|
<circle cx="273.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 5, Wert -19.7</title></circle>
|
||||||
<circle cx="433.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 16, Wert -19.7</title></circle>
|
<circle cx="326.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 6, Wert -19.7</title></circle>
|
||||||
<circle cx="486.7" cy="60.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 17, Wert -67.0</title></circle>
|
<circle cx="380.0" cy="60.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 7, Wert -133.7</title></circle>
|
||||||
<circle cx="540.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 18, Wert -19.7</title></circle>
|
<circle cx="433.3" cy="60.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 8, Wert -67.0</title></circle>
|
||||||
<circle cx="593.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 19, Wert -19.7</title></circle>
|
<circle cx="486.7" cy="60.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 9, Wert -19.7</title></circle>
|
||||||
<circle cx="700.0" cy="60.0" r="7" fill="#527347" stroke="#c04040" stroke-width="2"><title>Id 20, Wert -67.0</title></circle>
|
<circle cx="540.0" cy="60.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 10, Wert -67.0</title></circle>
|
||||||
<circle cx="753.3" cy="60.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 21, Wert -60.3</title></circle>
|
<circle cx="593.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 11, Wert -19.7</title></circle>
|
||||||
<circle cx="806.7" cy="60.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 22, Wert -133.7</title></circle>
|
<circle cx="646.7" cy="60.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 12, Wert -140.3</title></circle>
|
||||||
<circle cx="860.0" cy="60.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 23, Wert -176.3</title></circle>
|
<circle cx="700.0" cy="60.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 13, Wert -133.7</title></circle>
|
||||||
<circle cx="913.3" cy="60.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 24, Wert -133.7</title></circle>
|
<circle cx="753.3" cy="60.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 14, Wert -67.0</title></circle>
|
||||||
<circle cx="966.7" cy="60.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 25, Wert -67.0</title></circle>
|
<circle cx="806.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 15, Wert -19.7</title></circle>
|
||||||
<circle cx="1020.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 26, Wert -19.7</title></circle>
|
<circle cx="860.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 16, Wert -19.7</title></circle>
|
||||||
<circle cx="1073.3" cy="60.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 27, Wert -67.0</title></circle>
|
<circle cx="913.3" cy="60.0" r="5" fill="#686743" stroke="#333" stroke-width="0.5"><title>Id 17, Wert -91.7</title></circle>
|
||||||
<circle cx="1126.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 28, Wert -19.7</title></circle>
|
<circle cx="966.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 18, Wert -19.7</title></circle>
|
||||||
<circle cx="1180.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 29, Wert -19.7</title></circle>
|
<circle cx="1020.0" cy="60.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 19, Wert -103.7</title></circle>
|
||||||
<circle cx="1286.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 30, Wert -19.7</title></circle>
|
<circle cx="1073.3" cy="60.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 20, Wert -133.7</title></circle>
|
||||||
<circle cx="1340.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31, Wert -19.7</title></circle>
|
<circle cx="1126.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 21, Wert -19.7</title></circle>
|
||||||
<circle cx="1393.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 32, Wert -19.7</title></circle>
|
<circle cx="1180.0" cy="60.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 22, Wert -190.3</title></circle>
|
||||||
<circle cx="1446.7" cy="60.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 33, Wert -67.0</title></circle>
|
<circle cx="1233.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 23, Wert -19.7</title></circle>
|
||||||
<circle cx="1500.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 34, Wert -19.7</title></circle>
|
<circle cx="1286.7" cy="60.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 24, Wert -103.7</title></circle>
|
||||||
<circle cx="1553.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 35, Wert -19.7</title></circle>
|
<circle cx="1340.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 25, Wert -19.7</title></circle>
|
||||||
<circle cx="1606.7" cy="60.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 36, Wert -67.0</title></circle>
|
<circle cx="1393.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 26, Wert -19.7</title></circle>
|
||||||
<circle cx="1660.0" cy="60.0" r="5" fill="#746041" stroke="#333" stroke-width="0.5"><title>Id 37, Wert -105.0</title></circle>
|
<circle cx="1446.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27, Wert -19.7</title></circle>
|
||||||
<circle cx="1713.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 38, Wert -19.7</title></circle>
|
<circle cx="1500.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 28, Wert -19.7</title></circle>
|
||||||
<circle cx="1766.7" cy="60.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 39, Wert -60.3</title></circle>
|
<circle cx="1553.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 29, Wert -19.7</title></circle>
|
||||||
<circle cx="1873.3" cy="60.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 40, Wert -67.0</title></circle>
|
<circle cx="1606.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 30, Wert -19.7</title></circle>
|
||||||
<circle cx="60.0" cy="150.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 1.1, Wert -140.3</title></circle>
|
<circle cx="1660.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31, Wert -19.7</title></circle>
|
||||||
<circle cx="639.2" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 2.1, Wert -133.7</title></circle>
|
<circle cx="1713.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 32, Wert -19.7</title></circle>
|
||||||
<circle cx="1218.5" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 3.1, Wert -60.3</title></circle>
|
<circle cx="1766.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 33, Wert -19.7</title></circle>
|
||||||
<circle cx="1797.7" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 4.1, Wert -60.3</title></circle>
|
<circle cx="1820.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 34, Wert -19.7</title></circle>
|
||||||
<circle cx="1903.0" cy="150.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 5.1, Wert -197.0</title></circle>
|
<circle cx="1873.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 35, Wert -19.7</title></circle>
|
||||||
<circle cx="1955.7" cy="150.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 6.1, Wert -176.3</title></circle>
|
<circle cx="1926.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36, Wert -19.7</title></circle>
|
||||||
<circle cx="2008.4" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 7.1, Wert -19.7</title></circle>
|
<circle cx="1980.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 37, Wert -19.7</title></circle>
|
||||||
<circle cx="2061.0" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 8.1, Wert -19.7</title></circle>
|
<circle cx="2033.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 38, Wert -19.7</title></circle>
|
||||||
<circle cx="2113.7" cy="150.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 9.1, Wert -190.3</title></circle>
|
<circle cx="2086.7" cy="60.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 39, Wert -190.3</title></circle>
|
||||||
<circle cx="112.7" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 10.1, Wert -19.7</title></circle>
|
<circle cx="2140.0" cy="60.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 40, Wert -60.3</title></circle>
|
||||||
<circle cx="165.3" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 11.1, Wert -133.7</title></circle>
|
<circle cx="60.0" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 41, Wert -133.7</title></circle>
|
||||||
<circle cx="218.0" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 12.1, Wert -19.7</title></circle>
|
<circle cx="86.3" cy="150.0" r="5" fill="#477a4a" stroke="#333" stroke-width="0.5"><title>Id 42, Wert -55.0</title></circle>
|
||||||
<circle cx="270.6" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 13.1, Wert -60.3</title></circle>
|
<circle cx="112.7" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 43, Wert -19.7</title></circle>
|
||||||
<circle cx="323.3" cy="150.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 14.1, Wert -190.3</title></circle>
|
<circle cx="139.0" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 44, Wert -19.7</title></circle>
|
||||||
<circle cx="375.9" cy="150.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 15.1, Wert -190.3</title></circle>
|
<circle cx="165.3" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 45, Wert -133.7</title></circle>
|
||||||
<circle cx="428.6" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 16.1, Wert -60.3</title></circle>
|
<circle cx="191.6" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 46, Wert -19.7</title></circle>
|
||||||
<circle cx="481.3" cy="150.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 17.1, Wert -140.3</title></circle>
|
<circle cx="218.0" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 47, Wert -85.0</title></circle>
|
||||||
<circle cx="533.9" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 18.1, Wert -19.7</title></circle>
|
<circle cx="244.3" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 48, Wert -19.7</title></circle>
|
||||||
<circle cx="586.6" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 19.1, Wert -60.3</title></circle>
|
<circle cx="270.6" cy="150.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 49, Wert -19.7</title></circle>
|
||||||
<circle cx="691.9" cy="150.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 20.1, Wert -19.7</title></circle>
|
<circle cx="297.0" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 50, Wert -60.3</title></circle>
|
||||||
<circle cx="744.6" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 21.1, Wert -60.3</title></circle>
|
<circle cx="323.3" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 51, Wert -19.7</title></circle>
|
||||||
<circle cx="797.2" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 22.1, Wert -85.0</title></circle>
|
<circle cx="349.6" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 52, Wert -85.0</title></circle>
|
||||||
<circle cx="849.9" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 23.1, Wert -19.7</title></circle>
|
<circle cx="375.9" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 53, Wert -85.0</title></circle>
|
||||||
<circle cx="902.5" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 24.1, Wert -133.7</title></circle>
|
<circle cx="402.3" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 54, Wert -133.7</title></circle>
|
||||||
<circle cx="955.2" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 25.1, Wert -19.7</title></circle>
|
<circle cx="428.6" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 55, Wert -19.7</title></circle>
|
||||||
<circle cx="1007.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 26.1, Wert -19.7</title></circle>
|
<circle cx="454.9" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 56, Wert -60.3</title></circle>
|
||||||
<circle cx="1060.5" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.1, Wert -19.7</title></circle>
|
<circle cx="481.3" cy="150.0" r="5" fill="#686743" stroke="#333" stroke-width="0.5"><title>Id 57, Wert -91.7</title></circle>
|
||||||
<circle cx="1113.2" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 28.1, Wert -19.7</title></circle>
|
<circle cx="507.6" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 58, Wert -19.7</title></circle>
|
||||||
<circle cx="1165.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 29.1, Wert -19.7</title></circle>
|
<circle cx="533.9" cy="150.0" r="5" fill="#477a4a" stroke="#333" stroke-width="0.5"><title>Id 59, Wert -55.0</title></circle>
|
||||||
<circle cx="1271.1" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 30.1, Wert -19.7</title></circle>
|
<circle cx="560.3" cy="150.0" r="5" fill="#477a4a" stroke="#333" stroke-width="0.5"><title>Id 60, Wert -55.0</title></circle>
|
||||||
<circle cx="1323.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.1, Wert -19.7</title></circle>
|
<circle cx="586.6" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 61, Wert -60.3</title></circle>
|
||||||
<circle cx="1376.5" cy="150.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 32.1, Wert -103.7</title></circle>
|
<circle cx="612.9" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 62, Wert -85.0</title></circle>
|
||||||
<circle cx="1429.1" cy="150.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 33.1, Wert -176.3</title></circle>
|
<circle cx="639.2" cy="150.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 63, Wert -140.3</title></circle>
|
||||||
<circle cx="1481.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 34.1, Wert -19.7</title></circle>
|
<circle cx="665.6" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 64, Wert -133.7</title></circle>
|
||||||
<circle cx="1534.4" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 35.1, Wert -19.7</title></circle>
|
<circle cx="691.9" cy="150.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 65, Wert -103.7</title></circle>
|
||||||
<circle cx="1587.1" cy="150.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 36.1, Wert -197.0</title></circle>
|
<circle cx="718.2" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 66, Wert -60.3</title></circle>
|
||||||
<circle cx="1639.7" cy="150.0" r="5" fill="#746041" stroke="#333" stroke-width="0.5"><title>Id 37.1, Wert -105.0</title></circle>
|
<circle cx="744.6" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 67, Wert -19.7</title></circle>
|
||||||
<circle cx="1692.4" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 38.1, Wert -60.3</title></circle>
|
<circle cx="770.9" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 68, Wert -19.7</title></circle>
|
||||||
<circle cx="1745.1" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 39.1, Wert -19.7</title></circle>
|
<circle cx="797.2" cy="150.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 69, Wert -176.3</title></circle>
|
||||||
<circle cx="1850.4" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 40.1, Wert -19.7</title></circle>
|
<circle cx="823.5" cy="150.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 70, Wert -176.3</title></circle>
|
||||||
<circle cx="86.3" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 1.2, Wert -60.3</title></circle>
|
<circle cx="849.9" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 71, Wert -19.7</title></circle>
|
||||||
<circle cx="665.6" cy="150.0" r="5" fill="#477a4a" stroke="#333" stroke-width="0.5"><title>Id 2.2, Wert -55.0</title></circle>
|
<circle cx="876.2" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 72, Wert -60.3</title></circle>
|
||||||
<circle cx="1244.8" cy="150.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 3.2, Wert -176.3</title></circle>
|
<circle cx="902.5" cy="150.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 73, Wert -103.7</title></circle>
|
||||||
<circle cx="1824.1" cy="150.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 4.2, Wert -140.3</title></circle>
|
<circle cx="928.9" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 74, Wert -60.3</title></circle>
|
||||||
<circle cx="1929.4" cy="150.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 5.2, Wert -110.3</title></circle>
|
<circle cx="955.2" cy="150.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 75, Wert -190.3</title></circle>
|
||||||
<circle cx="1982.0" cy="150.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 6.2, Wert -110.3</title></circle>
|
<circle cx="981.5" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 76, Wert -60.3</title></circle>
|
||||||
<circle cx="2034.7" cy="150.0" r="5" fill="#9a4b3a" stroke="#333" stroke-width="0.5"><title>Id 7.2, Wert -147.0</title></circle>
|
<circle cx="1007.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 77, Wert -19.7</title></circle>
|
||||||
<circle cx="2087.3" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 8.2, Wert -19.7</title></circle>
|
<circle cx="1034.2" cy="150.0" r="5" fill="#9a4b3a" stroke="#333" stroke-width="0.5"><title>Id 78, Wert -147.0</title></circle>
|
||||||
<circle cx="2140.0" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 9.2, Wert -60.3</title></circle>
|
<circle cx="1060.5" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 79, Wert -133.7</title></circle>
|
||||||
<circle cx="139.0" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 10.2, Wert -19.7</title></circle>
|
<circle cx="1086.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 80, Wert -19.7</title></circle>
|
||||||
<circle cx="191.6" cy="150.0" r="5" fill="#477a4a" stroke="#333" stroke-width="0.5"><title>Id 11.2, Wert -55.0</title></circle>
|
<circle cx="1113.2" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 81, Wert -133.7</title></circle>
|
||||||
<circle cx="244.3" cy="150.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 12.2, Wert -176.3</title></circle>
|
<circle cx="1139.5" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 82, Wert -133.7</title></circle>
|
||||||
<circle cx="297.0" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 13.2, Wert -60.3</title></circle>
|
<circle cx="1165.8" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 83, Wert -60.3</title></circle>
|
||||||
<circle cx="349.6" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 14.2, Wert -19.7</title></circle>
|
<circle cx="1192.2" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 84, Wert -19.7</title></circle>
|
||||||
<circle cx="402.3" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 15.2, Wert -133.7</title></circle>
|
<circle cx="1218.5" cy="150.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 85, Wert -103.7</title></circle>
|
||||||
<circle cx="454.9" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 16.2, Wert -60.3</title></circle>
|
<circle cx="1244.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 86, Wert -19.7</title></circle>
|
||||||
<circle cx="507.6" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 17.2, Wert -60.3</title></circle>
|
<circle cx="1271.1" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 87, Wert -85.0</title></circle>
|
||||||
<circle cx="560.3" cy="150.0" r="5" fill="#9a4b3a" stroke="#333" stroke-width="0.5"><title>Id 18.2, Wert -147.0</title></circle>
|
<circle cx="1297.5" cy="150.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 88, Wert -190.3</title></circle>
|
||||||
<circle cx="612.9" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 19.2, Wert -19.7</title></circle>
|
<circle cx="1323.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 89, Wert -19.7</title></circle>
|
||||||
<circle cx="718.2" cy="150.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 20.2, Wert -190.3</title></circle>
|
<circle cx="1350.1" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 90, Wert -133.7</title></circle>
|
||||||
<circle cx="770.9" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 21.2, Wert -19.7</title></circle>
|
<circle cx="1376.5" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 91, Wert -19.7</title></circle>
|
||||||
<circle cx="823.5" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 22.2, Wert -85.0</title></circle>
|
<circle cx="1402.8" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 92, Wert -85.0</title></circle>
|
||||||
<circle cx="876.2" cy="150.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 23.2, Wert -176.3</title></circle>
|
<circle cx="1429.1" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 93, Wert -85.0</title></circle>
|
||||||
<circle cx="928.9" cy="150.0" r="5" fill="#477a4a" stroke="#333" stroke-width="0.5"><title>Id 24.2, Wert -55.0</title></circle>
|
<circle cx="1455.4" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 94, Wert -60.3</title></circle>
|
||||||
<circle cx="981.5" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 25.2, Wert -19.7</title></circle>
|
<circle cx="1481.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 95, Wert -19.7</title></circle>
|
||||||
<circle cx="1034.2" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 26.2, Wert -60.3</title></circle>
|
<circle cx="1508.1" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 96, Wert -19.7</title></circle>
|
||||||
<circle cx="1086.8" cy="150.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 27.2, Wert -176.3</title></circle>
|
<circle cx="1534.4" cy="150.0" r="5" fill="#686743" stroke="#333" stroke-width="0.5"><title>Id 97, Wert -91.7</title></circle>
|
||||||
<circle cx="1139.5" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 28.2, Wert -60.3</title></circle>
|
<circle cx="1560.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 98, Wert -19.7</title></circle>
|
||||||
<circle cx="1192.2" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 29.2, Wert -19.7</title></circle>
|
<circle cx="1587.1" cy="150.0" r="5" fill="#477a4a" stroke="#333" stroke-width="0.5"><title>Id 99, Wert -55.0</title></circle>
|
||||||
<circle cx="1297.5" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 30.2, Wert -19.7</title></circle>
|
<circle cx="1613.4" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 100, Wert -133.7</title></circle>
|
||||||
<circle cx="1350.1" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.2, Wert -19.7</title></circle>
|
<circle cx="1639.7" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 101, Wert -19.7</title></circle>
|
||||||
<circle cx="1402.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 32.2, Wert -19.7</title></circle>
|
<circle cx="1666.1" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 102, Wert -85.0</title></circle>
|
||||||
<circle cx="1455.4" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 33.2, Wert -19.7</title></circle>
|
<circle cx="1692.4" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 103, Wert -133.7</title></circle>
|
||||||
<circle cx="1508.1" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 34.2, Wert -60.3</title></circle>
|
<circle cx="1718.7" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 104, Wert -133.7</title></circle>
|
||||||
<circle cx="1560.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 35.2, Wert -19.7</title></circle>
|
<circle cx="1745.1" cy="150.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 105, Wert -103.7</title></circle>
|
||||||
<circle cx="1613.4" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.2, Wert -19.7</title></circle>
|
<circle cx="1771.4" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 106, Wert -19.7</title></circle>
|
||||||
<circle cx="1666.1" cy="150.0" r="5" fill="#746041" stroke="#333" stroke-width="0.5"><title>Id 37.2, Wert -105.0</title></circle>
|
<circle cx="1797.7" cy="150.0" r="5" fill="#bb3934" stroke="#333" stroke-width="0.5"><title>Id 107, Wert -183.0</title></circle>
|
||||||
<circle cx="1718.7" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 38.2, Wert -19.7</title></circle>
|
<circle cx="1824.1" cy="150.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 108, Wert -110.3</title></circle>
|
||||||
<circle cx="1771.4" cy="150.0" r="5" fill="#a94237" stroke="#333" stroke-width="0.5"><title>Id 39.2, Wert -163.7</title></circle>
|
<circle cx="1850.4" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 109, Wert -19.7</title></circle>
|
||||||
<circle cx="1876.7" cy="150.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 40.2, Wert -110.3</title></circle>
|
<circle cx="1876.7" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 110, Wert -60.3</title></circle>
|
||||||
<circle cx="1984.8" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 7.1.1, Wert -19.7</title></circle>
|
<circle cx="1903.0" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 111, Wert -60.3</title></circle>
|
||||||
<circle cx="2046.9" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 8.1.1, Wert -60.3</title></circle>
|
<circle cx="1929.4" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 112, Wert -60.3</title></circle>
|
||||||
<circle cx="122.1" cy="240.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 10.1.1, Wert -133.7</title></circle>
|
<circle cx="1955.7" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 113, Wert -60.3</title></circle>
|
||||||
<circle cx="246.3" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 12.1.1, Wert -19.7</title></circle>
|
<circle cx="1982.0" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 114, Wert -19.7</title></circle>
|
||||||
<circle cx="370.4" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 18.1.1, Wert -60.3</title></circle>
|
<circle cx="2008.4" cy="150.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 115, Wert -60.3</title></circle>
|
||||||
<circle cx="494.6" cy="240.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 20.1.1, Wert -19.7</title></circle>
|
<circle cx="2034.7" cy="150.0" r="5" fill="#7e5b3f" stroke="#333" stroke-width="0.5"><title>Id 116, Wert -115.0</title></circle>
|
||||||
<circle cx="618.8" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 23.1.1, Wert -19.7</title></circle>
|
<circle cx="2061.0" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 117, Wert -133.7</title></circle>
|
||||||
<circle cx="680.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 25.1.1, Wert -19.7</title></circle>
|
<circle cx="2087.3" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 118, Wert -19.7</title></circle>
|
||||||
<circle cx="805.1" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 26.1.1, Wert -19.7</title></circle>
|
<circle cx="2113.7" cy="150.0" r="5" fill="#626a44" stroke="#333" stroke-width="0.5"><title>Id 119, Wert -85.0</title></circle>
|
||||||
<circle cx="867.2" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 27.1.1, Wert -60.3</title></circle>
|
<circle cx="2140.0" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 120, Wert -19.7</title></circle>
|
||||||
<circle cx="929.3" cy="240.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 28.1.1, Wert -140.3</title></circle>
|
<circle cx="60.0" cy="240.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 121, Wert -133.7</title></circle>
|
||||||
<circle cx="991.3" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 29.1.1, Wert -19.7</title></circle>
|
<circle cx="91.0" cy="240.0" r="5" fill="#7f5a3f" stroke="#333" stroke-width="0.5"><title>Id 122, Wert -117.0</title></circle>
|
||||||
<circle cx="1177.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 30.1.1, Wert -19.7</title></circle>
|
<circle cx="122.1" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 123, Wert -60.3</title></circle>
|
||||||
<circle cx="1301.8" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 31.1.1, Wert -60.3</title></circle>
|
<circle cx="153.1" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 124, Wert -19.7</title></circle>
|
||||||
<circle cx="1550.1" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 34.1.1, Wert -19.7</title></circle>
|
<circle cx="184.2" cy="240.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 125, Wert -19.7</title></circle>
|
||||||
<circle cx="1612.2" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 35.1.1, Wert -19.7</title></circle>
|
<circle cx="215.2" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 126, Wert -19.7</title></circle>
|
||||||
<circle cx="1860.6" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 39.1.1, Wert -60.3</title></circle>
|
<circle cx="246.3" cy="240.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 127, Wert -103.7</title></circle>
|
||||||
<circle cx="1922.7" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 40.1.1, Wert -60.3</title></circle>
|
<circle cx="277.3" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 128, Wert -19.7</title></circle>
|
||||||
<circle cx="2109.0" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 8.2.1, Wert -60.3</title></circle>
|
<circle cx="308.4" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 129, Wert -60.3</title></circle>
|
||||||
<circle cx="184.2" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 10.2.1, Wert -19.7</title></circle>
|
<circle cx="339.4" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 130, Wert -19.7</title></circle>
|
||||||
<circle cx="308.4" cy="240.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 14.2.1, Wert -190.3</title></circle>
|
<circle cx="370.4" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 131, Wert -19.7</title></circle>
|
||||||
<circle cx="432.5" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 19.2.1, Wert -60.3</title></circle>
|
<circle cx="401.5" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 132, Wert -19.7</title></circle>
|
||||||
<circle cx="556.7" cy="240.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 21.2.1, Wert -176.3</title></circle>
|
<circle cx="432.5" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 133, Wert -19.7</title></circle>
|
||||||
<circle cx="743.0" cy="240.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 25.2.1, Wert -190.3</title></circle>
|
<circle cx="463.6" cy="240.0" r="5" fill="#9a4b3a" stroke="#333" stroke-width="0.5"><title>Id 134, Wert -147.0</title></circle>
|
||||||
<circle cx="1053.4" cy="240.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 29.2.1, Wert -133.7</title></circle>
|
<circle cx="494.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 135, Wert -19.7</title></circle>
|
||||||
<circle cx="1239.7" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 30.2.1, Wert -60.3</title></circle>
|
<circle cx="525.7" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 136, Wert -19.7</title></circle>
|
||||||
<circle cx="1363.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.2.1, Wert -19.7</title></circle>
|
<circle cx="556.7" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 137, Wert -60.3</title></circle>
|
||||||
<circle cx="1426.0" cy="240.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 32.2.1, Wert -67.0</title></circle>
|
<circle cx="587.8" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 138, Wert -19.7</title></circle>
|
||||||
<circle cx="1488.1" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 33.2.1, Wert -19.7</title></circle>
|
<circle cx="618.8" cy="240.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 139, Wert -110.3</title></circle>
|
||||||
<circle cx="1674.3" cy="240.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 35.2.1, Wert -133.7</title></circle>
|
<circle cx="649.9" cy="240.0" r="5" fill="#bf3633" stroke="#333" stroke-width="0.5"><title>Id 140, Wert -187.7</title></circle>
|
||||||
<circle cx="1736.4" cy="240.0" r="5" fill="#9a4b3a" stroke="#333" stroke-width="0.5"><title>Id 36.2.1, Wert -147.0</title></circle>
|
<circle cx="680.9" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 141, Wert -60.3</title></circle>
|
||||||
<circle cx="1798.5" cy="240.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 38.2.1, Wert -110.3</title></circle>
|
<circle cx="711.9" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 142, Wert -60.3</title></circle>
|
||||||
<circle cx="60.0" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 1.3, Wert -60.3</title></circle>
|
<circle cx="743.0" cy="240.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 143, Wert -110.3</title></circle>
|
||||||
<circle cx="1115.5" cy="240.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 3.3, Wert -176.3</title></circle>
|
<circle cx="774.0" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 144, Wert -60.3</title></circle>
|
||||||
<circle cx="2015.8" cy="240.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 7.1.2, Wert -110.3</title></circle>
|
<circle cx="805.1" cy="240.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 145, Wert -140.3</title></circle>
|
||||||
<circle cx="2077.9" cy="240.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 8.1.2, Wert -197.0</title></circle>
|
<circle cx="836.1" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 146, Wert -19.7</title></circle>
|
||||||
<circle cx="153.1" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 10.1.2, Wert -60.3</title></circle>
|
<circle cx="867.2" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 147, Wert -19.7</title></circle>
|
||||||
<circle cx="277.3" cy="240.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 12.1.2, Wert -190.3</title></circle>
|
<circle cx="898.2" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 148, Wert -19.7</title></circle>
|
||||||
<circle cx="401.5" cy="240.0" r="5" fill="#7f5a3f" stroke="#333" stroke-width="0.5"><title>Id 18.1.2, Wert -117.0</title></circle>
|
<circle cx="929.3" cy="240.0" r="5" fill="#7f5a3f" stroke="#333" stroke-width="0.5"><title>Id 149, Wert -117.0</title></circle>
|
||||||
<circle cx="525.7" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 20.1.2, Wert -19.7</title></circle>
|
<circle cx="960.3" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 150, Wert -60.3</title></circle>
|
||||||
<circle cx="649.9" cy="240.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 23.1.2, Wert -133.7</title></circle>
|
<circle cx="991.3" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 151, Wert -60.3</title></circle>
|
||||||
<circle cx="711.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 25.1.2, Wert -19.7</title></circle>
|
<circle cx="1022.4" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 152, Wert -60.3</title></circle>
|
||||||
<circle cx="836.1" cy="240.0" r="5" fill="#7f5a3f" stroke="#333" stroke-width="0.5"><title>Id 26.1.2, Wert -117.0</title></circle>
|
<circle cx="1053.4" cy="240.0" r="5" fill="#a94237" stroke="#333" stroke-width="0.5"><title>Id 153, Wert -163.7</title></circle>
|
||||||
<circle cx="898.2" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.1.2, Wert -19.7</title></circle>
|
<circle cx="1084.5" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 154, Wert -60.3</title></circle>
|
||||||
<circle cx="960.3" cy="240.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 28.1.2, Wert -110.3</title></circle>
|
<circle cx="1115.5" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 155, Wert -19.7</title></circle>
|
||||||
<circle cx="1022.4" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 29.1.2, Wert -19.7</title></circle>
|
<circle cx="1146.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 156, Wert -19.7</title></circle>
|
||||||
<circle cx="1208.7" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 30.1.2, Wert -60.3</title></circle>
|
<circle cx="1177.6" cy="240.0" r="5" fill="#bb3934" stroke="#333" stroke-width="0.5"><title>Id 157, Wert -183.0</title></circle>
|
||||||
<circle cx="1332.8" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 31.1.2, Wert -60.3</title></circle>
|
<circle cx="1208.7" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 158, Wert -19.7</title></circle>
|
||||||
<circle cx="1581.2" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 34.1.2, Wert -60.3</title></circle>
|
<circle cx="1239.7" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 159, Wert -60.3</title></circle>
|
||||||
<circle cx="1643.3" cy="240.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 35.1.2, Wert -67.0</title></circle>
|
<circle cx="1270.7" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 160, Wert -60.3</title></circle>
|
||||||
<circle cx="1891.6" cy="240.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 39.1.2, Wert -110.3</title></circle>
|
<circle cx="1301.8" cy="240.0" r="5" fill="#a44538" stroke="#333" stroke-width="0.5"><title>Id 161, Wert -157.7</title></circle>
|
||||||
<circle cx="1953.7" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 40.1.2, Wert -19.7</title></circle>
|
<circle cx="1332.8" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 162, Wert -60.3</title></circle>
|
||||||
<circle cx="2140.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 8.2.2, Wert -19.7</title></circle>
|
<circle cx="1363.9" cy="240.0" r="5" fill="#9a4b3a" stroke="#333" stroke-width="0.5"><title>Id 163, Wert -147.0</title></circle>
|
||||||
<circle cx="215.2" cy="240.0" r="5" fill="#7e5b3f" stroke="#333" stroke-width="0.5"><title>Id 10.2.2, Wert -115.0</title></circle>
|
<circle cx="1394.9" cy="240.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 164, Wert -103.7</title></circle>
|
||||||
<circle cx="339.4" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 14.2.2, Wert -60.3</title></circle>
|
<circle cx="1426.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 165, Wert -19.7</title></circle>
|
||||||
<circle cx="463.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 19.2.2, Wert -19.7</title></circle>
|
<circle cx="1457.0" cy="240.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 166, Wert -133.7</title></circle>
|
||||||
<circle cx="587.8" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 21.2.2, Wert -60.3</title></circle>
|
<circle cx="1488.1" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 167, Wert -19.7</title></circle>
|
||||||
<circle cx="774.0" cy="240.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 25.2.2, Wert -103.7</title></circle>
|
<circle cx="1519.1" cy="240.0" r="5" fill="#bb3934" stroke="#333" stroke-width="0.5"><title>Id 168, Wert -183.0</title></circle>
|
||||||
<circle cx="1084.5" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 29.2.2, Wert -60.3</title></circle>
|
<circle cx="1550.1" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 169, Wert -60.3</title></circle>
|
||||||
<circle cx="1270.7" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 30.2.2, Wert -60.3</title></circle>
|
<circle cx="1581.2" cy="240.0" r="5" fill="#bf3633" stroke="#333" stroke-width="0.5"><title>Id 170, Wert -187.7</title></circle>
|
||||||
<circle cx="1394.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.2.2, Wert -19.7</title></circle>
|
<circle cx="1612.2" cy="240.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 171, Wert -190.3</title></circle>
|
||||||
<circle cx="1457.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 32.2.2, Wert -19.7</title></circle>
|
<circle cx="1643.3" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 172, Wert -19.7</title></circle>
|
||||||
<circle cx="1519.1" cy="240.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 33.2.2, Wert -190.3</title></circle>
|
<circle cx="1674.3" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 173, Wert -19.7</title></circle>
|
||||||
<circle cx="1705.4" cy="240.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 35.2.2, Wert -67.0</title></circle>
|
<circle cx="1705.4" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 174, Wert -19.7</title></circle>
|
||||||
<circle cx="1767.5" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.2.2, Wert -19.7</title></circle>
|
<circle cx="1736.4" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 175, Wert -60.3</title></circle>
|
||||||
<circle cx="1829.6" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 38.2.2, Wert -60.3</title></circle>
|
<circle cx="1767.5" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 176, Wert -60.3</title></circle>
|
||||||
<circle cx="91.0" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 1.4, Wert -60.3</title></circle>
|
<circle cx="1798.5" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 177, Wert -19.7</title></circle>
|
||||||
<circle cx="1146.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 3.4, Wert -19.7</title></circle>
|
<circle cx="1829.6" cy="240.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 178, Wert -176.3</title></circle>
|
||||||
<circle cx="1875.3" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 7.1.1.1, Wert -60.3</title></circle>
|
<circle cx="1860.6" cy="240.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 179, Wert -197.0</title></circle>
|
||||||
<circle cx="211.3" cy="330.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 12.1.1.1, Wert -190.3</title></circle>
|
<circle cx="1891.6" cy="240.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 180, Wert -103.7</title></circle>
|
||||||
<circle cx="438.2" cy="330.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 20.1.1.1, Wert -19.7</title></circle>
|
<circle cx="1922.7" cy="240.0" r="5" fill="#9a4b3a" stroke="#333" stroke-width="0.5"><title>Id 181, Wert -147.0</title></circle>
|
||||||
<circle cx="589.5" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 23.1.1.1, Wert -60.3</title></circle>
|
<circle cx="1953.7" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 182, Wert -60.3</title></circle>
|
||||||
<circle cx="665.1" cy="330.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 25.1.1.1, Wert -103.7</title></circle>
|
<circle cx="1984.8" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 183, Wert -19.7</title></circle>
|
||||||
<circle cx="816.4" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 26.1.1.1, Wert -19.7</title></circle>
|
<circle cx="2015.8" cy="240.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 184, Wert -103.7</title></circle>
|
||||||
<circle cx="967.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 29.1.1.1, Wert -19.7</title></circle>
|
<circle cx="2046.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 185, Wert -19.7</title></circle>
|
||||||
<circle cx="1194.5" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 30.1.1.1, Wert -60.3</title></circle>
|
<circle cx="2077.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 186, Wert -19.7</title></circle>
|
||||||
<circle cx="1572.7" cy="330.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 34.1.1.1, Wert -110.3</title></circle>
|
<circle cx="2109.0" cy="240.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 187, Wert -110.3</title></circle>
|
||||||
<circle cx="1648.4" cy="330.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 35.1.1.1, Wert -190.3</title></circle>
|
<circle cx="2140.0" cy="240.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 188, Wert -60.3</title></circle>
|
||||||
<circle cx="135.6" cy="330.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 10.2.1.1, Wert -133.7</title></circle>
|
<circle cx="60.0" cy="330.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 189, Wert -140.3</title></circle>
|
||||||
<circle cx="1270.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.2.1.1, Wert -19.7</title></circle>
|
<circle cx="97.8" cy="330.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 190, Wert -19.7</title></circle>
|
||||||
<circle cx="1497.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 33.2.1.1, Wert -19.7</title></circle>
|
<circle cx="135.6" cy="330.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 191, Wert -103.7</title></circle>
|
||||||
<circle cx="513.8" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 20.1.2.1, Wert -60.3</title></circle>
|
<circle cx="173.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 192, Wert -19.7</title></circle>
|
||||||
<circle cx="740.7" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 25.1.2.1, Wert -19.7</title></circle>
|
<circle cx="211.3" cy="330.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 193, Wert -133.7</title></circle>
|
||||||
<circle cx="892.0" cy="330.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 27.1.2.1, Wert -103.7</title></circle>
|
<circle cx="249.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 194, Wert -19.7</title></circle>
|
||||||
<circle cx="1043.3" cy="330.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 29.1.2.1, Wert -190.3</title></circle>
|
<circle cx="286.9" cy="330.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 195, Wert -103.7</title></circle>
|
||||||
<circle cx="1799.6" cy="330.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 40.1.2.1, Wert -140.3</title></circle>
|
<circle cx="324.7" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 196, Wert -19.7</title></circle>
|
||||||
<circle cx="2102.2" cy="330.0" r="5" fill="#bb3934" stroke="#333" stroke-width="0.5"><title>Id 8.2.2.1, Wert -183.0</title></circle>
|
<circle cx="362.5" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 197, Wert -60.3</title></circle>
|
||||||
<circle cx="362.5" cy="330.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 19.2.2.1, Wert -133.7</title></circle>
|
<circle cx="400.4" cy="330.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 198, Wert -103.7</title></circle>
|
||||||
<circle cx="1345.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.2.2.1, Wert -19.7</title></circle>
|
<circle cx="438.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 199, Wert -19.7</title></circle>
|
||||||
<circle cx="1421.5" cy="330.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 32.2.2.1, Wert -103.7</title></circle>
|
<circle cx="476.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 200, Wert -19.7</title></circle>
|
||||||
<circle cx="1724.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.2.2.1, Wert -19.7</title></circle>
|
<circle cx="513.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 201, Wert -19.7</title></circle>
|
||||||
<circle cx="1118.9" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 3.4.1, Wert -19.7</title></circle>
|
<circle cx="551.6" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 202, Wert -60.3</title></circle>
|
||||||
<circle cx="1950.9" cy="330.0" r="5" fill="#9a4b3a" stroke="#333" stroke-width="0.5"><title>Id 7.1.3, Wert -147.0</title></circle>
|
<circle cx="589.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 203, Wert -19.7</title></circle>
|
||||||
<circle cx="2026.5" cy="330.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 8.1.3, Wert -140.3</title></circle>
|
<circle cx="627.3" cy="330.0" r="5" fill="#9a4b3a" stroke="#333" stroke-width="0.5"><title>Id 204, Wert -147.0</title></circle>
|
||||||
<circle cx="60.0" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 10.1.3, Wert -60.3</title></circle>
|
<circle cx="665.1" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 205, Wert -60.3</title></circle>
|
||||||
<circle cx="286.9" cy="330.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 12.1.3, Wert -103.7</title></circle>
|
<circle cx="702.9" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 206, Wert -19.7</title></circle>
|
||||||
<circle cx="1913.1" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 7.1.1.2, Wert -60.3</title></circle>
|
<circle cx="740.7" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 207, Wert -19.7</title></circle>
|
||||||
<circle cx="249.1" cy="330.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 12.1.1.2, Wert -133.7</title></circle>
|
<circle cx="778.5" cy="330.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 208, Wert -140.3</title></circle>
|
||||||
<circle cx="476.0" cy="330.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 20.1.1.2, Wert -133.7</title></circle>
|
<circle cx="816.4" cy="330.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 209, Wert -110.3</title></circle>
|
||||||
<circle cx="627.3" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 23.1.1.2, Wert -19.7</title></circle>
|
<circle cx="854.2" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 210, Wert -60.3</title></circle>
|
||||||
<circle cx="702.9" cy="330.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 25.1.1.2, Wert -140.3</title></circle>
|
<circle cx="892.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 211, Wert -19.7</title></circle>
|
||||||
<circle cx="854.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 26.1.1.2, Wert -19.7</title></circle>
|
<circle cx="929.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 212, Wert -19.7</title></circle>
|
||||||
<circle cx="1005.5" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 29.1.1.2, Wert -60.3</title></circle>
|
<circle cx="967.6" cy="330.0" r="5" fill="#944e3b" stroke="#333" stroke-width="0.5"><title>Id 213, Wert -140.3</title></circle>
|
||||||
<circle cx="1232.4" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 30.1.1.2, Wert -19.7</title></circle>
|
<circle cx="1005.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 214, Wert -19.7</title></circle>
|
||||||
<circle cx="1610.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 34.1.1.2, Wert -19.7</title></circle>
|
<circle cx="1043.3" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 215, Wert -19.7</title></circle>
|
||||||
<circle cx="1686.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 35.1.1.2, Wert -19.7</title></circle>
|
<circle cx="1081.1" cy="330.0" r="5" fill="#7f5a3f" stroke="#333" stroke-width="0.5"><title>Id 216, Wert -117.0</title></circle>
|
||||||
<circle cx="173.5" cy="330.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 10.2.1.2, Wert -133.7</title></circle>
|
<circle cx="1118.9" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 217, Wert -60.3</title></circle>
|
||||||
<circle cx="1308.0" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 31.2.1.2, Wert -60.3</title></circle>
|
<circle cx="1156.7" cy="330.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 218, Wert -190.3</title></circle>
|
||||||
<circle cx="1534.9" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 33.2.1.2, Wert -19.7</title></circle>
|
<circle cx="1194.5" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 219, Wert -60.3</title></circle>
|
||||||
<circle cx="551.6" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 20.1.2.2, Wert -60.3</title></circle>
|
<circle cx="1232.4" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 220, Wert -60.3</title></circle>
|
||||||
<circle cx="778.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 25.1.2.2, Wert -19.7</title></circle>
|
<circle cx="1270.2" cy="330.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 221, Wert -190.3</title></circle>
|
||||||
<circle cx="929.8" cy="330.0" r="5" fill="#795d40" stroke="#333" stroke-width="0.5"><title>Id 27.1.2.2, Wert -110.3</title></circle>
|
<circle cx="1308.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 222, Wert -19.7</title></circle>
|
||||||
<circle cx="1081.1" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 29.1.2.2, Wert -60.3</title></circle>
|
<circle cx="1345.8" cy="330.0" r="5" fill="#c13533" stroke="#333" stroke-width="0.5"><title>Id 223, Wert -190.3</title></circle>
|
||||||
<circle cx="1837.5" cy="330.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 40.1.2.2, Wert -197.0</title></circle>
|
<circle cx="1383.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 224, Wert -19.7</title></circle>
|
||||||
<circle cx="2140.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 8.2.2.2, Wert -19.7</title></circle>
|
<circle cx="1421.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 225, Wert -19.7</title></circle>
|
||||||
<circle cx="400.4" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 19.2.2.2, Wert -19.7</title></circle>
|
<circle cx="1459.3" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 226, Wert -19.7</title></circle>
|
||||||
<circle cx="1383.6" cy="330.0" r="5" fill="#7f5a3f" stroke="#333" stroke-width="0.5"><title>Id 31.2.2.2, Wert -117.0</title></circle>
|
<circle cx="1497.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 227, Wert -19.7</title></circle>
|
||||||
<circle cx="1459.3" cy="330.0" r="5" fill="#527347" stroke="#333" stroke-width="0.5"><title>Id 32.2.2.2, Wert -67.0</title></circle>
|
<circle cx="1534.9" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 228, Wert -60.3</title></circle>
|
||||||
<circle cx="1761.8" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 36.2.2.2, Wert -60.3</title></circle>
|
<circle cx="1572.7" cy="330.0" r="5" fill="#bb3934" stroke="#333" stroke-width="0.5"><title>Id 229, Wert -183.0</title></circle>
|
||||||
<circle cx="1156.7" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 3.4.2, Wert -19.7</title></circle>
|
<circle cx="1610.5" cy="330.0" r="5" fill="#b53c35" stroke="#333" stroke-width="0.5"><title>Id 230, Wert -176.3</title></circle>
|
||||||
<circle cx="1988.7" cy="330.0" r="5" fill="#2e884e" stroke="#333" stroke-width="0.5"><title>Id 7.1.4, Wert -26.3</title></circle>
|
<circle cx="1648.4" cy="330.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 231, Wert -103.7</title></circle>
|
||||||
<circle cx="2064.4" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 8.1.4, Wert -19.7</title></circle>
|
<circle cx="1686.2" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 232, Wert -60.3</title></circle>
|
||||||
<circle cx="97.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 10.1.4, Wert -19.7</title></circle>
|
<circle cx="1724.0" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 233, Wert -60.3</title></circle>
|
||||||
<circle cx="324.7" cy="330.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 12.1.4, Wert -133.7</title></circle>
|
<circle cx="1761.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 234, Wert -19.7</title></circle>
|
||||||
<text x="438.2" y="352.0" text-anchor="middle" font-size="12" font-weight="bold" fill="#c04040">20.1.1.1</text>
|
<circle cx="1799.6" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 235, Wert -60.3</title></circle>
|
||||||
|
<circle cx="1837.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 236, Wert -19.7</title></circle>
|
||||||
|
<circle cx="1875.3" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 237, Wert -60.3</title></circle>
|
||||||
|
<circle cx="1913.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 238, Wert -19.7</title></circle>
|
||||||
|
<circle cx="1950.9" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 239, Wert -19.7</title></circle>
|
||||||
|
<circle cx="1988.7" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 240, Wert -60.3</title></circle>
|
||||||
|
<circle cx="2026.5" cy="330.0" r="5" fill="#4c7749" stroke="#333" stroke-width="0.5"><title>Id 241, Wert -60.3</title></circle>
|
||||||
|
<circle cx="2064.4" cy="330.0" r="5" fill="#736141" stroke="#333" stroke-width="0.5"><title>Id 242, Wert -103.7</title></circle>
|
||||||
|
<circle cx="2102.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 243, Wert -19.7</title></circle>
|
||||||
|
<circle cx="2140.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 244, Wert -19.7</title></circle>
|
||||||
|
<text x="97.8" y="352.0" text-anchor="middle" font-size="12" font-weight="bold" fill="#c04040">190</text>
|
||||||
<text x="48" y="64.0" text-anchor="end" font-size="11" fill="#666">Gen 0</text>
|
<text x="48" y="64.0" text-anchor="end" font-size="11" fill="#666">Gen 0</text>
|
||||||
<text x="48" y="154.0" text-anchor="end" font-size="11" fill="#666">Gen 1</text>
|
<text x="48" y="154.0" text-anchor="end" font-size="11" fill="#666">Gen 1</text>
|
||||||
<text x="48" y="244.0" text-anchor="end" font-size="11" fill="#666">Gen 2</text>
|
<text x="48" y="244.0" text-anchor="end" font-size="11" fill="#666">Gen 2</text>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
@@ -18,8 +18,8 @@
|
|||||||
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-20</text>
|
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-20</text>
|
||||||
<text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
|
<text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
|
||||||
<polyline points="60.0,60.0 146.7,60.0 233.3,60.0 320.0,60.0 406.7,60.0 493.3,60.0 580.0,60.0 666.7,60.0 753.3,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
|
<polyline points="60.0,60.0 146.7,60.0 233.3,60.0 320.0,60.0 406.7,60.0 493.3,60.0 580.0,60.0 666.7,60.0 753.3,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
|
||||||
<polyline points="60.0,120.3 146.7,166.2 233.3,150.9 320.0,60.0 406.7,157.7 493.3,125.1 580.0,60.0 666.7,164.4 753.3,129.6 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
|
<polyline points="60.0,128.5 146.7,162.3 233.3,151.0 320.0,60.0 406.7,161.7 493.3,127.8 580.0,60.0 666.7,146.8 753.3,117.9 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
|
||||||
<polyline points="60.0,351.5 146.7,390.0 233.3,390.0 320.0,60.0 406.7,390.0 493.3,390.0 580.0,60.0 666.7,390.0 753.3,390.0 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
|
<polyline points="60.0,377.6 146.7,377.6 233.3,377.6 320.0,60.0 406.7,390.0 493.3,390.0 580.0,60.0 666.7,377.6 753.3,377.6 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
|
||||||
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
|
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
|
||||||
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
|
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
|
||||||
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
|
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
@@ -3,454 +3,454 @@
|
|||||||
<rect width="100%" height="100%" fill="white"/>
|
<rect width="100%" height="100%" fill="white"/>
|
||||||
<text x="1100" y="30" text-anchor="middle" font-size="16" fill="#333">Abstammung der Loesungen (Mutationsbaum)</text>
|
<text x="1100" y="30" text-anchor="middle" font-size="16" fill="#333">Abstammung der Loesungen (Mutationsbaum)</text>
|
||||||
<line x1="60.0" y1="60.0" x2="60.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="60.0" y1="60.0" x2="60.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="646.7" y1="60.0" x2="639.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="113.3" y1="60.0" x2="86.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1233.3" y1="60.0" x2="1218.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="166.7" y1="60.0" x2="112.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1820.0" y1="60.0" x2="1797.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="220.0" y1="60.0" x2="139.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1926.7" y1="60.0" x2="1903.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="273.3" y1="60.0" x2="165.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1980.0" y1="60.0" x2="1955.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="326.7" y1="60.0" x2="191.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2033.3" y1="60.0" x2="2008.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="380.0" y1="60.0" x2="218.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2086.7" y1="60.0" x2="2061.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="433.3" y1="60.0" x2="244.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2140.0" y1="60.0" x2="2113.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="486.7" y1="60.0" x2="270.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="113.3" y1="60.0" x2="112.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="540.0" y1="60.0" x2="297.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="166.7" y1="60.0" x2="165.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="593.3" y1="60.0" x2="323.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="220.0" y1="60.0" x2="218.0" y2="150.0" stroke="#c04040" stroke-width="2.5"/>
|
<line x1="646.7" y1="60.0" x2="349.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="273.3" y1="60.0" x2="270.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="700.0" y1="60.0" x2="375.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="326.7" y1="60.0" x2="323.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="753.3" y1="60.0" x2="402.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="380.0" y1="60.0" x2="375.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="806.7" y1="60.0" x2="428.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="433.3" y1="60.0" x2="428.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="860.0" y1="60.0" x2="454.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="486.7" y1="60.0" x2="481.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="913.3" y1="60.0" x2="481.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="540.0" y1="60.0" x2="533.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="966.7" y1="60.0" x2="507.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="593.3" y1="60.0" x2="586.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1020.0" y1="60.0" x2="533.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="700.0" y1="60.0" x2="691.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1073.3" y1="60.0" x2="560.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="753.3" y1="60.0" x2="744.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1126.7" y1="60.0" x2="586.6" y2="150.0" stroke="#c04040" stroke-width="2.5"/>
|
||||||
<line x1="806.7" y1="60.0" x2="797.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1180.0" y1="60.0" x2="612.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="860.0" y1="60.0" x2="849.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1233.3" y1="60.0" x2="639.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="913.3" y1="60.0" x2="902.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1286.7" y1="60.0" x2="665.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="966.7" y1="60.0" x2="955.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1340.0" y1="60.0" x2="691.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1020.0" y1="60.0" x2="1007.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1393.3" y1="60.0" x2="718.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1073.3" y1="60.0" x2="1060.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1446.7" y1="60.0" x2="744.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1126.7" y1="60.0" x2="1113.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1500.0" y1="60.0" x2="770.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1180.0" y1="60.0" x2="1165.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1553.3" y1="60.0" x2="797.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1286.7" y1="60.0" x2="1271.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1606.7" y1="60.0" x2="823.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1340.0" y1="60.0" x2="1323.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1660.0" y1="60.0" x2="849.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1393.3" y1="60.0" x2="1376.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1713.3" y1="60.0" x2="876.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1446.7" y1="60.0" x2="1429.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1766.7" y1="60.0" x2="902.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1500.0" y1="60.0" x2="1481.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1820.0" y1="60.0" x2="928.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1553.3" y1="60.0" x2="1534.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1873.3" y1="60.0" x2="955.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1606.7" y1="60.0" x2="1587.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1926.7" y1="60.0" x2="981.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1660.0" y1="60.0" x2="1639.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1980.0" y1="60.0" x2="1007.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1713.3" y1="60.0" x2="1692.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2033.3" y1="60.0" x2="1034.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1766.7" y1="60.0" x2="1745.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2086.7" y1="60.0" x2="1060.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1873.3" y1="60.0" x2="1850.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2140.0" y1="60.0" x2="1086.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="60.0" y1="60.0" x2="86.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="60.0" y1="60.0" x2="1113.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="646.7" y1="60.0" x2="665.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="113.3" y1="60.0" x2="1139.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1233.3" y1="60.0" x2="1244.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="166.7" y1="60.0" x2="1165.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1820.0" y1="60.0" x2="1824.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="220.0" y1="60.0" x2="1192.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1926.7" y1="60.0" x2="1929.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="273.3" y1="60.0" x2="1218.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1980.0" y1="60.0" x2="1982.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="326.7" y1="60.0" x2="1244.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2033.3" y1="60.0" x2="2034.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="380.0" y1="60.0" x2="1271.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2086.7" y1="60.0" x2="2087.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="433.3" y1="60.0" x2="1297.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="486.7" y1="60.0" x2="1323.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="540.0" y1="60.0" x2="1350.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="593.3" y1="60.0" x2="1376.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="646.7" y1="60.0" x2="1402.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="700.0" y1="60.0" x2="1429.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="753.3" y1="60.0" x2="1455.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="806.7" y1="60.0" x2="1481.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="860.0" y1="60.0" x2="1508.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="913.3" y1="60.0" x2="1534.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="966.7" y1="60.0" x2="1560.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1020.0" y1="60.0" x2="1587.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1073.3" y1="60.0" x2="1613.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1126.7" y1="60.0" x2="1639.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1180.0" y1="60.0" x2="1666.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1233.3" y1="60.0" x2="1692.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1286.7" y1="60.0" x2="1718.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1340.0" y1="60.0" x2="1745.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1393.3" y1="60.0" x2="1771.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1446.7" y1="60.0" x2="1797.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1500.0" y1="60.0" x2="1824.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1553.3" y1="60.0" x2="1850.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1606.7" y1="60.0" x2="1876.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1660.0" y1="60.0" x2="1903.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1713.3" y1="60.0" x2="1929.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1766.7" y1="60.0" x2="1955.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1820.0" y1="60.0" x2="1982.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1873.3" y1="60.0" x2="2008.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1926.7" y1="60.0" x2="2034.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1980.0" y1="60.0" x2="2061.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="2033.3" y1="60.0" x2="2087.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="2086.7" y1="60.0" x2="2113.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2140.0" y1="60.0" x2="2140.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2140.0" y1="60.0" x2="2140.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="113.3" y1="60.0" x2="139.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="139.0" y1="150.0" x2="60.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="166.7" y1="60.0" x2="191.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="270.6" y1="150.0" x2="91.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="220.0" y1="60.0" x2="244.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="349.6" y1="150.0" x2="122.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="273.3" y1="60.0" x2="297.0" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="428.6" y1="150.0" x2="153.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="326.7" y1="60.0" x2="349.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="586.6" y1="150.0" x2="184.2" y2="240.0" stroke="#c04040" stroke-width="2.5"/>
|
||||||
<line x1="380.0" y1="60.0" x2="402.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="770.9" y1="150.0" x2="215.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="433.3" y1="60.0" x2="454.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="902.5" y1="150.0" x2="246.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="486.7" y1="60.0" x2="507.6" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1007.8" y1="150.0" x2="277.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="540.0" y1="60.0" x2="560.3" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1192.2" y1="150.0" x2="308.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="593.3" y1="60.0" x2="612.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1402.8" y1="150.0" x2="339.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="700.0" y1="60.0" x2="718.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1481.8" y1="150.0" x2="370.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="753.3" y1="60.0" x2="770.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1534.4" y1="150.0" x2="401.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="806.7" y1="60.0" x2="823.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1639.7" y1="150.0" x2="432.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="860.0" y1="60.0" x2="876.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1824.1" y1="150.0" x2="463.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="913.3" y1="60.0" x2="928.9" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1955.7" y1="150.0" x2="494.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="966.7" y1="60.0" x2="981.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2087.3" y1="150.0" x2="525.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1020.0" y1="60.0" x2="1034.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="220.0" y1="60.0" x2="556.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1073.3" y1="60.0" x2="1086.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="486.7" y1="60.0" x2="587.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1126.7" y1="60.0" x2="1139.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="646.7" y1="60.0" x2="618.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1180.0" y1="60.0" x2="1192.2" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="913.3" y1="60.0" x2="649.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1286.7" y1="60.0" x2="1297.5" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1126.7" y1="60.0" x2="680.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1340.0" y1="60.0" x2="1350.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1286.7" y1="60.0" x2="711.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1393.3" y1="60.0" x2="1402.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1446.7" y1="60.0" x2="743.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1446.7" y1="60.0" x2="1455.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1500.0" y1="60.0" x2="774.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1500.0" y1="60.0" x2="1508.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2033.3" y1="60.0" x2="805.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1553.3" y1="60.0" x2="1560.8" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="112.7" y1="150.0" x2="836.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1606.7" y1="60.0" x2="1613.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="191.6" y1="150.0" x2="867.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1660.0" y1="60.0" x2="1666.1" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="297.0" y1="150.0" x2="898.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1713.3" y1="60.0" x2="1718.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="612.9" y1="150.0" x2="929.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1766.7" y1="60.0" x2="1771.4" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="691.9" y1="150.0" x2="960.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1873.3" y1="60.0" x2="1876.7" y2="150.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="718.2" y1="150.0" x2="991.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="218.0" y1="150.0" x2="308.4" y2="240.0" stroke="#c04040" stroke-width="2.5"/>
|
<line x1="823.5" y1="150.0" x2="1022.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1060.5" y1="150.0" x2="805.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="849.9" y1="150.0" x2="1053.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1323.8" y1="150.0" x2="1115.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="876.2" y1="150.0" x2="1084.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1534.4" y1="150.0" x2="1363.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="139.0" y1="150.0" x2="1115.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1587.1" y1="150.0" x2="1426.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="270.6" y1="150.0" x2="1146.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1692.4" y1="150.0" x2="1612.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="349.6" y1="150.0" x2="1177.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="402.3" y1="150.0" x2="494.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="428.6" y1="150.0" x2="1208.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1086.8" y1="150.0" x2="867.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="586.6" y1="150.0" x2="1239.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1613.4" y1="150.0" x2="1488.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="770.9" y1="150.0" x2="1270.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="326.7" y1="60.0" x2="370.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="902.5" y1="150.0" x2="1301.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="913.3" y1="60.0" x2="743.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1007.8" y1="150.0" x2="1332.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1073.3" y1="60.0" x2="929.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1192.2" y1="150.0" x2="1363.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1340.0" y1="60.0" x2="1177.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1402.8" y1="150.0" x2="1394.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="60.0" y1="150.0" x2="60.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1481.8" y1="150.0" x2="1426.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1903.0" y1="150.0" x2="1798.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1534.4" y1="150.0" x2="1457.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2008.4" y1="150.0" x2="1922.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1639.7" y1="150.0" x2="1488.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2113.7" y1="150.0" x2="2046.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1824.1" y1="150.0" x2="1519.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="112.7" y1="150.0" x2="184.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1955.7" y1="150.0" x2="1550.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="375.9" y1="150.0" x2="432.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2087.3" y1="150.0" x2="1581.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="428.6" y1="150.0" x2="556.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="220.0" y1="60.0" x2="1612.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="533.9" y1="150.0" x2="618.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="486.7" y1="60.0" x2="1643.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="744.6" y1="150.0" x2="680.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="646.7" y1="60.0" x2="1674.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1113.2" y1="150.0" x2="991.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="913.3" y1="60.0" x2="1705.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1165.8" y1="150.0" x2="1053.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1126.7" y1="60.0" x2="1736.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1376.5" y1="150.0" x2="1239.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1286.7" y1="60.0" x2="1767.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1481.8" y1="150.0" x2="1301.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1446.7" y1="60.0" x2="1798.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1639.7" y1="150.0" x2="1550.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1500.0" y1="60.0" x2="1829.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1745.1" y1="150.0" x2="1674.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="2033.3" y1="60.0" x2="1860.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="86.3" y1="150.0" x2="122.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="112.7" y1="150.0" x2="1891.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1824.1" y1="150.0" x2="1736.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="191.6" y1="150.0" x2="1922.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1929.4" y1="150.0" x2="1860.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="297.0" y1="150.0" x2="1953.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2034.7" y1="150.0" x2="1984.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="612.9" y1="150.0" x2="1984.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2140.0" y1="150.0" x2="2109.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="691.9" y1="150.0" x2="2015.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="139.0" y1="150.0" x2="246.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="718.2" y1="150.0" x2="2046.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="218.0" y1="150.0" x2="339.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="823.5" y1="150.0" x2="2077.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1060.5" y1="150.0" x2="836.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="849.9" y1="150.0" x2="2109.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1323.8" y1="150.0" x2="1146.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="876.2" y1="150.0" x2="2140.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1534.4" y1="150.0" x2="1394.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="91.0" y1="240.0" x2="60.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1587.1" y1="150.0" x2="1457.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="184.2" y1="240.0" x2="97.8" y2="330.0" stroke="#c04040" stroke-width="2.5"/>
|
||||||
<line x1="1692.4" y1="150.0" x2="1643.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="215.2" y1="240.0" x2="135.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="402.3" y1="150.0" x2="525.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="277.3" y1="240.0" x2="173.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1086.8" y1="150.0" x2="898.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="370.4" y1="240.0" x2="211.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1613.4" y1="150.0" x2="1519.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="401.5" y1="240.0" x2="249.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="326.7" y1="60.0" x2="401.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="432.5" y1="240.0" x2="286.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="913.3" y1="60.0" x2="774.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="463.6" y1="240.0" x2="324.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1073.3" y1="60.0" x2="960.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="494.6" y1="240.0" x2="362.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1340.0" y1="60.0" x2="1208.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="525.7" y1="240.0" x2="400.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="60.0" y1="150.0" x2="91.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="556.7" y1="240.0" x2="438.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1903.0" y1="150.0" x2="1829.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="774.0" y1="240.0" x2="476.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2008.4" y1="150.0" x2="1953.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1115.5" y1="240.0" x2="513.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2113.7" y1="150.0" x2="2077.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1146.6" y1="240.0" x2="551.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="112.7" y1="150.0" x2="215.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1177.6" y1="240.0" x2="589.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="375.9" y1="150.0" x2="463.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1363.9" y1="240.0" x2="627.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="428.6" y1="150.0" x2="587.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1426.0" y1="240.0" x2="665.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="533.9" y1="150.0" x2="649.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1457.0" y1="240.0" x2="702.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="744.6" y1="150.0" x2="711.9" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1519.1" y1="240.0" x2="740.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1113.2" y1="150.0" x2="1022.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1550.1" y1="240.0" x2="778.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1165.8" y1="150.0" x2="1084.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1612.2" y1="240.0" x2="816.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1376.5" y1="150.0" x2="1270.7" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1798.5" y1="240.0" x2="854.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1481.8" y1="150.0" x2="1332.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1829.6" y1="240.0" x2="892.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1639.7" y1="150.0" x2="1581.2" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="139.0" y1="150.0" x2="929.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1745.1" y1="150.0" x2="1705.4" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="270.6" y1="150.0" x2="967.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="86.3" y1="150.0" x2="153.1" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="349.6" y1="150.0" x2="1005.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1824.1" y1="150.0" x2="1767.5" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="428.6" y1="150.0" x2="1043.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1929.4" y1="150.0" x2="1891.6" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="586.6" y1="150.0" x2="1081.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2034.7" y1="150.0" x2="2015.8" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="91.0" y1="240.0" x2="1118.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="2140.0" y1="150.0" x2="2140.0" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="184.2" y1="240.0" x2="1156.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="139.0" y1="150.0" x2="277.3" y2="240.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="215.2" y1="240.0" x2="1194.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="308.4" y1="240.0" x2="60.0" y2="330.0" stroke="#c04040" stroke-width="2.5"/>
|
<line x1="277.3" y1="240.0" x2="1232.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="370.4" y1="240.0" x2="1270.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="401.5" y1="240.0" x2="1308.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="432.5" y1="240.0" x2="1345.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="463.6" y1="240.0" x2="1383.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="494.6" y1="240.0" x2="1421.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="525.7" y1="240.0" x2="1459.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="556.7" y1="240.0" x2="1497.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="774.0" y1="240.0" x2="1534.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1115.5" y1="240.0" x2="1572.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1146.6" y1="240.0" x2="1610.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1177.6" y1="240.0" x2="1648.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
|
<line x1="1363.9" y1="240.0" x2="1686.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1426.0" y1="240.0" x2="1724.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1426.0" y1="240.0" x2="1724.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1612.2" y1="240.0" x2="2026.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1457.0" y1="240.0" x2="1761.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="494.6" y1="240.0" x2="438.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1519.1" y1="240.0" x2="1799.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="867.2" y1="240.0" x2="892.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1550.1" y1="240.0" x2="1837.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="929.3" y1="240.0" x2="1118.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1612.2" y1="240.0" x2="1875.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1177.6" y1="240.0" x2="1345.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1798.5" y1="240.0" x2="1913.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="339.4" y1="240.0" x2="135.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="1829.6" y1="240.0" x2="1950.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1394.9" y1="240.0" x2="1572.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="139.0" y1="150.0" x2="1988.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1457.0" y1="240.0" x2="1799.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="270.6" y1="150.0" x2="2026.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="525.7" y1="240.0" x2="513.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="349.6" y1="150.0" x2="2064.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="898.2" y1="240.0" x2="967.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="428.6" y1="150.0" x2="2102.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="774.0" y1="240.0" x2="665.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<line x1="586.6" y1="150.0" x2="2140.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
||||||
<line x1="1208.7" y1="240.0" x2="1421.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="60.0" cy="60.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 1, Wert -30.0</title></circle>
|
||||||
<line x1="463.6" y1="240.0" x2="362.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="113.3" cy="60.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 2, Wert -127.0</title></circle>
|
||||||
<line x1="218.0" y1="150.0" x2="211.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="166.7" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 3, Wert -25.0</title></circle>
|
||||||
<line x1="1060.5" y1="150.0" x2="816.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="220.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 4, Wert -22.0</title></circle>
|
||||||
<line x1="1323.8" y1="150.0" x2="1270.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="273.3" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 5, Wert -25.0</title></circle>
|
||||||
<line x1="1534.4" y1="150.0" x2="1648.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="326.7" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 6, Wert -25.0</title></circle>
|
||||||
<line x1="1587.1" y1="150.0" x2="1875.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="380.0" cy="60.0" r="5" fill="#9b4a3a" stroke="#333" stroke-width="0.5"><title>Id 7, Wert -98.0</title></circle>
|
||||||
<line x1="1692.4" y1="150.0" x2="2102.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="433.3" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 8, Wert -25.0</title></circle>
|
||||||
<line x1="402.3" y1="150.0" x2="589.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="486.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 9, Wert -22.0</title></circle>
|
||||||
<line x1="1086.8" y1="150.0" x2="1043.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="540.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 10, Wert -25.0</title></circle>
|
||||||
<line x1="1613.4" y1="150.0" x2="1950.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="593.3" cy="60.0" r="5" fill="#696743" stroke="#333" stroke-width="0.5"><title>Id 11, Wert -65.0</title></circle>
|
||||||
<line x1="326.7" y1="60.0" x2="286.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="646.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 12, Wert -22.0</title></circle>
|
||||||
<line x1="913.3" y1="60.0" x2="740.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="700.0" cy="60.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 13, Wert -30.0</title></circle>
|
||||||
<line x1="1073.3" y1="60.0" x2="1194.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="753.3" cy="60.0" r="5" fill="#3b804c" stroke="#333" stroke-width="0.5"><title>Id 14, Wert -35.0</title></circle>
|
||||||
<line x1="1340.0" y1="60.0" x2="1497.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="806.7" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 15, Wert -25.0</title></circle>
|
||||||
<line x1="308.4" y1="240.0" x2="97.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="860.0" cy="60.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 16, Wert -68.0</title></circle>
|
||||||
<line x1="1426.0" y1="240.0" x2="1761.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="913.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 17, Wert -22.0</title></circle>
|
||||||
<line x1="1612.2" y1="240.0" x2="2064.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="966.7" cy="60.0" r="5" fill="#9b4a3a" stroke="#333" stroke-width="0.5"><title>Id 18, Wert -98.0</title></circle>
|
||||||
<line x1="494.6" y1="240.0" x2="476.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1020.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 19, Wert -25.0</title></circle>
|
||||||
<line x1="867.2" y1="240.0" x2="929.8" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1073.3" cy="60.0" r="5" fill="#9e4939" stroke="#333" stroke-width="0.5"><title>Id 20, Wert -100.0</title></circle>
|
||||||
<line x1="929.3" y1="240.0" x2="1156.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1126.7" cy="60.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 21, Wert -22.0</title></circle>
|
||||||
<line x1="1177.6" y1="240.0" x2="1383.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1180.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 22, Wert -25.0</title></circle>
|
||||||
<line x1="339.4" y1="240.0" x2="173.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1233.3" cy="60.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 23, Wert -30.0</title></circle>
|
||||||
<line x1="1394.9" y1="240.0" x2="1610.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1286.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 24, Wert -22.0</title></circle>
|
||||||
<line x1="1457.0" y1="240.0" x2="1837.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1340.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 25, Wert -25.0</title></circle>
|
||||||
<line x1="525.7" y1="240.0" x2="551.6" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1393.3" cy="60.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 26, Wert -68.0</title></circle>
|
||||||
<line x1="898.2" y1="240.0" x2="1005.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1446.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27, Wert -22.0</title></circle>
|
||||||
<line x1="774.0" y1="240.0" x2="702.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1500.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 28, Wert -22.0</title></circle>
|
||||||
<line x1="1208.7" y1="240.0" x2="1459.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1553.3" cy="60.0" r="5" fill="#3b804c" stroke="#333" stroke-width="0.5"><title>Id 29, Wert -35.0</title></circle>
|
||||||
<line x1="463.6" y1="240.0" x2="400.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1606.7" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 30, Wert -25.0</title></circle>
|
||||||
<line x1="218.0" y1="150.0" x2="249.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1660.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 31, Wert -25.0</title></circle>
|
||||||
<line x1="1060.5" y1="150.0" x2="854.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1713.3" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 32, Wert -25.0</title></circle>
|
||||||
<line x1="1323.8" y1="150.0" x2="1308.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1766.7" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 33, Wert -25.0</title></circle>
|
||||||
<line x1="1534.4" y1="150.0" x2="1686.2" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1820.0" cy="60.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 34, Wert -68.0</title></circle>
|
||||||
<line x1="1587.1" y1="150.0" x2="1913.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1873.3" cy="60.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 35, Wert -127.0</title></circle>
|
||||||
<line x1="1692.4" y1="150.0" x2="2140.0" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1926.7" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 36, Wert -25.0</title></circle>
|
||||||
<line x1="402.3" y1="150.0" x2="627.3" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="1980.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 37, Wert -25.0</title></circle>
|
||||||
<line x1="1086.8" y1="150.0" x2="1081.1" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="2033.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 38, Wert -22.0</title></circle>
|
||||||
<line x1="1613.4" y1="150.0" x2="1988.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="2086.7" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 39, Wert -25.0</title></circle>
|
||||||
<line x1="326.7" y1="60.0" x2="324.7" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="2140.0" cy="60.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 40, Wert -68.0</title></circle>
|
||||||
<line x1="913.3" y1="60.0" x2="778.5" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="60.0" cy="150.0" r="5" fill="#92503c" stroke="#333" stroke-width="0.5"><title>Id 41, Wert -92.0</title></circle>
|
||||||
<line x1="1073.3" y1="60.0" x2="1232.4" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="86.3" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 42, Wert -30.0</title></circle>
|
||||||
<line x1="1340.0" y1="60.0" x2="1534.9" y2="330.0" stroke="#bbb" stroke-width="1"/>
|
<circle cx="112.7" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 43, Wert -25.0</title></circle>
|
||||||
<circle cx="60.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 1, Wert -25.0</title></circle>
|
<circle cx="139.0" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 44, Wert -22.0</title></circle>
|
||||||
<circle cx="646.7" cy="60.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 2, Wert -68.0</title></circle>
|
<circle cx="165.3" cy="150.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 45, Wert -68.0</title></circle>
|
||||||
<circle cx="1233.3" cy="60.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 3, Wert -30.0</title></circle>
|
<circle cx="191.6" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 46, Wert -25.0</title></circle>
|
||||||
<circle cx="1820.0" cy="60.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 4, Wert -68.0</title></circle>
|
<circle cx="218.0" cy="150.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 47, Wert -127.0</title></circle>
|
||||||
<circle cx="1926.7" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 5, Wert -25.0</title></circle>
|
<circle cx="244.3" cy="150.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 48, Wert -68.0</title></circle>
|
||||||
<circle cx="1980.0" cy="60.0" r="5" fill="#9d4939" stroke="#333" stroke-width="0.5"><title>Id 6, Wert -100.0</title></circle>
|
<circle cx="270.6" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 49, Wert -22.0</title></circle>
|
||||||
<circle cx="2033.3" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 7, Wert -25.0</title></circle>
|
<circle cx="297.0" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 50, Wert -25.0</title></circle>
|
||||||
<circle cx="2086.7" cy="60.0" r="5" fill="#3b804c" stroke="#333" stroke-width="0.5"><title>Id 8, Wert -35.0</title></circle>
|
<circle cx="323.3" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 51, Wert -30.0</title></circle>
|
||||||
<circle cx="2140.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 9, Wert -25.0</title></circle>
|
<circle cx="349.6" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 52, Wert -22.0</title></circle>
|
||||||
<circle cx="113.3" cy="60.0" r="5" fill="#686743" stroke="#333" stroke-width="0.5"><title>Id 10, Wert -65.0</title></circle>
|
<circle cx="375.9" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 53, Wert -89.0</title></circle>
|
||||||
<circle cx="166.7" cy="60.0" r="5" fill="#91503c" stroke="#333" stroke-width="0.5"><title>Id 11, Wert -92.0</title></circle>
|
<circle cx="402.3" cy="150.0" r="5" fill="#86563e" stroke="#333" stroke-width="0.5"><title>Id 54, Wert -84.0</title></circle>
|
||||||
<circle cx="220.0" cy="60.0" r="7" fill="#2c894f" stroke="#c04040" stroke-width="2"><title>Id 12, Wert -25.0</title></circle>
|
<circle cx="428.6" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 55, Wert -22.0</title></circle>
|
||||||
<circle cx="273.3" cy="60.0" r="5" fill="#3b804c" stroke="#333" stroke-width="0.5"><title>Id 13, Wert -35.0</title></circle>
|
<circle cx="454.9" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 56, Wert -89.0</title></circle>
|
||||||
<circle cx="326.7" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 14, Wert -22.0</title></circle>
|
<circle cx="481.3" cy="150.0" r="5" fill="#487a4a" stroke="#333" stroke-width="0.5"><title>Id 57, Wert -43.0</title></circle>
|
||||||
<circle cx="380.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 15, Wert -25.0</title></circle>
|
<circle cx="507.6" cy="150.0" r="5" fill="#9b4a3a" stroke="#333" stroke-width="0.5"><title>Id 58, Wert -98.0</title></circle>
|
||||||
<circle cx="433.3" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 16, Wert -25.0</title></circle>
|
<circle cx="533.9" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 59, Wert -30.0</title></circle>
|
||||||
<circle cx="486.7" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 17, Wert -25.0</title></circle>
|
<circle cx="560.3" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 60, Wert -89.0</title></circle>
|
||||||
<circle cx="540.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 18, Wert -25.0</title></circle>
|
<circle cx="586.6" cy="150.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 61, Wert -22.0</title></circle>
|
||||||
<circle cx="593.3" cy="60.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 19, Wert -68.0</title></circle>
|
<circle cx="612.9" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 62, Wert -25.0</title></circle>
|
||||||
<circle cx="700.0" cy="60.0" r="5" fill="#686743" stroke="#333" stroke-width="0.5"><title>Id 20, Wert -65.0</title></circle>
|
<circle cx="639.2" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 63, Wert -30.0</title></circle>
|
||||||
<circle cx="753.3" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 21, Wert -25.0</title></circle>
|
<circle cx="665.6" cy="150.0" r="5" fill="#696743" stroke="#333" stroke-width="0.5"><title>Id 64, Wert -65.0</title></circle>
|
||||||
<circle cx="806.7" cy="60.0" r="5" fill="#c83232" stroke="#333" stroke-width="0.5"><title>Id 22, Wert -128.0</title></circle>
|
<circle cx="691.9" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 65, Wert -25.0</title></circle>
|
||||||
<circle cx="860.0" cy="60.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 23, Wert -68.0</title></circle>
|
<circle cx="718.2" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 66, Wert -25.0</title></circle>
|
||||||
<circle cx="913.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 24, Wert -22.0</title></circle>
|
<circle cx="744.6" cy="150.0" r="5" fill="#487a4a" stroke="#333" stroke-width="0.5"><title>Id 67, Wert -43.0</title></circle>
|
||||||
<circle cx="966.7" cy="60.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 25, Wert -68.0</title></circle>
|
<circle cx="770.9" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 68, Wert -22.0</title></circle>
|
||||||
<circle cx="1020.0" cy="60.0" r="5" fill="#91503c" stroke="#333" stroke-width="0.5"><title>Id 26, Wert -92.0</title></circle>
|
<circle cx="797.2" cy="150.0" r="5" fill="#c03633" stroke="#333" stroke-width="0.5"><title>Id 69, Wert -122.0</title></circle>
|
||||||
<circle cx="1073.3" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27, Wert -22.0</title></circle>
|
<circle cx="823.5" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 70, Wert -25.0</title></circle>
|
||||||
<circle cx="1126.7" cy="60.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 28, Wert -68.0</title></circle>
|
<circle cx="849.9" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 71, Wert -25.0</title></circle>
|
||||||
<circle cx="1180.0" cy="60.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 29, Wert -68.0</title></circle>
|
<circle cx="876.2" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 72, Wert -25.0</title></circle>
|
||||||
<circle cx="1286.7" cy="60.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 30, Wert -30.0</title></circle>
|
<circle cx="902.5" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 73, Wert -22.0</title></circle>
|
||||||
<circle cx="1340.0" cy="60.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31, Wert -22.0</title></circle>
|
<circle cx="928.9" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 74, Wert -89.0</title></circle>
|
||||||
<circle cx="1393.3" cy="60.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 32, Wert -68.0</title></circle>
|
<circle cx="955.2" cy="150.0" r="5" fill="#92503c" stroke="#333" stroke-width="0.5"><title>Id 75, Wert -92.0</title></circle>
|
||||||
<circle cx="1446.7" cy="60.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 33, Wert -30.0</title></circle>
|
<circle cx="981.5" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 76, Wert -25.0</title></circle>
|
||||||
<circle cx="1500.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 34, Wert -25.0</title></circle>
|
<circle cx="1007.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 77, Wert -22.0</title></circle>
|
||||||
<circle cx="1553.3" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 35, Wert -25.0</title></circle>
|
<circle cx="1034.2" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 78, Wert -25.0</title></circle>
|
||||||
<circle cx="1606.7" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 36, Wert -25.0</title></circle>
|
<circle cx="1060.5" cy="150.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 79, Wert -68.0</title></circle>
|
||||||
<circle cx="1660.0" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 37, Wert -25.0</title></circle>
|
<circle cx="1086.8" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 80, Wert -30.0</title></circle>
|
||||||
<circle cx="1713.3" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 38, Wert -25.0</title></circle>
|
<circle cx="1113.2" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 81, Wert -89.0</title></circle>
|
||||||
<circle cx="1766.7" cy="60.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 39, Wert -25.0</title></circle>
|
<circle cx="1139.5" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 82, Wert -89.0</title></circle>
|
||||||
<circle cx="1873.3" cy="60.0" r="5" fill="#8d533d" stroke="#333" stroke-width="0.5"><title>Id 40, Wert -89.0</title></circle>
|
<circle cx="1165.8" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 83, Wert -25.0</title></circle>
|
||||||
<circle cx="60.0" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 1.1, Wert -25.0</title></circle>
|
<circle cx="1192.2" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 84, Wert -22.0</title></circle>
|
||||||
<circle cx="639.2" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 2.1, Wert -30.0</title></circle>
|
<circle cx="1218.5" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 85, Wert -25.0</title></circle>
|
||||||
<circle cx="1218.5" cy="150.0" r="5" fill="#c63232" stroke="#333" stroke-width="0.5"><title>Id 3.1, Wert -127.0</title></circle>
|
<circle cx="1244.8" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 86, Wert -25.0</title></circle>
|
||||||
<circle cx="1797.7" cy="150.0" r="5" fill="#686743" stroke="#333" stroke-width="0.5"><title>Id 4.1, Wert -65.0</title></circle>
|
<circle cx="1271.1" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 87, Wert -89.0</title></circle>
|
||||||
<circle cx="1903.0" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 5.1, Wert -25.0</title></circle>
|
<circle cx="1297.5" cy="150.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 88, Wert -68.0</title></circle>
|
||||||
<circle cx="1955.7" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 6.1, Wert -30.0</title></circle>
|
<circle cx="1323.8" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 89, Wert -25.0</title></circle>
|
||||||
<circle cx="2008.4" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 7.1, Wert -25.0</title></circle>
|
<circle cx="1350.1" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 90, Wert -25.0</title></circle>
|
||||||
<circle cx="2061.0" cy="150.0" r="5" fill="#85573e" stroke="#333" stroke-width="0.5"><title>Id 8.1, Wert -84.0</title></circle>
|
<circle cx="1376.5" cy="150.0" r="5" fill="#92503c" stroke="#333" stroke-width="0.5"><title>Id 91, Wert -92.0</title></circle>
|
||||||
<circle cx="2113.7" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 9.1, Wert -25.0</title></circle>
|
<circle cx="1402.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 92, Wert -22.0</title></circle>
|
||||||
<circle cx="112.7" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 10.1, Wert -25.0</title></circle>
|
<circle cx="1429.1" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 93, Wert -89.0</title></circle>
|
||||||
<circle cx="165.3" cy="150.0" r="5" fill="#c33432" stroke="#333" stroke-width="0.5"><title>Id 11.1, Wert -125.0</title></circle>
|
<circle cx="1455.4" cy="150.0" r="5" fill="#3b804c" stroke="#333" stroke-width="0.5"><title>Id 94, Wert -35.0</title></circle>
|
||||||
<circle cx="218.0" cy="150.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 12.1, Wert -22.0</title></circle>
|
<circle cx="1481.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 95, Wert -22.0</title></circle>
|
||||||
<circle cx="270.6" cy="150.0" r="5" fill="#8a543d" stroke="#333" stroke-width="0.5"><title>Id 13.1, Wert -87.0</title></circle>
|
<circle cx="1508.1" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 96, Wert -30.0</title></circle>
|
||||||
<circle cx="323.3" cy="150.0" r="5" fill="#477a4a" stroke="#333" stroke-width="0.5"><title>Id 14.1, Wert -43.0</title></circle>
|
<circle cx="1534.4" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 97, Wert -22.0</title></circle>
|
||||||
<circle cx="375.9" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 15.1, Wert -25.0</title></circle>
|
<circle cx="1560.8" cy="150.0" r="5" fill="#92503c" stroke="#333" stroke-width="0.5"><title>Id 98, Wert -92.0</title></circle>
|
||||||
<circle cx="428.6" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 16.1, Wert -25.0</title></circle>
|
<circle cx="1587.1" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 99, Wert -25.0</title></circle>
|
||||||
<circle cx="481.3" cy="150.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 17.1, Wert -68.0</title></circle>
|
<circle cx="1613.4" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 100, Wert -89.0</title></circle>
|
||||||
<circle cx="533.9" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 18.1, Wert -25.0</title></circle>
|
<circle cx="1639.7" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 101, Wert -22.0</title></circle>
|
||||||
<circle cx="586.6" cy="150.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 19.1, Wert -68.0</title></circle>
|
<circle cx="1666.1" cy="150.0" r="5" fill="#974d3b" stroke="#333" stroke-width="0.5"><title>Id 102, Wert -95.0</title></circle>
|
||||||
<circle cx="691.9" cy="150.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 20.1, Wert -68.0</title></circle>
|
<circle cx="1692.4" cy="150.0" r="5" fill="#8e523c" stroke="#333" stroke-width="0.5"><title>Id 103, Wert -89.0</title></circle>
|
||||||
<circle cx="744.6" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 21.1, Wert -25.0</title></circle>
|
<circle cx="1718.7" cy="150.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 104, Wert -68.0</title></circle>
|
||||||
<circle cx="797.2" cy="150.0" r="5" fill="#8d533d" stroke="#333" stroke-width="0.5"><title>Id 22.1, Wert -89.0</title></circle>
|
<circle cx="1745.1" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 105, Wert -25.0</title></circle>
|
||||||
<circle cx="849.9" cy="150.0" r="5" fill="#8d533d" stroke="#333" stroke-width="0.5"><title>Id 23.1, Wert -89.0</title></circle>
|
<circle cx="1771.4" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 106, Wert -30.0</title></circle>
|
||||||
<circle cx="902.5" cy="150.0" r="5" fill="#686743" stroke="#333" stroke-width="0.5"><title>Id 24.1, Wert -65.0</title></circle>
|
<circle cx="1797.7" cy="150.0" r="5" fill="#407e4b" stroke="#333" stroke-width="0.5"><title>Id 107, Wert -38.0</title></circle>
|
||||||
<circle cx="955.2" cy="150.0" r="5" fill="#9d4939" stroke="#333" stroke-width="0.5"><title>Id 25.1, Wert -100.0</title></circle>
|
<circle cx="1824.1" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 108, Wert -22.0</title></circle>
|
||||||
<circle cx="1007.8" cy="150.0" r="5" fill="#c33432" stroke="#333" stroke-width="0.5"><title>Id 26.1, Wert -125.0</title></circle>
|
<circle cx="1850.4" cy="150.0" r="5" fill="#a34638" stroke="#333" stroke-width="0.5"><title>Id 109, Wert -103.0</title></circle>
|
||||||
<circle cx="1060.5" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.1, Wert -22.0</title></circle>
|
<circle cx="1876.7" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 110, Wert -25.0</title></circle>
|
||||||
<circle cx="1113.2" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 28.1, Wert -25.0</title></circle>
|
<circle cx="1903.0" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 111, Wert -25.0</title></circle>
|
||||||
<circle cx="1165.8" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 29.1, Wert -25.0</title></circle>
|
<circle cx="1929.4" cy="150.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 112, Wert -68.0</title></circle>
|
||||||
<circle cx="1271.1" cy="150.0" r="5" fill="#8d533d" stroke="#333" stroke-width="0.5"><title>Id 30.1, Wert -89.0</title></circle>
|
<circle cx="1955.7" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 113, Wert -22.0</title></circle>
|
||||||
<circle cx="1323.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.1, Wert -22.0</title></circle>
|
<circle cx="1982.0" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 114, Wert -30.0</title></circle>
|
||||||
<circle cx="1376.5" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 32.1, Wert -25.0</title></circle>
|
<circle cx="2008.4" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 115, Wert -30.0</title></circle>
|
||||||
<circle cx="1429.1" cy="150.0" r="5" fill="#8d533d" stroke="#333" stroke-width="0.5"><title>Id 33.1, Wert -89.0</title></circle>
|
<circle cx="2034.7" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 116, Wert -25.0</title></circle>
|
||||||
<circle cx="1481.8" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 34.1, Wert -25.0</title></circle>
|
<circle cx="2061.0" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 117, Wert -25.0</title></circle>
|
||||||
<circle cx="1534.4" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 35.1, Wert -22.0</title></circle>
|
<circle cx="2087.3" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 118, Wert -22.0</title></circle>
|
||||||
<circle cx="1587.1" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.1, Wert -22.0</title></circle>
|
<circle cx="2113.7" cy="150.0" r="5" fill="#974d3b" stroke="#333" stroke-width="0.5"><title>Id 119, Wert -95.0</title></circle>
|
||||||
<circle cx="1639.7" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 37.1, Wert -25.0</title></circle>
|
<circle cx="2140.0" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 120, Wert -30.0</title></circle>
|
||||||
<circle cx="1692.4" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 38.1, Wert -22.0</title></circle>
|
<circle cx="60.0" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 121, Wert -25.0</title></circle>
|
||||||
<circle cx="1745.1" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 39.1, Wert -25.0</title></circle>
|
<circle cx="91.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 122, Wert -22.0</title></circle>
|
||||||
<circle cx="1850.4" cy="150.0" r="5" fill="#3b804c" stroke="#333" stroke-width="0.5"><title>Id 40.1, Wert -35.0</title></circle>
|
<circle cx="122.1" cy="240.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 123, Wert -68.0</title></circle>
|
||||||
<circle cx="86.3" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 1.2, Wert -25.0</title></circle>
|
<circle cx="153.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 124, Wert -25.0</title></circle>
|
||||||
<circle cx="665.6" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 2.2, Wert -30.0</title></circle>
|
<circle cx="184.2" cy="240.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 125, Wert -22.0</title></circle>
|
||||||
<circle cx="1244.8" cy="150.0" r="5" fill="#c63232" stroke="#333" stroke-width="0.5"><title>Id 3.2, Wert -127.0</title></circle>
|
<circle cx="215.2" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 126, Wert -22.0</title></circle>
|
||||||
<circle cx="1824.1" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 4.2, Wert -25.0</title></circle>
|
<circle cx="246.3" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 127, Wert -25.0</title></circle>
|
||||||
<circle cx="1929.4" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 5.2, Wert -25.0</title></circle>
|
<circle cx="277.3" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 128, Wert -22.0</title></circle>
|
||||||
<circle cx="1982.0" cy="150.0" r="5" fill="#8d533d" stroke="#333" stroke-width="0.5"><title>Id 6.2, Wert -89.0</title></circle>
|
<circle cx="308.4" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 129, Wert -25.0</title></circle>
|
||||||
<circle cx="2034.7" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 7.2, Wert -25.0</title></circle>
|
<circle cx="339.4" cy="240.0" r="5" fill="#696743" stroke="#333" stroke-width="0.5"><title>Id 130, Wert -65.0</title></circle>
|
||||||
<circle cx="2087.3" cy="150.0" r="5" fill="#686743" stroke="#333" stroke-width="0.5"><title>Id 8.2, Wert -65.0</title></circle>
|
<circle cx="370.4" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 131, Wert -22.0</title></circle>
|
||||||
<circle cx="2140.0" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 9.2, Wert -25.0</title></circle>
|
<circle cx="401.5" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 132, Wert -22.0</title></circle>
|
||||||
<circle cx="139.0" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 10.2, Wert -25.0</title></circle>
|
<circle cx="432.5" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 133, Wert -22.0</title></circle>
|
||||||
<circle cx="191.6" cy="150.0" r="5" fill="#c33432" stroke="#333" stroke-width="0.5"><title>Id 11.2, Wert -125.0</title></circle>
|
<circle cx="463.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 134, Wert -22.0</title></circle>
|
||||||
<circle cx="244.3" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 12.2, Wert -25.0</title></circle>
|
<circle cx="494.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 135, Wert -22.0</title></circle>
|
||||||
<circle cx="297.0" cy="150.0" r="5" fill="#3b804c" stroke="#333" stroke-width="0.5"><title>Id 13.2, Wert -35.0</title></circle>
|
<circle cx="525.7" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 136, Wert -22.0</title></circle>
|
||||||
<circle cx="349.6" cy="150.0" r="5" fill="#477a4a" stroke="#333" stroke-width="0.5"><title>Id 14.2, Wert -43.0</title></circle>
|
<circle cx="556.7" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 137, Wert -22.0</title></circle>
|
||||||
<circle cx="402.3" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 15.2, Wert -22.0</title></circle>
|
<circle cx="587.8" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 138, Wert -25.0</title></circle>
|
||||||
<circle cx="454.9" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 16.2, Wert -25.0</title></circle>
|
<circle cx="618.8" cy="240.0" r="5" fill="#756041" stroke="#333" stroke-width="0.5"><title>Id 139, Wert -73.0</title></circle>
|
||||||
<circle cx="507.6" cy="150.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 17.2, Wert -68.0</title></circle>
|
<circle cx="649.9" cy="240.0" r="5" fill="#756041" stroke="#333" stroke-width="0.5"><title>Id 140, Wert -73.0</title></circle>
|
||||||
<circle cx="560.3" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 18.2, Wert -25.0</title></circle>
|
<circle cx="680.9" cy="240.0" r="5" fill="#c03633" stroke="#333" stroke-width="0.5"><title>Id 141, Wert -122.0</title></circle>
|
||||||
<circle cx="612.9" cy="150.0" r="5" fill="#686743" stroke="#333" stroke-width="0.5"><title>Id 19.2, Wert -65.0</title></circle>
|
<circle cx="711.9" cy="240.0" r="5" fill="#756041" stroke="#333" stroke-width="0.5"><title>Id 142, Wert -73.0</title></circle>
|
||||||
<circle cx="718.2" cy="150.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 20.2, Wert -68.0</title></circle>
|
<circle cx="743.0" cy="240.0" r="5" fill="#756041" stroke="#333" stroke-width="0.5"><title>Id 143, Wert -73.0</title></circle>
|
||||||
<circle cx="770.9" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 21.2, Wert -25.0</title></circle>
|
<circle cx="774.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 144, Wert -22.0</title></circle>
|
||||||
<circle cx="823.5" cy="150.0" r="5" fill="#c63232" stroke="#333" stroke-width="0.5"><title>Id 22.2, Wert -127.0</title></circle>
|
<circle cx="805.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 145, Wert -25.0</title></circle>
|
||||||
<circle cx="876.2" cy="150.0" r="5" fill="#34854d" stroke="#333" stroke-width="0.5"><title>Id 23.2, Wert -30.0</title></circle>
|
<circle cx="836.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 146, Wert -25.0</title></circle>
|
||||||
<circle cx="928.9" cy="150.0" r="5" fill="#706342" stroke="#333" stroke-width="0.5"><title>Id 24.2, Wert -70.0</title></circle>
|
<circle cx="867.2" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 147, Wert -25.0</title></circle>
|
||||||
<circle cx="981.5" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 25.2, Wert -25.0</title></circle>
|
<circle cx="898.2" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 148, Wert -25.0</title></circle>
|
||||||
<circle cx="1034.2" cy="150.0" r="5" fill="#c33432" stroke="#333" stroke-width="0.5"><title>Id 26.2, Wert -125.0</title></circle>
|
<circle cx="929.3" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 149, Wert -25.0</title></circle>
|
||||||
<circle cx="1086.8" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.2, Wert -22.0</title></circle>
|
<circle cx="960.3" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 150, Wert -25.0</title></circle>
|
||||||
<circle cx="1139.5" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 28.2, Wert -25.0</title></circle>
|
<circle cx="991.3" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 151, Wert -25.0</title></circle>
|
||||||
<circle cx="1192.2" cy="150.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 29.2, Wert -68.0</title></circle>
|
<circle cx="1022.4" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 152, Wert -25.0</title></circle>
|
||||||
<circle cx="1297.5" cy="150.0" r="5" fill="#8d533d" stroke="#333" stroke-width="0.5"><title>Id 30.2, Wert -89.0</title></circle>
|
<circle cx="1053.4" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 153, Wert -25.0</title></circle>
|
||||||
<circle cx="1350.1" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 31.2, Wert -25.0</title></circle>
|
<circle cx="1084.5" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 154, Wert -25.0</title></circle>
|
||||||
<circle cx="1402.8" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 32.2, Wert -25.0</title></circle>
|
<circle cx="1115.5" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 155, Wert -22.0</title></circle>
|
||||||
<circle cx="1455.4" cy="150.0" r="5" fill="#c63232" stroke="#333" stroke-width="0.5"><title>Id 33.2, Wert -127.0</title></circle>
|
<circle cx="1146.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 156, Wert -22.0</title></circle>
|
||||||
<circle cx="1508.1" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 34.2, Wert -25.0</title></circle>
|
<circle cx="1177.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 157, Wert -22.0</title></circle>
|
||||||
<circle cx="1560.8" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 35.2, Wert -25.0</title></circle>
|
<circle cx="1208.7" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 158, Wert -25.0</title></circle>
|
||||||
<circle cx="1613.4" cy="150.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.2, Wert -22.0</title></circle>
|
<circle cx="1239.7" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 159, Wert -25.0</title></circle>
|
||||||
<circle cx="1666.1" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 37.2, Wert -25.0</title></circle>
|
<circle cx="1270.7" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 160, Wert -25.0</title></circle>
|
||||||
<circle cx="1718.7" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 38.2, Wert -25.0</title></circle>
|
<circle cx="1301.8" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 161, Wert -25.0</title></circle>
|
||||||
<circle cx="1771.4" cy="150.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 39.2, Wert -25.0</title></circle>
|
<circle cx="1332.8" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 162, Wert -25.0</title></circle>
|
||||||
<circle cx="1876.7" cy="150.0" r="5" fill="#3b804c" stroke="#333" stroke-width="0.5"><title>Id 40.2, Wert -35.0</title></circle>
|
<circle cx="1363.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 163, Wert -22.0</title></circle>
|
||||||
<circle cx="308.4" cy="240.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 12.1.1, Wert -22.0</title></circle>
|
<circle cx="1394.9" cy="240.0" r="5" fill="#716242" stroke="#333" stroke-width="0.5"><title>Id 164, Wert -70.0</title></circle>
|
||||||
<circle cx="805.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 27.1.1, Wert -25.0</title></circle>
|
<circle cx="1426.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 165, Wert -22.0</title></circle>
|
||||||
<circle cx="1115.5" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 31.1.1, Wert -25.0</title></circle>
|
<circle cx="1457.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 166, Wert -22.0</title></circle>
|
||||||
<circle cx="1363.9" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 35.1.1, Wert -25.0</title></circle>
|
<circle cx="1488.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 167, Wert -25.0</title></circle>
|
||||||
<circle cx="1426.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.1.1, Wert -22.0</title></circle>
|
<circle cx="1519.1" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 168, Wert -22.0</title></circle>
|
||||||
<circle cx="1612.2" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 38.1.1, Wert -22.0</title></circle>
|
<circle cx="1550.1" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 169, Wert -22.0</title></circle>
|
||||||
<circle cx="494.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 15.2.1, Wert -22.0</title></circle>
|
<circle cx="1581.2" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 170, Wert -25.0</title></circle>
|
||||||
<circle cx="867.2" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.2.1, Wert -22.0</title></circle>
|
<circle cx="1612.2" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 171, Wert -22.0</title></circle>
|
||||||
<circle cx="1488.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 36.2.1, Wert -25.0</title></circle>
|
<circle cx="1643.3" cy="240.0" r="5" fill="#c03633" stroke="#333" stroke-width="0.5"><title>Id 172, Wert -122.0</title></circle>
|
||||||
<circle cx="370.4" cy="240.0" r="5" fill="#746041" stroke="#333" stroke-width="0.5"><title>Id 14.3, Wert -73.0</title></circle>
|
<circle cx="1674.3" cy="240.0" r="5" fill="#487a4a" stroke="#333" stroke-width="0.5"><title>Id 173, Wert -43.0</title></circle>
|
||||||
<circle cx="743.0" cy="240.0" r="5" fill="#746041" stroke="#333" stroke-width="0.5"><title>Id 24.3, Wert -73.0</title></circle>
|
<circle cx="1705.4" cy="240.0" r="5" fill="#756041" stroke="#333" stroke-width="0.5"><title>Id 174, Wert -73.0</title></circle>
|
||||||
<circle cx="929.3" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.3, Wert -22.0</title></circle>
|
<circle cx="1736.4" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 175, Wert -25.0</title></circle>
|
||||||
<circle cx="1177.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.3, Wert -22.0</title></circle>
|
<circle cx="1767.5" cy="240.0" r="5" fill="#487a4a" stroke="#333" stroke-width="0.5"><title>Id 176, Wert -43.0</title></circle>
|
||||||
<circle cx="60.0" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 1.1.1, Wert -25.0</title></circle>
|
<circle cx="1798.5" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 177, Wert -22.0</title></circle>
|
||||||
<circle cx="1798.5" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 5.1.1, Wert -25.0</title></circle>
|
<circle cx="1829.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 178, Wert -22.0</title></circle>
|
||||||
<circle cx="1922.7" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 7.1.1, Wert -25.0</title></circle>
|
<circle cx="1860.6" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 179, Wert -25.0</title></circle>
|
||||||
<circle cx="2046.9" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 9.1.1, Wert -25.0</title></circle>
|
<circle cx="1891.6" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 180, Wert -25.0</title></circle>
|
||||||
<circle cx="184.2" cy="240.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 10.1.1, Wert -68.0</title></circle>
|
<circle cx="1922.7" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 181, Wert -25.0</title></circle>
|
||||||
<circle cx="432.5" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 15.1.1, Wert -25.0</title></circle>
|
<circle cx="1953.7" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 182, Wert -25.0</title></circle>
|
||||||
<circle cx="556.7" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 16.1.1, Wert -25.0</title></circle>
|
<circle cx="1984.8" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 183, Wert -25.0</title></circle>
|
||||||
<circle cx="618.8" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 18.1.1, Wert -25.0</title></circle>
|
<circle cx="2015.8" cy="240.0" r="5" fill="#6e6442" stroke="#333" stroke-width="0.5"><title>Id 184, Wert -68.0</title></circle>
|
||||||
<circle cx="680.9" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 21.1.1, Wert -25.0</title></circle>
|
<circle cx="2046.9" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 185, Wert -25.0</title></circle>
|
||||||
<circle cx="991.3" cy="240.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 28.1.1, Wert -68.0</title></circle>
|
<circle cx="2077.9" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 186, Wert -25.0</title></circle>
|
||||||
<circle cx="1053.4" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 29.1.1, Wert -25.0</title></circle>
|
<circle cx="2109.0" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 187, Wert -25.0</title></circle>
|
||||||
<circle cx="1239.7" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 32.1.1, Wert -25.0</title></circle>
|
<circle cx="2140.0" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 188, Wert -25.0</title></circle>
|
||||||
<circle cx="1301.8" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 34.1.1, Wert -25.0</title></circle>
|
<circle cx="60.0" cy="330.0" r="5" fill="#c03633" stroke="#333" stroke-width="0.5"><title>Id 189, Wert -122.0</title></circle>
|
||||||
<circle cx="1550.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 37.1.1, Wert -25.0</title></circle>
|
<circle cx="97.8" cy="330.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 190, Wert -22.0</title></circle>
|
||||||
<circle cx="1674.3" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 39.1.1, Wert -25.0</title></circle>
|
<circle cx="135.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 191, Wert -22.0</title></circle>
|
||||||
<circle cx="122.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 1.2.1, Wert -25.0</title></circle>
|
<circle cx="173.5" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 192, Wert -25.0</title></circle>
|
||||||
<circle cx="1736.4" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 4.2.1, Wert -25.0</title></circle>
|
<circle cx="211.3" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 193, Wert -22.0</title></circle>
|
||||||
<circle cx="1860.6" cy="240.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 5.2.1, Wert -68.0</title></circle>
|
<circle cx="249.1" cy="330.0" r="5" fill="#716242" stroke="#333" stroke-width="0.5"><title>Id 194, Wert -70.0</title></circle>
|
||||||
<circle cx="1984.8" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 7.2.1, Wert -25.0</title></circle>
|
<circle cx="286.9" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 195, Wert -25.0</title></circle>
|
||||||
<circle cx="2109.0" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 9.2.1, Wert -25.0</title></circle>
|
<circle cx="324.7" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 196, Wert -25.0</title></circle>
|
||||||
<circle cx="246.3" cy="240.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 10.2.1, Wert -68.0</title></circle>
|
<circle cx="362.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 197, Wert -22.0</title></circle>
|
||||||
<circle cx="339.4" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 12.1.2, Wert -22.0</title></circle>
|
<circle cx="400.4" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 198, Wert -25.0</title></circle>
|
||||||
<circle cx="836.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 27.1.2, Wert -25.0</title></circle>
|
<circle cx="438.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 199, Wert -22.0</title></circle>
|
||||||
<circle cx="1146.6" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 31.1.2, Wert -25.0</title></circle>
|
<circle cx="476.0" cy="330.0" r="5" fill="#c03633" stroke="#333" stroke-width="0.5"><title>Id 200, Wert -122.0</title></circle>
|
||||||
<circle cx="1394.9" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 35.1.2, Wert -22.0</title></circle>
|
<circle cx="513.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 201, Wert -22.0</title></circle>
|
||||||
<circle cx="1457.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.1.2, Wert -22.0</title></circle>
|
<circle cx="551.6" cy="330.0" r="5" fill="#c03633" stroke="#333" stroke-width="0.5"><title>Id 202, Wert -122.0</title></circle>
|
||||||
<circle cx="1643.3" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 38.1.2, Wert -25.0</title></circle>
|
<circle cx="589.5" cy="330.0" r="5" fill="#696743" stroke="#333" stroke-width="0.5"><title>Id 203, Wert -65.0</title></circle>
|
||||||
<circle cx="525.7" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 15.2.2, Wert -22.0</title></circle>
|
<circle cx="627.3" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 204, Wert -22.0</title></circle>
|
||||||
<circle cx="898.2" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.2.2, Wert -22.0</title></circle>
|
<circle cx="665.1" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 205, Wert -25.0</title></circle>
|
||||||
<circle cx="1519.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 36.2.2, Wert -25.0</title></circle>
|
<circle cx="702.9" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 206, Wert -22.0</title></circle>
|
||||||
<circle cx="401.5" cy="240.0" r="5" fill="#746041" stroke="#333" stroke-width="0.5"><title>Id 14.4, Wert -73.0</title></circle>
|
<circle cx="740.7" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 207, Wert -25.0</title></circle>
|
||||||
<circle cx="774.0" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 24.4, Wert -22.0</title></circle>
|
<circle cx="778.5" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 208, Wert -25.0</title></circle>
|
||||||
<circle cx="960.3" cy="240.0" r="5" fill="#be3733" stroke="#333" stroke-width="0.5"><title>Id 27.4, Wert -122.0</title></circle>
|
<circle cx="816.4" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 209, Wert -22.0</title></circle>
|
||||||
<circle cx="1208.7" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.4, Wert -22.0</title></circle>
|
<circle cx="854.2" cy="330.0" r="5" fill="#696743" stroke="#333" stroke-width="0.5"><title>Id 210, Wert -65.0</title></circle>
|
||||||
<circle cx="91.0" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 1.1.2, Wert -25.0</title></circle>
|
<circle cx="892.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 211, Wert -22.0</title></circle>
|
||||||
<circle cx="1829.6" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 5.1.2, Wert -25.0</title></circle>
|
<circle cx="929.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 212, Wert -22.0</title></circle>
|
||||||
<circle cx="1953.7" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 7.1.2, Wert -25.0</title></circle>
|
<circle cx="967.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 213, Wert -22.0</title></circle>
|
||||||
<circle cx="2077.9" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 9.1.2, Wert -25.0</title></circle>
|
<circle cx="1005.5" cy="330.0" r="5" fill="#487a4a" stroke="#333" stroke-width="0.5"><title>Id 214, Wert -43.0</title></circle>
|
||||||
<circle cx="215.2" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 10.1.2, Wert -25.0</title></circle>
|
<circle cx="1043.3" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 215, Wert -22.0</title></circle>
|
||||||
<circle cx="463.6" cy="240.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 15.1.2, Wert -22.0</title></circle>
|
<circle cx="1081.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 216, Wert -22.0</title></circle>
|
||||||
<circle cx="587.8" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 16.1.2, Wert -25.0</title></circle>
|
<circle cx="1118.9" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 217, Wert -25.0</title></circle>
|
||||||
<circle cx="649.9" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 18.1.2, Wert -25.0</title></circle>
|
<circle cx="1156.7" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 218, Wert -25.0</title></circle>
|
||||||
<circle cx="711.9" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 21.1.2, Wert -25.0</title></circle>
|
<circle cx="1194.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 219, Wert -22.0</title></circle>
|
||||||
<circle cx="1022.4" cy="240.0" r="5" fill="#746041" stroke="#333" stroke-width="0.5"><title>Id 28.1.2, Wert -73.0</title></circle>
|
<circle cx="1232.4" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 220, Wert -22.0</title></circle>
|
||||||
<circle cx="1084.5" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 29.1.2, Wert -25.0</title></circle>
|
<circle cx="1270.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 221, Wert -22.0</title></circle>
|
||||||
<circle cx="1270.7" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 32.1.2, Wert -25.0</title></circle>
|
<circle cx="1308.0" cy="330.0" r="5" fill="#407e4b" stroke="#333" stroke-width="0.5"><title>Id 222, Wert -38.0</title></circle>
|
||||||
<circle cx="1332.8" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 34.1.2, Wert -25.0</title></circle>
|
<circle cx="1345.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 223, Wert -22.0</title></circle>
|
||||||
<circle cx="1581.2" cy="240.0" r="5" fill="#9d4939" stroke="#333" stroke-width="0.5"><title>Id 37.1.2, Wert -100.0</title></circle>
|
<circle cx="1383.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 224, Wert -22.0</title></circle>
|
||||||
<circle cx="1705.4" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 39.1.2, Wert -25.0</title></circle>
|
<circle cx="1421.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 225, Wert -22.0</title></circle>
|
||||||
<circle cx="153.1" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 1.2.2, Wert -25.0</title></circle>
|
<circle cx="1459.3" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 226, Wert -22.0</title></circle>
|
||||||
<circle cx="1767.5" cy="240.0" r="5" fill="#746041" stroke="#333" stroke-width="0.5"><title>Id 4.2.2, Wert -73.0</title></circle>
|
<circle cx="1497.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 227, Wert -22.0</title></circle>
|
||||||
<circle cx="1891.6" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 5.2.2, Wert -25.0</title></circle>
|
<circle cx="1534.9" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 228, Wert -25.0</title></circle>
|
||||||
<circle cx="2015.8" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 7.2.2, Wert -25.0</title></circle>
|
<circle cx="1572.7" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 229, Wert -22.0</title></circle>
|
||||||
<circle cx="2140.0" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 9.2.2, Wert -25.0</title></circle>
|
<circle cx="1610.5" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 230, Wert -25.0</title></circle>
|
||||||
<circle cx="277.3" cy="240.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 10.2.2, Wert -25.0</title></circle>
|
<circle cx="1648.4" cy="330.0" r="5" fill="#716242" stroke="#333" stroke-width="0.5"><title>Id 231, Wert -70.0</title></circle>
|
||||||
<circle cx="60.0" cy="330.0" r="7" fill="#288c50" stroke="#c04040" stroke-width="2"><title>Id 12.1.1.1, Wert -22.0</title></circle>
|
<circle cx="1686.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 232, Wert -22.0</title></circle>
|
||||||
<circle cx="1724.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.1.1.1, Wert -22.0</title></circle>
|
<circle cx="1724.0" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 233, Wert -25.0</title></circle>
|
||||||
<circle cx="2026.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 38.1.1.1, Wert -22.0</title></circle>
|
<circle cx="1761.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 234, Wert -22.0</title></circle>
|
||||||
<circle cx="438.2" cy="330.0" r="5" fill="#be3733" stroke="#333" stroke-width="0.5"><title>Id 15.2.1.1, Wert -122.0</title></circle>
|
<circle cx="1799.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 235, Wert -22.0</title></circle>
|
||||||
<circle cx="892.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.2.1.1, Wert -22.0</title></circle>
|
<circle cx="1837.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 236, Wert -22.0</title></circle>
|
||||||
<circle cx="1118.9" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.3.1, Wert -22.0</title></circle>
|
<circle cx="1875.3" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 237, Wert -22.0</title></circle>
|
||||||
<circle cx="1345.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.3.1, Wert -22.0</title></circle>
|
<circle cx="1913.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 238, Wert -22.0</title></circle>
|
||||||
<circle cx="135.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 12.1.2.1, Wert -22.0</title></circle>
|
<circle cx="1950.9" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 239, Wert -25.0</title></circle>
|
||||||
<circle cx="1572.7" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 35.1.2.1, Wert -22.0</title></circle>
|
<circle cx="1988.7" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 240, Wert -25.0</title></circle>
|
||||||
<circle cx="1799.6" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 36.1.2.1, Wert -25.0</title></circle>
|
<circle cx="2026.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 241, Wert -22.0</title></circle>
|
||||||
<circle cx="513.8" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 15.2.2.1, Wert -25.0</title></circle>
|
<circle cx="2064.4" cy="330.0" r="5" fill="#487a4a" stroke="#333" stroke-width="0.5"><title>Id 242, Wert -43.0</title></circle>
|
||||||
<circle cx="967.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.2.2.1, Wert -22.0</title></circle>
|
<circle cx="2102.2" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 243, Wert -25.0</title></circle>
|
||||||
<circle cx="665.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 24.4.1, Wert -22.0</title></circle>
|
<circle cx="2140.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 244, Wert -22.0</title></circle>
|
||||||
<circle cx="1421.5" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 31.4.1, Wert -25.0</title></circle>
|
<text x="97.8" y="352.0" text-anchor="middle" font-size="12" font-weight="bold" fill="#c04040">190</text>
|
||||||
<circle cx="362.5" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 15.1.2.1, Wert -25.0</title></circle>
|
|
||||||
<circle cx="211.3" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 12.1.3, Wert -25.0</title></circle>
|
|
||||||
<circle cx="816.4" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.1.3, Wert -22.0</title></circle>
|
|
||||||
<circle cx="1270.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.1.3, Wert -22.0</title></circle>
|
|
||||||
<circle cx="1648.4" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 35.1.3, Wert -25.0</title></circle>
|
|
||||||
<circle cx="1875.3" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 36.1.3, Wert -25.0</title></circle>
|
|
||||||
<circle cx="2102.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 38.1.3, Wert -22.0</title></circle>
|
|
||||||
<circle cx="589.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 15.2.3, Wert -22.0</title></circle>
|
|
||||||
<circle cx="1043.3" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 27.2.3, Wert -25.0</title></circle>
|
|
||||||
<circle cx="1950.9" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.2.3, Wert -22.0</title></circle>
|
|
||||||
<circle cx="286.9" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 14.5, Wert -22.0</title></circle>
|
|
||||||
<circle cx="740.7" cy="330.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 24.5, Wert -68.0</title></circle>
|
|
||||||
<circle cx="1194.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.5, Wert -22.0</title></circle>
|
|
||||||
<circle cx="1497.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.5, Wert -22.0</title></circle>
|
|
||||||
<circle cx="97.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 12.1.1.2, Wert -22.0</title></circle>
|
|
||||||
<circle cx="1761.8" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.1.1.2, Wert -22.0</title></circle>
|
|
||||||
<circle cx="2064.4" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 38.1.1.2, Wert -22.0</title></circle>
|
|
||||||
<circle cx="476.0" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 15.2.1.2, Wert -22.0</title></circle>
|
|
||||||
<circle cx="929.8" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 27.2.1.2, Wert -25.0</title></circle>
|
|
||||||
<circle cx="1156.7" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.3.2, Wert -22.0</title></circle>
|
|
||||||
<circle cx="1383.6" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 31.3.2, Wert -22.0</title></circle>
|
|
||||||
<circle cx="173.5" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 12.1.2.2, Wert -25.0</title></circle>
|
|
||||||
<circle cx="1610.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 35.1.2.2, Wert -22.0</title></circle>
|
|
||||||
<circle cx="1837.5" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.1.2.2, Wert -22.0</title></circle>
|
|
||||||
<circle cx="551.6" cy="330.0" r="5" fill="#be3733" stroke="#333" stroke-width="0.5"><title>Id 15.2.2.2, Wert -122.0</title></circle>
|
|
||||||
<circle cx="1005.5" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 27.2.2.2, Wert -25.0</title></circle>
|
|
||||||
<circle cx="702.9" cy="330.0" r="5" fill="#686743" stroke="#333" stroke-width="0.5"><title>Id 24.4.2, Wert -65.0</title></circle>
|
|
||||||
<circle cx="1459.3" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 31.4.2, Wert -25.0</title></circle>
|
|
||||||
<circle cx="400.4" cy="330.0" r="5" fill="#be3733" stroke="#333" stroke-width="0.5"><title>Id 15.1.2.2, Wert -122.0</title></circle>
|
|
||||||
<circle cx="249.1" cy="330.0" r="5" fill="#be3733" stroke="#333" stroke-width="0.5"><title>Id 12.1.4, Wert -122.0</title></circle>
|
|
||||||
<circle cx="854.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 27.1.4, Wert -22.0</title></circle>
|
|
||||||
<circle cx="1308.0" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 31.1.4, Wert -25.0</title></circle>
|
|
||||||
<circle cx="1686.2" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 35.1.4, Wert -22.0</title></circle>
|
|
||||||
<circle cx="1913.1" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.1.4, Wert -22.0</title></circle>
|
|
||||||
<circle cx="2140.0" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 38.1.4, Wert -25.0</title></circle>
|
|
||||||
<circle cx="627.3" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 15.2.4, Wert -25.0</title></circle>
|
|
||||||
<circle cx="1081.1" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 27.2.4, Wert -25.0</title></circle>
|
|
||||||
<circle cx="1988.7" cy="330.0" r="5" fill="#288c50" stroke="#333" stroke-width="0.5"><title>Id 36.2.4, Wert -22.0</title></circle>
|
|
||||||
<circle cx="324.7" cy="330.0" r="5" fill="#746041" stroke="#333" stroke-width="0.5"><title>Id 14.6, Wert -73.0</title></circle>
|
|
||||||
<circle cx="778.5" cy="330.0" r="5" fill="#6d6442" stroke="#333" stroke-width="0.5"><title>Id 24.6, Wert -68.0</title></circle>
|
|
||||||
<circle cx="1232.4" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 27.6, Wert -25.0</title></circle>
|
|
||||||
<circle cx="1534.9" cy="330.0" r="5" fill="#2c894f" stroke="#333" stroke-width="0.5"><title>Id 31.6, Wert -25.0</title></circle>
|
|
||||||
<text x="60.0" y="352.0" text-anchor="middle" font-size="12" font-weight="bold" fill="#c04040">12.1.1.1</text>
|
|
||||||
<text x="48" y="64.0" text-anchor="end" font-size="11" fill="#666">Gen 0</text>
|
<text x="48" y="64.0" text-anchor="end" font-size="11" fill="#666">Gen 0</text>
|
||||||
<text x="48" y="154.0" text-anchor="end" font-size="11" fill="#666">Gen 1</text>
|
<text x="48" y="154.0" text-anchor="end" font-size="11" fill="#666">Gen 1</text>
|
||||||
<text x="48" y="244.0" text-anchor="end" font-size="11" fill="#666">Gen 2</text>
|
<text x="48" y="244.0" text-anchor="end" font-size="11" fill="#666">Gen 2</text>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
@@ -5,11 +5,11 @@
|
|||||||
<line x1="60" y1="60" x2="60" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
<line x1="60" y1="60" x2="60" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
||||||
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#333" stroke-width="1.5"/>
|
||||||
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="394.0" text-anchor="end" font-size="11" fill="#666">-128</text>
|
<text x="52" y="394.0" text-anchor="end" font-size="11" fill="#666">-127</text>
|
||||||
<line x1="60" y1="324.0" x2="840" y2="324.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="324.0" x2="840" y2="324.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="328.0" text-anchor="end" font-size="11" fill="#666">-107</text>
|
<text x="52" y="328.0" text-anchor="end" font-size="11" fill="#666">-106</text>
|
||||||
<line x1="60" y1="258.0" x2="840" y2="258.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="258.0" x2="840" y2="258.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="262.0" text-anchor="end" font-size="11" fill="#666">-86</text>
|
<text x="52" y="262.0" text-anchor="end" font-size="11" fill="#666">-85</text>
|
||||||
<line x1="60" y1="192.0" x2="840" y2="192.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="192.0" x2="840" y2="192.0" stroke="#eee" stroke-width="1"/>
|
||||||
<text x="52" y="196.0" text-anchor="end" font-size="11" fill="#666">-64</text>
|
<text x="52" y="196.0" text-anchor="end" font-size="11" fill="#666">-64</text>
|
||||||
<line x1="60" y1="126.0" x2="840" y2="126.0" stroke="#eee" stroke-width="1"/>
|
<line x1="60" y1="126.0" x2="840" y2="126.0" stroke="#eee" stroke-width="1"/>
|
||||||
@@ -18,8 +18,8 @@
|
|||||||
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-22</text>
|
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-22</text>
|
||||||
<text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
|
<text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
|
||||||
<polyline points="60.0,60.0 146.7,60.0 233.3,60.0 320.0,60.0 406.7,60.0 493.3,60.0 580.0,60.0 666.7,60.0 753.3,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
|
<polyline points="60.0,60.0 146.7,60.0 233.3,60.0 320.0,60.0 406.7,60.0 493.3,60.0 580.0,60.0 666.7,60.0 753.3,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
|
||||||
<polyline points="60.0,133.4 146.7,143.7 233.3,140.2 320.0,65.8 406.7,94.0 493.3,84.6 580.0,60.0 666.7,95.6 753.3,83.7 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
|
<polyline points="60.0,120.1 146.7,140.8 233.3,133.9 320.0,62.5 406.7,95.9 493.3,84.7 580.0,60.0 666.7,92.8 753.3,81.9 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
|
||||||
<polyline points="60.0,390.0 146.7,386.9 233.3,390.0 320.0,69.3 406.7,371.3 493.3,371.3 580.0,60.0 666.7,371.3 753.3,371.3 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
|
<polyline points="60.0,390.0 146.7,390.0 233.3,390.0 320.0,69.4 406.7,374.3 493.3,374.3 580.0,60.0 666.7,374.3 753.3,374.3 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
|
||||||
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
|
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
|
||||||
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
|
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
|
||||||
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
|
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
@@ -3,15 +3,15 @@ Bloedkopf, Bestelli, = Hof 1, Tisch 2, Nummer 3
|
|||||||
Bloedkopf, Bestelli, = Hof 1, Tisch 2, Nummer 4
|
Bloedkopf, Bestelli, = Hof 1, Tisch 2, Nummer 4
|
||||||
Brandt, Willi, Dr. = Hof 1, Tisch 4, Nummer 2
|
Brandt, Willi, Dr. = Hof 1, Tisch 4, Nummer 2
|
||||||
Bruegge, Heinz, = Hof 1, Tisch 5, Nummer 2
|
Bruegge, Heinz, = Hof 1, Tisch 5, Nummer 2
|
||||||
Dietrich, Marlene, = Hof 1, Tisch 5, Nummer 4
|
Dietrich, Marlene, = Hof 1, Tisch 5, Nummer 5
|
||||||
Emmerlich, Walter, = Hof 1, Tisch 4, Nummer 5
|
Emmerlich, Walter, = Hof 1, Tisch 3, Nummer 3
|
||||||
Frenzen, Heinz Harald, = Hof 1, Tisch 4, Nummer 3
|
Frenzen, Heinz Harald, = Hof 1, Tisch 3, Nummer 4
|
||||||
Hoehn, Bernd Robert, Professor = Hof 1, Tisch 1, Nummer 4
|
Hoehn, Bernd Robert, Professor = Hof 1, Tisch 1, Nummer 2
|
||||||
Junke, Harald, = Hof 1, Tisch 3, Nummer 3
|
Junke, Harald, = Hof 1, Tisch 4, Nummer 4
|
||||||
K, Hubert, = Hof 1, Tisch 5, Nummer 3
|
K, Hubert, = Hof 1, Tisch 5, Nummer 4
|
||||||
Leone, Sergio, = Hof 1, Tisch 3, Nummer 2
|
Leone, Sergio, = Hof 1, Tisch 3, Nummer 2
|
||||||
Mueller, Magnus, Professor = Hof 1, Tisch 1, Nummer 2
|
Mueller, Magnus, Professor = Hof 1, Tisch 1, Nummer 3
|
||||||
Ruehmann, Heinz, = Hof 1, Tisch 5, Nummer 5
|
Ruehmann, Heinz, = Hof 1, Tisch 5, Nummer 3
|
||||||
Schumacher, Michael, = Hof 1, Tisch 3, Nummer 4
|
Schumacher, Michael, = Hof 1, Tisch 4, Nummer 3
|
||||||
Schumacher, Ralf, = Hof 1, Tisch 4, Nummer 4
|
Schumacher, Ralf, = Hof 1, Tisch 4, Nummer 5
|
||||||
Stangl, Michael, Dipl. Ing. = Hof 1, Tisch 1, Nummer 3
|
Stangl, Michael, Dipl. Ing. = Hof 1, Tisch 1, Nummer 4
|
||||||
|
|||||||
|
@@ -29,8 +29,8 @@
|
|||||||
<text x="351.2" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">4</text>
|
<text x="351.2" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">4</text>
|
||||||
<circle cx="450.115" cy="54.4572" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="450.115" cy="54.4572" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="450.115" cy="35.7896" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle cx="450.115" cy="35.7896" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="468.782" cy="54.4572" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle cx="468.782" cy="54.4572" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="450.115" cy="73.1248" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle cx="450.115" cy="73.1248" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="431.447" cy="54.4572" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle cx="431.447" cy="54.4572" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="450.115" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/>
|
<circle cx="450.115" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="450.115" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">5</text>
|
<text x="450.115" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">5</text>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,7 +1,7 @@
|
|||||||
[1]
|
[1]
|
||||||
Professor Magnus Mueller = Hof 1, Tisch 1, Nummer 1
|
Professor Bernd Robert Hoehn = Hof 1, Tisch 1, Nummer 1
|
||||||
Dipl. Ing. Michael Stangl = Hof 1, Tisch 1, Nummer 2
|
Professor Magnus Mueller = Hof 1, Tisch 1, Nummer 2
|
||||||
Professor Bernd Robert Hoehn = Hof 1, Tisch 1, Nummer 3
|
Dipl. Ing. Michael Stangl = Hof 1, Tisch 1, Nummer 3
|
||||||
|
|
||||||
[2]
|
[2]
|
||||||
Bestelli Bloedkopf = Hof 1, Tisch 2, Nummer 1
|
Bestelli Bloedkopf = Hof 1, Tisch 2, Nummer 1
|
||||||
@@ -10,18 +10,18 @@ Professor Bernd Robert Hoehn = Hof 1, Tisch 1, Nummer 3
|
|||||||
|
|
||||||
[3]
|
[3]
|
||||||
Sergio Leone = Hof 1, Tisch 3, Nummer 1
|
Sergio Leone = Hof 1, Tisch 3, Nummer 1
|
||||||
Harald Junke = Hof 1, Tisch 3, Nummer 2
|
Walter Emmerlich = Hof 1, Tisch 3, Nummer 2
|
||||||
Michael Schumacher = Hof 1, Tisch 3, Nummer 3
|
Heinz Harald Frenzen = Hof 1, Tisch 3, Nummer 3
|
||||||
|
|
||||||
[4]
|
[4]
|
||||||
Dr. Willi Brandt = Hof 1, Tisch 4, Nummer 1
|
Dr. Willi Brandt = Hof 1, Tisch 4, Nummer 1
|
||||||
Heinz Harald Frenzen = Hof 1, Tisch 4, Nummer 2
|
Michael Schumacher = Hof 1, Tisch 4, Nummer 2
|
||||||
Ralf Schumacher = Hof 1, Tisch 4, Nummer 3
|
Harald Junke = Hof 1, Tisch 4, Nummer 3
|
||||||
Walter Emmerlich = Hof 1, Tisch 4, Nummer 4
|
Ralf Schumacher = Hof 1, Tisch 4, Nummer 4
|
||||||
|
|
||||||
[5]
|
[5]
|
||||||
Heinz Bruegge = Hof 1, Tisch 5, Nummer 1
|
Heinz Bruegge = Hof 1, Tisch 5, Nummer 1
|
||||||
Hubert K = Hof 1, Tisch 5, Nummer 2
|
Heinz Ruehmann = Hof 1, Tisch 5, Nummer 2
|
||||||
Marlene Dietrich = Hof 1, Tisch 5, Nummer 3
|
Hubert K = Hof 1, Tisch 5, Nummer 3
|
||||||
Heinz Ruehmann = Hof 1, Tisch 5, Nummer 4
|
Marlene Dietrich = Hof 1, Tisch 5, Nummer 4
|
||||||
|
|
||||||
|
|||||||