diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2021-10-08 20:50:37 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-07 10:44:52 +0000 |
commit | eec7affb53e406c72c20d10fc14d730ade1761b0 (patch) | |
tree | 3a35fa17bb50ddd1d7db56ea7412f78ab588f022 | |
parent | 3c3e8c4f39405c52f66b3dac655fdd9ee91c8f71 (diff) | |
download | poky-eec7affb53e406c72c20d10fc14d730ade1761b0.tar.gz |
manuals: start of documentation standards document
This first version specifies how to create consistent SGV graphics
(From yocto-docs rev: 370b9e34e9092c9eed22df2e8b2d0bb979487e5c)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/README | 13 | ||||
-rw-r--r-- | documentation/standards.md | 103 | ||||
-rw-r--r-- | documentation/template/template.svg | 1160 |
3 files changed, 1273 insertions, 3 deletions
diff --git a/documentation/README b/documentation/README index 2d9eb887b2..fccece0c9e 100644 --- a/documentation/README +++ b/documentation/README | |||
@@ -56,9 +56,16 @@ poky.yaml | |||
56 | This file defines variables used for documentation production. The variables | 56 | This file defines variables used for documentation production. The variables |
57 | are used to define release pathnames, URLs for the published manuals, etc. | 57 | are used to define release pathnames, URLs for the published manuals, etc. |
58 | 58 | ||
59 | template | 59 | standards.md |
60 | ======== | 60 | ============ |
61 | Contains various templates, fonts, and some old PNG files. | 61 | |
62 | This file specifies some rules to follow when contributing to the documentation. | ||
63 | |||
64 | template/ | ||
65 | ========= | ||
66 | |||
67 | Contains a template.svg, to make it easier to create consistent | ||
68 | SVG diagrams. | ||
62 | 69 | ||
63 | Sphinx | 70 | Sphinx |
64 | ====== | 71 | ====== |
diff --git a/documentation/standards.md b/documentation/standards.md new file mode 100644 index 0000000000..a2274f6d6e --- /dev/null +++ b/documentation/standards.md | |||
@@ -0,0 +1,103 @@ | |||
1 | # Standards for contributing to Yocto Project documentation | ||
2 | |||
3 | This document attemps to standardize the way the Yocto Project | ||
4 | documentation is created. | ||
5 | |||
6 | It is currently a work in progress. | ||
7 | |||
8 | ## Text standards | ||
9 | |||
10 | This section has not been filled yet | ||
11 | |||
12 | ## ReStructured Text Syntax standards | ||
13 | |||
14 | This section has not been filled yet | ||
15 | |||
16 | ## Adding screenshots | ||
17 | |||
18 | The preferred format for adding screenshots is | ||
19 | [Portable Network Graphics (PNG)](https://en.wikipedia.org/wiki/Portable_Network_Graphics). | ||
20 | Compared to the JPEG format, PNG is lossless and compresses screenshots better. | ||
21 | |||
22 | Screenshots are stored in a `figures/` subdirectory. | ||
23 | |||
24 | To include a screenshot in PNG format: | ||
25 | |||
26 | .. image:: figures/user-configuration.png | ||
27 | :align: center | ||
28 | |||
29 | Depending on the size of the image, you may also shrink it | ||
30 | to prevent it from filling the whole page width: | ||
31 | |||
32 | :scale: 50% | ||
33 | |||
34 | For some types of screenshots, for example showing | ||
35 | programs displaying photographs or playing video, the JPEG | ||
36 | format may be more appropriate, because it is better at | ||
37 | compressing real-life images: | ||
38 | |||
39 | .. image:: figures/vlc.jpg | ||
40 | :align: center | ||
41 | :scale: 75% | ||
42 | |||
43 | ## Adding new diagrams | ||
44 | |||
45 | New diagrams should be added in | ||
46 | [Scalable Vector Graphics (SVG) format](https://en.wikipedia.org/wiki/Scalable_Vector_Graphics). | ||
47 | Thanks to this, diagrams render nicely at any zoom level on generated documentation, | ||
48 | instead of being pixelated. | ||
49 | |||
50 | The recommended tool for creating SVG diagrams for the Yocto Project | ||
51 | documentation is [Inkscape](https://inkscape.org/). | ||
52 | |||
53 | ### Colors | ||
54 | |||
55 | The "GNOME HIG Colors" palette is used in our diagrams | ||
56 | (get it from <https://gitlab.gnome.org/Teams/Design/HIG-app-icons/-/blob/master/GNOME%20HIG.gpl> | ||
57 | if you don't get it from Inkscape). | ||
58 | |||
59 | It's easier to use than the default one in Inkscape, | ||
60 | as it has fewer but sufficient colors. This is a way | ||
61 | to guarantee that we use consistent colors across the | ||
62 | diagrams used in our documentation. | ||
63 | |||
64 | See <https://inkscape-manuals.readthedocs.io/en/latest/palette.html> | ||
65 | for details about working with color palettes in Inkscape. | ||
66 | |||
67 | ### Template diagram | ||
68 | |||
69 | The `template/` directory contains a `template.svg` file | ||
70 | to make it easier to create diagrams. | ||
71 | In particular, you can use it to copy standard text, shapes, | ||
72 | arrows and clipart to the new SVG document. | ||
73 | |||
74 | ### Fonts | ||
75 | |||
76 | The recommended font for description text and labels is `Nimbus Roman`, size 10. | ||
77 | Labels are in bold. | ||
78 | |||
79 | `template.svg` contains ready-to-copy labels. | ||
80 | |||
81 | ### Text boxes | ||
82 | |||
83 | Text boxes are rectangle boxes, with rounded corners, and contain centered text | ||
84 | or labels. Their stroke color is slightly darker than their fill color. | ||
85 | |||
86 | See `template.svg` for example boxes with different colors, which are ready | ||
87 | to be reused. | ||
88 | |||
89 | ### Clipart | ||
90 | |||
91 | Only [Public Domain](https://en.wikipedia.org/wiki/Public_domain) | ||
92 | files are accepted for clipart. [Openclipart](https://openclipart.org) | ||
93 | is the best known and recommended source of such clipart. | ||
94 | |||
95 | It is also required to state the source of each new clipart in the commit log, | ||
96 | to make it possible to check its origin. | ||
97 | |||
98 | For the sake of consistency across diagrams, we recommend | ||
99 | to use existing cliparts, whenever possible. | ||
100 | |||
101 | If cliparts in `template.svg` do not satisfy your requirements, you can | ||
102 | add to said file new cliparts, from e.g. Openclipart. Newly added | ||
103 | cliparts shall stay consistent in style and color with existing ones. | ||
diff --git a/documentation/template/template.svg b/documentation/template/template.svg new file mode 100644 index 0000000000..43043e3afb --- /dev/null +++ b/documentation/template/template.svg | |||
@@ -0,0 +1,1160 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
2 | <svg | ||
3 | version="1.1" | ||
4 | id="svg2" | ||
5 | width="607.31354" | ||
6 | height="968.48285" | ||
7 | viewBox="0 0 607.31353 968.48285" | ||
8 | sodipodi:docname="template.svg" | ||
9 | inkscape:version="1.1 (ce6663b3b7, 2021-05-25)" | ||
10 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | ||
11 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | ||
12 | xmlns:xlink="http://www.w3.org/1999/xlink" | ||
13 | xmlns="http://www.w3.org/2000/svg" | ||
14 | xmlns:svg="http://www.w3.org/2000/svg" | ||
15 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
16 | xmlns:cc="http://creativecommons.org/ns#" | ||
17 | xmlns:dc="http://purl.org/dc/elements/1.1/"> | ||
18 | <metadata | ||
19 | id="metadata8"> | ||
20 | <rdf:RDF> | ||
21 | <cc:Work | ||
22 | rdf:about=""> | ||
23 | <dc:format>image/svg+xml</dc:format> | ||
24 | <dc:type | ||
25 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | ||
26 | </cc:Work> | ||
27 | </rdf:RDF> | ||
28 | </metadata> | ||
29 | <defs | ||
30 | id="defs6"> | ||
31 | <inkscape:path-effect | ||
32 | effect="powerstroke" | ||
33 | id="path-effect6121" | ||
34 | is_visible="true" | ||
35 | lpeversion="1" | ||
36 | offset_points="0,0.5" | ||
37 | sort_points="true" | ||
38 | interpolator_type="CubicBezierJohan" | ||
39 | interpolator_beta="0.2" | ||
40 | start_linecap_type="zerowidth" | ||
41 | linejoin_type="extrp_arc" | ||
42 | miter_limit="4" | ||
43 | scale_width="1" | ||
44 | end_linecap_type="zerowidth" | ||
45 | not_jump="false" /> | ||
46 | <marker | ||
47 | style="overflow:visible" | ||
48 | id="marker5783" | ||
49 | refX="0" | ||
50 | refY="0" | ||
51 | orient="auto" | ||
52 | inkscape:stockid="Arrow2Mend" | ||
53 | inkscape:isstock="true"> | ||
54 | <path | ||
55 | transform="scale(-0.6)" | ||
56 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
57 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
58 | id="path5781" /> | ||
59 | </marker> | ||
60 | <marker | ||
61 | style="overflow:visible" | ||
62 | id="marker5623" | ||
63 | refX="0" | ||
64 | refY="0" | ||
65 | orient="auto" | ||
66 | inkscape:stockid="Arrow2Mend" | ||
67 | inkscape:isstock="true"> | ||
68 | <path | ||
69 | transform="scale(-0.6)" | ||
70 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
71 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
72 | id="path5621" /> | ||
73 | </marker> | ||
74 | <marker | ||
75 | style="overflow:visible" | ||
76 | id="marker5487" | ||
77 | refX="0" | ||
78 | refY="0" | ||
79 | orient="auto" | ||
80 | inkscape:stockid="Arrow2Mend" | ||
81 | inkscape:isstock="true"> | ||
82 | <path | ||
83 | transform="scale(-0.6)" | ||
84 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
85 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
86 | id="path5485" /> | ||
87 | </marker> | ||
88 | <marker | ||
89 | style="overflow:visible" | ||
90 | id="marker5285" | ||
91 | refX="0" | ||
92 | refY="0" | ||
93 | orient="auto" | ||
94 | inkscape:stockid="Arrow2Mstart" | ||
95 | inkscape:isstock="true"> | ||
96 | <path | ||
97 | transform="scale(0.6)" | ||
98 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
99 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
100 | id="path5283" /> | ||
101 | </marker> | ||
102 | <marker | ||
103 | style="overflow:visible" | ||
104 | id="marker5161" | ||
105 | refX="0" | ||
106 | refY="0" | ||
107 | orient="auto" | ||
108 | inkscape:stockid="Arrow2Mend" | ||
109 | inkscape:isstock="true"> | ||
110 | <path | ||
111 | transform="scale(-0.6)" | ||
112 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
113 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
114 | id="path5159" /> | ||
115 | </marker> | ||
116 | <marker | ||
117 | style="overflow:visible" | ||
118 | id="marker4860" | ||
119 | refX="0" | ||
120 | refY="0" | ||
121 | orient="auto" | ||
122 | inkscape:stockid="Arrow2Mend" | ||
123 | inkscape:isstock="true"> | ||
124 | <path | ||
125 | transform="scale(-0.6)" | ||
126 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
127 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
128 | id="path4858" /> | ||
129 | </marker> | ||
130 | <marker | ||
131 | style="overflow:visible" | ||
132 | id="marker4504" | ||
133 | refX="0" | ||
134 | refY="0" | ||
135 | orient="auto" | ||
136 | inkscape:stockid="Arrow2Mend" | ||
137 | inkscape:isstock="true"> | ||
138 | <path | ||
139 | transform="scale(-0.6)" | ||
140 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
141 | style="fill:#ffa348;fill-opacity:1;fill-rule:evenodd;stroke:#ffa348;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
142 | id="path4502" /> | ||
143 | </marker> | ||
144 | <marker | ||
145 | style="overflow:visible" | ||
146 | id="marker4286" | ||
147 | refX="0" | ||
148 | refY="0" | ||
149 | orient="auto" | ||
150 | inkscape:stockid="Arrow2Mend" | ||
151 | inkscape:isstock="true" | ||
152 | inkscape:collect="always"> | ||
153 | <path | ||
154 | transform="scale(-0.6)" | ||
155 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
156 | style="fill:#62a0ea;fill-opacity:1;fill-rule:evenodd;stroke:#62a0ea;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
157 | id="path4284" /> | ||
158 | </marker> | ||
159 | <marker | ||
160 | style="overflow:visible" | ||
161 | id="Arrow1Mend" | ||
162 | refX="0" | ||
163 | refY="0" | ||
164 | orient="auto" | ||
165 | inkscape:stockid="Arrow1Mend" | ||
166 | inkscape:isstock="true"> | ||
167 | <path | ||
168 | transform="matrix(-0.4,0,0,-0.4,-4,0)" | ||
169 | style="fill:#62a0ea;fill-opacity:1;fill-rule:evenodd;stroke:#62a0ea;stroke-width:1pt;stroke-opacity:1" | ||
170 | d="M 0,0 5,-5 -12.5,0 5,5 Z" | ||
171 | id="path3318" /> | ||
172 | </marker> | ||
173 | <marker | ||
174 | style="overflow:visible" | ||
175 | id="marker4174" | ||
176 | refX="0" | ||
177 | refY="0" | ||
178 | orient="auto" | ||
179 | inkscape:stockid="Arrow2Mstart" | ||
180 | inkscape:isstock="true"> | ||
181 | <path | ||
182 | transform="scale(0.6)" | ||
183 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
184 | style="fill:#62a0ea;fill-opacity:1;fill-rule:evenodd;stroke:#62a0ea;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
185 | id="path4172" /> | ||
186 | </marker> | ||
187 | <marker | ||
188 | style="overflow:visible" | ||
189 | id="Arrow2Mend" | ||
190 | refX="0" | ||
191 | refY="0" | ||
192 | orient="auto" | ||
193 | inkscape:stockid="Arrow2Mend" | ||
194 | inkscape:isstock="true"> | ||
195 | <path | ||
196 | transform="scale(-0.6)" | ||
197 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
198 | style="fill:#ffa348;fill-opacity:1;fill-rule:evenodd;stroke:#ffa348;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
199 | id="path3336" /> | ||
200 | </marker> | ||
201 | <marker | ||
202 | style="overflow:visible" | ||
203 | id="Arrow1Mstart" | ||
204 | refX="0" | ||
205 | refY="0" | ||
206 | orient="auto" | ||
207 | inkscape:stockid="Arrow1Mstart" | ||
208 | inkscape:isstock="true"> | ||
209 | <path | ||
210 | transform="matrix(0.4,0,0,0.4,4,0)" | ||
211 | style="fill:#ff7800;fill-opacity:1;fill-rule:evenodd;stroke:#ffa348;stroke-width:1pt;stroke-opacity:1" | ||
212 | d="M 0,0 5,-5 -12.5,0 5,5 Z" | ||
213 | id="path3315" /> | ||
214 | </marker> | ||
215 | <marker | ||
216 | style="overflow:visible" | ||
217 | id="Arrow2Lstart" | ||
218 | refX="0" | ||
219 | refY="0" | ||
220 | orient="auto" | ||
221 | inkscape:stockid="Arrow2Lstart" | ||
222 | inkscape:isstock="true"> | ||
223 | <path | ||
224 | transform="matrix(1.1,0,0,1.1,1.1,0)" | ||
225 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
226 | style="fill:#ff7800;fill-opacity:1;fill-rule:evenodd;stroke:#ffa348;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
227 | id="path3327" /> | ||
228 | </marker> | ||
229 | <marker | ||
230 | style="overflow:visible" | ||
231 | id="Arrow1Lstart" | ||
232 | refX="0" | ||
233 | refY="0" | ||
234 | orient="auto" | ||
235 | inkscape:stockid="Arrow1Lstart" | ||
236 | inkscape:isstock="true"> | ||
237 | <path | ||
238 | transform="matrix(0.8,0,0,0.8,10,0)" | ||
239 | style="fill:#ff7800;fill-opacity:1;fill-rule:evenodd;stroke:#ffa348;stroke-width:1pt;stroke-opacity:1" | ||
240 | d="M 0,0 5,-5 -12.5,0 5,5 Z" | ||
241 | id="path3309" /> | ||
242 | </marker> | ||
243 | <linearGradient | ||
244 | id="linearGradient921" | ||
245 | inkscape:swatch="solid"> | ||
246 | <stop | ||
247 | style="stop-color:#deddda;stop-opacity:1;" | ||
248 | offset="0" | ||
249 | id="stop919" /> | ||
250 | </linearGradient> | ||
251 | <linearGradient | ||
252 | id="linearGradient6035-4"> | ||
253 | <stop | ||
254 | id="stop6037-2" | ||
255 | style="stop-color:#ffffff" | ||
256 | offset="0" /> | ||
257 | <stop | ||
258 | id="stop6039-9" | ||
259 | style="stop-color:#ffffff;stop-opacity:0" | ||
260 | offset="1" /> | ||
261 | </linearGradient> | ||
262 | <linearGradient | ||
263 | id="linearGradient11801" | ||
264 | y2="511.97" | ||
265 | spreadMethod="reflect" | ||
266 | gradientUnits="userSpaceOnUse" | ||
267 | x2="286.63" | ||
268 | gradientTransform="matrix(4.9627,0,0,4.9627,278.63,-3355.4)" | ||
269 | y1="511.97" | ||
270 | x1="269.97" | ||
271 | inkscape:collect="always"> | ||
272 | <stop | ||
273 | id="stop5497-7" | ||
274 | style="stop-color:#497bb3" | ||
275 | offset="0" /> | ||
276 | <stop | ||
277 | id="stop5501-5" | ||
278 | style="stop-color:#a5c4e6" | ||
279 | offset=".20485" /> | ||
280 | <stop | ||
281 | id="stop5499-8" | ||
282 | style="stop-color:#3b5d8b" | ||
283 | offset="1" /> | ||
284 | </linearGradient> | ||
285 | <linearGradient | ||
286 | id="linearGradient11803" | ||
287 | y2="527.34003" | ||
288 | gradientUnits="userSpaceOnUse" | ||
289 | x2="286.63" | ||
290 | y1="518.56" | ||
291 | x1="282.35999" | ||
292 | inkscape:collect="always"> | ||
293 | <stop | ||
294 | id="stop5468-4" | ||
295 | style="stop-color:#a5c4e6" | ||
296 | offset="0" /> | ||
297 | <stop | ||
298 | id="stop5470-8" | ||
299 | style="stop-color:#497bb3" | ||
300 | offset="1" /> | ||
301 | </linearGradient> | ||
302 | <linearGradient | ||
303 | id="linearGradient11805" | ||
304 | y2="520.33002" | ||
305 | xlink:href="#linearGradient6035-4" | ||
306 | spreadMethod="reflect" | ||
307 | gradientUnits="userSpaceOnUse" | ||
308 | x2="327.78" | ||
309 | gradientTransform="matrix(4.1992,0,0,4.1992,407.33,-3062.9)" | ||
310 | y1="522.60999" | ||
311 | x1="308.5" | ||
312 | inkscape:collect="always" /> | ||
313 | <linearGradient | ||
314 | id="linearGradient11807" | ||
315 | y2="520.33002" | ||
316 | xlink:href="#linearGradient6035-4" | ||
317 | spreadMethod="reflect" | ||
318 | gradientUnits="userSpaceOnUse" | ||
319 | x2="327.78" | ||
320 | gradientTransform="matrix(4.1992,0,0,4.1992,407.33,-3015.8)" | ||
321 | y1="522.60999" | ||
322 | x1="308.5" | ||
323 | inkscape:collect="always" /> | ||
324 | <linearGradient | ||
325 | id="linearGradient11809" | ||
326 | y2="520.33002" | ||
327 | xlink:href="#linearGradient6035-4" | ||
328 | spreadMethod="reflect" | ||
329 | gradientUnits="userSpaceOnUse" | ||
330 | x2="327.78" | ||
331 | gradientTransform="matrix(4.1992,0,0,4.1992,407.33,-2971.6)" | ||
332 | y1="522.60999" | ||
333 | x1="308.5" | ||
334 | inkscape:collect="always" /> | ||
335 | <marker | ||
336 | style="overflow:visible" | ||
337 | id="Arrow2Mstart-4" | ||
338 | refX="0" | ||
339 | refY="0" | ||
340 | orient="auto" | ||
341 | inkscape:stockid="Arrow2Mstart" | ||
342 | inkscape:isstock="true"> | ||
343 | <path | ||
344 | transform="scale(0.6)" | ||
345 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
346 | style="fill:#ffa348;fill-opacity:1;fill-rule:evenodd;stroke:#ffa348;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
347 | id="path3333-2" /> | ||
348 | </marker> | ||
349 | <marker | ||
350 | style="overflow:visible" | ||
351 | id="Arrow2Mend-2" | ||
352 | refX="0" | ||
353 | refY="0" | ||
354 | orient="auto" | ||
355 | inkscape:stockid="Arrow2Mend" | ||
356 | inkscape:isstock="true"> | ||
357 | <path | ||
358 | transform="scale(-0.6)" | ||
359 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
360 | style="fill:#ffa348;fill-opacity:1;fill-rule:evenodd;stroke:#ffa348;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
361 | id="path3336-7" /> | ||
362 | </marker> | ||
363 | <marker | ||
364 | style="overflow:visible" | ||
365 | id="marker5623-2" | ||
366 | refX="0" | ||
367 | refY="0" | ||
368 | orient="auto" | ||
369 | inkscape:stockid="Arrow2Mend" | ||
370 | inkscape:isstock="true"> | ||
371 | <path | ||
372 | transform="scale(-0.6)" | ||
373 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
374 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
375 | id="path5621-3" /> | ||
376 | </marker> | ||
377 | <marker | ||
378 | style="overflow:visible" | ||
379 | id="Arrow2Mend-4" | ||
380 | refX="0" | ||
381 | refY="0" | ||
382 | orient="auto" | ||
383 | inkscape:stockid="Arrow2Mend" | ||
384 | inkscape:isstock="true"> | ||
385 | <path | ||
386 | transform="scale(-0.6)" | ||
387 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
388 | style="fill:#ffa348;fill-opacity:1;fill-rule:evenodd;stroke:#ffa348;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
389 | id="path3336-3" /> | ||
390 | </marker> | ||
391 | <marker | ||
392 | style="overflow:visible" | ||
393 | id="marker5285-1" | ||
394 | refX="0" | ||
395 | refY="0" | ||
396 | orient="auto" | ||
397 | inkscape:stockid="Arrow2Mstart" | ||
398 | inkscape:isstock="true"> | ||
399 | <path | ||
400 | transform="scale(0.6)" | ||
401 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
402 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
403 | id="path5283-7" /> | ||
404 | </marker> | ||
405 | <marker | ||
406 | style="overflow:visible" | ||
407 | id="marker5161-4" | ||
408 | refX="0" | ||
409 | refY="0" | ||
410 | orient="auto" | ||
411 | inkscape:stockid="Arrow2Mend" | ||
412 | inkscape:isstock="true"> | ||
413 | <path | ||
414 | transform="scale(-0.6)" | ||
415 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
416 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
417 | id="path5159-3" /> | ||
418 | </marker> | ||
419 | <marker | ||
420 | style="overflow:visible" | ||
421 | id="marker5285-1-4" | ||
422 | refX="0" | ||
423 | refY="0" | ||
424 | orient="auto" | ||
425 | inkscape:stockid="Arrow2Mstart" | ||
426 | inkscape:isstock="true"> | ||
427 | <path | ||
428 | transform="scale(0.6)" | ||
429 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
430 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
431 | id="path5283-7-6" /> | ||
432 | </marker> | ||
433 | <marker | ||
434 | style="overflow:visible" | ||
435 | id="marker5161-4-9" | ||
436 | refX="0" | ||
437 | refY="0" | ||
438 | orient="auto" | ||
439 | inkscape:stockid="Arrow2Mend" | ||
440 | inkscape:isstock="true"> | ||
441 | <path | ||
442 | transform="scale(-0.6)" | ||
443 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
444 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
445 | id="path5159-3-4" /> | ||
446 | </marker> | ||
447 | <marker | ||
448 | style="overflow:visible" | ||
449 | id="marker4174-8" | ||
450 | refX="0" | ||
451 | refY="0" | ||
452 | orient="auto" | ||
453 | inkscape:stockid="Arrow2Mstart" | ||
454 | inkscape:isstock="true"> | ||
455 | <path | ||
456 | transform="scale(0.6)" | ||
457 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
458 | style="fill:#62a0ea;fill-opacity:1;fill-rule:evenodd;stroke:#62a0ea;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
459 | id="path4172-8" /> | ||
460 | </marker> | ||
461 | <marker | ||
462 | style="overflow:visible" | ||
463 | id="marker4286-6" | ||
464 | refX="0" | ||
465 | refY="0" | ||
466 | orient="auto" | ||
467 | inkscape:stockid="Arrow2Mend" | ||
468 | inkscape:isstock="true" | ||
469 | inkscape:collect="always"> | ||
470 | <path | ||
471 | transform="scale(-0.6)" | ||
472 | d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||
473 | style="fill:#62a0ea;fill-opacity:1;fill-rule:evenodd;stroke:#62a0ea;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||
474 | id="path4284-8" /> | ||
475 | </marker> | ||
476 | </defs> | ||
477 | <sodipodi:namedview | ||
478 | pagecolor="#ffffff" | ||
479 | bordercolor="#666666" | ||
480 | borderopacity="1" | ||
481 | objecttolerance="10" | ||
482 | gridtolerance="10" | ||
483 | guidetolerance="10" | ||
484 | inkscape:pageopacity="0" | ||
485 | inkscape:pageshadow="2" | ||
486 | inkscape:window-width="1848" | ||
487 | inkscape:window-height="983" | ||
488 | id="namedview4" | ||
489 | showgrid="false" | ||
490 | inkscape:zoom="1.0233281" | ||
491 | inkscape:cx="454.88832" | ||
492 | inkscape:cy="692.83742" | ||
493 | inkscape:window-x="1992" | ||
494 | inkscape:window-y="27" | ||
495 | inkscape:window-maximized="1" | ||
496 | inkscape:current-layer="g10" | ||
497 | inkscape:document-rotation="0" | ||
498 | inkscape:snap-perpendicular="true" | ||
499 | fit-margin-top="30" | ||
500 | lock-margins="true" | ||
501 | fit-margin-left="30" | ||
502 | fit-margin-right="30" | ||
503 | fit-margin-bottom="30" | ||
504 | inkscape:pagecheckerboard="0"> | ||
505 | <inkscape:grid | ||
506 | type="xygrid" | ||
507 | id="grid1257" | ||
508 | originx="82.778013" | ||
509 | originy="165.84269" /> | ||
510 | </sodipodi:namedview> | ||
511 | <g | ||
512 | inkscape:groupmode="layer" | ||
513 | inkscape:label="Image" | ||
514 | id="g10" | ||
515 | transform="translate(82.778014,165.84268)"> | ||
516 | <g | ||
517 | id="g3925" | ||
518 | transform="matrix(0.4122756,0,0,0.4122756,-156.60748,374.96076)" | ||
519 | style="stroke-width:2.42556"> | ||
520 | <g | ||
521 | id="layer1-3-5-2" | ||
522 | inkscape:label="Capa 1" | ||
523 | transform="matrix(1.1196,0,0,1.1196,-122.82057,267.39056)" | ||
524 | style="stroke-width:2.42556"> | ||
525 | <g | ||
526 | id="g10-5-2" | ||
527 | transform="matrix(0.0423,0,0,0.0423,319.39,59.128)" | ||
528 | class="Graphic" | ||
529 | style="stroke-width:2.42556"> | ||
530 | <g | ||
531 | id="g12-4-2" | ||
532 | style="stroke-width:2.42556"> | ||
533 | <g | ||
534 | id="g14-64-0" | ||
535 | style="fill:#c7c7c7;stroke-width:2.42556"> | ||
536 | <path | ||
537 | id="path16-1-5" | ||
538 | inkscape:connector-curvature="0" | ||
539 | d="m 5903,2361 c 50,82 34,3995 -31,4149 -51,122 -1703,1495 -1789,1531 -1117,-7 -1870,-414 -1995,-629 -48,-270 -7,-4433 38,-4520 40,-76 2153,-833 2227,-851 67,-15 1493,229 1550,320 z" | ||
540 | style="stroke-width:2.42556" /> | ||
541 | </g> | ||
542 | <g | ||
543 | id="g18-6-5" | ||
544 | style="fill:#000000;stroke-width:2.42556"> | ||
545 | <path | ||
546 | id="path20-8-2" | ||
547 | inkscape:connector-curvature="0" | ||
548 | d="m 5881,2374 2,-1 -2,2 c 0,-1 -1,-1 -1,-1 v -2 l 7,-3 -2,2 -5,1 5,-1 -2,2 z m 2,-1 2,-2 2,-2 5,-2 -5,4 5,-4 h 1 l -6,3 v 1 -1 z m 10,-6 h -1 1 -1 l 11,-6 -10,5 z m 11,-4 -11,4 v -1 z m 20,-15 c -2,-3 -4,-6 -7,-9 -2,-3 -5,-5 -8,-7 -5,-4 -12,-8 -20,-12 -7,-4 -15,-7 -24,-11 -9,-4 -19,-7 -30,-11 -21,-8 -47,-16 -75,-24 -29,-8 -61,-16 -95,-25 -136,-34 -313,-72 -494,-106 -181,-35 -364,-66 -511,-90 -73,-11 -138,-21 -189,-27 -25,-3 -47,-6 -65,-8 -9,-1 -17,-1 -24,-2 -4,0 -7,0 -10,-1 h -9 c -3,0 -5,0 -7,1 h -4 c -2,0 -3,0 -4,1 -2,0 -4,1 -7,2 -2,0 -5,1 -8,2 -3,1 -7,2 -11,3 -4,2 -8,3 -13,5 -10,3 -22,7 -35,12 -13,4 -28,9 -44,15 -33,11 -71,25 -115,40 -43,15 -91,32 -144,51 -209,75 -481,173 -753,274 -271,101 -542,203 -747,285 -51,21 -98,40 -140,57 -43,18 -80,34 -111,48 -16,7 -30,14 -42,20 -13,6 -24,12 -33,17 -5,2 -9,5 -13,7 -4,3 -8,5 -10,7 -4,3 -7,5 -9,7 -5,4 -7,8 -9,11 -1,2 -2,5 -4,9 0,3 -1,6 -1,9 -1,3 -1,7 -2,11 -1,4 -1,8 -2,13 0,9 -1,20 -3,32 0,13 -1,27 -2,42 -2,31 -4,69 -6,111 -2,43 -4,91 -5,144 -7,213 -14,504 -19,835 -11,662 -19,1482 -19,2144 0,308 2,583 5,791 1,52 2,100 3,143 1,43 3,82 4,115 1,34 3,62 4,85 1,12 2,22 3,30 1,5 1,9 1,13 1,3 2,7 2,10 l 1,4 2,4 c 9,15 20,30 33,46 14,16 30,32 48,49 35,32 80,66 135,101 107,70 249,142 423,207 173,65 377,124 608,167 231,43 489,70 769,72 h 6 l 5,-2 8,-4 c 2,-2 5,-3 8,-6 3,-2 6,-4 10,-6 l 12,-9 c 9,-6 19,-13 30,-22 11,-8 23,-17 37,-28 27,-20 58,-45 93,-73 35,-28 74,-59 116,-93 169,-136 385,-315 600,-497 215,-181 430,-366 593,-512 41,-37 79,-71 113,-103 34,-31 64,-59 89,-84 13,-13 24,-24 34,-35 11,-11 20,-20 28,-29 8,-9 14,-17 19,-23 3,-4 5,-8 7,-10 2,-4 4,-8 6,-11 0,-2 1,-5 2,-8 1,-3 2,-5 3,-9 1,-6 2,-13 3,-22 2,-8 3,-17 4,-28 1,-11 2,-22 3,-35 2,-25 4,-55 7,-89 1,-34 3,-72 5,-113 8,-166 14,-391 19,-648 10,-516 16,-1164 16,-1743 0,-389 -3,-747 -8,-1012 -1,-66 -2,-127 -4,-181 -1,-53 -3,-100 -5,-139 -1,-20 -2,-38 -3,-53 -1,-16 -2,-30 -3,-41 -1,-6 -1,-11 -2,-16 -1,-5 -1,-10 -2,-13 -1,-4 -1,-8 -2,-11 -1,-2 -1,-4 -2,-5 -1,-3 -2,-5 -3,-6 z m -37,21 12,-12 z m -6,9 c 1,3 1,7 2,11 0,4 1,9 1,15 1,11 3,24 4,39 0,15 1,33 2,52 2,39 4,86 6,139 1,53 2,114 4,180 5,264 7,622 7,1011 0,578 -5,1227 -15,1742 -6,257 -12,481 -19,646 -2,42 -4,79 -6,113 -2,33 -4,63 -6,88 -1,12 -2,24 -4,34 0,10 -2,18 -3,26 -1,7 -2,14 -3,18 0,3 -1,4 -1,6 0,1 -1,2 -1,2 0,1 -1,2 -2,4 -1,1 -3,4 -4,6 -5,6 -10,13 -17,21 -7,7 -16,17 -26,27 l -34,34 c -25,24 -54,52 -88,83 -33,31 -71,66 -112,102 -163,146 -377,330 -592,512 -215,181 -431,360 -598,495 -42,34 -81,65 -116,93 -35,28 -66,52 -93,73 -13,10 -26,20 -37,28 -10,8 -20,15 -28,21 -4,3 -8,6 -12,8 -3,2 -6,4 -8,6 -2,1 -4,2 -5,3 -276,-2 -528,-29 -755,-71 -228,-42 -429,-100 -600,-164 -169,-64 -308,-134 -413,-202 -51,-33 -94,-66 -128,-97 -17,-15 -31,-30 -43,-44 -10,-12 -19,-23 -26,-34 v -4 c -1,-3 -1,-7 -1,-11 -1,-8 -2,-18 -3,-28 -2,-23 -3,-51 -5,-84 -1,-33 -2,-71 -3,-115 -1,-42 -2,-90 -3,-142 -3,-208 -5,-482 -5,-790 0,-662 7,-1481 18,-2143 6,-330 12,-622 19,-834 2,-53 4,-101 6,-144 2,-42 3,-79 5,-109 1,-16 2,-30 3,-42 1,-12 2,-22 3,-31 0,-4 1,-8 1,-11 1,-4 1,-6 2,-9 v -2 c 0,-1 1,-1 2,-2 2,-1 4,-3 7,-5 4,-1 7,-4 11,-6 9,-5 19,-10 31,-16 12,-6 26,-12 41,-19 31,-14 67,-29 109,-47 42,-17 89,-37 140,-57 205,-82 475,-184 746,-284 271,-101 543,-200 752,-274 52,-19 101,-36 144,-51 43,-16 82,-29 114,-40 17,-6 31,-11 44,-16 13,-4 25,-8 35,-11 4,-2 9,-3 13,-4 4,-2 7,-3 10,-4 3,-1 5,-1 8,-2 l 3,-1 -2,-8 1,8 h 1 4 7 c 2,0 5,0 8,1 7,0 14,1 23,2 17,1 39,4 64,7 50,6 114,16 187,27 147,23 329,55 509,89 180,35 357,72 492,106 34,9 65,17 92,25 28,8 53,15 73,23 10,3 20,7 28,10 7,3 15,6 20,9 5,3 10,5 13,8 0,0 1,0 1,1 0,1 1,3 1,4 z M 4075,8017 c 1,0 1,-1 2,-1 h 6 v 14 l -8,-13 8,13 v 11 l -10,-23 c 0,0 1,-1 2,-1 z M 2110,7400 c 1,1 1,3 2,4 1,1 1,3 1,4 l -25,4 21,-11 1,-1 -1,1 1,-1 h 2 z m 39,-4498 v 3 c -1,0 -1,1 -2,1 l -5,-6 -17,-4 17,4 -2,-1 4,2 z m -7,-2 2,1 z m -16,-8 14,7 z m 14,7 -10,-11 z m 2217,-841 -2,-17 z m -4,-17 4,17 v 1 z" | ||
549 | style="stroke-width:2.42556" /> | ||
550 | </g> | ||
551 | <g | ||
552 | id="g22-8-9" | ||
553 | style="fill:#ffffff;fill-opacity:0.54118;stroke:#ffffff;stroke-width:2.42556;stroke-opacity:0.54118"> | ||
554 | <path | ||
555 | id="path24-1-0" | ||
556 | inkscape:connector-curvature="0" | ||
557 | d="m 5822,2442 -52,22 -52,23 -52,23 -53,25 -53,25 -53,26 -53,26 -54,27 -54,27 -54,28 -55,28 -54,29 -55,29 -55,29 -111,60 -112,60 -112,60 -113,61 -114,60 -114,60 -114,59 -57,29 -57,29 -58,28 -57,28 -27,-6 -28,-7 -56,-13 -58,-14 -59,-13 -60,-14 -61,-14 -61,-14 -63,-14 -62,-14 -63,-15 -127,-28 -127,-28 -64,-14 -63,-14 -62,-13 -62,-13 -61,-13 -60,-13 -60,-13 -58,-12 -57,-12 -28,-5 -28,-6 -27,-5 -27,-6 -27,-5 -26,-5 -26,-5 -25,-6 -25,-4 -24,-5 -24,-5 -24,-4 -23,-4 -22,-5 -22,-4 -21,-3 -21,-4 -20,-4 52,16 52,16 53,16 54,15 55,16 55,15 57,16 56,15 57,16 58,15 116,31 117,30 118,31 118,31 117,30 116,31 58,15 57,16 57,15 56,16 55,15 55,16 54,15 53,16 52,16 52,16 1,60 2,61 1,61 1,63 1,64 2,64 1,65 1,66 1,67 1,67 1,68 v 69 l 1,69 1,70 1,70 v 71 l 1,71 v 72 l 1,72 1,73 1,146 1,147 v 149 l 1,149 2,299 1,300 1,149 1,148 1,147 1,146 1,73 v 72 l 1,72 1,71 v 71 l 1,71 1,69 1,70 v 68 l 1,68 1,67 1,67 1,66 1,65 1,65 2,63 1,63 1,62 2,61 1,60 1,-61 1,-61 v -63 l 1,-63 1,-64 1,-65 1,-66 1,-67 1,-67 1,-68 1,-69 2,-69 1,-70 1,-71 1,-71 1,-72 1,-72 2,-73 1,-73 1,-73 3,-148 3,-149 2,-151 3,-151 6,-303 5,-303 3,-151 3,-150 2,-149 3,-149 1,-73 2,-73 1,-73 1,-72 1,-71 1,-72 1,-70 2,-70 1,-70 1,-68 1,-68 1,-68 1,-66 1,-66 1,-65 1,-64 1,-64 v -62 l 1,-62 1,-60 110,-59 109,-59 109,-57 109,-58 108,-57 107,-58 107,-57 107,-58 105,-58 105,-58 104,-60 103,-60 51,-30 50,-31 51,-31 50,-31 50,-31 50,-32 49,-32 z" | ||
558 | style="stroke-width:2.42556" /> | ||
559 | </g> | ||
560 | <g | ||
561 | id="g28-1-8" | ||
562 | style="fill:none;stroke-width:2.42556"> | ||
563 | <path | ||
564 | id="path30-7-3" | ||
565 | inkscape:connector-curvature="0" | ||
566 | d="m 5822,2442 c -549,232 -1156,606 -1768,901 -580,-138 -1417,-322 -1839,-396 543,169 1257,327 1800,496 32,1271 16,3196 48,4467 16,-1282 59,-3238 75,-4519 586,-317 1161,-601 1684,-949 z" | ||
567 | style="stroke-width:2.42556" /> | ||
568 | </g> | ||
569 | <g | ||
570 | id="g32-7-8" | ||
571 | style="fill:#000000;fill-opacity:0.16078;stroke:#ffffff;stroke-width:2.42556;stroke-opacity:0.16078"> | ||
572 | <path | ||
573 | id="path34-1-0" | ||
574 | inkscape:connector-curvature="0" | ||
575 | d="m 2420,6628 10,14 10,13 11,13 12,13 12,12 12,12 14,12 13,12 14,12 15,11 15,11 16,11 15,11 17,10 16,10 17,11 18,9 18,10 18,9 18,8 19,9 19,8 19,8 19,8 40,15 40,14 41,12 41,11 42,10 41,9 42,8 41,6 41,6 41,3 21,2 20,1 19,1 h 20 20 19 l 19,-1 19,-1 18,-1 19,-1 17,-2 18,-3 17,-2 17,-3 17,-4 16,-4 15,-4 15,-4 15,-5 15,-5 -2,-1 h -1 l -5,-2 -6,-1 -7,-2 -8,-2 -10,-3 -10,-3 -12,-3 -13,-4 -14,-3 -15,-4 -16,-5 -16,-4 -18,-5 -18,-5 -19,-5 -20,-6 -20,-5 -21,-6 -22,-6 -22,-6 -22,-6 -23,-7 -24,-6 -48,-13 -49,-14 -50,-14 -50,-13 -50,-15 -50,-13 -49,-14 -49,-13 -23,-7 -24,-6 -23,-7 -22,-6 -22,-6 -21,-6 -21,-6 -20,-5 -19,-6 -19,-5 -18,-5 -17,-5 -16,-4 -15,-5 -15,-4 -13,-4 -12,-3 -12,-3 -10,-3 -9,-3 -7,-2 -7,-2 -5,-2 h -2 z" | ||
576 | style="stroke-width:2.42556" /> | ||
577 | </g> | ||
578 | <g | ||
579 | id="g38-5-0" | ||
580 | style="fill:none;stroke-width:2.42556"> | ||
581 | <path | ||
582 | id="path40-7-9" | ||
583 | inkscape:connector-curvature="0" | ||
584 | d="m 2420,6628 c 201,289 833,431 1133,315 -53,-14 -1066,-293 -1133,-315 z" | ||
585 | style="stroke-width:2.42556" /> | ||
586 | </g> | ||
587 | <g | ||
588 | id="g42-6-1" | ||
589 | style="fill:#ffffff;fill-opacity:0.38824;stroke:#ffffff;stroke-width:2.42556;stroke-opacity:0.38824"> | ||
590 | <path | ||
591 | id="path44-7-9" | ||
592 | inkscape:connector-curvature="0" | ||
593 | d="m 3454,6093 -936,-361 -9,4 -8,4 -8,4 -6,5 -6,6 -6,6 -5,7 -5,6 -4,7 -4,7 -3,7 -3,8 -3,8 -2,7 -3,15 -2,15 -2,14 v 6 7 5 6 5 4 4 l 1,4 v 2 2 1 1 l 146,51 1,1 1,1 1,1 1,2 2,2 1,3 3,3 2,3 3,4 3,4 3,4 4,5 4,4 4,6 5,4 10,12 10,11 13,12 13,12 14,13 15,12 17,13 17,12 19,12 19,11 21,11 22,10 11,4 11,5 12,4 12,4 13,3 12,3 13,3 13,3 13,2 13,1 14,2 14,1 h 14 15 15 l 15,-1 15,-2 15,-2 16,-2 16,-3 16,-4 16,-4 17,-5 17,-6 h 1 l 2,1 h 3 l 6,1 6,1 7,1 8,1 9,1 10,1 11,1 12,1 12,1 h 12 l 13,1 h 26 l 14,-1 13,-1 14,-1 13,-2 13,-2 12,-3 12,-3 12,-3 10,-5 11,-5 9,-6 8,-6 8,-8 3,-4 3,-4 3,-4 2,-4 2,-5 z" | ||
594 | style="stroke-width:2.42556" /> | ||
595 | </g> | ||
596 | <g | ||
597 | id="g48-57-2" | ||
598 | style="fill:none;stroke-width:2.42556"> | ||
599 | <path | ||
600 | id="path50-0-5" | ||
601 | inkscape:connector-curvature="0" | ||
602 | d="m 3454,6093 -936,-361 c -97,34 -78,177 -78,177 l 146,51 c 0,0 204,319 566,194 0,0 269,48 302,-61 z" | ||
603 | style="stroke-width:2.42556" /> | ||
604 | </g> | ||
605 | <g | ||
606 | id="g52-5-4" | ||
607 | style="fill:#606060;stroke-width:2.42556"> | ||
608 | <path | ||
609 | id="path54-7-4" | ||
610 | inkscape:connector-curvature="0" | ||
611 | d="m 3446,5971 c -311,-81 -622,-161 -933,-242 -12,44 -13,107 6,140 47,23 142,41 189,64 136,131 255,142 472,124 84,17 168,31 251,48 26,-51 33,-72 15,-134 z" | ||
612 | style="stroke-width:2.42556" /> | ||
613 | </g> | ||
614 | <g | ||
615 | id="g56-7-9" | ||
616 | style="fill:none;stroke-width:2.42556"> | ||
617 | <path | ||
618 | id="path58-8-9" | ||
619 | inkscape:connector-curvature="0" | ||
620 | d="m 3446,5971 c -311,-81 -622,-161 -933,-242 -12,44 -13,107 6,140 47,23 142,41 189,64 136,131 255,142 472,124 84,17 168,31 251,48 26,-51 33,-72 15,-134 z" | ||
621 | style="stroke-width:2.42556" /> | ||
622 | </g> | ||
623 | <g | ||
624 | id="g60-5-3" | ||
625 | style="fill:#ffffff;fill-opacity:0.4;stroke:#ffffff;stroke-width:2.42556;stroke-opacity:0.4"> | ||
626 | <path | ||
627 | id="path62-2-6" | ||
628 | inkscape:connector-curvature="0" | ||
629 | d="m 5856,2414 -1813,1017 7,4549 1775,-1494 z" | ||
630 | style="stroke-width:2.42556" /> | ||
631 | </g> | ||
632 | <g | ||
633 | id="g66-2-5" | ||
634 | style="fill:none;stroke-width:2.42556"> | ||
635 | <path | ||
636 | id="path68-9-0" | ||
637 | inkscape:connector-curvature="0" | ||
638 | d="m 5856,2414 -1813,1017 7,4549 1775,-1494 z" | ||
639 | style="stroke-width:2.42556" /> | ||
640 | </g> | ||
641 | <g | ||
642 | id="g70-9-2" | ||
643 | style="fill:#000000;fill-opacity:0.16078;stroke:#ffffff;stroke-width:2.42556;stroke-opacity:0.16078"> | ||
644 | <path | ||
645 | id="path72-9-9" | ||
646 | inkscape:connector-curvature="0" | ||
647 | d="m 2525,6916 10,13 11,12 10,13 11,11 11,12 11,11 12,11 12,10 12,10 12,10 13,10 12,9 13,9 13,8 27,17 28,15 28,14 28,13 29,11 29,11 30,9 30,8 29,8 30,6 30,5 30,4 30,3 30,2 29,2 h 29 l 29,-1 27,-2 28,-2 27,-3 26,-5 25,-5 24,-6 24,-6 22,-8 -2,-1 h -4 l -4,-2 -5,-1 -6,-2 -8,-2 -8,-2 -9,-2 -10,-3 -10,-3 -11,-3 -12,-3 -13,-4 -13,-3 -14,-4 -15,-4 -15,-4 -15,-5 -16,-4 -16,-5 -17,-4 -18,-5 -35,-10 -36,-10 -38,-10 -38,-10 -38,-11 -76,-21 -37,-10 -37,-11 -36,-10 -17,-4 -17,-5 -17,-5 -16,-4 -16,-5 -15,-4 -15,-4 -14,-4 -14,-4 -13,-4 -12,-3 -11,-3 -12,-3 -10,-3 -9,-3 -8,-2 -8,-3 -7,-1 -6,-2 -5,-2 -4,-1 z" | ||
648 | style="stroke-width:2.42556" /> | ||
649 | </g> | ||
650 | <g | ||
651 | id="g76-2-3" | ||
652 | style="fill:none;stroke-width:2.42556"> | ||
653 | <path | ||
654 | id="path78-7-5" | ||
655 | inkscape:connector-curvature="0" | ||
656 | d="m 2525,6916 c 209,276 627,323 861,239 -39,-10 -810,-222 -861,-239 z" | ||
657 | style="stroke-width:2.42556" /> | ||
658 | </g> | ||
659 | <g | ||
660 | id="g80-6-1" | ||
661 | style="fill:#000000;fill-opacity:0.16078;stroke:#ffffff;stroke-width:2.42556;stroke-opacity:0.16078"> | ||
662 | <path | ||
663 | id="path82-0-7" | ||
664 | inkscape:connector-curvature="0" | ||
665 | d="m 2680,7199 12,15 12,14 13,14 14,12 14,13 14,11 15,11 16,11 15,9 17,9 16,9 17,7 18,7 17,7 18,5 18,5 18,5 19,3 18,4 19,2 18,2 19,1 h 19 19 l 18,-1 19,-2 18,-2 19,-3 18,-4 18,-4 18,-5 17,-6 h -1 l -2,-1 h -3 l -4,-1 -3,-1 -5,-2 -5,-1 -6,-2 -6,-1 -6,-2 -7,-2 -8,-2 -8,-2 -8,-3 -9,-2 -9,-2 -19,-6 -20,-5 -22,-6 -22,-6 -23,-6 -23,-7 -48,-13 -48,-13 -23,-7 -23,-6 -23,-6 -21,-6 -21,-6 -19,-6 -9,-2 -9,-3 -9,-2 -8,-2 -8,-2 -7,-2 -7,-2 -6,-2 -6,-2 -5,-2 -5,-1 -5,-1 -3,-1 -3,-1 -3,-1 z" | ||
666 | style="stroke-width:2.42556" /> | ||
667 | </g> | ||
668 | <g | ||
669 | id="g86-0-3" | ||
670 | style="fill:none;stroke-width:2.42556"> | ||
671 | <path | ||
672 | id="path88-3-1" | ||
673 | inkscape:connector-curvature="0" | ||
674 | d="m 2680,7199 c 121,163 355,213 540,149 -25,-6 -507,-139 -540,-149 z" | ||
675 | style="stroke-width:2.42556" /> | ||
676 | </g> | ||
677 | <g | ||
678 | id="g90-5-4" | ||
679 | style="fill:#fcfcfc;fill-opacity:0.43922;stroke:#ffffff;stroke-width:2.42556;stroke-opacity:0.43922"> | ||
680 | <path | ||
681 | id="path92-9-6" | ||
682 | inkscape:connector-curvature="0" | ||
683 | d="m 2356,3259 -92,13 -17,2173 1425,399 35,-116 -1369,-365 z" | ||
684 | style="stroke-width:2.42556" /> | ||
685 | </g> | ||
686 | <g | ||
687 | id="g96-7-4" | ||
688 | style="fill:none;stroke-width:2.42556"> | ||
689 | <path | ||
690 | id="path98-7-2" | ||
691 | inkscape:connector-curvature="0" | ||
692 | d="m 2356,3259 -92,13 -17,2173 1425,399 35,-116 -1369,-365 z" | ||
693 | style="stroke-width:2.42556" /> | ||
694 | </g> | ||
695 | <g | ||
696 | id="g100-1-2" | ||
697 | style="fill:#000000;fill-opacity:0.23137;stroke:#ffffff;stroke-width:2.42556;stroke-opacity:0.23137"> | ||
698 | <path | ||
699 | id="path102-64-6" | ||
700 | inkscape:connector-curvature="0" | ||
701 | d="m 3700,4065 -2,61 -1340,-386 z" | ||
702 | style="stroke-width:2.42556" /> | ||
703 | </g> | ||
704 | <g | ||
705 | id="g106-1-1" | ||
706 | style="fill:#000000;fill-opacity:0.23137;stroke:#ffffff;stroke-width:2.42556;stroke-opacity:0.23137"> | ||
707 | <path | ||
708 | id="path108-3-2" | ||
709 | inkscape:connector-curvature="0" | ||
710 | d="m 3720,4507 -3,61 -1339,-386 z" | ||
711 | style="stroke-width:2.42556" /> | ||
712 | </g> | ||
713 | <g | ||
714 | id="g112-9-8" | ||
715 | style="fill:#000000;fill-opacity:0.23137;stroke:#ffffff;stroke-width:2.42556;stroke-opacity:0.23137"> | ||
716 | <path | ||
717 | id="path114-09-9" | ||
718 | inkscape:connector-curvature="0" | ||
719 | d="m 3700,4916 -2,61 -1340,-386 z" | ||
720 | style="stroke-width:2.42556" /> | ||
721 | </g> | ||
722 | <g | ||
723 | id="g118-8-8" | ||
724 | style="fill:#000000;fill-opacity:0.23137;stroke:#ffffff;stroke-width:2.42556;stroke-opacity:0.23137"> | ||
725 | <path | ||
726 | id="path120-3-8" | ||
727 | inkscape:connector-curvature="0" | ||
728 | d="m 3700,5318 -2,61 -1340,-387 z" | ||
729 | style="stroke-width:2.42556" /> | ||
730 | </g> | ||
731 | <g | ||
732 | id="g124-5-6" | ||
733 | style="fill:#9e9e9e;stroke-width:2.42556"> | ||
734 | <path | ||
735 | id="path126-3-8" | ||
736 | inkscape:connector-curvature="0" | ||
737 | d="m 2361,3309 1332,333 -11,2197 h 11 11 l 11,-2205 v -9 l -8,-2 -1341,-335 -2,11 z m 1340,335 -8,-2 v -8 h 11 z" | ||
738 | style="stroke-width:2.42556" /> | ||
739 | </g> | ||
740 | </g> | ||
741 | </g> | ||
742 | </g> | ||
743 | <g | ||
744 | id="g16724-3" | ||
745 | transform="matrix(0.52218647,0,0,0.42933357,-400.52138,1028.8214)" | ||
746 | style="stroke-width:2.42556"> | ||
747 | <path | ||
748 | id="path5488-8" | ||
749 | d="m 1618.4,-890.85 v 126.36 h 0.5249 c -0.3385,1.0131 -0.5249,1.975 -0.5249,3.0182 0,15.228 36.989,27.557 82.672,27.557 45.683,0 82.672,-12.33 82.672,-27.557 0,-1.0447 -0.1856,-2.0037 -0.5249,-3.0182 h 0.5249 v -126.36 h -165.34 z" | ||
750 | sodipodi:nodetypes="cccssscccc" | ||
751 | style="fill:url(#linearGradient11801);stroke-width:2.42556" | ||
752 | inkscape:connector-curvature="0" /> | ||
753 | <ellipse | ||
754 | id="path5460-3" | ||
755 | style="fill:url(#linearGradient11803);stroke-width:2.42556" | ||
756 | transform="matrix(4.9627,0,0,4.9627,278.63,-3481.3)" | ||
757 | cx="286.6308" | ||
758 | cy="521.77954" | ||
759 | rx="16.667517" | ||
760 | ry="5.5558391" /> | ||
761 | <path | ||
762 | id="path6026-3" | ||
763 | d="m 1618.3,-800.18 c 0.6187,15.05 37.507,27.164 82.804,27.164 45.168,0 81.851,-12.042 82.672,-27.033 -14.494,12.328 -46.02,20.865 -82.672,20.865 -36.727,0 -68.35,-8.6271 -82.804,-20.996 z" | ||
764 | style="fill:#3b5d8b;stroke-width:2.42556" | ||
765 | inkscape:connector-curvature="0" /> | ||
766 | <path | ||
767 | id="path6030-3" | ||
768 | d="m 1618.3,-891.51 c 0.6187,15.05 37.507,27.164 82.804,27.164 45.168,0 81.851,-12.042 82.672,-27.033 -0.9058,0.77052 -1.8509,1.4911 -2.8869,2.2308 -0.038,0.0491 -0.091,0.0823 -0.131,0.13101 -9.6253,11.663 -41.587,20.209 -79.654,20.209 -38.306,0 -70.487,-8.6955 -79.917,-20.471 -0.1046,-0.0752 -0.1596,-0.18729 -0.2625,-0.26245 -0.9185,-0.67058 -1.8123,-1.2733 -2.6245,-1.9684 z" | ||
769 | style="fill:url(#linearGradient11805);stroke-width:2.42556" | ||
770 | inkscape:connector-curvature="0" /> | ||
771 | <path | ||
772 | id="path6022-8" | ||
773 | style="fill:#3b5d8b;stroke-width:2.42556" | ||
774 | inkscape:connector-curvature="0" | ||
775 | d="m 1618.3,-844.36 c 0.6187,15.05 37.507,27.164 82.804,27.164 45.168,0 81.851,-12.042 82.672,-27.033 -14.494,12.328 -46.02,20.865 -82.672,20.865 -36.727,0 -68.35,-8.6271 -82.804,-20.996 z" /> | ||
776 | <path | ||
777 | id="path6043-0" | ||
778 | d="m 1618.3,-844.36 c 0.6187,15.05 37.507,27.164 82.804,27.164 45.168,0 81.851,-12.042 82.672,-27.033 -0.2087,0.17721 -0.4427,0.3519 -0.6561,0.52491 -5.2161,13.55 -39.937,24.014 -82.016,24.014 -42.466,0 -77.55,-10.545 -82.279,-24.277 -0.1684,-0.13312 -0.3624,-0.2549 -0.5249,-0.39347 z" | ||
779 | style="fill:url(#linearGradient11807);stroke-width:2.42556" | ||
780 | inkscape:connector-curvature="0" /> | ||
781 | <path | ||
782 | id="path6054-4" | ||
783 | style="fill:url(#linearGradient11809);stroke-width:2.42556" | ||
784 | inkscape:connector-curvature="0" | ||
785 | d="m 1618.3,-800.18 c 0.6187,15.05 37.507,27.164 82.804,27.164 45.168,0 81.851,-12.042 82.672,-27.033 -0.2087,0.17721 -0.4427,0.3519 -0.6561,0.52491 -5.2161,13.55 -39.937,24.014 -82.016,24.014 -42.466,0 -77.55,-10.545 -82.279,-24.277 -0.1684,-0.13312 -0.3624,-0.2549 -0.5249,-0.39347 z" /> | ||
786 | <path | ||
787 | id="path6060-7" | ||
788 | d="m 1618.8,-754.64 c 4.7284,13.732 39.813,24.277 82.279,24.277 42.079,0 76.8,-10.464 82.016,-24.014 -14.766,12.043 -45.892,20.34 -82.016,20.34 -36.314,0 -67.608,-8.4562 -82.279,-20.602 z" | ||
789 | style="fill:#3b5d8b;stroke-width:2.42556" | ||
790 | inkscape:connector-curvature="0" /> | ||
791 | </g> | ||
792 | </g> | ||
793 | <text | ||
794 | xml:space="preserve" | ||
795 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
796 | x="-40.600285" | ||
797 | y="693.29376" | ||
798 | id="text1185"><tspan | ||
799 | sodipodi:role="line" | ||
800 | id="tspan1183" | ||
801 | x="-40.600285" | ||
802 | y="693.29376" | ||
803 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';stroke:none">Server / computer</tspan></text> | ||
804 | <text | ||
805 | xml:space="preserve" | ||
806 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
807 | x="-43.34169" | ||
808 | y="769.37323" | ||
809 | id="text1185-2"><tspan | ||
810 | sodipodi:role="line" | ||
811 | id="tspan1183-6" | ||
812 | x="-43.34169" | ||
813 | y="769.37323" | ||
814 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke:none">Note: Public domain graphics from https://openclipart.org/</tspan></text> | ||
815 | <text | ||
816 | xml:space="preserve" | ||
817 | style="font-weight:bold;font-size:42.5884px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
818 | x="142.22464" | ||
819 | y="565.10297" | ||
820 | id="text907"><tspan | ||
821 | sodipodi:role="line" | ||
822 | id="tspan905" | ||
823 | x="142.22464" | ||
824 | y="565.10297" /></text> | ||
825 | <text | ||
826 | xml:space="preserve" | ||
827 | style="font-weight:bold;font-size:42.5884px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
828 | x="98.363503" | ||
829 | y="637.8432" | ||
830 | id="text911"><tspan | ||
831 | sodipodi:role="line" | ||
832 | id="tspan909" | ||
833 | x="98.363503" | ||
834 | y="637.8432" /></text> | ||
835 | <text | ||
836 | xml:space="preserve" | ||
837 | style="font-weight:bold;font-size:42.5884px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
838 | x="-59.575905" | ||
839 | y="580.05695" | ||
840 | id="text915"><tspan | ||
841 | sodipodi:role="line" | ||
842 | id="tspan913" | ||
843 | x="-59.575905" | ||
844 | y="580.05695" /></text> | ||
845 | <rect | ||
846 | style="fill:#deddda;fill-opacity:1;fill-rule:evenodd;stroke:#9a9996;stroke-width:2;stroke-opacity:1" | ||
847 | id="rect917-0" | ||
848 | width="120.00001" | ||
849 | height="69.017166" | ||
850 | x="240" | ||
851 | y="120.98283" | ||
852 | ry="3.4599047" /> | ||
853 | <text | ||
854 | xml:space="preserve" | ||
855 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
856 | x="301.85687" | ||
857 | y="147.99857" | ||
858 | id="text1185-3-55"><tspan | ||
859 | sodipodi:role="line" | ||
860 | id="tspan1183-8-2" | ||
861 | x="301.85687" | ||
862 | y="147.99857" | ||
863 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;stroke:none">Light 3</tspan><tspan | ||
864 | sodipodi:role="line" | ||
865 | x="303.70908" | ||
866 | y="165.99524" | ||
867 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';stroke:none" | ||
868 | id="tspan957-2"><tspan | ||
869 | id="tspan65063" | ||
870 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;stroke:none">box</tspan> </tspan></text> | ||
871 | <g | ||
872 | id="g1125-0" | ||
873 | transform="matrix(0.42240595,0,0,0.41654472,-55.833175,-195.15195)" | ||
874 | style="stroke:none;stroke-width:2.38399"> | ||
875 | <rect | ||
876 | style="opacity:1;fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.76797;stroke-opacity:1" | ||
877 | id="rect1061-9" | ||
878 | width="452.00439" | ||
879 | height="192.0562" | ||
880 | x="11.609296" | ||
881 | y="276.44562" | ||
882 | ry="4.0176301" /> | ||
883 | <g | ||
884 | id="g1109-1" | ||
885 | transform="translate(-2.7615661,-1.7576335)" | ||
886 | style="stroke:none;stroke-width:2.38399"> | ||
887 | <path | ||
888 | id="path14-9" | ||
889 | class="st0" | ||
890 | d="m 439.74452,358.11274 c 0,4.22 -3.41,7.64 -7.64,7.64 -4.22,0 -7.63,-3.42 -7.63,-7.64 0,-4.22 3.41,-7.64 7.63,-7.64 4.23,0 7.64,3.42 7.64,7.64 v 0" | ||
891 | style="fill:#4a97d2;fill-opacity:1;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
892 | <path | ||
893 | id="path16-6" | ||
894 | class="st1" | ||
895 | d="m 114.56452,324.94274 -11.13,-6.3 -22.409996,45.41 -23.9,-45.41 -11.27,6.3 28.41,53.38 c -0.21,0.51 -0.86,1.9 -1.95,4.22 -1.11,2.21 -2.25,4.41 -3.46,6.62 -2.11,3.81 -4.26,6.91 -6.46,9.32 -2.21,2.51 -4.46,4.51 -6.78,6.02 -2.3,1.51 -4.7,2.65 -7.21,3.46 -2.41,0.8 -4.87,1.45 -7.38,1.95 l 5.12,10.68 c 1.6,-0.21 3.75,-0.71 6.46,-1.51 2.81,-0.7 5.86,-2.06 9.17,-4.06 3.3,-2 6.67,-4.86 10.07,-8.57 3.52,-3.71 6.78,-8.62 9.78,-14.73 l 32.939996,-66.78" | ||
896 | style="fill:#ffffff;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
897 | <path | ||
898 | id="path18-2" | ||
899 | class="st1" | ||
900 | d="m 175.39452,358.18274 c 0,3.51 -0.6,6.76 -1.81,9.78 -1.21,3 -2.86,5.62 -4.95,7.81 -2.01,2.11 -4.41,3.81 -7.22,5.12 -2.71,1.19 -5.67,1.8 -8.87,1.8 -3.21,0 -6.22,-0.6 -9.02,-1.8 -2.81,-1.31 -5.27,-3.01 -7.38,-5.12 -2,-2.19 -3.6,-4.81 -4.81,-7.81 -1.21,-3.01 -1.81,-6.27 -1.81,-9.78 0,-3.51 0.6,-6.76 1.81,-9.77 1.21,-3 2.81,-5.61 4.81,-7.82 2.11,-2.21 4.57,-3.92 7.38,-5.11 2.8,-1.32 5.81,-1.97 9.02,-1.97 3.21,0 6.16,0.65 8.87,1.97 2.81,1.19 5.21,2.9 7.22,5.11 2.1,2.21 3.75,4.81 4.95,7.82 1.2,3.01 1.81,6.26 1.81,9.77 m 13.98,0 c 0,-5.21 -0.95,-10.08 -2.86,-14.59 -1.81,-4.51 -4.36,-8.42 -7.67,-11.73 -3.32,-3.3 -7.22,-5.86 -11.73,-7.67 -4.51,-1.9 -9.38,-2.86 -14.59,-2.86 -5.21,0 -10.08,0.95 -14.59,2.86 -4.51,1.81 -8.43,4.36 -11.73,7.67 -3.3,3.31 -5.92,7.22 -7.82,11.73 -1.9,4.51 -2.86,9.38 -2.86,14.59 0,5.21 0.95,10.08 2.86,14.59 1.9,4.41 4.52,8.27 7.82,11.57 3.3,3.32 7.22,5.92 11.73,7.82 4.51,1.81 9.38,2.71 14.59,2.71 5.21,0 10.08,-0.9 14.59,-2.71 4.51,-1.91 8.41,-4.51 11.73,-7.82 3.3,-3.3 5.86,-7.16 7.67,-11.57 1.91,-4.51 2.86,-9.38 2.86,-14.59" | ||
901 | style="fill:#ffffff;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
902 | <path | ||
903 | id="path20-5" | ||
904 | class="st1" | ||
905 | d="m 373.22452,358.18274 c 0,3.51 -0.6,6.76 -1.81,9.78 -1.21,3 -2.86,5.62 -4.97,7.81 -2,2.11 -4.4,3.81 -7.21,5.12 -2.71,1.19 -5.67,1.8 -8.87,1.8 -3.21,0 -6.22,-0.6 -9.03,-1.8 -2.8,-1.31 -5.26,-3.01 -7.37,-5.12 -2,-2.19 -3.61,-4.81 -4.81,-7.81 -1.21,-3.01 -1.81,-6.27 -1.81,-9.78 0,-3.51 0.6,-6.76 1.81,-9.77 1.21,-3 2.81,-5.61 4.81,-7.82 2.11,-2.21 4.57,-3.92 7.37,-5.11 2.81,-1.32 5.82,-1.97 9.03,-1.97 3.21,0 6.16,0.65 8.87,1.97 2.81,1.19 5.21,2.9 7.21,5.11 2.11,2.21 3.76,4.81 4.97,7.82 1.21,3.01 1.81,6.26 1.81,9.77 m 13.98,0 c 0,-5.21 -0.95,-10.08 -2.86,-14.59 -1.81,-4.51 -4.36,-8.42 -7.67,-11.73 -3.32,-3.3 -7.22,-5.86 -11.73,-7.67 -4.51,-1.9 -9.38,-2.86 -14.59,-2.86 -5.22,0 -10.08,0.95 -14.59,2.86 -4.51,1.81 -8.43,4.36 -11.73,7.67 -3.3,3.31 -5.92,7.22 -7.82,11.73 -1.9,4.51 -2.86,9.38 -2.86,14.59 0,5.21 0.95,10.08 2.86,14.59 1.9,4.41 4.52,8.27 7.82,11.57 3.3,3.32 7.22,5.92 11.73,7.82 4.51,1.81 9.37,2.71 14.59,2.71 5.21,0 10.08,-0.9 14.59,-2.71 4.51,-1.91 8.41,-4.51 11.73,-7.82 3.3,-3.3 5.86,-7.16 7.67,-11.57 1.91,-4.51 2.86,-9.38 2.86,-14.59" | ||
906 | style="fill:#ffffff;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
907 | <path | ||
908 | id="path22-4" | ||
909 | class="st1" | ||
910 | d="m 288.05452,298.59274 -13.39,7.52 v 16.45 h -36.21 c -26.15,0 -41.9,12.74 -41.9,35.95 0,36.04 37.55,42.84 64.25,29.96 l -5.63,-10.92 c -21.13,9.23 -44.53,5.3 -44.53,-19.28 0,-15.86 8.26,-24.54 27.49,-24.54 h 36.54 v 43.82 c 0,19.37 22.19,19.81 35.95,11.86 l -5.29,-10.45 c -8.85,4.48 -17.26,5.06 -17.26,-3.53 v -41.7 h 18.32 v -11.17 h -18.32 l -0.02,-23.97 v 0" | ||
911 | style="fill:#ffffff;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
912 | <path | ||
913 | id="path24-4" | ||
914 | class="st1" | ||
915 | d="m 136.79452,428.30274 h 3.35 c 1.69,-0.01 3.34,1.19 3.34,2.9 0,2.87 -3.23,3.3 -3.23,3.3 l -3.46,0.02 z m -4.84,-4.1 v 25.3 h 4.83 l 0.06,-10.67 c 8.62,0.54 11.84,-2.46 11.84,-7.75 0,-4.75 -4.26,-6.88 -8.34,-6.88 h -8.39 v 0" | ||
916 | style="fill:#ffffff;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
917 | <path | ||
918 | id="path26-9" | ||
919 | class="st1" | ||
920 | d="m 224.38452,436.87274 c 0,1.23 -0.23,2.39 -0.69,3.46 -0.42,1.04 -1.02,1.95 -1.81,2.74 -0.78,0.78 -1.7,1.4 -2.75,1.86 -1.04,0.42 -2.17,0.64 -3.38,0.64 -1.22,0 -2.35,-0.22 -3.39,-0.64 -1.05,-0.46 -1.96,-1.07 -2.75,-1.86 -0.76,-0.78 -1.36,-1.7 -1.81,-2.74 -0.46,-1.07 -0.69,-2.23 -0.69,-3.46 0,-1.23 0.23,-2.37 0.69,-3.42 0.45,-1.06 1.05,-1.99 1.81,-2.77 0.78,-0.78 1.7,-1.39 2.75,-1.82 1.04,-0.45 2.17,-0.67 3.39,-0.67 1.21,0 2.34,0.23 3.38,0.67 1.05,0.43 1.96,1.04 2.75,1.82 0.78,0.78 1.39,1.71 1.81,2.77 0.46,1.05 0.69,2.19 0.69,3.42 m 4.9,0 c 0,-1.81 -0.35,-3.5 -1.06,-5.06 -0.69,-1.59 -1.65,-2.97 -2.89,-4.12 -1.21,-1.17 -2.64,-2.09 -4.3,-2.75 -1.64,-0.69 -3.41,-1.04 -5.3,-1.04 -1.9,0 -3.69,0.35 -5.35,1.04 -1.64,0.66 -3.06,1.58 -4.27,2.75 -1.22,1.16 -2.17,2.53 -2.89,4.12 -0.69,1.57 -1.03,3.25 -1.03,5.06 0,1.83 0.34,3.53 1.03,5.1 0.72,1.57 1.68,2.94 2.89,4.12 1.21,1.17 2.63,2.09 4.27,2.75 1.66,0.66 3.45,1 5.35,1 1.89,0 3.67,-0.34 5.3,-1 1.66,-0.66 3.1,-1.58 4.3,-2.75 1.24,-1.18 2.21,-2.55 2.89,-4.12 0.71,-1.56 1.06,-3.26 1.06,-5.1" | ||
921 | style="fill:#ffffff;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
922 | <path | ||
923 | id="path28-9" | ||
924 | class="st1" | ||
925 | d="m 249.02452,424.25274 v 19.18 c 0,0.77 -0.57,1.63 -1.51,1.65 l -1.51,0.06 0.08,4.7 1.41,0.02 c 4.73,0.07 6.36,-4.37 6.36,-6.45 v -19.13" | ||
926 | style="fill:#ffffff;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
927 | <path | ||
928 | id="path30-3" | ||
929 | class="st1" | ||
930 | d="m 290.20452,424.19274 h -16.13 v 25.22 h 16.2 l -0.07,-4.06 h -11.28 v -6.58 h 9.44 v -4.06 h -9.44 v -6.38 h 11.21 l 0.07,-4.14" | ||
931 | style="fill:#ffffff;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
932 | <path | ||
933 | id="path32-6" | ||
934 | class="st1" | ||
935 | d="m 327.39452,430.24274 c -8.26,-4.53 -16.39,-1.78 -16.39,6.52 0,6.69 6.43,11.84 17,6.31 l 1.53,4.13 c -10.15,5.58 -23.51,1.6 -23.51,-10.44 0,-10.91 11.85,-16.59 23.36,-10.61 l -1.99,4.09" | ||
936 | style="fill:#ffffff;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
937 | <path | ||
938 | id="path34-0" | ||
939 | class="st1" | ||
940 | d="m 366.07452,424.19274 0.01,4.13 h -8.05 v 21.16 h -4.85 v -21.15 h -7.73 l 0.11,-4.13 h 20.51" | ||
941 | style="fill:#ffffff;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
942 | <path | ||
943 | id="path36-5" | ||
944 | class="st1" | ||
945 | d="m 172.67452,428.30274 h 3.35 c 1.69,-0.01 3.34,1.19 3.34,2.9 0,2.87 -3.23,3.3 -3.23,3.3 l -3.46,0.02 z m -4.82,-4.1 v 25.3 h 4.82 v -10.89 h 3.2 l 5.59,10.89 h 5.5 l -6.67,-12.2 c 2.64,-1.18 4.01,-3.26 4.01,-6.22 0,-4.94 -4.33,-6.88 -9.09,-6.88 h -7.36 v 0" | ||
946 | style="fill:#ffffff;stroke:none;stroke-width:0.238399;stroke-opacity:1" /> | ||
947 | </g> | ||
948 | </g> | ||
949 | <g | ||
950 | id="g72820"> | ||
951 | <rect | ||
952 | style="fill:#99c1f1;fill-opacity:1;fill-rule:evenodd;stroke:#62a0ea;stroke-width:2;stroke-opacity:1" | ||
953 | id="rect917-2-4-5" | ||
954 | width="120" | ||
955 | height="69.017166" | ||
956 | x="100" | ||
957 | y="120.00001" | ||
958 | ry="3.4599047" /> | ||
959 | <text | ||
960 | xml:space="preserve" | ||
961 | style="font-weight:bold;font-size:13.5687px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
962 | x="155.10774" | ||
963 | y="150.4942" | ||
964 | id="text1185-3-5-5-9" | ||
965 | transform="scale(1.0176559,0.98265042)"><tspan | ||
966 | sodipodi:role="line" | ||
967 | x="155.10774" | ||
968 | y="150.4942" | ||
969 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.5687px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;stroke:none;stroke-width:1px" | ||
970 | id="tspan957-6-5-9">Blue 1</tspan><tspan | ||
971 | sodipodi:role="line" | ||
972 | x="155.10774" | ||
973 | y="168.80861" | ||
974 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.5687px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;stroke:none;stroke-width:1px" | ||
975 | id="tspan60047">box</tspan></text> | ||
976 | </g> | ||
977 | <rect | ||
978 | style="fill:#ffbe6f;fill-opacity:1;fill-rule:evenodd;stroke:#ffa348;stroke-width:2;stroke-opacity:1" | ||
979 | id="rect917-2-9" | ||
980 | width="120.00001" | ||
981 | height="69.017166" | ||
982 | x="-40" | ||
983 | y="120.00001" | ||
984 | ry="3.4599047" /> | ||
985 | <text | ||
986 | xml:space="preserve" | ||
987 | style="font-weight:bold;font-size:13.5687px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
988 | x="20.119326" | ||
989 | y="149.15712" | ||
990 | id="text1185-3-5-5-9-4" | ||
991 | transform="scale(1.0176559,0.98265042)"><tspan | ||
992 | sodipodi:role="line" | ||
993 | x="20.119326" | ||
994 | y="149.15712" | ||
995 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.5687px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;stroke:none;stroke-width:1px" | ||
996 | id="tspan957-6-5-9-2">Orange 1</tspan><tspan | ||
997 | sodipodi:role="line" | ||
998 | x="20.119326" | ||
999 | y="167.47153" | ||
1000 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.5687px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;stroke:none;stroke-width:1px" | ||
1001 | id="tspan60047-2">box</tspan></text> | ||
1002 | <text | ||
1003 | xml:space="preserve" | ||
1004 | style="font-weight:bold;font-size:42.5884px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1005 | x="313.46567" | ||
1006 | y="412.9321" | ||
1007 | id="text3781"><tspan | ||
1008 | sodipodi:role="line" | ||
1009 | id="tspan3779" | ||
1010 | x="313.46567" | ||
1011 | y="412.9321" /></text> | ||
1012 | <text | ||
1013 | xml:space="preserve" | ||
1014 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1015 | x="-52.348656" | ||
1016 | y="518.42615" | ||
1017 | id="text1185-9-2"><tspan | ||
1018 | sodipodi:role="line" | ||
1019 | id="tspan1183-1-8" | ||
1020 | x="-52.348656" | ||
1021 | y="518.42615" | ||
1022 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:37.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke:none">Objets</tspan></text> | ||
1023 | <text | ||
1024 | xml:space="preserve" | ||
1025 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1026 | x="-52.87841" | ||
1027 | y="89.660812" | ||
1028 | id="text1185-9-2-7"><tspan | ||
1029 | sodipodi:role="line" | ||
1030 | id="tspan1183-1-8-2" | ||
1031 | x="-52.87841" | ||
1032 | y="89.660812" | ||
1033 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:37.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke:none">Shapes</tspan></text> | ||
1034 | <text | ||
1035 | xml:space="preserve" | ||
1036 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:37.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1037 | x="-52.994568" | ||
1038 | y="-109.65781" | ||
1039 | id="text1185-9-2-7-0"><tspan | ||
1040 | sodipodi:role="line" | ||
1041 | id="tspan1183-1-8-2-4" | ||
1042 | x="-52.994568" | ||
1043 | y="-109.65781" | ||
1044 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:37.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke:none">Logos</tspan></text> | ||
1045 | <text | ||
1046 | xml:space="preserve" | ||
1047 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1048 | x="-51.052338" | ||
1049 | y="248.86438" | ||
1050 | id="text1185-9-2-7-3"><tspan | ||
1051 | sodipodi:role="line" | ||
1052 | id="tspan1183-1-8-2-8" | ||
1053 | x="-51.052338" | ||
1054 | y="248.86438" | ||
1055 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:37.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke:none">Arrows</tspan></text> | ||
1056 | <text | ||
1057 | xml:space="preserve" | ||
1058 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1059 | x="-52.697285" | ||
1060 | y="373.75641" | ||
1061 | id="text1185-9-2-7-3-6"><tspan | ||
1062 | sodipodi:role="line" | ||
1063 | id="tspan1183-1-8-2-8-4" | ||
1064 | x="-52.697285" | ||
1065 | y="373.75641" | ||
1066 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:37.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke:none">Text</tspan></text> | ||
1067 | <path | ||
1068 | style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker5285);marker-end:url(#marker5161)" | ||
1069 | d="M -40,290.00001 H 70.803508" | ||
1070 | id="path5151" | ||
1071 | inkscape:connector-type="polyline" | ||
1072 | inkscape:connector-curvature="0" /> | ||
1073 | <path | ||
1074 | style="fill:#ffa348;fill-rule:evenodd;stroke:#ffa348;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow2Mstart-4);marker-end:url(#Arrow2Mend-4)" | ||
1075 | d="M 99.19649,290.00001 H 210" | ||
1076 | id="path5151-1" | ||
1077 | inkscape:connector-type="polyline" | ||
1078 | inkscape:connector-curvature="0" /> | ||
1079 | <path | ||
1080 | style="fill:#c0bfbc;fill-rule:evenodd;stroke:#c0bfbc;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker5285);marker-end:url(#marker5161)" | ||
1081 | d="M 379.19649,290.00001 H 490" | ||
1082 | id="path5151-1-2" | ||
1083 | inkscape:connector-type="polyline" | ||
1084 | inkscape:connector-curvature="0" /> | ||
1085 | <text | ||
1086 | xml:space="preserve" | ||
1087 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1088 | x="-38.034531" | ||
1089 | y="429.09885" | ||
1090 | id="text1185-9-7"><tspan | ||
1091 | sodipodi:role="line" | ||
1092 | id="tspan1183-1-2" | ||
1093 | x="-38.034531" | ||
1094 | y="429.09885" | ||
1095 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';stroke:none">Normal text</tspan></text> | ||
1096 | <text | ||
1097 | xml:space="preserve" | ||
1098 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1099 | x="105.28938" | ||
1100 | y="324.79022" | ||
1101 | id="text1185-9-7-8"><tspan | ||
1102 | sodipodi:role="line" | ||
1103 | id="tspan1183-1-2-9" | ||
1104 | x="105.28938" | ||
1105 | y="324.79022" | ||
1106 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';stroke:none">Orange 1 arrow</tspan></text> | ||
1107 | <text | ||
1108 | xml:space="preserve" | ||
1109 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1110 | x="255.85823" | ||
1111 | y="324.95401" | ||
1112 | id="text1185-9-7-8-2"><tspan | ||
1113 | sodipodi:role="line" | ||
1114 | id="tspan1183-1-2-9-8" | ||
1115 | x="255.85823" | ||
1116 | y="324.95401" | ||
1117 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';stroke:none">Blue 1 arrow</tspan></text> | ||
1118 | <path | ||
1119 | style="fill:#99c1f1;fill-rule:evenodd;stroke:#99c1f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4174-8);marker-end:url(#marker4286-6)" | ||
1120 | d="M 239.19649,290.00001 H 350" | ||
1121 | id="path5151-1-2-3" | ||
1122 | inkscape:connector-type="polyline" | ||
1123 | inkscape:connector-curvature="0" /> | ||
1124 | <text | ||
1125 | xml:space="preserve" | ||
1126 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1127 | x="395.33353" | ||
1128 | y="324.16251" | ||
1129 | id="text1185-9-7-8-2-8"><tspan | ||
1130 | sodipodi:role="line" | ||
1131 | id="tspan1183-1-2-9-8-3" | ||
1132 | x="395.33353" | ||
1133 | y="324.16251" | ||
1134 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';stroke:none">Light 3 arrow</tspan></text> | ||
1135 | <text | ||
1136 | xml:space="preserve" | ||
1137 | style="font-weight:bold;font-size:13.3333px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1138 | x="57.50481" | ||
1139 | y="428.73474" | ||
1140 | id="text1185-9-7-1"><tspan | ||
1141 | sodipodi:role="line" | ||
1142 | id="tspan1183-1-2-2" | ||
1143 | x="57.50481" | ||
1144 | y="428.73474" | ||
1145 | style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke:none">Label text (bold)</tspan></text> | ||
1146 | <text | ||
1147 | xml:space="preserve" | ||
1148 | style="font-weight:bold;font-size:42.5884px;line-height:125%;font-family:'Nimbus Roman';-inkscape-font-specification:'Nimbus Roman, Bold';letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1149 | x="-16.290483" | ||
1150 | y="345.7359" | ||
1151 | id="text3116"><tspan | ||
1152 | sodipodi:role="line" | ||
1153 | id="tspan3114" | ||
1154 | x="-16.290483" | ||
1155 | y="345.7359" /></text> | ||
1156 | </g> | ||
1157 | <style | ||
1158 | type="text/css" | ||
1159 | id="style1021"> .st0{fill:#4A97D2;} .st1{fill:#333333;} </style> | ||
1160 | </svg> | ||