This commit is contained in:
Boris Marinov 2021-12-28 14:58:33 +02:00
parent 5fbf53e882
commit 1bfe94d307
16 changed files with 5714 additions and 45 deletions

View File

@ -16,7 +16,7 @@ So far, we saw many different categories and category types. Let's review them b
The category of sets
---
We began by reviewing the mother of all categories - *the category of sets* which is not only the archetype of a category, but it contains many other categories, such as the category of types in a programming languages.
We began by reviewing the mother of all categories - *the category of sets* which is not only the archetype of a category, but it contains within itself many other categories, such as the category of types in a programming languages.
![The category of sets](category_sets.svg)
@ -395,27 +395,20 @@ But both morphisms $F(g•f)$ and $F(g)•F(f)$ have the signature $F(a) ➞ F(c
The category of small categories
===
Ha, I got you this time (or at least I hope I did) - you probably thought that I won't introduce another category in this chapter, but this is exactly what I am going to do. And another surprise is that the new category won't be the category of functors (don't worry, we will introduce that in the next chapter.) Instead, we will examine the category of (small) categories.
Ha, I got you this time (or at least I hope I did) - you probably thought that I won't introduce another category in this chapter, but this is exactly what I am going to do. And another surprise is that the new category won't be the category of functors (don't worry, we will introduce that in the next chapter.) Instead, we will examine the category of (small) categories, that has all the categories that we saw so far as objects and functors as its morphisms, like $Set$ - the category of sets, $Mon,$ the category of monoids, $Ord,$ the category of orders etc.
This category has all the categories that we saw so far as objects and functors are its morphisms.
![The category of categories](category_of_categories.svg)
**Task:** Go through the functor definition and see how you can make functors compose.
**Question:** What are the initial and terminal object of the category of small categories.
There isn't much to say about this category, it is just a good exercise to try to visualize it.
[The category of categories](category_of_categories)
Categories all the way down
---
The recursive nature of category theory might leave some of you confused: we started by saying that categories are *composed of objects and morphisms*, but now we are saying that there are morphisms between categories (functors) and a category where *the objects are categories themselves*. Does that mean that categories are an example of categories?
The recursive nature of category theory might leave some of you confused: we started by saying that categories are *composed of objects and morphisms*, but now we are saying that there are morphisms between categories (functors) and a category where *the objects are categories themselves*. Does that mean that categories are an example of... categories? Yes. Sounds a bit weird on intuitive level (as for example biscuits don't contain other biscuits and houses don't use houses as building material) but it is perfectly legitimate.
Yes. Sounds a bit weird on intuitive level (as for example biscuits don't contain other biscuits and houses don't use houses as building material) but it is perfectly legitimate.
Category theory does *categorize* (see what I did there) everything, so all of maths is categories all the way down and whether you would threat a given category as a universe, or as a point depends solemly on your viewpoint.
Category theory does *categorize* (see what I did there) everything, so from a category-theoretic standpoint all of maths is categories all the way down and whether you would threat a given category as a universe, or as a point depends solemly on your viewpoint.
Like for example, every monoid is a category with one just object. But at the same time, monoids can be seen as belonging to one category - the category of monoids - with monoid homomorphisms acting as objects.
@ -425,70 +418,110 @@ There may be many more levels of categories from categories. However that does n
We can use the same tactict with our little journey in category theory - stick on the level that make sense for us and not be obsessed with forming picture of the whole thing Because there is no *whole thing* - category theory is an *abstract* theory. That is, it does not seek to represent an actual state of affairs, but to provide a language that you can use to express many different ideas, actual or purely imaginary. So view the category of categories not as a structure, but as a space, where all these concepts live.
{% if site.distribution == 'print' %}
The ghost of Russell's paradox
---
We say *small* because otherwise the category will include itself and it's going to be Russell's paradox all over again.
{% endif %}
Free and forgetful functors
===
In the first few chapters, we reviewed a lot of types of categories that are based on each other i.e. ones where one category is the same as the other plus some additional law - groups are monoids with added inversion, partial orders are antisymmetric preorders. And virtually all categories can be viewed as are sets with added morphisms.
A lot of categories that are in $Cat$ are based on each other i.e. ones where one category is the same as the other plus some additional law - groups are monoids with added inversion, partial orders are antisymmetric preorders. And virtually all categories can be viewed as are sets with added morphisms. Between any two such categories there are two functors called the *forgetful* functor that goes from the richer category to the more plain one and the *free* functor, which goes the other way around.
![Comparison of different types of categories](categories_comparison.svg)
![Free and forgetful functors](free_forgetful_functors.svg)
Between any two such categories there are two functors called the free and forgetful functor.
Forgetful functors
===
Forgetful functors map the objects from the more richer and featureful category to their corresponding objects in the simpler and more unstructured one.
![Forgetful functors](forgetful_functors.svg)
They strip (forget) all the structure of the more complex category which is not present in the simpler one. i.e.
Object mapping
---
If you do away with the monoid operation of a given monoid, what is left is its underlying set. This observation defines the object mapping of a forgetful functor that goes from the category of monoids to the category of sets (where each monoid is mapped to it's underlying set.)
The object mapping of the forgetful functor consists of picking the object in the simpler category that corresponds to the one from the richer one. It works by just removing the extra structure or properties of each object in the richer category which is not present in the simpler one.
Let's take the forgetful functor between the category of sets $Set$ and the category of monoids ($Mon$) as an example. A monoid is a set, combined with *a monoid operation*. The monoid operation is the extra structure. And if you do away with it, what is left from a monoid is its underlying set. This observation defines the object mapping of a forgetful functor that goes from the category of monoids to the category of sets - each monoid is mapped to it's underlying set.
![Forgetful functor - object mapping](forgetful_functor_objects.svg)
This same type of functor exists for any two categories that are based on each other. Or equally correct two categories are based on each other only if such a functor exist.
Morphism mapping
---
In order for the forgetful functor to really be a functor it also must map morphisms between the two categories i.e. to map every *monoid homomorphism* between two monoids to a function between their underlying sets. This won't be hard - we said that monoid homomorphisms are function between the monoids' underlying sets which preserves the group operation. Which means that... they are functions. So we need only to forget the extra conditions.
In order for the forgetful functor to really be a functor it also must map morphisms between the two categories i.e. to map every *monoid homomorphism* between two monoids to a function between their underlying sets.
![Forgetful functor](forgetful_functor.svg)
This is not hard - we said that monoid homomorphisms are function between the monoids' underlying sets which preserves the group operation. Which means that they are functions already functions between the monoids' underlying sets. So all we need to do is to forget about the extra conditions.
Functor laws
---
In this case the functor laws are obviously followed - we basically copied the structure of the monoid category into the set category.
In this case the functor laws are obviously followed - we basically copied the structure of one category into the other one.
Free functors
===
Now let's review the functor that has certain relationship with the free functor, but goes the other way around - from sets to monoids. This section would be a little longer, as while going from a more complex category to a simpler one is trivial enough, going the other way around is not that easy.
Now let's review the functor that has certain relation to the forgetful functor, but goes the other way around - from richer to simpler categories.
As a matter of fact, literary going the other way around is impossible, as the forgetful functor maps all monoids that are based on a given set to that set, so if we try to reverse the mapping we would get something that is not a functor.
![Free functors](free_functors.svg)
In other words, the connection between more simple to more complex versions of a category is not an isomorphism - we cannot connect each underlying set to *all of the monoids that are based on it*. However, we can connect them to one special monoid that is connected to all of them.
Saying "going the other way around" is actually not entirely accurate, as we cannot literary reverse the mapping from the forgetful functor. This is so, simply due to the fact that given one simple structure (such as a set) there can be more than one richer structures that correspond to it (e.g. the set of natural numbers is the underlying set of both the monoid of natural numbers under addition and the monoid of natural numbers under mutliplication.)
And that object is the *free monoid* that we saw in chapter 3. And that is the free functor.
But, although we cannot create a functor that is the reverse of the forgetful functor, there is one functor that still has some interesting connection to it - this functor is called the *free functor* for a given category. It works by connecting each object from the simpler category to the *free object* corresponding to it. In our case the case of monoids it is the free monoid generated by a given set.
Object mapping
---
So the free functor maps every set to the free monoid of that set. When we reviewed free monoids we said that the free monoid of a set $A$ it is the monoid of lists of A's which we will dub $[A]$. The object mapping is just a function that maps each object $a:A$ to the singleton list, so $a \to [a]$.
The object mapping of the free functor is the procedure for generating free objects. For any given object $o$ from the simpler category the free object of $o$, $F(o)$ is an object of the more complex category that adds the minimum structure needed for the $o$ to become an object of the more complex category.
When we reviewed free monoids we said that the free monoid of a given set of is just the monoid that "does nothing" i.e. the one that has no laws. What does that mean?
As we said in chapter 3 each monoid can be represented by a set of basic elements, called generators, (such as the 60 degree rotation of a right triangle)
![Generator of the monoid of rotations](generator_rotations.svg)
And a bunch of rules or equations describing how sequences of these generators collapse to a single eleement (e.g. the fact that rotating the triangle three times gets you to its initial position.)
![Rule of the monoid of rotations](rule_rotations.svg)
Here the rules for a given set of generators can be arbitrary, so the free monoid is the monoid that has no such rules. As a result, the free monoid of a given set is the monoid of all possible (endless) sequences of elements of a that set (which is taken as the monoid's set of generators.
If you think about this definition we would realize that the free monoid is actually just the *list datatype* that we are familiar from programming. And the free functor converting sets to monoids is actually the list functor that we saw in one of the previous sections.
![Free functors](free_functor_objects.svg)
Formally the free monoid over a set $A$ is just the type $[A]$ and the free functor is the function $a \to [a]$ for all $a:A$.
Morphism mapping
---
The free monoid for set A is the monoid containing lists of elements of type a, so the morphism mapping of the free functor maps each function between sets to a function between lists of sets.
Once we established that the free functor for set $A$ is just the list functor we already know how the the morphism mapping that converts function between sets to functions between lists of sets, and the way to construct this mapping is to apply the function to every element of that list.
Adjoint functors
===
If the concept of a free object and the corresponding free functor seemed somewhat arbitrary to you, don't worry, it will seem clearer once we pinpoint the relationship it has with the (arguably more straightforward) concept of forgetful functor.
Given a free object *in the richer category* (i.e. free monoid) from a given set of generators, there exists a monoid homomorphism from it, to any other monoid with the same set of generators.
![Adjunction](adjunction_1.svg)
The homomorphism consists of just applying the monoid laws and by doing that collapsing the infinite lists of elements of the free monoid into (possibly finite) elements in the other one.
Then, given a set in the more basic category, there exist a morphism from it to the underlying set of any monoid that is generated by the elements of that set as generators.
![Adjunction](adjunction_2.svg)
Finally, any two such functions are actually the same function.
![Adjunction](adjunction_3.svg)
This relationship, called an *adjunction* defines what the free functor is in terms of the forgetful one.
Let's take another example. The free monoid with just one generator can be mapped to all cyclic monoids like $Z_{1}$, $Z_{2}$, $Z_{3}$ etc. as well as to the monoid of natural numbers under addition. And because of that in the category of sets, the singleton set can be mapped to the underlying sets of all these monoids.
![Adjunction](adjunction_numbers.svg)
There definitely is more to be said about free and forgetful functors, as well as for adjunctions (which are not only of free/forgetful type), but as always, I will leave things at the most interesting moment in order to revisit them from a different perspective later.
And the way to construct this mapping that establishes a connection between the free and forgetful functor is to apply the function to every element of that lists.

View File

@ -0,0 +1,489 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 400"
version="1.1"
id="svg15613"
sodipodi:docname="adjunction_1.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
width="595.29999"
height="400">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="293.20767"
inkscape:cy="104.75696"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0"
showguides="false" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-104.19925,-144.50005)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,280.1326,-139.43123)" />
<g
id="g2801-7-0-5"
transform="matrix(8.9315336,0,0,8.4711409,-2253.035,-2966.4827)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="matrix(1.1772283,0,0,1.1772283,74.02887,212.77239)"
id="text17012-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Mon">
<path
inkscape:connector-curvature="0"
id="path17542"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 172.07272,120.92641 h 2.20008 l 1.52658,3.58748 1.53557,-3.58748 h 2.19559 v 6.70351 h -1.63434 v -4.90303 l -1.54455,3.61441 h -1.09555 l -1.54455,-3.61441 v 4.90303 h -1.63883 z" />
<path
inkscape:connector-curvature="0"
id="path17544"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 183.54456,123.62937 q -0.5343,0 -0.81717,0.38613 -0.27838,0.38165 -0.27838,1.10453 0,0.72289 0.27838,1.10902 0.28287,0.38165 0.81717,0.38165 0.52533,0 0.8037,-0.38165 0.27838,-0.38613 0.27838,-1.10902 0,-0.72288 -0.27838,-1.10453 -0.27837,-0.38613 -0.8037,-0.38613 z m 0,-1.14943 q 1.2976,0 2.02497,0.70043 0.73187,0.70044 0.73187,1.93966 0,1.23923 -0.73187,1.93967 -0.72737,0.70043 -2.02497,0.70043 -1.30209,0 -2.03844,-0.70043 -0.73186,-0.70044 -0.73186,-1.93967 0,-1.23922 0.73186,-1.93966 0.73635,-0.70043 2.03844,-0.70043 z" />
<path
inkscape:connector-curvature="0"
id="path17546"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 192.52448,124.56777 v 3.06215 h -1.61639 v -0.49838 -1.84538 q 0,-0.65104 -0.0314,-0.89799 -0.0269,-0.24695 -0.0988,-0.36369 -0.0943,-0.15714 -0.25593,-0.24245 -0.16164,-0.0898 -0.36818,-0.0898 -0.50287,0 -0.79023,0.39062 -0.28736,0.38614 -0.28736,1.0731 v 2.47397 h -1.6074 v -5.02875 h 1.6074 v 0.73635 q 0.36369,-0.44002 0.77227,-0.64655 0.40859,-0.21103 0.90249,-0.21103 0.87105,0 1.32004,0.5343 0.45349,0.53431 0.45349,1.55353 z" />
</g>
<g
id="g42748-4"
transform="matrix(1.3827459,0,0,1.3827459,91.2179,-286.93168)" />
<g
id="g42748-8-6"
transform="matrix(1.3827459,0,0,1.3827459,417.68971,-282.62596)" />
<circle
id="circle13552"
r="72.23513"
cy="105.48617"
cx="294.56403"
stroke-miterlimit="10"
style="fill:#ffccaa;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
id="g42748-5"
transform="matrix(1.6278077,0,0,1.6278077,-91.65179,-633.15892)" />
<g
id="g42748-8-8"
transform="matrix(1.6278077,0,0,1.6278077,292.68006,-628.0901)" />
<g
id="g42748-4-2"
transform="matrix(1.3827459,0,0,1.3827459,103.76536,-775.59055)" />
<g
id="g42748-8-6-2"
transform="matrix(1.3827459,0,0,1.3827459,430.23717,-771.28483)" />
<circle
id="circle13552-0"
r="72.23513"
cy="276.5448"
cx="292.20767"
stroke-miterlimit="10"
style="fill:#ffccaa;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<circle
id="circle13592"
r="15.465485"
cy="257.89664"
cx="239.41833"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#e6e6e6;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1"
transform="matrix(-0.03791107,0.16988291,-0.23375241,-0.04703823,318.26204,236.89316)"
inkscape:transform-center-x="-11.878891"
inkscape:transform-center-y="-3.3602791">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-2"
transform="matrix(-0.03148083,0.17119115,-0.23535929,-0.03819411,347.96376,157.97027)"
inkscape:transform-center-x="-11.110558"
inkscape:transform-center-y="-3.634907">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-6"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-4"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g60465"
transform="matrix(0.66940259,0,0,0.66940259,138.01643,238.9425)">
<circle
r="29.954245"
cy="-270.5"
cx="213.25"
id="path60354-9"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-1"
transform="matrix(-0.04016541,0.16936408,-0.23310665,-0.05014057,310.5194,190.44763)"
inkscape:transform-center-x="-11.449798"
inkscape:transform-center-y="-3.262315">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-2"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-8"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<circle
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#808080;stroke-width:3.347013;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
id="path60354"
cx="255.1454"
cy="122.0153"
r="20.051449"
transform="rotate(2.160128)" />
<g
id="g60465-3"
transform="matrix(0.66940259,0,0,0.66940259,114.50294,273.82124)"
style="stroke:#808080">
<circle
r="29.954245"
cy="-277.96936"
cx="199.05824"
id="path60354-9-8"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#808080;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-8"
transform="matrix(-0.04610586,0.16784428,-0.23119594,-0.05831999,402.05363,249.77085)"
inkscape:transform-center-x="-10.418085"
inkscape:transform-center-y="-2.999883">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-9"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-2"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g66262"
transform="matrix(0.86374085,0.03257963,-0.03257963,0.86374085,58.2273,197.60993)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
id="g66250"
transform="matrix(1.4329394,0,0,1.4329394,-135.60219,397.89195)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3373"
r="10.394309"
cy="-55.880161"
cx="323.10577" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3387"
r="10.394309"
cy="-59.38718"
cx="321.07761" />
</g>
<g
id="g66242-3"
transform="matrix(0.86435507,0,0,0.86435507,169.54628,135.47824)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-7"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-7"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66258-7"
transform="matrix(1.4319211,0.05401095,-0.05401095,1.4319211,-116.50216,382.71423)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3375-6"
r="10.394309"
cy="-61.07732"
cx="253.00755" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3389-0"
r="10.394309"
cy="-64.584343"
cx="250.97942" />
</g>
<g
id="g66242-0-7"
transform="matrix(1.4329394,0,0,1.4329394,93.070435,356.73258)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-4-3"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-76-2"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66262-96"
transform="matrix(1.4778927,0.05574496,-0.05574496,1.4778927,-4.13712,393.46695)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-04"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-1"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-8-0"
transform="matrix(-0.03616409,0.17026336,-0.23422324,-0.04463473,379.99462,213.02103)"
inkscape:transform-center-x="-12.129233"
inkscape:transform-center-y="-3.4355861">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-9-4"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-2-8"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g60465-3-6-2"
transform="matrix(0.66940259,0,0,0.66940259,175.4999,284.57341)">
<circle
r="29.954245"
cy="-277.96936"
cx="199.05824"
id="path60354-9-8-5-6"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
id="g66262-5"
transform="matrix(0.86374085,0.03257963,-0.03257963,0.86374085,126.09376,163.93806)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-8"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-7"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
id="g66246-7-4-2-0"
transform="matrix(1.3963698,0,0,1.3963698,128.40391,365.91763)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-1"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-78"
cy="-63.541103"
cx="106.41364" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-8-0-9"
transform="matrix(-0.03616409,0.17026336,-0.23422324,-0.04463473,353.17385,214.2418)"
inkscape:transform-center-x="-12.129233"
inkscape:transform-center-y="-3.4355861">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-9-4-1"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-2-8-5"
d="M -341.99037,310.51399 C -161.18972,232.96137 81.728479,188.4964 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g60465-3-6"
transform="matrix(0.66940259,0,0,0.66940259,156.4999,332.07341)"
style="stroke:#808080">
<circle
r="29.954245"
cy="-277.96936"
cx="199.05824"
id="path60354-9-8-5"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#808080;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
id="g66242-0"
transform="matrix(0.86374085,0.03257963,-0.03257963,0.86374085,147.4217,205.08412)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-4"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-76"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66246-7-4-2-7"
transform="matrix(0.90331157,0,0,0.90331157,193.2093,202.81344)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-0"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-86"
cy="-63.541103"
cx="106.41364" />
</g>
<circle
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#808080;stroke-width:3.347013;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
id="path60354-90"
cx="339.80719"
cy="128.5"
r="20.051449" />
<g
id="g66246-7-4-2-6"
transform="matrix(0.86435507,0,0,0.86435507,258.15095,183.23295)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-8"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-7"
cy="-63.541103"
cx="106.41364" />
</g>
<g
id="g66262-3"
transform="matrix(0.86435507,0,0,0.86435507,150.04608,202.00948)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-3"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-3"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,317 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 400"
version="1.1"
id="svg15613"
sodipodi:docname="adjunction_2.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
width="595.29999"
height="400">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="1.4142136"
inkscape:cx="431.70767"
inkscape:cy="223.75696"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0"
showguides="false" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-401.43432,-155.57112)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,-17.102466,-150.5023)" />
<g
id="g2801-7-0-5-9"
transform="matrix(8.8429338,0,0,8.4711409,-2227.9605,-2971.3319)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g17649"
transform="matrix(1.1772283,0,0,1.1772283,-137.7062,332.20132)">
<g
id="text17012-7-3-0-9-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Set"
transform="translate(123.5954,-18.263237)">
<path
id="path17513"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 245.05503,34.52635 v 1.418826 q -0.55226,-0.246947 -1.07759,-0.372666 -0.52532,-0.125719 -0.99228,-0.125719 -0.61961,0 -0.91595,0.170619 -0.29634,0.170618 -0.29634,0.529815 0,0.269397 0.19756,0.422056 0.20205,0.148168 0.72737,0.255927 l 0.73636,0.148169 q 1.118,0.224498 1.58944,0.682474 0.47145,0.457975 0.47145,1.302087 0,1.10902 -0.66003,1.652305 -0.65553,0.538795 -2.00701,0.538795 -0.63757,0 -1.27964,-0.121229 -0.64206,-0.121229 -1.28412,-0.359196 v -1.459237 q 0.64206,0.341237 1.23922,0.516345 0.60166,0.170619 1.15841,0.170619 0.56574,0 0.86657,-0.188578 0.30082,-0.188579 0.30082,-0.538795 0,-0.314298 -0.20654,-0.484916 -0.20204,-0.170618 -0.81268,-0.305317 l -0.669,-0.148169 q -1.00575,-0.215518 -1.47271,-0.686963 -0.46246,-0.471446 -0.46246,-1.270659 0,-1.00126 0.64655,-1.540055 0.64655,-0.538795 1.85884,-0.538795 0.55227,0 1.13596,0.08531 0.5837,0.08082 1.2078,0.246948 z"
inkscape:connector-curvature="0" />
<path
id="path17515"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 251.96059,38.490983 v 0.457976 h -3.7581 q 0.0584,0.565734 0.40859,0.848602 0.35022,0.282867 0.97881,0.282867 0.50736,0 1.03718,-0.148169 0.5343,-0.152658 1.09555,-0.457975 v 1.239228 q -0.57023,0.215518 -1.14045,0.323277 -0.57022,0.112249 -1.14045,0.112249 -1.36495,0 -2.12375,-0.691453 -0.75431,-0.695944 -0.75431,-1.948642 0,-1.230249 0.74084,-1.935172 0.74533,-0.704924 2.04742,-0.704924 1.18535,0 1.89476,0.713904 0.71391,0.713903 0.71391,1.908232 z m -1.65231,-0.534305 q 0,-0.457976 -0.2694,-0.736353 -0.2649,-0.282868 -0.69594,-0.282868 -0.46695,0 -0.7588,0.264908 -0.29185,0.260417 -0.36369,0.754313 z"
inkscape:connector-curvature="0" />
<path
id="path17517"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 254.93294,34.562269 v 1.427807 h 1.65679 v 1.149429 h -1.65679 v 2.132731 q 0,0.350216 0.13919,0.475935 0.13919,0.121229 0.55226,0.121229 h 0.82616 v 1.149429 h -1.37842 q -0.95187,0 -1.35148,-0.395116 -0.39512,-0.399606 -0.39512,-1.351477 v -2.132731 h -0.79921 v -1.149429 h 0.79921 v -1.427807 z"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g42748-4"
transform="matrix(1.3827459,0,0,1.3827459,-206.01717,-298.00275)" />
<g
id="g42748-8-6"
transform="matrix(1.3827459,0,0,1.3827459,120.45464,-293.69703)" />
<circle
id="circle13556"
r="72.23513"
cy="101.86987"
cx="293.79785"
stroke-miterlimit="10"
style="fill:#dddddd;fill-opacity:1;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
id="g42748-5"
transform="matrix(1.6278077,0,0,1.6278077,-388.88686,-644.22999)" />
<g
id="g42748-8-8"
transform="matrix(1.6278077,0,0,1.6278077,-4.555006,-639.16117)" />
<g
id="g42748-4-2"
transform="matrix(1.3827459,0,0,1.3827459,-193.46971,-786.66162)" />
<g
id="g42748-8-6-2"
transform="matrix(1.3827459,0,0,1.3827459,133.0021,-782.3559)" />
<circle
id="circle13552-0-9"
r="72.23513"
cy="268.81738"
cx="295.95245"
stroke-miterlimit="10"
style="fill:#cccccc;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<circle
id="circle13592-4"
r="15.465485"
cy="250.55164"
cx="247.88487"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#e6e6e6;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
id="g66250-9"
transform="matrix(1.4329394,0,0,1.4329394,-126.78211,389.83983)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3373-2"
r="10.394309"
cy="-55.880161"
cx="323.10577" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3387-5"
r="10.394309"
cy="-59.38718"
cx="321.07761" />
</g>
<g
id="g66258-7-7"
transform="matrix(1.4319211,0.05401095,-0.05401095,1.4319211,-107.68208,374.66211)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3375-6-4"
r="10.394309"
cy="-61.07732"
cx="253.00755" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3389-0-9"
r="10.394309"
cy="-64.584343"
cx="250.97942" />
</g>
<g
id="g66242-0-7-9"
transform="matrix(1.4329394,0,0,1.4329394,101.89052,348.68046)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-4-3-4"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-76-2-5"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66262-96-9"
transform="matrix(1.4778927,0.05574496,-0.05574496,1.4778927,4.682964,385.41483)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-04-3"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-1-5"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
id="g66246-7-4-2-0-7"
transform="matrix(1.3963698,0,0,1.3963698,137.22399,357.86551)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-1-0"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-78-8"
cy="-63.541103"
cx="106.41364" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-2-7"
transform="matrix(-0.03148083,0.17119115,-0.23535929,-0.03819411,355.27949,147.00758)"
inkscape:transform-center-x="-11.110558"
inkscape:transform-center-y="-3.634907">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-6-8"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-4-2"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g66242"
transform="matrix(1.3963698,0,0,1.3963698,104.43797,177.04482)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-8-0-0"
transform="matrix(-0.03616409,0.17026336,-0.23422324,-0.04463473,387.31034,202.05834)"
inkscape:transform-center-x="-12.129233"
inkscape:transform-center-y="-3.4355861">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-9-4-2"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-2-8-0"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g66262-9"
transform="matrix(1.3963698,0,0,1.3963698,23.605544,212.22166)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-0"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-2"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-8-0-9-2"
transform="matrix(-0.03616409,0.17026336,-0.23422324,-0.04463473,360.48958,203.27911)"
inkscape:transform-center-x="-12.129233"
inkscape:transform-center-y="-3.4355861">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-9-4-1-1"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-2-8-5-2"
d="M -341.99037,310.51399 C -161.18972,232.96137 81.728479,188.4964 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g66246-7-4-2"
transform="matrix(1.3963698,0,0,1.3963698,147.98438,218.96712)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4"
cy="-63.541103"
cx="106.41364" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,880 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 400"
version="1.1"
id="svg15613"
sodipodi:docname="adjunction_3.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
width="595.29999"
height="400">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="127.98814"
inkscape:cy="138.75696"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0"
showguides="false" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-248.69925,-148.50005)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,135.6326,-143.43123)" />
<g
id="g2801-7-0-5"
transform="matrix(7.1804749,0,0,8.4711409,-1899.0562,-2970.4827)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="matrix(1.1772283,0,0,1.1772283,-70.47113,208.77239)"
id="text17012-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Mon">
<path
inkscape:connector-curvature="0"
id="path17542"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 172.07272,120.92641 h 2.20008 l 1.52658,3.58748 1.53557,-3.58748 h 2.19559 v 6.70351 h -1.63434 v -4.90303 l -1.54455,3.61441 h -1.09555 l -1.54455,-3.61441 v 4.90303 h -1.63883 z" />
<path
inkscape:connector-curvature="0"
id="path17544"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 183.54456,123.62937 q -0.5343,0 -0.81717,0.38613 -0.27838,0.38165 -0.27838,1.10453 0,0.72289 0.27838,1.10902 0.28287,0.38165 0.81717,0.38165 0.52533,0 0.8037,-0.38165 0.27838,-0.38613 0.27838,-1.10902 0,-0.72288 -0.27838,-1.10453 -0.27837,-0.38613 -0.8037,-0.38613 z m 0,-1.14943 q 1.2976,0 2.02497,0.70043 0.73187,0.70044 0.73187,1.93966 0,1.23923 -0.73187,1.93967 -0.72737,0.70043 -2.02497,0.70043 -1.30209,0 -2.03844,-0.70043 -0.73186,-0.70044 -0.73186,-1.93967 0,-1.23922 0.73186,-1.93966 0.73635,-0.70043 2.03844,-0.70043 z" />
<path
inkscape:connector-curvature="0"
id="path17546"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 192.52448,124.56777 v 3.06215 h -1.61639 v -0.49838 -1.84538 q 0,-0.65104 -0.0314,-0.89799 -0.0269,-0.24695 -0.0988,-0.36369 -0.0943,-0.15714 -0.25593,-0.24245 -0.16164,-0.0898 -0.36818,-0.0898 -0.50287,0 -0.79023,0.39062 -0.28736,0.38614 -0.28736,1.0731 v 2.47397 h -1.6074 v -5.02875 h 1.6074 v 0.73635 q 0.36369,-0.44002 0.77227,-0.64655 0.40859,-0.21103 0.90249,-0.21103 0.87105,0 1.32004,0.5343 0.45349,0.53431 0.45349,1.55353 z" />
</g>
<g
id="g2801-7-0-5-9"
transform="matrix(7.1804749,0,0,8.4711409,-1601.2565,-2964.2608)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g17649"
transform="matrix(1.1772283,0,0,1.1772283,15.028869,339.27239)">
<g
id="text17012-7-3-0-9-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Set"
transform="translate(123.5954,-18.263237)">
<path
id="path17513"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 245.05503,34.52635 v 1.418826 q -0.55226,-0.246947 -1.07759,-0.372666 -0.52532,-0.125719 -0.99228,-0.125719 -0.61961,0 -0.91595,0.170619 -0.29634,0.170618 -0.29634,0.529815 0,0.269397 0.19756,0.422056 0.20205,0.148168 0.72737,0.255927 l 0.73636,0.148169 q 1.118,0.224498 1.58944,0.682474 0.47145,0.457975 0.47145,1.302087 0,1.10902 -0.66003,1.652305 -0.65553,0.538795 -2.00701,0.538795 -0.63757,0 -1.27964,-0.121229 -0.64206,-0.121229 -1.28412,-0.359196 v -1.459237 q 0.64206,0.341237 1.23922,0.516345 0.60166,0.170619 1.15841,0.170619 0.56574,0 0.86657,-0.188578 0.30082,-0.188579 0.30082,-0.538795 0,-0.314298 -0.20654,-0.484916 -0.20204,-0.170618 -0.81268,-0.305317 l -0.669,-0.148169 q -1.00575,-0.215518 -1.47271,-0.686963 -0.46246,-0.471446 -0.46246,-1.270659 0,-1.00126 0.64655,-1.540055 0.64655,-0.538795 1.85884,-0.538795 0.55227,0 1.13596,0.08531 0.5837,0.08082 1.2078,0.246948 z"
inkscape:connector-curvature="0" />
<path
id="path17515"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 251.96059,38.490983 v 0.457976 h -3.7581 q 0.0584,0.565734 0.40859,0.848602 0.35022,0.282867 0.97881,0.282867 0.50736,0 1.03718,-0.148169 0.5343,-0.152658 1.09555,-0.457975 v 1.239228 q -0.57023,0.215518 -1.14045,0.323277 -0.57022,0.112249 -1.14045,0.112249 -1.36495,0 -2.12375,-0.691453 -0.75431,-0.695944 -0.75431,-1.948642 0,-1.230249 0.74084,-1.935172 0.74533,-0.704924 2.04742,-0.704924 1.18535,0 1.89476,0.713904 0.71391,0.713903 0.71391,1.908232 z m -1.65231,-0.534305 q 0,-0.457976 -0.2694,-0.736353 -0.2649,-0.282868 -0.69594,-0.282868 -0.46695,0 -0.7588,0.264908 -0.29185,0.260417 -0.36369,0.754313 z"
inkscape:connector-curvature="0" />
<path
id="path17517"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 254.93294,34.562269 v 1.427807 h 1.65679 v 1.149429 h -1.65679 v 2.132731 q 0,0.350216 0.13919,0.475935 0.13919,0.121229 0.55226,0.121229 h 0.82616 v 1.149429 h -1.37842 q -0.95187,0 -1.35148,-0.395116 -0.39512,-0.399606 -0.39512,-1.351477 v -2.132731 h -0.79921 v -1.149429 h 0.79921 v -1.427807 z"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g42748-4"
transform="matrix(1.3827459,0,0,1.3827459,-53.2821,-290.93168)" />
<g
id="g42748-8-6"
transform="matrix(1.3827459,0,0,1.3827459,273.18971,-286.62596)" />
<circle
id="circle13556"
r="72.23513"
cy="108.94094"
cx="446.53293"
stroke-miterlimit="10"
style="fill:#dddddd;fill-opacity:1;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<circle
id="circle13552"
r="72.23513"
cy="101.48617"
cx="150.06404"
stroke-miterlimit="10"
style="fill:#ffccaa;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
id="g42748-5"
transform="matrix(1.6278077,0,0,1.6278077,-236.15179,-637.15892)" />
<g
id="g42748-8-8"
transform="matrix(1.6278077,0,0,1.6278077,148.18006,-632.0901)" />
<g
id="g42748-4-2"
transform="matrix(1.3827459,0,0,1.3827459,-40.734641,-779.59055)" />
<g
id="g42748-8-6-2"
transform="matrix(1.3827459,0,0,1.3827459,285.73717,-775.28483)" />
<circle
id="circle13552-0"
r="72.23513"
cy="272.5448"
cx="147.70767"
stroke-miterlimit="10"
style="fill:#ffccaa;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<circle
id="circle13552-0-9"
r="72.23513"
cy="275.88846"
cx="448.68753"
stroke-miterlimit="10"
style="fill:#cccccc;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-2-3-7-1"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,342.88991,225.81189)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-4-1-3-9"
d="M -1171.1955,515.16133 C -727.60217,286.24997 -20.665474,206.05175 311.91809,237.27238"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5-3-3-9"
d="m 311.91809,237.27238 c 8.3737,-2.57878 17.0361,-4.98257 25.8934,-7.30427 -6.1864,-2.47429 -12.7993,-4.79477 -19.8394,-6.96254 -2.0856,4.98076 -3.311,8.85536 -6.054,14.26681 z" />
</g>
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,371.47901,148.37629)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0"
d="M -1160.6611,508.68911 C -717.06779,279.77775 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5-8"
d="m 311.91809,237.27238 c 8.3737,-2.57879 17.0361,-4.98258 25.8934,-7.30427 -6.1864,-2.47429 -12.7993,-4.79477 -19.8394,-6.96254 -2.0856,4.98076 -3.311,8.85536 -6.054,14.26681 z" />
</g>
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-2"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,372.87494,201.98708)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-4"
d="M -1160.6611,508.68911 C -717.06779,279.77775 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5-3"
d="m 307.77166,239.34593 c 8.3737,-2.57879 17.0361,-4.98258 25.8934,-7.30427 -6.1864,-2.47429 -12.7993,-4.79477 -19.8394,-6.96254 -2.0856,4.98076 -3.311,8.85536 -6.054,14.26681 z" />
</g>
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-2-3"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,336.81681,182.30332)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
sodipodi:nodetypes="cccc"
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5"
d="m 311.05569,238.25595 c 8.37368,-2.57879 17.03604,-4.98258 25.89333,-7.30427 -6.18632,-2.47429 -12.79923,-4.79477 -19.8394,-6.96254 -2.08557,4.98076 -3.31094,8.85536 -6.05393,14.26681 z" />
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-4-1"
d="M -1190.2704,508.68187 C -746.6771,279.77051 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<circle
id="circle13592"
r="15.465485"
cy="253.89664"
cx="94.918327"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#e6e6e6;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-2-3-7"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,416.97366,241.95333)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-4-1-3"
d="M -1160.6611,508.68911 C -717.06779,279.77775 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5-3-3"
d="m 311.91809,237.27238 c 8.3737,-2.57878 17.0361,-4.98257 25.8934,-7.30427 -6.1864,-2.47429 -12.7993,-4.79477 -19.8394,-6.96254 -2.0856,4.98076 -3.311,8.85536 -6.054,14.26681 z" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1"
transform="matrix(-0.03791107,0.16988291,-0.23375241,-0.04703823,173.76204,232.89316)"
inkscape:transform-center-x="-11.878891"
inkscape:transform-center-y="-3.3602791">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-2"
transform="matrix(-0.03148083,0.17119115,-0.23535929,-0.03819411,203.46376,153.97027)"
inkscape:transform-center-x="-11.110558"
inkscape:transform-center-y="-3.634907">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-6"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-4"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g60465"
transform="matrix(0.66940259,0,0,0.66940259,-6.4835707,234.9425)">
<circle
r="29.954245"
cy="-270.5"
cx="213.25"
id="path60354-9"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-1"
transform="matrix(-0.04016541,0.16936408,-0.23310665,-0.05014057,166.0194,186.44763)"
inkscape:transform-center-x="-11.449798"
inkscape:transform-center-y="-3.262315">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-2"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-8"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<circle
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#b3b3b3;stroke-width:3.347013;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
id="path60354"
cx="110.59731"
cy="123.46469"
r="20.051449"
transform="rotate(2.160128)" />
<g
id="g60465-3"
transform="matrix(0.66940259,0,0,0.66940259,-29.997055,269.82124)"
style="stroke:#b3b3b3">
<circle
r="29.954245"
cy="-277.96936"
cx="199.05824"
id="path60354-9-8"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#b3b3b3;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-8"
transform="matrix(-0.04610586,0.16784428,-0.23119594,-0.05831999,257.55363,245.77085)"
inkscape:transform-center-x="-10.418085"
inkscape:transform-center-y="-2.999883">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-9"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#a3a3a3;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-2"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g66262"
transform="matrix(0.86374085,0.03257963,-0.03257963,0.86374085,-86.2727,193.60993)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
id="g66250"
transform="matrix(1.4329394,0,0,1.4329394,-280.10219,393.89195)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3373"
r="10.394309"
cy="-55.880161"
cx="323.10577" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3387"
r="10.394309"
cy="-59.38718"
cx="321.07761" />
</g>
<g
id="g66242-3"
transform="matrix(0.86435507,0,0,0.86435507,25.046281,131.47824)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-7"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-7"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66258-7"
transform="matrix(1.4319211,0.05401095,-0.05401095,1.4319211,-261.00216,378.71423)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3375-6"
r="10.394309"
cy="-61.07732"
cx="253.00755" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3389-0"
r="10.394309"
cy="-64.584343"
cx="250.97942" />
</g>
<g
id="g66242-0-7"
transform="matrix(1.4329394,0,0,1.4329394,-51.429565,352.73258)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-4-3"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-76-2"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66262-96"
transform="matrix(1.4778927,0.05574496,-0.05574496,1.4778927,-148.63712,389.46695)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-04"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-1"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-8-0"
transform="matrix(-0.03616409,0.17026336,-0.23422324,-0.04463473,235.49462,209.02103)"
inkscape:transform-center-x="-12.129233"
inkscape:transform-center-y="-3.4355861">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-9-4"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-2-8"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g60465-3-6-2"
transform="matrix(0.66940259,0,0,0.66940259,30.999899,280.57341)">
<circle
r="29.954245"
cy="-277.96936"
cx="199.05824"
id="path60354-9-8-5-6"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
id="g66262-5"
transform="matrix(0.86374085,0.03257963,-0.03257963,0.86374085,-18.406239,159.93806)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-8"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-7"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
style="display:inline;fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-2"
transform="matrix(-0.1734662,0.01438504,0.01471521,0.23798371,205.16662,-14.572145)"
inkscape:transform-center-x="-107.96707"
inkscape:transform-center-y="13.013472">
<path
sodipodi:nodetypes="cccc"
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:19.8691597;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-4"
d="m 311.94158,238.23518 c 7.97334,-1.83558 16.30428,-3.46468 24.8654,-4.99124 -7.26349,-3.12038 -14.92614,-6.12431 -22.98899,-9.01298 -0.62577,4.89175 -0.69619,8.73507 -1.87641,14.00422 z" />
<path
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-7"
d="M -1295.4233,381.77263 C -866.96413,172.93484 -222.14313,139.02443 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5"
transform="matrix(-0.17404283,0.00255841,-0.0014985,0.23843351,238.00734,31.89713)"
inkscape:transform-center-x="-106.14867"
inkscape:transform-center-y="23.979108">
<path
sodipodi:nodetypes="cccc"
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:19.8691597;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9"
d="m 311.94158,238.23518 c 7.97334,-1.83558 16.30428,-3.46468 24.8654,-4.99124 -7.26349,-3.12038 -14.92614,-6.12431 -22.98899,-9.01298 -0.62577,4.89175 -0.69619,8.73507 -1.87641,14.00422 z" />
<path
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8"
d="M -1240.8012,298.81344 C -664.36687,126.94112 -222.14313,139.02443 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g66246-7-4-2-0"
transform="matrix(1.3963698,0,0,1.3963698,-16.096091,361.91763)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-1"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-78"
cy="-63.541103"
cx="106.41364" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-8-0-9"
transform="matrix(-0.03616409,0.17026336,-0.23422324,-0.04463473,208.67385,210.2418)"
inkscape:transform-center-x="-12.129233"
inkscape:transform-center-y="-3.4355861">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-9-4-1"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-2-8-5"
d="M -341.99037,310.51399 C -161.18972,232.96137 81.728479,188.4964 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g60465-3-6"
transform="matrix(0.66940259,0,0,0.66940259,11.999897,328.07341)">
<circle
r="29.954245"
cy="-277.96936"
cx="199.05824"
id="path60354-9-8-5"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
id="g66242-0"
transform="matrix(0.86374085,0.03257963,-0.03257963,0.86374085,2.9216972,201.08412)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-4"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-76"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66246-7-4-2-7"
transform="matrix(0.90331157,0,0,0.90331157,48.7093,198.81344)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-0"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-86"
cy="-63.541103"
cx="106.41364" />
</g>
<g
style="display:inline;fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-9"
transform="matrix(-0.17338707,0.01530939,0.01598342,0.2379019,214.59546,75.178661)"
inkscape:transform-center-x="-108.18044"
inkscape:transform-center-y="11.862974">
<path
sodipodi:nodetypes="cccc"
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:19.8691597;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-3"
d="m 311.94158,238.23518 c 7.97334,-1.83558 16.30428,-3.46468 24.8654,-4.99124 -7.26349,-3.12038 -14.92614,-6.12431 -22.98899,-9.01298 -0.62577,4.89175 -0.69619,8.73507 -1.87641,14.00422 z" />
<path
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-9"
d="M -1252.2314,337.35963 C -774.58839,186.35002 -222.14313,139.02443 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<circle
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#b3b3b3;stroke-width:3.347013;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
id="path60354-90"
cx="195.30717"
cy="124.5"
r="20.051449" />
<g
id="g66246-7-4-2-6"
transform="matrix(0.86435507,0,0,0.86435507,113.65095,179.23295)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-8"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-7"
cy="-63.541103"
cx="106.41364" />
</g>
<g
id="g66262-3"
transform="matrix(0.86435507,0,0,0.86435507,5.5460809,198.00948)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-3"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-3"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<circle
id="circle13592-4"
r="15.465485"
cy="257.62271"
cx="400.61993"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#e6e6e6;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
id="g66250-9"
transform="matrix(1.4329394,0,0,1.4329394,25.952955,396.9109)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3373-2"
r="10.394309"
cy="-55.880161"
cx="323.10577" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3387-5"
r="10.394309"
cy="-59.38718"
cx="321.07761" />
</g>
<g
id="g66258-7-7"
transform="matrix(1.4319211,0.05401095,-0.05401095,1.4319211,45.052984,381.73318)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3375-6-4"
r="10.394309"
cy="-61.07732"
cx="253.00755" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3389-0-9"
r="10.394309"
cy="-64.584343"
cx="250.97942" />
</g>
<g
id="g66242-0-7-9"
transform="matrix(1.4329394,0,0,1.4329394,254.62559,355.75153)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-4-3-4"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-76-2-5"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66262-96-9"
transform="matrix(1.4778927,0.05574496,-0.05574496,1.4778927,157.41803,392.4859)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-04-3"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-1-5"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
id="g66246-7-4-2-0-7"
transform="matrix(1.3963698,0,0,1.3963698,289.95906,364.93658)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-1-0"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-78-8"
cy="-63.541103"
cx="106.41364" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-2-7"
transform="matrix(-0.03148083,0.17119115,-0.23535929,-0.03819411,508.01456,154.07865)"
inkscape:transform-center-x="-11.110558"
inkscape:transform-center-y="-3.634907">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-6-8"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-4-2"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g66242"
transform="matrix(1.3963698,0,0,1.3963698,257.17304,184.11589)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-8-0-0"
transform="matrix(-0.03616409,0.17026336,-0.23422324,-0.04463473,540.04541,209.12941)"
inkscape:transform-center-x="-12.129233"
inkscape:transform-center-y="-3.4355861">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-9-4-2"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-2-8-0"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g66262-9"
transform="matrix(1.3963698,0,0,1.3963698,176.34061,219.29273)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-0"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-2"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-8-0-9-2"
transform="matrix(-0.03616409,0.17026336,-0.23422324,-0.04463473,513.22465,210.35018)"
inkscape:transform-center-x="-12.129233"
inkscape:transform-center-y="-3.4355861">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-9-4-1-1"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-2-8-5-2"
d="M -341.99037,310.51399 C -161.18972,232.96137 81.728479,188.4964 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g66246-7-4-2"
transform="matrix(1.3963698,0,0,1.3963698,300.71945,226.03819)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4"
cy="-63.541103"
cx="106.41364" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,612 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 400"
version="1.1"
id="svg15613"
sodipodi:docname="adjunction_numbers.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
width="595.29999"
height="400">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="327.47989"
inkscape:cy="95.059825"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0"
showguides="false" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-212.19925,-164.50005)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,172.1326,-159.43123)" />
<g
id="g2801-7-0-5"
transform="matrix(7.1804749,0,0,8.4711409,-1894.5562,-2986.4827)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="matrix(1.1772283,0,0,1.1772283,-65.97113,192.77239)"
id="text17012-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Mon">
<path
inkscape:connector-curvature="0"
id="path17542"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 172.07272,120.92641 h 2.20008 l 1.52658,3.58748 1.53557,-3.58748 h 2.19559 v 6.70351 h -1.63434 v -4.90303 l -1.54455,3.61441 h -1.09555 l -1.54455,-3.61441 v 4.90303 h -1.63883 z" />
<path
inkscape:connector-curvature="0"
id="path17544"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 183.54456,123.62937 q -0.5343,0 -0.81717,0.38613 -0.27838,0.38165 -0.27838,1.10453 0,0.72289 0.27838,1.10902 0.28287,0.38165 0.81717,0.38165 0.52533,0 0.8037,-0.38165 0.27838,-0.38613 0.27838,-1.10902 0,-0.72288 -0.27838,-1.10453 -0.27837,-0.38613 -0.8037,-0.38613 z m 0,-1.14943 q 1.2976,0 2.02497,0.70043 0.73187,0.70044 0.73187,1.93966 0,1.23923 -0.73187,1.93967 -0.72737,0.70043 -2.02497,0.70043 -1.30209,0 -2.03844,-0.70043 -0.73186,-0.70044 -0.73186,-1.93967 0,-1.23922 0.73186,-1.93966 0.73635,-0.70043 2.03844,-0.70043 z" />
<path
inkscape:connector-curvature="0"
id="path17546"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 192.52448,124.56777 v 3.06215 h -1.61639 v -0.49838 -1.84538 q 0,-0.65104 -0.0314,-0.89799 -0.0269,-0.24695 -0.0988,-0.36369 -0.0943,-0.15714 -0.25593,-0.24245 -0.16164,-0.0898 -0.36818,-0.0898 -0.50287,0 -0.79023,0.39062 -0.28736,0.38614 -0.28736,1.0731 v 2.47397 h -1.6074 v -5.02875 h 1.6074 v 0.73635 q 0.36369,-0.44002 0.77227,-0.64655 0.40859,-0.21103 0.90249,-0.21103 0.87105,0 1.32004,0.5343 0.45349,0.53431 0.45349,1.55353 z" />
</g>
<g
id="g2801-7-0-5-9"
transform="matrix(7.1804749,0,0,8.4711409,-1598.7565,-2981.2608)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g17649"
transform="matrix(1.1772283,0,0,1.1772283,19.52887,323.27239)">
<g
id="text17012-7-3-0-9-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Set"
transform="translate(123.5954,-18.263237)">
<path
id="path17513"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 245.05503,34.52635 v 1.418826 q -0.55226,-0.246947 -1.07759,-0.372666 -0.52532,-0.125719 -0.99228,-0.125719 -0.61961,0 -0.91595,0.170619 -0.29634,0.170618 -0.29634,0.529815 0,0.269397 0.19756,0.422056 0.20205,0.148168 0.72737,0.255927 l 0.73636,0.148169 q 1.118,0.224498 1.58944,0.682474 0.47145,0.457975 0.47145,1.302087 0,1.10902 -0.66003,1.652305 -0.65553,0.538795 -2.00701,0.538795 -0.63757,0 -1.27964,-0.121229 -0.64206,-0.121229 -1.28412,-0.359196 v -1.459237 q 0.64206,0.341237 1.23922,0.516345 0.60166,0.170619 1.15841,0.170619 0.56574,0 0.86657,-0.188578 0.30082,-0.188579 0.30082,-0.538795 0,-0.314298 -0.20654,-0.484916 -0.20204,-0.170618 -0.81268,-0.305317 l -0.669,-0.148169 q -1.00575,-0.215518 -1.47271,-0.686963 -0.46246,-0.471446 -0.46246,-1.270659 0,-1.00126 0.64655,-1.540055 0.64655,-0.538795 1.85884,-0.538795 0.55227,0 1.13596,0.08531 0.5837,0.08082 1.2078,0.246948 z"
inkscape:connector-curvature="0" />
<path
id="path17515"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 251.96059,38.490983 v 0.457976 h -3.7581 q 0.0584,0.565734 0.40859,0.848602 0.35022,0.282867 0.97881,0.282867 0.50736,0 1.03718,-0.148169 0.5343,-0.152658 1.09555,-0.457975 v 1.239228 q -0.57023,0.215518 -1.14045,0.323277 -0.57022,0.112249 -1.14045,0.112249 -1.36495,0 -2.12375,-0.691453 -0.75431,-0.695944 -0.75431,-1.948642 0,-1.230249 0.74084,-1.935172 0.74533,-0.704924 2.04742,-0.704924 1.18535,0 1.89476,0.713904 0.71391,0.713903 0.71391,1.908232 z m -1.65231,-0.534305 q 0,-0.457976 -0.2694,-0.736353 -0.2649,-0.282868 -0.69594,-0.282868 -0.46695,0 -0.7588,0.264908 -0.29185,0.260417 -0.36369,0.754313 z"
inkscape:connector-curvature="0" />
<path
id="path17517"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 254.93294,34.562269 v 1.427807 h 1.65679 v 1.149429 h -1.65679 v 2.132731 q 0,0.350216 0.13919,0.475935 0.13919,0.121229 0.55226,0.121229 h 0.82616 v 1.149429 h -1.37842 q -0.95187,0 -1.35148,-0.395116 -0.39512,-0.399606 -0.39512,-1.351477 v -2.132731 h -0.79921 v -1.149429 h 0.79921 v -1.427807 z"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g42748-4"
transform="matrix(1.3827459,0,0,1.3827459,-16.782099,-306.93168)" />
<g
id="g42748-8-6"
transform="matrix(1.3827459,0,0,1.3827459,309.68971,-302.62596)" />
<circle
id="circle13556"
r="72.23513"
cy="92.940941"
cx="451.03293"
stroke-miterlimit="10"
style="fill:#dddddd;fill-opacity:1;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<circle
id="circle13552"
r="72.23513"
cy="85.486168"
cx="154.56403"
stroke-miterlimit="10"
style="fill:#ffccaa;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
id="g42748-5"
transform="matrix(1.6278077,0,0,1.6278077,-199.65179,-653.15892)" />
<g
id="g42748-8-8"
transform="matrix(1.6278077,0,0,1.6278077,184.68006,-648.0901)" />
<g
id="g42748-4-2"
transform="matrix(1.3827459,0,0,1.3827459,-4.23464,-795.59055)" />
<g
id="g42748-8-6-2"
transform="matrix(1.3827459,0,0,1.3827459,322.23717,-791.28483)" />
<circle
id="circle13552-0"
r="72.23513"
cy="256.5448"
cx="152.20767"
stroke-miterlimit="10"
style="fill:#ffccaa;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
id="g15703"
transform="translate(-23.930823,254.44434)">
<path
inkscape:connector-curvature="0"
id="path15699"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.29601669px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:1.10029805"
d="m 177.39454,41.876438 v 11.260863 h 11.21788 v 5.071686 h -11.21788 v 11.260862 h -5.11467 V 58.208987 h -11.21788 v -5.071686 h 11.21788 V 41.876438 Z" />
<path
inkscape:connector-curvature="0"
id="path15701"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.29601669px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#aa4400;fill-opacity:1;stroke:none;stroke-width:0.80740041"
d="m 176.77453,45.44913 v 8.263239 h 8.2317 v 3.721611 h -8.2317 v 8.263239 h -3.75315 V 57.43398 h -8.2317 v -3.721611 h 8.2317 V 45.44913 Z" />
</g>
<g
id="g76336"
transform="translate(120.20815,-190.21172)">
<circle
style="fill:#cccccc;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10"
stroke-miterlimit="10"
cx="332.97937"
cy="450.10019"
r="72.23513"
id="circle13552-0-9" />
<circle
style="fill:#ffffff;stroke:#939598;stroke-width:3.77206945;stroke-miterlimit:10"
stroke-miterlimit="10"
cx="382.5192"
cy="453.93515"
r="15.465485"
id="circle13580-6" />
<circle
style="fill:#ffffff;stroke:#939598;stroke-width:3.77206945;stroke-miterlimit:10"
stroke-miterlimit="10"
cx="304.95779"
cy="411.8056"
r="15.465485"
id="circle13592-2" />
<path
style="fill:#808285;stroke-width:0.62867826"
inkscape:connector-curvature="0"
d="m 310.74162,411.42843 c 0,2.57758 -0.44007,4.46361 -1.32022,5.72097 -0.88015,1.19448 -2.20038,1.82316 -3.96068,1.82316 -1.7603,0 -3.08052,-0.62868 -3.96067,-1.88603 -0.88015,-1.25736 -1.32022,-3.14339 -1.32022,-5.59523 0,-2.57758 0.44007,-4.52649 1.32022,-5.72098 0.88015,-1.19449 2.20037,-1.82317 3.96067,-1.82317 1.7603,0 3.08053,0.62868 3.96068,1.88604 0.88015,1.19448 1.32022,3.08053 1.32022,5.59524 z m -6.66399,0 c 0,1.63456 0.12573,2.82905 0.31434,3.39486 0.1886,0.62868 0.56581,0.94301 1.06875,0.94301 0.50294,0 0.81728,-0.31433 1.06875,-0.94301 0.1886,-0.62868 0.31434,-1.7603 0.31434,-3.39486 0,-1.63456 -0.12574,-2.76618 -0.31434,-3.39487 -0.1886,-0.62868 -0.56581,-1.00589 -1.06875,-1.00589 -0.50294,0 -0.81728,0.31434 -1.06875,0.94302 -0.18861,0.62869 -0.31434,1.82318 -0.31434,3.45774 z"
id="path13594-5" />
<circle
style="fill:#ffffff;stroke:#939598;stroke-width:3.77206945;stroke-miterlimit:10"
stroke-miterlimit="10"
cx="349.94449"
cy="402.98792"
r="15.465485"
id="circle13586-3-2-4" />
<circle
style="fill:#ffffff;stroke:#939598;stroke-width:3.77206945;stroke-miterlimit:10"
stroke-miterlimit="10"
cx="308.25275"
cy="479.79086"
r="15.465485"
id="circle13598-4" />
<path
style="fill:#808285;stroke-width:0.62867826"
inkscape:connector-curvature="0"
d="m 314.90131,476.20451 c 0,0.88015 -0.25147,1.69743 -0.81728,2.32612 -0.56581,0.62868 -1.38309,1.13162 -2.38897,1.44596 v 0.0629 c 2.45184,0.31434 3.64633,1.44596 3.64633,3.45773 0,1.38309 -0.56581,2.45184 -1.63456,3.20625 -1.06876,0.75442 -2.57758,1.19449 -4.52648,1.19449 -0.81728,0 -1.50883,-0.0629 -2.20039,-0.1886 -0.69154,-0.12574 -1.38309,-0.31434 -2.20037,-0.62868 v -3.26912 c 0.62868,0.31433 1.32023,0.56581 1.9489,0.75441 0.62868,0.1886 1.25737,0.25147 1.82318,0.25147 0.88015,0 1.50883,-0.12574 1.88603,-0.37721 0.37721,-0.25147 0.56581,-0.62867 0.56581,-1.13162 0,-0.3772 -0.12573,-0.69154 -0.31434,-0.94301 -0.1886,-0.25147 -0.56581,-0.37721 -1.00588,-0.50295 -0.44008,-0.12573 -1.06875,-0.1886 -1.82317,-0.1886 h -0.88016 v -2.95478 h 0.94303 c 2.01177,0 3.01765,-0.50295 3.01765,-1.57171 0,-0.37721 -0.12573,-0.69154 -0.44007,-0.88015 -0.31434,-0.1886 -0.69155,-0.25147 -1.19449,-0.25147 -0.94301,0 -1.88604,0.31434 -2.89193,0.94302 l -1.63456,-2.64044 c 0.75442,-0.56581 1.5717,-0.94302 2.38898,-1.13162 0.81729,-0.25147 1.76031,-0.31434 2.76619,-0.31434 1.50883,0 2.70331,0.31434 3.58346,0.88015 0.94302,0.56581 1.38309,1.38309 1.38309,2.45183 z"
id="path13572-8-9" />
<path
style="fill:#808285;stroke-width:0.62867826"
inkscape:connector-curvature="0"
d="m 352.43121,409.85132 h -4.02354 v -7.73274 c 0,-0.94302 0,-1.82318 0.0629,-2.57759 -0.25147,0.31434 -0.56581,0.62868 -0.94302,0.94303 l -1.63456,1.38309 -2.07464,-2.51472 5.02943,-4.08641 h 3.58346 z"
id="path13564-1-0" />
<path
style="fill:#808285;stroke-width:0.62867826"
inkscape:connector-curvature="0"
d="m 387.56899,459.56077 h -10.62467 v -2.57757 l 3.58347,-3.64634 c 1.00588,-1.06875 1.69743,-1.82316 2.01177,-2.20037 0.31433,-0.3772 0.50294,-0.75441 0.62867,-1.00588 0.12574,-0.25147 0.18861,-0.56581 0.18861,-0.88015 0,-0.37721 -0.12574,-0.69155 -0.37721,-0.88015 -0.25147,-0.25147 -0.56581,-0.31434 -1.06875,-0.31434 -0.44008,0 -0.94302,0.12574 -1.38309,0.37721 -0.44008,0.25147 -1.00589,0.62868 -1.5717,1.19449 l -2.20037,-2.57758 c 0.75441,-0.69155 1.38309,-1.13162 1.88603,-1.44596 0.50295,-0.31434 1.06876,-0.50294 1.69743,-0.69155 0.62868,-0.1886 1.25736,-0.25147 2.01177,-0.25147 0.94302,0 1.82317,0.1886 2.51471,0.50294 0.69155,0.31434 1.32023,0.81728 1.76031,1.44596 0.44008,0.62868 0.62868,1.32023 0.62868,2.07464 0,0.56581 -0.0629,1.13162 -0.1886,1.57169 -0.12574,0.50295 -0.37721,0.94302 -0.69156,1.44596 -0.31434,0.50294 -0.69155,0.94302 -1.19449,1.50883 -0.50294,0.50294 -1.57169,1.50883 -3.20625,2.95478 v 0.12574 h 5.53237 v 3.26912 z"
id="path13568-7-5" />
</g>
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,404.44348,133.43695)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0"
d="M -1160.6611,508.68911 C -717.06779,279.77775 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5-8"
d="m 311.91809,237.27238 c 8.3737,-2.57879 17.0361,-4.98258 25.8934,-7.30427 -6.1864,-2.47429 -12.7993,-4.79477 -19.8394,-6.96254 -2.0856,4.98076 -3.311,8.85536 -6.054,14.26681 z" />
</g>
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-2"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,437.65921,188.46195)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-4"
d="M -1160.6611,508.68911 C -717.06779,279.77775 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5-3"
d="m 307.77166,239.34593 c 8.3737,-2.57879 17.0361,-4.98258 25.8934,-7.30427 -6.1864,-2.47429 -12.7993,-4.79477 -19.8394,-6.96254 -2.0856,4.98076 -3.311,8.85536 -6.054,14.26681 z" />
</g>
<circle
id="circle13580"
r="15.465485"
cy="258.25842"
cx="199.97974"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#939598;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-2-3"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,358.81681,147.80332)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
sodipodi:nodetypes="cccc"
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5"
d="m 311.05569,238.25595 c 8.37368,-2.57879 17.03604,-4.98258 25.89333,-7.30427 -6.18632,-2.47429 -12.79923,-4.79477 -19.8394,-6.96254 -2.08557,4.98076 -3.31094,8.85536 -6.05393,14.26681 z" />
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-4-1"
d="M -1160.6611,508.68911 C -717.06779,279.77775 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<circle
id="circle13592"
r="15.465485"
cy="217.89664"
cx="122.41833"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#939598;stroke-width:3.77206945;stroke-miterlimit:10" />
<path
id="path13594"
d="m 128.20216,217.51945 c 0,2.57758 -0.44007,4.46361 -1.32022,5.72097 -0.88015,1.19448 -2.20038,1.82316 -3.96068,1.82316 -1.7603,0 -3.08052,-0.62868 -3.96067,-1.88603 -0.88015,-1.25736 -1.32022,-3.14339 -1.32022,-5.59523 0,-2.57758 0.44007,-4.52649 1.32022,-5.72098 0.88015,-1.19449 2.20037,-1.82317 3.96067,-1.82317 1.7603,0 3.08053,0.62868 3.96068,1.88604 0.88015,1.19448 1.32022,3.08053 1.32022,5.59524 z m -6.66399,0 c 0,1.63456 0.12573,2.82905 0.31434,3.39486 0.1886,0.62868 0.56581,0.94301 1.06875,0.94301 0.50294,0 0.81728,-0.31433 1.06875,-0.94301 0.1886,-0.62868 0.31434,-1.7603 0.31434,-3.39486 0,-1.63456 -0.12574,-2.76618 -0.31434,-3.39487 -0.1886,-0.62868 -0.56581,-1.00589 -1.06875,-1.00589 -0.50294,0 -0.81728,0.31434 -1.06875,0.94302 -0.18861,0.62869 -0.31434,1.82318 -0.31434,3.45774 z"
inkscape:connector-curvature="0"
style="fill:#808285;stroke-width:0.62867826" />
<circle
id="circle13586-3-2"
r="15.465485"
cy="207.31119"
cx="167.40503"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#939598;stroke-width:3.77206945;stroke-miterlimit:10" />
<path
id="path13564-1"
d="m 169.89175,214.17457 h -4.02354 v -7.73274 c 0,-0.94302 0,-1.82318 0.0629,-2.57759 -0.25147,0.31434 -0.56581,0.62868 -0.94302,0.94303 l -1.63456,1.38309 -2.07464,-2.51472 5.02943,-4.08641 h 3.58346 z"
inkscape:connector-curvature="0"
style="fill:#808285;stroke-width:0.62867826" />
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-2-3-7"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,364.12011,214.6249)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-4-1-3"
d="M -1160.6611,508.68911 C -717.06779,279.77775 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5-3-3"
d="m 311.91809,237.27238 c 8.3737,-2.57878 17.0361,-4.98257 25.8934,-7.30427 -6.1864,-2.47429 -12.7993,-4.79477 -19.8394,-6.96254 -2.0856,4.98076 -3.311,8.85536 -6.054,14.26681 z" />
</g>
<circle
id="circle13598"
r="15.465485"
cy="284.11411"
cx="125.71326"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#939598;stroke-width:3.77206945;stroke-miterlimit:10" />
<path
id="path13572-8"
d="m 132.36185,280.52777 c 0,0.88015 -0.25147,1.69743 -0.81728,2.32612 -0.56581,0.62868 -1.38309,1.13162 -2.38897,1.44596 v 0.0629 c 2.45184,0.31434 3.64633,1.44596 3.64633,3.45773 0,1.38309 -0.56581,2.45184 -1.63456,3.20625 -1.06876,0.75442 -2.57758,1.19449 -4.52648,1.19449 -0.81728,0 -1.50883,-0.0629 -2.20039,-0.1886 -0.69154,-0.12574 -1.38309,-0.31434 -2.20037,-0.62868 v -3.26912 c 0.62868,0.31433 1.32023,0.56581 1.9489,0.75441 0.62868,0.1886 1.25737,0.25147 1.82318,0.25147 0.88015,0 1.50883,-0.12574 1.88603,-0.37721 0.37721,-0.25147 0.56581,-0.62867 0.56581,-1.13162 0,-0.3772 -0.12573,-0.69154 -0.31434,-0.94301 -0.1886,-0.25147 -0.56581,-0.37721 -1.00588,-0.50295 -0.44008,-0.12573 -1.06875,-0.1886 -1.82317,-0.1886 h -0.88016 v -2.95478 h 0.94303 c 2.01177,0 3.01765,-0.50295 3.01765,-1.57171 0,-0.37721 -0.12573,-0.69154 -0.44007,-0.88015 -0.31434,-0.1886 -0.69155,-0.25147 -1.19449,-0.25147 -0.94301,0 -1.88604,0.31434 -2.89193,0.94302 l -1.63456,-2.64045 c 0.75442,-0.56581 1.5717,-0.94302 2.38898,-1.13162 0.81729,-0.25147 1.76031,-0.31434 2.76619,-0.31434 1.50883,0 2.70331,0.31434 3.58346,0.88015 0.94302,0.56581 1.38309,1.38309 1.38309,2.45184 z"
inkscape:connector-curvature="0"
style="fill:#808285;stroke-width:0.62867826" />
<path
id="path13568-7"
d="m 205.02954,263.88402 h -10.62467 v -2.57757 l 3.58347,-3.64634 c 1.00588,-1.06875 1.69743,-1.82316 2.01177,-2.20037 0.31433,-0.3772 0.50294,-0.75441 0.62867,-1.00588 0.12574,-0.25147 0.18861,-0.56581 0.18861,-0.88015 0,-0.37721 -0.12574,-0.69155 -0.37721,-0.88015 -0.25147,-0.25147 -0.56581,-0.31434 -1.06875,-0.31434 -0.44008,0 -0.94302,0.12574 -1.38309,0.37721 -0.44008,0.25147 -1.00589,0.62868 -1.5717,1.19449 l -2.20037,-2.57758 c 0.75441,-0.69155 1.38309,-1.13162 1.88603,-1.44596 0.50295,-0.31434 1.06876,-0.50294 1.69743,-0.69155 0.62868,-0.1886 1.25736,-0.25147 2.01177,-0.25147 0.94302,0 1.82317,0.1886 2.51471,0.50294 0.69155,0.31434 1.32023,0.81728 1.76031,1.44596 0.44008,0.62868 0.62868,1.32023 0.62868,2.07464 0,0.56581 -0.0629,1.13162 -0.1886,1.57169 -0.12574,0.50295 -0.37721,0.94302 -0.69156,1.44596 -0.31434,0.50294 -0.69155,0.94302 -1.19449,1.50883 -0.50294,0.50294 -1.57169,1.50883 -3.20625,2.95478 v 0.12574 h 5.53237 v 3.26912 z"
inkscape:connector-curvature="0"
style="fill:#808285;stroke-width:0.62867826" />
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1"
transform="matrix(-0.03148083,0.17119115,-0.23535929,-0.03819411,269.43738,187.96457)"
inkscape:transform-center-x="-11.110558"
inkscape:transform-center-y="-3.634907">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-2"
transform="matrix(-0.03148083,0.17119115,-0.23535929,-0.03819411,239.96376,137.97027)"
inkscape:transform-center-x="-11.110558"
inkscape:transform-center-y="-3.634907">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-6"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-4"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g76552">
<g
transform="matrix(0.66940259,0,0,0.66940259,30.01643,218.9425)"
id="g60465">
<circle
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
id="path60354-9"
cx="213.25"
cy="-270.5"
r="29.954245" />
<circle
id="circle13586-3-0-67"
r="13.237224"
cy="-270.48148"
cx="212.4792"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#939598;stroke-width:3.2285912;stroke-miterlimit:10" />
</g>
<path
style="fill:#808285;stroke-width:0.37061003"
inkscape:connector-curvature="0"
d="m 174.43034,42.149722 h -2.3719 v -4.55851 c 0,-0.55591 0,-1.07476 0.0371,-1.5195 -0.14825,0.18531 -0.33355,0.37061 -0.55591,0.55592 l -0.96359,0.81534 -1.22301,-1.48244 2.96487,-2.40897 h 2.11248 z"
id="path13588-8-2" />
</g>
<g
transform="translate(-25.782486,-1.6715729)"
id="g76265">
<g
transform="matrix(0.66940259,0,0,0.66940259,61.823259,216.20106)"
id="g60461">
<circle
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
id="path60354"
cx="241.375"
cy="-193.125"
r="29.954245" />
<circle
id="circle13586-3-0-4-5"
r="13.237224"
cy="-192.98146"
cx="226.47919"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#939598;stroke-width:3.2285912;stroke-miterlimit:10" />
<circle
id="circle13586-3-0-6-6"
r="13.237224"
cy="-192.98146"
cx="256.72919"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#939598;stroke-width:3.2285912;stroke-miterlimit:10" />
</g>
<path
style="fill:#808285;stroke-width:0.37061003"
inkscape:connector-curvature="0"
d="m 214.51047,90.724026 h -2.3719 v -4.55851 c 0,-0.55591 0,-1.07476 0.0371,-1.5195 -0.14825,0.18531 -0.33355,0.37061 -0.55591,0.55592 l -0.96359,0.81534 -1.22301,-1.48244 2.96487,-2.40897 h 2.11248 z"
id="path13588-8-91" />
<path
style="fill:#808285;stroke-width:0.37061003"
inkscape:connector-curvature="0"
d="m 235.76047,90.349026 h -2.3719 v -4.55851 c 0,-0.55591 0,-1.07476 0.0371,-1.5195 -0.14825,0.18531 -0.33355,0.37061 -0.55591,0.55592 l -0.96359,0.81534 -1.22301,-1.48244 2.96487,-2.40897 h 2.11248 z"
id="path13588-8-4" />
</g>
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5"
transform="matrix(-0.17389568,-0.00759902,-0.01540536,0.23794003,248.484,-17.011378)"
inkscape:transform-center-x="-104.19684"
inkscape:transform-center-y="32.67011">
<path
sodipodi:nodetypes="cccc"
style="fill:#000000;fill-opacity:0;stroke:#008000;stroke-width:19.8691597;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9"
d="m 311.94158,238.23518 c 7.97334,-1.83558 16.30428,-3.46468 24.8654,-4.99124 -7.26349,-3.12038 -14.92614,-6.12431 -22.98899,-9.01298 -0.62577,4.89175 -0.69619,8.73507 -1.87641,14.00422 z" />
<path
style="fill:#000000;fill-opacity:0;stroke:#008000;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8"
d="M -1164.6036,394.87501 C -736.14438,186.03722 -222.14313,139.02443 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-1"
transform="matrix(-0.04016541,0.16936408,-0.23310665,-0.05014057,188.0194,151.94763)"
inkscape:transform-center-x="-11.449798"
inkscape:transform-center-y="-3.262315">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-2"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-8"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g60465-3"
transform="matrix(0.66940259,0,0,0.66940259,-7.497054,237.32124)">
<circle
r="29.954245"
cy="-277.96936"
cx="199.05824"
id="path60354-9-8"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-8"
transform="matrix(-0.04610586,0.16784428,-0.23119594,-0.05831999,205.05363,221.27085)"
inkscape:transform-center-x="-10.418085"
inkscape:transform-center-y="-2.999883">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-9"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-2"
d="M -513.61939,368.71244 C -234.93384,268.49902 13.971543,223.10963 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
transform="translate(-26.489592,29.794679)"
id="g76257">
<g
transform="matrix(0.66940259,0,0,0.66940259,48.544668,329.47105)"
id="g60471">
<path
style="fill:#f2f2f2;stroke:#333333;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 148.39035,-393.71124 c -18.81413,0 -30.44699,11.83721 -30.44699,30.27408 0,18.43688 12.44665,31.1484 29.47301,31.1484 h 31.56755 c 14.94525,0 31.07273,-9.84893 31.07273,-29.63549 0,-21.82258 -15.95387,-31.11444 -30.98827,-31.11444 -15.03441,0 -30.67803,-0.67255 -30.67803,-0.67255 z"
id="path60307-29"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csssssc" />
<circle
id="circle13586-3-0-9"
r="13.237224"
cy="-363.11014"
cx="133.84695"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#939598;stroke-width:3.2285912;stroke-miterlimit:10" />
<circle
id="circle13586-3-0-4-6"
r="13.237224"
cy="-362.86014"
cx="163.59695"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#939598;stroke-width:3.2285912;stroke-miterlimit:10" />
<circle
id="circle13586-3-0-6-0"
r="13.237224"
cy="-362.86014"
cx="193.84695"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#939598;stroke-width:3.2285912;stroke-miterlimit:10" />
</g>
<path
style="fill:#808285;stroke-width:0.37061003"
inkscape:connector-curvature="0"
d="m 140.13547,90.724026 h -2.3719 v -4.55851 c 0,-0.55591 0,-1.07476 0.0371,-1.5195 -0.14825,0.18531 -0.33355,0.37061 -0.55591,0.55592 l -0.96359,0.81534 -1.22301,-1.48244 2.96487,-2.40897 h 2.11248 z"
id="path13588-8-1" />
<path
style="fill:#808285;stroke-width:0.37061003"
inkscape:connector-curvature="0"
d="m 160.13547,90.474026 h -2.3719 v -4.55851 c 0,-0.55591 0,-1.07476 0.0371,-1.5195 -0.14825,0.18531 -0.33355,0.37061 -0.55591,0.55592 l -0.96359,0.81534 -1.22301,-1.48244 2.96487,-2.40897 h 2.11248 z"
id="path13588-8-5" />
<path
style="fill:#808285;stroke-width:0.37061003"
inkscape:connector-curvature="0"
d="m 180.26047,90.599026 h -2.3719 v -4.55851 c 0,-0.55591 0,-1.07476 0.0371,-1.5195 -0.14825,0.18531 -0.33355,0.37061 -0.55591,0.55592 l -0.96359,0.81534 -1.22301,-1.48244 2.96487,-2.40897 h 2.11248 z"
id="path13588-8-9" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-1-88"
transform="matrix(0.00615367,0.17395282,-0.23805984,0.01342751,524.08993,129.70913)"
inkscape:transform-center-x="-8.0110811"
inkscape:transform-center-y="-5.1049561">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-4-8"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#333333;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-6-6"
d="M -289.74193,314.53413 C -142.70582,234.68 122.85072,208.10234 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g71407"
transform="matrix(1.6509818,0,0,1.6509818,-296.37544,-63.893811)">
<circle
style="fill:#ffffff;stroke:#939598;stroke-width:2.18423843;stroke-miterlimit:10"
stroke-miterlimit="10"
cx="450.78494"
cy="91.411919"
r="8.9553776"
id="circle13586-3" />
<path
style="fill:#808285;stroke-width:0.37061003"
inkscape:connector-curvature="0"
d="m 452.8573,95.373306 h -2.3719 v -4.5585 c 0,-0.55591 0,-1.07477 0.0371,-1.5195 -0.14825,0.1853 -0.33355,0.37061 -0.55591,0.55591 l -0.96359,0.81535 -1.22301,-1.48244 2.96487,-2.40897 h 2.11248 z"
id="path13588-8" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -0,0 +1,354 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="category_of_categories.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="231.15471"
inkscape:cy="328.092"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0" />
<g
id="g42748"
transform="matrix(1.6453121,0,0,1.6453121,-221.45879,-429.63311)" />
<g
id="g42748-8"
transform="matrix(1.6453121,0,0,1.6453121,167.00593,-424.50979)" />
<g
style="display:inline;fill:#dddddd;stroke:#a0a0a0;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7"
transform="matrix(-0.15951207,-0.14405235,-0.21237784,0.21251779,336.31491,54.203718)"
inkscape:transform-center-x="-14.101278"
inkscape:transform-center-y="-3.5434205">
<path
style="stroke:#a0a0a0;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;fill-opacity:1;stroke:#a0a0a0;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g2801-7-0"
transform="matrix(1.185551,0,0,1.185551,-24.254262,-418.27756)">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8"
inkscape:connector-curvature="0" />
</g>
<g
id="g2801-7-0-5-9-8"
transform="matrix(1.185551,0,0,1.185551,-112.87246,-397.87205)">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-4-5"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-8-0"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Top"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-3-0-9"
transform="matrix(1.1898875,0,0,1.1898875,7.9070069,-21.636771)">
<path
d="m 166.40327,51.450026 h 6.17818 v 1.306578 h -2.22253 v 5.39693 h -1.72863 v -5.39693 h -2.22702 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17506"
inkscape:connector-curvature="0" />
<path
d="m 174.57499,54.152981 q -0.5343,0 -0.81717,0.386137 -0.27838,0.381646 -0.27838,1.104529 0,0.722884 0.27838,1.10902 0.28287,0.381646 0.81717,0.381646 0.52533,0 0.8037,-0.381646 0.27838,-0.386136 0.27838,-1.10902 0,-0.722883 -0.27838,-1.104529 -0.27837,-0.386137 -0.8037,-0.386137 z m 0,-1.149429 q 1.2976,0 2.02497,0.700433 0.73187,0.700434 0.73187,1.939662 0,1.239229 -0.73187,1.939662 -0.72737,0.700434 -2.02497,0.700434 -1.30209,0 -2.03844,-0.700434 -0.73186,-0.700433 -0.73186,-1.939662 0,-1.239228 0.73186,-1.939662 0.73635,-0.700433 2.03844,-0.700433 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17508"
inkscape:connector-curvature="0" />
<path
d="m 180.10662,57.426161 v 2.640095 h -1.60741 v -6.941475 h 1.60741 v 0.736353 q 0.33226,-0.440016 0.73635,-0.646554 0.4041,-0.211028 0.92942,-0.211028 0.92943,0 1.52659,0.740843 0.59716,0.736353 0.59716,1.899252 0,1.162899 -0.59716,1.903743 -0.59716,0.736353 -1.52659,0.736353 -0.52532,0 -0.92942,-0.206538 -0.40409,-0.211028 -0.73635,-0.651044 z m 1.06861,-3.25522 q -0.51635,0 -0.79472,0.381646 -0.27389,0.377157 -0.27389,1.09106 0,0.713904 0.27389,1.09555 0.27837,0.377157 0.79472,0.377157 0.51635,0 0.78574,-0.377157 0.27389,-0.377156 0.27389,-1.09555 0,-0.718393 -0.27389,-1.09555 -0.26939,-0.377156 -0.78574,-0.377156 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17510"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Set"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-3-0-9-3"
transform="matrix(1.1898875,0,0,1.1898875,7.9070069,-21.636771)">
<path
d="m 245.05503,34.52635 v 1.418826 q -0.55226,-0.246947 -1.07759,-0.372666 -0.52532,-0.125719 -0.99228,-0.125719 -0.61961,0 -0.91595,0.170619 -0.29634,0.170618 -0.29634,0.529815 0,0.269397 0.19756,0.422056 0.20205,0.148168 0.72737,0.255927 l 0.73636,0.148169 q 1.118,0.224498 1.58944,0.682474 0.47145,0.457975 0.47145,1.302087 0,1.10902 -0.66003,1.652305 -0.65553,0.538795 -2.00701,0.538795 -0.63757,0 -1.27964,-0.121229 -0.64206,-0.121229 -1.28412,-0.359196 v -1.459237 q 0.64206,0.341237 1.23922,0.516345 0.60166,0.170619 1.15841,0.170619 0.56574,0 0.86657,-0.188578 0.30082,-0.188579 0.30082,-0.538795 0,-0.314298 -0.20654,-0.484916 -0.20204,-0.170618 -0.81268,-0.305317 l -0.669,-0.148169 q -1.00575,-0.215518 -1.47271,-0.686963 -0.46246,-0.471446 -0.46246,-1.270659 0,-1.00126 0.64655,-1.540055 0.64655,-0.538795 1.85884,-0.538795 0.55227,0 1.13596,0.08531 0.5837,0.08082 1.2078,0.246948 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17513"
inkscape:connector-curvature="0" />
<path
d="m 251.96059,38.490983 v 0.457976 h -3.7581 q 0.0584,0.565734 0.40859,0.848602 0.35022,0.282867 0.97881,0.282867 0.50736,0 1.03718,-0.148169 0.5343,-0.152658 1.09555,-0.457975 v 1.239228 q -0.57023,0.215518 -1.14045,0.323277 -0.57022,0.112249 -1.14045,0.112249 -1.36495,0 -2.12375,-0.691453 -0.75431,-0.695944 -0.75431,-1.948642 0,-1.230249 0.74084,-1.935172 0.74533,-0.704924 2.04742,-0.704924 1.18535,0 1.89476,0.713904 0.71391,0.713903 0.71391,1.908232 z m -1.65231,-0.534305 q 0,-0.457976 -0.2694,-0.736353 -0.2649,-0.282868 -0.69594,-0.282868 -0.46695,0 -0.7588,0.264908 -0.29185,0.260417 -0.36369,0.754313 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17515"
inkscape:connector-curvature="0" />
<path
d="m 254.93294,34.562269 v 1.427807 h 1.65679 v 1.149429 h -1.65679 v 2.132731 q 0,0.350216 0.13919,0.475935 0.13919,0.121229 0.55226,0.121229 h 0.82616 v 1.149429 h -1.37842 q -0.95187,0 -1.35148,-0.395116 -0.39512,-0.399606 -0.39512,-1.351477 v -2.132731 h -0.79921 v -1.149429 h 0.79921 v -1.427807 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17517"
inkscape:connector-curvature="0" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#a0a0a0;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-4"
transform="matrix(0.20046062,0.07752883,-0.09407715,0.28533778,272.71641,11.592855)"
inkscape:transform-center-x="3.2106976"
inkscape:transform-center-y="-13.957069">
<path
style="stroke:#a0a0a0;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-8"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;fill-opacity:1;stroke:#a0a0a0;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-1"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#a0a0a0;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-4-3"
transform="matrix(0.08916735,-0.19556166,0.27932052,0.11067162,202.03826,84.088948)"
inkscape:transform-center-x="14.228212"
inkscape:transform-center-y="2.3727435">
<path
style="stroke:#a0a0a0;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-8-0"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;fill-opacity:1;stroke:#a0a0a0;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-1-4"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#a0a0a0;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-4-3-4"
transform="matrix(-0.13711779,0.16551101,-0.2407542,-0.17973753,345.55019,99.64696)"
inkscape:transform-center-x="-14.460814"
inkscape:transform-center-y="1.4518053">
<path
style="stroke:#a0a0a0;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-8-0-4"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;fill-opacity:1;stroke:#a0a0a0;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-1-4-4"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#a0a0a0;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-4-3-4-7"
transform="matrix(0.0933861,0.1935826,-0.26366232,0.14404982,328.44457,45.875271)"
inkscape:transform-center-x="-7.9303074"
inkscape:transform-center-y="-12.543057">
<path
style="stroke:#a0a0a0;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-8-0-4-6"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;fill-opacity:1;stroke:#a0a0a0;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-1-4-4-3"
d="M 93.597801,80.785458 C 143.16939,68.709335 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g2801-7-0-5-1"
transform="matrix(1.185551,0,0,1.185551,-52.65873,-360.3314)">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-2"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-9"
inkscape:connector-curvature="0" />
</g>
<g
id="g17441"
transform="matrix(1.1898875,0,0,1.1898875,7.9070069,-21.636771)">
<g
transform="matrix(0.99635556,0,0,0.99635556,1.8907887,-259.65433)"
id="g2801-7-0-5-9">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-4"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-8"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Ord"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-3-0">
<path
d="m 272.09849,107.87166 q -0.79023,0 -1.22575,0.5837 -0.43553,0.58369 -0.43553,1.64332 0,1.05514 0.43553,1.63884 0.43552,0.58369 1.22575,0.58369 0.79473,0 1.23025,-0.58369 0.43553,-0.5837 0.43553,-1.63884 0,-1.05963 -0.43553,-1.64332 -0.43552,-0.5837 -1.23025,-0.5837 z m 0,-1.25269 q 1.61639,0 2.53234,0.92493 0.91595,0.92493 0.91595,2.55478 0,1.62537 -0.91595,2.5503 -0.91595,0.92493 -2.53234,0.92493 -1.61189,0 -2.53233,-0.92493 -0.91595,-0.92493 -0.91595,-2.5503 0,-1.62985 0.91595,-2.55478 0.92044,-0.92493 2.53233,-0.92493 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17524"
inkscape:connector-curvature="0" />
<path
d="m 280.51717,109.78439 q -0.21103,-0.0988 -0.42206,-0.14368 -0.20654,-0.0494 -0.41757,-0.0494 -0.61961,0 -0.95636,0.3996 -0.33225,0.39512 -0.33225,1.13596 v 2.31682 h -1.60741 v -5.02875 h 1.60741 v 0.82615 q 0.3098,-0.49389 0.70941,-0.71839 0.4041,-0.22899 0.96534,-0.22899 0.0808,0 0.17511,0.009 0.0943,0.004 0.27389,0.0269 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17526"
inkscape:connector-curvature="0" />
<path
d="m 284.73773,109.1513 v -2.69397 h 1.61638 v 6.98637 h -1.61638 v -0.72737 q -0.33226,0.44451 -0.73187,0.65104 -0.3996,0.20654 -0.92493,0.20654 -0.92942,0 -1.52658,-0.73635 -0.59717,-0.74084 -0.59717,-1.90374 0,-1.1629 0.59717,-1.89926 0.59716,-0.74084 1.52658,-0.74084 0.52084,0 0.92044,0.21103 0.4041,0.20654 0.73636,0.64655 z m -1.05963,3.25522 q 0.51634,0 0.78574,-0.37715 0.27389,-0.37716 0.27389,-1.09555 0,-0.7184 -0.27389,-1.09555 -0.2694,-0.37716 -0.78574,-0.37716 -0.51186,0 -0.78575,0.37716 -0.26939,0.37715 -0.26939,1.09555 0,0.71839 0.26939,1.09555 0.27389,0.37715 0.78575,0.37715 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17528"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g17434"
transform="matrix(1.1898875,0,0,1.1898875,7.9070069,-21.636771)">
<g
transform="matrix(0.99635556,0,0,0.99635556,-26.222858,-214.98487)"
id="g2801-7-0-5-3">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-6"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-5"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Grp"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-6">
<path
d="m 247.75762,158.99366 q -0.64655,0.3143 -1.3425,0.47145 -0.69594,0.15715 -1.43678,0.15715 -1.67476,0 -2.65357,-0.93391 -0.97881,-0.9384 -0.97881,-2.54132 0,-1.62087 0.99677,-2.5503 0.99677,-0.92942 2.7299,-0.92942 0.669,0 1.27963,0.12572 0.61513,0.12572 1.15841,0.37267 v 1.3874 q -0.56124,-0.31879 -1.118,-0.47594 -0.55226,-0.15715 -1.10902,-0.15715 -1.03269,0 -1.59393,0.57921 -0.55676,0.57471 -0.55676,1.64781 0,1.06412 0.5388,1.64333 0.53879,0.5792 1.53108,0.5792 0.26939,0 0.49838,-0.0314 0.23348,-0.0359 0.41757,-0.10776 v -1.30209 h -1.05514 v -1.15841 h 2.69397 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17533"
inkscape:connector-curvature="0" />
<path
d="m 252.94352,155.83273 q -0.21102,-0.0988 -0.42205,-0.14367 -0.20654,-0.0494 -0.41757,-0.0494 -0.61961,0 -0.95636,0.3996 -0.33226,0.39512 -0.33226,1.13596 v 2.31682 h -1.6074 v -5.02875 h 1.6074 v 0.82615 q 0.30981,-0.4939 0.70942,-0.71839 0.40409,-0.22899 0.96534,-0.22899 0.0808,0 0.17511,0.009 0.0943,0.004 0.27388,0.0269 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17535"
inkscape:connector-curvature="0" />
<path
d="m 255.35014,158.76468 v 2.64009 h -1.6074 v -6.94147 h 1.6074 v 0.73635 q 0.33226,-0.44002 0.73635,-0.64655 0.4041,-0.21103 0.92943,-0.21103 0.92942,0 1.52658,0.74084 0.59717,0.73635 0.59717,1.89925 0,1.1629 -0.59717,1.90375 -0.59716,0.73635 -1.52658,0.73635 -0.52533,0 -0.92943,-0.20654 -0.40409,-0.21103 -0.73635,-0.65104 z m 1.06861,-3.25522 q -0.51634,0 -0.79472,0.38164 -0.27389,0.37716 -0.27389,1.09106 0,0.71391 0.27389,1.09555 0.27838,0.37716 0.79472,0.37716 0.51635,0 0.78574,-0.37716 0.27389,-0.37715 0.27389,-1.09555 0,-0.71839 -0.27389,-1.09555 -0.26939,-0.37715 -0.78574,-0.37715 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17537"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g17427"
transform="matrix(1.1898875,0,0,1.1898875,7.9070069,-21.636771)">
<g
transform="matrix(0.99635556,0,0,0.99635556,-91.821363,-246.847)"
id="g2801-7-0-5">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Mon"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7">
<path
d="m 172.07272,120.92641 h 2.20008 l 1.52658,3.58748 1.53557,-3.58748 h 2.19559 v 6.70351 h -1.63434 v -4.90303 l -1.54455,3.61441 h -1.09555 l -1.54455,-3.61441 v 4.90303 h -1.63883 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17542"
inkscape:connector-curvature="0" />
<path
d="m 183.54456,123.62937 q -0.5343,0 -0.81717,0.38613 -0.27838,0.38165 -0.27838,1.10453 0,0.72289 0.27838,1.10902 0.28287,0.38165 0.81717,0.38165 0.52533,0 0.8037,-0.38165 0.27838,-0.38613 0.27838,-1.10902 0,-0.72288 -0.27838,-1.10453 -0.27837,-0.38613 -0.8037,-0.38613 z m 0,-1.14943 q 1.2976,0 2.02497,0.70043 0.73187,0.70044 0.73187,1.93966 0,1.23923 -0.73187,1.93967 -0.72737,0.70043 -2.02497,0.70043 -1.30209,0 -2.03844,-0.70043 -0.73186,-0.70044 -0.73186,-1.93967 0,-1.23922 0.73186,-1.93966 0.73635,-0.70043 2.03844,-0.70043 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17544"
inkscape:connector-curvature="0" />
<path
d="m 192.52448,124.56777 v 3.06215 h -1.61639 v -0.49838 -1.84538 q 0,-0.65104 -0.0314,-0.89799 -0.0269,-0.24695 -0.0988,-0.36369 -0.0943,-0.15714 -0.25593,-0.24245 -0.16164,-0.0898 -0.36818,-0.0898 -0.50287,0 -0.79023,0.39062 -0.28736,0.38614 -0.28736,1.0731 v 2.47397 h -1.6074 v -5.02875 h 1.6074 v 0.73635 q 0.36369,-0.44002 0.77227,-0.64655 0.40859,-0.21103 0.90249,-0.21103 0.87105,0 1.32004,0.5343 0.45349,0.53431 0.45349,1.55353 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17546"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,365 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="forgetful_functor_morphisms.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="266.61059"
inkscape:cy="77.854748"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0"
showguides="false" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-236.92108,-423.55)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,147.41077,-418.48118)" />
<g
id="g2801-7-0-5"
transform="matrix(4.5296652,0,0,4.5296652,-1096.4512,-1597.3052)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="matrix(1.1772283,0,0,1.1772283,-24.258064,33.378651)"
id="text17012-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Mon">
<path
inkscape:connector-curvature="0"
id="path17542"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 172.07272,120.92641 h 2.20008 l 1.52658,3.58748 1.53557,-3.58748 h 2.19559 v 6.70351 h -1.63434 v -4.90303 l -1.54455,3.61441 h -1.09555 l -1.54455,-3.61441 v 4.90303 h -1.63883 z" />
<path
inkscape:connector-curvature="0"
id="path17544"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 183.54456,123.62937 q -0.5343,0 -0.81717,0.38613 -0.27838,0.38165 -0.27838,1.10453 0,0.72289 0.27838,1.10902 0.28287,0.38165 0.81717,0.38165 0.52533,0 0.8037,-0.38165 0.27838,-0.38613 0.27838,-1.10902 0,-0.72288 -0.27838,-1.10453 -0.27837,-0.38613 -0.8037,-0.38613 z m 0,-1.14943 q 1.2976,0 2.02497,0.70043 0.73187,0.70044 0.73187,1.93966 0,1.23923 -0.73187,1.93967 -0.72737,0.70043 -2.02497,0.70043 -1.30209,0 -2.03844,-0.70043 -0.73186,-0.70044 -0.73186,-1.93967 0,-1.23922 0.73186,-1.93966 0.73635,-0.70043 2.03844,-0.70043 z" />
<path
inkscape:connector-curvature="0"
id="path17546"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 192.52448,124.56777 v 3.06215 h -1.61639 v -0.49838 -1.84538 q 0,-0.65104 -0.0314,-0.89799 -0.0269,-0.24695 -0.0988,-0.36369 -0.0943,-0.15714 -0.25593,-0.24245 -0.16164,-0.0898 -0.36818,-0.0898 -0.50287,0 -0.79023,0.39062 -0.28736,0.38614 -0.28736,1.0731 v 2.47397 h -1.6074 v -5.02875 h 1.6074 v 0.73635 q 0.36369,-0.44002 0.77227,-0.64655 0.40859,-0.21103 0.90249,-0.21103 0.87105,0 1.32004,0.5343 0.45349,0.53431 0.45349,1.55353 z" />
</g>
<g
id="g2801-7-0-5-9"
transform="matrix(4.5296652,0,0,4.5296652,-902.91259,-1598.5233)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g17649"
transform="matrix(1.1772283,0,0,1.1772283,-44.495501,153.10568)">
<g
id="text17012-7-3-0-9-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Set"
transform="translate(123.5954,-18.263237)">
<path
id="path17513"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 245.05503,34.52635 v 1.418826 q -0.55226,-0.246947 -1.07759,-0.372666 -0.52532,-0.125719 -0.99228,-0.125719 -0.61961,0 -0.91595,0.170619 -0.29634,0.170618 -0.29634,0.529815 0,0.269397 0.19756,0.422056 0.20205,0.148168 0.72737,0.255927 l 0.73636,0.148169 q 1.118,0.224498 1.58944,0.682474 0.47145,0.457975 0.47145,1.302087 0,1.10902 -0.66003,1.652305 -0.65553,0.538795 -2.00701,0.538795 -0.63757,0 -1.27964,-0.121229 -0.64206,-0.121229 -1.28412,-0.359196 v -1.459237 q 0.64206,0.341237 1.23922,0.516345 0.60166,0.170619 1.15841,0.170619 0.56574,0 0.86657,-0.188578 0.30082,-0.188579 0.30082,-0.538795 0,-0.314298 -0.20654,-0.484916 -0.20204,-0.170618 -0.81268,-0.305317 l -0.669,-0.148169 q -1.00575,-0.215518 -1.47271,-0.686963 -0.46246,-0.471446 -0.46246,-1.270659 0,-1.00126 0.64655,-1.540055 0.64655,-0.538795 1.85884,-0.538795 0.55227,0 1.13596,0.08531 0.5837,0.08082 1.2078,0.246948 z"
inkscape:connector-curvature="0" />
<path
id="path17515"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 251.96059,38.490983 v 0.457976 h -3.7581 q 0.0584,0.565734 0.40859,0.848602 0.35022,0.282867 0.97881,0.282867 0.50736,0 1.03718,-0.148169 0.5343,-0.152658 1.09555,-0.457975 v 1.239228 q -0.57023,0.215518 -1.14045,0.323277 -0.57022,0.112249 -1.14045,0.112249 -1.36495,0 -2.12375,-0.691453 -0.75431,-0.695944 -0.75431,-1.948642 0,-1.230249 0.74084,-1.935172 0.74533,-0.704924 2.04742,-0.704924 1.18535,0 1.89476,0.713904 0.71391,0.713903 0.71391,1.908232 z m -1.65231,-0.534305 q 0,-0.457976 -0.2694,-0.736353 -0.2649,-0.282868 -0.69594,-0.282868 -0.46695,0 -0.7588,0.264908 -0.29185,0.260417 -0.36369,0.754313 z"
inkscape:connector-curvature="0" />
<path
id="path17517"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 254.93294,34.562269 v 1.427807 h 1.65679 v 1.149429 h -1.65679 v 2.132731 q 0,0.350216 0.13919,0.475935 0.13919,0.121229 0.55226,0.121229 h 0.82616 v 1.149429 h -1.37842 q -0.95187,0 -1.35148,-0.395116 -0.39512,-0.399606 -0.39512,-1.351477 v -2.132731 h -0.79921 v -1.149429 h 0.79921 v -1.427807 z"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g42748-4"
transform="matrix(1.3827459,0,0,1.3827459,-41.503924,-565.98163)" />
<g
id="g42748-8-6"
transform="matrix(1.3827459,0,0,1.3827459,284.96788,-561.67591)" />
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-5"
transform="matrix(0.17327062,0.01657554,-0.01772082,0.2377788,261.01759,12.189442)"
inkscape:transform-center-x="3.200882"
inkscape:transform-center-y="-4.5309225">
<path
sodipodi:nodetypes="cccc"
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:21.88010979;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-6"
d="m 295.32161,235.07468 c 9.49186,-2.37004 19.35903,-4.5396 29.47305,-6.61238 -7.81031,-2.93178 -16.1001,-5.71883 -24.87034,-8.36237 -1.57363,5.2292 -2.32545,9.31544 -4.60271,14.97475 z" />
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-6"
d="M -205.60904,294.2385 C 3.5332469,227.31884 105.08309,201.76891 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#4d4d4d;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5"
transform="matrix(0.05315575,0.19641425,-0.26747091,0.0784447,266.36464,9.5954083)"
inkscape:transform-center-x="-7.0226614"
inkscape:transform-center-y="-7.2332895">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#4d4d4d;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#4d4d4d;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8"
d="M 128.62603,271.86364 C 178.5642,232.1657 229.08539,211.58522 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#4d4d4d;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-6"
transform="matrix(0.20001258,0.03740406,0.05697543,-0.27285172,265.7373,146.46351)"
inkscape:transform-center-x="7.7795065"
inkscape:transform-center-y="8.4484421">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#4d4d4d;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#4d4d4d;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-3"
d="M 379.08818,347.34613 C 152.41321,433.79094 138.15542,210.14527 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
transform="matrix(0.82950849,0,0,0.82950849,115.12722,221.22459)"
id="g49860-3">
<circle
style="fill:#cccccc;fill-opacity:1;stroke:#808285;stroke-width:3;stroke-miterlimit:10;stroke-dasharray:none"
stroke-miterlimit="10"
cx="333"
cy="-160"
r="46.896709"
id="circle13556-1" />
<g
transform="translate(113.04729,15.331343)"
id="g49211-9-4">
<g
aria-label=" "
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="text36730-2-9-0"
transform="matrix(1.5144005,0,0,1.5144005,-164.10127,75.835492)">
<path
d="m 247.39844,-177.31641 13.02734,24.47266 H 264 l -13.02734,-24.47266 z m -4.72657,-2.34375 h 9.72657 l 14.0625,26.46485 v -26.46485 h 2.34375 V -150.5 H 259 l -13.98438,-26.30859 V -150.5 h -2.34375 z"
id="path36732-4-0-3"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
</g>
<g
aria-label=" "
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none"
id="text36730-8-9"
transform="matrix(1.5144005,0,0,1.5144005,-167.65065,71.753713)">
<path
d="m 247.39844,-177.31641 13.02734,24.47266 H 264 l -13.02734,-24.47266 z m -4.72657,-2.34375 h 9.72657 l 14.0625,26.46485 v -26.46485 h 2.34375 V -150.5 H 259 l -13.98438,-26.30859 V -150.5 h -2.34375 z"
id="path36732-1-1"
inkscape:connector-curvature="0"
style="fill:#4d4d4d" />
</g>
</g>
</g>
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-5-3"
transform="matrix(0.14546198,0.09559429,-0.12674006,0.20196471,342.84869,-23.997126)"
inkscape:transform-center-x="2.004839"
inkscape:transform-center-y="-3.0574955">
<path
sodipodi:nodetypes="cccc"
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:21.88010979;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-6-8"
d="m 295.32161,235.07468 c 9.49186,-2.37004 19.35903,-4.5396 29.47305,-6.61238 -7.81031,-2.93178 -16.1001,-5.71883 -24.87034,-8.36237 -1.57363,5.2292 -2.32545,9.31544 -4.60271,14.97475 z" />
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-6-0"
d="M -463.38086,495.46927 C -254.19972,322.07698 105.08309,201.76891 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g49871"
transform="matrix(0.82950849,0,0,0.78199696,-5.5776231,167.1719)">
<ellipse
transform="matrix(-0.52296821,-0.85235219,0.84670448,-0.53206346,0,0)"
inkscape:transform-center-y="0.88685358"
inkscape:transform-center-x="-1.6972598"
id="ellipse9941-1"
ry="45.220844"
rx="48.221268"
stroke-miterlimit="10"
cx="13.216797"
cy="271.53564"
style="fill:#ffccaa;fill-opacity:1;stroke:#808285;stroke-width:3.00008607;stroke-miterlimit:10;stroke-dasharray:none" />
<g
transform="matrix(1.1991692,0,0,1.1991692,12.629959,-192.89865)"
id="g15703-6-7">
<path
d="m 177.39454,41.876438 v 11.260863 h 11.21788 v 5.071686 h -11.21788 v 11.260862 h -5.11467 V 58.208987 h -11.21788 v -5.071686 h 11.21788 V 41.876438 Z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.29601669px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:1.10029805"
id="path15699-2-4"
inkscape:connector-curvature="0" />
<path
d="m 176.77453,45.44913 v 8.263239 h 8.2317 v 3.721611 h -8.2317 v 8.263239 h -3.75315 V 57.43398 h -8.2317 v -3.721611 h 8.2317 V 45.44913 Z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.29601669px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#aa4400;fill-opacity:1;stroke:none;stroke-width:0.80740041"
id="path15701-9-1"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(1.8376041,4.6430092)"
id="g49211">
<g
aria-label=" "
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="text36730-2"
transform="matrix(1.5144005,0,0,1.5144005,-164.10127,75.835492)">
<path
d="m 247.39844,-177.31641 13.02734,24.47266 H 264 l -13.02734,-24.47266 z m -4.72657,-2.34375 h 9.72657 l 14.0625,26.46485 v -26.46485 h 2.34375 V -150.5 H 259 l -13.98438,-26.30859 V -150.5 h -2.34375 z"
id="path36732-4"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
</g>
<g
aria-label=" "
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none"
id="text36730"
transform="matrix(1.5144005,0,0,1.5144005,-167.65065,71.753713)">
<path
d="m 247.39844,-177.31641 13.02734,24.47266 H 264 l -13.02734,-24.47266 z m -4.72657,-2.34375 h 9.72657 l 14.0625,26.46485 v -26.46485 h 2.34375 V -150.5 H 259 l -13.98438,-26.30859 V -150.5 h -2.34375 z"
id="path36732"
inkscape:connector-curvature="0"
style="fill:#4d4d4d" />
</g>
</g>
</g>
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-5-3-6"
transform="matrix(0.14546198,-0.09559429,-0.12674006,-0.20196471,336.03699,195.78924)"
inkscape:transform-center-x="2.004839"
inkscape:transform-center-y="3.0574973">
<path
sodipodi:nodetypes="cccc"
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:21.88010979;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-6-8-6"
d="m 295.32161,235.07468 c 9.49186,-2.37004 19.35903,-4.5396 29.47305,-6.61238 -7.81031,-2.93178 -16.1001,-5.71883 -24.87034,-8.36237 -1.57363,5.2292 -2.32545,9.31544 -4.60271,14.97475 z" />
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-6-0-4"
d="M -463.38086,495.46927 C -254.19972,322.07698 105.08309,201.76891 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g49860"
transform="matrix(0.82950849,0,0,0.79610881,-54.008796,265.67641)">
<circle
style="fill:#aafff0;fill-opacity:1;stroke:#808285;stroke-width:3;stroke-miterlimit:10;stroke-dasharray:none"
stroke-miterlimit="10"
cx="333"
cy="-160"
r="46.896709"
id="circle13556" />
<g
transform="matrix(1.5902176,0,0,1.5902176,81.435098,-167.4213)"
id="g15663-0">
<path
inkscape:connector-curvature="0"
id="path15620-4-6"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.29601669px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10029805"
d="m 169.5189,18.865209 -7.09177,3.717803 7.09177,3.739295 -1.63326,3.030117 -7.15624,-3.954195 v 7.392626 h -3.65333 v -7.392626 l -7.17772,3.954195 -1.63326,-3.030117 7.17773,-3.739295 -7.17773,-3.717803 1.63326,-3.03012 7.17772,3.911218 v -7.392628 h 3.65333 v 7.392628 l 7.15624,-3.911218 z" />
<path
inkscape:connector-curvature="0"
id="path15620-2"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.29601669px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#0077aa;fill-opacity:1;stroke:none;stroke-width:0.80740041"
d="m 166.79554,19.837071 -5.20395,2.72813 5.20395,2.7439 -1.19849,2.223505 -5.25126,-2.901595 v 5.424721 h -2.68082 v -5.424721 l -5.26702,2.901595 -1.19849,-2.223505 5.26703,-2.7439 -5.26703,-2.72813 1.19849,-2.223506 5.26702,2.870057 v -5.424723 h 2.68082 v 5.424723 l 5.25126,-2.870057 z" />
</g>
<g
transform="translate(113.40084,0.83565418)"
id="g49211-9">
<g
aria-label=" "
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="text36730-2-9"
transform="matrix(1.5144005,0,0,1.5144005,-164.10127,75.835492)">
<path
d="m 247.39844,-177.31641 13.02734,24.47266 H 264 l -13.02734,-24.47266 z m -4.72657,-2.34375 h 9.72657 l 14.0625,26.46485 v -26.46485 h 2.34375 V -150.5 H 259 l -13.98438,-26.30859 V -150.5 h -2.34375 z"
id="path36732-4-0"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
</g>
<g
aria-label=" "
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none"
id="text36730-8"
transform="matrix(1.5144005,0,0,1.5144005,-167.65065,71.753713)">
<path
d="m 247.39844,-177.31641 13.02734,24.47266 H 264 l -13.02734,-24.47266 z m -4.72657,-2.34375 h 9.72657 l 14.0625,26.46485 v -26.46485 h 2.34375 V -150.5 H 259 l -13.98438,-26.30859 V -150.5 h -2.34375 z"
id="path36732-1"
inkscape:connector-curvature="0"
style="fill:#4d4d4d" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,410 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="forgetful_functor_objects.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="343.87759"
inkscape:cy="-83.024546"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0"
showguides="false" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-206.54493,-201.51847)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,177.78692,-196.44965)" />
<g
id="g2801-7-0-5"
transform="matrix(4.5296652,0,0,4.5296652,-1142.4425,-1596.5981)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g2801-7-0-5-9"
transform="matrix(4.5296652,0,0,4.5296652,-842.83796,-1594.9878)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g42748-4"
transform="matrix(1.3827459,0,0,1.3827459,-11.12777,-343.9501)" />
<g
id="g42748-8-6"
transform="matrix(1.3827459,0,0,1.3827459,315.34403,-339.64438)" />
<g
transform="matrix(1.1772283,0,0,1.1772283,-70.292576,26.652679)"
id="text17012-7-1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Mon">
<path
inkscape:connector-curvature="0"
id="path17542-1"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 172.07272,120.92641 h 2.20008 l 1.52658,3.58748 1.53557,-3.58748 h 2.19559 v 6.70351 h -1.63434 v -4.90303 l -1.54455,3.61441 h -1.09555 l -1.54455,-3.61441 v 4.90303 h -1.63883 z" />
<path
inkscape:connector-curvature="0"
id="path17544-9"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 183.54456,123.62937 q -0.5343,0 -0.81717,0.38613 -0.27838,0.38165 -0.27838,1.10453 0,0.72289 0.27838,1.10902 0.28287,0.38165 0.81717,0.38165 0.52533,0 0.8037,-0.38165 0.27838,-0.38613 0.27838,-1.10902 0,-0.72288 -0.27838,-1.10453 -0.27837,-0.38613 -0.8037,-0.38613 z m 0,-1.14943 q 1.2976,0 2.02497,0.70043 0.73187,0.70044 0.73187,1.93966 0,1.23923 -0.73187,1.93967 -0.72737,0.70043 -2.02497,0.70043 -1.30209,0 -2.03844,-0.70043 -0.73186,-0.70044 -0.73186,-1.93967 0,-1.23922 0.73186,-1.93966 0.73635,-0.70043 2.03844,-0.70043 z" />
<path
inkscape:connector-curvature="0"
id="path17546-0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 192.52448,124.56777 v 3.06215 h -1.61639 v -0.49838 -1.84538 q 0,-0.65104 -0.0314,-0.89799 -0.0269,-0.24695 -0.0988,-0.36369 -0.0943,-0.15714 -0.25593,-0.24245 -0.16164,-0.0898 -0.36818,-0.0898 -0.50287,0 -0.79023,0.39062 -0.28736,0.38614 -0.28736,1.0731 v 2.47397 h -1.6074 v -5.02875 h 1.6074 v 0.73635 q 0.36369,-0.44002 0.77227,-0.64655 0.40859,-0.21103 0.90249,-0.21103 0.87105,0 1.32004,0.5343 0.45349,0.53431 0.45349,1.55353 z" />
</g>
<g
id="g17649-5"
transform="matrix(1.1772283,0,0,1.1772283,15.207428,157.15268)">
<g
id="text17012-7-3-0-9-3-6"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Set"
transform="translate(123.5954,-18.263237)">
<path
id="path17513-7"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 245.05503,34.52635 v 1.418826 q -0.55226,-0.246947 -1.07759,-0.372666 -0.52532,-0.125719 -0.99228,-0.125719 -0.61961,0 -0.91595,0.170619 -0.29634,0.170618 -0.29634,0.529815 0,0.269397 0.19756,0.422056 0.20205,0.148168 0.72737,0.255927 l 0.73636,0.148169 q 1.118,0.224498 1.58944,0.682474 0.47145,0.457975 0.47145,1.302087 0,1.10902 -0.66003,1.652305 -0.65553,0.538795 -2.00701,0.538795 -0.63757,0 -1.27964,-0.121229 -0.64206,-0.121229 -1.28412,-0.359196 v -1.459237 q 0.64206,0.341237 1.23922,0.516345 0.60166,0.170619 1.15841,0.170619 0.56574,0 0.86657,-0.188578 0.30082,-0.188579 0.30082,-0.538795 0,-0.314298 -0.20654,-0.484916 -0.20204,-0.170618 -0.81268,-0.305317 l -0.669,-0.148169 q -1.00575,-0.215518 -1.47271,-0.686963 -0.46246,-0.471446 -0.46246,-1.270659 0,-1.00126 0.64655,-1.540055 0.64655,-0.538795 1.85884,-0.538795 0.55227,0 1.13596,0.08531 0.5837,0.08082 1.2078,0.246948 z"
inkscape:connector-curvature="0" />
<path
id="path17515-7"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 251.96059,38.490983 v 0.457976 h -3.7581 q 0.0584,0.565734 0.40859,0.848602 0.35022,0.282867 0.97881,0.282867 0.50736,0 1.03718,-0.148169 0.5343,-0.152658 1.09555,-0.457975 v 1.239228 q -0.57023,0.215518 -1.14045,0.323277 -0.57022,0.112249 -1.14045,0.112249 -1.36495,0 -2.12375,-0.691453 -0.75431,-0.695944 -0.75431,-1.948642 0,-1.230249 0.74084,-1.935172 0.74533,-0.704924 2.04742,-0.704924 1.18535,0 1.89476,0.713904 0.71391,0.713903 0.71391,1.908232 z m -1.65231,-0.534305 q 0,-0.457976 -0.2694,-0.736353 -0.2649,-0.282868 -0.69594,-0.282868 -0.46695,0 -0.7588,0.264908 -0.29185,0.260417 -0.36369,0.754313 z"
inkscape:connector-curvature="0" />
<path
id="path17517-4"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 254.93294,34.562269 v 1.427807 h 1.65679 v 1.149429 h -1.65679 v 2.132731 q 0,0.350216 0.13919,0.475935 0.13919,0.121229 0.55226,0.121229 h 0.82616 v 1.149429 h -1.37842 q -0.95187,0 -1.35148,-0.395116 -0.39512,-0.399606 -0.39512,-1.351477 v -2.132731 h -0.79921 v -1.149429 h 0.79921 v -1.427807 z"
inkscape:connector-curvature="0" />
</g>
</g>
<circle
id="circle13552-0"
r="72.23513"
cy="90.425087"
cx="147.88623"
stroke-miterlimit="10"
style="fill:#ffccaa;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<circle
id="circle13552-0-9"
r="72.23513"
cy="93.768745"
cx="448.86609"
stroke-miterlimit="10"
style="fill:#cccccc;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-2-3-7-1"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,343.06846,43.692179)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-4-1-3-9"
d="M -1171.1955,515.16133 C -727.60217,286.24997 -20.665474,206.05175 311.91809,237.27238"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5-3-3-9"
d="m 311.91809,237.27238 c 8.3737,-2.57878 17.0361,-4.98257 25.8934,-7.30427 -6.1864,-2.47429 -12.7993,-4.79477 -19.8394,-6.96254 -2.0856,4.98076 -3.311,8.85536 -6.054,14.26681 z" />
</g>
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,371.65756,-33.743421)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0"
d="M -1160.6611,508.68911 C -717.06779,279.77775 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5-8"
d="m 311.91809,237.27238 c 8.3737,-2.57879 17.0361,-4.98258 25.8934,-7.30427 -6.1864,-2.47429 -12.7993,-4.79477 -19.8394,-6.96254 -2.0856,4.98076 -3.311,8.85536 -6.054,14.26681 z" />
</g>
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-2"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,373.05349,19.867369)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-4"
d="M -1160.6611,508.68911 C -717.06779,279.77775 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5-3"
d="m 307.77166,239.34593 c 8.3737,-2.57879 17.0361,-4.98258 25.8934,-7.30427 -6.1864,-2.47429 -12.7993,-4.79477 -19.8394,-6.96254 -2.0856,4.98076 -3.311,8.85536 -6.054,14.26681 z" />
</g>
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-2-3"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,336.99536,0.18360923)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
sodipodi:nodetypes="cccc"
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5"
d="m 311.05569,238.25595 c 8.37368,-2.57879 17.03604,-4.98258 25.89333,-7.30427 -6.18632,-2.47429 -12.79923,-4.79477 -19.8394,-6.96254 -2.08557,4.98076 -3.31094,8.85536 -6.05393,14.26681 z" />
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-4-1"
d="M -1190.2704,508.68187 C -746.6771,279.77051 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<circle
id="circle13592-0"
r="15.465485"
cy="71.776924"
cx="95.096893"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#e6e6e6;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-52-2-3-7"
transform="matrix(0.16887872,0.0421596,-0.05288565,0.23249923,417.15221,59.833619)"
inkscape:transform-center-x="3.1771439"
inkscape:transform-center-y="-11.119591">
<path
style="fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-0-4-1-3"
d="M -1160.6611,508.68911 C -717.06779,279.77775 -23.214562,197.9118 309.369,229.13243"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#ff8a88;stroke-width:19.46457863;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-9-9-5-3-3"
d="m 311.91809,237.27238 c 8.3737,-2.57878 17.0361,-4.98257 25.8934,-7.30427 -6.1864,-2.47429 -12.7993,-4.79477 -19.8394,-6.96254 -2.0856,4.98076 -3.311,8.85536 -6.054,14.26681 z" />
</g>
<g
id="g66250"
transform="matrix(1.4329394,0,0,1.4329394,-279.92364,211.77224)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3373"
r="10.394309"
cy="-55.880161"
cx="323.10577" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3387"
r="10.394309"
cy="-59.38718"
cx="321.07761" />
</g>
<g
id="g66258-7"
transform="matrix(1.4319211,0.05401095,-0.05401095,1.4319211,-260.82361,196.59452)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3375-6"
r="10.394309"
cy="-61.07732"
cx="253.00755" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3389-0"
r="10.394309"
cy="-64.584343"
cx="250.97942" />
</g>
<g
id="g66242-0-7"
transform="matrix(1.4329394,0,0,1.4329394,-51.251004,170.61287)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-4-3"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-76-2"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66262-96"
transform="matrix(1.4778927,0.05574496,-0.05574496,1.4778927,-148.45857,207.34724)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-04"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-1"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
id="g66246-7-4-2-0"
transform="matrix(1.3963698,0,0,1.3963698,-15.917532,179.79792)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-1"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-78"
cy="-63.541103"
cx="106.41364" />
</g>
<circle
id="circle13592-4"
r="15.465485"
cy="75.502998"
cx="400.79849"
stroke-miterlimit="10"
style="fill:#ffffff;stroke:#e6e6e6;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
id="g66250-9"
transform="matrix(1.4329394,0,0,1.4329394,26.131515,214.79119)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3373-2"
r="10.394309"
cy="-55.880161"
cx="323.10577" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3387-5"
r="10.394309"
cy="-59.38718"
cx="321.07761" />
</g>
<g
id="g66258-7-7"
transform="matrix(1.4319211,0.05401095,-0.05401095,1.4319211,45.231543,199.61347)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3375-6-4"
r="10.394309"
cy="-61.07732"
cx="253.00755" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3389-0-9"
r="10.394309"
cy="-64.584343"
cx="250.97942" />
</g>
<g
id="g66242-0-7-9"
transform="matrix(1.4329394,0,0,1.4329394,254.80414,173.63182)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-4-3-4"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-76-2-5"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66262-96-9"
transform="matrix(1.4778927,0.05574496,-0.05574496,1.4778927,157.59659,210.36619)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-04-3"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-1-5"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
id="g66246-7-4-2-0-7"
transform="matrix(1.3963698,0,0,1.3963698,290.13761,182.81687)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-1-0"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-78-8"
cy="-63.541103"
cx="106.41364" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,343 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="forgetful_functors.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="4"
inkscape:cx="280.54245"
inkscape:cy="28.891976"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-222.92108,-424.05)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,161.41077,-418.98118)" />
<g
style="display:inline;fill:#dddddd;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1"
transform="matrix(-0.19454036,-0.08585755,0.10612299,-0.27766089,278.61897,230.77292)"
inkscape:transform-center-x="-2.519948"
inkscape:transform-center-y="14.025223">
<path
style="stroke:#ff8a88;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#ff8a88;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9"
transform="matrix(0.20758267,-0.04611834,0.07904865,0.28654662,186.71938,-25.885029)"
inkscape:transform-center-x="21.764177"
inkscape:transform-center-y="0.03853493">
<path
style="stroke:#ff8a88;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#ff8a88;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6"
d="M -55.760681,120.82766 C 133.49988,81.736335 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g2801-7-0-5-9-8"
transform="matrix(1.172938,0,0,1.172938,-115.49,-392.62684)">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-4-5"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-8-0"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Top"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-3-0-9"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<path
d="m 166.40327,51.450026 h 6.17818 v 1.306578 h -2.22253 v 5.39693 h -1.72863 v -5.39693 h -2.22702 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17506"
inkscape:connector-curvature="0" />
<path
d="m 174.57499,54.152981 q -0.5343,0 -0.81717,0.386137 -0.27838,0.381646 -0.27838,1.104529 0,0.722884 0.27838,1.10902 0.28287,0.381646 0.81717,0.381646 0.52533,0 0.8037,-0.381646 0.27838,-0.386136 0.27838,-1.10902 0,-0.722883 -0.27838,-1.104529 -0.27837,-0.386137 -0.8037,-0.386137 z m 0,-1.149429 q 1.2976,0 2.02497,0.700433 0.73187,0.700434 0.73187,1.939662 0,1.239229 -0.73187,1.939662 -0.72737,0.700434 -2.02497,0.700434 -1.30209,0 -2.03844,-0.700434 -0.73186,-0.700433 -0.73186,-1.939662 0,-1.239228 0.73186,-1.939662 0.73635,-0.700433 2.03844,-0.700433 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17508"
inkscape:connector-curvature="0" />
<path
d="m 180.10662,57.426161 v 2.640095 h -1.60741 v -6.941475 h 1.60741 v 0.736353 q 0.33226,-0.440016 0.73635,-0.646554 0.4041,-0.211028 0.92942,-0.211028 0.92943,0 1.52659,0.740843 0.59716,0.736353 0.59716,1.899252 0,1.162899 -0.59716,1.903743 -0.59716,0.736353 -1.52659,0.736353 -0.52532,0 -0.92942,-0.206538 -0.40409,-0.211028 -0.73635,-0.651044 z m 1.06861,-3.25522 q -0.51635,0 -0.79472,0.381646 -0.27389,0.377157 -0.27389,1.09106 0,0.713904 0.27389,1.09555 0.27837,0.377157 0.79472,0.377157 0.51635,0 0.78574,-0.377157 0.27389,-0.377156 0.27389,-1.09555 0,-0.718393 -0.27389,-1.09555 -0.26939,-0.377156 -0.78574,-0.377156 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17510"
inkscape:connector-curvature="0" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1-9"
transform="matrix(-0.01636858,-0.21201307,-0.29714579,0.00787585,373.0139,115.66266)"
inkscape:transform-center-x="-6.8270808"
inkscape:transform-center-y="21.128183">
<path
style="stroke:#ff8a88;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7-6"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#ff8a88;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5-2"
d="M -157.3255,134.14155 C 31.935057,95.050227 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g17434"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<g
transform="matrix(0.99635556,0,0,0.99635556,-26.222858,-214.98487)"
id="g2801-7-0-5-3">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-6"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-5"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Grp"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-6">
<path
d="m 247.75762,158.99366 q -0.64655,0.3143 -1.3425,0.47145 -0.69594,0.15715 -1.43678,0.15715 -1.67476,0 -2.65357,-0.93391 -0.97881,-0.9384 -0.97881,-2.54132 0,-1.62087 0.99677,-2.5503 0.99677,-0.92942 2.7299,-0.92942 0.669,0 1.27963,0.12572 0.61513,0.12572 1.15841,0.37267 v 1.3874 q -0.56124,-0.31879 -1.118,-0.47594 -0.55226,-0.15715 -1.10902,-0.15715 -1.03269,0 -1.59393,0.57921 -0.55676,0.57471 -0.55676,1.64781 0,1.06412 0.5388,1.64333 0.53879,0.5792 1.53108,0.5792 0.26939,0 0.49838,-0.0314 0.23348,-0.0359 0.41757,-0.10776 v -1.30209 h -1.05514 v -1.15841 h 2.69397 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17533"
inkscape:connector-curvature="0" />
<path
d="m 252.94352,155.83273 q -0.21102,-0.0988 -0.42205,-0.14367 -0.20654,-0.0494 -0.41757,-0.0494 -0.61961,0 -0.95636,0.3996 -0.33226,0.39512 -0.33226,1.13596 v 2.31682 h -1.6074 v -5.02875 h 1.6074 v 0.82615 q 0.30981,-0.4939 0.70942,-0.71839 0.40409,-0.22899 0.96534,-0.22899 0.0808,0 0.17511,0.009 0.0943,0.004 0.27388,0.0269 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17535"
inkscape:connector-curvature="0" />
<path
d="m 255.35014,158.76468 v 2.64009 h -1.6074 v -6.94147 h 1.6074 v 0.73635 q 0.33226,-0.44002 0.73635,-0.64655 0.4041,-0.21103 0.92943,-0.21103 0.92942,0 1.52658,0.74084 0.59717,0.73635 0.59717,1.89925 0,1.1629 -0.59717,1.90375 -0.59716,0.73635 -1.52658,0.73635 -0.52533,0 -0.92943,-0.20654 -0.40409,-0.21103 -0.73635,-0.65104 z m 1.06861,-3.25522 q -0.51634,0 -0.79472,0.38164 -0.27389,0.37716 -0.27389,1.09106 0,0.71391 0.27389,1.09555 0.27838,0.37716 0.79472,0.37716 0.51635,0 0.78574,-0.37716 0.27389,-0.37715 0.27389,-1.09555 0,-0.71839 -0.27389,-1.09555 -0.26939,-0.37715 -0.78574,-0.37715 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17537"
inkscape:connector-curvature="0" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1-9-1"
transform="matrix(0.15903028,-0.14116245,0.20830924,0.21204933,179.94133,37.781241)"
inkscape:transform-center-x="18.508627"
inkscape:transform-center-y="11.464146">
<path
style="stroke:#ff8a88;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7-6-7"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#ff8a88;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5-2-8"
d="M -140.57909,177.57704 C -16.707468,105.19011 160.78146,53.934721 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g17427"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<g
transform="matrix(0.99635556,0,0,0.99635556,-91.821363,-246.847)"
id="g2801-7-0-5">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Mon"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7">
<path
d="m 172.07272,120.92641 h 2.20008 l 1.52658,3.58748 1.53557,-3.58748 h 2.19559 v 6.70351 h -1.63434 v -4.90303 l -1.54455,3.61441 h -1.09555 l -1.54455,-3.61441 v 4.90303 h -1.63883 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17542"
inkscape:connector-curvature="0" />
<path
d="m 183.54456,123.62937 q -0.5343,0 -0.81717,0.38613 -0.27838,0.38165 -0.27838,1.10453 0,0.72289 0.27838,1.10902 0.28287,0.38165 0.81717,0.38165 0.52533,0 0.8037,-0.38165 0.27838,-0.38613 0.27838,-1.10902 0,-0.72288 -0.27838,-1.10453 -0.27837,-0.38613 -0.8037,-0.38613 z m 0,-1.14943 q 1.2976,0 2.02497,0.70043 0.73187,0.70044 0.73187,1.93966 0,1.23923 -0.73187,1.93967 -0.72737,0.70043 -2.02497,0.70043 -1.30209,0 -2.03844,-0.70043 -0.73186,-0.70044 -0.73186,-1.93967 0,-1.23922 0.73186,-1.93966 0.73635,-0.70043 2.03844,-0.70043 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17544"
inkscape:connector-curvature="0" />
<path
d="m 192.52448,124.56777 v 3.06215 h -1.61639 v -0.49838 -1.84538 q 0,-0.65104 -0.0314,-0.89799 -0.0269,-0.24695 -0.0988,-0.36369 -0.0943,-0.15714 -0.25593,-0.24245 -0.16164,-0.0898 -0.36818,-0.0898 -0.50287,0 -0.79023,0.39062 -0.28736,0.38614 -0.28736,1.0731 v 2.47397 h -1.6074 v -5.02875 h 1.6074 v 0.73635 q 0.36369,-0.44002 0.77227,-0.64655 0.40859,-0.21103 0.90249,-0.21103 0.87105,0 1.32004,0.5343 0.45349,0.53431 0.45349,1.55353 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17546"
inkscape:connector-curvature="0" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1"
transform="matrix(-0.08518194,-0.19483713,-0.27802748,0.10515883,404.68642,80.018929)"
inkscape:transform-center-x="-11.843669"
inkscape:transform-center-y="18.200393">
<path
style="stroke:#ff8a88;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#ff8a88;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5"
d="M -107.41018,126.53967 C 81.850379,87.448343 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g17441"
transform="matrix(1.1772283,0,0,1.1772283,14.305247,-11.2708)">
<g
transform="matrix(0.99635556,0,0,0.99635556,1.8907887,-259.65433)"
id="g2801-7-0-5-9">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-4"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-8"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Ord"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-3-0">
<path
d="m 272.09849,107.87166 q -0.79023,0 -1.22575,0.5837 -0.43553,0.58369 -0.43553,1.64332 0,1.05514 0.43553,1.63884 0.43552,0.58369 1.22575,0.58369 0.79473,0 1.23025,-0.58369 0.43553,-0.5837 0.43553,-1.63884 0,-1.05963 -0.43553,-1.64332 -0.43552,-0.5837 -1.23025,-0.5837 z m 0,-1.25269 q 1.61639,0 2.53234,0.92493 0.91595,0.92493 0.91595,2.55478 0,1.62537 -0.91595,2.5503 -0.91595,0.92493 -2.53234,0.92493 -1.61189,0 -2.53233,-0.92493 -0.91595,-0.92493 -0.91595,-2.5503 0,-1.62985 0.91595,-2.55478 0.92044,-0.92493 2.53233,-0.92493 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17524"
inkscape:connector-curvature="0" />
<path
d="m 280.51717,109.78439 q -0.21103,-0.0988 -0.42206,-0.14368 -0.20654,-0.0494 -0.41757,-0.0494 -0.61961,0 -0.95636,0.3996 -0.33225,0.39512 -0.33225,1.13596 v 2.31682 h -1.60741 v -5.02875 h 1.60741 v 0.82615 q 0.3098,-0.49389 0.70941,-0.71839 0.4041,-0.22899 0.96534,-0.22899 0.0808,0 0.17511,0.009 0.0943,0.004 0.27389,0.0269 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17526"
inkscape:connector-curvature="0" />
<path
d="m 284.73773,109.1513 v -2.69397 h 1.61638 v 6.98637 h -1.61638 v -0.72737 q -0.33226,0.44451 -0.73187,0.65104 -0.3996,0.20654 -0.92493,0.20654 -0.92942,0 -1.52658,-0.73635 -0.59717,-0.74084 -0.59717,-1.90374 0,-1.1629 0.59717,-1.89926 0.59716,-0.74084 1.52658,-0.74084 0.52084,0 0.92044,0.21103 0.4041,0.20654 0.73636,0.64655 z m -1.05963,3.25522 q 0.51634,0 0.78574,-0.37715 0.27389,-0.37716 0.27389,-1.09555 0,-0.7184 -0.27389,-1.09555 -0.2694,-0.37716 -0.78574,-0.37716 -0.51186,0 -0.78575,0.37716 -0.26939,0.37715 -0.26939,1.09555 0,0.71839 0.26939,1.09555 0.27389,0.37715 0.78575,0.37715 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17528"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g17649"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<g
transform="matrix(0.99635556,0,0,0.99635556,-27.028832,-333.3431)"
id="g2801-7-0">
<path
id="circle15601-9-4-6-3-9-4-6"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="circle15601-9-4-5-4-5-8"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
<g
id="text17012-7-3-0-9-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Set">
<path
id="path17513"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 245.05503,34.52635 v 1.418826 q -0.55226,-0.246947 -1.07759,-0.372666 -0.52532,-0.125719 -0.99228,-0.125719 -0.61961,0 -0.91595,0.170619 -0.29634,0.170618 -0.29634,0.529815 0,0.269397 0.19756,0.422056 0.20205,0.148168 0.72737,0.255927 l 0.73636,0.148169 q 1.118,0.224498 1.58944,0.682474 0.47145,0.457975 0.47145,1.302087 0,1.10902 -0.66003,1.652305 -0.65553,0.538795 -2.00701,0.538795 -0.63757,0 -1.27964,-0.121229 -0.64206,-0.121229 -1.28412,-0.359196 v -1.459237 q 0.64206,0.341237 1.23922,0.516345 0.60166,0.170619 1.15841,0.170619 0.56574,0 0.86657,-0.188578 0.30082,-0.188579 0.30082,-0.538795 0,-0.314298 -0.20654,-0.484916 -0.20204,-0.170618 -0.81268,-0.305317 l -0.669,-0.148169 q -1.00575,-0.215518 -1.47271,-0.686963 -0.46246,-0.471446 -0.46246,-1.270659 0,-1.00126 0.64655,-1.540055 0.64655,-0.538795 1.85884,-0.538795 0.55227,0 1.13596,0.08531 0.5837,0.08082 1.2078,0.246948 z"
inkscape:connector-curvature="0" />
<path
id="path17515"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 251.96059,38.490983 v 0.457976 h -3.7581 q 0.0584,0.565734 0.40859,0.848602 0.35022,0.282867 0.97881,0.282867 0.50736,0 1.03718,-0.148169 0.5343,-0.152658 1.09555,-0.457975 v 1.239228 q -0.57023,0.215518 -1.14045,0.323277 -0.57022,0.112249 -1.14045,0.112249 -1.36495,0 -2.12375,-0.691453 -0.75431,-0.695944 -0.75431,-1.948642 0,-1.230249 0.74084,-1.935172 0.74533,-0.704924 2.04742,-0.704924 1.18535,0 1.89476,0.713904 0.71391,0.713903 0.71391,1.908232 z m -1.65231,-0.534305 q 0,-0.457976 -0.2694,-0.736353 -0.2649,-0.282868 -0.69594,-0.282868 -0.46695,0 -0.7588,0.264908 -0.29185,0.260417 -0.36369,0.754313 z"
inkscape:connector-curvature="0" />
<path
id="path17517"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 254.93294,34.562269 v 1.427807 h 1.65679 v 1.149429 h -1.65679 v 2.132731 q 0,0.350216 0.13919,0.475935 0.13919,0.121229 0.55226,0.121229 h 0.82616 v 1.149429 h -1.37842 q -0.95187,0 -1.35148,-0.395116 -0.39512,-0.399606 -0.39512,-1.351477 v -2.132731 h -0.79921 v -1.149429 h 0.79921 v -1.427807 z"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,443 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="free_forgetful_functors.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="194.54245"
inkscape:cy="-29.858024"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-222.92108,-424.05)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,161.41077,-418.98118)" />
<g
style="display:inline;fill:#dddddd;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3-5-7-2"
transform="matrix(0.19454036,0.08585755,-0.10612299,0.27766089,238.20167,60.553559)"
inkscape:transform-center-x="2.519953"
inkscape:transform-center-y="-14.025222">
<path
style="stroke:#008000;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#008000;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1"
transform="matrix(-0.19454036,-0.08585755,0.10612299,-0.27766089,278.61897,230.77292)"
inkscape:transform-center-x="-2.519948"
inkscape:transform-center-y="14.025223">
<path
style="stroke:#ff8a88;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#ff8a88;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9"
transform="matrix(0.20758267,-0.04611834,0.07904865,0.28654662,186.71938,-25.885029)"
inkscape:transform-center-x="21.764177"
inkscape:transform-center-y="0.03853493">
<path
style="stroke:#ff8a88;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#ff8a88;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6"
d="M -55.760681,120.82766 C 133.49988,81.736335 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g2801-7-0-5-9-8"
transform="matrix(1.172938,0,0,1.172938,-115.49,-392.62684)">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-4-5"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-8-0"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Top"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-3-0-9"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<path
d="m 166.40327,51.450026 h 6.17818 v 1.306578 h -2.22253 v 5.39693 h -1.72863 v -5.39693 h -2.22702 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17506"
inkscape:connector-curvature="0" />
<path
d="m 174.57499,54.152981 q -0.5343,0 -0.81717,0.386137 -0.27838,0.381646 -0.27838,1.104529 0,0.722884 0.27838,1.10902 0.28287,0.381646 0.81717,0.381646 0.52533,0 0.8037,-0.381646 0.27838,-0.386136 0.27838,-1.10902 0,-0.722883 -0.27838,-1.104529 -0.27837,-0.386137 -0.8037,-0.386137 z m 0,-1.149429 q 1.2976,0 2.02497,0.700433 0.73187,0.700434 0.73187,1.939662 0,1.239229 -0.73187,1.939662 -0.72737,0.700434 -2.02497,0.700434 -1.30209,0 -2.03844,-0.700434 -0.73186,-0.700433 -0.73186,-1.939662 0,-1.239228 0.73186,-1.939662 0.73635,-0.700433 2.03844,-0.700433 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17508"
inkscape:connector-curvature="0" />
<path
d="m 180.10662,57.426161 v 2.640095 h -1.60741 v -6.941475 h 1.60741 v 0.736353 q 0.33226,-0.440016 0.73635,-0.646554 0.4041,-0.211028 0.92942,-0.211028 0.92943,0 1.52659,0.740843 0.59716,0.736353 0.59716,1.899252 0,1.162899 -0.59716,1.903743 -0.59716,0.736353 -1.52659,0.736353 -0.52532,0 -0.92942,-0.206538 -0.40409,-0.211028 -0.73635,-0.651044 z m 1.06861,-3.25522 q -0.51635,0 -0.79472,0.381646 -0.27389,0.377157 -0.27389,1.09106 0,0.713904 0.27389,1.09555 0.27837,0.377157 0.79472,0.377157 0.51635,0 0.78574,-0.377157 0.27389,-0.377156 0.27389,-1.09555 0,-0.718393 -0.27389,-1.09555 -0.26939,-0.377156 -0.78574,-0.377156 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17510"
inkscape:connector-curvature="0" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1-9"
transform="matrix(-0.01636858,-0.21201307,-0.29714579,0.00787585,373.0139,115.66266)"
inkscape:transform-center-x="-6.8270808"
inkscape:transform-center-y="21.128183">
<path
style="stroke:#ff8a88;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7-6"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#ff8a88;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5-2"
d="M -157.3255,134.14155 C 31.935057,95.050227 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g17434"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<g
transform="matrix(0.99635556,0,0,0.99635556,-26.222858,-214.98487)"
id="g2801-7-0-5-3">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-6"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-5"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Grp"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-6">
<path
d="m 247.75762,158.99366 q -0.64655,0.3143 -1.3425,0.47145 -0.69594,0.15715 -1.43678,0.15715 -1.67476,0 -2.65357,-0.93391 -0.97881,-0.9384 -0.97881,-2.54132 0,-1.62087 0.99677,-2.5503 0.99677,-0.92942 2.7299,-0.92942 0.669,0 1.27963,0.12572 0.61513,0.12572 1.15841,0.37267 v 1.3874 q -0.56124,-0.31879 -1.118,-0.47594 -0.55226,-0.15715 -1.10902,-0.15715 -1.03269,0 -1.59393,0.57921 -0.55676,0.57471 -0.55676,1.64781 0,1.06412 0.5388,1.64333 0.53879,0.5792 1.53108,0.5792 0.26939,0 0.49838,-0.0314 0.23348,-0.0359 0.41757,-0.10776 v -1.30209 h -1.05514 v -1.15841 h 2.69397 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17533"
inkscape:connector-curvature="0" />
<path
d="m 252.94352,155.83273 q -0.21102,-0.0988 -0.42205,-0.14367 -0.20654,-0.0494 -0.41757,-0.0494 -0.61961,0 -0.95636,0.3996 -0.33226,0.39512 -0.33226,1.13596 v 2.31682 h -1.6074 v -5.02875 h 1.6074 v 0.82615 q 0.30981,-0.4939 0.70942,-0.71839 0.40409,-0.22899 0.96534,-0.22899 0.0808,0 0.17511,0.009 0.0943,0.004 0.27388,0.0269 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17535"
inkscape:connector-curvature="0" />
<path
d="m 255.35014,158.76468 v 2.64009 h -1.6074 v -6.94147 h 1.6074 v 0.73635 q 0.33226,-0.44002 0.73635,-0.64655 0.4041,-0.21103 0.92943,-0.21103 0.92942,0 1.52658,0.74084 0.59717,0.73635 0.59717,1.89925 0,1.1629 -0.59717,1.90375 -0.59716,0.73635 -1.52658,0.73635 -0.52533,0 -0.92943,-0.20654 -0.40409,-0.21103 -0.73635,-0.65104 z m 1.06861,-3.25522 q -0.51634,0 -0.79472,0.38164 -0.27389,0.37716 -0.27389,1.09106 0,0.71391 0.27389,1.09555 0.27838,0.37716 0.79472,0.37716 0.51635,0 0.78574,-0.37716 0.27389,-0.37715 0.27389,-1.09555 0,-0.71839 -0.27389,-1.09555 -0.26939,-0.37715 -0.78574,-0.37715 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17537"
inkscape:connector-curvature="0" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1-9-1"
transform="matrix(0.15903028,-0.14116245,0.20830924,0.21204933,179.94133,37.781241)"
inkscape:transform-center-x="18.508627"
inkscape:transform-center-y="11.464146">
<path
style="stroke:#ff8a88;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7-6-7"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#ff8a88;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5-2-8"
d="M -140.57909,177.57704 C -16.707468,105.19011 160.78146,53.934721 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g17427"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<g
transform="matrix(0.99635556,0,0,0.99635556,-91.821363,-246.847)"
id="g2801-7-0-5">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Mon"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7">
<path
d="m 172.07272,120.92641 h 2.20008 l 1.52658,3.58748 1.53557,-3.58748 h 2.19559 v 6.70351 h -1.63434 v -4.90303 l -1.54455,3.61441 h -1.09555 l -1.54455,-3.61441 v 4.90303 h -1.63883 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17542"
inkscape:connector-curvature="0" />
<path
d="m 183.54456,123.62937 q -0.5343,0 -0.81717,0.38613 -0.27838,0.38165 -0.27838,1.10453 0,0.72289 0.27838,1.10902 0.28287,0.38165 0.81717,0.38165 0.52533,0 0.8037,-0.38165 0.27838,-0.38613 0.27838,-1.10902 0,-0.72288 -0.27838,-1.10453 -0.27837,-0.38613 -0.8037,-0.38613 z m 0,-1.14943 q 1.2976,0 2.02497,0.70043 0.73187,0.70044 0.73187,1.93966 0,1.23923 -0.73187,1.93967 -0.72737,0.70043 -2.02497,0.70043 -1.30209,0 -2.03844,-0.70043 -0.73186,-0.70044 -0.73186,-1.93967 0,-1.23922 0.73186,-1.93966 0.73635,-0.70043 2.03844,-0.70043 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17544"
inkscape:connector-curvature="0" />
<path
d="m 192.52448,124.56777 v 3.06215 h -1.61639 v -0.49838 -1.84538 q 0,-0.65104 -0.0314,-0.89799 -0.0269,-0.24695 -0.0988,-0.36369 -0.0943,-0.15714 -0.25593,-0.24245 -0.16164,-0.0898 -0.36818,-0.0898 -0.50287,0 -0.79023,0.39062 -0.28736,0.38614 -0.28736,1.0731 v 2.47397 h -1.6074 v -5.02875 h 1.6074 v 0.73635 q 0.36369,-0.44002 0.77227,-0.64655 0.40859,-0.21103 0.90249,-0.21103 0.87105,0 1.32004,0.5343 0.45349,0.53431 0.45349,1.55353 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17546"
inkscape:connector-curvature="0" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-18"
transform="matrix(-0.20860782,0.04123404,-0.07230213,-0.28832283,315.8266,93.86567)"
inkscape:transform-center-x="-21.783018"
inkscape:transform-center-y="0.51431683">
<path
style="stroke:#008000;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-9"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#008000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-6"
d="M -55.760681,120.82766 C 133.49988,81.736335 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1-4"
transform="matrix(0.08658477,0.19421779,0.27726191,-0.10716106,238.59774,60.19615)"
inkscape:transform-center-x="11.98762"
inkscape:transform-center-y="-18.113512">
<path
style="stroke:#008000;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7-3"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#008000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5-3"
d="M -107.41018,126.53967 C 81.850379,87.448343 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1-9-3"
transform="matrix(0.00552918,0.2125721,0.29716059,0.00729643,217.68921,70.251798)"
inkscape:transform-center-x="5.6677835"
inkscape:transform-center-y="-21.372578">
<path
style="stroke:#008000;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7-6-8"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#008000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5-2-6"
d="M -157.3255,134.14155 C 31.935057,95.050227 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1-9-1-0"
transform="matrix(-0.15733681,0.14304753,-0.21082136,-0.20955193,334.98201,109.95511)"
inkscape:transform-center-x="-18.370272"
inkscape:transform-center-y="-11.697217">
<path
style="stroke:#008000;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7-6-7-4"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#008000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5-2-8-8"
d="M -140.57909,177.57704 C -16.707468,105.19011 160.78146,53.934721 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#ff8a88;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1"
transform="matrix(-0.08518194,-0.19483713,-0.27802748,0.10515883,404.68642,80.018929)"
inkscape:transform-center-x="-11.843669"
inkscape:transform-center-y="18.200393">
<path
style="stroke:#ff8a88;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#ff8a88;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5"
d="M -107.41018,126.53967 C 81.850379,87.448343 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g17441"
transform="matrix(1.1772283,0,0,1.1772283,14.305247,-11.2708)">
<g
transform="matrix(0.99635556,0,0,0.99635556,1.8907887,-259.65433)"
id="g2801-7-0-5-9">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-4"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-8"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Ord"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-3-0">
<path
d="m 272.09849,107.87166 q -0.79023,0 -1.22575,0.5837 -0.43553,0.58369 -0.43553,1.64332 0,1.05514 0.43553,1.63884 0.43552,0.58369 1.22575,0.58369 0.79473,0 1.23025,-0.58369 0.43553,-0.5837 0.43553,-1.63884 0,-1.05963 -0.43553,-1.64332 -0.43552,-0.5837 -1.23025,-0.5837 z m 0,-1.25269 q 1.61639,0 2.53234,0.92493 0.91595,0.92493 0.91595,2.55478 0,1.62537 -0.91595,2.5503 -0.91595,0.92493 -2.53234,0.92493 -1.61189,0 -2.53233,-0.92493 -0.91595,-0.92493 -0.91595,-2.5503 0,-1.62985 0.91595,-2.55478 0.92044,-0.92493 2.53233,-0.92493 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17524"
inkscape:connector-curvature="0" />
<path
d="m 280.51717,109.78439 q -0.21103,-0.0988 -0.42206,-0.14368 -0.20654,-0.0494 -0.41757,-0.0494 -0.61961,0 -0.95636,0.3996 -0.33225,0.39512 -0.33225,1.13596 v 2.31682 h -1.60741 v -5.02875 h 1.60741 v 0.82615 q 0.3098,-0.49389 0.70941,-0.71839 0.4041,-0.22899 0.96534,-0.22899 0.0808,0 0.17511,0.009 0.0943,0.004 0.27389,0.0269 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17526"
inkscape:connector-curvature="0" />
<path
d="m 284.73773,109.1513 v -2.69397 h 1.61638 v 6.98637 h -1.61638 v -0.72737 q -0.33226,0.44451 -0.73187,0.65104 -0.3996,0.20654 -0.92493,0.20654 -0.92942,0 -1.52658,-0.73635 -0.59717,-0.74084 -0.59717,-1.90374 0,-1.1629 0.59717,-1.89926 0.59716,-0.74084 1.52658,-0.74084 0.52084,0 0.92044,0.21103 0.4041,0.20654 0.73636,0.64655 z m -1.05963,3.25522 q 0.51634,0 0.78574,-0.37715 0.27389,-0.37716 0.27389,-1.09555 0,-0.7184 -0.27389,-1.09555 -0.2694,-0.37716 -0.78574,-0.37716 -0.51186,0 -0.78575,0.37716 -0.26939,0.37715 -0.26939,1.09555 0,0.71839 0.26939,1.09555 0.27389,0.37715 0.78575,0.37715 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17528"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g17649"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<g
transform="matrix(0.99635556,0,0,0.99635556,-27.028832,-333.3431)"
id="g2801-7-0">
<path
id="circle15601-9-4-6-3-9-4-6"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="circle15601-9-4-5-4-5-8"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
<g
id="text17012-7-3-0-9-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Set">
<path
id="path17513"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 245.05503,34.52635 v 1.418826 q -0.55226,-0.246947 -1.07759,-0.372666 -0.52532,-0.125719 -0.99228,-0.125719 -0.61961,0 -0.91595,0.170619 -0.29634,0.170618 -0.29634,0.529815 0,0.269397 0.19756,0.422056 0.20205,0.148168 0.72737,0.255927 l 0.73636,0.148169 q 1.118,0.224498 1.58944,0.682474 0.47145,0.457975 0.47145,1.302087 0,1.10902 -0.66003,1.652305 -0.65553,0.538795 -2.00701,0.538795 -0.63757,0 -1.27964,-0.121229 -0.64206,-0.121229 -1.28412,-0.359196 v -1.459237 q 0.64206,0.341237 1.23922,0.516345 0.60166,0.170619 1.15841,0.170619 0.56574,0 0.86657,-0.188578 0.30082,-0.188579 0.30082,-0.538795 0,-0.314298 -0.20654,-0.484916 -0.20204,-0.170618 -0.81268,-0.305317 l -0.669,-0.148169 q -1.00575,-0.215518 -1.47271,-0.686963 -0.46246,-0.471446 -0.46246,-1.270659 0,-1.00126 0.64655,-1.540055 0.64655,-0.538795 1.85884,-0.538795 0.55227,0 1.13596,0.08531 0.5837,0.08082 1.2078,0.246948 z"
inkscape:connector-curvature="0" />
<path
id="path17515"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 251.96059,38.490983 v 0.457976 h -3.7581 q 0.0584,0.565734 0.40859,0.848602 0.35022,0.282867 0.97881,0.282867 0.50736,0 1.03718,-0.148169 0.5343,-0.152658 1.09555,-0.457975 v 1.239228 q -0.57023,0.215518 -1.14045,0.323277 -0.57022,0.112249 -1.14045,0.112249 -1.36495,0 -2.12375,-0.691453 -0.75431,-0.695944 -0.75431,-1.948642 0,-1.230249 0.74084,-1.935172 0.74533,-0.704924 2.04742,-0.704924 1.18535,0 1.89476,0.713904 0.71391,0.713903 0.71391,1.908232 z m -1.65231,-0.534305 q 0,-0.457976 -0.2694,-0.736353 -0.2649,-0.282868 -0.69594,-0.282868 -0.46695,0 -0.7588,0.264908 -0.29185,0.260417 -0.36369,0.754313 z"
inkscape:connector-curvature="0" />
<path
id="path17517"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 254.93294,34.562269 v 1.427807 h 1.65679 v 1.149429 h -1.65679 v 2.132731 q 0,0.350216 0.13919,0.475935 0.13919,0.121229 0.55226,0.121229 h 0.82616 v 1.149429 h -1.37842 q -0.95187,0 -1.35148,-0.395116 -0.39512,-0.399606 -0.39512,-1.351477 v -2.132731 h -0.79921 v -1.149429 h 0.79921 v -1.427807 z"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -0,0 +1,236 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="free_functor_morphisms.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 94.75 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="595.3 : 94.75 : 1"
inkscape:persp3d-origin="297.65 : 63.166667 : 1"
id="perspective58884" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="2.8284271"
inkscape:cx="279.11059"
inkscape:cy="104.35475"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0"
showguides="false" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-236.92108,-423.55)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,147.41077,-418.48118)" />
<g
id="g2801-7-0-5"
transform="matrix(4.5296652,0,0,4.5296652,-1096.4512,-1597.3052)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="matrix(1.1772283,0,0,1.1772283,-24.258064,33.378651)"
id="text17012-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Mon">
<path
inkscape:connector-curvature="0"
id="path17542"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 172.07272,120.92641 h 2.20008 l 1.52658,3.58748 1.53557,-3.58748 h 2.19559 v 6.70351 h -1.63434 v -4.90303 l -1.54455,3.61441 h -1.09555 l -1.54455,-3.61441 v 4.90303 h -1.63883 z" />
<path
inkscape:connector-curvature="0"
id="path17544"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 183.54456,123.62937 q -0.5343,0 -0.81717,0.38613 -0.27838,0.38165 -0.27838,1.10453 0,0.72289 0.27838,1.10902 0.28287,0.38165 0.81717,0.38165 0.52533,0 0.8037,-0.38165 0.27838,-0.38613 0.27838,-1.10902 0,-0.72288 -0.27838,-1.10453 -0.27837,-0.38613 -0.8037,-0.38613 z m 0,-1.14943 q 1.2976,0 2.02497,0.70043 0.73187,0.70044 0.73187,1.93966 0,1.23923 -0.73187,1.93967 -0.72737,0.70043 -2.02497,0.70043 -1.30209,0 -2.03844,-0.70043 -0.73186,-0.70044 -0.73186,-1.93967 0,-1.23922 0.73186,-1.93966 0.73635,-0.70043 2.03844,-0.70043 z" />
<path
inkscape:connector-curvature="0"
id="path17546"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 192.52448,124.56777 v 3.06215 h -1.61639 v -0.49838 -1.84538 q 0,-0.65104 -0.0314,-0.89799 -0.0269,-0.24695 -0.0988,-0.36369 -0.0943,-0.15714 -0.25593,-0.24245 -0.16164,-0.0898 -0.36818,-0.0898 -0.50287,0 -0.79023,0.39062 -0.28736,0.38614 -0.28736,1.0731 v 2.47397 h -1.6074 v -5.02875 h 1.6074 v 0.73635 q 0.36369,-0.44002 0.77227,-0.64655 0.40859,-0.21103 0.90249,-0.21103 0.87105,0 1.32004,0.5343 0.45349,0.53431 0.45349,1.55353 z" />
</g>
<g
id="g2801-7-0-5-9"
transform="matrix(4.5296652,0,0,4.5296652,-902.91259,-1598.5233)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g17649"
transform="matrix(1.1772283,0,0,1.1772283,-44.495501,153.10568)">
<g
id="text17012-7-3-0-9-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Set"
transform="translate(123.5954,-18.263237)">
<path
id="path17513"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 245.05503,34.52635 v 1.418826 q -0.55226,-0.246947 -1.07759,-0.372666 -0.52532,-0.125719 -0.99228,-0.125719 -0.61961,0 -0.91595,0.170619 -0.29634,0.170618 -0.29634,0.529815 0,0.269397 0.19756,0.422056 0.20205,0.148168 0.72737,0.255927 l 0.73636,0.148169 q 1.118,0.224498 1.58944,0.682474 0.47145,0.457975 0.47145,1.302087 0,1.10902 -0.66003,1.652305 -0.65553,0.538795 -2.00701,0.538795 -0.63757,0 -1.27964,-0.121229 -0.64206,-0.121229 -1.28412,-0.359196 v -1.459237 q 0.64206,0.341237 1.23922,0.516345 0.60166,0.170619 1.15841,0.170619 0.56574,0 0.86657,-0.188578 0.30082,-0.188579 0.30082,-0.538795 0,-0.314298 -0.20654,-0.484916 -0.20204,-0.170618 -0.81268,-0.305317 l -0.669,-0.148169 q -1.00575,-0.215518 -1.47271,-0.686963 -0.46246,-0.471446 -0.46246,-1.270659 0,-1.00126 0.64655,-1.540055 0.64655,-0.538795 1.85884,-0.538795 0.55227,0 1.13596,0.08531 0.5837,0.08082 1.2078,0.246948 z"
inkscape:connector-curvature="0" />
<path
id="path17515"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 251.96059,38.490983 v 0.457976 h -3.7581 q 0.0584,0.565734 0.40859,0.848602 0.35022,0.282867 0.97881,0.282867 0.50736,0 1.03718,-0.148169 0.5343,-0.152658 1.09555,-0.457975 v 1.239228 q -0.57023,0.215518 -1.14045,0.323277 -0.57022,0.112249 -1.14045,0.112249 -1.36495,0 -2.12375,-0.691453 -0.75431,-0.695944 -0.75431,-1.948642 0,-1.230249 0.74084,-1.935172 0.74533,-0.704924 2.04742,-0.704924 1.18535,0 1.89476,0.713904 0.71391,0.713903 0.71391,1.908232 z m -1.65231,-0.534305 q 0,-0.457976 -0.2694,-0.736353 -0.2649,-0.282868 -0.69594,-0.282868 -0.46695,0 -0.7588,0.264908 -0.29185,0.260417 -0.36369,0.754313 z"
inkscape:connector-curvature="0" />
<path
id="path17517"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 254.93294,34.562269 v 1.427807 h 1.65679 v 1.149429 h -1.65679 v 2.132731 q 0,0.350216 0.13919,0.475935 0.13919,0.121229 0.55226,0.121229 h 0.82616 v 1.149429 h -1.37842 q -0.95187,0 -1.35148,-0.395116 -0.39512,-0.399606 -0.39512,-1.351477 v -2.132731 h -0.79921 v -1.149429 h 0.79921 v -1.427807 z"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g42748-4"
transform="matrix(1.3827459,0,0,1.3827459,-41.503924,-565.98163)" />
<g
id="g42748-8-6"
transform="matrix(1.3827459,0,0,1.3827459,284.96788,-561.67591)" />
<g
style="display:inline;fill:#333333;fill-opacity:0;stroke:#4d4d4d;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5"
transform="matrix(0.05315575,0.19641425,-0.26747091,0.0784447,551.86464,-132.40459)"
inkscape:transform-center-x="-7.0226614"
inkscape:transform-center-y="-7.2332895">
<path
sodipodi:nodetypes="cccc"
style="fill:#333333;fill-opacity:0;stroke:#4d4d4d;stroke-width:26.32975006;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9"
d="m 311.7448,240.45647 c 8.11294,-3.41141 16.57046,-6.46929 25.25179,-9.35287 -7.07057,-5.29796 -14.54894,-10.38208 -22.43606,-15.25441 -0.95382,8.59475 -1.28108,15.33726 -2.81573,24.60728 z" />
<path
style="fill:#333333;fill-opacity:0;stroke:#4d4d4d;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8"
d="M 128.62603,271.86364 C 178.5642,232.1657 229.08539,211.58522 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
transform="matrix(0.82950849,0,0,0.82950849,114.62722,226.22459)"
id="g49860-3">
<circle
style="fill:#cccccc;fill-opacity:1;stroke:#808285;stroke-width:3;stroke-miterlimit:10;stroke-dasharray:none"
stroke-miterlimit="10"
cx="333"
cy="-160"
r="46.896709"
id="circle13556-1" />
</g>
<g
id="g49860"
transform="matrix(0.82950849,0,0,0.79610881,-64.45303,261.17641)">
<circle
style="fill:#aafff0;fill-opacity:1;stroke:#808285;stroke-width:3;stroke-miterlimit:10;stroke-dasharray:none"
stroke-miterlimit="10"
cx="333"
cy="-160"
r="46.896709"
id="circle13556" />
<g
transform="matrix(1.5902176,0,0,1.5902176,81.435098,-167.4213)"
id="g15663-0">
<path
inkscape:connector-curvature="0"
id="path15620-4-6"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.29601669px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10029805"
d="m 169.5189,18.865209 -7.09177,3.717803 7.09177,3.739295 -1.63326,3.030117 -7.15624,-3.954195 v 7.392626 h -3.65333 v -7.392626 l -7.17772,3.954195 -1.63326,-3.030117 7.17773,-3.739295 -7.17773,-3.717803 1.63326,-3.03012 7.17772,3.911218 v -7.392628 h 3.65333 v 7.392628 l 7.15624,-3.911218 z" />
<path
inkscape:connector-curvature="0"
id="path15620-2"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.29601669px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#0077aa;fill-opacity:1;stroke:none;stroke-width:0.80740041"
d="m 166.79554,19.837071 -5.20395,2.72813 5.20395,2.7439 -1.19849,2.223505 -5.25126,-2.901595 v 5.424721 h -2.68082 v -5.424721 l -5.26702,2.901595 -1.19849,-2.223505 5.26703,-2.7439 -5.26703,-2.72813 1.19849,-2.223506 5.26702,2.870057 v -5.424723 h 2.68082 v 5.424723 l 5.25126,-2.870057 z" />
</g>
<g
transform="translate(113.40084,0.83565418)"
id="g49211-9">
<g
aria-label=" "
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="text36730-2-9"
transform="matrix(1.5144005,0,0,1.5144005,-164.10127,75.835492)">
<path
d="m 247.39844,-177.31641 13.02734,24.47266 H 264 l -13.02734,-24.47266 z m -4.72657,-2.34375 h 9.72657 l 14.0625,26.46485 v -26.46485 h 2.34375 V -150.5 H 259 l -13.98438,-26.30859 V -150.5 h -2.34375 z"
id="path36732-4-0"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
</g>
<g
aria-label=" "
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none"
id="text36730-8"
transform="matrix(1.5144005,0,0,1.5144005,-167.65065,71.753713)">
<path
d="m 247.39844,-177.31641 13.02734,24.47266 H 264 l -13.02734,-24.47266 z m -4.72657,-2.34375 h 9.72657 l 14.0625,26.46485 v -26.46485 h 2.34375 V -150.5 H 259 l -13.98438,-26.30859 V -150.5 h -2.34375 z"
id="path36732-1"
inkscape:connector-curvature="0"
style="fill:#4d4d4d" />
</g>
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1-9-3"
transform="matrix(-0.33343593,0.02415023,0.0296592,0.29665553,294.59232,-168.90869)"
inkscape:transform-center-x="-33.014074"
inkscape:transform-center-y="-7.5550157">
<path
style="stroke:#008000;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7-6-8"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#008000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5-2-6"
d="M -157.3255,134.14155 C 31.935057,95.050227 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,411 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="free_functor_objects.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="301.53794"
inkscape:cy="173.3032"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0"
showguides="false" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-204.42108,87.95)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,179.91077,93.01882)" />
<g
id="g2801-7-0-5"
transform="matrix(4.5296652,0,0,4.5296652,-1147.4512,-1598.3052)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="matrix(1.1772283,0,0,1.1772283,-72.495501,27.60568)"
id="text17012-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Mon">
<path
inkscape:connector-curvature="0"
id="path17542"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 172.07272,120.92641 h 2.20008 l 1.52658,3.58748 1.53557,-3.58748 h 2.19559 v 6.70351 h -1.63434 v -4.90303 l -1.54455,3.61441 h -1.09555 l -1.54455,-3.61441 v 4.90303 h -1.63883 z" />
<path
inkscape:connector-curvature="0"
id="path17544"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 183.54456,123.62937 q -0.5343,0 -0.81717,0.38613 -0.27838,0.38165 -0.27838,1.10453 0,0.72289 0.27838,1.10902 0.28287,0.38165 0.81717,0.38165 0.52533,0 0.8037,-0.38165 0.27838,-0.38613 0.27838,-1.10902 0,-0.72288 -0.27838,-1.10453 -0.27837,-0.38613 -0.8037,-0.38613 z m 0,-1.14943 q 1.2976,0 2.02497,0.70043 0.73187,0.70044 0.73187,1.93966 0,1.23923 -0.73187,1.93967 -0.72737,0.70043 -2.02497,0.70043 -1.30209,0 -2.03844,-0.70043 -0.73186,-0.70044 -0.73186,-1.93967 0,-1.23922 0.73186,-1.93966 0.73635,-0.70043 2.03844,-0.70043 z" />
<path
inkscape:connector-curvature="0"
id="path17546"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 192.52448,124.56777 v 3.06215 h -1.61639 v -0.49838 -1.84538 q 0,-0.65104 -0.0314,-0.89799 -0.0269,-0.24695 -0.0988,-0.36369 -0.0943,-0.15714 -0.25593,-0.24245 -0.16164,-0.0898 -0.36818,-0.0898 -0.50287,0 -0.79023,0.39062 -0.28736,0.38614 -0.28736,1.0731 v 2.47397 h -1.6074 v -5.02875 h 1.6074 v 0.73635 q 0.36369,-0.44002 0.77227,-0.64655 0.40859,-0.21103 0.90249,-0.21103 0.87105,0 1.32004,0.5343 0.45349,0.53431 0.45349,1.55353 z" />
</g>
<g
id="g2801-7-0-5-9"
transform="matrix(4.5296652,0,0,4.5296652,-847.91259,-1593.5233)">
<path
inkscape:connector-curvature="0"
id="circle15601-9-4-5-4-5-8-7-7"
d="m 305.51733,373.43228 a 20.416225,20.416225 0 0 1 -20.41621,20.41621 20.416225,20.416225 0 0 1 -20.41623,-20.41621 20.416225,20.416225 0 0 1 20.41623,-20.41623 20.416225,20.416225 0 0 1 20.41621,20.41623 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:0;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g17649"
transform="matrix(1.1772283,0,0,1.1772283,10.504499,158.10568)">
<g
id="text17012-7-3-0-9-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Set"
transform="translate(123.5954,-18.263237)">
<path
id="path17513"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 245.05503,34.52635 v 1.418826 q -0.55226,-0.246947 -1.07759,-0.372666 -0.52532,-0.125719 -0.99228,-0.125719 -0.61961,0 -0.91595,0.170619 -0.29634,0.170618 -0.29634,0.529815 0,0.269397 0.19756,0.422056 0.20205,0.148168 0.72737,0.255927 l 0.73636,0.148169 q 1.118,0.224498 1.58944,0.682474 0.47145,0.457975 0.47145,1.302087 0,1.10902 -0.66003,1.652305 -0.65553,0.538795 -2.00701,0.538795 -0.63757,0 -1.27964,-0.121229 -0.64206,-0.121229 -1.28412,-0.359196 v -1.459237 q 0.64206,0.341237 1.23922,0.516345 0.60166,0.170619 1.15841,0.170619 0.56574,0 0.86657,-0.188578 0.30082,-0.188579 0.30082,-0.538795 0,-0.314298 -0.20654,-0.484916 -0.20204,-0.170618 -0.81268,-0.305317 l -0.669,-0.148169 q -1.00575,-0.215518 -1.47271,-0.686963 -0.46246,-0.471446 -0.46246,-1.270659 0,-1.00126 0.64655,-1.540055 0.64655,-0.538795 1.85884,-0.538795 0.55227,0 1.13596,0.08531 0.5837,0.08082 1.2078,0.246948 z"
inkscape:connector-curvature="0" />
<path
id="path17515"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 251.96059,38.490983 v 0.457976 h -3.7581 q 0.0584,0.565734 0.40859,0.848602 0.35022,0.282867 0.97881,0.282867 0.50736,0 1.03718,-0.148169 0.5343,-0.152658 1.09555,-0.457975 v 1.239228 q -0.57023,0.215518 -1.14045,0.323277 -0.57022,0.112249 -1.14045,0.112249 -1.36495,0 -2.12375,-0.691453 -0.75431,-0.695944 -0.75431,-1.948642 0,-1.230249 0.74084,-1.935172 0.74533,-0.704924 2.04742,-0.704924 1.18535,0 1.89476,0.713904 0.71391,0.713903 0.71391,1.908232 z m -1.65231,-0.534305 q 0,-0.457976 -0.2694,-0.736353 -0.2649,-0.282868 -0.69594,-0.282868 -0.46695,0 -0.7588,0.264908 -0.29185,0.260417 -0.36369,0.754313 z"
inkscape:connector-curvature="0" />
<path
id="path17517"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 254.93294,34.562269 v 1.427807 h 1.65679 v 1.149429 h -1.65679 v 2.132731 q 0,0.350216 0.13919,0.475935 0.13919,0.121229 0.55226,0.121229 h 0.82616 v 1.149429 h -1.37842 q -0.95187,0 -1.35148,-0.395116 -0.39512,-0.399606 -0.39512,-1.351477 v -2.132731 h -0.79921 v -1.149429 h 0.79921 v -1.427807 z"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g42748-4"
transform="matrix(1.3827459,0,0,1.3827459,-9.003924,-54.48163)" />
<g
id="g42748-8-6"
transform="matrix(1.3827459,0,0,1.3827459,317.46788,-50.17591)" />
<circle
id="circle13556-6"
r="72.23513"
cy="98.354828"
cx="439.7724"
stroke-miterlimit="10"
style="fill:#dddddd;fill-opacity:1;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<circle
id="circle13552-4"
r="72.23513"
cy="90.900055"
cx="143.3035"
stroke-miterlimit="10"
style="fill:#ffccaa;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<g
id="g60465-7"
transform="matrix(0.66940259,0,0,0.66940259,-13.24412,224.35638)">
<circle
r="29.954245"
cy="-270.5"
cx="213.25"
id="path60354-9-4"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<circle
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:3.347013;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
id="path60354-8"
cx="103.44256"
cy="113.14091"
r="20.051449"
transform="rotate(2.160128)" />
<g
id="g60465-3"
transform="matrix(0.66940259,0,0,0.66940259,-36.7576,259.23512)">
<circle
r="29.954245"
cy="-277.96936"
cx="199.05824"
id="path60354-9-8"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
id="g66262"
transform="matrix(0.86374085,0.03257963,-0.03257963,0.86374085,-93.03325,183.02381)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
id="g66242-3"
transform="matrix(0.86435507,0,0,0.86435507,18.28574,120.89212)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-7"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-7"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g60465-3-6-2"
transform="matrix(0.66940259,0,0,0.66940259,24.23935,269.98729)">
<circle
r="29.954245"
cy="-277.96936"
cx="199.05824"
id="path60354-9-8-5-6"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
id="g66262-5"
transform="matrix(0.86374085,0.03257963,-0.03257963,0.86374085,-25.16678,149.35194)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-8"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-7"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
style="display:inline;fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-2"
transform="matrix(-0.1734662,0.01438504,0.01471521,0.23798371,198.40607,-25.15826)"
inkscape:transform-center-x="-107.96707"
inkscape:transform-center-y="13.013472">
<path
sodipodi:nodetypes="cccc"
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:19.8691597;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-4"
d="m 311.94158,238.23518 c 7.97334,-1.83558 16.30428,-3.46468 24.8654,-4.99124 -7.26349,-3.12038 -14.92614,-6.12431 -22.98899,-9.01298 -0.62577,4.89175 -0.69619,8.73507 -1.87641,14.00422 z" />
<path
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-7"
d="M -1295.4233,381.77263 C -866.96413,172.93484 -222.14313,139.02443 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-5"
transform="matrix(-0.17404283,0.00255841,-0.0014985,0.23843351,231.24679,21.31101)"
inkscape:transform-center-x="-106.14867"
inkscape:transform-center-y="23.979108">
<path
sodipodi:nodetypes="cccc"
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:19.8691597;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-8"
d="m 311.94158,238.23518 c 7.97334,-1.83558 16.30428,-3.46468 24.8654,-4.99124 -7.26349,-3.12038 -14.92614,-6.12431 -22.98899,-9.01298 -0.62577,4.89175 -0.69619,8.73507 -1.87641,14.00422 z" />
<path
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-2"
d="M -1240.8012,298.81344 C -664.36687,126.94112 -222.14313,139.02443 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<g
id="g60465-3-6"
transform="matrix(0.66940259,0,0,0.66940259,5.2393498,317.48729)">
<circle
r="29.954245"
cy="-277.96936"
cx="199.05824"
id="path60354-9-8-5"
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<g
id="g66242-0"
transform="matrix(0.86374085,0.03257963,-0.03257963,0.86374085,-3.8388502,190.498)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365-4"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379-76"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66246-7-4-2-7"
transform="matrix(0.90331157,0,0,0.90331157,41.948754,188.22732)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-0"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-86"
cy="-63.541103"
cx="106.41364" />
</g>
<g
style="display:inline;fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-5-9"
transform="matrix(-0.17338707,0.01530939,0.01598342,0.2379019,207.83491,64.59254)"
inkscape:transform-center-x="-108.18044"
inkscape:transform-center-y="11.862974">
<path
sodipodi:nodetypes="cccc"
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:19.8691597;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-9-3"
d="m 311.94158,238.23518 c 7.97334,-1.83558 16.30428,-3.46468 24.8654,-4.99124 -7.26349,-3.12038 -14.92614,-6.12431 -22.98899,-9.01298 -0.62577,4.89175 -0.69619,8.73507 -1.87641,14.00422 z" />
<path
style="fill:#ffff00;fill-opacity:0;stroke:#60ff41;stroke-width:9.11184883;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-8-9"
d="M -1252.2314,337.35963 C -774.58839,186.35002 -222.14313,139.02443 309.369,229.13243"
sodipodi:nodetypes="cc" />
</g>
<circle
style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke:#333333;stroke-width:3.347013;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
id="path60354-90"
cx="188.54663"
cy="113.91388"
r="20.051449" />
<g
id="g66246-7-4-2-6"
transform="matrix(0.86435507,0,0,0.86435507,106.8904,168.64683)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6-8"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4-7"
cy="-63.541103"
cx="106.41364" />
</g>
<g
id="g66262-3"
transform="matrix(0.86435507,0,0,0.86435507,-1.2144602,187.42336)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-3"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-3"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
id="g66242"
transform="matrix(1.3963698,0,0,1.3963698,250.41249,173.52977)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3365"
r="10.394309"
cy="-87.105354"
cx="130.30402" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3379"
r="10.394309"
cy="-90.570122"
cx="128.27586" />
</g>
<g
id="g66262-9"
transform="matrix(1.3963698,0,0,1.3963698,169.58006,208.70661)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3367-0"
r="10.394309"
cy="-81.908195"
cx="209.90921" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3381-2"
r="10.394309"
cy="-85.372963"
cx="207.88106" />
</g>
<g
id="g66246-7-4-2"
transform="matrix(1.3963698,0,0,1.3963698,293.9589,215.45207)">
<circle
style="opacity:0.12999998;stroke:#000000;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3369-3-8-6"
r="10.394309"
cy="-60.034081"
cx="108.4418" />
<circle
r="10.394309"
style="fill:#d71920;stroke:#be1e2d;stroke-width:2.53519726;stroke-miterlimit:10"
id="circle3383-1-5-4"
cy="-63.541103"
cx="106.41364" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,343 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="free_functors.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="4"
inkscape:cx="280.54245"
inkscape:cy="28.891976"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-222.92108,-424.05)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,161.41077,-418.98118)" />
<g
style="display:inline;fill:#dddddd;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3-5-7-2"
transform="matrix(0.19454036,0.08585755,-0.10612299,0.27766089,238.20167,60.553559)"
inkscape:transform-center-x="2.519953"
inkscape:transform-center-y="-14.025222">
<path
style="stroke:#008000;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#008000;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g2801-7-0-5-9-8"
transform="matrix(1.172938,0,0,1.172938,-115.49,-392.62684)">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-4-5"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-8-0"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Top"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-3-0-9"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<path
d="m 166.40327,51.450026 h 6.17818 v 1.306578 h -2.22253 v 5.39693 h -1.72863 v -5.39693 h -2.22702 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17506"
inkscape:connector-curvature="0" />
<path
d="m 174.57499,54.152981 q -0.5343,0 -0.81717,0.386137 -0.27838,0.381646 -0.27838,1.104529 0,0.722884 0.27838,1.10902 0.28287,0.381646 0.81717,0.381646 0.52533,0 0.8037,-0.381646 0.27838,-0.386136 0.27838,-1.10902 0,-0.722883 -0.27838,-1.104529 -0.27837,-0.386137 -0.8037,-0.386137 z m 0,-1.149429 q 1.2976,0 2.02497,0.700433 0.73187,0.700434 0.73187,1.939662 0,1.239229 -0.73187,1.939662 -0.72737,0.700434 -2.02497,0.700434 -1.30209,0 -2.03844,-0.700434 -0.73186,-0.700433 -0.73186,-1.939662 0,-1.239228 0.73186,-1.939662 0.73635,-0.700433 2.03844,-0.700433 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17508"
inkscape:connector-curvature="0" />
<path
d="m 180.10662,57.426161 v 2.640095 h -1.60741 v -6.941475 h 1.60741 v 0.736353 q 0.33226,-0.440016 0.73635,-0.646554 0.4041,-0.211028 0.92942,-0.211028 0.92943,0 1.52659,0.740843 0.59716,0.736353 0.59716,1.899252 0,1.162899 -0.59716,1.903743 -0.59716,0.736353 -1.52659,0.736353 -0.52532,0 -0.92942,-0.206538 -0.40409,-0.211028 -0.73635,-0.651044 z m 1.06861,-3.25522 q -0.51635,0 -0.79472,0.381646 -0.27389,0.377157 -0.27389,1.09106 0,0.713904 0.27389,1.09555 0.27837,0.377157 0.79472,0.377157 0.51635,0 0.78574,-0.377157 0.27389,-0.377156 0.27389,-1.09555 0,-0.718393 -0.27389,-1.09555 -0.26939,-0.377156 -0.78574,-0.377156 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17510"
inkscape:connector-curvature="0" />
</g>
<g
id="g17434"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<g
transform="matrix(0.99635556,0,0,0.99635556,-26.222858,-214.98487)"
id="g2801-7-0-5-3">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-6"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-5"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Grp"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-6">
<path
d="m 247.75762,158.99366 q -0.64655,0.3143 -1.3425,0.47145 -0.69594,0.15715 -1.43678,0.15715 -1.67476,0 -2.65357,-0.93391 -0.97881,-0.9384 -0.97881,-2.54132 0,-1.62087 0.99677,-2.5503 0.99677,-0.92942 2.7299,-0.92942 0.669,0 1.27963,0.12572 0.61513,0.12572 1.15841,0.37267 v 1.3874 q -0.56124,-0.31879 -1.118,-0.47594 -0.55226,-0.15715 -1.10902,-0.15715 -1.03269,0 -1.59393,0.57921 -0.55676,0.57471 -0.55676,1.64781 0,1.06412 0.5388,1.64333 0.53879,0.5792 1.53108,0.5792 0.26939,0 0.49838,-0.0314 0.23348,-0.0359 0.41757,-0.10776 v -1.30209 h -1.05514 v -1.15841 h 2.69397 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17533"
inkscape:connector-curvature="0" />
<path
d="m 252.94352,155.83273 q -0.21102,-0.0988 -0.42205,-0.14367 -0.20654,-0.0494 -0.41757,-0.0494 -0.61961,0 -0.95636,0.3996 -0.33226,0.39512 -0.33226,1.13596 v 2.31682 h -1.6074 v -5.02875 h 1.6074 v 0.82615 q 0.30981,-0.4939 0.70942,-0.71839 0.40409,-0.22899 0.96534,-0.22899 0.0808,0 0.17511,0.009 0.0943,0.004 0.27388,0.0269 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17535"
inkscape:connector-curvature="0" />
<path
d="m 255.35014,158.76468 v 2.64009 h -1.6074 v -6.94147 h 1.6074 v 0.73635 q 0.33226,-0.44002 0.73635,-0.64655 0.4041,-0.21103 0.92943,-0.21103 0.92942,0 1.52658,0.74084 0.59717,0.73635 0.59717,1.89925 0,1.1629 -0.59717,1.90375 -0.59716,0.73635 -1.52658,0.73635 -0.52533,0 -0.92943,-0.20654 -0.40409,-0.21103 -0.73635,-0.65104 z m 1.06861,-3.25522 q -0.51634,0 -0.79472,0.38164 -0.27389,0.37716 -0.27389,1.09106 0,0.71391 0.27389,1.09555 0.27838,0.37716 0.79472,0.37716 0.51635,0 0.78574,-0.37716 0.27389,-0.37715 0.27389,-1.09555 0,-0.71839 -0.27389,-1.09555 -0.26939,-0.37715 -0.78574,-0.37715 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17537"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g17427"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<g
transform="matrix(0.99635556,0,0,0.99635556,-91.821363,-246.847)"
id="g2801-7-0-5">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Mon"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7">
<path
d="m 172.07272,120.92641 h 2.20008 l 1.52658,3.58748 1.53557,-3.58748 h 2.19559 v 6.70351 h -1.63434 v -4.90303 l -1.54455,3.61441 h -1.09555 l -1.54455,-3.61441 v 4.90303 h -1.63883 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17542"
inkscape:connector-curvature="0" />
<path
d="m 183.54456,123.62937 q -0.5343,0 -0.81717,0.38613 -0.27838,0.38165 -0.27838,1.10453 0,0.72289 0.27838,1.10902 0.28287,0.38165 0.81717,0.38165 0.52533,0 0.8037,-0.38165 0.27838,-0.38613 0.27838,-1.10902 0,-0.72288 -0.27838,-1.10453 -0.27837,-0.38613 -0.8037,-0.38613 z m 0,-1.14943 q 1.2976,0 2.02497,0.70043 0.73187,0.70044 0.73187,1.93966 0,1.23923 -0.73187,1.93967 -0.72737,0.70043 -2.02497,0.70043 -1.30209,0 -2.03844,-0.70043 -0.73186,-0.70044 -0.73186,-1.93967 0,-1.23922 0.73186,-1.93966 0.73635,-0.70043 2.03844,-0.70043 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17544"
inkscape:connector-curvature="0" />
<path
d="m 192.52448,124.56777 v 3.06215 h -1.61639 v -0.49838 -1.84538 q 0,-0.65104 -0.0314,-0.89799 -0.0269,-0.24695 -0.0988,-0.36369 -0.0943,-0.15714 -0.25593,-0.24245 -0.16164,-0.0898 -0.36818,-0.0898 -0.50287,0 -0.79023,0.39062 -0.28736,0.38614 -0.28736,1.0731 v 2.47397 h -1.6074 v -5.02875 h 1.6074 v 0.73635 q 0.36369,-0.44002 0.77227,-0.64655 0.40859,-0.21103 0.90249,-0.21103 0.87105,0 1.32004,0.5343 0.45349,0.53431 0.45349,1.55353 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17546"
inkscape:connector-curvature="0" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-18"
transform="matrix(-0.20860782,0.04123404,-0.07230213,-0.28832283,315.8266,93.86567)"
inkscape:transform-center-x="-21.783018"
inkscape:transform-center-y="0.51431683">
<path
style="stroke:#008000;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-9"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#008000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-6"
d="M -55.760681,120.82766 C 133.49988,81.736335 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1-4"
transform="matrix(0.08658477,0.19421779,0.27726191,-0.10716106,238.59774,60.19615)"
inkscape:transform-center-x="11.98762"
inkscape:transform-center-y="-18.113512">
<path
style="stroke:#008000;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7-3"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#008000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5-3"
d="M -107.41018,126.53967 C 81.850379,87.448343 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1-9-3"
transform="matrix(0.00552918,0.2125721,0.29716059,0.00729643,217.68921,70.251798)"
inkscape:transform-center-x="5.6677835"
inkscape:transform-center-y="-21.372578">
<path
style="stroke:#008000;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7-6-8"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#008000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5-2-6"
d="M -157.3255,134.14155 C 31.935057,95.050227 158.79812,83.706059 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#008000;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-5-7-2-1-9-1-9-1-0"
transform="matrix(-0.15733681,0.14304753,-0.21082136,-0.20955193,334.98201,109.95511)"
inkscape:transform-center-x="-18.370272"
inkscape:transform-center-y="-11.697217">
<path
style="stroke:#008000;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-2-7-6-7-4"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#008000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-6-5-2-8-8"
d="M -140.57909,177.57704 C -16.707468,105.19011 160.78146,53.934721 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g17441"
transform="matrix(1.1772283,0,0,1.1772283,14.305247,-11.2708)">
<g
transform="matrix(0.99635556,0,0,0.99635556,1.8907887,-259.65433)"
id="g2801-7-0-5-9">
<path
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
id="circle15601-9-4-6-3-9-4-6-9-4"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
id="circle15601-9-4-5-4-5-8-7-8"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Ord"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
id="text17012-7-3-0">
<path
d="m 272.09849,107.87166 q -0.79023,0 -1.22575,0.5837 -0.43553,0.58369 -0.43553,1.64332 0,1.05514 0.43553,1.63884 0.43552,0.58369 1.22575,0.58369 0.79473,0 1.23025,-0.58369 0.43553,-0.5837 0.43553,-1.63884 0,-1.05963 -0.43553,-1.64332 -0.43552,-0.5837 -1.23025,-0.5837 z m 0,-1.25269 q 1.61639,0 2.53234,0.92493 0.91595,0.92493 0.91595,2.55478 0,1.62537 -0.91595,2.5503 -0.91595,0.92493 -2.53234,0.92493 -1.61189,0 -2.53233,-0.92493 -0.91595,-0.92493 -0.91595,-2.5503 0,-1.62985 0.91595,-2.55478 0.92044,-0.92493 2.53233,-0.92493 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17524"
inkscape:connector-curvature="0" />
<path
d="m 280.51717,109.78439 q -0.21103,-0.0988 -0.42206,-0.14368 -0.20654,-0.0494 -0.41757,-0.0494 -0.61961,0 -0.95636,0.3996 -0.33225,0.39512 -0.33225,1.13596 v 2.31682 h -1.60741 v -5.02875 h 1.60741 v 0.82615 q 0.3098,-0.49389 0.70941,-0.71839 0.4041,-0.22899 0.96534,-0.22899 0.0808,0 0.17511,0.009 0.0943,0.004 0.27389,0.0269 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17526"
inkscape:connector-curvature="0" />
<path
d="m 284.73773,109.1513 v -2.69397 h 1.61638 v 6.98637 h -1.61638 v -0.72737 q -0.33226,0.44451 -0.73187,0.65104 -0.3996,0.20654 -0.92493,0.20654 -0.92942,0 -1.52658,-0.73635 -0.59717,-0.74084 -0.59717,-1.90374 0,-1.1629 0.59717,-1.89926 0.59716,-0.74084 1.52658,-0.74084 0.52084,0 0.92044,0.21103 0.4041,0.20654 0.73636,0.64655 z m -1.05963,3.25522 q 0.51634,0 0.78574,-0.37715 0.27389,-0.37716 0.27389,-1.09555 0,-0.7184 -0.27389,-1.09555 -0.2694,-0.37716 -0.78574,-0.37716 -0.51186,0 -0.78575,0.37716 -0.26939,0.37715 -0.26939,1.09555 0,0.71839 0.26939,1.09555 0.27389,0.37715 0.78575,0.37715 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
id="path17528"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g17649"
transform="matrix(1.1772283,0,0,1.1772283,4.004499,-20.394319)">
<g
transform="matrix(0.99635556,0,0,0.99635556,-27.028832,-333.3431)"
id="g2801-7-0">
<path
id="circle15601-9-4-6-3-9-4-6"
d="m 298.23086,375.31146 a 18.248224,18.248224 0 0 1 -18.24822,18.24823 18.248224,18.248224 0 0 1 -18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24822,18.24822 z"
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.31707907;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="circle15601-9-4-5-4-5-8"
d="m 294.53939,372.78882 a 18.248224,18.248224 0 0 1 -18.24822,18.24822 18.248224,18.248224 0 0 1 -18.24823,-18.24822 18.248224,18.248224 0 0 1 18.24823,-18.24823 18.248224,18.248224 0 0 1 18.24822,18.24823 z"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:1.51181102;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
<g
id="text17012-7-3-0-9-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.19543457px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.22988585"
aria-label="Set">
<path
id="path17513"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 245.05503,34.52635 v 1.418826 q -0.55226,-0.246947 -1.07759,-0.372666 -0.52532,-0.125719 -0.99228,-0.125719 -0.61961,0 -0.91595,0.170619 -0.29634,0.170618 -0.29634,0.529815 0,0.269397 0.19756,0.422056 0.20205,0.148168 0.72737,0.255927 l 0.73636,0.148169 q 1.118,0.224498 1.58944,0.682474 0.47145,0.457975 0.47145,1.302087 0,1.10902 -0.66003,1.652305 -0.65553,0.538795 -2.00701,0.538795 -0.63757,0 -1.27964,-0.121229 -0.64206,-0.121229 -1.28412,-0.359196 v -1.459237 q 0.64206,0.341237 1.23922,0.516345 0.60166,0.170619 1.15841,0.170619 0.56574,0 0.86657,-0.188578 0.30082,-0.188579 0.30082,-0.538795 0,-0.314298 -0.20654,-0.484916 -0.20204,-0.170618 -0.81268,-0.305317 l -0.669,-0.148169 q -1.00575,-0.215518 -1.47271,-0.686963 -0.46246,-0.471446 -0.46246,-1.270659 0,-1.00126 0.64655,-1.540055 0.64655,-0.538795 1.85884,-0.538795 0.55227,0 1.13596,0.08531 0.5837,0.08082 1.2078,0.246948 z"
inkscape:connector-curvature="0" />
<path
id="path17515"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 251.96059,38.490983 v 0.457976 h -3.7581 q 0.0584,0.565734 0.40859,0.848602 0.35022,0.282867 0.97881,0.282867 0.50736,0 1.03718,-0.148169 0.5343,-0.152658 1.09555,-0.457975 v 1.239228 q -0.57023,0.215518 -1.14045,0.323277 -0.57022,0.112249 -1.14045,0.112249 -1.36495,0 -2.12375,-0.691453 -0.75431,-0.695944 -0.75431,-1.948642 0,-1.230249 0.74084,-1.935172 0.74533,-0.704924 2.04742,-0.704924 1.18535,0 1.89476,0.713904 0.71391,0.713903 0.71391,1.908232 z m -1.65231,-0.534305 q 0,-0.457976 -0.2694,-0.736353 -0.2649,-0.282868 -0.69594,-0.282868 -0.46695,0 -0.7588,0.264908 -0.29185,0.260417 -0.36369,0.754313 z"
inkscape:connector-curvature="0" />
<path
id="path17517"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.22988585"
d="m 254.93294,34.562269 v 1.427807 h 1.65679 v 1.149429 h -1.65679 v 2.132731 q 0,0.350216 0.13919,0.475935 0.13919,0.121229 0.55226,0.121229 h 0.82616 v 1.149429 h -1.37842 q -0.95187,0 -1.35148,-0.395116 -0.39512,-0.399606 -0.39512,-1.351477 v -2.132731 h -0.79921 v -1.149429 h 0.79921 v -1.427807 z"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,178 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="generator_rotations.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="1.4142136"
inkscape:cx="358.7968"
inkscape:cy="211.48697"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0"
showguides="false" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-204.42108,87.95)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,179.91077,93.01882)" />
<g
id="g42748-4"
transform="matrix(1.3827459,0,0,1.3827459,-9.003924,-54.48163)" />
<g
id="g42748-8-6"
transform="matrix(1.3827459,0,0,1.3827459,317.46788,-50.17591)" />
<g
transform="translate(152.91578,-26.570394)"
style="display:inline"
id="g103824-6">
<g
transform="matrix(0.40718387,-0.01439391,0.01381353,0.41812007,42.752888,18.547245)"
id="g1482-7-0"
style="fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-6"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-6"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
id="text5016-15-4"
style="font-style:normal;font-weight:normal;font-size:10.43869972px;line-height:1.25;font-family:sans-serif;fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.260968"
aria-label="120° ">
<path
inkscape:connector-curvature="0"
id="path104148-6"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 138.86609,102.36001 h 1.73299 v -4.918631 l -1.77886,0.366986 v -1.33542 l 1.76867,-0.366985 h 1.86551 v 6.25405 h 1.73298 v 1.3558 h -5.32129 z" />
<path
inkscape:connector-curvature="0"
id="path104150-2"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 147.91331,102.27336 h 3.34874 v 1.44245 h -5.53027 v -1.44245 l 2.77788,-2.451672 q 0.37208,-0.336403 0.55048,-0.657515 0.17839,-0.321113 0.17839,-0.66771 0,-0.535187 -0.36189,-0.861397 -0.35679,-0.326209 -0.95314,-0.326209 -0.45873,0 -1.00411,0.198784 -0.54539,0.193686 -1.16722,0.58106 v -1.671823 q 0.66261,-0.219172 1.30993,-0.331306 0.64732,-0.117232 1.26916,-0.117232 1.366,0 2.12036,0.601449 0.75946,0.601448 0.75946,1.67692 0,0.621836 -0.32111,1.162121 -0.32112,0.535187 -1.35071,1.43736 z" />
<path
inkscape:connector-curvature="0"
id="path104152-8"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 156.97071,99.903241 q 0,-1.427166 -0.27014,-2.008227 -0.26504,-0.586157 -0.89708,-0.586157 -0.63203,0 -0.90217,0.586157 -0.27014,0.581061 -0.27014,2.008227 0,1.442459 0.27014,2.033709 0.27014,0.59126 0.90217,0.59126 0.62694,0 0.89708,-0.59126 0.27014,-0.59125 0.27014,-2.033709 z m 1.96236,0.01529 q 0,1.890999 -0.81553,2.920599 -0.81552,1.0245 -2.31405,1.0245 -1.50362,0 -2.31914,-1.0245 -0.81552,-1.0296 -0.81552,-2.920599 0,-1.896092 0.81552,-2.920593 0.81552,-1.029599 2.31914,-1.029599 1.49853,0 2.31405,1.029599 0.81553,1.024501 0.81553,2.920593 z" />
<path
inkscape:connector-curvature="0"
id="path104154-9"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 162.04225,96.722699 q -0.36699,0 -0.62184,0.254851 -0.25485,0.254852 -0.25485,0.621837 0,0.366986 0.24975,0.61674 0.25486,0.249754 0.62694,0.249754 0.36698,0 0.62183,-0.249754 0.25486,-0.254851 0.25486,-0.61674 0,-0.366985 -0.25995,-0.621837 -0.25485,-0.254851 -0.61674,-0.254851 z m 0,-0.825717 q 0.3364,0 0.64732,0.132522 0.31092,0.127426 0.55558,0.366986 0.23956,0.244657 0.36188,0.550478 0.12743,0.305822 0.12743,0.652419 0,0.3415 -0.12743,0.652419 -0.12232,0.305821 -0.35169,0.535187 -0.24466,0.244657 -0.56067,0.37718 -0.31602,0.127425 -0.66262,0.127425 -0.71868,0 -1.20799,-0.484217 -0.48422,-0.489314 -0.48422,-1.207994 0,-0.71868 0.48932,-1.207994 0.49441,-0.494411 1.21309,-0.494411 z" />
</g>
</g>
<g
id="g1779"
transform="matrix(1.0916186,0,0,1.0916186,-114.78565,-0.59632449)"
style="display:inline">
<path
inkscape:connector-curvature="0"
style="opacity:0.56999966;fill:#999999;stroke:#999999;stroke-width:4.1652298;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 362.20029,125.19115 317.64441,49.477028 274.92362,124.53029 Z"
id="path1725-3" />
<path
inkscape:connector-curvature="0"
style="fill:#f2f2f2;stroke:#999999;stroke-width:4.19999981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 355.89937,121.89718 311.47415,46.567704 265.59517,121.07803 Z"
id="path1725"
sodipodi:nodetypes="cccc" />
<path
inkscape:connector-curvature="0"
style="fill:#39bced;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 295.92425,75.92209 c 14.50749,11.166861 31.54584,1.6345 31.54584,1.6345 L 311.68378,50.551807 Z"
id="path1742"
sodipodi:nodetypes="cccc" />
<path
inkscape:connector-curvature="0"
style="fill:#d71920;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 337.27797,94.154603 c -18.13503,5.947447 -18.06093,25.877017 -18.06093,25.877017 l 33.05902,-0.33393 z"
id="path1742-6"
sodipodi:nodetypes="cccc" />
<path
inkscape:connector-curvature="0"
style="fill:#fce600;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 298.2059,119.02195 C 301.9832,100.86156 285.17789,93.345877 285.17789,93.345877 L 269.25276,119.1295 Z"
id="path1742-6-7"
sodipodi:nodetypes="cccc" />
</g>
<g
id="g1779-5"
transform="matrix(-0.53289881,0.95270668,-0.95270668,-0.53289881,643.29675,-141.50556)"
style="display:inline">
<path
inkscape:connector-curvature="0"
style="opacity:0.56999966;fill:#999999;stroke:#999999;stroke-width:4.1652298;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 355.04509,112.39915 310.48921,36.68506 267.76842,111.73829 Z"
id="path1725-3-3" />
<path
inkscape:connector-curvature="0"
style="fill:#f2f2f2;stroke:#999999;stroke-width:4.19999981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 355.89937,121.89718 311.47415,46.567704 265.59517,121.07803 Z"
id="path1725-5"
sodipodi:nodetypes="cccc" />
<path
inkscape:connector-curvature="0"
style="fill:#39bced;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 295.92425,75.92209 c 14.50749,11.166861 31.54584,1.6345 31.54584,1.6345 L 311.68378,50.551807 Z"
id="path1742-62"
sodipodi:nodetypes="cccc" />
<path
inkscape:connector-curvature="0"
style="fill:#d71920;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 337.27797,94.154603 c -18.13503,5.947447 -18.06093,25.877017 -18.06093,25.877017 l 33.05902,-0.33393 z"
id="path1742-6-9"
sodipodi:nodetypes="cccc" />
<path
inkscape:connector-curvature="0"
style="fill:#fce600;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 298.2059,119.02195 C 301.9832,100.86156 285.17789,93.345877 285.17789,93.345877 L 269.25276,119.1295 Z"
id="path1742-6-7-1"
sodipodi:nodetypes="cccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -20,7 +20,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -35,17 +35,17 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="3.225776"
inkscape:cx="249.00824"
inkscape:cy="45.165341"
inkscape:zoom="4.5619362"
inkscape:cx="399.45429"
inkscape:cy="18.42231"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:current-layer="g15663"
inkscape:pagecheckerboard="0"
showguides="false" />
<g
@ -84,9 +84,9 @@
id="circle13556"
r="72.23513"
cy="96.993217"
cx="398.04837"
cx="398.26758"
stroke-miterlimit="10"
style="fill:#ffccaa;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
style="fill:#aafff0;fill-opacity:1;stroke:#808285;stroke-width:3.77206945;stroke-miterlimit:10" />
<circle
id="circle13558"
r="15.465485"
@ -250,7 +250,7 @@
inkscape:connector-curvature="0" />
<path
d="m 166.79554,19.837071 -5.20395,2.72813 5.20395,2.7439 -1.19849,2.223505 -5.25126,-2.901595 v 5.424721 h -2.68082 v -5.424721 l -5.26702,2.901595 -1.19849,-2.223505 5.26703,-2.7439 -5.26703,-2.72813 1.19849,-2.223506 5.26702,2.870057 v -5.424723 h 2.68082 v 5.424723 l 5.25126,-2.870057 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.29601669px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#aa4400;fill-opacity:1;stroke:none;stroke-width:0.80740041"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.29601669px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#0077aa;fill-opacity:1;stroke:none;stroke-width:0.80740041"
id="path15620"
inkscape:connector-curvature="0" />
</g>

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,255 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="rule_rotations.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="2496"
id="namedview15615"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="276.94919"
inkscape:cy="140.77629"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613"
inkscape:pagecheckerboard="0"
showguides="false" />
<g
id="g42748"
transform="matrix(1.6278077,0,0,1.6278077,-173.42108,77.95)" />
<g
id="g42748-8"
transform="matrix(1.6278077,0,0,1.6278077,210.91077,83.01882)" />
<g
id="g42748-4"
transform="matrix(1.3827459,0,0,1.3827459,21.996076,-64.48163)" />
<g
id="g42748-8-6"
transform="matrix(1.3827459,0,0,1.3827459,348.46788,-60.17591)" />
<g
transform="translate(48.858387,-27.378)"
style="display:inline"
id="g103824-6">
<g
transform="matrix(0.40718387,-0.01439391,0.01381353,0.41812007,42.752888,18.547245)"
id="g1482-7-0"
style="fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-6"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-6"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
id="text5016-15-4"
style="font-style:normal;font-weight:normal;font-size:10.43869972px;line-height:1.25;font-family:sans-serif;fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.260968"
aria-label="120° ">
<path
inkscape:connector-curvature="0"
id="path104148-6"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 138.86609,102.36001 h 1.73299 v -4.918631 l -1.77886,0.366986 v -1.33542 l 1.76867,-0.366985 h 1.86551 v 6.25405 h 1.73298 v 1.3558 h -5.32129 z" />
<path
inkscape:connector-curvature="0"
id="path104150-2"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 147.91331,102.27336 h 3.34874 v 1.44245 h -5.53027 v -1.44245 l 2.77788,-2.451672 q 0.37208,-0.336403 0.55048,-0.657515 0.17839,-0.321113 0.17839,-0.66771 0,-0.535187 -0.36189,-0.861397 -0.35679,-0.326209 -0.95314,-0.326209 -0.45873,0 -1.00411,0.198784 -0.54539,0.193686 -1.16722,0.58106 v -1.671823 q 0.66261,-0.219172 1.30993,-0.331306 0.64732,-0.117232 1.26916,-0.117232 1.366,0 2.12036,0.601449 0.75946,0.601448 0.75946,1.67692 0,0.621836 -0.32111,1.162121 -0.32112,0.535187 -1.35071,1.43736 z" />
<path
inkscape:connector-curvature="0"
id="path104152-8"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 156.97071,99.903241 q 0,-1.427166 -0.27014,-2.008227 -0.26504,-0.586157 -0.89708,-0.586157 -0.63203,0 -0.90217,0.586157 -0.27014,0.581061 -0.27014,2.008227 0,1.442459 0.27014,2.033709 0.27014,0.59126 0.90217,0.59126 0.62694,0 0.89708,-0.59126 0.27014,-0.59125 0.27014,-2.033709 z m 1.96236,0.01529 q 0,1.890999 -0.81553,2.920599 -0.81552,1.0245 -2.31405,1.0245 -1.50362,0 -2.31914,-1.0245 -0.81552,-1.0296 -0.81552,-2.920599 0,-1.896092 0.81552,-2.920593 0.81552,-1.029599 2.31914,-1.029599 1.49853,0 2.31405,1.029599 0.81553,1.024501 0.81553,2.920593 z" />
<path
inkscape:connector-curvature="0"
id="path104154-9"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 162.04225,96.722699 q -0.36699,0 -0.62184,0.254851 -0.25485,0.254852 -0.25485,0.621837 0,0.366986 0.24975,0.61674 0.25486,0.249754 0.62694,0.249754 0.36698,0 0.62183,-0.249754 0.25486,-0.254851 0.25486,-0.61674 0,-0.366985 -0.25995,-0.621837 -0.25485,-0.254851 -0.61674,-0.254851 z m 0,-0.825717 q 0.3364,0 0.64732,0.132522 0.31092,0.127426 0.55558,0.366986 0.23956,0.244657 0.36188,0.550478 0.12743,0.305822 0.12743,0.652419 0,0.3415 -0.12743,0.652419 -0.12232,0.305821 -0.35169,0.535187 -0.24466,0.244657 -0.56067,0.37718 -0.31602,0.127425 -0.66262,0.127425 -0.71868,0 -1.20799,-0.484217 -0.48422,-0.489314 -0.48422,-1.207994 0,-0.71868 0.48932,-1.207994 0.49441,-0.494411 1.21309,-0.494411 z" />
</g>
</g>
<g
transform="translate(133.81206,-27.19711)"
style="display:inline"
id="g103824-6-7">
<g
transform="matrix(0.40718387,-0.01439391,0.01381353,0.41812007,42.752888,18.547245)"
id="g1482-7-0-5"
style="fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-6-9"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-6-7"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
id="text5016-15-4-8"
style="font-style:normal;font-weight:normal;font-size:10.43869972px;line-height:1.25;font-family:sans-serif;fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.260968"
aria-label="120° ">
<path
inkscape:connector-curvature="0"
id="path104148-6-5"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 138.86609,102.36001 h 1.73299 v -4.918631 l -1.77886,0.366986 v -1.33542 l 1.76867,-0.366985 h 1.86551 v 6.25405 h 1.73298 v 1.3558 h -5.32129 z" />
<path
inkscape:connector-curvature="0"
id="path104150-2-3"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 147.91331,102.27336 h 3.34874 v 1.44245 h -5.53027 v -1.44245 l 2.77788,-2.451672 q 0.37208,-0.336403 0.55048,-0.657515 0.17839,-0.321113 0.17839,-0.66771 0,-0.535187 -0.36189,-0.861397 -0.35679,-0.326209 -0.95314,-0.326209 -0.45873,0 -1.00411,0.198784 -0.54539,0.193686 -1.16722,0.58106 v -1.671823 q 0.66261,-0.219172 1.30993,-0.331306 0.64732,-0.117232 1.26916,-0.117232 1.366,0 2.12036,0.601449 0.75946,0.601448 0.75946,1.67692 0,0.621836 -0.32111,1.162121 -0.32112,0.535187 -1.35071,1.43736 z" />
<path
inkscape:connector-curvature="0"
id="path104152-8-3"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 156.97071,99.903241 q 0,-1.427166 -0.27014,-2.008227 -0.26504,-0.586157 -0.89708,-0.586157 -0.63203,0 -0.90217,0.586157 -0.27014,0.581061 -0.27014,2.008227 0,1.442459 0.27014,2.033709 0.27014,0.59126 0.90217,0.59126 0.62694,0 0.89708,-0.59126 0.27014,-0.59125 0.27014,-2.033709 z m 1.96236,0.01529 q 0,1.890999 -0.81553,2.920599 -0.81552,1.0245 -2.31405,1.0245 -1.50362,0 -2.31914,-1.0245 -0.81552,-1.0296 -0.81552,-2.920599 0,-1.896092 0.81552,-2.920593 0.81552,-1.029599 2.31914,-1.029599 1.49853,0 2.31405,1.029599 0.81553,1.024501 0.81553,2.920593 z" />
<path
inkscape:connector-curvature="0"
id="path104154-9-8"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 162.04225,96.722699 q -0.36699,0 -0.62184,0.254851 -0.25485,0.254852 -0.25485,0.621837 0,0.366986 0.24975,0.61674 0.25486,0.249754 0.62694,0.249754 0.36698,0 0.62183,-0.249754 0.25486,-0.254851 0.25486,-0.61674 0,-0.366985 -0.25995,-0.621837 -0.25485,-0.254851 -0.61674,-0.254851 z m 0,-0.825717 q 0.3364,0 0.64732,0.132522 0.31092,0.127426 0.55558,0.366986 0.23956,0.244657 0.36188,0.550478 0.12743,0.305822 0.12743,0.652419 0,0.3415 -0.12743,0.652419 -0.12232,0.305821 -0.35169,0.535187 -0.24466,0.244657 -0.56067,0.37718 -0.31602,0.127425 -0.66262,0.127425 -0.71868,0 -1.20799,-0.484217 -0.48422,-0.489314 -0.48422,-1.207994 0,-0.71868 0.48932,-1.207994 0.49441,-0.494411 1.21309,-0.494411 z" />
</g>
</g>
<g
transform="translate(224.32174,-27.19711)"
style="display:inline"
id="g103824-6-3">
<g
transform="matrix(0.40718387,-0.01439391,0.01381353,0.41812007,42.752888,18.547245)"
id="g1482-7-0-7"
style="fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-6-93"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-6-78"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
id="text5016-15-4-7"
style="font-style:normal;font-weight:normal;font-size:10.43869972px;line-height:1.25;font-family:sans-serif;fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.260968"
aria-label="120° ">
<path
inkscape:connector-curvature="0"
id="path104148-6-4"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 138.86609,102.36001 h 1.73299 v -4.918631 l -1.77886,0.366986 v -1.33542 l 1.76867,-0.366985 h 1.86551 v 6.25405 h 1.73298 v 1.3558 h -5.32129 z" />
<path
inkscape:connector-curvature="0"
id="path104150-2-1"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 147.91331,102.27336 h 3.34874 v 1.44245 h -5.53027 v -1.44245 l 2.77788,-2.451672 q 0.37208,-0.336403 0.55048,-0.657515 0.17839,-0.321113 0.17839,-0.66771 0,-0.535187 -0.36189,-0.861397 -0.35679,-0.326209 -0.95314,-0.326209 -0.45873,0 -1.00411,0.198784 -0.54539,0.193686 -1.16722,0.58106 v -1.671823 q 0.66261,-0.219172 1.30993,-0.331306 0.64732,-0.117232 1.26916,-0.117232 1.366,0 2.12036,0.601449 0.75946,0.601448 0.75946,1.67692 0,0.621836 -0.32111,1.162121 -0.32112,0.535187 -1.35071,1.43736 z" />
<path
inkscape:connector-curvature="0"
id="path104152-8-9"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 156.97071,99.903241 q 0,-1.427166 -0.27014,-2.008227 -0.26504,-0.586157 -0.89708,-0.586157 -0.63203,0 -0.90217,0.586157 -0.27014,0.581061 -0.27014,2.008227 0,1.442459 0.27014,2.033709 0.27014,0.59126 0.90217,0.59126 0.62694,0 0.89708,-0.59126 0.27014,-0.59125 0.27014,-2.033709 z m 1.96236,0.01529 q 0,1.890999 -0.81553,2.920599 -0.81552,1.0245 -2.31405,1.0245 -1.50362,0 -2.31914,-1.0245 -0.81552,-1.0296 -0.81552,-2.920599 0,-1.896092 0.81552,-2.920593 0.81552,-1.029599 2.31914,-1.029599 1.49853,0 2.31405,1.029599 0.81553,1.024501 0.81553,2.920593 z" />
<path
inkscape:connector-curvature="0"
id="path104154-9-0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.260968"
d="m 162.04225,96.722699 q -0.36699,0 -0.62184,0.254851 -0.25485,0.254852 -0.25485,0.621837 0,0.366986 0.24975,0.61674 0.25486,0.249754 0.62694,0.249754 0.36698,0 0.62183,-0.249754 0.25486,-0.254851 0.25486,-0.61674 0,-0.366985 -0.25995,-0.621837 -0.25485,-0.254851 -0.61674,-0.254851 z m 0,-0.825717 q 0.3364,0 0.64732,0.132522 0.31092,0.127426 0.55558,0.366986 0.23956,0.244657 0.36188,0.550478 0.12743,0.305822 0.12743,0.652419 0,0.3415 -0.12743,0.652419 -0.12232,0.305821 -0.35169,0.535187 -0.24466,0.244657 -0.56067,0.37718 -0.31602,0.127425 -0.66262,0.127425 -0.71868,0 -1.20799,-0.484217 -0.48422,-0.489314 -0.48422,-1.207994 0,-0.71868 0.48932,-1.207994 0.49441,-0.494411 1.21309,-0.494411 z" />
</g>
</g>
<ellipse
style="fill:#333333;fill-rule:evenodd;stroke-width:0.66224527"
id="path357"
cx="242.42491"
cy="81.212158"
rx="4.4447722"
ry="4.4073434" />
<ellipse
style="fill:#333333;fill-rule:evenodd;stroke-width:0.66224527"
id="path357-3"
cx="331.52039"
cy="81.919266"
rx="4.4447722"
ry="4.4073434" />
<path
style="fill:#666666;stroke:#666666;stroke-width:4.24907398;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 175.95534,103.68486 H 402.03476"
id="path16207"
inkscape:connector-curvature="0" />
<g
transform="translate(132.33941,24.712057)"
style="display:inline"
id="g103824-6-7-1">
<g
transform="matrix(0.40718387,-0.01439391,0.01381353,0.41812007,42.752888,18.547245)"
id="g1482-7-0-5-3"
style="fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-6-9-8"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-6-7-0"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<path
d="m 150.9603,99.726464 q 0,-1.427166 -0.27014,-2.008227 -0.26504,-0.586157 -0.89708,-0.586157 -0.63203,0 -0.90217,0.586157 -0.27014,0.581061 -0.27014,2.008227 0,1.442456 0.27014,2.033706 0.27014,0.59126 0.90217,0.59126 0.62694,0 0.89708,-0.59126 0.27014,-0.59125 0.27014,-2.033706 z m 1.96236,0.01529 q 0,1.890996 -0.81553,2.920596 -0.81552,1.0245 -2.31405,1.0245 -1.50362,0 -2.31914,-1.0245 -0.81552,-1.0296 -0.81552,-2.920596 0,-1.896092 0.81552,-2.920593 0.81552,-1.029599 2.31914,-1.029599 1.49853,0 2.31405,1.029599 0.81553,1.024501 0.81553,2.920593 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.43869972px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.260968"
id="path104152-8-3-9"
inkscape:connector-curvature="0" />
<path
d="m 156.03184,96.545922 q -0.36699,0 -0.62184,0.254851 -0.25485,0.254852 -0.25485,0.621837 0,0.366986 0.24975,0.61674 0.25486,0.249754 0.62694,0.249754 0.36698,0 0.62183,-0.249754 0.25486,-0.254851 0.25486,-0.61674 0,-0.366985 -0.25995,-0.621837 -0.25485,-0.254851 -0.61674,-0.254851 z m 0,-0.825717 q 0.3364,0 0.64732,0.132522 0.31092,0.127426 0.55558,0.366986 0.23956,0.244657 0.36188,0.550478 0.12743,0.305822 0.12743,0.652419 0,0.3415 -0.12743,0.652419 -0.12232,0.305821 -0.35169,0.535187 -0.24466,0.244657 -0.56067,0.37718 -0.31602,0.127425 -0.66262,0.127425 -0.71868,0 -1.20799,-0.484217 -0.48422,-0.489314 -0.48422,-1.207994 0,-0.71868 0.48932,-1.207994 0.49441,-0.494411 1.21309,-0.494411 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.43869972px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.260968"
id="path104154-9-8-3"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB