This commit is contained in:
Boris Marinov 2021-08-24 23:26:16 +03:00
parent 9efd065cb1
commit 0e8c431982
12 changed files with 4841 additions and 43 deletions

View File

@ -319,8 +319,8 @@ A summary
For future reference, let's repeat what a category is.
A category is a collection of **objects** (we can think of them as points) and **morphisms** (arrows) that go from one object to another, where:
1. There should be a way to compose two morphisms with an appropriate type signature into a third one in a way that is associative.
2. Each object has to have the identity mophism.
1. Each object has to have the identity mophism.
2. There should be a way to compose two morphisms with an appropriate type signature into a third one in a way that is associative.
This is it.

View File

@ -19,27 +19,12 @@ Categories that have only one *morphism* between any two objects (preorders, par
![Types of categories](category_types_order.svg)
We also defined a lot of categories of different things most notably the ones based on logics/programming languages.
We also defined a lot of categories of different things most notably the ones based on logics/programming languages. But also less serious categories, as for example the color-mixing one. We even saw that those two categories have some similarities, like they are both distributive lattices and have greatest and least objects.
![Category of programming languages](category_programming.svg)
![Category of colors](category_color_mixing.svg)
But also less serious categories, as for example the color-mixing one
![Category of colors](color_mixing_category.svg)
And most importantly, we learned that we can make a category out of everything, from our city's road system, to soccer ranklist starring me and my grandmother. All these fall in the big hm... category of finite categories.
![Category of colors](finite_categories.svg)
And we saw one category that is neither a type, nor a domain, but it deserves to be mentioned - the category of sets and functions.
![Set category](category_set.svg)
As various *subcategories* to that category, as for example the set inclusion orders. We saw that many other categories are similar to subcategories of the category of sets.
![Set category](category_set.svg)
Now, to utilize the insights that we get from recognizing all of these structures as categories, we will specify ways to connect categories to one another.
But how exactly can we pinpoint such similarities and understand what they mean. How can we utilize the insights that we got from recognizing all of these structures as categories? To do that, we must specify formal ways to connect categories to one another.
Categorical Isomorphisms
===
@ -48,40 +33,84 @@ In chapter 1 we talked about set isomorphisms, which establish an equivalence be
![Set isomorphism](set_isomorphism.svg)
Then, in chapter 4 we mentioned order isomorphisms, which were like set isomorphisms, but with one extra condition - aside from being there, the function(s) that defines the isomorphism has to be *order-preserving*, so for any two objects **a** and **b**, *a ≤ b** iff **F(a) ≤ F(b)**.
Then, in chapter 4 we mentioned order isomorphisms, which were like set isomorphisms, but with one extra condition - aside from being there, the function that defines the isomorphism has to preserve the order of the elements i.e. all elements have to have the same arrows pointing to and from them. Or more formally put: **a** and **b**, **a ≤ b** iff **F(a) ≤ F(b)**.
![Order isomorphism](order_isomorphism.svg)
We can extend this definition to work for categories as well. Unlike orders, categories can have more than one morphism between two objects, so the definition would be a little (but not a lot) more complex: Given two categories, an isomorphism between them is an invertible function between the underlying sets of objects, *and* an invertible function between the morphisms that connect them, which maps each morphism to a morphism with the same signature.
We can extend this definition to work for categories as well. Unlike orders, categories can have more than one morphism between two objects, so the definition would be a little more complex: given two categories, an isomorphism between them is an invertible function between the underlying sets of objects, *and* an invertible function between the morphisms that connect them, which maps each morphism to a morphism with the same signature.
![Category isomorphism](category_isomorphism.svg)
Although longer, this definition is the same as the one we have for orders - it is just that with orders we don't have to specify which isomorphism corresponds to which (as there can be only one morphism) and so all we have to do is to verify that the corresponding morphisms actually exist (which is taken care of by the added condition).
Although longer, this definition is the same as the one we have for orders - it is just that with categories we have can have more than one arrows between two objects and so we need to specify which isomorphism corresponds to which, while in order theory we only need to verify that the corresponding morphisms actually exist (which is taken care of by the added condition).
So those are categorical isomorphisms. But isomorphisms are actually very rare (the only categorical isomorphism that comes to mind is the Curry-Howard-Lambek isomorphism from the last chapter). If two categories are isomorphic, then they are so similar that it would be more accurately counted as different representations of the same category.
So those are categorical isomorphisms. But isomorphisms are actually very rare (the only one that comes to mind is the Curry-Howard-Lambek isomorphism from the last chapter). If two categories are isomorphic, then they are so similar that it would be more accurately counted as different representations of the same category.
[Category isomorphism squares](category_isomorphism_squares.svg)
<!--
comics:
OK, I think I got it - isomorphisms are when you have two similar pictures and you connect the dots.
Pretty much.
-->
More useful than isomorphisms, which are two-way connections between categories, are one-way connections between them, which we will examine next.
Functors
What are functors
===
Having seen isomorphisms, which are the equivalent of two-way functions between categories, we can imagine how the equivalent one-way functions would look like, they are called *functors*. And a functor between two categories (let's call them **A** and **B**) consists of one function that maps the *objects* of **A** to the objects of **B** and one function that maps all morphisms of **A** to morphisms of **B**.
Having seen isomorphisms, which are the equivalent of two-way functions between categories, we can imagine how the equivalent one-way functions would look like. They are called *functors* and they work like this - a functor between two categories (let's call them **A** and **B**) consists of one function that maps the *objects* of **A** to the objects of **B** and one function that maps all *morphisms* of **A** to morphisms of **B** in a way that preserves the structure of the category.
![Functor](functor.svg)
Also functors should *preserve identities* i.e. all identity morphisms should be mapped to identity morphisms.
Let's break the definition down.
![Functor](functor_identity.svg)
object function
---
And they should also *preserve composition* i.e. for any two morphisms **f** and **g**, the morphism that corresponds to their composition **F(g f)** in the source category should be the same as the morphism that corresponds to the composition of their counterparts in the target directory **F(g) F(f)**.
Firstly, we have a function between the categories' objects - these are just regular old functions, so the definition that we gave at chapter 1 applies.
![Functor](functor_composition.svg)
> A function is a relationship between two sets which matches each element of one set, called the *domain* of the function, with exactly one element from another set, called the converse domain, or the *codomain* of the function.
And this is all there is to it about functors - simple but powerful idea.
![Functor for objects](functor_objects.svg)
Endofunctors
morphism function
---
Secondly, functions between morphisms. Intuitively, we can think of them as just regular functions as well, but with the added requirement that signatures of the source and the target should match.
![Functor for morphisms](functor_morphisms.svg)
A more formal definition involves the concept of a set of morphisms that go between two objects in a category (called the *homomorphism set*). According to it, the function between morphisms of the two categories is just multiple functions between their homomorphism sets.
![Functor for morphisms](functor_morphisms_formal.svg)
Functor laws
---
Thirdly, the functions between the morphisms should preserve the structure of the category. As stated in the category definition in chapter 2.
> A category is a collection of **objects** (we can think of them as points) and **morphisms** (arrows) that go from one object to another, where:
> 1. Each object has to have the identity mophism.
> 2. There should be a way to compose two morphisms with an appropriate type signature into a third one in a way that is associative.
So this requirement translates to the following two laws, which are called the *functor laws*
1. Functions between morphisms should *preserve identities* i.e. all identity morphisms should be mapped to identity morphisms.
![Functor](functor_laws_identity.svg)
2. They should also *preserve composition* i.e. for any two morphisms **f** and **g**, the morphism that corresponds to their composition **F(g f)** in the source category should be the same as the morphism that corresponds to the composition of their counterparts in the target directory **F(g) F(f)**.
![Functor](functor_laws_composition.svg)
And this is all there is to it about functors - a simple but, as we will see shortly, very powerful idea.
Some examples
===
Diagrams
---
Inductive and deductive functors
---
Functors in programming
@ -94,26 +123,26 @@ Functors as maps
---
If we take the
Diagrams
---
Hom functors
---
Representable functors
===
Representable functors are set-valued functors that are isomorphic to the Hom functor
A Hom-functor can always be converted to any set-valued functor (Yoneda lemma). But not the other way around
So a functor is representable when we can convert its values to values of the Hom functor
Natural transformations
===
Limits
===
Representable functors
===
Representable functors are set-valued functors that are isomorphic to the Hom functor
A Hom-functor can always be converted to any set-valued functor (Yoneda lemma). But not the other way around
So a functor is representable when we can convert its values to values of the Hom functor
Yoneda Lemma
===

View File

@ -0,0 +1,465 @@
<?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 340.00001"
version="1.1"
id="svg3397"
sodipodi:docname="category_color_mixing.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
width="595.29999"
height="340">
<metadata
id="metadata3403">
<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="defs3401" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview3399"
showgrid="false"
inkscape:zoom="5.6568542"
inkscape:cx="231.81376"
inkscape:cy="82.529229"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="false" />
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0"
transform="matrix(0.01017386,-0.28029238,0.39203238,-0.00559565,124.6015,249.55944)"
inkscape:transform-center-x="-18.81019"
inkscape:transform-center-y="6.9854567">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7"
transform="matrix(-0.00466973,-0.28043808,0.39118727,-0.02632895,206.44099,255.41636)"
inkscape:transform-center-x="-15.248575"
inkscape:transform-center-y="90.778908">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-5"
transform="matrix(-0.00391073,-0.2804497,0.3912571,-0.02527013,280.66664,255.39317)">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4"
transform="matrix(-0.19363093,-0.20291473,0.26960977,-0.28465992,235.96664,287.84925)"
inkscape:transform-center-x="170.54007"
inkscape:transform-center-y="-64.392973">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-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-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-31"
d="M 96.459167,77.578189 C 147.54958,60.644507 303.77113,69.059138 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:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-2"
transform="matrix(0.239648,-0.1464369,-0.18446056,-0.34031378,232.03934,278.0581)">
<path
style="stroke-width:16.0981"
inkscape:connector-curvature="0"
id="path1478-7-9-7"
d="m 563.46366,141.06522 c 4.96028,-2.08575 10.13124,-3.95534 15.43904,-5.71837 -4.32297,-3.2392 -8.89528,-6.34765 -13.71749,-9.32662 -0.58317,5.25487 -0.78326,9.37726 -1.72155,15.04499 z" />
<path
style="fill:none;stroke-width:9.11185;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-7"
d="m 141.33193,152.86684 c 85.12595,-22.21059 313.4888,-42.56904 425.00281,-18.91397"
sodipodi:nodetypes="cc" />
</g>
<g
id="g5761"
transform="translate(49.165954,135.52436)">
<circle
cx="250.16379"
cy="90.603348"
r="24.6"
id="circle3365"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#fce600"
stroke="#ffdd00"
cx="245.36378"
cy="84.403351"
r="24.6"
id="circle3379"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-3"
transform="matrix(-0.19363093,-0.20291473,0.26960977,-0.28465992,313.24153,285.00994)"
inkscape:transform-center-x="-22.053495"
inkscape:transform-center-y="26.089189">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-0-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-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-31-0"
d="M 96.459167,77.578189 C 147.54958,60.644507 303.77113,69.059138 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g4359"
transform="translate(104.80715,154.51488)">
<circle
cx="271.79999"
cy="72.099998"
r="24.6"
id="circle3367"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#39bced"
stroke="#008dd2"
cx="264.84811"
cy="65.602043"
r="24.6"
id="circle3381"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5769"
transform="translate(165.54968,135.44772)">
<circle
cx="56.307613"
cy="92.667412"
r="24.6"
id="circle3369"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10"
transform="matrix(0.239648,-0.1464369,-0.18446056,-0.34031378,733.53412,610.57094)"
id="g6267">
<g
inkscape:transform-center-y="-64.392973"
inkscape:transform-center-x="170.54007"
transform="matrix(-0.26219217,0.70907894,1.3287646,0.26469616,-1161.942,1186.1911)"
id="g1482-7-0-4-49-9"
style="display:inline;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-9-0-8-8"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 96.459167,77.578189 C 147.54958,60.644507 303.77113,69.059138 317.498,86.173"
id="path1480-1-3-31-1-4"
inkscape:connector-curvature="0"
style="fill:none;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="90.778908"
inkscape:transform-center-x="-15.248575"
transform="matrix(0.4618386,0.62532838,1.2709445,-0.46952027,-1198.472,1291.2634)"
id="g1482-7-0-7-06"
style="display:inline;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-9-4-3"
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-3-3-46"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-64.392973"
inkscape:transform-center-x="-170.54007"
transform="matrix(0.95171375,0.18673565,-0.36146587,0.99200173,-801.44046,1034.6269)"
id="g1482-7-0-4-49-9-9"
style="display:inline;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-9-0-8-8-7"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 96.459167,77.578189 C 147.54958,60.644507 303.77113,69.059138 317.498,86.173"
id="path1480-1-3-31-1-4-4"
inkscape:connector-curvature="0"
style="fill:none;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
</g>
<g
id="g4359-3"
transform="translate(-90.257071,300.22114)">
<circle
cx="387.48297"
cy="2.0252681"
r="24.6"
id="circle3367-5"
style="opacity:0.12999998;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
</g>
<g
style="fill:#ffffff;stroke:#ececec"
transform="translate(145.97918,222.72279)"
id="g5757-5">
<circle
style="opacity:0.12999998;fill:#ffffff;stroke:#ececec;stroke-width:6;stroke-miterlimit:10"
id="circle3371-3"
r="24.6"
cy="90.683884"
cx="153.12378" />
<circle
style="fill:#ffffff;stroke:#ececec;stroke-width:6;stroke-miterlimit:10"
id="circle3385-1"
r="24.6"
cy="74.383881"
cx="148.32379" />
</g>
<g
id="g6417-4"
transform="matrix(1,0,0,-1,-1.5141745,254.74424)">
<g
id="g6267-3"
transform="matrix(0.239648,-0.1464369,-0.18446056,-0.34031378,829.83565,522.14312)"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-49-9-3"
transform="matrix(-0.96504103,-0.15372081,-0.43421271,0.97908037,-620.15144,1255.9515)"
inkscape:transform-center-x="-64.392961"
inkscape:transform-center-y="-170.54008">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-0-8-8-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-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-31-1-4-7"
d="M 96.459167,77.578189 C 147.54958,60.644507 303.77113,69.059138 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:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-06-9"
transform="matrix(-0.49111393,-0.61273122,1.1814765,-0.58575561,-1194.5283,1808.6077)"
inkscape:transform-center-x="-15.248574"
inkscape:transform-center-y="-90.7789">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-3-5"
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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-46-9"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-49-9-9-9"
transform="matrix(0.3070666,-0.7011083,1.3503697,0.21117515,-1564.2577,1669.3191)"
inkscape:transform-center-x="64.392946"
inkscape:transform-center-y="-170.54009">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-0-8-8-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-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-31-1-4-4-8"
d="M 96.459167,77.578189 C 147.54958,60.644507 303.77113,69.059138 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
</g>
<g
id="g5757-5-2"
transform="translate(147.26586,117.05629)"
style="fill:#000000;stroke:#333333">
<circle
cx="153.12378"
cy="86.683884"
id="circle3371-3-2"
style="opacity:0.13;fill:#000000;stroke:#333333;stroke-width:6;stroke-miterlimit:10"
r="24.6" />
<circle
fill="#f58235"
stroke="#e76524"
cx="150.32379"
cy="91.046249"
id="circle3385-1-1"
style="fill:#000000;stroke:#333333;stroke-width:6;stroke-miterlimit:10"
r="24.6" />
</g>
</g>
<g
id="g5757"
transform="translate(70.662991,44.706502)">
<circle
cx="153.12378"
cy="90.683884"
r="24.6"
id="circle3371"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#f58235"
stroke="#e76524"
cx="148.32379"
cy="84.383881"
r="24.6"
id="circle3385"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g4363"
transform="translate(-162.99827,1.5402806)">
<circle
cx="539.70001"
cy="133.7"
r="24.6"
id="circle3373"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#8967ac"
stroke="#651c5f"
cx="534.71521"
cy="126.90238"
r="24.6"
id="circle3387"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5765"
transform="translate(-50.004077,42.031406)">
<circle
cx="351.04132"
cy="94.997795"
r="24.6"
id="circle3375"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#54b948"
stroke="#00873a"
cx="343.96902"
cy="86.556648"
r="24.6"
id="circle3389"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
transform="matrix(0.50890585,0,0,0.50890585,158.49481,-48.954132)"
style="fill:#ffffff;fill-opacity:1"
id="g14081-7">
<path
inkscape:connector-curvature="0"
d="m 246.8,193.5 c 0.8,0 1.8,-0.2 2.9,-0.6 v 4.4 c -0.8,0.3 -1.6,0.6 -2.3,0.7 -0.7,0.1 -1.6,0.2 -2.6,0.2 -2,0 -3.5,-0.5 -4.3,-1.5 -0.9,-1 -1.3,-2.5 -1.3,-4.5 V 185 h -2.1 v -2.4 l 2.7,-1.9 1.5,-3.6 h 3.9 v 3.5 h 4.2 v 4.5 h -4.2 v 6.7 c 0,1.1 0.5,1.7 1.6,1.7 z m 16.4,-13.2 c 0.5,0 1,0 1.5,0.1 l 0.3,0.1 -0.5,5.6 c -0.5,-0.1 -1.2,-0.2 -2,-0.2 -1.3,0 -2.3,0.3 -2.8,0.9 -0.6,0.6 -0.9,1.5 -0.9,2.6 v 8.5 h -6 v -17.3 h 4.4 l 0.9,2.8 h 0.3 c 0.5,-0.9 1.2,-1.7 2.1,-2.2 0.9,-0.7 1.8,-0.9 2.7,-0.9 z m 16.5,17.6 -0.7,-2.2 h -0.4 c -0.5,0.8 -1.2,1.4 -2.1,1.8 -0.9,0.4 -1.9,0.6 -3.1,0.6 -1.9,0 -3.4,-0.6 -4.4,-1.7 -1.1,-1.1 -1.6,-2.7 -1.6,-4.7 v -11.3 h 6 v 9.5 c 0,1.1 0.2,2 0.5,2.6 0.3,0.6 0.8,0.9 1.6,0.9 1,0 1.8,-0.4 2.2,-1.2 0.4,-0.8 0.7,-2.2 0.7,-4.1 v -7.6 h 6 v 17.3 h -4.7 z m 17,0.3 c -2.9,0 -5.1,-0.8 -6.7,-2.3 -1.6,-1.5 -2.4,-3.7 -2.4,-6.5 0,-2.9 0.7,-5.2 2.2,-6.7 1.5,-1.6 3.6,-2.3 6.3,-2.3 2.6,0 4.6,0.7 6,2 1.4,1.4 2.1,3.3 2.1,5.9 v 2.7 h -10.7 c 0,1 0.4,1.7 1.1,2.3 0.7,0.6 1.6,0.8 2.7,0.8 1,0 2,-0.1 2.9,-0.3 0.9,-0.2 1.8,-0.5 2.9,-1 v 4.3 c -0.9,0.5 -1.9,0.8 -2.9,1 -0.9,0 -2.1,0.1 -3.5,0.1 z m -0.3,-13.9 c -0.7,0 -1.3,0.2 -1.8,0.7 -0.5,0.4 -0.8,1.1 -0.8,2.1 h 5.1 c 0,-0.8 -0.3,-1.5 -0.7,-2 -0.5,-0.5 -1.1,-0.8 -1.8,-0.8 z"
id="path14079-92"
style="fill:#ffffff;fill-opacity:1" />
</g>
<path
style="fill:#808285;stroke-width:0.50890583"
id="path14085-7"
d="m 282.49276,295.229 h -1.67939 v 5.80152 h -2.6972 V 295.229 h -1.01781 v -1.32316 l 1.11959,-0.66158 v -0.15267 c 0,-1.01781 0.20356,-1.78117 0.61069,-2.23918 0.40712,-0.45802 1.11959,-0.66158 2.03562,-0.66158 0.35623,0 0.71247,0.0509 1.01781,0.10178 0.30534,0.0509 0.71247,0.15267 1.11959,0.30534 l -0.55979,1.73028 c -0.35624,-0.10178 -0.66158,-0.15267 -0.96692,-0.15267 -0.20357,0 -0.35624,0.0509 -0.45802,0.20356 -0.10178,0.15267 -0.15267,0.35624 -0.15267,0.61069 v 0.20356 h 1.67939 v 2.03563 z m 6.20865,5.80152 -0.50891,-1.01781 h -0.0509 c -0.35623,0.45802 -0.71247,0.76336 -1.11959,0.91603 -0.35623,0.15267 -0.86514,0.25445 -1.47583,0.25445 -0.76336,0 -1.32315,-0.20356 -1.73028,-0.66157 -0.40712,-0.45802 -0.66158,-1.06871 -0.66158,-1.88296 0,-0.81424 0.30535,-1.47582 0.86514,-1.88295 0.5598,-0.40712 1.42494,-0.66157 2.54453,-0.71246 h 1.27227 v -0.10179 c 0,-0.66157 -0.30534,-0.96692 -0.96692,-0.96692 -0.5598,0 -1.32316,0.20357 -2.1883,0.5598 l -0.76336,-1.78117 c 0.91603,-0.45802 2.08652,-0.71247 3.46056,-0.71247 1.01782,0 1.78117,0.25445 2.34097,0.76336 0.5598,0.50891 0.81425,1.22137 0.81425,2.08651 v 5.13995 z m -2.03562,-1.78117 c 0.30534,0 0.61068,-0.10178 0.86514,-0.30534 0.25445,-0.20356 0.35623,-0.45802 0.35623,-0.81425 v -0.61069 l -0.61069,0.0509 c -0.91603,0.0509 -1.32315,0.35624 -1.32315,0.96692 -0.0509,0.50891 0.20356,0.71247 0.71247,0.71247 z m 8.44783,1.78117 h -2.6972 v -10.7888 h 2.6972 z m 7.93893,-2.39186 c 0,0.86514 -0.30534,1.47583 -0.86514,1.88296 -0.55979,0.40712 -1.37404,0.66157 -2.49363,0.66157 -0.5598,0 -1.06871,-0.0509 -1.52672,-0.10178 -0.40713,-0.0509 -0.86514,-0.15267 -1.32316,-0.35623 v -2.13741 c 0.40713,0.20357 0.86514,0.35624 1.37405,0.45802 0.5089,0.10178 0.96692,0.20356 1.32315,0.20356 0.61069,0 0.86514,-0.15267 0.86514,-0.40712 0,-0.15267 -0.10178,-0.25446 -0.25445,-0.35624 -0.15267,-0.10178 -0.66158,-0.30534 -1.42494,-0.61068 -0.71246,-0.30535 -1.22137,-0.61069 -1.52671,-1.01782 -0.30535,-0.35623 -0.40713,-0.86514 -0.40713,-1.42493 0,-0.71247 0.30535,-1.32316 0.86514,-1.73028 0.5598,-0.40713 1.37405,-0.61069 2.39186,-0.61069 0.50891,0 1.01781,0.0509 1.47583,0.15267 0.45801,0.10178 0.91603,0.25446 1.42493,0.50891 l -0.71247,1.73028 c -0.35623,-0.15267 -0.76335,-0.30534 -1.11959,-0.40713 -0.35623,-0.10178 -0.71247,-0.15267 -0.96692,-0.15267 -0.45801,0 -0.66158,0.10178 -0.66158,0.30535 0,0.15267 0.10178,0.25445 0.25446,0.35623 0.15267,0.10178 0.61068,0.30534 1.32315,0.5598 0.5598,0.20356 0.96692,0.45801 1.22137,0.66157 0.25446,0.20357 0.45802,0.45802 0.61069,0.76336 0.10178,0.25446 0.15267,0.61069 0.15267,1.0687 z m 5.29262,2.54453 c -1.32315,0 -2.34096,-0.35623 -3.05343,-1.0687 -0.71247,-0.71247 -1.0687,-1.67939 -1.0687,-2.95165 0,-1.32316 0.35623,-2.34097 1.01781,-3.05344 0.66158,-0.71247 1.6285,-1.0687 2.84987,-1.0687 1.17049,0 2.08652,0.30534 2.74809,0.91603 0.66158,0.61069 0.96692,1.52672 0.96692,2.64631 v 1.22138 h -4.8346 c 0,0.45801 0.20356,0.76335 0.45801,1.01781 0.30535,0.25445 0.71247,0.35623 1.22138,0.35623 0.45801,0 0.91603,-0.0509 1.32315,-0.15267 0.40713,-0.10178 0.81425,-0.25445 1.32316,-0.45802 v 1.93385 c -0.40713,0.20356 -0.86514,0.35623 -1.32316,0.45801 -0.45801,0.10178 -0.96692,0.20356 -1.6285,0.20356 z m -0.15267,-6.31043 c -0.30534,0 -0.61068,0.10178 -0.81425,0.30535 -0.20356,0.20356 -0.35623,0.5089 -0.35623,0.96692 h 2.34097 c 0,-0.35624 -0.10178,-0.66158 -0.30535,-0.91603 -0.25445,-0.20357 -0.5089,-0.35624 -0.86514,-0.35624 z"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,768 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="category_isomorphism.svg"
inkscape:version="1.1 (ce6663b3b7, 2021-05-25)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<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="1920"
inkscape:window-height="1016"
id="namedview15615"
showgrid="false"
inkscape:zoom="3.2012925"
inkscape:cx="153.21936"
inkscape:cy="90.276037"
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.1667859,0,0,1.1667859,-128.96393,-40.070981)" />
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
r="82.27652"
cy="96.532555"
cx="165.20418" />
<g
id="g42748-8"
transform="matrix(1.1667859,0,0,1.1667859,146.51886,-36.437748)" />
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
r="82.27652"
cy="100.16579"
cx="403.5" />
<g
id="g24413"
style="stroke-width:0.7;stroke-miterlimit:10;stroke-dasharray:none;stroke:#797979;stroke-opacity:1">
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-3"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,386.15735,62.792386)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-8"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-8"
d="M -1213.6691,224.87989 C -794.99112,169.44339 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:3.67960073;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-31"
transform="matrix(0.17007176,8.9640524e-4,0.01061711,0.21285148,350.12202,69.26571)"
inkscape:transform-center-x="7.6003409"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.67960073;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-89"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.67960073;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-6"
d="M -1074.4393,218.2691 C -655.7613,162.8326 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:3.63902711;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-4"
transform="matrix(0.17388536,8.9640524e-4,0.01085518,0.21285148,347.38122,34.643359)"
inkscape:transform-center-x="7.7707699"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.63902711;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-3"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.63902711;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-3"
d="M -1074.4393,218.2691 C -655.7613,162.8326 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:3.63614481;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-38"
transform="matrix(0.17416114,8.9640524e-4,0.0108724,0.21285148,338.74248,30.368995)"
inkscape:transform-center-x="7.7830834"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.63614481;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-6"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.63614481;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-0"
d="M -1064.6824,219.23208 C -646.00438,163.79558 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-3-9"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,393.23173,66.059571)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-8-4"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-8-6"
d="M -1213.6691,224.87989 C -794.99112,169.44339 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-3-9-9"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,405.01921,74.220138)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-8-4-2"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-8-6-2"
d="m -1249.7436,215.09201 c 418.678,-55.4365 1215.455964,-46.66301 1553.73775,1.62061"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:3.63902712;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-4-4"
transform="matrix(0.17388536,8.9640524e-4,0.01085518,0.21285148,310.09139,43.467019)"
inkscape:transform-center-x="7.7707699"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.63902712;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-3-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.63902712;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-3-7"
d="M -1052.873,206.03932 C -634.19497,150.60282 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
transform="translate(0.4918102,-1.9124991)"
id="g24413-1"
style="stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,350.15926,12.31869)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5"
d="M -1074.4393,218.2691 C -655.7613,162.8326 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.85537767;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-48"
transform="matrix(0.15491724,8.9640524e-4,0.00967106,0.21285148,404.34408,59.403543)"
inkscape:transform-center-x="6.9230971"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.85537767;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-88"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.85537767;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-9"
d="M -1074.4393,218.2691 C -655.7613,162.8326 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-7"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,368.70762,85.935732)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-64"
d="M -1122.1264,218.46993 C -703.44841,163.03343 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.76999996;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-30"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,322.54449,55.801463)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-30"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-92"
d="M -1116.0146,210.41161 C -697.33657,154.97511 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-5"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,278.94597,31.010149)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05"
d="M -1118.5689,206.40608 C -699.89091,150.96958 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<path
style="display:inline;opacity:0.919;fill:#757575;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5"
d="m 190.41254,56.769841 c -0.61537,0.362597 -1.26634,0.707512 -1.93938,1.044617 0.69322,0.232955 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.586464 -0.18353,-1.039469 -0.23078,-1.680487 z" />
<path
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-4"
d="m 115.37894,72.430021 c -0.61537,0.362597 -1.26634,0.707512 -1.93938,1.044617 0.69322,0.232955 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.586464 -0.18353,-1.039469 -0.23078,-1.680487 z" />
<path
style="display:inline;opacity:0.919;fill:#757575;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-8"
d="m 159.7755,97.825582 c -0.61537,0.3626 -1.26634,0.70752 -1.93938,1.04462 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68049 z" />
<path
style="display:inline;opacity:0.919;fill:#757575;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-1"
d="m 202.6191,130.16382 c -0.61537,0.3626 -1.26634,0.70752 -1.93938,1.04462 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68049 z" />
<path
style="display:inline;opacity:0.919;fill:#757575;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-4-9"
d="m 245.61488,103.45947 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
inkscape:transform-center-x="-5.2144259"
inkscape:transform-center-y="-0.16085094" />
<path
style="display:inline;opacity:0.401417;fill:#757575;fill-opacity:1;stroke:#797979;stroke-width:0.7;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-4-9-3"
d="m 173.47959,115.31641 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
inkscape:transform-center-x="-5.2144259"
inkscape:transform-center-y="-0.16085094" />
</g>
</g>
<path
style="display:inline;opacity:0.401417;fill:#757575;fill-opacity:1;stroke:#797979;stroke-width:0.7;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-4-9-3-7"
d="m 131.18816,85.334382 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
inkscape:transform-center-x="-5.2144259"
inkscape:transform-center-y="-0.16085094" />
<path
style="display:inline;opacity:0.401417;fill:#757575;fill-opacity:1;stroke:#797979;stroke-width:0.7;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-4-9-3-7-5"
d="m 159.10629,74.66224 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
inkscape:transform-center-x="-5.2144259"
inkscape:transform-center-y="-0.16085094" />
<path
style="display:inline;opacity:0.401417;fill:#757575;fill-opacity:1;stroke:#797979;stroke-width:0.7;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-4-9-3-7-5-3"
d="m 167.58519,78.796464 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
inkscape:transform-center-x="-5.2144259"
inkscape:transform-center-y="-0.16085094" />
<g
id="g10229-2"
transform="matrix(0.57673261,0,0,0.57673261,256.34647,41.750137)">
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7"
width="33.724735"
height="35.524086"
x="212.8891"
y="96.631317" />
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-5"
width="33.724735"
height="35.524086"
x="259.32565"
y="17.221956" />
<g
inkscape:transform-center-y="-0.73403693"
inkscape:transform-center-x="-12.157065"
transform="matrix(-0.13566577,0.22680277,-0.32622049,-0.17338087,363.1002,56.29762)"
id="g1482-7-0-1-0-3-8"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0-50"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-96"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1"
width="33.724735"
height="35.524086"
x="136.08681"
y="51.856495" />
<rect
style="opacity:1;fill:#f58235;fill-opacity:1;stroke:#e76524;stroke-width:2.77771711;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164"
width="33.724735"
height="35.524086"
x="130.32214"
y="44.519638" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7-8"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2-5"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-61"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4-8"
width="33.724735"
height="35.524086"
x="291.17325"
y="145.87103" />
<g
inkscape:transform-center-y="-4.576857"
inkscape:transform-center-x="11.40825"
transform="matrix(0.21605455,-0.15220095,0.22774808,0.29088065,224.80816,99.377555)"
id="g1482-7-0-1-0-3-5-7-2-10"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-0-2-2-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-04"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4"
width="33.724735"
height="35.524086"
x="357.07672"
y="97.880478" />
<g
inkscape:transform-center-y="4.5768618"
inkscape:transform-center-x="-11.40825"
transform="matrix(-0.21605455,0.15220095,-0.22774808,-0.29088065,445.35391,166.4118)"
id="g1482-7-0-1-0-3-5-7-2-1-4"
style="display:inline;fill:#dddddd;stroke:#445500;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-9-0-19-0-0-2-2-0-4"
inkscape:connector-curvature="0"
style="stroke:#445500;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-6-4"
inkscape:connector-curvature="0"
style="fill:none;stroke:#445500;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-11.849154"
inkscape:transform-center-x="2.8428186"
transform="matrix(-0.17782756,0.19550462,0.26038086,0.26207354,229.88579,-37.284038)"
id="g1482-7-0-1-0-3-1-6"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-5-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-9-1"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-6.8316466"
inkscape:transform-center-x="10.541054"
transform="matrix(0.2383419,-0.11418335,0.17624638,0.32468131,229.00827,68.523691)"
id="g1482-7-0-1-0-3-5-7-2-4-7"
style="display:inline;fill:#dddddd;stroke:#000080;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-9-0-19-0-0-2-2-9-5"
inkscape:connector-curvature="0"
style="stroke:#000080;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 85.255937,126.08872 C 157.92012,89.606392 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-0-9"
inkscape:connector-curvature="0"
style="fill:none;stroke:#000080;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-12.167418"
inkscape:transform-center-x="0.5354074"
transform="matrix(0.22455705,0.13935147,-0.17868507,0.32334562,251.23249,27.461247)"
id="g1482-7-0-1-0-3-5-5"
style="display:inline;fill:#dddddd;stroke:#6c5353;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-9-0-19-0-0-9"
inkscape:connector-curvature="0"
style="stroke:#6c5353;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-8"
inkscape:connector-curvature="0"
style="fill:none;stroke:#6c5353;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:1;fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8"
width="33.724735"
height="35.524086"
x="206.92822"
y="90.005348" />
<rect
style="opacity:1;fill:#e6e7e8;fill-opacity:1;stroke:#bbbcbe;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-7"
width="33.724735"
height="35.524086"
x="255.48833"
y="12.336374" />
<rect
style="opacity:1;fill:#fce600;fill-opacity:1;stroke:#ffdd00;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1"
width="33.724735"
height="35.524086"
x="351.11584"
y="91.254501" />
<rect
style="opacity:1;fill:#39bced;fill-opacity:1;stroke:#008dd2;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1-5"
width="33.724735"
height="35.524086"
x="286.26047"
y="139.24506" />
</g>
<g
id="g10229"
transform="matrix(0.57673261,0,0,0.57673261,15.02822,39.023637)">
<circle
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;opacity:0.203"
id="circle15603-3-6"
r="18.334303"
cy="65.832329"
cx="152.99588" />
<circle
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;opacity:0.203"
id="circle15601-9-4-6"
r="18.671675"
cy="37.181042"
cx="285.39355" />
<circle
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;opacity:0.203"
id="circle15605-4-4"
r="18.334303"
cy="163.15147"
cx="306.88229" />
<circle
transform="rotate(-84.232776)"
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.99253249;stroke-miterlimit:10;opacity:0.203"
id="circle3379-9"
r="16.369385"
cy="392.34567"
cx="-80.241524" />
<circle
style="fill:#f58235;stroke:#e76524;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3"
r="18.334303"
cy="59.150921"
cx="149.86938" />
<g
inkscape:transform-center-y="-0.73403693"
inkscape:transform-center-x="-12.157065"
transform="matrix(-0.13566577,0.22680277,-0.32622049,-0.17338087,359.95583,54.987467)"
id="g1482-7-0-1-0-3"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4"
r="18.671675"
cy="30.49963"
cx="280.26703" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<circle
style="fill:#dedede;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1;opacity:0.284"
id="circle15605-2"
r="18.334303"
cy="112.26966"
cx="232.31758" />
<g
inkscape:transform-center-y="-12.167418"
inkscape:transform-center-x="0.5354074"
transform="matrix(0.22455705,0.13935147,-0.17868507,0.32334562,251.23249,27.461247)"
id="g1482-7-0-1-0-3-5"
style="display:inline;fill:#dddddd;stroke:#6c5353;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-9-0-19-0-0"
inkscape:connector-curvature="0"
style="stroke:#6c5353;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4"
inkscape:connector-curvature="0"
style="fill:none;stroke:#6c5353;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<circle
style="fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605"
r="18.334303"
cy="105.58823"
cx="227.19109" />
<g
inkscape:transform-center-y="-4.576857"
inkscape:transform-center-x="11.40825"
transform="matrix(0.21605455,-0.15220095,0.22774808,0.29088065,235.55142,101.4738)"
id="g1482-7-0-1-0-3-5-7-2"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-0-2-2"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="4.5768618"
inkscape:transform-center-x="-11.40825"
transform="matrix(-0.21605455,0.15220095,-0.22774808,-0.29088065,442.7336,167.45992)"
id="g1482-7-0-1-0-3-5-7-2-1"
style="display:inline;fill:#dddddd;stroke:#445500;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-9-0-19-0-0-2-2-0"
inkscape:connector-curvature="0"
style="stroke:#445500;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-6"
inkscape:connector-curvature="0"
style="fill:none;stroke:#445500;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<circle
transform="rotate(-84.232776)"
style="fill:#fce600;stroke:#ffdd00;stroke-width:3.99253249;stroke-miterlimit:10"
id="circle3379"
r="16.369385"
cy="386.25748"
cx="-74.496361" />
<g
inkscape:transform-center-y="-11.849154"
inkscape:transform-center-x="2.8428186"
transform="matrix(-0.17782756,0.19550462,0.26038086,0.26207354,230.93391,-39.380283)"
id="g1482-7-0-1-0-3-1"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-5"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-9"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-6.8316466"
inkscape:transform-center-x="10.541054"
transform="matrix(0.2383419,-0.11418335,0.17624638,0.32468131,239.75153,70.619936)"
id="g1482-7-0-1-0-3-5-7-2-4"
style="display:inline;fill:#dddddd;stroke:#000080;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-9-0-19-0-0-2-2-9"
inkscape:connector-curvature="0"
style="stroke:#000080;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 85.255937,126.08872 C 157.92012,89.606392 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-0"
inkscape:connector-curvature="0"
style="fill:none;stroke:#000080;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15605-4"
r="18.334303"
cy="158.23784"
cx="301.04865" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,498 @@
<?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="functor.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="2560"
inkscape:window-height="1376"
id="namedview15615"
showgrid="false"
inkscape:zoom="6.243648"
inkscape:cx="299.91055"
inkscape:cy="135.17983"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613" />
<g
id="g42748"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,-178.44441,-15.133501)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
cy="106.72823"
cx="135.51779"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
id="g42748-8"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,138.19596,-34.759846)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
cy="127.41534"
cx="436.38657"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
id="g24413"
style="stroke:#797979;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(1.1482622,-0.08585242,0.0863953,1.1076964,-26.898052,18.181114)">
<g
style="display:inline;opacity:0.95400002;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9"
transform="matrix(0.15815945,0.00363238,0.01383482,0.16867354,347.53698,20.416755)"
inkscape:transform-center-x="7.0770773"
inkscape:transform-center-y="-7.9306638">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5"
d="M -1074.4393,218.2691 C -655.7613,162.8326 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-4"
transform="matrix(0.17388536,8.9640524e-4,0.01085518,0.21285148,346.44102,36.016397)"
inkscape:transform-center-x="7.7707699"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-3"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-3"
d="M -1065.3687,201.07536 C -646.69068,145.63886 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.95400002;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-30"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,322.54449,55.801463)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-30"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-92"
d="M -1116.0146,210.41161 C -697.33657,154.97511 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.95400002;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-5"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,278.94597,31.010149)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05"
d="M -1118.5689,206.40608 C -699.89091,150.96958 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-4-4"
transform="matrix(0.17388536,8.9640524e-4,0.01085518,0.21285148,310.09139,43.467019)"
inkscape:transform-center-x="7.7707699"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-3-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-3-7"
d="M -1052.873,206.03932 C -634.19497,150.60282 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-4-1"
transform="matrix(0.17388536,8.9640884e-4,0.01085518,0.21285148,340.23969,26.541313)"
inkscape:transform-center-x="7.7707699"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-3-9"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-3-6"
d="M -1065.3687,201.07536 C -646.69068,145.63886 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g10229-2"
transform="matrix(0.66224028,-0.04951389,0.04982698,0.63884464,271.06193,42.419626)">
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7"
width="33.724735"
height="35.524086"
x="212.8891"
y="96.631317" />
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-5"
width="33.724735"
height="35.524086"
x="259.32565"
y="17.221956" />
<g
inkscape:transform-center-y="-0.73403693"
inkscape:transform-center-x="-12.157065"
transform="matrix(-0.13566577,0.22680277,-0.32622049,-0.17338087,363.1002,56.29762)"
id="g1482-7-0-1-0-3-8"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0-50"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-96"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1"
width="33.724735"
height="35.524086"
x="136.08681"
y="51.856495" />
<rect
style="opacity:1;fill:#f58235;fill-opacity:1;stroke:#e76524;stroke-width:2.77771711;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164"
width="33.724735"
height="35.524086"
x="130.32214"
y="44.519638" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7-8"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2-5"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-61"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4-8"
width="33.724735"
height="35.524086"
x="291.17325"
y="145.87103" />
<g
inkscape:transform-center-y="-4.576857"
inkscape:transform-center-x="11.40825"
transform="matrix(0.21605455,-0.15220095,0.22774808,0.29088065,224.80816,99.377555)"
id="g1482-7-0-1-0-3-5-7-2-10"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-0-2-2-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-04"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4"
width="33.724735"
height="35.524086"
x="357.07672"
y="97.880478" />
<g
inkscape:transform-center-y="4.5768618"
inkscape:transform-center-x="-11.40825"
transform="matrix(-0.21605455,0.15220095,-0.22774808,-0.29088065,445.35391,166.4118)"
id="g1482-7-0-1-0-3-5-7-2-1-4"
style="display:inline;fill:#dddddd;stroke:#445500;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-9-0-19-0-0-2-2-0-4"
inkscape:connector-curvature="0"
style="stroke:#445500;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-6-4"
inkscape:connector-curvature="0"
style="fill:none;stroke:#445500;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-11.849154"
inkscape:transform-center-x="2.8428186"
transform="matrix(-0.17782756,0.19550462,0.26038086,0.26207354,229.88579,-37.284038)"
id="g1482-7-0-1-0-3-1-6"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-5-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-9-1"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-6.8316466"
inkscape:transform-center-x="10.541054"
transform="matrix(0.2383419,-0.11418335,0.17624638,0.32468131,229.00827,68.523691)"
id="g1482-7-0-1-0-3-5-7-2-4-7"
style="display:inline;fill:#dddddd;stroke:#000080;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-9-0-19-0-0-2-2-9-5"
inkscape:connector-curvature="0"
style="stroke:#000080;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 85.255937,126.08872 C 157.92012,89.606392 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-0-9"
inkscape:connector-curvature="0"
style="fill:none;stroke:#000080;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-12.167418"
inkscape:transform-center-x="0.5354074"
transform="matrix(0.22455705,0.13935147,-0.17868507,0.32334562,251.23249,27.461247)"
id="g1482-7-0-1-0-3-5-5"
style="display:inline;fill:#dddddd;stroke:#6c5353;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-9-0-19-0-0-9"
inkscape:connector-curvature="0"
style="stroke:#6c5353;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-8"
inkscape:connector-curvature="0"
style="fill:none;stroke:#6c5353;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:1;fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8"
width="33.724735"
height="35.524086"
x="206.92822"
y="90.005348" />
<rect
style="opacity:1;fill:#e6e7e8;fill-opacity:1;stroke:#bbbcbe;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-7"
width="33.724735"
height="35.524086"
x="255.48833"
y="12.336374" />
<rect
style="opacity:1;fill:#fce600;fill-opacity:1;stroke:#ffdd00;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1"
width="33.724735"
height="35.524086"
x="351.11584"
y="91.254501" />
<rect
style="opacity:1;fill:#39bced;fill-opacity:1;stroke:#008dd2;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1-5"
width="33.724735"
height="35.524086"
x="286.26047"
y="139.24506" />
</g>
<g
id="g10229"
transform="matrix(0.66224028,-0.04951389,0.04982698,0.63884464,-6.2702567,60.117246)">
<circle
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3-6"
r="18.334303"
cy="65.832329"
cx="152.99588" />
<circle
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-6"
r="18.671675"
cy="29.899172"
cx="279.98334" />
<circle
style="fill:#f58235;stroke:#e76524;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3"
r="18.334303"
cy="59.150921"
cx="149.86938" />
<g
inkscape:transform-center-y="-0.91930168"
inkscape:transform-center-x="-11.34747"
transform="matrix(-0.13229393,0.28696148,-0.30096217,-0.20880191,353.31527,43.432681)"
id="g1482-7-0-1-0-3"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4"
r="18.671675"
cy="21.904219"
cx="275.61765" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<circle
style="opacity:0.28400005;fill:#dedede;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605-2"
r="18.334303"
cy="112.26966"
cx="232.31758" />
<circle
style="fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605"
r="18.334303"
cy="105.58823"
cx="227.19109" />
</g>
<g
inkscape:transform-center-y="-11.493255"
inkscape:transform-center-x="4.2595795"
transform="matrix(-0.09320723,0.14442176,0.20086077,0.13395035,134.36286,25.16007)"
id="g1482-7-0-1-0-3-1-6-0"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-5-3-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 94.492671,73.357175 C 144.06426,61.281052 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-9-1-9"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,552 @@
<?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="functor_laws_composition.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="2560"
inkscape:window-height="1376"
id="namedview15615"
showgrid="false"
inkscape:zoom="3.8702756"
inkscape:cx="258.46346"
inkscape:cy="103.24666"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613" />
<g
id="g42748"
transform="matrix(1.3020319,-0.09382271,0.09355548,1.3167488,-185.90882,-20.732924)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.25014281;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
cy="103.55355"
cx="119.41737"
transform="matrix(0.99741384,-0.07187233,0.07087171,0.99748544,0,0)"
rx="92.051521"
ry="93.085289" />
<g
id="g42748-8"
transform="matrix(1.3020319,-0.09382271,0.09355548,1.3167488,121.79739,-38.784638)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.25014281;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
cy="124.61882"
cx="411.75217"
transform="matrix(0.99741384,-0.07187233,0.07087171,0.99748544,0,0)"
rx="92.051521"
ry="93.085289" />
<g
id="g10229"
transform="matrix(0.64358357,-0.04637578,0.04624369,0.65085797,-18.884084,56.94885)">
<circle
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3-6"
r="18.334303"
cy="65.832329"
cx="152.99588" />
<circle
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-6"
r="18.671675"
cy="37.181042"
cx="285.39355" />
<circle
style="fill:#f58235;stroke:#e76524;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3"
r="18.334303"
cy="59.150921"
cx="149.86938" />
<g
inkscape:transform-center-y="-0.73403693"
inkscape:transform-center-x="-12.157065"
transform="matrix(-0.13566577,0.22680277,-0.32622049,-0.17338087,359.95583,54.987467)"
id="g1482-7-0-1-0-3"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4"
r="18.671675"
cy="30.49963"
cx="280.26703" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<circle
style="opacity:0.28400005;fill:#dedede;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605-2"
r="18.334303"
cy="112.26966"
cx="232.31758" />
<circle
style="fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605"
r="18.334303"
cy="105.58823"
cx="227.19109" />
<g
id="g6057"
style="stroke:#2e2758;stroke-opacity:1">
<g
style="display:inline;fill:#dddddd;stroke:#2e2758;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-7"
transform="matrix(-0.25178541,0.08030447,0.09432672,0.35718792,229.19981,-57.88558)"
inkscape:transform-center-x="-2.4321523"
inkscape:transform-center-y="-11.759803">
<path
style="stroke:#2e2758;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-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
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
style="fill:none;stroke:#2e2758;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4"
d="M -46.693327,121.66387 C 71.619135,64.467921 198.37994,58.290754 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
transform="translate(416.4312,2.2833405)"
id="g6057-6"
style="stroke:#2e2758;stroke-opacity:1">
<g
style="display:inline;fill:#dddddd;stroke:#2e2758;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1"
id="g1482-7-0-1-0-3-7-2"
transform="matrix(-0.25178541,0.08030447,0.09432672,0.35718792,229.19981,-57.88558)"
inkscape:transform-center-x="-2.4321523"
inkscape:transform-center-y="-11.759803">
<path
style="stroke:#2e2758;stroke-width:35.52600098;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-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
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
style="fill:none;stroke:#2e2758;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-9"
d="M -46.693327,121.66387 C 71.619135,64.467921 198.37994,58.290754 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
</g>
<g
id="g10229-2"
transform="matrix(0.64358357,-0.04637578,0.04624369,0.65085797,250.62477,40.621076)">
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7"
width="33.724735"
height="35.524086"
x="212.8891"
y="96.631317" />
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-5"
width="33.724735"
height="35.524086"
x="259.32565"
y="17.221956" />
<g
inkscape:transform-center-y="-0.73403693"
inkscape:transform-center-x="-12.157065"
transform="matrix(-0.13566577,0.22680277,-0.32622049,-0.17338087,363.1002,56.29762)"
id="g1482-7-0-1-0-3-8"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0-50"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-96"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1"
width="33.724735"
height="35.524086"
x="136.08681"
y="51.856495" />
<rect
style="opacity:1;fill:#f58235;fill-opacity:1;stroke:#e76524;stroke-width:2.77771711;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164"
width="33.724735"
height="35.524086"
x="130.32214"
y="44.519638" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7-8"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2-5"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-61"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4-8"
width="33.724735"
height="35.524086"
x="291.17325"
y="145.87103" />
<g
inkscape:transform-center-y="-4.576857"
inkscape:transform-center-x="11.40825"
transform="matrix(0.21605455,-0.15220095,0.22774808,0.29088065,224.80816,99.377555)"
id="g1482-7-0-1-0-3-5-7-2-10"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-0-2-2-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-04"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4"
width="33.724735"
height="35.524086"
x="357.07672"
y="97.880478" />
<g
inkscape:transform-center-y="4.5768618"
inkscape:transform-center-x="-11.40825"
transform="matrix(-0.21605455,0.15220095,-0.22774808,-0.29088065,445.35391,166.4118)"
id="g1482-7-0-1-0-3-5-7-2-1-4"
style="display:inline;fill:#dddddd;stroke:#445500;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-9-0-19-0-0-2-2-0-4"
inkscape:connector-curvature="0"
style="stroke:#445500;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-6-4"
inkscape:connector-curvature="0"
style="fill:none;stroke:#445500;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-11.849154"
inkscape:transform-center-x="2.8428186"
transform="matrix(-0.17782756,0.19550462,0.26038086,0.26207354,229.88579,-37.284038)"
id="g1482-7-0-1-0-3-1-6"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-5-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-9-1"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-6.8316466"
inkscape:transform-center-x="10.541054"
transform="matrix(0.2383419,-0.11418335,0.17624638,0.32468131,229.00827,68.523691)"
id="g1482-7-0-1-0-3-5-7-2-4-7"
style="display:inline;fill:#dddddd;stroke:#000080;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-9-0-19-0-0-2-2-9-5"
inkscape:connector-curvature="0"
style="stroke:#000080;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 85.255937,126.08872 C 157.92012,89.606392 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-0-9"
inkscape:connector-curvature="0"
style="fill:none;stroke:#000080;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-12.167418"
inkscape:transform-center-x="0.5354074"
transform="matrix(0.22455705,0.13935147,-0.17868507,0.32334562,251.23249,27.461247)"
id="g1482-7-0-1-0-3-5-5"
style="display:inline;fill:#dddddd;stroke:#6c5353;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-9-0-19-0-0-9"
inkscape:connector-curvature="0"
style="stroke:#6c5353;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-8"
inkscape:connector-curvature="0"
style="fill:none;stroke:#6c5353;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:1;fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8"
width="33.724735"
height="35.524086"
x="206.92822"
y="90.005348" />
<rect
style="opacity:1;fill:#e6e7e8;fill-opacity:1;stroke:#bbbcbe;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-7"
width="33.724735"
height="35.524086"
x="255.48833"
y="12.336374" />
<rect
style="opacity:1;fill:#fce600;fill-opacity:1;stroke:#ffdd00;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1"
width="33.724735"
height="35.524086"
x="351.11584"
y="91.254501" />
<rect
style="opacity:1;fill:#39bced;fill-opacity:1;stroke:#008dd2;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1-5"
width="33.724735"
height="35.524086"
x="286.26047"
y="139.24506" />
</g>
<g
transform="matrix(1.1159132,-0.08041124,0.08018221,1.1285263,-29.843945,-20.476263)"
id="g5890"
style="stroke:#565352;stroke-width:1.45511806;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<g
id="g6746">
<g
id="g6757"
style="stroke-width:2;stroke-miterlimit:10;stroke-dasharray:none">
<g
inkscape:transform-center-y="-10.036944"
inkscape:transform-center-x="6.9305366"
transform="matrix(0.15507894,0.00101572,0.00984768,0.21286639,309.64994,42.408907)"
id="g1482-7-0-1-0-3-9-5-0-8"
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#565352;stroke-width:11.00945568;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z"
id="path1478-7-9-0-19-0-7-4-2-5"
inkscape:connector-curvature="0"
style="stroke:#565352;stroke-width:11.00945568;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1118.5689,206.40608 C -699.89091,150.96958 -34.287636,168.429 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-05-1-0"
inkscape:connector-curvature="0"
style="fill:none;stroke:#565352;stroke-width:11.00945568;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-9.7741985"
inkscape:transform-center-x="7.455478"
transform="matrix(0.16602295,7.0464196e-4,0.01224257,0.21287107,301.25785,73.182619)"
id="g1482-7-0-1-0-3-9-5-0-8-0"
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#565352;stroke-width:10.63997555;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z"
id="path1478-7-9-0-19-0-7-4-2-5-8"
inkscape:connector-curvature="0"
style="stroke:#565352;stroke-width:10.63997555;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1118.5689,206.40608 C -699.89091,150.96958 -34.287636,168.429 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-05-1-0-1"
inkscape:connector-curvature="0"
style="fill:none;stroke:#565352;stroke-width:10.63997555;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-10.036938"
inkscape:transform-center-x="7.4202252"
transform="matrix(0.16601761,0.00150602,0.0112149,0.21292768,340.39871,63.831679)"
id="g1482-7-0-1-0-3-9-5-0-8-0-3"
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#565352;stroke-width:10.63997555;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z"
id="path1478-7-9-0-19-0-7-4-2-5-8-1"
inkscape:connector-curvature="0"
style="stroke:#565352;stroke-width:10.63997555;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1118.5689,206.40608 C -699.89091,150.96958 -34.287636,168.429 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-05-1-0-1-1"
inkscape:connector-curvature="0"
style="fill:none;stroke:#565352;stroke-width:10.63997555;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
</g>
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.04346848px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#565656;fill-opacity:1;stroke:none;stroke-width:0.22608669"
x="143.49402"
y="92.740768"
id="text5955"
transform="matrix(0.99405656,-0.02648471,0.02678334,1.0052654,0,0)"><tspan
sodipodi:role="line"
id="tspan5953"
x="143.49402"
y="92.740768"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#565656;fill-opacity:1;stroke-width:0.22608669">f</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.04346848px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#565656;fill-opacity:1;stroke:none;stroke-width:0.22608669"
x="103.3933"
y="109.23534"
id="text5955-4"
transform="matrix(0.99405656,-0.02648471,0.02678334,1.0052654,0,0)"><tspan
sodipodi:role="line"
id="tspan5953-6"
x="103.3933"
y="109.23534"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#565656;fill-opacity:1;stroke-width:0.22608669">g</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.04346848px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#565656;fill-opacity:1;stroke:none;stroke-width:0.22608669"
x="117.87336"
y="63.528061"
id="text5977"
transform="matrix(0.99405656,-0.02648471,0.02678334,1.0052654,0,0)"><tspan
sodipodi:role="line"
id="tspan5975"
x="117.87336"
y="63.528061"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#565656;fill-opacity:1;stroke-width:0.22608669">fg</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.04346848px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#565656;fill-opacity:1;stroke:none;stroke-width:0.22608669"
x="426.73834"
y="87.731384"
id="text5977-2"
transform="matrix(0.99405656,-0.02648471,0.02678334,1.0052654,0,0)"><tspan
sodipodi:role="line"
id="tspan5975-5"
x="426.73834"
y="87.731384"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#565656;fill-opacity:1;stroke-width:0.22608669">F(f)</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.04346848px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#565656;fill-opacity:1;stroke:none;stroke-width:0.22608669"
x="364.82196"
y="103.86156"
id="text5977-2-8"
transform="matrix(0.99405656,-0.02648471,0.02678334,1.0052654,0,0)"><tspan
sodipodi:role="line"
id="tspan5975-5-6"
x="364.82196"
y="103.86156"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#565656;fill-opacity:1;stroke-width:0.22608669">F(g)</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.04346848px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#565656;fill-opacity:1;stroke:none;stroke-width:0.22608669"
x="376.75357"
y="54.723694"
id="text5977-2-8-8"
transform="matrix(0.99405656,-0.02648471,0.02678334,1.0052654,0,0)"><tspan
sodipodi:role="line"
id="tspan5975-5-6-4"
x="376.75357"
y="54.723694"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#565656;fill-opacity:1;stroke-width:0.22608669">F(fg)</tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -0,0 +1,652 @@
<?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="functor_laws_identity.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="2560"
inkscape:window-height="1376"
id="namedview15615"
showgrid="false"
inkscape:zoom="1.588835"
inkscape:cx="230.53891"
inkscape:cy="115.3905"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613" />
<g
id="g42748"
transform="matrix(1.394826,-0.09773156,0.09882424,1.311086,-204.31849,-18.111154)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.32413435;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
cy="104.69768"
cx="122.58374"
transform="matrix(0.9975543,-0.06989584,0.07516265,0.99717129,0,0)"
rx="98.598022"
ry="92.71418" />
<g
id="g42748-8"
transform="matrix(1.394826,-0.09773156,0.09882424,1.311086,125.31318,-37.103397)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.32413435;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
cy="125.67899"
cx="435.70874"
transform="matrix(0.9975543,-0.06989584,0.07516265,0.99717129,0,0)"
rx="98.598022"
ry="92.71418" />
<g
transform="matrix(1.1980364,-0.03336124,0.03108307,1.1262967,224.74343,-15.683482)"
id="g2077-5">
<g
id="g11563-4"
transform="matrix(0.20429216,0,0,0.20280094,51.110938,7.716323)">
<g
stroke-miterlimit="10"
id="g9939-0"
transform="matrix(0.47831212,0,0,0.48430201,139.77588,155.01519)"
style="fill:none;stroke:#6d6d6d;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.06166,0.69487,-0.648,0.06164,394.029,56.19)"
id="path9935-5"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="M 382.5,152.612 C 331.334,225.435 280.133,213.588 257.986,179.516 241.51,154.168 246.13,86.543 317.498,86.173"
transform="matrix(0.03241,1.30729,-1.23778,0.02809,454.669,-133.846)"
id="path9937-9"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
</g>
<text
transform="scale(1.0253645,0.97526295)"
id="text2069-4"
y="69.749985"
x="100.88817"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.07433701px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#5a5a5a;fill-opacity:1;stroke:none;stroke-width:0.15185842"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#5a5a5a;fill-opacity:1;stroke-width:0.15185842"
y="69.749985"
x="100.88817"
id="tspan2067-6"
sodipodi:role="line">ID</tspan></text>
</g>
<g
transform="matrix(1.1980364,-0.03336124,0.03108307,1.1262967,313.0979,-41.374636)"
id="g2077-8-9">
<g
id="g11563-9-2"
transform="matrix(0.20429216,0,0,0.20280094,51.110938,7.716323)">
<g
stroke-miterlimit="10"
id="g9939-6-2"
transform="matrix(0.47831212,0,0,0.48430201,139.77588,155.01519)"
style="fill:none;stroke:#6d6d6d;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.06166,0.69487,-0.648,0.06164,394.029,56.19)"
id="path9935-4-4"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="M 382.5,152.612 C 331.334,225.435 280.133,213.588 257.986,179.516 241.51,154.168 246.13,86.543 317.498,86.173"
transform="matrix(0.03241,1.30729,-1.23778,0.02809,454.669,-133.846)"
id="path9937-3-7"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
</g>
<text
transform="scale(1.0253645,0.97526295)"
id="text2069-3-7"
y="69.749985"
x="100.88817"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.07433701px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#5a5a5a;fill-opacity:1;stroke:none;stroke-width:0.15185842"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#5a5a5a;fill-opacity:1;stroke-width:0.15185842"
y="69.749985"
x="100.88817"
id="tspan2067-3-5"
sodipodi:role="line">ID</tspan></text>
</g>
<g
transform="matrix(1.1980364,-0.03336124,0.03108307,1.1262967,281.6752,9.8841531)"
id="g2077-86-4">
<g
id="g11563-0-8"
transform="matrix(0.20429216,0,0,0.20280094,51.110938,7.716323)">
<g
stroke-miterlimit="10"
id="g9939-4-1"
transform="matrix(0.47831212,0,0,0.48430201,139.77588,155.01519)"
style="fill:none;stroke:#6d6d6d;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.06166,0.69487,-0.648,0.06164,394.029,56.19)"
id="path9935-8-2"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="M 382.5,152.612 C 331.334,225.435 280.133,213.588 257.986,179.516 241.51,154.168 246.13,86.543 317.498,86.173"
transform="matrix(0.03241,1.30729,-1.23778,0.02809,454.669,-133.846)"
id="path9937-8-8"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
</g>
<text
transform="scale(1.0253645,0.97526295)"
id="text2069-8-9"
y="69.749985"
x="100.88817"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.07433701px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#5a5a5a;fill-opacity:1;stroke:none;stroke-width:0.15185842"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#5a5a5a;fill-opacity:1;stroke-width:0.15185842"
y="69.749985"
x="100.88817"
id="tspan2067-9-3"
sodipodi:role="line">ID</tspan></text>
</g>
<g
id="g10229-2"
transform="matrix(0.6894509,-0.04830789,0.04884801,0.64805897,263.22817,41.554923)">
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7"
width="33.724735"
height="35.524086"
x="212.8891"
y="96.631317" />
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-5"
width="33.724735"
height="35.524086"
x="259.32565"
y="17.221956" />
<g
inkscape:transform-center-y="-0.73403693"
inkscape:transform-center-x="-12.157065"
transform="matrix(-0.13566577,0.22680277,-0.32622049,-0.17338087,363.1002,56.29762)"
id="g1482-7-0-1-0-3-8"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0-50"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-96"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1"
width="33.724735"
height="35.524086"
x="136.08681"
y="51.856495" />
<rect
style="opacity:1;fill:#f58235;fill-opacity:1;stroke:#e76524;stroke-width:2.77771711;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164"
width="33.724735"
height="35.524086"
x="130.32214"
y="44.519638" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7-8"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2-5"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-61"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4-8"
width="33.724735"
height="35.524086"
x="291.17325"
y="145.87103" />
<g
inkscape:transform-center-y="-4.576857"
inkscape:transform-center-x="11.40825"
transform="matrix(0.21605455,-0.15220095,0.22774808,0.29088065,224.80816,99.377555)"
id="g1482-7-0-1-0-3-5-7-2-10"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-0-2-2-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-04"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4"
width="33.724735"
height="35.524086"
x="357.07672"
y="97.880478" />
<g
inkscape:transform-center-y="4.5768618"
inkscape:transform-center-x="-11.40825"
transform="matrix(-0.21605455,0.15220095,-0.22774808,-0.29088065,445.35391,166.4118)"
id="g1482-7-0-1-0-3-5-7-2-1-4"
style="display:inline;fill:#dddddd;stroke:#445500;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-9-0-19-0-0-2-2-0-4"
inkscape:connector-curvature="0"
style="stroke:#445500;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-6-4"
inkscape:connector-curvature="0"
style="fill:none;stroke:#445500;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-11.849154"
inkscape:transform-center-x="2.8428186"
transform="matrix(-0.17782756,0.19550462,0.26038086,0.26207354,229.88579,-37.284038)"
id="g1482-7-0-1-0-3-1-6"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-5-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-9-1"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-6.8316466"
inkscape:transform-center-x="10.541054"
transform="matrix(0.2383419,-0.11418335,0.17624638,0.32468131,229.00827,68.523691)"
id="g1482-7-0-1-0-3-5-7-2-4-7"
style="display:inline;fill:#dddddd;stroke:#000080;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-9-0-19-0-0-2-2-9-5"
inkscape:connector-curvature="0"
style="stroke:#000080;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 85.255937,126.08872 C 157.92012,89.606392 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-0-9"
inkscape:connector-curvature="0"
style="fill:none;stroke:#000080;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-12.167418"
inkscape:transform-center-x="0.5354074"
transform="matrix(0.22455705,0.13935147,-0.17868507,0.32334562,251.23249,27.461247)"
id="g1482-7-0-1-0-3-5-5"
style="display:inline;fill:#dddddd;stroke:#6c5353;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-9-0-19-0-0-9"
inkscape:connector-curvature="0"
style="stroke:#6c5353;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-8"
inkscape:connector-curvature="0"
style="fill:none;stroke:#6c5353;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:1;fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8"
width="33.724735"
height="35.524086"
x="206.92822"
y="90.005348" />
<rect
style="opacity:1;fill:#e6e7e8;fill-opacity:1;stroke:#bbbcbe;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-7"
width="33.724735"
height="35.524086"
x="255.48833"
y="12.336374" />
<rect
style="opacity:1;fill:#fce600;fill-opacity:1;stroke:#ffdd00;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1"
width="33.724735"
height="35.524086"
x="351.11584"
y="91.254501" />
<rect
style="opacity:1;fill:#39bced;fill-opacity:1;stroke:#008dd2;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1-5"
width="33.724735"
height="35.524086"
x="286.26047"
y="139.24506" />
</g>
<g
id="g10229"
transform="matrix(0.6894509,-0.04830789,0.04884801,0.64805897,-25.484951,58.70437)">
<circle
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3-6"
r="18.334303"
cy="65.832329"
cx="152.99588" />
<circle
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-6"
r="18.671675"
cy="37.181042"
cx="285.39355" />
<circle
style="fill:#f58235;stroke:#e76524;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3"
r="18.334303"
cy="59.150921"
cx="149.86938" />
<g
inkscape:transform-center-y="-0.73403693"
inkscape:transform-center-x="-12.157065"
transform="matrix(-0.13566577,0.22680277,-0.32622049,-0.17338087,359.95583,54.987467)"
id="g1482-7-0-1-0-3"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4"
r="18.671675"
cy="30.49963"
cx="280.26703" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<circle
style="opacity:0.28400005;fill:#dedede;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605-2"
r="18.334303"
cy="112.26966"
cx="232.31758" />
<circle
style="fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605"
r="18.334303"
cy="105.58823"
cx="227.19109" />
</g>
<g
id="g2077"
transform="matrix(1.1980364,-0.03336124,0.03108307,1.1262967,-59.339695,1.4245135)">
<g
id="g11563"
transform="matrix(0.20429216,0,0,0.20280094,51.110938,7.716323)">
<g
stroke-miterlimit="10"
id="g9939"
transform="matrix(0.47831212,0,0,0.48430201,139.77588,155.01519)"
style="fill:none;stroke:#6d6d6d;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.06166,0.69487,-0.648,0.06164,394.029,56.19)"
id="path9935"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="M 382.5,152.612 C 331.334,225.435 280.133,213.588 257.986,179.516 241.51,154.168 246.13,86.543 317.498,86.173"
transform="matrix(0.03241,1.30729,-1.23778,0.02809,454.669,-133.846)"
id="path9937"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
</g>
<text
transform="scale(1.0253645,0.97526295)"
id="text2069"
y="69.749985"
x="100.88817"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.07433701px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#5a5a5a;fill-opacity:1;stroke:none;stroke-width:0.15185842"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#5a5a5a;fill-opacity:1;stroke-width:0.15185842"
y="69.749985"
x="100.88817"
id="tspan2067"
sodipodi:role="line">ID</tspan></text>
</g>
<g
transform="matrix(1.1980364,-0.03336124,0.03108307,1.1262967,29.014753,-24.26664)"
id="g2077-8">
<g
id="g11563-9"
transform="matrix(0.20429216,0,0,0.20280094,51.110938,7.716323)">
<g
stroke-miterlimit="10"
id="g9939-6"
transform="matrix(0.47831212,0,0,0.48430201,139.77588,155.01519)"
style="fill:none;stroke:#6d6d6d;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.06166,0.69487,-0.648,0.06164,394.029,56.19)"
id="path9935-4"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="M 382.5,152.612 C 331.334,225.435 280.133,213.588 257.986,179.516 241.51,154.168 246.13,86.543 317.498,86.173"
transform="matrix(0.03241,1.30729,-1.23778,0.02809,454.669,-133.846)"
id="path9937-3"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
</g>
<text
transform="scale(1.0253645,0.97526295)"
id="text2069-3"
y="69.749985"
x="100.88817"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.07433701px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#5a5a5a;fill-opacity:1;stroke:none;stroke-width:0.15185842"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#5a5a5a;fill-opacity:1;stroke-width:0.15185842"
y="69.749985"
x="100.88817"
id="tspan2067-3"
sodipodi:role="line">ID</tspan></text>
</g>
<g
transform="matrix(1.1980364,-0.03336124,0.03108307,1.1262967,-2.4079414,26.992148)"
id="g2077-86">
<g
id="g11563-0"
transform="matrix(0.20429216,0,0,0.20280094,51.110938,7.716323)">
<g
stroke-miterlimit="10"
id="g9939-4"
transform="matrix(0.47831212,0,0,0.48430201,139.77588,155.01519)"
style="fill:none;stroke:#6d6d6d;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.06166,0.69487,-0.648,0.06164,394.029,56.19)"
id="path9935-8"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="M 382.5,152.612 C 331.334,225.435 280.133,213.588 257.986,179.516 241.51,154.168 246.13,86.543 317.498,86.173"
transform="matrix(0.03241,1.30729,-1.23778,0.02809,454.669,-133.846)"
id="path9937-8"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
</g>
<text
transform="scale(1.0253645,0.97526295)"
id="text2069-8"
y="69.749985"
x="100.88817"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.07433701px;line-height:1.25;font-family:'HVD Comic Serif Pro';-inkscape-font-specification:'HVD Comic Serif Pro';letter-spacing:0px;word-spacing:0px;fill:#5a5a5a;fill-opacity:1;stroke:none;stroke-width:0.15185842"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#5a5a5a;fill-opacity:1;stroke-width:0.15185842"
y="69.749985"
x="100.88817"
id="tspan2067-9"
sodipodi:role="line">ID</tspan></text>
</g>
<g
transform="matrix(1.195443,-0.08376134,0.08469784,1.1236732,-46.386549,17.127121)"
id="g5890"
style="stroke:#565352;stroke-width:1.45511806;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<g
inkscape:transform-center-y="-10.036944"
inkscape:transform-center-x="6.9305366"
transform="matrix(0.15507894,0.00101572,0.00984768,0.21286639,348.16275,-6.5580619)"
id="g1482-7-0-1-0-3-9-5-0"
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#565352;stroke-width:8.01002884;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z"
id="path1478-7-9-0-19-0-7-4-2"
inkscape:connector-curvature="0"
style="stroke:#565352;stroke-width:8.01002884;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1118.5689,206.40608 C -699.89091,150.96958 -34.287636,168.429 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-05-1"
inkscape:connector-curvature="0"
style="fill:none;stroke:#565352;stroke-width:8.01002884;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-10.036944"
inkscape:transform-center-x="6.9157874"
transform="matrix(0.15474962,0.00100096,0.00980652,0.21286455,272.77361,11.271151)"
id="g1482-7-0-1-0-3-9-5-05"
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#565352;stroke-width:8.01856232;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z"
id="path1478-7-9-0-19-0-7-4-1"
inkscape:connector-curvature="0"
style="stroke:#565352;stroke-width:8.01856232;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1118.5689,206.40608 C -699.89091,150.96958 -34.287636,168.429 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-05-10"
inkscape:connector-curvature="0"
style="fill:none;stroke:#565352;stroke-width:8.01856232;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-10.036944"
inkscape:transform-center-x="6.9305366"
transform="matrix(0.15507894,0.00101572,0.00984768,0.21286639,317.70593,35.786751)"
id="g1482-7-0-1-0-3-9-5-0-8"
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#565352;stroke-width:8.01002884;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z"
id="path1478-7-9-0-19-0-7-4-2-5"
inkscape:connector-curvature="0"
style="stroke:#565352;stroke-width:8.01002884;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1118.5689,206.40608 C -699.89091,150.96958 -34.287636,168.429 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-05-1-0"
inkscape:connector-curvature="0"
style="fill:none;stroke:#565352;stroke-width:8.01002884;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -0,0 +1,444 @@
<?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="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 />
</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="2560"
inkscape:window-height="1376"
id="namedview15615"
showgrid="false"
inkscape:zoom="3.8022575"
inkscape:cx="317.99002"
inkscape:cy="129.06659"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g24413" />
<g
id="g42748"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,-187.05378,-17.734989)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
cy="103.49206"
cx="127.13675"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
id="g42748-8"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,129.58659,-37.361339)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
cy="124.17916"
cx="428.00552"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
id="g10229-2"
transform="matrix(0.66224028,-0.04951389,0.04982698,0.63884464,262.45256,39.818131)">
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7"
width="33.724735"
height="35.524086"
x="212.8891"
y="96.631317" />
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-5"
width="33.724735"
height="35.524086"
x="259.32565"
y="17.221956" />
<g
inkscape:transform-center-y="-0.73403693"
inkscape:transform-center-x="-12.157065"
transform="matrix(-0.13566577,0.22680277,-0.32622049,-0.17338087,363.1002,56.29762)"
id="g1482-7-0-1-0-3-8"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0-50"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-96"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1"
width="33.724735"
height="35.524086"
x="136.08681"
y="51.856495" />
<rect
style="opacity:1;fill:#f58235;fill-opacity:1;stroke:#e76524;stroke-width:2.77771711;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164"
width="33.724735"
height="35.524086"
x="130.32214"
y="44.519638" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7-8"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2-5"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-61"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4-8"
width="33.724735"
height="35.524086"
x="291.17325"
y="145.87103" />
<g
inkscape:transform-center-y="-4.576857"
inkscape:transform-center-x="11.40825"
transform="matrix(0.21605455,-0.15220095,0.22774808,0.29088065,224.80816,99.377555)"
id="g1482-7-0-1-0-3-5-7-2-10"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-0-2-2-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-04"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4"
width="33.724735"
height="35.524086"
x="357.07672"
y="97.880478" />
<g
inkscape:transform-center-y="4.5768618"
inkscape:transform-center-x="-11.40825"
transform="matrix(-0.21605455,0.15220095,-0.22774808,-0.29088065,445.35391,166.4118)"
id="g1482-7-0-1-0-3-5-7-2-1-4"
style="display:inline;fill:#dddddd;stroke:#445500;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-9-0-19-0-0-2-2-0-4"
inkscape:connector-curvature="0"
style="stroke:#445500;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-6-4"
inkscape:connector-curvature="0"
style="fill:none;stroke:#445500;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-11.849154"
inkscape:transform-center-x="2.8428186"
transform="matrix(-0.17782756,0.19550462,0.26038086,0.26207354,229.88579,-37.284038)"
id="g1482-7-0-1-0-3-1-6"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-5-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-9-1"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-6.8316466"
inkscape:transform-center-x="10.541054"
transform="matrix(0.2383419,-0.11418335,0.17624638,0.32468131,229.00827,68.523691)"
id="g1482-7-0-1-0-3-5-7-2-4-7"
style="display:inline;fill:#dddddd;stroke:#000080;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-9-0-19-0-0-2-2-9-5"
inkscape:connector-curvature="0"
style="stroke:#000080;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 85.255937,126.08872 C 157.92012,89.606392 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-0-9"
inkscape:connector-curvature="0"
style="fill:none;stroke:#000080;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-12.167418"
inkscape:transform-center-x="0.5354074"
transform="matrix(0.22455705,0.13935147,-0.17868507,0.32334562,251.23249,27.461247)"
id="g1482-7-0-1-0-3-5-5"
style="display:inline;fill:#dddddd;stroke:#6c5353;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-9-0-19-0-0-9"
inkscape:connector-curvature="0"
style="stroke:#6c5353;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-8"
inkscape:connector-curvature="0"
style="fill:none;stroke:#6c5353;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:1;fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8"
width="33.724735"
height="35.524086"
x="206.92822"
y="90.005348" />
<rect
style="opacity:1;fill:#e6e7e8;fill-opacity:1;stroke:#bbbcbe;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-7"
width="33.724735"
height="35.524086"
x="255.48833"
y="12.336374" />
<rect
style="opacity:1;fill:#fce600;fill-opacity:1;stroke:#ffdd00;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1"
width="33.724735"
height="35.524086"
x="351.11584"
y="91.254501" />
<rect
style="opacity:1;fill:#39bced;fill-opacity:1;stroke:#008dd2;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1-5"
width="33.724735"
height="35.524086"
x="286.26047"
y="139.24506" />
</g>
<g
id="g24413"
style="stroke:#797979;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(1.1482622,-0.08585242,0.0863953,1.1076964,-35.507432,15.579621)">
<g
style="display:inline;opacity:1;fill:#dddddd;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-4"
transform="matrix(0.17388536,8.9640524e-4,0.01085518,0.21285148,346.44102,36.016397)"
inkscape:transform-center-x="7.7707699"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-3"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-3"
d="M -1065.3687,201.07536 C -646.69068,145.63886 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:1;fill:#dddddd;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-4-1"
transform="matrix(0.17388536,8.9640884e-4,0.01085518,0.21285148,340.23969,26.541313)"
inkscape:transform-center-x="7.7707699"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-3-9"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-3-6"
d="M -1065.3687,201.07536 C -646.69068,145.63886 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:1;fill:#dddddd;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-4-4"
transform="matrix(0.17388536,8.9640524e-4,0.01085518,0.21285148,310.09139,43.467019)"
inkscape:transform-center-x="7.7707699"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-3-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-3-7"
d="M -1055.8253,208.10394 C -637.14728,152.66744 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g10229"
transform="matrix(0.66224028,-0.04951389,0.04982698,0.63884464,-14.879632,57.515751)">
<circle
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3-6"
r="18.334303"
cy="65.832329"
cx="152.99588" />
<circle
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-6"
r="18.671675"
cy="29.899172"
cx="279.98334" />
<circle
style="fill:#f58235;stroke:#e76524;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3"
r="18.334303"
cy="59.150921"
cx="149.86938" />
<g
inkscape:transform-center-y="-0.91930168"
inkscape:transform-center-x="-11.34747"
transform="matrix(-0.13229393,0.28696148,-0.30096217,-0.20880191,353.31527,43.432681)"
id="g1482-7-0-1-0-3"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4"
r="18.671675"
cy="21.904219"
cx="275.61765" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<circle
style="opacity:0.28400005;fill:#dedede;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605-2"
r="18.334303"
cy="112.26966"
cx="232.31758" />
<circle
style="fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605"
r="18.334303"
cy="105.58823"
cx="227.19109" />
</g>
<g
inkscape:transform-center-y="-11.493255"
inkscape:transform-center-x="4.2595795"
transform="matrix(-0.09320723,0.14442176,0.20086077,0.13395035,125.75349,22.558581)"
id="g1482-7-0-1-0-3-1-6-0"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-5-3-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 94.492671,73.357175 C 144.06426,61.281052 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-9-1-9"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,289 @@
<?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="functor_morphisms_formal.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="2560"
inkscape:window-height="1376"
id="namedview15615"
showgrid="false"
inkscape:zoom="1.344301"
inkscape:cx="317.99002"
inkscape:cy="129.06659"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613" />
<g
id="g42748"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,-190.0293,-17.734989)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.36772394;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
cy="105.84412"
cx="144.45174"
transform="matrix(0.9974512,-0.07135198,0.08125089,0.99669368,0,0)"
rx="101.35651"
ry="93.619041" />
<g
id="g42748-8"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,126.61107,-37.361339)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26691675;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
cy="126.73931"
cx="419.09665"
transform="matrix(0.99710342,-0.0760577,0.07622763,0.99709044,0,0)"
rx="94.003296"
ry="92.516663" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.90267372;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-9"
cy="55.508862"
cx="168.01706"
transform="matrix(0.99956584,-0.02946394,0.03267187,0.99946613,0,0)"
rx="41.349377"
ry="39.898361" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.90267372;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-9-3"
cy="63.706638"
cx="447.48483"
transform="matrix(0.99956584,-0.02946394,0.03267187,0.99946613,0,0)"
rx="41.349377"
ry="39.898361" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.90267372;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-9-3-3-8"
cy="147.81586"
cx="414.81778"
transform="matrix(0.99956584,-0.02946394,0.03267187,0.99946613,0,0)"
rx="41.349377"
ry="39.898361" />
<g
id="g9276"
transform="rotate(2.5874891,603.02931,450.92371)">
<g
inkscape:transform-center-y="-0.73403693"
inkscape:transform-center-x="-12.157065"
transform="matrix(-0.07854244,0.15160907,-0.22467539,-0.09461099,505.71728,57.80506)"
id="g1482-7-0-1-0-3-8"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0-50"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-96"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
style="display:inline;opacity:1;fill:#dddddd;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-4"
transform="matrix(0.19974343,-0.01393553,0.03085396,0.23484287,365.40934,25.732054)"
inkscape:transform-center-x="7.7707699"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-3"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-3"
d="M -1065.3687,201.07536 C -646.69068,145.63886 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:transform-center-y="-0.91930168"
inkscape:transform-center-x="-11.34747"
transform="matrix(-0.07331195,0.18987419,-0.20971324,-0.11849017,221.26409,67.768473)"
id="g1482-7-0-1-0-3"
style="display:inline;fill:#dddddd;stroke:#483737;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-9-0-19-0"
inkscape:connector-curvature="0"
style="stroke:#483737;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7"
inkscape:connector-curvature="0"
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
</g>
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.90267372;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-9-3-3"
cy="149.77068"
cx="141.64496"
transform="matrix(0.99956584,-0.02946394,0.03267187,0.99946613,0,0)"
rx="41.349377"
ry="39.898361" />
<g
id="g9287"
transform="rotate(2.5874891,135.83547,-21.001504)">
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.15066374,-0.08653506,-0.13633025,0.19710424,492.30004,103.37863)"
id="g1482-7-0-1-0-3-5-7-8"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2-5"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-61"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
style="display:inline;opacity:1;fill:#dddddd;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-4-4"
transform="matrix(0.19974343,-0.01393553,0.03085396,0.23484287,359.03036,81.553064)"
inkscape:transform-center-x="7.7707699"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-3-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-3-7"
d="M -1055.8253,208.10394 C -637.14728,152.66744 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.15066374,-0.08653506,-0.13633025,0.19710424,214.96785,121.07625)"
id="g1482-7-0-1-0-3-5-7"
style="display:inline;fill:#dddddd;stroke:#aa0000;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-9-0-19-0-0-2"
inkscape:connector-curvature="0"
style="stroke:#aa0000;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#aa0000;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
</g>
<g
id="g9265"
transform="rotate(2.5874891,1188.4764,317.3606)">
<g
inkscape:transform-center-y="-11.849154"
inkscape:transform-center-x="2.8428186"
transform="matrix(-0.10802317,0.13370201,0.18549303,0.15453181,412.83444,4.6168834)"
id="g1482-7-0-1-0-3-1-6"
style="display:inline;fill:#dddddd;stroke:#806600;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-9-0-19-0-5-3"
inkscape:connector-curvature="0"
style="stroke:#806600;stroke-width:35.52600098" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-9-1"
inkscape:connector-curvature="0"
style="fill:none;stroke:#806600;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
style="display:inline;opacity:1;fill:#dddddd;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-4-1"
transform="matrix(0.19974343,-0.01393553,0.03085396,0.23484287,357.46999,15.768937)"
inkscape:transform-center-x="7.7707699"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-3-9"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#4d4d4d;stroke-width:10.39722061;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-3-6"
d="M -1065.3687,201.07536 C -646.69068,145.63886 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#806600;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3-1-6-0"
transform="matrix(-0.09320723,0.14442176,0.20086077,0.13395035,125.75349,22.558581)"
inkscape:transform-center-x="4.2595795"
inkscape:transform-center-y="-11.493255">
<path
style="stroke:#806600;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-5-3-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:#806600;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-9-1-9"
d="M 94.492671,73.357175 C 144.06426,61.281052 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>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,244 @@
<?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="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></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="2560"
inkscape:window-height="1376"
id="namedview15615"
showgrid="false"
inkscape:zoom="2.2809681"
inkscape:cx="217.69708"
inkscape:cy="115.3905"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g24413" />
<g
id="g42748"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,-178.44441,-15.133501)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
cy="106.72823"
cx="135.51779"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
id="g42748-8"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,138.19596,-34.759846)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
cy="127.41534"
cx="436.38657"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
id="g24413"
style="stroke:#797979;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(1.1482622,-0.08585242,0.0863953,1.1076964,-26.898052,18.181114)">
<g
style="display:inline;opacity:0.95400002;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9"
transform="matrix(0.15815945,0.00363238,0.01383482,0.16867354,347.53698,20.416755)"
inkscape:transform-center-x="7.0770773"
inkscape:transform-center-y="-7.9306638">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5"
d="M -1074.4393,218.2691 C -655.7613,162.8326 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.95400002;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-30"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,322.54449,55.801463)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-30"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-92"
d="M -1116.0146,210.41161 C -697.33657,154.97511 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.95400002;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-5"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,278.94597,31.010149)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05"
d="M -1118.5689,206.40608 C -699.89091,150.96958 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g10229-2"
transform="matrix(0.66224028,-0.04951389,0.04982698,0.63884464,271.06193,42.419626)">
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7"
width="33.724735"
height="35.524086"
x="212.8891"
y="96.631317" />
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-5"
width="33.724735"
height="35.524086"
x="259.32565"
y="17.221956" />
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1"
width="33.724735"
height="35.524086"
x="136.08681"
y="51.856495" />
<rect
style="opacity:1;fill:#f58235;fill-opacity:1;stroke:#e76524;stroke-width:2.77771711;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164"
width="33.724735"
height="35.524086"
x="130.32214"
y="44.519638" />
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4-8"
width="33.724735"
height="35.524086"
x="291.17325"
y="145.87103" />
<rect
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4"
width="33.724735"
height="35.524086"
x="357.07672"
y="97.880478" />
<rect
style="opacity:1;fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8"
width="33.724735"
height="35.524086"
x="206.92822"
y="90.005348" />
<rect
style="opacity:1;fill:#e6e7e8;fill-opacity:1;stroke:#bbbcbe;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-7"
width="33.724735"
height="35.524086"
x="255.48833"
y="12.336374" />
<rect
style="opacity:1;fill:#fce600;fill-opacity:1;stroke:#ffdd00;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1"
width="33.724735"
height="35.524086"
x="351.11584"
y="91.254501" />
<rect
style="opacity:1;fill:#39bced;fill-opacity:1;stroke:#008dd2;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1-5"
width="33.724735"
height="35.524086"
x="286.26047"
y="139.24506" />
</g>
<g
id="g10229"
transform="matrix(0.66224028,-0.04951389,0.04982698,0.63884464,-6.2702567,60.117246)">
<circle
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3-6"
r="18.334303"
cy="65.832329"
cx="152.99588" />
<circle
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-6"
r="18.671675"
cy="29.899172"
cx="279.98334" />
<circle
style="fill:#f58235;stroke:#e76524;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3"
r="18.334303"
cy="59.150921"
cx="149.86938" />
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4"
r="18.671675"
cy="21.904219"
cx="275.61765" />
<circle
style="opacity:0.28400005;fill:#dedede;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605-2"
r="18.334303"
cy="112.26966"
cx="232.31758" />
<circle
style="fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605"
r="18.334303"
cy="105.58823"
cx="227.19109" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,528 @@
<?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="order_isomorphism.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="1920"
inkscape:window-height="1016"
id="namedview15615"
showgrid="false"
inkscape:zoom="2.2636556"
inkscape:cx="222.06387"
inkscape:cy="62.469482"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613" />
<g
id="g42748"
transform="matrix(1.1667859,0,0,1.1667859,-128.96393,-40.070981)" />
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
r="82.27652"
cy="96.532555"
cx="165.20418" />
<g
id="g42748-8"
transform="matrix(1.1667859,0,0,1.1667859,146.51886,-36.437748)" />
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
r="82.27652"
cy="100.16579"
cx="403.5" />
<g
id="g24413"
style="stroke-width:0.7;stroke-miterlimit:10;stroke-dasharray:none;stroke:#797979;stroke-opacity:1">
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,350.15926,12.31869)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5"
d="M -1074.4393,218.2691 C -655.7613,162.8326 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.85537764;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-48"
transform="matrix(0.15491724,8.9640524e-4,0.00967106,0.21285148,404.34408,59.403543)"
inkscape:transform-center-x="6.9230971"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.85537764;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-88"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.85537764;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-9"
d="M -1074.4393,218.2691 C -655.7613,162.8326 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-7"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,368.70762,85.935732)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-64"
d="M -1122.1264,218.46993 C -703.44841,163.03343 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.77;fill:#dddddd;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-30"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,322.54449,55.801463)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-30"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-92"
d="M -1116.0146,210.41161 C -697.33657,154.97511 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-5"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,278.94597,31.010149)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686944;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05"
d="M -1118.5689,206.40608 C -699.89091,150.96958 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<path
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5"
d="m 190.41254,56.769841 c -0.61537,0.362597 -1.26634,0.707512 -1.93938,1.044617 0.69322,0.232955 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.586464 -0.18353,-1.039469 -0.23078,-1.680487 z" />
<path
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-4"
d="m 115.37894,72.430021 c -0.61537,0.362597 -1.26634,0.707512 -1.93938,1.044617 0.69322,0.232955 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.586464 -0.18353,-1.039469 -0.23078,-1.680487 z" />
<path
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-8"
d="m 159.7755,97.825582 c -0.61537,0.3626 -1.26634,0.70752 -1.93938,1.04462 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68049 z" />
<path
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-1"
d="m 202.6191,130.16382 c -0.61537,0.3626 -1.26634,0.70752 -1.93938,1.04462 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68049 z" />
<path
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-4-9"
d="m 245.61488,103.45947 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
inkscape:transform-center-x="-5.2144259"
inkscape:transform-center-y="-0.16085094" />
</g>
<g
id="g10229-2"
transform="matrix(0.57673261,0,0,0.57673261,256.34647,41.750137)">
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7"
width="33.724735"
height="35.524086"
x="212.8891"
y="96.631317" />
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-5"
width="33.724735"
height="35.524086"
x="259.32565"
y="17.221956" />
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1"
width="33.724735"
height="35.524086"
x="136.08681"
y="51.856495" />
<rect
style="opacity:1;fill:#f58235;fill-opacity:1;stroke:#e76524;stroke-width:2.77771711;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164"
width="33.724735"
height="35.524086"
x="130.32214"
y="44.519638" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7-8"
style="display:inline;fill:#dddddd;stroke:#5e5e5e;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1">
<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-9-0-19-0-0-2-5"
inkscape:connector-curvature="0"
style="stroke:#5e5e5e;stroke-width:35.52600098;stroke-opacity:1" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-61"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#5e5e5e;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4-8"
width="33.724735"
height="35.524086"
x="291.17325"
y="145.87103" />
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4"
width="33.724735"
height="35.524086"
x="357.07672"
y="97.880478" />
<g
inkscape:transform-center-y="4.5768618"
inkscape:transform-center-x="-11.40825"
transform="matrix(-0.21605455,0.15220095,-0.22774808,-0.29088065,445.35391,166.4118)"
id="g1482-7-0-1-0-3-5-7-2-1-4"
style="display:inline;fill:#dddddd;stroke:#5e5e5e;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1">
<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-9-0-19-0-0-2-2-0-4"
inkscape:connector-curvature="0"
style="stroke:#5e5e5e;stroke-width:35.52600098;stroke-opacity:1" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-6-4"
inkscape:connector-curvature="0"
style="fill:none;stroke:#5e5e5e;stroke-width:10.64900017;paint-order:markers fill stroke;stroke-opacity:1" />
</g>
<g
inkscape:transform-center-y="-11.849154"
inkscape:transform-center-x="2.8428186"
transform="matrix(-0.17782756,0.19550462,0.26038086,0.26207354,229.88579,-37.284038)"
id="g1482-7-0-1-0-3-1-6"
style="display:inline;fill:#dddddd;stroke:#5e5e5e;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1">
<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-9-0-19-0-5-3"
inkscape:connector-curvature="0"
style="stroke:#5e5e5e;stroke-width:35.52600098;stroke-opacity:1" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-9-1"
inkscape:connector-curvature="0"
style="fill:none;stroke:#5e5e5e;stroke-width:10.64900017;paint-order:markers fill stroke;stroke-opacity:1" />
</g>
<g
inkscape:transform-center-y="-6.8316466"
inkscape:transform-center-x="10.541054"
transform="matrix(0.2383419,-0.11418335,0.17624638,0.32468131,229.00827,68.523691)"
id="g1482-7-0-1-0-3-5-7-2-4-7"
style="display:inline;fill:#dddddd;stroke:#5e5e5e;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1">
<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-9-0-19-0-0-2-2-9-5"
inkscape:connector-curvature="0"
style="stroke:#5e5e5e;stroke-width:35.52600098;stroke-opacity:1" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 85.255937,126.08872 C 157.92012,89.606392 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-0-9"
inkscape:connector-curvature="0"
style="fill:none;stroke:#5e5e5e;stroke-width:10.64900017;paint-order:markers fill stroke;stroke-opacity:1" />
</g>
<g
inkscape:transform-center-y="-12.167418"
inkscape:transform-center-x="0.5354074"
transform="matrix(0.22455705,0.13935147,-0.17868507,0.32334562,251.23249,27.461247)"
id="g1482-7-0-1-0-3-5-5"
style="display:inline;fill:#dddddd;stroke:#5e5e5e;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1">
<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-9-0-19-0-0-9"
inkscape:connector-curvature="0"
style="stroke:#5e5e5e;stroke-width:35.52600098;stroke-opacity:1" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-8"
inkscape:connector-curvature="0"
style="fill:none;stroke:#5e5e5e;stroke-width:10.64900017;paint-order:markers fill stroke;stroke-opacity:1" />
</g>
<rect
style="opacity:1;fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8"
width="33.724735"
height="35.524086"
x="206.92822"
y="90.005348" />
<rect
style="opacity:1;fill:#e6e7e8;fill-opacity:1;stroke:#bbbcbe;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-7"
width="33.724735"
height="35.524086"
x="255.48833"
y="12.336374" />
<rect
style="opacity:1;fill:#fce600;fill-opacity:1;stroke:#ffdd00;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1"
width="33.724735"
height="35.524086"
x="351.11584"
y="91.254501" />
<rect
style="opacity:1;fill:#39bced;fill-opacity:1;stroke:#008dd2;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1-5"
width="33.724735"
height="35.524086"
x="286.26047"
y="139.24506" />
</g>
<g
id="g10229"
transform="matrix(0.57673261,0,0,0.57673261,15.02822,39.023637)">
<circle
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;opacity:0.203"
id="circle15603-3-6"
r="18.334303"
cy="65.832329"
cx="152.99588" />
<circle
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;opacity:0.203"
id="circle15601-9-4-6"
r="18.671675"
cy="37.181042"
cx="285.39355" />
<circle
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;opacity:0.203"
id="circle15605-4-4"
r="18.334303"
cy="163.15147"
cx="306.88229" />
<circle
transform="rotate(-84.232776)"
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.99253249;stroke-miterlimit:10;opacity:0.203"
id="circle3379-9"
r="16.369385"
cy="392.34567"
cx="-80.241524" />
<circle
style="fill:#f58235;stroke:#e76524;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3"
r="18.334303"
cy="59.150921"
cx="149.86938" />
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4"
r="18.671675"
cy="30.49963"
cx="280.26703" />
<g
inkscape:transform-center-y="-4.5768564"
inkscape:transform-center-x="-11.408259"
transform="matrix(-0.21605455,-0.15220095,-0.22774808,0.29088065,290.70694,52.449757)"
id="g1482-7-0-1-0-3-5-7"
style="display:inline;fill:#dddddd;stroke:#7c7c7c;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1">
<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-9-0-19-0-0-2"
inkscape:connector-curvature="0"
style="stroke:#7c7c7c;stroke-width:35.52600098;stroke-opacity:1" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7"
inkscape:connector-curvature="0"
style="fill:none;fill-opacity:1;stroke:#7c7c7c;stroke-width:10.64900017;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<circle
style="fill:#dedede;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1;opacity:0.284"
id="circle15605-2"
r="18.334303"
cy="112.26966"
cx="232.31758" />
<g
inkscape:transform-center-y="-12.167418"
inkscape:transform-center-x="0.5354074"
transform="matrix(0.22455705,0.13935147,-0.17868507,0.32334562,251.23249,27.461247)"
id="g1482-7-0-1-0-3-5"
style="display:inline;fill:#dddddd;stroke:#7c7c7c;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1">
<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-9-0-19-0-0"
inkscape:connector-curvature="0"
style="stroke:#7c7c7c;stroke-width:35.52600098;stroke-opacity:1" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4"
inkscape:connector-curvature="0"
style="fill:none;stroke:#7c7c7c;stroke-width:10.64900017;paint-order:markers fill stroke;stroke-opacity:1" />
</g>
<circle
style="fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605"
r="18.334303"
cy="105.58823"
cx="227.19109" />
<g
inkscape:transform-center-y="4.5768618"
inkscape:transform-center-x="-11.40825"
transform="matrix(-0.21605455,0.15220095,-0.22774808,-0.29088065,442.7336,167.45992)"
id="g1482-7-0-1-0-3-5-7-2-1"
style="display:inline;fill:#dddddd;stroke:#7c7c7c;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1">
<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-9-0-19-0-0-2-2-0"
inkscape:connector-curvature="0"
style="stroke:#7c7c7c;stroke-width:35.52600098;stroke-opacity:1" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-6"
inkscape:connector-curvature="0"
style="fill:none;stroke:#7c7c7c;stroke-width:10.64900017;paint-order:markers fill stroke;stroke-opacity:1" />
</g>
<circle
transform="rotate(-84.232776)"
style="fill:#fce600;stroke:#ffdd00;stroke-width:3.99253249;stroke-miterlimit:10"
id="circle3379"
r="16.369385"
cy="386.25748"
cx="-74.496361" />
<g
inkscape:transform-center-y="-11.849154"
inkscape:transform-center-x="2.8428186"
transform="matrix(-0.17782756,0.19550462,0.26038086,0.26207354,230.93391,-39.380283)"
id="g1482-7-0-1-0-3-1"
style="display:inline;fill:#dddddd;stroke:#7c7c7c;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1">
<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-9-0-19-0-5"
inkscape:connector-curvature="0"
style="stroke:#7c7c7c;stroke-width:35.52600098;stroke-opacity:1" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-9"
inkscape:connector-curvature="0"
style="fill:none;stroke:#7c7c7c;stroke-width:10.64900017;paint-order:markers fill stroke;stroke-opacity:1" />
</g>
<g
inkscape:transform-center-y="-6.8316466"
inkscape:transform-center-x="10.541054"
transform="matrix(0.2383419,-0.11418335,0.17624638,0.32468131,239.75153,70.619936)"
id="g1482-7-0-1-0-3-5-7-2-4"
style="display:inline;fill:#dddddd;stroke:#7c7c7c;stroke-width:6.38899994;stroke-miterlimit:10;stroke-opacity:1">
<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-9-0-19-0-0-2-2-9"
inkscape:connector-curvature="0"
style="stroke:#7c7c7c;stroke-width:35.52600098;stroke-opacity:1" />
<path
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
sodipodi:nodetypes="cc"
d="M 85.255937,126.08872 C 157.92012,89.606392 277.68509,72.076365 317.498,86.173"
id="path1480-1-3-1-5-7-4-7-6-0"
inkscape:connector-curvature="0"
style="fill:none;stroke:#7c7c7c;stroke-width:10.64900017;paint-order:markers fill stroke;stroke-opacity:1" />
</g>
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15605-4"
r="18.334303"
cy="158.23784"
cx="301.04865" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,329 @@
<?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="set_isomorphism.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="1920"
inkscape:window-height="1016"
id="namedview15615"
showgrid="false"
inkscape:zoom="5.4733964"
inkscape:cx="210.93121"
inkscape:cy="99.903122"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613" />
<g
id="g42748"
transform="matrix(1.1667859,0,0,1.1667859,-128.96393,-40.070981)" />
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
r="82.27652"
cy="96.532555"
cx="165.20418" />
<g
id="g42748-8"
transform="matrix(1.1667859,0,0,1.1667859,146.51886,-36.437748)" />
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
r="82.27652"
cy="100.16579"
cx="403.5" />
<g
id="g10229-2"
transform="matrix(0.57673261,0,0,0.57673261,256.34647,41.750137)">
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7"
width="33.724735"
height="35.524086"
x="212.8891"
y="96.631317" />
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-5"
width="33.724735"
height="35.524086"
x="259.32565"
y="17.221956" />
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1"
width="33.724735"
height="35.524086"
x="136.08681"
y="51.856495" />
<rect
style="opacity:1;fill:#f58235;fill-opacity:1;stroke:#e76524;stroke-width:2.77771711;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164"
width="33.724735"
height="35.524086"
x="130.32214"
y="44.519638" />
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4-8"
width="33.724735"
height="35.524086"
x="291.17325"
y="145.87103" />
<rect
style="opacity:0.23;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4"
width="33.724735"
height="35.524086"
x="357.07672"
y="97.880478" />
<rect
style="opacity:1;fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8"
width="33.724735"
height="35.524086"
x="206.92822"
y="90.005348" />
<rect
style="opacity:1;fill:#e6e7e8;fill-opacity:1;stroke:#bbbcbe;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-7"
width="33.724735"
height="35.524086"
x="255.48833"
y="12.336374" />
<rect
style="opacity:1;fill:#fce600;fill-opacity:1;stroke:#ffdd00;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1"
width="33.724735"
height="35.524086"
x="351.11584"
y="91.254501" />
<rect
style="opacity:1;fill:#39bced;fill-opacity:1;stroke:#008dd2;stroke-width:2.77704477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1-5"
width="33.724735"
height="35.524086"
x="286.26047"
y="139.24506" />
</g>
<g
transform="translate(0.12327447,-2.0032111)"
id="g24413"
style="stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,350.15926,12.31869)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5"
d="M -1074.4393,218.2691 C -655.7613,162.8326 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.85537767;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-48"
transform="matrix(0.15491724,8.9640524e-4,0.00967106,0.21285148,404.34408,59.403543)"
inkscape:transform-center-x="6.9230971"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.85537767;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-88"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.85537767;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-9"
d="M -1074.4393,218.2691 C -655.7613,162.8326 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-7"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,368.70762,85.935732)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-64"
d="M -1122.1264,218.46993 C -703.44841,163.03343 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.76999996;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-30"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,322.54449,55.801463)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-30"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-92"
d="M -1116.0146,210.41161 C -697.33657,154.97511 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-5"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,278.94597,31.010149)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05"
d="M -1118.5689,206.40608 C -699.89091,150.96958 -34.287636,168.429 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<path
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5"
d="m 190.41254,56.769841 c -0.61537,0.362597 -1.26634,0.707512 -1.93938,1.044617 0.69322,0.232955 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.586464 -0.18353,-1.039469 -0.23078,-1.680487 z" />
<path
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-4"
d="m 115.37894,72.430021 c -0.61537,0.362597 -1.26634,0.707512 -1.93938,1.044617 0.69322,0.232955 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.586464 -0.18353,-1.039469 -0.23078,-1.680487 z" />
<path
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-8"
d="m 159.7755,97.825582 c -0.61537,0.3626 -1.26634,0.70752 -1.93938,1.04462 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68049 z" />
<path
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-1"
d="m 202.6191,130.16382 c -0.61537,0.3626 -1.26634,0.70752 -1.93938,1.04462 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68049 z" />
<path
style="display:inline;opacity:0.919;fill:#dddddd;stroke:#797979;stroke-width:0.69999999;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-5-4-9"
d="m 245.61488,103.45947 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
inkscape:transform-center-x="-5.2144259"
inkscape:transform-center-y="-0.16085094" />
</g>
<g
id="g10229"
transform="matrix(0.57673261,0,0,0.57673261,15.02822,39.023637)">
<circle
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;opacity:0.203"
id="circle15603-3-6"
r="18.334303"
cy="65.832329"
cx="152.99588" />
<circle
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;opacity:0.203"
id="circle15601-9-4-6"
r="18.671675"
cy="37.181042"
cx="285.39355" />
<circle
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;opacity:0.203"
id="circle15605-4-4"
r="18.334303"
cy="163.15147"
cx="306.88229" />
<circle
transform="rotate(-84.232776)"
style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:3.99253249;stroke-miterlimit:10;opacity:0.203"
id="circle3379-9"
r="16.369385"
cy="392.34567"
cx="-80.241524" />
<circle
style="fill:#f58235;stroke:#e76524;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15603-3"
r="18.334303"
cy="59.150921"
cx="149.86938" />
<circle
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:3.39405203;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4"
r="18.671675"
cy="30.49963"
cx="280.26703" />
<circle
style="fill:#dedede;fill-opacity:1;stroke:none;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1;opacity:0.284"
id="circle15605-2"
r="18.334303"
cy="112.26966"
cx="232.31758" />
<circle
style="fill:#ab6510;fill-opacity:1;stroke:#81510b;stroke-width:2.57022929;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605"
r="18.334303"
cy="105.58823"
cx="227.19109" />
<circle
transform="rotate(-84.232776)"
style="fill:#fce600;stroke:#ffdd00;stroke-width:3.99253249;stroke-miterlimit:10"
id="circle3379"
r="16.369385"
cy="386.25748"
cx="-74.496361" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:2.57022929;stroke-miterlimit:10"
id="circle15605-4"
r="18.334303"
cy="158.23784"
cx="301.04865" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB