]> mj.ucw.cz Git - saga.git/commitdiff
More soft heap bits.
authorMartin Mares <mj@ucw.cz>
Wed, 26 Mar 2008 14:46:42 +0000 (15:46 +0100)
committerMartin Mares <mj@ucw.cz>
Wed, 26 Mar 2008 14:46:42 +0000 (15:46 +0100)
opt.tex
pic/softheap2.eps
pic/softheap2.vrr

diff --git a/opt.tex b/opt.tex
index 548302730833a41e450cb943c824ad37a288af54..2969ad00435c912782ebf86e0f10f7916401931e 100644 (file)
--- a/opt.tex
+++ b/opt.tex
@@ -29,9 +29,8 @@ supports the following operations:
 \itemize\ibull
 \:$\<Create>(\varepsilon)$ --- create an~empty soft heap with the given accuracy parameter,
 \:$\<Insert>(H,x)$ --- insert a~new element~$x$ to the heap~$H$,
-\:$\<Meld>(H_1,H_2)$ --- form a~new soft heap containing the elements stored in two disjoint
-  heaps $H_1$ and~$H_2$
-  (both heaps must have the same~$\varepsilon$ and they are destroyed in the process),
+\:$\<Meld>(P,Q)$ --- merge two heaps into one, more precisely insert all elements of a~heap~$Q$
+  to the heap~$P$, destroying~$Q$ in the process (both heaps must have the same~$\varepsilon$),
 \:$\<DeleteMin>(H)$ --- delete the minimum element of the heap~$H$ and return its value
   (optionally signalling that the value has been corrupted).
 \endlist
@@ -43,7 +42,7 @@ Actually, Chazelle defines the queues as binomial trees, but he transforms them
 somewhat counter-intuitive, albeit well-defined. We prefer describing the queues as binary
 trees with a~special distribution of values. In fact, the original C~code in the Chazelle's
 paper uses this representation internally.}
-Each vertex~$v$ of the tree remembers a~linked list $\<list>(v)$ of values. The
+Each vertex~$v$ of the tree remembers a~doubly-linked list $\<list>(v)$ of values. The
 item list in every left son will be used only temporarily and it will be kept
 empty between operations. Only right sons and the root have their lists
 permanently occupied. The former vertices will be called \df{white}, the latter
@@ -85,7 +84,7 @@ if the original queue was not complete.
 
 We will now combine the soft queues to the soft heap.
 
-\figure{softheap2.eps}{\epsfxsize}{Joining and dismantling soft queues}
+\figure{softheap2.eps}{\epsfxsize}{Joining and dismantling of soft queues}
 
 \defn A~\df{soft heap} consists of:
 \itemize\ibull
@@ -121,38 +120,136 @@ a~single-element heap and melding it to the destination heap.
 
 \algn{Melding of two soft heaps}
 \algo
-\algin Two soft heaps~$H_1$ and~$H_2$.
-\:If the tail of~$H_1$ has smaller rank than the tail of~$H_2$, exchange $H_1$ and~$H_2$.
+\algin Two soft heaps~$P$ and~$Q$.
+\:If the tail of~$P$ has smaller rank than the tail of~$Q$, exchange their item lists.
 \brk\cmt{Whenever we run into an~end of a~list, we assume that it contains an~empty queue of infinite rank.}
-\:$p\=\<head>(H_1)$.
-\:While $H_2$ still has some queues:
-\::$q\=\<head>(H_2)$.
+\:$p\=\<head>(P)$.
+\:While $Q$ still has some queues:
+\::$q\=\<head>(Q)$.
 \::If $\<rank>(p) < \<rank>(q)$, then $p\=$ the successor of~$p$,
-\::else if $\<rank>(p) > \<rank>(q)$, remove~$q$ from~$H_2$ and insert it before~$p$,
+\::else if $\<rank>(p) > \<rank>(q)$, remove~$q$ from~$Q$ and insert it before~$p$,
 \::otherwise (the ranks are equal, we need to propagate the carry):
 \:::$\<carry>=p$.
 \:::$p\=$ the successor of~$p$.
 \:::While $\<rank>(q)=\<rank>(\<carry>)$:
-\::::Remove~$q$ from~$H_2$.
+\::::Remove~$q$ from~$Q$.
 \::::$\<carry>\=\<join>(q, \<carry>)$.
-\::::$q\=\<head>(H_2)$.
+\::::$q\=\<head>(Q)$.
 \:::Insert~\<carry> before~$q$.
-\:Update the suffix minima: Walk with~$p$ backwards to the head of~$H_1$:
+\:Update the suffix minima: Walk with~$p$ backwards to the head of~$P$:
 \::$p'\=$ successor of~$p$.
 \::If $\<ckey>(p) < \<ckey>(p')$, set $\<suffix\_min>(p)\=p$.
 \::Otherwise set $\<suffix\_min>(p)\=\<suffix\_min>(p')$.
-\:Destroy the heap~$H_2$.
-\algout The merged heap~$H_1$.
+\:Destroy the heap~$Q$.
+\algout The merged heap~$P$.
 \endalgo
 
 \algn{Insertion of an~element to a~soft heap}
 \algo
 \algin A~heap~$H$ and a~new element~$x$.
-\:Create a~new heap~$H'$ containing a~sole queue of rank~0, whose only vertex has
-  the element~$x$ in its item list.
+\:Create a~new heap~$H'$ with the same parameters as~$H$. Let~$H'$ contain a~sole queue of rank~0,
+  whose only vertex has the element~$x$ in its item list.
 \:$\<Meld>(H,H')$.
 \algout An~updated heap~$H$.
 \endalgo
 
+\para
+So far, the mechanics of the soft heaps was almost identical to the binomial heaps
+and the reader could rightfully yawn. The things are going to get interesting
+now as we approach the parts where corruption of items takes place.
+
+If all item lists contain at most one item equal to the \<ckey> of the particular
+vertex, no information is lost and the heap order guarantees that the minimum item
+of every queue stays in its root. We can however allow longer lists and let the items
+stored in a~single list travel together between the vertices of the tree, still
+represented by a~common \<ckey>. This data-structural analogue of car pooling will
+allow the items to travel at a~faster rate, but as only a~single item can be equal
+to the \<ckey>, all other items will be inevitably corrupted.
+
+We of course have to be careful about the size of the lists, as we must avoid corrupting
+too many items. We will control the growth according to the vertex ranks. Vertices
+with rank at most~$r$ will always contain just a~single item. Above this level,
+the higher is the rank, the longer list will we allow.
+
+\para
+\em{Deleting of minimum} will follow this principle. The minimum is easy to locate
+--- we follow the \<suffix\_min> of the head of the heap to the queue with the minimum
+\<ckey> and we look inside the item list of the root of this queue. We remove the \em{last}
+item from the list (we do not want the \<ckey> to change) and return it as the minimum.
+(It is not necessarily the real minimum of all items, but always the minimum of those
+uncorrupted.)
+
+If the list becomes empty, we \em{refill} it with items from the lower levels of the
+same tree. This can be best described recursively: We ask the left son to refill itself
+(remember that the left son is always white, so there are no items to lose). If the new
+\<ckey> of the left son is smaller than of the right son, we immediately move the left
+son's list to its parent. Otherwise, we exchange the sons and move the list from the
+new left son to the parent. This way, we obey the heap order and the same time we keep
+the white left son free of items.
+
+Ocassionally, we repeat this process once again and we concatenate the resulting lists
+(we append the latter list to the former, using the smaller of the two \<ckey>'s). This
+makes the lists grow longer and we want to do that roughly on every other level of the
+tree. The exact condition will be that either the rank of the current vertex is odd,
+or the difference in ranks between this vertex and its right son is at least two.
+
+If refilling of the left son fails because there are no more items in that subtree
+(we report this by setting its \<ckey> to $+\infty$), the current vertex is no longer
+needed, as the items would just travel through it unmodified. We therefore want to
+remove it. Instead of deleting it directly, we will rather make it point to its former
+grandsons and we will remove the (now orhpaned) original son. This helps us to ensure
+that both sons always have the same rank, which will be useful for the analysis.
+
+When all refilling is done, we update the suffix minima by walking from the current
+queue to the head of the heap exactly as we did in the \<Meld> procedure.
+
+Our only remaining worry is that the Rank invariant can be broken after the
+refilling. When the leftmost path of the tree becomes too short, we just
+\em{dismantle} the tree as already described and we meld the new trees back to
+the heap. This is easier to handle when the item list at the root vertex is
+empty. We will therefore move this check before the refilling of the root list.
+It will turn out that we have enough time to always walk the leftmost path
+completely, so no explicit counters are needed.
+
+Let us translate these ideas to real (pseudo)code:
+
+\algn{Deleting the minimum item of a~soft heap}
+\algo
+\algin A~soft heap~$H$.
+\:Use \<suffix\_min> of the head queue of~$H$ to locate the queue~$q$ with the smallest \<ckey>.
+\:Remove the last element~$x$ of the item list in the root of~$q$.
+\:If the item list is empty:
+\::Count the vertices on the leftmost path of~$q$.
+\::If there are less than $\<rank>(q)$ of them:
+\:::Remove~$q$ from the list of queues.
+\:::Recalculate the suffix minima as in the \<Meld> procedure.
+\:::Dismantle~$q$ and create a~heap~$H'$ holding the resulting trees.
+\:::Meld them back: $\<Meld>(H,H')$.
+\::Otherwise:
+\:::Call \<Refill> on the root of~$q$.
+\:::If $\<ckey>(q)=+\infty$ (no items left), remove the tree~$q$.
+\:::Recalculate the suffix minima.
+\algout The deleted minimum item~$x$ (possibly corrupted).
+\endalgo
+
+\algn{Refilling the item list of a~vertex}
+\algo
+\algin A~soft queue and its vertex~$v$ with an~empty item list.
+\:Handle trivial cases: If~$v$ has no children or both have $\<ckey>=+\infty$,
+  set $\<ckey>(v)$ to~$+\infty$ and return.
+\:Let \<left> and~\<right> denote the sons of~$v$.
+\:Recurse: call $\<Refill>(\<left>)$.
+\:If $\<ckey>(\<left>) > \<ckey>(\<right>)$, swap the sons.
+\:Move the item list from \<left> to~$v$ (implying $\<ckey>(v)=\<ckey>(\<left>)$).
+\:If $\<rank>(v)$ is odd or $\<rank>(v) > \<rank>(\<right>)+1$, recurse once more:
+\::Repeat steps 3--4.
+\::Append the item list from \<left> to the item list at~$v$.
+\:Clean up. If $\<ckey>(\<right>) = +\infty$:
+\::If $\<ckey>(\<left>) = +\infty$: unlink and discard both sons.
+\::Otherwise relink the sons of \<left> to~$v$ and discard \<left>.
+\algout A~modified soft queue.
+\endalgo
+
+
 
 \endpart
index 7faed50a59cce87ba782ebfcc3f9b24c2f342f8c..90f657ec0d5e8a0b6cdc55aa655ebaa27b29a113 100644 (file)
@@ -1,7 +1,7 @@
 %!PS-Adobe-3.0 EPSF-3.0
 %%Title: softheap2
 %%Creator: VRR  (http://vrr.ucw.cz/)
-%%CreationDate: Wed Mar 26 11:13:34 2008
+%%CreationDate: Wed Mar 26 13:38:46 2008
 %%Pages: 1
 %%BoundingBox: 0 0 381 89
 %%DocumentData: Clean7Bit
@@ -2218,18 +2218,18 @@ gs
 [] sdh
 0.000000 0.000000 0.000000 sclr
 np
--97.231140 1.381612 mt -97.431772 0.684617 -97.470495 0.019076 -97.347309 -0.615011 ct
--97.759412 -0.117606 -98.298523 0.274572 -98.964643 0.561522 ct
--97.872717 0.495594 lt
--97.231140 1.381612 lt
+-84.116156 7.601063 mt -83.828878 6.935085 -83.436434 6.396167 -82.938826 5.984309 ct
+-83.572973 6.107182 -84.238495 6.068131 -84.935392 5.867156 ct
+-84.049690 6.509169 lt
+-84.116156 7.601063 lt
 cp
 fi
 0.000000 0.000000 0.000000 sclr
 np
--97.231140 1.381612 mt -97.431772 0.684617 -97.470495 0.019076 -97.347309 -0.615011 ct
--97.759412 -0.117606 -98.298523 0.274572 -98.964643 0.561522 ct
--97.872717 0.495594 lt
--97.231140 1.381612 lt
+-84.116156 7.601063 mt -83.828878 6.935085 -83.436434 6.396167 -82.938826 5.984309 ct
+-83.572973 6.107182 -84.238495 6.068131 -84.935392 5.867156 ct
+-84.049690 6.509169 lt
+-84.116156 7.601063 lt
 cp
 st
 gr
index a86a20df7de5398e904c6a1198a4c58880ddece0..eba018f0d8d583c54af2117b77c006b0fd547bbf 100644 (file)
  (page ( (tex_footer "\\bye
 ") (tex_header "\\nopagenumbers\\vglue0pt
 ") (name "softheap2")) (
- (cubic-bezier (coords -27.5 -22.5) 1.0 (coords -28.75 -22.5) 1.0 (coords -31.25 -22.5) 1.0 (coords -31.25 -17.5) 1.0 ( (id 138476136) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (coords -3.75 -22.5) 1.0 (coords -5.0 -22.5) 1.0 (coords -8.75 -22.5) 1.0 (coords -8.75 -17.5) 1.0 ( (id 136548584) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (coords -112.5 -17.5) 1.0 (coords -112.5 -10.0) 1.0 (coords -103.75 0.0) 1.0 (coords -96.25 2.5) 1.0 ( (id 136548912) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (coords -62.5 -17.5) (coords -58.75 -10.0) ( (id 136549240) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (coords -77.5 -17.5) (coords -73.75 -10.0) ( (id 136549432) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (coords -92.5 -17.5) (coords -88.75 -10.0) ( (id 136549624) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (coords -103.75 -10.0) (coords -107.5 -17.5) ( (id 136549816) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (coords 10.0 -17.5) (coords 13.75 -10.0) ( (id 136550008) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (coords -5.0 -17.5) (coords -1.25 -10.0) ( (id 136550200) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (coords -20.0 -17.5) (coords -16.25 -10.0) ( (id 136550392) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (coords -31.25 -10.0) (coords -35.0 -17.5) ( (id 136550584) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-4 136548584) 1.0 (coords -8.75 -10.0) 1.0 (coords -1.25 0.0) 1.0 (coords 6.25 2.5) 1.0 ( (id 136550776) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (coords -12.5 -22.5) 1.0 (coords -11.25 -22.5) 1.0 (coords -8.75 -22.5) 1.0 (controlpoint-4 136548584) 1.0 ( (id 136551104) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-1 136548912) 1.0 (coords -112.5 -22.5) 1.0 (coords -108.75 -22.5) 1.0 (coords -107.5 -22.5) 1.0 ( (id 136551432) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (coords -81.25 -17.5) 1.0 (coords -81.25 -10.0) 1.0 (coords -88.75 0.0) 1.0 (controlpoint-4 136548912) 1.0 ( (id 136551760) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (end 136549240) (coords -55.0 -17.5) ( (id 136552088) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (start 136549432) 0 2.0 0.0 ( (id 136552280) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (segment (end 136549432) (coords -66.25 -2.5) ( (id 136553664) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (end 136549432) (coords -70.0 -17.5) ( (id 136553856) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (end 136549624) (coords -85.0 -17.5) ( (id 136554048) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (coords -100.0 -17.5) (start 136549816) ( (id 136554240) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (end 136550008) (coords 17.5 -17.5) ( (id 136554432) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (start 136550200) 0 2.0 0.0 ( (id 136554624) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (segment (end 136550200) (coords 2.5 -17.5) ( (id 136555408) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (end 136550200) (coords 6.25 -2.5) ( (id 136555600) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (end 136550392) (coords -12.5 -17.5) ( (id 136555792) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (coords -27.5 -17.5) (start 136550584) ( (id 136555984) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-4 136550776) 1.0 (coords 13.75 0.0) 1.0 (coords 21.25 -10.0) 1.0 (coords 21.25 -17.5) 1.0 ( (id 136556176) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-4 136551104) 1.0 (coords -8.75 -12.5) 1.0 (coords -10.0 -7.5) 1.0 (coords -16.25 -5.0) 1.0 ( (id 136556504) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-1 136551760) 1.0 (coords -81.25 -10.0) 1.0 (coords -73.75 0.0) 1.0 (coords -66.25 2.5) 1.0 ( (id 136556832) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-1 136551760) 1.0 (coords -81.25 -22.5) 1.0 (coords -83.75 -22.5) 1.0 (coords -85.0 -22.5) 1.0 ( (id 136557160) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (end 136552088) 0 2.0 0.0 ( (id 136557488) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (segment (end 136553664) (end 136549240) ( (id 136558352) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (end 136553856) 0 2.0 0.0 ( (id 136558544) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (end 136554048) 0 2.0 0.0 ( (id 136559408) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (end 136554240) 0 2.0 0.0 ( (id 136560272) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (segment (end 136554240) (coords -96.25 -2.5) ( (id 136561136) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (end 136554432) 0 2.0 0.0 ( (id 136561328) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (end 136555408) 0 2.0 0.0 ( (id 136562192) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (segment (end 136555600) (end 136550008) ( (id 136563056) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (end 136555792) 0 2.0 0.0 ( (id 136563248) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (end 136555984) 0 2.0 0.0 ( (id 136564112) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (segment (end 136555984) (coords -23.75 -2.5) ( (id 136564976) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-4 136556176) 1.0 (coords 21.25 -22.5) 1.0 (coords 18.75 -22.5) 1.0 (coords 17.5 -22.5) 1.0 ( (id 136565168) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-4 136556504) 1.0 (coords -22.5 -7.5) 1.0 (coords -23.75 -12.5) 1.0 (coords -23.75 -17.5) 1.0 ( (id 136565496) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-4 136556832) 1.0 (coords -58.75 0.0) 1.0 (coords -50.0 -10.0) 1.0 (coords -50.0 -17.5) 1.0 ( (id 136565824) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-1 136557160) 1.0 (coords -81.25 -22.5) 1.0 (coords -78.75 -22.5) 1.0 (coords -77.5 -22.5) 1.0 ( (id 136566152) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (end 136561136) (start 136554048) ( (id 136566480) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (end 136564976) (start 136555792) ( (id 136566672) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-4 136565496) 1.0 (coords -23.75 -22.5) 1.0 (coords -21.25 -22.5) 1.0 (coords -20.0 -22.5) 1.0 ( (id 136566864) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-4 136565496) 1.0 (coords -23.75 -15.0) 1.0 (coords -26.25 -12.5) 1.0 (coords -27.5 -12.5) 1.0 ( (id 138447856) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (controlpoint-4 136565824) 1.0 (coords -50.0 -22.5) 1.0 (coords -53.75 -22.5) 1.0 (coords -55.0 -22.5) 1.0 ( (id 136567192) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (start 136566480) 0 2.0 0.0 ( (id 136567520) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (segment (start 136566480) (coords -81.25 5.0) ( (id 136568384) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (start 136566672) (coords -8.75 5.0) ( (id 136568576) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (start 136566672) 0 2.0 0.0 ( (id 136568768) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (decorator-point (end 136568384) 0 2.0 0.0 ( (id 136569632) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (end 136568576) 0 2.0 0.0 ( (id 136570496) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (segment (decorator-point 136569632) (start 136558352) ( (id 136571360) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (decorator-point 136570496) (start 136563056) ( (id 136571552) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (cubic-bezier (start 136571360) 1.0 (coords -88.75 10.0) 1.0 (coords -104.764282226562 10.7593803405762) 1.0 (start 136568384) 1.0 ( (id 136571744) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (coords -27.5 -22.5) 1.0 (coords -28.75 -22.5) 1.0 (coords -31.25 -22.5) 1.0 (coords -31.25 -17.5) 1.0 ( (id 136555064) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (coords -3.75 -22.5) 1.0 (coords -5.0 -22.5) 1.0 (coords -8.75 -22.5) 1.0 (coords -8.75 -17.5) 1.0 ( (id 136555392) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (coords -112.5 -17.5) 1.0 (coords -112.5 -10.0) 1.0 (coords -103.75 0.0) 1.0 (coords -96.25 2.5) 1.0 ( (id 136555720) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (coords -62.5 -17.5) (coords -58.75 -10.0) ( (id 136556048) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (coords -77.5 -17.5) (coords -73.75 -10.0) ( (id 136556240) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (coords -92.5 -17.5) (coords -88.75 -10.0) ( (id 136556432) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (coords -103.75 -10.0) (coords -107.5 -17.5) ( (id 136556624) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (coords 10.0 -17.5) (coords 13.75 -10.0) ( (id 136556816) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (coords -5.0 -17.5) (coords -1.25 -10.0) ( (id 136557008) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (coords -20.0 -17.5) (coords -16.25 -10.0) ( (id 136557200) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (coords -31.25 -10.0) (coords -35.0 -17.5) ( (id 136557392) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-4 136555392) 1.0 (coords -8.75 -10.0) 1.0 (coords -1.25 0.0) 1.0 (coords 6.25 2.5) 1.0 ( (id 136557584) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (coords -12.5 -22.5) 1.0 (coords -11.25 -22.5) 1.0 (coords -8.75 -22.5) 1.0 (controlpoint-4 136555392) 1.0 ( (id 136557912) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-1 136555720) 1.0 (coords -112.5 -22.5) 1.0 (coords -108.75 -22.5) 1.0 (coords -107.5 -22.5) 1.0 ( (id 136558240) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (coords -81.25 -17.5) 1.0 (coords -81.25 -10.0) 1.0 (coords -88.75 0.0) 1.0 (controlpoint-4 136555720) 1.0 ( (id 136558568) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (end 136556048) (coords -55.0 -17.5) ( (id 136559416) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (start 136556240) 0 2.0 0.0 ( (id 136559608) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (segment (end 136556240) (coords -66.25 -2.5) ( (id 136560392) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (end 136556240) (coords -70.0 -17.5) ( (id 136560584) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (end 136556432) (coords -85.0 -17.5) ( (id 136560776) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (coords -100.0 -17.5) (start 136556624) ( (id 136560968) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (end 136556816) (coords 17.5 -17.5) ( (id 136561160) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (start 136557008) 0 2.0 0.0 ( (id 136561352) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (segment (end 136557008) (coords 2.5 -17.5) ( (id 136562216) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (end 136557008) (coords 6.25 -2.5) ( (id 136562408) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (end 136557200) (coords -12.5 -17.5) ( (id 136562600) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (coords -27.5 -17.5) (start 136557392) ( (id 136562792) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-4 136557584) 1.0 (coords 13.75 0.0) 1.0 (coords 21.25 -10.0) 1.0 (coords 21.25 -17.5) 1.0 ( (id 136562984) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-4 136557912) 1.0 (coords -8.75 -12.5) 1.0 (coords -10.0 -7.5) 1.0 (coords -16.25 -5.0) 1.0 ( (id 136563312) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-1 136558568) 1.0 (coords -81.25 -10.0) 1.0 (coords -73.75 0.0) 1.0 (coords -66.25 2.5) 1.0 ( (id 136563640) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-1 136558568) 1.0 (coords -81.25 -22.5) 1.0 (coords -83.75 -22.5) 1.0 (coords -85.0 -22.5) 1.0 ( (id 136563968) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (end 136559416) 0 2.0 0.0 ( (id 136564296) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (segment (end 136560392) (end 136556048) ( (id 136565160) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (end 136560584) 0 2.0 0.0 ( (id 136565352) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (end 136560776) 0 2.0 0.0 ( (id 136566216) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (end 136560968) 0 2.0 0.0 ( (id 136567080) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (segment (end 136560968) (coords -96.25 -2.5) ( (id 136567944) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (end 136561160) 0 2.0 0.0 ( (id 136568136) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (end 136562216) 0 2.0 0.0 ( (id 136569000) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (segment (end 136562408) (end 136556816) ( (id 136569864) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (end 136562600) 0 2.0 0.0 ( (id 136570056) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (end 136562792) 0 2.0 0.0 ( (id 136570920) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (segment (end 136562792) (coords -23.75 -2.5) ( (id 136571784) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-4 136562984) 1.0 (coords 21.25 -22.5) 1.0 (coords 18.75 -22.5) 1.0 (coords 17.5 -22.5) 1.0 ( (id 136571976) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-4 136563312) 1.0 (coords -22.5 -7.5) 1.0 (coords -23.75 -12.5) 1.0 (coords -23.75 -17.5) 1.0 ( (id 136572304) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-4 136563640) 1.0 (coords -58.75 0.0) 1.0 (coords -50.0 -10.0) 1.0 (coords -50.0 -17.5) 1.0 ( (id 136572632) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-1 136563968) 1.0 (coords -81.25 -22.5) 1.0 (coords -78.75 -22.5) 1.0 (coords -77.5 -22.5) 1.0 ( (id 136572960) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (end 136567944) (start 136560776) ( (id 136573288) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (end 136571784) (start 136562600) ( (id 136573480) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-4 136572304) 1.0 (coords -23.75 -22.5) 1.0 (coords -21.25 -22.5) 1.0 (coords -20.0 -22.5) 1.0 ( (id 136573672) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-4 136572304) 1.0 (coords -23.75 -15.0) 1.0 (coords -26.25 -12.5) 1.0 (coords -27.5 -12.5) 1.0 ( (id 136574000) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (controlpoint-4 136572632) 1.0 (coords -50.0 -22.5) 1.0 (coords -53.75 -22.5) 1.0 (coords -55.0 -22.5) 1.0 ( (id 136574328) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (start 136573288) 0 2.0 0.0 ( (id 136574656) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (segment (start 136573288) (coords -81.25 5.0) ( (id 136575520) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (start 136573480) (coords -8.75 5.0) ( (id 136575712) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (start 136573480) 0 2.0 0.0 ( (id 136575904) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (decorator-point (end 136575520) 0 2.0 0.0 ( (id 136576768) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (end 136575712) 0 2.0 0.0 ( (id 136577632) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (segment (decorator-point 136576768) (start 136565160) ( (id 136578496) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (decorator-point 136577632) (start 136569864) ( (id 136578688) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (cubic-bezier (start 136578496) 1.0 (coords -88.75 10.0) 1.0 (coords -104.764282226562 10.7593803405762) 1.0 (start 136575520) 1.0 ( (id 136578880) (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
  (top-level-group ( (name "top-level-group")) (
- (cubic-bezier (controlpoint-4 138447856) 1.0 (coords -28.75 -12.5) 1.0 (coords -31.25 -15.0) 1.0 (controlpoint-4 138476136) 1.0 ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname"))) 138447856
- (cubic-bezier (controlpoint-1 138476136) 1.0 (coords -26.25 -22.5) 1.0 (coords -23.75 -22.5) 1.0 (controlpoint-4 136565496) 1.0 ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname"))) 138476136
- (segment (controlpoint-4 136566864) (controlpoint-1 136551104) ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname"))) 136566864 136565496 136556504 136551104
- (segment (controlpoint-4 136565168) (controlpoint-1 136548584) ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname"))) 136565168 136556176 136550776 136548584
- (decorator-arrow 136571744 0.949999988079071 2.0 0.0 ( (back-distance 0.699999988079071) (front-curvature 0.5) (arrow-angle 1.0) (arrow-back (arrow-back poly)) (arrow-front (arrow-front parabolic)) (arrow-alignment (arrow-alignment back)) (reversed #f) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (segment (controlpoint-4 136566152) (controlpoint-4 136567192) ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
- (segment (controlpoint-4 136551432) (controlpoint-4 136557160) ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname"))) 136567192 136566152 136557160 136551432 136565824 136556832 136551760 136548912
- (tex-text (decorator-point 136557488) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (decorator-point 136558544) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (decorator-point 136559408) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (start 136554240) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (end 136549240) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (end 136566480) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (start 136558352) "2" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgba 255 255 255 250)) (invisible #f) (name "noname")))
- (tex-text (start 136571360) "3" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (start 136549240) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (decorator-point 136552280) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (start 136549624) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (end 136549816) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (start 136553856) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (decorator-point 136560272) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (decorator-point 136567520) "2" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136567520 136569632
- (decorator-point (end 136553664) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136557488
- (decorator-point (start 136552088) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (start 136549240) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (decorator-point (start 136553664) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname"))) 136558544 136552280 136559408
- (decorator-point (start 136549624) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (decorator-point (end 136566480) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136560272
- (decorator-point (start 136554240) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (end 136549816) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname"))) 136571360 136568384 136558352 136553664 136566480 136561136 136552088 136549240 136553856 136549432 136554048 136549624 136549816 136554240
- (tex-text (decorator-point 136561328) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (decorator-point 136562192) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (decorator-point 136563248) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (start 136555984) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (end 136550008) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (end 136566672) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (tex-text (start 136563056) "2" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgba 255 255 255 250)) (invisible #f) (name "noname")))
- (tex-text (start 136571552) "3" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (start 136550008) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (decorator-point 136554624) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (start 136550392) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (end 136550584) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (start 136555408) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (decorator-point 136564112) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (tex-text (decorator-point 136568768) "2" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136568768 136570496
- (decorator-point (end 136555600) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136561328
- (decorator-point (start 136554432) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (start 136550008) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (decorator-point (start 136555600) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname"))) 136562192 136554624 136563248
- (decorator-point (start 136550392) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
- (decorator-point (end 136566672) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136564112
- (decorator-point (start 136555984) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
- (decorator-point (end 136550584) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname"))) 136571552 136568576 136563056 136555600 136566672 136564976 136554432 136550008 136555408 136550200 136555792 136550392 136550584 136555984 136571744))))))
\ No newline at end of file
+ (cubic-bezier (controlpoint-4 136574000) 1.0 (coords -28.75 -12.5) 1.0 (coords -31.25 -15.0) 1.0 (controlpoint-4 136555064) 1.0 ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname"))) 136574000
+ (cubic-bezier (controlpoint-1 136555064) 1.0 (coords -26.25 -22.5) 1.0 (coords -23.75 -22.5) 1.0 (controlpoint-4 136572304) 1.0 ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname"))) 136555064
+ (segment (controlpoint-4 136573672) (controlpoint-1 136557912) ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname"))) 136573672 136572304 136563312 136557912
+ (segment (controlpoint-4 136571976) (controlpoint-1 136555392) ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname"))) 136571976 136562984 136557584 136555392
+ (decorator-arrow 136578880 0.0700000002980232 2.0 0.0 ( (back-distance 0.699999988079071) (front-curvature 0.5) (arrow-angle 1.0) (arrow-back (arrow-back poly)) (arrow-front (arrow-front parabolic)) (arrow-alignment (arrow-alignment back)) (reversed #t) (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (segment (controlpoint-4 136572960) (controlpoint-4 136574328) ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname")))
+ (segment (controlpoint-4 136558240) (controlpoint-4 136563968) ( (stroke-style (stroke-style dotted)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgba 0 0 0 0)) (invisible #f) (name "noname"))) 136574328 136572960 136563968 136558240 136572632 136563640 136558568 136555720
+ (tex-text (decorator-point 136564296) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (decorator-point 136565352) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (decorator-point 136566216) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (start 136560968) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (end 136556048) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (end 136573288) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (start 136565160) "2" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgba 255 255 255 250)) (invisible #f) (name "noname")))
+ (tex-text (start 136578496) "3" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (start 136556048) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (decorator-point 136559608) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (start 136556432) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (end 136556624) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (start 136560584) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (decorator-point 136567080) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (decorator-point 136574656) "2" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136574656 136576768
+ (decorator-point (end 136560392) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136564296
+ (decorator-point (start 136559416) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (start 136556048) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (decorator-point (start 136560392) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname"))) 136565352 136559608 136566216
+ (decorator-point (start 136556432) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (decorator-point (end 136573288) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136567080
+ (decorator-point (start 136560968) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (end 136556624) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname"))) 136578496 136575520 136565160 136560392 136573288 136567944 136559416 136556048 136560584 136556240 136560776 136556432 136556624 136560968
+ (tex-text (decorator-point 136568136) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (decorator-point 136569000) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (decorator-point 136570056) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (start 136562792) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (end 136556816) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (end 136573480) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (tex-text (start 136569864) "2" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgba 255 255 255 250)) (invisible #f) (name "noname")))
+ (tex-text (start 136578688) "3" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (start 136556816) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (decorator-point 136561352) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (start 136557200) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (end 136557392) "0" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (start 136562216) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (decorator-point 136570920) "1" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (tex-text (decorator-point 136575904) "2" ( (relative-position-x 0.5) (relative-position-y 0.5) (absolute-shift-x 0.0) (absolute-shift-y 0.0) (alignment-x (alignment-x ref-relative)) (alignment-y (alignment-y bbox-relative)) (transform (transform 1.0 0.0 0.0 1.0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136575904 136577632
+ (decorator-point (end 136562408) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136568136
+ (decorator-point (start 136561160) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (start 136556816) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (decorator-point (start 136562408) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname"))) 136569000 136561352 136570056
+ (decorator-point (start 136557200) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname")))
+ (decorator-point (end 136573480) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname"))) 136570920
+ (decorator-point (start 136562792) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 0 0 0)) (invisible #f) (name "noname")))
+ (decorator-point (end 136557392) 0 2.0 0.0 ( (stroke-style (stroke-style solid)) (stroke-cap (cap-style butt)) (stroke-join (join-style miter)) (stroke-width 0.150000005960464) (stroke-color (rgb 0 0 0)) (fill-color (rgb 255 255 255)) (invisible #f) (name "noname"))) 136578688 136575712 136569864 136562408 136573480 136571784 136561160 136556816 136562216 136557008 136562600 136557200 136557392 136562792 136578880))))))
\ No newline at end of file