pymodaq 3.6.12__py3-none-any.whl → 4.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pymodaq might be problematic. Click here for more details.

Files changed (233) hide show
  1. pymodaq/__init__.py +13 -6
  2. pymodaq/control_modules/__init__.py +0 -7
  3. pymodaq/control_modules/daq_move.py +965 -2
  4. pymodaq/control_modules/daq_move_ui.py +319 -0
  5. pymodaq/control_modules/daq_viewer.py +1573 -3
  6. pymodaq/control_modules/daq_viewer_ui.py +393 -0
  7. pymodaq/control_modules/mocks.py +51 -0
  8. pymodaq/control_modules/move_utility_classes.py +709 -8
  9. pymodaq/control_modules/utils.py +256 -0
  10. pymodaq/control_modules/viewer_utility_classes.py +663 -6
  11. pymodaq/daq_utils.py +89 -0
  12. pymodaq/dashboard.py +91 -72
  13. pymodaq/examples/custom_app.py +12 -11
  14. pymodaq/examples/custom_viewer.py +10 -10
  15. pymodaq/examples/function_plotter.py +16 -13
  16. pymodaq/examples/nonlinearscanner.py +8 -6
  17. pymodaq/examples/parameter_ex.py +7 -7
  18. pymodaq/examples/preset_MockCamera.xml +1 -0
  19. pymodaq/extensions/__init__.py +16 -0
  20. pymodaq/extensions/console.py +76 -0
  21. pymodaq/{daq_logger.py → extensions/daq_logger.py} +115 -65
  22. pymodaq/extensions/daq_scan.py +1339 -0
  23. pymodaq/extensions/daq_scan_ui.py +240 -0
  24. pymodaq/extensions/h5browser.py +23 -0
  25. pymodaq/{pid → extensions/pid}/__init__.py +4 -2
  26. pymodaq/{pid → extensions/pid}/daq_move_PID.py +2 -2
  27. pymodaq/{pid → extensions/pid}/pid_controller.py +48 -36
  28. pymodaq/{pid → extensions/pid}/utils.py +52 -6
  29. pymodaq/extensions/utils.py +40 -0
  30. pymodaq/post_treatment/__init__.py +6 -0
  31. pymodaq/{daq_analysis → post_treatment/daq_analysis}/daq_analysis_main.py +17 -17
  32. pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_main.py +8 -14
  33. pymodaq/post_treatment/load_and_plot.py +219 -0
  34. pymodaq/post_treatment/process_to_scalar.py +263 -0
  35. pymodaq/resources/QtDesigner_Ressources/Icon_Library/run_all.png +0 -0
  36. pymodaq/resources/QtDesigner_Ressources/Icon_Library/stop_all.png +0 -0
  37. pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.bat +1 -1
  38. pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.qrc +1 -0
  39. pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources_rc.py +109784 -109173
  40. pymodaq/resources/QtDesigner_Ressources/icons.svg +142 -0
  41. pymodaq/resources/VERSION +1 -1
  42. pymodaq/resources/config_template.toml +32 -13
  43. pymodaq/resources/preset_default.xml +1 -1
  44. pymodaq/{daq_utils → utils}/Tuto innosetup/script_full_setup.iss +1 -1
  45. pymodaq/utils/__init__.py +0 -29
  46. pymodaq/utils/abstract/__init__.py +48 -0
  47. pymodaq/{daq_utils → utils}/abstract/logger.py +7 -3
  48. pymodaq/utils/array_manipulation.py +379 -8
  49. pymodaq/{daq_utils → utils}/calibration_camera.py +6 -6
  50. pymodaq/{daq_utils → utils}/chrono_timer.py +1 -1
  51. pymodaq/utils/config.py +448 -0
  52. pymodaq/utils/conftests.py +5 -0
  53. pymodaq/utils/daq_utils.py +828 -8
  54. pymodaq/utils/data.py +1873 -7
  55. pymodaq/{daq_utils → utils}/db/db_logger/db_logger.py +86 -47
  56. pymodaq/{daq_utils → utils}/db/db_logger/db_logger_models.py +31 -10
  57. pymodaq/{daq_utils → utils}/enums.py +12 -7
  58. pymodaq/utils/exceptions.py +37 -0
  59. pymodaq/utils/factory.py +82 -0
  60. pymodaq/{daq_utils → utils}/gui_utils/__init__.py +1 -1
  61. pymodaq/utils/gui_utils/custom_app.py +129 -0
  62. pymodaq/utils/gui_utils/file_io.py +66 -0
  63. pymodaq/{daq_utils → utils}/gui_utils/layout.py +2 -2
  64. pymodaq/{daq_utils → utils}/gui_utils/utils.py +13 -3
  65. pymodaq/{daq_utils → utils}/gui_utils/widgets/__init__.py +2 -2
  66. pymodaq/utils/gui_utils/widgets/label.py +24 -0
  67. pymodaq/{daq_utils → utils}/gui_utils/widgets/lcd.py +12 -7
  68. pymodaq/{daq_utils → utils}/gui_utils/widgets/push.py +66 -2
  69. pymodaq/{daq_utils → utils}/gui_utils/widgets/qled.py +6 -4
  70. pymodaq/utils/gui_utils/widgets/spinbox.py +24 -0
  71. pymodaq/{daq_utils → utils}/gui_utils/widgets/table.py +2 -2
  72. pymodaq/utils/h5modules/__init__.py +1 -0
  73. pymodaq/{daq_utils/h5backend.py → utils/h5modules/backends.py} +200 -112
  74. pymodaq/utils/h5modules/browsing.py +683 -0
  75. pymodaq/utils/h5modules/data_saving.py +839 -0
  76. pymodaq/utils/h5modules/h5logging.py +110 -0
  77. pymodaq/utils/h5modules/module_saving.py +350 -0
  78. pymodaq/utils/h5modules/saving.py +914 -0
  79. pymodaq/utils/h5modules/utils.py +85 -0
  80. pymodaq/utils/logger.py +64 -6
  81. pymodaq/utils/managers/action_manager.py +460 -0
  82. pymodaq/{daq_utils → utils}/managers/batchscan_manager.py +144 -112
  83. pymodaq/{daq_utils → utils}/managers/modules_manager.py +188 -114
  84. pymodaq/{daq_utils → utils}/managers/overshoot_manager.py +3 -3
  85. pymodaq/utils/managers/parameter_manager.py +110 -0
  86. pymodaq/{daq_utils → utils}/managers/preset_manager.py +17 -13
  87. pymodaq/{daq_utils → utils}/managers/preset_manager_utils.py +8 -7
  88. pymodaq/{daq_utils → utils}/managers/remote_manager.py +7 -6
  89. pymodaq/{daq_utils → utils}/managers/roi_manager.py +148 -57
  90. pymodaq/utils/math_utils.py +546 -10
  91. pymodaq/{daq_utils → utils}/messenger.py +5 -1
  92. pymodaq/utils/parameter/__init__.py +2 -15
  93. pymodaq/{daq_utils → utils}/parameter/ioxml.py +12 -6
  94. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/__init__.py +1 -3
  95. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/filedir.py +1 -1
  96. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/itemselect.py +3 -0
  97. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/led.py +1 -1
  98. pymodaq/utils/parameter/pymodaq_ptypes/pixmap.py +161 -0
  99. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/slide.py +1 -1
  100. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/table.py +1 -1
  101. pymodaq/utils/parameter/utils.py +206 -11
  102. pymodaq/utils/plotting/data_viewers/__init__.py +6 -0
  103. pymodaq/utils/plotting/data_viewers/viewer.py +393 -0
  104. pymodaq/utils/plotting/data_viewers/viewer0D.py +251 -0
  105. pymodaq/utils/plotting/data_viewers/viewer1D.py +574 -0
  106. pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer1Dbasic.py +8 -3
  107. pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer2D.py +292 -357
  108. pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer2D_basic.py +58 -75
  109. pymodaq/utils/plotting/data_viewers/viewerND.py +738 -0
  110. pymodaq/{daq_utils → utils}/plotting/gant_chart.py +2 -2
  111. pymodaq/{daq_utils → utils}/plotting/items/axis_scaled.py +4 -2
  112. pymodaq/{daq_utils → utils}/plotting/items/image.py +8 -6
  113. pymodaq/utils/plotting/navigator.py +355 -0
  114. pymodaq/utils/plotting/scan_selector.py +480 -0
  115. pymodaq/utils/plotting/utils/axes_viewer.py +88 -0
  116. pymodaq/utils/plotting/utils/filter.py +538 -0
  117. pymodaq/utils/plotting/utils/lineout.py +224 -0
  118. pymodaq/{daq_utils → utils}/plotting/utils/plot_utils.py +196 -84
  119. pymodaq/{daq_utils → utils}/plotting/utils/signalND.py +21 -13
  120. pymodaq/utils/plotting/widgets.py +76 -0
  121. pymodaq/utils/scanner/__init__.py +10 -0
  122. pymodaq/utils/scanner/scan_factory.py +204 -0
  123. pymodaq/utils/scanner/scanner.py +271 -0
  124. pymodaq/utils/scanner/scanners/_1d_scanners.py +117 -0
  125. pymodaq/utils/scanner/scanners/_2d_scanners.py +293 -0
  126. pymodaq/utils/scanner/scanners/sequential.py +192 -0
  127. pymodaq/utils/scanner/scanners/tabular.py +294 -0
  128. pymodaq/utils/scanner/utils.py +83 -0
  129. pymodaq/utils/slicing.py +47 -0
  130. pymodaq/utils/svg/__init__.py +6 -0
  131. pymodaq/utils/svg/svg_renderer.py +20 -0
  132. pymodaq/utils/svg/svg_view.py +35 -0
  133. pymodaq/utils/svg/svg_viewer2D.py +51 -0
  134. pymodaq/{daq_utils → utils}/tcp_server_client.py +36 -37
  135. pymodaq/{daq_utils → utils}/tree_layout/tree_layout_main.py +50 -35
  136. pymodaq/utils/units.py +216 -0
  137. pymodaq-4.0.1.dist-info/METADATA +159 -0
  138. {pymodaq-3.6.12.dist-info → pymodaq-4.0.1.dist-info}/RECORD +167 -170
  139. {pymodaq-3.6.12.dist-info → pymodaq-4.0.1.dist-info}/WHEEL +1 -2
  140. pymodaq-4.0.1.dist-info/entry_points.txt +8 -0
  141. pymodaq/daq_move/daq_move_gui.py +0 -279
  142. pymodaq/daq_move/daq_move_gui.ui +0 -534
  143. pymodaq/daq_move/daq_move_main.py +0 -1042
  144. pymodaq/daq_move/process_from_QtDesigner_DAQ_Move_GUI.bat +0 -2
  145. pymodaq/daq_move/utility_classes.py +0 -671
  146. pymodaq/daq_scan.py +0 -2160
  147. pymodaq/daq_utils/array_manipulation.py +0 -386
  148. pymodaq/daq_utils/config.py +0 -273
  149. pymodaq/daq_utils/conftests.py +0 -7
  150. pymodaq/daq_utils/custom_parameter_tree.py +0 -9
  151. pymodaq/daq_utils/daq_enums.py +0 -133
  152. pymodaq/daq_utils/daq_utils.py +0 -1402
  153. pymodaq/daq_utils/exceptions.py +0 -71
  154. pymodaq/daq_utils/gui_utils/custom_app.py +0 -103
  155. pymodaq/daq_utils/gui_utils/file_io.py +0 -75
  156. pymodaq/daq_utils/gui_utils/widgets/spinbox.py +0 -9
  157. pymodaq/daq_utils/h5exporter_hyperspy.py +0 -115
  158. pymodaq/daq_utils/h5exporters.py +0 -242
  159. pymodaq/daq_utils/h5modules.py +0 -1559
  160. pymodaq/daq_utils/h5utils.py +0 -241
  161. pymodaq/daq_utils/managers/action_manager.py +0 -236
  162. pymodaq/daq_utils/managers/parameter_manager.py +0 -57
  163. pymodaq/daq_utils/math_utils.py +0 -705
  164. pymodaq/daq_utils/parameter/__init__.py +0 -1
  165. pymodaq/daq_utils/parameter/oldpymodaq_ptypes.py +0 -1626
  166. pymodaq/daq_utils/parameter/pymodaq_ptypes/pixmap.py +0 -85
  167. pymodaq/daq_utils/parameter/utils.py +0 -136
  168. pymodaq/daq_utils/plotting/data_viewers/__init__.py +0 -0
  169. pymodaq/daq_utils/plotting/data_viewers/process_from_QtDesigner_0DViewer_GUI.bat +0 -2
  170. pymodaq/daq_utils/plotting/data_viewers/viewer0D.py +0 -204
  171. pymodaq/daq_utils/plotting/data_viewers/viewer0D_GUI.py +0 -89
  172. pymodaq/daq_utils/plotting/data_viewers/viewer0D_GUI.ui +0 -131
  173. pymodaq/daq_utils/plotting/data_viewers/viewer1D.py +0 -781
  174. pymodaq/daq_utils/plotting/data_viewers/viewerND.py +0 -894
  175. pymodaq/daq_utils/plotting/data_viewers/viewerbase.py +0 -64
  176. pymodaq/daq_utils/plotting/items/__init__.py +0 -0
  177. pymodaq/daq_utils/plotting/navigator.py +0 -500
  178. pymodaq/daq_utils/plotting/scan_selector.py +0 -289
  179. pymodaq/daq_utils/plotting/utils/__init__.py +0 -0
  180. pymodaq/daq_utils/plotting/utils/filter.py +0 -236
  181. pymodaq/daq_utils/plotting/viewer0D/__init__.py +0 -0
  182. pymodaq/daq_utils/plotting/viewer0D/viewer0D_main.py +0 -4
  183. pymodaq/daq_utils/plotting/viewer1D/__init__.py +0 -0
  184. pymodaq/daq_utils/plotting/viewer1D/viewer1D_main.py +0 -4
  185. pymodaq/daq_utils/plotting/viewer1D/viewer1Dbasic.py +0 -4
  186. pymodaq/daq_utils/plotting/viewer2D/viewer_2D_basic.py +0 -4
  187. pymodaq/daq_utils/plotting/viewer2D/viewer_2D_main.py +0 -4
  188. pymodaq/daq_utils/plotting/viewerND/__init__.py +0 -0
  189. pymodaq/daq_utils/plotting/viewerND/viewerND_main.py +0 -4
  190. pymodaq/daq_utils/scanner.py +0 -1289
  191. pymodaq/daq_utils/tree_layout/__init__.py +0 -0
  192. pymodaq/daq_viewer/__init__.py +0 -0
  193. pymodaq/daq_viewer/daq_gui_settings.py +0 -237
  194. pymodaq/daq_viewer/daq_gui_settings.ui +0 -441
  195. pymodaq/daq_viewer/daq_viewer_main.py +0 -2225
  196. pymodaq/daq_viewer/process_from_QtDesigner_DAQ_GUI_settings.bat +0 -2
  197. pymodaq/daq_viewer/utility_classes.py +0 -673
  198. pymodaq/examples/logger_image/__init__.py +0 -0
  199. pymodaq/examples/logger_image/logger_displayer.py +0 -121
  200. pymodaq/examples/logger_image/setup.svg +0 -3119
  201. pymodaq/examples/logger_image/setup_svg.py +0 -114
  202. pymodaq/h5browser.py +0 -39
  203. pymodaq/utils/scanner.py +0 -15
  204. pymodaq-3.6.12.dist-info/METADATA +0 -39
  205. pymodaq-3.6.12.dist-info/entry_points.txt +0 -8
  206. pymodaq-3.6.12.dist-info/top_level.txt +0 -1
  207. /pymodaq/{daq_analysis → post_treatment/daq_analysis}/__init__.py +0 -0
  208. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/__init__.py +0 -0
  209. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_GUI.py +0 -0
  210. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_GUI.ui +0 -0
  211. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/process_from_QtDesigner_DAQ_Measurement_GUI.bat +0 -0
  212. /pymodaq/{daq_utils → utils}/Tuto innosetup/Tuto innosetup.odt +0 -0
  213. /pymodaq/{daq_utils → utils}/Tuto innosetup/Tuto innosetup.pdf +0 -0
  214. /pymodaq/{daq_move → utils/db}/__init__.py +0 -0
  215. /pymodaq/{daq_utils → utils/db/db_logger}/__init__.py +0 -0
  216. /pymodaq/{daq_utils → utils}/gui_utils/dock.py +0 -0
  217. /pymodaq/{daq_utils → utils}/gui_utils/list_picker.py +0 -0
  218. /pymodaq/{daq_utils/abstract → utils/managers}/__init__.py +0 -0
  219. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/bool.py +0 -0
  220. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/date.py +0 -0
  221. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/list.py +0 -0
  222. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/numeric.py +0 -0
  223. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/tableview.py +0 -0
  224. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/text.py +0 -0
  225. /pymodaq/{daq_utils/db → utils/plotting}/__init__.py +0 -0
  226. /pymodaq/{daq_utils → utils}/plotting/image_viewer.py +0 -0
  227. /pymodaq/{daq_utils/db/db_logger → utils/plotting/items}/__init__.py +0 -0
  228. /pymodaq/{daq_utils → utils}/plotting/items/crosshair.py +0 -0
  229. /pymodaq/{daq_utils/managers → utils/plotting/utils}/__init__.py +0 -0
  230. /pymodaq/{daq_utils → utils}/qvariant.py +0 -0
  231. /pymodaq/{daq_utils/plotting/viewer2D → utils/scanner/scanners}/__init__.py +0 -0
  232. /pymodaq/{daq_utils/plotting → utils/tree_layout}/__init__.py +0 -0
  233. {pymodaq-3.6.12.dist-info → pymodaq-4.0.1.dist-info/licenses}/LICENSE +0 -0
@@ -1,3119 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg
3
- xmlns:ns0="http://www.iki.fi/pav/software/textext/"
4
- xmlns:dc="http://purl.org/dc/elements/1.1/"
5
- xmlns:cc="http://creativecommons.org/ns#"
6
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
- xmlns:svg="http://www.w3.org/2000/svg"
8
- xmlns="http://www.w3.org/2000/svg"
9
- xmlns:xlink="http://www.w3.org/1999/xlink"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- sodipodi:docname="setup.svg"
13
- inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
14
- version="1.1"
15
- id="svg2"
16
- height="138.60632mm"
17
- width="199.73317mm">
18
- <sodipodi:namedview
19
- lock-margins="true"
20
- fit-margin-bottom="20"
21
- fit-margin-right="20"
22
- fit-margin-left="20"
23
- fit-margin-top="20"
24
- inkscape:document-rotation="0"
25
- inkscape:snap-bbox-edge-midpoints="true"
26
- inkscape:snap-object-midpoints="true"
27
- inkscape:snap-global="false"
28
- inkscape:guide-bbox="true"
29
- showguides="true"
30
- inkscape:bbox-nodes="true"
31
- inkscape:bbox-paths="true"
32
- inkscape:snap-bbox="true"
33
- inkscape:window-maximized="1"
34
- inkscape:window-y="-8"
35
- inkscape:window-x="1912"
36
- inkscape:window-height="1137"
37
- inkscape:window-width="1920"
38
- showgrid="false"
39
- inkscape:current-layer="layer1"
40
- inkscape:document-units="px"
41
- inkscape:cy="340.59047"
42
- inkscape:cx="249.09985"
43
- inkscape:zoom="1.0000001"
44
- inkscape:pageshadow="2"
45
- inkscape:pageopacity="0.0"
46
- borderopacity="1.0"
47
- bordercolor="#666666"
48
- pagecolor="#ffffff"
49
- id="base" />
50
- <defs
51
- id="defs4">
52
- <inkscape:path-effect
53
- lpeversion="0"
54
- is_visible="true"
55
- id="path-effect5227"
56
- effect="spiro" />
57
- <linearGradient
58
- id="linearGradient13774">
59
- <stop
60
- id="stop13776"
61
- offset="0"
62
- style="stop-color:#000000;stop-opacity:1;" />
63
- <stop
64
- id="stop13778"
65
- offset="1"
66
- style="stop-color:#9f9f9f;stop-opacity:0;" />
67
- </linearGradient>
68
- <linearGradient
69
- id="linearGradient6038">
70
- <stop
71
- id="stop6040"
72
- offset="0"
73
- style="stop-color:#ff0000;stop-opacity:0.76923078" />
74
- <stop
75
- id="stop6042"
76
- offset="1"
77
- style="stop-color:#ff1a00;stop-opacity:0.30327868;" />
78
- </linearGradient>
79
- <marker
80
- inkscape:stockid="Arrow2MendM-3Q"
81
- orient="auto"
82
- refY="0"
83
- refX="0"
84
- id="Arrow2MendM-3Q"
85
- style="overflow:visible">
86
- <path
87
- inkscape:connector-curvature="0"
88
- id="path4038"
89
- style="font-size:12px;fill:#ff00bc;fill-rule:evenodd;stroke:#ff00bc;stroke-width:0.625;stroke-linejoin:round"
90
- 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"
91
- transform="scale(-0.6)" />
92
- </marker>
93
- <marker
94
- inkscape:stockid="Arrow2MendM"
95
- orient="auto"
96
- refY="0"
97
- refX="0"
98
- id="Arrow2MendM-3-3"
99
- style="overflow:visible">
100
- <path
101
- inkscape:connector-curvature="0"
102
- id="path4492-8-87"
103
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
104
- 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"
105
- transform="scale(-0.6)" />
106
- </marker>
107
- <marker
108
- inkscape:stockid="Arrow2MendM"
109
- orient="auto"
110
- refY="0"
111
- refX="0"
112
- id="Arrow2MendM-3-9"
113
- style="overflow:visible">
114
- <path
115
- inkscape:connector-curvature="0"
116
- id="path4492-8-54"
117
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
118
- 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"
119
- transform="scale(-0.6)" />
120
- </marker>
121
- <marker
122
- inkscape:stockid="Arrow2MendMd"
123
- orient="auto"
124
- refY="0"
125
- refX="0"
126
- id="Arrow2MendMd-6"
127
- style="overflow:visible">
128
- <path
129
- id="path6446-1"
130
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
131
- 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"
132
- transform="scale(-0.6)"
133
- inkscape:connector-curvature="0" />
134
- </marker>
135
- <marker
136
- inkscape:stockid="Arrow2MstartAq"
137
- orient="auto"
138
- refY="0"
139
- refX="0"
140
- id="Arrow2MstartAq-5"
141
- style="overflow:visible">
142
- <path
143
- id="path6443-7"
144
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
145
- 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"
146
- transform="scale(0.6)"
147
- inkscape:connector-curvature="0" />
148
- </marker>
149
- <marker
150
- inkscape:stockid="Arrow2MendMd"
151
- orient="auto"
152
- refY="0"
153
- refX="0"
154
- id="Arrow2MendMd-2"
155
- style="overflow:visible">
156
- <path
157
- id="path6446-2"
158
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
159
- 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"
160
- transform="scale(-0.6)"
161
- inkscape:connector-curvature="0" />
162
- </marker>
163
- <marker
164
- inkscape:stockid="Arrow2MstartAq"
165
- orient="auto"
166
- refY="0"
167
- refX="0"
168
- id="Arrow2MstartAq-2"
169
- style="overflow:visible">
170
- <path
171
- id="path6443-3"
172
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
173
- 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"
174
- transform="scale(0.6)"
175
- inkscape:connector-curvature="0" />
176
- </marker>
177
- <marker
178
- inkscape:stockid="Arrow2MendMR"
179
- orient="auto"
180
- refY="0"
181
- refX="0"
182
- id="Arrow2MendMR-1"
183
- style="overflow:visible">
184
- <path
185
- id="path6452-4"
186
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
187
- 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"
188
- transform="scale(-0.6)"
189
- inkscape:connector-curvature="0" />
190
- </marker>
191
- <marker
192
- inkscape:stockid="Arrow2MstartAA"
193
- orient="auto"
194
- refY="0"
195
- refX="0"
196
- id="Arrow2MstartAA-7"
197
- style="overflow:visible">
198
- <path
199
- id="path6449-6"
200
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
201
- 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"
202
- transform="scale(0.6)"
203
- inkscape:connector-curvature="0" />
204
- </marker>
205
- <marker
206
- inkscape:stockid="Arrow2MendM7"
207
- orient="auto"
208
- refY="0"
209
- refX="0"
210
- id="Arrow2MendM7-5"
211
- style="overflow:visible">
212
- <path
213
- id="path6440-2"
214
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
215
- 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"
216
- transform="scale(-0.6)"
217
- inkscape:connector-curvature="0" />
218
- </marker>
219
- <marker
220
- inkscape:stockid="Arrow2MstartAD"
221
- orient="auto"
222
- refY="0"
223
- refX="0"
224
- id="Arrow2MstartAD-1"
225
- style="overflow:visible">
226
- <path
227
- id="path6437-1"
228
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
229
- 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"
230
- transform="scale(0.6)"
231
- inkscape:connector-curvature="0" />
232
- </marker>
233
- <marker
234
- inkscape:stockid="Arrow2MendJ"
235
- orient="auto"
236
- refY="0"
237
- refX="0"
238
- id="marker3222"
239
- style="overflow:visible">
240
- <path
241
- id="path3224"
242
- style="font-size:12px;fill:#0200ff;fill-rule:evenodd;stroke:#0200ff;stroke-width:0.625;stroke-linejoin:round"
243
- 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"
244
- transform="scale(-0.6)"
245
- inkscape:connector-curvature="0" />
246
- </marker>
247
- <marker
248
- inkscape:stockid="Arrow2MendJ"
249
- orient="auto"
250
- refY="0"
251
- refX="0"
252
- id="Arrow2MendJ-1"
253
- style="overflow:visible">
254
- <path
255
- id="path5223-7"
256
- style="font-size:12px;fill:#0200ff;fill-rule:evenodd;stroke:#0200ff;stroke-width:0.625;stroke-linejoin:round"
257
- 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"
258
- transform="scale(-0.6)"
259
- inkscape:connector-curvature="0" />
260
- </marker>
261
- <marker
262
- inkscape:stockid="Arrow2MendMZ"
263
- orient="auto"
264
- refY="0"
265
- refX="0"
266
- id="Arrow2MendMZ-5"
267
- style="overflow:visible">
268
- <path
269
- id="path5573-5"
270
- style="font-size:12px;fill:#302fff;fill-rule:evenodd;stroke:#302fff;stroke-width:0.625;stroke-linejoin:round"
271
- 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"
272
- transform="scale(-0.6)"
273
- inkscape:connector-curvature="0" />
274
- </marker>
275
- <marker
276
- inkscape:stockid="Arrow2MstartAC"
277
- orient="auto"
278
- refY="0"
279
- refX="0"
280
- id="Arrow2MstartAC-2"
281
- style="overflow:visible">
282
- <path
283
- id="path5570-4"
284
- style="font-size:12px;fill:#302fff;fill-rule:evenodd;stroke:#302fff;stroke-width:0.625;stroke-linejoin:round"
285
- 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"
286
- transform="scale(0.6)"
287
- inkscape:connector-curvature="0" />
288
- </marker>
289
- <marker
290
- inkscape:stockid="Arrow2MendM"
291
- orient="auto"
292
- refY="0"
293
- refX="0"
294
- id="marker3212"
295
- style="overflow:visible">
296
- <path
297
- inkscape:connector-curvature="0"
298
- id="path3214"
299
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
300
- 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"
301
- transform="scale(-0.6)" />
302
- </marker>
303
- <marker
304
- inkscape:stockid="Arrow2MendM"
305
- orient="auto"
306
- refY="0"
307
- refX="0"
308
- id="marker3208"
309
- style="overflow:visible">
310
- <path
311
- inkscape:connector-curvature="0"
312
- id="path3210"
313
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
314
- 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"
315
- transform="scale(-0.6)" />
316
- </marker>
317
- <marker
318
- inkscape:stockid="Arrow2MendM"
319
- orient="auto"
320
- refY="0"
321
- refX="0"
322
- id="marker3204"
323
- style="overflow:visible">
324
- <path
325
- inkscape:connector-curvature="0"
326
- id="path3206"
327
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
328
- 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"
329
- transform="scale(-0.6)" />
330
- </marker>
331
- <marker
332
- inkscape:stockid="Arrow2MendM-3u"
333
- orient="auto"
334
- refY="0"
335
- refX="0"
336
- id="Arrow2MendM-3u-8"
337
- style="overflow:visible">
338
- <path
339
- inkscape:connector-curvature="0"
340
- id="path7141-8"
341
- style="font-size:12px;fill:#ffe610;fill-rule:evenodd;stroke:#ffe610;stroke-width:0.625;stroke-linejoin:round"
342
- 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"
343
- transform="scale(-0.6)" />
344
- </marker>
345
- <marker
346
- inkscape:stockid="Arrow2MendM-3q"
347
- orient="auto"
348
- refY="0"
349
- refX="0"
350
- id="Arrow2MendM-3q-9"
351
- style="overflow:visible">
352
- <path
353
- inkscape:connector-curvature="0"
354
- id="path6832-4"
355
- style="font-size:12px;fill:#00d826;fill-rule:evenodd;stroke:#00d826;stroke-width:0.625;stroke-linejoin:round"
356
- 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"
357
- transform="scale(-0.6)" />
358
- </marker>
359
- <marker
360
- inkscape:stockid="Arrow2MendM"
361
- orient="auto"
362
- refY="0"
363
- refX="0"
364
- id="Arrow2MendM-3-4"
365
- style="overflow:visible">
366
- <path
367
- inkscape:connector-curvature="0"
368
- id="path4492-8-0"
369
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
370
- 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"
371
- transform="scale(-0.6)" />
372
- </marker>
373
- <marker
374
- inkscape:stockid="Arrow2MendM-3qV"
375
- orient="auto"
376
- refY="0"
377
- refX="0"
378
- id="Arrow2MendM-3qV-1"
379
- style="overflow:visible">
380
- <path
381
- inkscape:connector-curvature="0"
382
- id="path7723-7"
383
- style="font-size:12px;fill:#7200ff;fill-rule:evenodd;stroke:#7200ff;stroke-width:0.625;stroke-linejoin:round"
384
- 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"
385
- transform="scale(-0.6)" />
386
- </marker>
387
- <marker
388
- inkscape:stockid="Arrow2MendM-3qV"
389
- orient="auto"
390
- refY="0"
391
- refX="0"
392
- id="Arrow2MendM-3qV"
393
- style="overflow:visible">
394
- <path
395
- inkscape:connector-curvature="0"
396
- id="path7723"
397
- style="font-size:12px;fill:#7200ff;fill-rule:evenodd;stroke:#7200ff;stroke-width:0.625;stroke-linejoin:round"
398
- 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"
399
- transform="scale(-0.6)" />
400
- </marker>
401
- <marker
402
- inkscape:stockid="Arrow2MendM-3q"
403
- orient="auto"
404
- refY="0"
405
- refX="0"
406
- id="Arrow2MendM-3q-3"
407
- style="overflow:visible">
408
- <path
409
- inkscape:connector-curvature="0"
410
- id="path6832-8"
411
- style="font-size:12px;fill:#00d826;fill-rule:evenodd;stroke:#00d826;stroke-width:0.625;stroke-linejoin:round"
412
- 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"
413
- transform="scale(-0.6)" />
414
- </marker>
415
- <marker
416
- inkscape:stockid="Arrow2MendM"
417
- orient="auto"
418
- refY="0"
419
- refX="0"
420
- id="Arrow2MendM-3-65"
421
- style="overflow:visible">
422
- <path
423
- inkscape:connector-curvature="0"
424
- id="path4492-8-7"
425
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
426
- 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"
427
- transform="scale(-0.6)" />
428
- </marker>
429
- <marker
430
- inkscape:stockid="Arrow2MendM-3u"
431
- orient="auto"
432
- refY="0"
433
- refX="0"
434
- id="Arrow2MendM-3u"
435
- style="overflow:visible">
436
- <path
437
- inkscape:connector-curvature="0"
438
- id="path7141"
439
- style="font-size:12px;fill:#ffe610;fill-rule:evenodd;stroke:#ffe610;stroke-width:0.625;stroke-linejoin:round"
440
- 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"
441
- transform="scale(-0.6)" />
442
- </marker>
443
- <marker
444
- inkscape:stockid="Arrow2MendM-3q"
445
- orient="auto"
446
- refY="0"
447
- refX="0"
448
- id="Arrow2MendM-3q"
449
- style="overflow:visible">
450
- <path
451
- inkscape:connector-curvature="0"
452
- id="path6832"
453
- style="font-size:12px;fill:#00d826;fill-rule:evenodd;stroke:#00d826;stroke-width:0.625;stroke-linejoin:round"
454
- 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"
455
- transform="scale(-0.6)" />
456
- </marker>
457
- <marker
458
- inkscape:stockid="Arrow2MendM"
459
- orient="auto"
460
- refY="0"
461
- refX="0"
462
- id="Arrow2MendM-3-7"
463
- style="overflow:visible">
464
- <path
465
- inkscape:connector-curvature="0"
466
- id="path4492-8-37"
467
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
468
- 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"
469
- transform="scale(-0.6)" />
470
- </marker>
471
- <marker
472
- inkscape:stockid="Arrow2MendM"
473
- orient="auto"
474
- refY="0"
475
- refX="0"
476
- id="Arrow2MendM-3-1"
477
- style="overflow:visible">
478
- <path
479
- inkscape:connector-curvature="0"
480
- id="path4492-8-5"
481
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
482
- 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"
483
- transform="scale(-0.6)" />
484
- </marker>
485
- <marker
486
- inkscape:stockid="Arrow2MendMR"
487
- orient="auto"
488
- refY="0"
489
- refX="0"
490
- id="Arrow2MendMR"
491
- style="overflow:visible">
492
- <path
493
- id="path6452"
494
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
495
- 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"
496
- transform="scale(-0.6)" />
497
- </marker>
498
- <marker
499
- inkscape:stockid="Arrow2MstartAA"
500
- orient="auto"
501
- refY="0"
502
- refX="0"
503
- id="Arrow2MstartAA"
504
- style="overflow:visible">
505
- <path
506
- id="path6449"
507
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
508
- 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"
509
- transform="scale(0.6)" />
510
- </marker>
511
- <marker
512
- inkscape:stockid="Arrow2MendMd"
513
- orient="auto"
514
- refY="0"
515
- refX="0"
516
- id="Arrow2MendMd"
517
- style="overflow:visible">
518
- <path
519
- id="path6446"
520
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
521
- 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"
522
- transform="scale(-0.6)" />
523
- </marker>
524
- <marker
525
- inkscape:stockid="Arrow2MstartAq"
526
- orient="auto"
527
- refY="0"
528
- refX="0"
529
- id="Arrow2MstartAq"
530
- style="overflow:visible">
531
- <path
532
- id="path6443"
533
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
534
- 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"
535
- transform="scale(0.6)" />
536
- </marker>
537
- <marker
538
- inkscape:stockid="Arrow2MendM7"
539
- orient="auto"
540
- refY="0"
541
- refX="0"
542
- id="Arrow2MendM7"
543
- style="overflow:visible">
544
- <path
545
- id="path6440"
546
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
547
- 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"
548
- transform="scale(-0.6)" />
549
- </marker>
550
- <marker
551
- inkscape:stockid="Arrow2MstartAD"
552
- orient="auto"
553
- refY="0"
554
- refX="0"
555
- id="Arrow2MstartAD"
556
- style="overflow:visible">
557
- <path
558
- id="path6437"
559
- style="font-size:12px;fill:#fff2f2;fill-rule:evenodd;stroke:#fff2f2;stroke-width:0.625;stroke-linejoin:round"
560
- 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"
561
- transform="scale(0.6)" />
562
- </marker>
563
- <marker
564
- inkscape:stockid="Arrow2MendM"
565
- orient="auto"
566
- refY="0"
567
- refX="0"
568
- id="Arrow2MendM-3-8"
569
- style="overflow:visible">
570
- <path
571
- inkscape:connector-curvature="0"
572
- id="path4492-8-8"
573
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
574
- 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"
575
- transform="scale(-0.6)" />
576
- </marker>
577
- <marker
578
- inkscape:stockid="Arrow2MendM"
579
- orient="auto"
580
- refY="0"
581
- refX="0"
582
- id="Arrow2MendM-3-6"
583
- style="overflow:visible">
584
- <path
585
- inkscape:connector-curvature="0"
586
- id="path4492-8-3"
587
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
588
- 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"
589
- transform="scale(-0.6)" />
590
- </marker>
591
- <marker
592
- inkscape:stockid="Arrow2MendMZ"
593
- orient="auto"
594
- refY="0"
595
- refX="0"
596
- id="Arrow2MendMZ"
597
- style="overflow:visible">
598
- <path
599
- id="path5573"
600
- style="font-size:12px;fill:#302fff;fill-rule:evenodd;stroke:#302fff;stroke-width:0.625;stroke-linejoin:round"
601
- 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"
602
- transform="scale(-0.6)" />
603
- </marker>
604
- <marker
605
- inkscape:stockid="Arrow2MstartAC"
606
- orient="auto"
607
- refY="0"
608
- refX="0"
609
- id="Arrow2MstartAC"
610
- style="overflow:visible">
611
- <path
612
- id="path5570"
613
- style="font-size:12px;fill:#302fff;fill-rule:evenodd;stroke:#302fff;stroke-width:0.625;stroke-linejoin:round"
614
- 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"
615
- transform="scale(0.6)" />
616
- </marker>
617
- <marker
618
- inkscape:stockid="Arrow2MendM"
619
- orient="auto"
620
- refY="0"
621
- refX="0"
622
- id="Arrow2MendM-3"
623
- style="overflow:visible">
624
- <path
625
- inkscape:connector-curvature="0"
626
- id="path4492-8"
627
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
628
- 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"
629
- transform="scale(-0.6)" />
630
- </marker>
631
- <marker
632
- inkscape:stockid="Arrow2MstartA"
633
- orient="auto"
634
- refY="0"
635
- refX="0"
636
- id="Arrow2MstartA-6"
637
- style="overflow:visible">
638
- <path
639
- inkscape:connector-curvature="0"
640
- id="path4489-1"
641
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
642
- 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"
643
- transform="scale(0.6)" />
644
- </marker>
645
- <marker
646
- inkscape:stockid="Arrow2MendJ"
647
- orient="auto"
648
- refY="0"
649
- refX="0"
650
- id="Arrow2MendJ-2"
651
- style="overflow:visible">
652
- <path
653
- inkscape:connector-curvature="0"
654
- id="path5223-4"
655
- style="font-size:12px;fill:#0200ff;fill-rule:evenodd;stroke:#0200ff;stroke-width:0.625;stroke-linejoin:round"
656
- 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"
657
- transform="scale(-0.6)" />
658
- </marker>
659
- <marker
660
- inkscape:stockid="Arrow2MendJ"
661
- orient="auto"
662
- refY="0"
663
- refX="0"
664
- id="Arrow2MendJ"
665
- style="overflow:visible">
666
- <path
667
- id="path5223"
668
- style="font-size:12px;fill:#0200ff;fill-rule:evenodd;stroke:#0200ff;stroke-width:0.625;stroke-linejoin:round"
669
- 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"
670
- transform="scale(-0.6)" />
671
- </marker>
672
- <marker
673
- inkscape:stockid="Arrow2MendM"
674
- orient="auto"
675
- refY="0"
676
- refX="0"
677
- id="Arrow2MendM-4"
678
- style="overflow:visible">
679
- <path
680
- id="path4492-2"
681
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
682
- 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"
683
- transform="scale(-0.6)"
684
- inkscape:connector-curvature="0" />
685
- </marker>
686
- <marker
687
- inkscape:stockid="Arrow2MstartA"
688
- orient="auto"
689
- refY="0"
690
- refX="0"
691
- id="Arrow2MstartA-8"
692
- style="overflow:visible">
693
- <path
694
- id="path4489-7"
695
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
696
- 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"
697
- transform="scale(0.6)"
698
- inkscape:connector-curvature="0" />
699
- </marker>
700
- <marker
701
- inkscape:stockid="Arrow2MendM"
702
- orient="auto"
703
- refY="0"
704
- refX="0"
705
- id="Arrow2MendM-2"
706
- style="overflow:visible">
707
- <path
708
- id="path4492-3"
709
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
710
- 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"
711
- transform="scale(-0.6)"
712
- inkscape:connector-curvature="0" />
713
- </marker>
714
- <marker
715
- inkscape:stockid="Arrow2MstartA"
716
- orient="auto"
717
- refY="0"
718
- refX="0"
719
- id="Arrow2MstartA-1"
720
- style="overflow:visible">
721
- <path
722
- id="path4489-4"
723
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
724
- 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"
725
- transform="scale(0.6)"
726
- inkscape:connector-curvature="0" />
727
- </marker>
728
- <marker
729
- inkscape:stockid="Arrow2MendM"
730
- orient="auto"
731
- refY="0"
732
- refX="0"
733
- id="Arrow2MendM"
734
- style="overflow:visible">
735
- <path
736
- id="path4492"
737
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
738
- 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"
739
- transform="scale(-0.6)" />
740
- </marker>
741
- <marker
742
- inkscape:stockid="Arrow2MstartA"
743
- orient="auto"
744
- refY="0"
745
- refX="0"
746
- id="Arrow2MstartA"
747
- style="overflow:visible">
748
- <path
749
- id="path4489"
750
- style="font-size:12px;fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round"
751
- 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"
752
- transform="scale(0.6)" />
753
- </marker>
754
- <marker
755
- inkscape:stockid="Arrow2Mstart"
756
- orient="auto"
757
- refY="0"
758
- refX="0"
759
- id="Arrow2Mstart"
760
- style="overflow:visible">
761
- <path
762
- id="path3879"
763
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
764
- 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"
765
- transform="scale(0.6)" />
766
- </marker>
767
- <marker
768
- inkscape:stockid="Arrow2Mend"
769
- orient="auto"
770
- refY="0"
771
- refX="0"
772
- id="Arrow2Mend"
773
- style="overflow:visible">
774
- <path
775
- id="path3882"
776
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
777
- 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"
778
- transform="scale(-0.6)" />
779
- </marker>
780
- <linearGradient
781
- gradientTransform="matrix(0.93145311,0,0,0.37637183,-256.22122,-739.15354)"
782
- gradientUnits="userSpaceOnUse"
783
- y2="353.33664"
784
- x2="383.85291"
785
- y1="333.63864"
786
- x1="383.85291"
787
- id="linearGradient6044-2"
788
- xlink:href="#linearGradient6038-4"
789
- inkscape:collect="always" />
790
- <linearGradient
791
- id="linearGradient6038-4">
792
- <stop
793
- id="stop6040-5"
794
- offset="0"
795
- style="stop-color:#ff0000;stop-opacity:0.76923078" />
796
- <stop
797
- id="stop6042-5"
798
- offset="1"
799
- style="stop-color:#ff1a00;stop-opacity:0.30327868;" />
800
- </linearGradient>
801
- <linearGradient
802
- inkscape:collect="always"
803
- xlink:href="#linearGradient6038-4-1"
804
- id="linearGradient6061-7"
805
- gradientUnits="userSpaceOnUse"
806
- gradientTransform="matrix(1.0462668,0,0,0.37637183,-778.00399,-112.06645)"
807
- x1="383.85291"
808
- y1="333.63864"
809
- x2="383.85291"
810
- y2="353.33664" />
811
- <linearGradient
812
- id="linearGradient6038-4-1">
813
- <stop
814
- id="stop6040-5-1"
815
- offset="0"
816
- style="stop-color:#ff0000;stop-opacity:0.76923078" />
817
- <stop
818
- id="stop6042-5-5"
819
- offset="1"
820
- style="stop-color:#ff1a00;stop-opacity:0.30327868;" />
821
- </linearGradient>
822
- <linearGradient
823
- inkscape:collect="always"
824
- xlink:href="#linearGradient6038-4-1-6"
825
- id="linearGradient6096-7"
826
- gradientUnits="userSpaceOnUse"
827
- gradientTransform="matrix(1.1902396,0,0,0.37637183,-683.6579,-329.02414)"
828
- x1="383.85291"
829
- y1="333.63864"
830
- x2="383.85291"
831
- y2="353.33664" />
832
- <linearGradient
833
- id="linearGradient6038-4-1-6">
834
- <stop
835
- id="stop6040-5-1-1"
836
- offset="0"
837
- style="stop-color:#ff0000;stop-opacity:0.76923078" />
838
- <stop
839
- id="stop6042-5-5-4"
840
- offset="1"
841
- style="stop-color:#ff1a00;stop-opacity:0.30327868;" />
842
- </linearGradient>
843
- <linearGradient
844
- inkscape:collect="always"
845
- xlink:href="#linearGradient6038-4-1-6-2"
846
- id="linearGradient6130-3"
847
- gradientUnits="userSpaceOnUse"
848
- gradientTransform="matrix(0.13504678,0,0,0.20801307,-563.43739,-271.20313)"
849
- x1="383.85291"
850
- y1="333.63864"
851
- x2="383.85291"
852
- y2="353.33664" />
853
- <linearGradient
854
- id="linearGradient6038-4-1-6-2">
855
- <stop
856
- id="stop6040-5-1-1-2"
857
- offset="0"
858
- style="stop-color:#ff0000;stop-opacity:0.76923078" />
859
- <stop
860
- id="stop6042-5-5-4-1"
861
- offset="1"
862
- style="stop-color:#ff1a00;stop-opacity:0.30327868;" />
863
- </linearGradient>
864
- <linearGradient
865
- inkscape:collect="always"
866
- xlink:href="#linearGradient6038-4-1-6-5"
867
- id="linearGradient6130-8"
868
- gradientUnits="userSpaceOnUse"
869
- gradientTransform="matrix(0.13504678,0,0,0.20801307,-563.43739,-271.20313)"
870
- x1="383.85291"
871
- y1="333.63864"
872
- x2="383.85291"
873
- y2="353.33664" />
874
- <linearGradient
875
- id="linearGradient6038-4-1-6-5">
876
- <stop
877
- id="stop6040-5-1-1-7"
878
- offset="0"
879
- style="stop-color:#ff0000;stop-opacity:0.76923078" />
880
- <stop
881
- id="stop6042-5-5-4-6"
882
- offset="1"
883
- style="stop-color:#ff1a00;stop-opacity:0.30327868;" />
884
- </linearGradient>
885
- <linearGradient
886
- inkscape:collect="always"
887
- xlink:href="#linearGradient6038-4-1-6-2-2"
888
- id="linearGradient6164-9"
889
- gradientUnits="userSpaceOnUse"
890
- gradientTransform="matrix(0.16855194,0,0,0.20801307,-563.94954,-315.38143)"
891
- x1="383.85291"
892
- y1="333.63864"
893
- x2="383.85291"
894
- y2="353.33664" />
895
- <linearGradient
896
- id="linearGradient6038-4-1-6-2-2">
897
- <stop
898
- id="stop6040-5-1-1-2-7"
899
- offset="0"
900
- style="stop-color:#ff0000;stop-opacity:0.76923078" />
901
- <stop
902
- id="stop6042-5-5-4-1-9"
903
- offset="1"
904
- style="stop-color:#ff1a00;stop-opacity:0.30327868;" />
905
- </linearGradient>
906
- <linearGradient
907
- inkscape:collect="always"
908
- xlink:href="#linearGradient6038-4-1-6-5-3"
909
- id="linearGradient6164-1-4"
910
- gradientUnits="userSpaceOnUse"
911
- gradientTransform="matrix(0.11120657,0,0,0.20801307,-264.396,467.49257)"
912
- x1="383.85291"
913
- y1="333.63864"
914
- x2="383.85291"
915
- y2="353.33664" />
916
- <linearGradient
917
- id="linearGradient6038-4-1-6-5-3">
918
- <stop
919
- id="stop6040-5-1-1-7-1"
920
- offset="0"
921
- style="stop-color:#ff0000;stop-opacity:0.76923078" />
922
- <stop
923
- id="stop6042-5-5-4-6-2"
924
- offset="1"
925
- style="stop-color:#ff1a00;stop-opacity:0.30327868;" />
926
- </linearGradient>
927
- <linearGradient
928
- gradientUnits="userSpaceOnUse"
929
- y2="501.38712"
930
- x2="225.45926"
931
- y1="501.26083"
932
- x1="156.81592"
933
- id="linearGradient6242-3"
934
- xlink:href="#linearGradient6236-4"
935
- inkscape:collect="always" />
936
- <linearGradient
937
- id="linearGradient6236-4"
938
- inkscape:collect="always">
939
- <stop
940
- id="stop6238-1"
941
- offset="0"
942
- style="stop-color:#ff0e00;stop-opacity:1;" />
943
- <stop
944
- id="stop6240-1"
945
- offset="1"
946
- style="stop-color:#ff0e00;stop-opacity:0;" />
947
- </linearGradient>
948
- <linearGradient
949
- inkscape:collect="always"
950
- xlink:href="#linearGradient6236-4-7"
951
- id="linearGradient6293-8"
952
- gradientUnits="userSpaceOnUse"
953
- x1="156.81592"
954
- y1="501.26083"
955
- x2="225.45926"
956
- y2="501.38712" />
957
- <linearGradient
958
- id="linearGradient6236-4-7">
959
- <stop
960
- id="stop6238-1-4"
961
- offset="0"
962
- style="stop-color:#ff8f00;stop-opacity:1;" />
963
- <stop
964
- id="stop6240-1-2"
965
- offset="1"
966
- style="stop-color:#ff0e00;stop-opacity:0;" />
967
- </linearGradient>
968
- <linearGradient
969
- inkscape:collect="always"
970
- xlink:href="#linearGradient6236-4-7-9"
971
- id="linearGradient6327-7"
972
- gradientUnits="userSpaceOnUse"
973
- x1="156.81592"
974
- y1="501.26083"
975
- x2="225.45926"
976
- y2="501.38712" />
977
- <linearGradient
978
- id="linearGradient6236-4-7-9">
979
- <stop
980
- id="stop6238-1-4-3"
981
- offset="0"
982
- style="stop-color:#ff8f00;stop-opacity:1;" />
983
- <stop
984
- id="stop6240-1-2-1"
985
- offset="1"
986
- style="stop-color:#ff0e00;stop-opacity:0;" />
987
- </linearGradient>
988
- <linearGradient
989
- inkscape:collect="always"
990
- xlink:href="#linearGradient6038-4-1-65"
991
- id="linearGradient6096-8"
992
- gradientUnits="userSpaceOnUse"
993
- gradientTransform="matrix(1.0691056,0,0,0.37637183,-616.23541,-329.02414)"
994
- x1="383.85291"
995
- y1="333.63864"
996
- x2="383.85291"
997
- y2="353.33664" />
998
- <linearGradient
999
- id="linearGradient6038-4-1-65">
1000
- <stop
1001
- id="stop6040-5-1-0"
1002
- offset="0"
1003
- style="stop-color:#ff0000;stop-opacity:0.76923078" />
1004
- <stop
1005
- id="stop6042-5-5-2"
1006
- offset="1"
1007
- style="stop-color:#ff1a00;stop-opacity:0.30327868;" />
1008
- </linearGradient>
1009
- <linearGradient
1010
- inkscape:collect="always"
1011
- xlink:href="#linearGradient6038-4-0"
1012
- id="linearGradient6061-6"
1013
- gradientUnits="userSpaceOnUse"
1014
- gradientTransform="matrix(1.0462668,0,0,0.37637183,-778.00399,-112.06645)"
1015
- x1="383.85291"
1016
- y1="333.63864"
1017
- x2="383.85291"
1018
- y2="353.33664" />
1019
- <linearGradient
1020
- id="linearGradient6038-4-0">
1021
- <stop
1022
- id="stop6040-5-2"
1023
- offset="0"
1024
- style="stop-color:#ff0000;stop-opacity:0.76923078" />
1025
- <stop
1026
- id="stop6042-5-4"
1027
- offset="1"
1028
- style="stop-color:#ff1a00;stop-opacity:0.30327868;" />
1029
- </linearGradient>
1030
- <linearGradient
1031
- inkscape:collect="always"
1032
- xlink:href="#linearGradient6038-4-0-5"
1033
- id="linearGradient6433-6"
1034
- gradientUnits="userSpaceOnUse"
1035
- gradientTransform="matrix(0.08647301,0,0,0.37637183,-232.87467,216.57606)"
1036
- x1="383.85291"
1037
- y1="333.63864"
1038
- x2="383.85291"
1039
- y2="353.33664" />
1040
- <linearGradient
1041
- id="linearGradient6038-4-0-5">
1042
- <stop
1043
- id="stop6040-5-2-0"
1044
- offset="0"
1045
- style="stop-color:#00af1d;stop-opacity:1;" />
1046
- <stop
1047
- id="stop6042-5-4-9"
1048
- offset="1"
1049
- style="stop-color:#00ff16;stop-opacity:0.30327868;" />
1050
- </linearGradient>
1051
- <linearGradient
1052
- inkscape:collect="always"
1053
- xlink:href="#linearGradient6038-4-0-5-6"
1054
- id="linearGradient6467-0"
1055
- gradientUnits="userSpaceOnUse"
1056
- gradientTransform="matrix(0.15322558,0,0,0.37637183,-303.9209,224.56008)"
1057
- x1="383.85291"
1058
- y1="333.63864"
1059
- x2="383.85291"
1060
- y2="353.33664" />
1061
- <linearGradient
1062
- id="linearGradient6038-4-0-5-6">
1063
- <stop
1064
- id="stop6040-5-2-0-1"
1065
- offset="0"
1066
- style="stop-color:#00af1d;stop-opacity:1;" />
1067
- <stop
1068
- id="stop6042-5-4-9-3"
1069
- offset="1"
1070
- style="stop-color:#00ff16;stop-opacity:0.30327868;" />
1071
- </linearGradient>
1072
- <linearGradient
1073
- inkscape:collect="always"
1074
- xlink:href="#linearGradient6038-4-0-5-6-3"
1075
- id="linearGradient6503-9"
1076
- gradientUnits="userSpaceOnUse"
1077
- gradientTransform="matrix(0.15322558,0,0,0.37637183,272.64182,145.32541)"
1078
- x1="383.85291"
1079
- y1="333.63864"
1080
- x2="383.85291"
1081
- y2="353.33664" />
1082
- <linearGradient
1083
- id="linearGradient6038-4-0-5-6-3">
1084
- <stop
1085
- id="stop6040-5-2-0-1-4"
1086
- offset="0"
1087
- style="stop-color:#00af1d;stop-opacity:1;" />
1088
- <stop
1089
- id="stop6042-5-4-9-3-4"
1090
- offset="1"
1091
- style="stop-color:#00ff16;stop-opacity:0.30327868;" />
1092
- </linearGradient>
1093
- <linearGradient
1094
- inkscape:collect="always"
1095
- xlink:href="#linearGradient6038-4-0-5-6-6"
1096
- id="linearGradient6503-0"
1097
- gradientUnits="userSpaceOnUse"
1098
- gradientTransform="matrix(0.15322558,0,0,0.37637183,272.64182,145.32541)"
1099
- x1="383.85291"
1100
- y1="333.63864"
1101
- x2="383.85291"
1102
- y2="353.33664" />
1103
- <linearGradient
1104
- id="linearGradient6038-4-0-5-6-6">
1105
- <stop
1106
- id="stop6040-5-2-0-1-6"
1107
- offset="0"
1108
- style="stop-color:#00af1d;stop-opacity:1;" />
1109
- <stop
1110
- id="stop6042-5-4-9-3-1"
1111
- offset="1"
1112
- style="stop-color:#00ff16;stop-opacity:0.30327868;" />
1113
- </linearGradient>
1114
- <linearGradient
1115
- gradientTransform="matrix(0,-0.27495256,9.171237,0,-4169.0258,292.31934)"
1116
- y2="501.38712"
1117
- x2="225.45926"
1118
- y1="501.26083"
1119
- x1="156.81592"
1120
- gradientUnits="userSpaceOnUse"
1121
- id="linearGradient6486-4"
1122
- xlink:href="#linearGradient6236-4-7-9-9"
1123
- inkscape:collect="always" />
1124
- <linearGradient
1125
- id="linearGradient6236-4-7-9-9">
1126
- <stop
1127
- id="stop6238-1-4-3-6"
1128
- offset="0"
1129
- style="stop-color:#ff8f00;stop-opacity:1;" />
1130
- <stop
1131
- id="stop6240-1-2-1-3"
1132
- offset="1"
1133
- style="stop-color:#ff0e00;stop-opacity:0;" />
1134
- </linearGradient>
1135
- <marker
1136
- inkscape:stockid="Arrow2Mend"
1137
- orient="auto"
1138
- refY="0"
1139
- refX="0"
1140
- id="Arrow2Mend-7"
1141
- style="overflow:visible">
1142
- <path
1143
- id="path3882-2"
1144
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1145
- 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"
1146
- transform="scale(-0.6)"
1147
- inkscape:connector-curvature="0" />
1148
- </marker>
1149
- <marker
1150
- inkscape:stockid="Arrow2Mstart"
1151
- orient="auto"
1152
- refY="0"
1153
- refX="0"
1154
- id="Arrow2Mstart-1"
1155
- style="overflow:visible">
1156
- <path
1157
- inkscape:connector-curvature="0"
1158
- id="path3879-6"
1159
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1160
- 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"
1161
- transform="scale(0.6)" />
1162
- </marker>
1163
- <marker
1164
- inkscape:stockid="Arrow2Mend"
1165
- orient="auto"
1166
- refY="0"
1167
- refX="0"
1168
- id="Arrow2Mend-7-5"
1169
- style="overflow:visible">
1170
- <path
1171
- id="path3882-2-7"
1172
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1173
- 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"
1174
- transform="scale(-0.6)"
1175
- inkscape:connector-curvature="0" />
1176
- </marker>
1177
- <marker
1178
- inkscape:stockid="Arrow2Mstart"
1179
- orient="auto"
1180
- refY="0"
1181
- refX="0"
1182
- id="Arrow2Mstart-2"
1183
- style="overflow:visible">
1184
- <path
1185
- inkscape:connector-curvature="0"
1186
- id="path3879-0"
1187
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1188
- 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"
1189
- transform="scale(0.6)" />
1190
- </marker>
1191
- <marker
1192
- inkscape:stockid="Arrow2Mend"
1193
- orient="auto"
1194
- refY="0"
1195
- refX="0"
1196
- id="Arrow2Mend-7-0"
1197
- style="overflow:visible">
1198
- <path
1199
- id="path3882-2-1"
1200
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1201
- 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"
1202
- transform="scale(-0.6)"
1203
- inkscape:connector-curvature="0" />
1204
- </marker>
1205
- <marker
1206
- inkscape:stockid="Arrow2Mstart"
1207
- orient="auto"
1208
- refY="0"
1209
- refX="0"
1210
- id="Arrow2Mstart-17"
1211
- style="overflow:visible">
1212
- <path
1213
- inkscape:connector-curvature="0"
1214
- id="path3879-7"
1215
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1216
- 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"
1217
- transform="scale(0.6)" />
1218
- </marker>
1219
- <marker
1220
- inkscape:stockid="Arrow2Mend"
1221
- orient="auto"
1222
- refY="0"
1223
- refX="0"
1224
- id="Arrow2Mend-7-7"
1225
- style="overflow:visible">
1226
- <path
1227
- id="path3882-2-73"
1228
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1229
- 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"
1230
- transform="scale(-0.6)"
1231
- inkscape:connector-curvature="0" />
1232
- </marker>
1233
- <marker
1234
- inkscape:stockid="Arrow2Mstart"
1235
- orient="auto"
1236
- refY="0"
1237
- refX="0"
1238
- id="Arrow2Mstart-8"
1239
- style="overflow:visible">
1240
- <path
1241
- inkscape:connector-curvature="0"
1242
- id="path3879-08"
1243
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1244
- 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"
1245
- transform="scale(0.6)" />
1246
- </marker>
1247
- <marker
1248
- inkscape:stockid="Arrow2Mend"
1249
- orient="auto"
1250
- refY="0"
1251
- refX="0"
1252
- id="Arrow2Mend-7-77"
1253
- style="overflow:visible">
1254
- <path
1255
- id="path3882-2-8"
1256
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1257
- 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"
1258
- transform="scale(-0.6)"
1259
- inkscape:connector-curvature="0" />
1260
- </marker>
1261
- <marker
1262
- inkscape:stockid="Arrow2Mstart"
1263
- orient="auto"
1264
- refY="0"
1265
- refX="0"
1266
- id="Arrow2Mstart-83"
1267
- style="overflow:visible">
1268
- <path
1269
- inkscape:connector-curvature="0"
1270
- id="path3879-71"
1271
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1272
- 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"
1273
- transform="scale(0.6)" />
1274
- </marker>
1275
- <marker
1276
- inkscape:stockid="Arrow2Mend"
1277
- orient="auto"
1278
- refY="0"
1279
- refX="0"
1280
- id="Arrow2Mend-7-07"
1281
- style="overflow:visible">
1282
- <path
1283
- id="path3882-2-3"
1284
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1285
- 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"
1286
- transform="scale(-0.6)"
1287
- inkscape:connector-curvature="0" />
1288
- </marker>
1289
- <marker
1290
- inkscape:stockid="Arrow2Mstart"
1291
- orient="auto"
1292
- refY="0"
1293
- refX="0"
1294
- id="Arrow2Mstart-10"
1295
- style="overflow:visible">
1296
- <path
1297
- inkscape:connector-curvature="0"
1298
- id="path3879-9"
1299
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1300
- 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"
1301
- transform="scale(0.6)" />
1302
- </marker>
1303
- <marker
1304
- inkscape:stockid="Arrow2Mend"
1305
- orient="auto"
1306
- refY="0"
1307
- refX="0"
1308
- id="Arrow2Mend-7-9"
1309
- style="overflow:visible">
1310
- <path
1311
- id="path3882-2-6"
1312
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1313
- 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"
1314
- transform="scale(-0.6)"
1315
- inkscape:connector-curvature="0" />
1316
- </marker>
1317
- <marker
1318
- inkscape:stockid="Arrow2Mstart"
1319
- orient="auto"
1320
- refY="0"
1321
- refX="0"
1322
- id="Arrow2Mstart-3"
1323
- style="overflow:visible">
1324
- <path
1325
- inkscape:connector-curvature="0"
1326
- id="path3879-3"
1327
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1328
- 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"
1329
- transform="scale(0.6)" />
1330
- </marker>
1331
- <marker
1332
- inkscape:stockid="Arrow2Mend"
1333
- orient="auto"
1334
- refY="0"
1335
- refX="0"
1336
- id="Arrow2Mend-7-74"
1337
- style="overflow:visible">
1338
- <path
1339
- id="path3882-2-38"
1340
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1341
- 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"
1342
- transform="scale(-0.6)"
1343
- inkscape:connector-curvature="0" />
1344
- </marker>
1345
- <marker
1346
- inkscape:stockid="Arrow2Mstart"
1347
- orient="auto"
1348
- refY="0"
1349
- refX="0"
1350
- id="Arrow2Mstart-9"
1351
- style="overflow:visible">
1352
- <path
1353
- id="path3879-8"
1354
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1355
- 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"
1356
- transform="scale(0.6)"
1357
- inkscape:connector-curvature="0" />
1358
- </marker>
1359
- <marker
1360
- inkscape:stockid="Arrow2Mend"
1361
- orient="auto"
1362
- refY="0"
1363
- refX="0"
1364
- id="Arrow2Mend-7-2"
1365
- style="overflow:visible">
1366
- <path
1367
- id="path3882-2-5"
1368
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1369
- 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"
1370
- transform="scale(-0.6)"
1371
- inkscape:connector-curvature="0" />
1372
- </marker>
1373
- <marker
1374
- inkscape:stockid="Arrow2Mstart"
1375
- orient="auto"
1376
- refY="0"
1377
- refX="0"
1378
- id="Arrow2Mstart-91"
1379
- style="overflow:visible">
1380
- <path
1381
- id="path3879-2"
1382
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1383
- 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"
1384
- transform="scale(0.6)"
1385
- inkscape:connector-curvature="0" />
1386
- </marker>
1387
- <marker
1388
- inkscape:stockid="Arrow2Mend"
1389
- orient="auto"
1390
- refY="0"
1391
- refX="0"
1392
- id="Arrow2Mend-7-50"
1393
- style="overflow:visible">
1394
- <path
1395
- id="path3882-2-83"
1396
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1397
- 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"
1398
- transform="scale(-0.6)"
1399
- inkscape:connector-curvature="0" />
1400
- </marker>
1401
- <linearGradient
1402
- gradientTransform="translate(4.375,-2.125)"
1403
- gradientUnits="userSpaceOnUse"
1404
- y2="484.86249"
1405
- x2="-194.19385"
1406
- y1="461.72247"
1407
- x1="-194.19385"
1408
- id="linearGradient13780-9"
1409
- xlink:href="#linearGradient13774-6"
1410
- inkscape:collect="always" />
1411
- <linearGradient
1412
- id="linearGradient13774-6">
1413
- <stop
1414
- id="stop13776-7"
1415
- offset="0"
1416
- style="stop-color:#000000;stop-opacity:1;" />
1417
- <stop
1418
- id="stop13778-9"
1419
- offset="1"
1420
- style="stop-color:#9f9f9f;stop-opacity:0;" />
1421
- </linearGradient>
1422
- <linearGradient
1423
- inkscape:collect="always"
1424
- xlink:href="#linearGradient13774-6"
1425
- id="linearGradient13797"
1426
- gradientUnits="userSpaceOnUse"
1427
- gradientTransform="translate(0.08778171,49.586268)"
1428
- x1="-194.19385"
1429
- y1="461.72247"
1430
- x2="-194.19385"
1431
- y2="484.86249" />
1432
- <marker
1433
- inkscape:stockid="Arrow2Mstart"
1434
- orient="auto"
1435
- refY="0"
1436
- refX="0"
1437
- id="Arrow2Mstart-25"
1438
- style="overflow:visible">
1439
- <path
1440
- id="path3879-4"
1441
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1442
- 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"
1443
- transform="scale(0.6)"
1444
- inkscape:connector-curvature="0" />
1445
- </marker>
1446
- <marker
1447
- inkscape:stockid="Arrow2Mend"
1448
- orient="auto"
1449
- refY="0"
1450
- refX="0"
1451
- id="Arrow2Mend-7-4"
1452
- style="overflow:visible">
1453
- <path
1454
- id="path3882-2-16"
1455
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1456
- 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"
1457
- transform="scale(-0.6)"
1458
- inkscape:connector-curvature="0" />
1459
- </marker>
1460
- <marker
1461
- inkscape:stockid="Arrow2Mstart"
1462
- orient="auto"
1463
- refY="0"
1464
- refX="0"
1465
- id="Arrow2Mstart-6"
1466
- style="overflow:visible">
1467
- <path
1468
- id="path3879-33"
1469
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1470
- 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"
1471
- transform="scale(0.6)"
1472
- inkscape:connector-curvature="0" />
1473
- </marker>
1474
- <marker
1475
- inkscape:stockid="Arrow2Mend"
1476
- orient="auto"
1477
- refY="0"
1478
- refX="0"
1479
- id="Arrow2Mend-7-55"
1480
- style="overflow:visible">
1481
- <path
1482
- id="path3882-2-32"
1483
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1484
- 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"
1485
- transform="scale(-0.6)"
1486
- inkscape:connector-curvature="0" />
1487
- </marker>
1488
- <marker
1489
- inkscape:stockid="Arrow2Mstart"
1490
- orient="auto"
1491
- refY="0"
1492
- refX="0"
1493
- id="Arrow2Mstart-253"
1494
- style="overflow:visible">
1495
- <path
1496
- id="path3879-61"
1497
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1498
- 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"
1499
- transform="scale(0.6)"
1500
- inkscape:connector-curvature="0" />
1501
- </marker>
1502
- <marker
1503
- inkscape:stockid="Arrow2Mend"
1504
- orient="auto"
1505
- refY="0"
1506
- refX="0"
1507
- id="Arrow2Mend-7-8"
1508
- style="overflow:visible">
1509
- <path
1510
- id="path3882-2-62"
1511
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1512
- 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"
1513
- transform="scale(-0.6)"
1514
- inkscape:connector-curvature="0" />
1515
- </marker>
1516
- <marker
1517
- inkscape:stockid="Arrow2Mstart"
1518
- orient="auto"
1519
- refY="0"
1520
- refX="0"
1521
- id="Arrow2Mstart-62"
1522
- style="overflow:visible">
1523
- <path
1524
- id="path3879-91"
1525
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1526
- 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"
1527
- transform="scale(0.6)"
1528
- inkscape:connector-curvature="0" />
1529
- </marker>
1530
- <marker
1531
- inkscape:stockid="Arrow2Mend"
1532
- orient="auto"
1533
- refY="0"
1534
- refX="0"
1535
- id="Arrow2Mend-7-503"
1536
- style="overflow:visible">
1537
- <path
1538
- id="path3882-2-64"
1539
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1540
- 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"
1541
- transform="scale(-0.6)"
1542
- inkscape:connector-curvature="0" />
1543
- </marker>
1544
- <marker
1545
- inkscape:stockid="Arrow2Mstart"
1546
- orient="auto"
1547
- refY="0"
1548
- refX="0"
1549
- id="Arrow2Mstart-34"
1550
- style="overflow:visible">
1551
- <path
1552
- id="path3879-40"
1553
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1554
- 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"
1555
- transform="scale(0.6)"
1556
- inkscape:connector-curvature="0" />
1557
- </marker>
1558
- <marker
1559
- inkscape:stockid="Arrow2Mend"
1560
- orient="auto"
1561
- refY="0"
1562
- refX="0"
1563
- id="Arrow2Mend-7-59"
1564
- style="overflow:visible">
1565
- <path
1566
- id="path3882-2-63"
1567
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1568
- 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"
1569
- transform="scale(-0.6)"
1570
- inkscape:connector-curvature="0" />
1571
- </marker>
1572
- <marker
1573
- inkscape:stockid="Arrow2Mstart"
1574
- orient="auto"
1575
- refY="0"
1576
- refX="0"
1577
- id="Arrow2Mstart-7"
1578
- style="overflow:visible">
1579
- <path
1580
- id="path3879-5"
1581
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1582
- 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"
1583
- transform="scale(0.6)"
1584
- inkscape:connector-curvature="0" />
1585
- </marker>
1586
- <marker
1587
- inkscape:stockid="Arrow2Mend"
1588
- orient="auto"
1589
- refY="0"
1590
- refX="0"
1591
- id="Arrow2Mend-7-81"
1592
- style="overflow:visible">
1593
- <path
1594
- id="path3882-2-2"
1595
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1596
- 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"
1597
- transform="scale(-0.6)"
1598
- inkscape:connector-curvature="0" />
1599
- </marker>
1600
- <marker
1601
- inkscape:stockid="Arrow2Mstart"
1602
- orient="auto"
1603
- refY="0"
1604
- refX="0"
1605
- id="Arrow2Mstart-4"
1606
- style="overflow:visible">
1607
- <path
1608
- id="path3879-44"
1609
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1610
- 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"
1611
- transform="scale(0.6)"
1612
- inkscape:connector-curvature="0" />
1613
- </marker>
1614
- <marker
1615
- inkscape:stockid="Arrow2Mend"
1616
- orient="auto"
1617
- refY="0"
1618
- refX="0"
1619
- id="Arrow2Mend-7-42"
1620
- style="overflow:visible">
1621
- <path
1622
- id="path3882-2-9"
1623
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1624
- 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"
1625
- transform="scale(-0.6)"
1626
- inkscape:connector-curvature="0" />
1627
- </marker>
1628
- <marker
1629
- inkscape:stockid="Arrow2Mstart"
1630
- orient="auto"
1631
- refY="0"
1632
- refX="0"
1633
- id="Arrow2Mstart-78"
1634
- style="overflow:visible">
1635
- <path
1636
- id="path3879-73"
1637
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1638
- 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"
1639
- transform="scale(0.6)"
1640
- inkscape:connector-curvature="0" />
1641
- </marker>
1642
- <marker
1643
- inkscape:stockid="Arrow2Mend"
1644
- orient="auto"
1645
- refY="0"
1646
- refX="0"
1647
- id="Arrow2Mend-7-03"
1648
- style="overflow:visible">
1649
- <path
1650
- id="path3882-2-82"
1651
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1652
- 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"
1653
- transform="scale(-0.6)"
1654
- inkscape:connector-curvature="0" />
1655
- </marker>
1656
- <marker
1657
- inkscape:stockid="Arrow2Mstart"
1658
- orient="auto"
1659
- refY="0"
1660
- refX="0"
1661
- id="Arrow2Mstart-88"
1662
- style="overflow:visible">
1663
- <path
1664
- id="path3879-24"
1665
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1666
- 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"
1667
- transform="scale(0.6)"
1668
- inkscape:connector-curvature="0" />
1669
- </marker>
1670
- <marker
1671
- inkscape:stockid="Arrow2Mend"
1672
- orient="auto"
1673
- refY="0"
1674
- refX="0"
1675
- id="Arrow2Mend-7-551"
1676
- style="overflow:visible">
1677
- <path
1678
- id="path3882-2-71"
1679
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1680
- 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"
1681
- transform="scale(-0.6)"
1682
- inkscape:connector-curvature="0" />
1683
- </marker>
1684
- <marker
1685
- inkscape:stockid="Arrow2Mstart"
1686
- orient="auto"
1687
- refY="0"
1688
- refX="0"
1689
- id="Arrow2Mstart-5"
1690
- style="overflow:visible">
1691
- <path
1692
- id="path3879-27"
1693
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1694
- 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"
1695
- transform="scale(0.6)"
1696
- inkscape:connector-curvature="0" />
1697
- </marker>
1698
- <marker
1699
- inkscape:stockid="Arrow2Mend"
1700
- orient="auto"
1701
- refY="0"
1702
- refX="0"
1703
- id="Arrow2Mend-7-6"
1704
- style="overflow:visible">
1705
- <path
1706
- id="path3882-2-14"
1707
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1708
- 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"
1709
- transform="scale(-0.6)"
1710
- inkscape:connector-curvature="0" />
1711
- </marker>
1712
- <inkscape:path-effect
1713
- lpeversion="0"
1714
- is_visible="true"
1715
- id="path-effect5227-6"
1716
- effect="spiro" />
1717
- <marker
1718
- inkscape:stockid="Arrow2Mstart"
1719
- orient="auto"
1720
- refY="0"
1721
- refX="0"
1722
- id="Arrow2Mstart-0"
1723
- style="overflow:visible">
1724
- <path
1725
- id="path3879-248"
1726
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1727
- 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"
1728
- transform="scale(0.6)"
1729
- inkscape:connector-curvature="0" />
1730
- </marker>
1731
- <marker
1732
- inkscape:stockid="Arrow2Mend"
1733
- orient="auto"
1734
- refY="0"
1735
- refX="0"
1736
- id="Arrow2Mend-7-65"
1737
- style="overflow:visible">
1738
- <path
1739
- id="path3882-2-0"
1740
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1741
- 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"
1742
- transform="scale(-0.6)"
1743
- inkscape:connector-curvature="0" />
1744
- </marker>
1745
- <marker
1746
- inkscape:stockid="Arrow2Mstart"
1747
- orient="auto"
1748
- refY="0"
1749
- refX="0"
1750
- id="Arrow2Mstart-174"
1751
- style="overflow:visible">
1752
- <path
1753
- id="path3879-09"
1754
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1755
- 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"
1756
- transform="scale(0.6)"
1757
- inkscape:connector-curvature="0" />
1758
- </marker>
1759
- <marker
1760
- inkscape:stockid="Arrow2Mend"
1761
- orient="auto"
1762
- refY="0"
1763
- refX="0"
1764
- id="Arrow2Mend-7-48"
1765
- style="overflow:visible">
1766
- <path
1767
- id="path3882-2-824"
1768
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1769
- 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"
1770
- transform="scale(-0.6)"
1771
- inkscape:connector-curvature="0" />
1772
- </marker>
1773
- <marker
1774
- inkscape:stockid="Arrow2Mstart"
1775
- orient="auto"
1776
- refY="0"
1777
- refX="0"
1778
- id="Arrow2Mstart-71"
1779
- style="overflow:visible">
1780
- <path
1781
- id="path3879-1"
1782
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1783
- 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"
1784
- transform="scale(0.6)"
1785
- inkscape:connector-curvature="0" />
1786
- </marker>
1787
- <marker
1788
- inkscape:stockid="Arrow2Mend"
1789
- orient="auto"
1790
- refY="0"
1791
- refX="0"
1792
- id="Arrow2Mend-7-52"
1793
- style="overflow:visible">
1794
- <path
1795
- id="path3882-2-76"
1796
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1797
- 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"
1798
- transform="scale(-0.6)"
1799
- inkscape:connector-curvature="0" />
1800
- </marker>
1801
- <marker
1802
- inkscape:stockid="Arrow2Mstart"
1803
- orient="auto"
1804
- refY="0"
1805
- refX="0"
1806
- id="Arrow2Mstart-32"
1807
- style="overflow:visible">
1808
- <path
1809
- id="path3879-21"
1810
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1811
- 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"
1812
- transform="scale(0.6)"
1813
- inkscape:connector-curvature="0" />
1814
- </marker>
1815
- <marker
1816
- inkscape:stockid="Arrow2Mend"
1817
- orient="auto"
1818
- refY="0"
1819
- refX="0"
1820
- id="Arrow2Mend-7-68"
1821
- style="overflow:visible">
1822
- <path
1823
- id="path3882-2-57"
1824
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1825
- 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"
1826
- transform="scale(-0.6)"
1827
- inkscape:connector-curvature="0" />
1828
- </marker>
1829
- <marker
1830
- inkscape:stockid="Arrow2Mstart"
1831
- orient="auto"
1832
- refY="0"
1833
- refX="0"
1834
- id="Arrow2Mstart-09"
1835
- style="overflow:visible">
1836
- <path
1837
- id="path3879-48"
1838
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1839
- 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"
1840
- transform="scale(0.6)"
1841
- inkscape:connector-curvature="0" />
1842
- </marker>
1843
- <marker
1844
- inkscape:stockid="Arrow2Mend"
1845
- orient="auto"
1846
- refY="0"
1847
- refX="0"
1848
- id="Arrow2Mend-7-82"
1849
- style="overflow:visible">
1850
- <path
1851
- id="path3882-2-4"
1852
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
1853
- 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"
1854
- transform="scale(-0.6)"
1855
- inkscape:connector-curvature="0" />
1856
- </marker>
1857
- </defs>
1858
- <metadata
1859
- id="metadata7">
1860
- <rdf:RDF>
1861
- <cc:Work
1862
- rdf:about="">
1863
- <dc:format>image/svg+xml</dc:format>
1864
- <dc:type
1865
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1866
- <dc:title></dc:title>
1867
- </cc:Work>
1868
- </rdf:RDF>
1869
- </metadata>
1870
- <g
1871
- transform="translate(-6.7872183,-52.586268)"
1872
- id="layer1"
1873
- inkscape:groupmode="layer"
1874
- inkscape:label="Calque 1">
1875
- <g
1876
- inkscape:groupmode="layer"
1877
- id="layer2"
1878
- inkscape:label="Calque"
1879
- style="display:inline">
1880
- <rect
1881
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#9f9f9f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
1882
- id="rect10797"
1883
- width="52.325901"
1884
- height="74.246208"
1885
- x="108.54089"
1886
- y="412.43054" />
1887
- <path
1888
- inkscape:connector-curvature="0"
1889
- id="path9744-6-3"
1890
- d="m 117.37038,407.48081 c 34.31336,0 34.31336,0 34.31336,0"
1891
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)" />
1892
- <text
1893
- xml:space="preserve"
1894
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
1895
- x="119.1475"
1896
- y="401.82394"
1897
- id="text10831"><tspan
1898
- sodipodi:role="line"
1899
- id="tspan10833"
1900
- x="119.1475"
1901
- y="401.82394"
1902
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:1;font-family:Calibri;-inkscape-font-specification:Calibri">delay</tspan></text>
1903
- <path
1904
- inkscape:connector-curvature="0"
1905
- id="path9744-6-3-0"
1906
- d="m 182.5,303.85126 c 0,-20.47814 0,-20.47814 0,-20.47814"
1907
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;display:inline;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)" />
1908
- <path
1909
- inkscape:connector-curvature="0"
1910
- id="path9744-6-3-0-9"
1911
- d="m 182.75,408.35125 c 0,-20.47814 0,-20.47814 0,-20.47814"
1912
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;display:inline;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)" />
1913
- <g
1914
- id="g14056">
1915
- <path
1916
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;display:inline;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)"
1917
- d="m 219.26093,370.86219 c 20.47814,0 20.47814,0 20.47814,0"
1918
- id="path9744-6-3-0-5-14"
1919
- inkscape:connector-curvature="0" />
1920
- <ellipse
1921
- ry="8.5"
1922
- rx="13.753289"
1923
- cy="370.86218"
1924
- cx="230.75328"
1925
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.10797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
1926
- id="path14054"
1927
- transform="matrix(0.90359941,0,0,0.90150941,20.918927,36.396374)" />
1928
- </g>
1929
- <g
1930
- inkscape:export-ydpi="50"
1931
- inkscape:export-xdpi="50"
1932
- inkscape:export-filename="C:\Users\sweber\Labo\biblio\articles rédigé\2016\NOPA high repetition rate\figures\polar_hor.png"
1933
- id="g14056-9"
1934
- style="display:inline"
1935
- transform="translate(389.29098,114.53042)">
1936
- <path
1937
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;display:inline;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)"
1938
- d="m 219.26093,370.86219 c 20.47814,0 20.47814,0 20.47814,0"
1939
- id="path9744-6-3-0-5-14-2"
1940
- inkscape:connector-curvature="0" />
1941
- <ellipse
1942
- ry="8.5"
1943
- rx="13.753289"
1944
- cy="370.86218"
1945
- cx="230.75328"
1946
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.10797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
1947
- id="path14054-9"
1948
- transform="matrix(0.90359941,0,0,0.90150941,20.918927,36.396374)" />
1949
- </g>
1950
- <g
1951
- id="g14056-4"
1952
- style="display:inline"
1953
- transform="translate(443.7382,-224.01077)">
1954
- <path
1955
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;display:inline;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)"
1956
- d="m 219.26093,370.86219 c 20.47814,0 20.47814,0 20.47814,0"
1957
- id="path9744-6-3-0-5-14-28"
1958
- inkscape:connector-curvature="0" />
1959
- <ellipse
1960
- ry="8.5"
1961
- rx="13.753289"
1962
- cy="370.86218"
1963
- cx="230.75328"
1964
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.10797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
1965
- id="path14054-8"
1966
- transform="matrix(0.90359941,0,0,0.90150941,20.918927,36.396374)" />
1967
- </g>
1968
- <g
1969
- id="g14056-9-3"
1970
- style="display:inline"
1971
- transform="translate(212.2172,-96.259023)">
1972
- <path
1973
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;display:inline;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)"
1974
- d="m 219.26093,370.86219 c 20.47814,0 20.47814,0 20.47814,0"
1975
- id="path9744-6-3-0-5-14-2-0"
1976
- inkscape:connector-curvature="0" />
1977
- <ellipse
1978
- ry="8.5"
1979
- rx="13.753289"
1980
- cy="370.86218"
1981
- cx="230.75328"
1982
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.10797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
1983
- id="path14054-9-7"
1984
- transform="matrix(0.90359941,0,0,0.90150941,20.918927,36.396374)" />
1985
- </g>
1986
- <g
1987
- id="g14056-9-5"
1988
- style="display:inline"
1989
- transform="translate(370.07254,39.130063)">
1990
- <path
1991
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;display:inline;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)"
1992
- d="m 219.26093,370.86219 c 20.47814,0 20.47814,0 20.47814,0"
1993
- id="path9744-6-3-0-5-14-2-2"
1994
- inkscape:connector-curvature="0" />
1995
- <ellipse
1996
- ry="8.5"
1997
- rx="13.753289"
1998
- cy="370.86218"
1999
- cx="230.75328"
2000
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.10797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2001
- id="path14054-9-0"
2002
- transform="matrix(0.90359941,0,0,0.90150941,20.918927,36.396374)" />
2003
- </g>
2004
- <path
2005
- inkscape:connector-curvature="0"
2006
- id="path9744-6-3-0-9-1"
2007
- d="m 512.09785,361.85843 c 0,-20.47814 0,-20.47814 0,-20.47814"
2008
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;display:inline;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)" />
2009
- <g
2010
- id="g14056-9-3-5"
2011
- style="display:inline"
2012
- transform="translate(65.789613,-3.2028253)">
2013
- <path
2014
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;display:inline;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)"
2015
- d="m 219.26093,370.86219 c 20.47814,0 20.47814,0 20.47814,0"
2016
- id="path9744-6-3-0-5-14-2-0-5"
2017
- inkscape:connector-curvature="0" />
2018
- <ellipse
2019
- ry="8.5"
2020
- rx="13.753289"
2021
- cy="370.86218"
2022
- cx="230.75328"
2023
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.10797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2024
- id="path14054-9-7-1"
2025
- transform="matrix(0.90359941,0,0,0.90150941,20.918927,36.396374)" />
2026
- </g>
2027
- </g>
2028
- <g
2029
- transform="matrix(-0.45157921,0,0,-0.44944366,545.47572,560.62109)"
2030
- id="g5986">
2031
- <g
2032
- id="g5920"
2033
- style="fill:none">
2034
- <path
2035
- id="path5193"
2036
- style="fill:none;stroke:#191924;stroke-width:1.41506;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:239.728, 9.98868, 9.98868, 9.98868;stroke-dashoffset:99.6637;stroke-opacity:1"
2037
- d="M -9.6617,1054.032 H 20.51205"
2038
- inkscape:connector-curvature="0" />
2039
- <path
2040
- id="path5241"
2041
- style="fill:none;stroke:#000000;stroke-width:1.96721;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
2042
- d="m 383.41705,988.002 v 0 m -1.125,-33.875 h 0.25 m 0,-3.375 h -0.375 m 0,0.25 h -0.125 m -430.5,34.25 0.5,2.875 0.25,1.5 0.375,1.375 0.5,1.125 0.375,0.625 0.375,0.625 0.375,0.25 0.25,0.125 h 0.25 m 0,-28.125 h -0.25 l -0.25,0.125 -0.375,0.25 -0.375,0.5 -0.375,0.75 -0.5,1.125 -0.375,1.375 -0.25,1.5 -0.5,2.875 m 3.25,19.625 h 3.75 m 0,-28.125 h -3.75 m 427.375,-14.875 v 0 0.25 0.375 0.375 0.375 0.125 m 0.375,-1.5 v 0 0.25 0.375 0.375 0.375 0.5 0.5 0.375 0.25 0.25 0.125 m -431,31.125 v -0.375 l -0.125,-1.125 v -1.25 -1.375 -1.5 -1.375 -1.375 -1.25 l 0.125,-1.125 v -0.375 m 8.75,-5.625 9.25,0.25 9.125,0.375 9.125,0.625 6.75,0.625 6.625,0.75 6.625,1.125 6.625,1.375 3.25,0.875 3.125,1.125 1.5,0.75 1.5,0.875 0.625,0.5 0.625,0.625 0.25,0.625 0.125,0.75 -0.125,0.625 -0.375,0.75 -0.625,0.5 -0.625,0.5 -1.5,1 -1.625,0.625 -1.625,0.625 -4.875,1.5 -4.875,1.125 -5,0.75 -5,0.75 -5.125,0.5 -11.125,1 -11.375,0.625 -11.25,0.25 m 93.5,-50.125 1.25,0.125 1,0.25 1.25,0.625 1.125,0.875 1.75,1.625 1.375,1.875 1.625,3 1.375,3.125 1.125,3.25 1.25,4.625 0.875,4.75 0.625,4.75 0.375,4.875 0.125,4.75 -0.125,4.625 -0.25,4.625 -0.5,4.625 -0.75,4.5 -1.125,4.5 -1.375,4.375 -1.375,3.25 -1.625,3 -1.375,1.875 -1.5,1.75 -1,0.875 -1.25,0.75 -1,0.375 -1,0.25 h -1.125 l -1.125,-0.125 -0.875,-0.25 m 252,-36.875 h 26.875 m -54.625,0 h 0.125 0.25 l 0.125,0.125 0.125,0.125 0.25,0.125 v 0.125 l 0.125,0.25 v 0.125 m -109.375,-0.875 h 108.375 m -108.375,-3.375 -0.5,0.125 -0.375,0.125 -0.375,0.375 -0.25,0.375 -0.125,0.5 v 0.375 l 0.125,0.5 0.25,0.375 0.375,0.375 0.375,0.125 0.5,0.125 m 108.375,-3.375 h -108.375 m 136.125,0 h -0.125 l -0.25,-0.125 h -0.125 l -0.125,-0.125 -0.125,-0.125 -0.125,-0.25 -0.125,-0.125 v -0.125 m 27.875,0.875 h -26.875 m 26.875,3.375 0.5,-0.125 0.375,-0.125 0.375,-0.375 0.25,-0.375 0.125,-0.5 v -0.375 l -0.125,-0.5 -0.25,-0.375 -0.375,-0.375 -0.375,-0.125 -0.5,-0.125 m -53.625,4.25 0.5,2.375 0.625,2.25 0.875,2.125 1.375,2.125 1.625,1.875 1.625,1.375 1.75,1 2,0.75 2,0.25 h 1.75 l 1.75,-0.375 1.625,-0.625 1.5,-0.875 1.5,-1.25 1.375,-1.375 1,-1.5 1,-1.625 0.75,-1.75 0.75,-2.375 0.125,-1.125 m 0.25,-1.25 v -0.125 l 0.125,-0.25 0.125,-0.125 0.125,-0.125 0.125,-0.125 0.125,-0.125 h 0.25 0.125 m -26.75,-4.25 v 0.125 l -0.125,0.125 v 0.25 l -0.25,0.125 -0.125,0.125 h -0.125 l -0.25,0.125 h -0.125 m 26.75,-0.875 -0.375,-2.375 -0.75,-2.25 -0.875,-2.125 -1.375,-2.125 -1.625,-1.875 -1.625,-1.375 -1.75,-1 -1.875,-0.75 -2.125,-0.25 h -1.75 l -1.75,0.375 -1.625,0.625 -1.5,0.875 -1.5,1.25 -1.25,1.375 -1.125,1.5 -1,1.625 -0.75,1.75 -0.625,2.375 -0.25,1 m -314.25,-68.625 11.875,-0.75 11.875,-0.375 11.875,0.125 11.75,0.5 11.75,0.875 9.25,1.125 9.125,1.25 9.125,1.75 9.125,1.875 9.125,2.25 6.375,1.875 6.375,2.125 6.25,2.25 6.125,2.375 6.25,2.75 5.75,2.875 6,3.375 5.625,3.375 3.75,2.625 3.5,2.75 3.375,2.75 3.25,3.125 3.125,3.25 2.75,3.375 2.625,3.75 2.25,3.875 1.875,4 1,3.25 0.875,3.125 0.5,3.375 0.125,3.375 -0.125,3.375 -0.375,3.25 -0.75,3.25 -1.125,3.25 -1.25,3.125 -1.5,3 -1.75,2.75 -2,2.875 -2.75,3.375 -3,3.25 -3.25,3.125 -3.25,2.875 -3.625,2.75 -3.75,2.625 -4,2.625 -4.375,2.5 -4.375,2.375 -4.5,2.125 -4.625,2.125 -4.5,1.875 -5.5,2.125 -5.625,2 -5.5,1.75 -5.625,1.625 -8.125,2.125 -8.375,1.875 -8.375,1.5 -8.375,1.375 -8.5,1.125 -8.5,0.75 -8.375,0.625 -11.75,0.5 -11.75,0.125 -11.625,-0.375 -11.75,-0.75 m -3.625,-61 0.375,15.25 0.75,15.25 1.125,15.25 1.375,15.25 m -2.625,-84.125 v 0.375 m 0,22.375 v 0.375 m 2.625,-84.125 -1.375,15.25 -1.125,15.25 -0.75,15.25 -0.375,15.25 m 32.625,-57.875 0.125,-0.375 0.125,-0.375 0.375,-0.375 0.375,-0.25 h 0.375 0.375 l 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 h -0.375 -0.375 l -0.375,-0.25 -0.375,-0.375 -0.125,-0.375 -0.125,-0.375 m 0,138.875 0.125,-0.375 0.125,-0.375 0.375,-0.375 0.375,-0.25 h 0.375 0.375 l 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 h -0.375 l -0.375,-0.125 -0.375,-0.125 -0.375,-0.375 -0.125,-0.375 -0.125,-0.375 m 26.625,-138.625 v -0.375 l 0.25,-0.375 0.25,-0.25 0.375,-0.25 0.375,-0.125 h 0.5 l 0.375,0.25 0.375,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.25 h -0.5 l -0.375,-0.125 -0.375,-0.25 -0.25,-0.25 -0.25,-0.375 v -0.5 m 0,138.25 v -0.375 l 0.25,-0.375 0.25,-0.25 0.375,-0.25 0.375,-0.125 h 0.5 l 0.375,0.25 0.375,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.25 h -0.5 l -0.375,-0.125 -0.375,-0.25 -0.25,-0.25 -0.25,-0.375 v -0.5 m -56.375,-84.5 0.125,-0.375 0.125,-0.375 0.375,-0.375 0.375,-0.125 0.375,-0.125 h 0.375 l 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 h -0.375 -0.375 l -0.375,-0.25 -0.375,-0.25 -0.125,-0.5 -0.125,-0.375 m 0,30.875 0.125,-0.5 0.125,-0.375 0.375,-0.25 0.375,-0.25 0.375,-0.125 0.375,0.125 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.5 -0.25,0.25 -0.375,0.375 -0.375,0.125 h -0.375 l -0.375,-0.125 -0.375,-0.125 -0.375,-0.375 -0.125,-0.375 -0.125,-0.375 m 1.125,-57.375 0.125,-0.5 0.125,-0.375 0.25,-0.25 0.375,-0.25 0.5,-0.125 0.375,0.125 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.25 h -0.375 l -0.5,-0.125 -0.375,-0.25 -0.25,-0.25 -0.125,-0.375 -0.125,-0.375 m 0,83.875 0.125,-0.375 0.125,-0.375 0.25,-0.25 0.375,-0.25 0.5,-0.125 h 0.375 l 0.375,0.25 0.375,0.25 0.25,0.25 0.125,0.5 v 0.375 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 -0.375,0.125 -0.5,-0.125 -0.375,-0.25 -0.25,-0.25 -0.125,-0.375 -0.125,-0.5 m 2.125,-110.5 v -0.5 l 0.25,-0.375 0.25,-0.25 0.375,-0.25 h 0.375 0.5 l 0.375,0.125 0.375,0.25 0.125,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.125,0.375 -0.375,0.25 -0.375,0.125 h -0.5 l -0.375,-0.125 -0.375,-0.125 -0.25,-0.375 -0.25,-0.375 v -0.375 m 0,137.125 v -0.375 l 0.25,-0.375 0.25,-0.375 0.375,-0.125 0.375,-0.125 h 0.5 l 0.375,0.125 0.375,0.25 0.125,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.125,0.375 -0.375,0.25 -0.375,0.125 h -0.5 -0.375 l -0.375,-0.25 -0.25,-0.375 -0.25,-0.375 v -0.375 m 88.75,-107.625 1.125,0.125 1.125,0.25 1.25,0.75 1.25,0.75 1.625,1.75 1.375,1.875 1.75,3 1.25,3.125 1.125,3.125 1.25,4.75 0.875,4.75 0.625,4.75 0.375,4.875 0.125,4.75 v 4.625 l -0.375,4.625 -0.5,4.625 -0.75,4.5 -1,4.5 -1.5,4.25 -0.875,2.25 -1,2.25 -1.125,2 -1.25,1.875 -1.5,1.625 -1.125,0.875 -1.25,0.75 -1,0.5 -1,0.25 h -1.125 l -1.125,-0.125 -1,-0.375 -0.875,-0.375 -1.375,-1 -1.25,-1.125 -1.375,-1.75 -1.125,-1.75 -1,-1.875 -1.5,-3.375 -1.125,-3.5 -1,-3.625 -0.75,-3.625 -0.875,-6.125 -0.5,-6.25 v -6.375 l 0.375,-6.25 0.75,-6.25 0.75,-4.25 1.125,-4.375 1,-3.25 1.25,-3.125 1.625,-3 1,-1.625 1.125,-1.5 1.375,-1.25 1.5,-1.125 1,-0.5 1.125,-0.25 1.125,-0.125 m -93.875,50.625 h -1 m 0,-23.125 h 1 m 2.625,84.75 10.75,0.75 10.5,0.375 10.375,0.125 10.625,-0.375 10.625,-0.625 10.875,-1.125 9.375,-1.125 9.25,-1.5 9.125,-1.875 9.125,-2.125 8.75,-2.375 8.5,-2.75 8.25,-3 6.875,-2.75 6.375,-3 6.125,-3.25 5.75,-3.25 5.25,-3.5 4.75,-3.625 4.375,-3.75 3.875,-3.75 3.375,-3.875 2.875,-3.875 2.375,-3.875 2,-3.875 1.5,-3.875 1,-3.75 0.625,-3.875 0.125,-3.75 -0.125,-3.625 -0.625,-3.875 -1,-3.75 -1.5,-3.875 -2,-3.875 -2.375,-4 -2.875,-3.875 -3.375,-3.75 -3.875,-3.75 -4.375,-3.75 -4.75,-3.625 -5.25,-3.5 -5.75,-3.25 -6.125,-3.25 -6.375,-3 -6.875,-2.875 -8.25,-2.875 -8.5,-2.75 -8.75,-2.375 -9.125,-2.125 -9.125,-1.875 -9.25,-1.5 -9.375,-1.125 -10.875,-1.125 -10.625,-0.625 -10.625,-0.375 -10.375,0.125 -10.5,0.375 -10.75,0.75 m 0,145.75 v 0.125 0.125 0.25 0.125 m 0,-146.375 v 0 0.125 0.25 0.125 0.125 m -0.625,0 v -0.125 -0.125 l 0.125,-0.125 v -0.125 h 0.125 l 0.125,-0.125 h 0.125 0.125 m -0.625,0.625 v 0 h 0.125 0.125 0.125 0.125 0.125 m -4.25,60.5 0.125,-7.625 0.25,-7.5 0.375,-7.625 0.375,-7.5 0.5,-7.625 0.5,-7.625 0.75,-7.5 0.75,-7.5 m -3.625,60.5 v 0.25 l 0.125,0.125 0.25,0.125 h 0.25 m 3.625,84.125 h -0.125 -0.125 -0.125 -0.125 -0.125 m 0.625,0.625 h -0.125 -0.125 l -0.125,-0.125 h -0.125 v -0.125 l -0.125,-0.125 v -0.125 -0.125 m 0,0 -0.75,-7.5 -0.75,-7.625 -0.5,-7.5 -0.5,-7.625 -0.375,-7.5 -0.375,-7.625 -0.25,-7.5 -0.125,-7.625 m 0.625,-0.5 h -0.125 l -0.25,0.125 h -0.125 l -0.125,0.125 v 0.25 m 5.25,29.875 0.125,-0.25 0.125,-0.25 0.25,-0.25 h 0.25 0.375 l 0.25,0.25 0.125,0.25 0.125,0.25 -0.125,0.375 -0.125,0.25 -0.25,0.125 -0.375,0.125 -0.25,-0.125 -0.25,-0.125 -0.125,-0.25 -0.125,-0.375 m 0,-83.875 0.125,-0.375 0.125,-0.25 0.25,-0.125 0.25,-0.125 0.375,0.125 0.25,0.125 0.125,0.25 0.125,0.375 -0.125,0.25 -0.125,0.25 -0.25,0.125 -0.375,0.125 -0.25,-0.125 -0.25,-0.125 -0.125,-0.25 -0.125,-0.25 m 2.125,-26.625 v -0.375 l 0.25,-0.25 0.25,-0.125 0.25,-0.125 0.375,0.125 0.25,0.125 0.125,0.25 0.125,0.375 -0.125,0.25 -0.125,0.25 -0.25,0.25 h -0.375 -0.25 l -0.25,-0.25 -0.25,-0.25 v -0.25 m -3.25,84 0.125,-0.375 0.125,-0.25 0.25,-0.125 0.375,-0.125 0.25,0.125 0.25,0.125 0.25,0.25 v 0.375 0.25 l -0.25,0.25 -0.25,0.25 h -0.25 -0.375 l -0.25,-0.25 -0.125,-0.25 -0.125,-0.25 m 3.25,53.125 v -0.25 l 0.25,-0.25 0.25,-0.25 h 0.25 0.375 l 0.25,0.25 0.125,0.25 0.125,0.25 -0.125,0.375 -0.125,0.25 -0.25,0.125 h -0.375 -0.25 l -0.25,-0.125 -0.25,-0.25 v -0.375 m 26.5,0.875 0.125,-0.25 0.125,-0.375 0.25,-0.125 h 0.375 0.25 l 0.25,0.125 0.25,0.375 v 0.25 0.25 l -0.25,0.25 -0.25,0.25 h -0.25 -0.375 l -0.25,-0.25 -0.125,-0.25 -0.125,-0.25 m 0,-138.875 0.125,-0.25 0.125,-0.375 0.25,-0.125 h 0.375 0.25 l 0.25,0.125 0.25,0.375 v 0.25 0.25 l -0.25,0.25 -0.25,0.25 h -0.25 -0.375 l -0.25,-0.25 -0.125,-0.25 -0.125,-0.25 m -29.75,54 0.125,-0.25 0.125,-0.25 0.25,-0.25 h 0.375 0.25 l 0.25,0.25 0.25,0.25 v 0.25 0.375 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.375,-0.125 -0.25,-0.125 -0.125,-0.25 -0.125,-0.375 m 56.375,84.5 v -0.25 l 0.25,-0.25 0.25,-0.125 0.25,-0.125 0.375,0.125 0.25,0.125 0.125,0.25 0.125,0.25 -0.125,0.375 -0.125,0.25 -0.25,0.125 -0.375,0.125 -0.25,-0.125 -0.25,-0.125 -0.25,-0.25 v -0.375 m 0,-138.25 v -0.25 l 0.25,-0.25 0.25,-0.125 0.25,-0.125 0.375,0.125 0.25,0.125 0.125,0.25 0.125,0.25 -0.125,0.375 -0.125,0.25 -0.25,0.125 -0.375,0.125 -0.25,-0.125 -0.25,-0.125 -0.25,-0.25 v -0.375 m 222.25,94.75 2.125,3.625 2.5,3.625 2.75,3.5 3.125,3.25 3.5,3 3.75,2.75 4,2.5 4.25,2.125 4.375,1.75 4.5,1.375 4.5,0.875 4.625,0.625 4.5,0.125 4.5,-0.125 4.25,-0.5 4.25,-0.875 4.125,-1.25 4.125,-1.5 4,-1.875 4,-2.375 3.75,-2.625 3.625,-3 3.25,-3.25 3.125,-3.625 2.75,-3.75 2.375,-4.125 2,-4.125 1.625,-4.375 1.375,-4.375 0.875,-4.375 0.5,-4.25 0.125,-4.375 -0.125,-4.25 -0.5,-4.25 -0.875,-4.375 -1.375,-4.375 -1.625,-4.375 -2,-4.125 -2.375,-4.125 -2.75,-3.875 -3.125,-3.5 -3.25,-3.375 -3.625,-2.875 -3.75,-2.625 -4,-2.375 -4,-1.875 -4.125,-1.5 -4.125,-1.25 -4.25,-0.875 -4.25,-0.5 -4.5,-0.125 -4.5,0.125 -4.625,0.5 -4.5,1 -4.5,1.375 -4.375,1.75 -4.25,2.125 -4,2.375 -3.75,2.875 -3.5,3 -3.125,3.25 -2.75,3.5 -2.5,3.5 -2.125,3.75 m 0,0 h -20.75 m 0,0 1.75,-4.375 2.25,-4.375 2.375,-4.375 2.875,-4.25 3.125,-4 3.5,-4 3.75,-3.625 4,-3.375 4.375,-3.25 4.5,-2.75 4.75,-2.5 4.875,-2.125 5,-1.75 5.125,-1.375 5.125,-1.125 5,-0.625 5.125,-0.25 h 5 l 4.875,0.5 4.75,0.625 4.625,1 4.75,1.375 4.75,1.625 4.625,2 4.5,2.375 4.5,2.75 4.25,3 4.125,3.5 3.875,3.625 3.5,4 3.25,4.25 3,4.375 2.625,4.625 2.25,4.75 1.875,4.875 1.625,4.875 1.125,5 0.875,4.875 0.5,4.875 0.125,4.75 -0.125,4.875 -0.5,4.875 -0.875,4.875 -1.125,5 -1.625,4.875 -1.875,4.875 -2.25,4.75 -2.625,4.625 -3,4.375 -3.25,4.25 -3.5,4 -3.875,3.625 -4.125,3.375 -4.25,3.125 -4.5,2.75 -4.5,2.375 -4.625,2 -4.75,1.625 -4.75,1.375 -4.625,1 -4.75,0.625 -4.875,0.375 -5,0.125 -5.125,-0.25 -5,-0.75 -5.125,-1 -5.125,-1.375 -5,-1.75 -4.875,-2.125 -4.75,-2.5 -4.5,-2.875 -4.375,-3.125 -4,-3.375 -3.75,-3.75 -3.5,-3.875 -3.125,-4 -2.875,-4.25 -2.375,-4.375 -2.25,-4.375 -1.75,-4.375 m 0,0 h 20.75 m 71.375,39.5 0.125,-0.5 0.125,-0.375 0.375,-0.25 0.375,-0.25 0.375,-0.125 h 0.375 l 0.375,0.25 0.375,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.25 h -0.375 l -0.375,-0.125 -0.375,-0.25 -0.375,-0.25 -0.125,-0.375 -0.125,-0.375 m 0,-130.125 0.125,-0.375 0.125,-0.375 0.375,-0.25 0.375,-0.25 0.375,-0.125 h 0.375 l 0.375,0.25 0.375,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 -0.375,0.125 -0.375,-0.125 -0.375,-0.25 -0.375,-0.25 -0.125,-0.375 -0.125,-0.5 m -33.375,133.875 v -0.375 l 0.25,-0.375 0.25,-0.25 0.375,-0.25 0.375,-0.125 h 0.5 l 0.375,0.25 0.25,0.25 0.25,0.25 0.125,0.5 v 0.375 l -0.125,0.375 -0.25,0.375 -0.25,0.25 -0.375,0.125 -0.5,0.125 -0.375,-0.125 -0.375,-0.25 -0.25,-0.25 -0.25,-0.375 v -0.5 m 0,-137.625 v -0.5 l 0.25,-0.375 0.25,-0.25 0.375,-0.25 0.375,-0.125 h 0.5 l 0.375,0.25 0.25,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.375 -0.25,0.375 -0.25,0.25 -0.375,0.25 h -0.5 l -0.375,-0.125 -0.375,-0.25 -0.25,-0.25 -0.25,-0.375 v -0.375 m -38,44 h -20.75 m 0,-0.75 v 0.125 0.25 0.125 0.125 0.125 m 20.75,0 v 0 -0.125 -0.125 -0.125 -0.25 -0.125 m -20.75,51.125 v -0.25 -0.125 -0.125 -0.125 -0.125 m 0,0 h 20.75 m 0,0.75 v -0.25 -0.125 -0.125 -0.125 -0.125 m 0,-50.375 0.125,0.125 h 0.125 v 0.125 h 0.125 l 0.125,0.125 h 0.125 m 0,0 -0.125,0.125 -0.125,0.125 -0.125,0.125 h -0.125 -0.125 m 0,50.375 0.125,-0.125 h 0.125 v -0.125 h 0.125 l 0.125,-0.125 h 0.125 m 0,-50.375 1.25,-2.25 1.375,-2.25 1.5,-2.125 1.5,-2.125 1.75,-2 1.75,-1.875 1.875,-1.75 2,-1.75 2,-1.625 2.125,-1.625 2.125,-1.375 2.25,-1.375 2.375,-1.125 2.375,-1.125 2.375,-1 2.5,-0.875 2.5,-0.75 2.5,-0.625 2.625,-0.5 2.5,-0.375 2.625,-0.25 2.625,-0.125 h 2.625 l 2.625,0.125 2.625,0.25 2.5,0.375 2.625,0.5 2.5,0.625 2.5,0.75 2.5,0.875 2.375,1 2.375,1.125 2.25,1.25 2.25,1.25 2.25,1.5 2.125,1.5 2,1.625 2,1.75 1.875,1.875 1.75,1.875 1.625,2 1.625,2 1.5,2.25 1.375,2.125 1.25,2.375 1.125,2.25 1.125,2.5 0.875,2.375 0.75,2.5 0.75,2.5 0.5,2.5 0.5,2.625 0.25,2.625 0.25,2.625 v 2.5 2.625 l -0.25,2.625 -0.25,2.625 -0.5,2.5 -0.5,2.625 -0.75,2.5 -0.75,2.5 -0.875,2.375 -1.125,2.5 -1.125,2.25 -1.25,2.375 -1.375,2.125 -1.5,2.125 -1.625,2.125 -1.625,2 -1.75,1.875 -1.875,1.875 -2,1.75 -2,1.625 -2.125,1.5 -2.25,1.5 -2.25,1.25 -2.25,1.25 -2.375,1.125 -2.375,1 -2.5,0.75 -2.5,0.75 -2.5,0.625 -2.625,0.625 -2.5,0.375 -2.625,0.25 -2.625,0.125 h -2.625 l -2.625,-0.125 -2.625,-0.25 -2.5,-0.375 -2.625,-0.5 -2.5,-0.625 -2.5,-0.75 -2.5,-0.875 -2.375,-1 -2.375,-1.125 -2.375,-1.125 -2.25,-1.375 -2.125,-1.375 -2.125,-1.625 -2,-1.625 -2,-1.75 -1.875,-1.75 -1.75,-1.875 -1.75,-2 -1.5,-2.125 -1.5,-2.125 -1.375,-2.25 -1.25,-2.25 m -0.625,-0.375 v 0 h 0.125 0.125 l 0.125,0.125 0.125,0.125 0.125,0.125 m -22.125,-50.75 v 0 -0.125 h 0.125 v -0.125 m 0.625,0.25 h -0.125 -0.125 l -0.125,-0.125 h -0.125 -0.125 v -0.125 m 0.625,1 h -0.125 -0.125 l -0.125,-0.125 -0.125,-0.125 h -0.125 v -0.125 l -0.125,-0.25 v -0.125 m 0.125,-0.25 1.125,-2.75 1.125,-2.875 1.375,-2.75 1.5,-2.625 1.5,-2.625 1.75,-2.5 1.75,-2.5 1.875,-2.5 2,-2.25 2,-2.25 2.125,-2.125 2.25,-2.125 2.375,-2 2.375,-1.875 2.5,-1.75 2.5,-1.625 2.625,-1.625 2.75,-1.5 2.75,-1.375 2.75,-1.125 2.875,-1.125 2.875,-1 2.875,-1 3,-0.75 2.875,-0.625 3,-0.5 3.125,-0.375 3,-0.25 3,-0.25 h 3.125 l 3,0.125 3,0.25 3.125,0.375 3,0.375 3,0.625 2.875,0.75 3,0.875 2.875,0.875 2.875,1.125 2.75,1.25 2.75,1.25 2.75,1.375 2.625,1.625 2.625,1.625 2.5,1.75 2.375,1.75 2.375,2 2.25,2 2.25,2.125 2.125,2.25 2,2.25 1.875,2.375 1.75,2.5 1.75,2.5 1.625,2.625 1.5,2.625 1.375,2.75 1.25,2.75 1.125,2.875 1.125,2.875 0.875,2.875 0.875,2.875 0.625,3 0.5,3 0.5,3 0.25,3.125 0.25,3 v 3 3.125 l -0.25,3 -0.25,3 -0.5,3.125 -0.5,3 -0.625,2.875 -0.875,3 -0.875,2.875 -1.125,2.875 -1.125,2.875 -1.25,2.75 -1.375,2.75 -1.5,2.625 -1.625,2.625 -1.75,2.5 -1.75,2.5 -1.875,2.375 -2,2.25 -2.125,2.25 -2.25,2.125 -2.25,2 -2.375,2 -2.375,1.75 -2.5,1.75 -2.625,1.625 -2.625,1.625 -2.75,1.375 -2.75,1.25 -2.75,1.25 -2.875,1.125 -2.875,0.875 -3,0.875 -2.875,0.75 -3,0.5 -3,0.5 -3.125,0.375 -3,0.25 -3,0.125 -3.125,-0.125 -3,-0.125 -3,-0.25 -3.125,-0.375 -3,-0.5 -2.875,-0.625 -3,-0.875 -2.875,-0.875 -2.875,-1 -2.875,-1.125 -2.75,-1.25 -2.75,-1.25 -2.75,-1.5 -2.625,-1.625 -2.5,-1.625 -2.5,-1.75 -2.375,-1.875 -2.375,-2 -2.25,-2.125 -2.125,-2.125 -2,-2.25 -2,-2.375 -1.875,-2.375 -1.75,-2.5 -1.75,-2.5 -1.5,-2.625 -1.5,-2.75 -1.375,-2.625 -1.125,-2.875 -1.125,-2.75 m 0.625,-0.25 h -0.125 -0.125 l -0.125,0.125 h -0.125 -0.125 v 0.125 m -0.125,-0.25 v 0 0.125 h 0.125 v 0.125 m -0.125,-0.25 v -0.25 l 0.125,-0.125 v -0.125 h 0.125 l 0.125,-0.125 0.125,-0.125 h 0.125 0.125 m 92.75,40.25 0.125,-0.375 0.125,-0.25 0.25,-0.125 0.375,-0.125 0.25,0.125 0.25,0.125 0.25,0.25 v 0.375 0.25 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.375,-0.125 -0.25,-0.125 -0.125,-0.25 -0.125,-0.25 m -33.375,3.75 v -0.25 l 0.25,-0.25 0.25,-0.25 h 0.25 0.375 l 0.25,0.25 0.125,0.25 0.125,0.25 -0.125,0.375 -0.125,0.25 -0.25,0.125 -0.375,0.125 -0.25,-0.125 -0.25,-0.125 -0.25,-0.25 v -0.375 m 0,-137.625 v -0.375 l 0.25,-0.25 0.25,-0.125 0.25,-0.125 0.375,0.125 0.25,0.125 0.125,0.25 0.125,0.375 -0.125,0.25 -0.125,0.25 -0.25,0.125 -0.375,0.125 -0.25,-0.125 -0.25,-0.125 -0.25,-0.25 v -0.25 m 33.375,3.75 0.125,-0.25 0.125,-0.25 0.25,-0.125 0.375,-0.125 0.25,0.125 0.25,0.125 0.25,0.25 v 0.25 0.375 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.375,-0.125 -0.25,-0.125 -0.125,-0.25 -0.125,-0.375 m 64.5,13.25 1.75,9.625 1.375,9.625 1,9.625 0.625,9.75 0.25,9.75 v 9.75 l -0.375,9.125 -0.75,9.125 -1,9.125 -1.25,9.125 -1.625,9 m -34.5,-107 0.125,-0.375 0.125,-0.375 0.375,-0.375 0.375,-0.125 0.375,-0.125 h 0.375 l 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.5 v 0.375 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 h -0.375 -0.375 l -0.375,-0.25 -0.375,-0.25 -0.125,-0.375 -0.125,-0.5 m 0,110.375 0.125,-0.5 0.125,-0.375 0.375,-0.25 0.375,-0.25 0.375,-0.125 0.375,0.125 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.5 -0.25,0.25 -0.375,0.375 -0.375,0.125 h -0.375 l -0.375,-0.125 -0.375,-0.125 -0.375,-0.375 -0.125,-0.375 -0.125,-0.375 m 36,-70.625 v -0.375 l 0.25,-0.375 0.25,-0.375 0.375,-0.125 0.375,-0.125 h 0.375 l 0.5,0.125 0.25,0.25 0.25,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.25,0.375 -0.25,0.25 -0.5,0.125 h -0.375 -0.375 l -0.375,-0.25 -0.25,-0.25 -0.25,-0.5 v -0.375 m 0,30.875 v -0.5 l 0.25,-0.375 0.25,-0.25 0.375,-0.25 0.375,-0.125 0.375,0.125 0.5,0.125 0.25,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.5 -0.25,0.25 -0.25,0.375 -0.5,0.125 h -0.375 l -0.375,-0.125 -0.375,-0.125 -0.25,-0.375 -0.25,-0.375 v -0.375 m -4.5,-65.625 0.125,-0.5 0.125,-0.375 0.375,-0.25 0.375,-0.25 0.375,-0.125 0.375,0.125 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.5 -0.25,0.25 -0.375,0.25 -0.375,0.25 h -0.375 l -0.375,-0.125 -0.375,-0.125 -0.375,-0.375 -0.125,-0.375 -0.125,-0.375 m 0,100.375 0.125,-0.375 0.125,-0.375 0.375,-0.375 0.375,-0.125 0.375,-0.125 h 0.375 l 0.375,0.125 0.375,0.375 0.25,0.25 0.125,0.5 v 0.375 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 -0.375,0.125 -0.375,-0.125 -0.375,-0.25 -0.375,-0.25 -0.125,-0.375 -0.125,-0.5 m -321.75,-121 0.125,-0.375 0.125,-0.375 0.375,-0.375 0.375,-0.25 h 0.375 0.375 l 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 h -0.375 -0.375 l -0.375,-0.25 -0.375,-0.375 -0.125,-0.375 -0.125,-0.375 m 32.5,-0.875 v -0.375 l 0.25,-0.375 0.25,-0.375 0.375,-0.25 h 0.375 0.5 l 0.375,0.125 0.25,0.25 0.25,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.25,0.375 -0.25,0.25 -0.375,0.125 h -0.5 l -0.375,-0.125 -0.375,-0.125 -0.25,-0.375 -0.25,-0.375 v -0.375 m 32.375,-0.25 0.125,-0.375 0.125,-0.375 0.25,-0.375 0.375,-0.125 0.5,-0.125 h 0.375 l 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 h -0.375 -0.5 l -0.375,-0.25 -0.25,-0.375 -0.125,-0.375 -0.125,-0.375 m 32.375,0.5 0.125,-0.5 0.125,-0.375 0.375,-0.25 0.375,-0.25 0.375,-0.125 0.375,0.125 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.25 h -0.375 l -0.375,-0.125 -0.375,-0.25 -0.375,-0.25 -0.125,-0.375 -0.125,-0.375 m 32.5,1 v -0.375 l 0.25,-0.375 0.25,-0.375 0.375,-0.125 0.375,-0.125 h 0.5 l 0.375,0.125 0.25,0.375 0.25,0.25 0.125,0.5 v 0.375 l -0.125,0.375 -0.25,0.375 -0.25,0.25 -0.375,0.125 -0.5,0.125 -0.375,-0.125 -0.375,-0.25 -0.25,-0.25 -0.25,-0.375 v -0.5 m 32.375,1.75 v -0.375 l 0.25,-0.375 0.25,-0.375 0.375,-0.125 0.375,-0.125 h 0.375 l 0.5,0.25 0.25,0.25 0.25,0.25 0.125,0.5 v 0.375 l -0.125,0.375 -0.25,0.375 -0.25,0.25 -0.5,0.125 -0.375,0.125 -0.375,-0.125 -0.375,-0.25 -0.25,-0.25 -0.25,-0.375 v -0.5 m 32.25,2.5 0.125,-0.5 0.125,-0.375 0.375,-0.25 0.25,-0.25 0.5,-0.125 0.375,0.125 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.5 -0.25,0.25 -0.375,0.25 -0.375,0.25 h -0.375 l -0.5,-0.125 -0.25,-0.25 -0.375,-0.25 -0.125,-0.375 -0.125,-0.375 m -194.375,137 0.125,-0.375 0.125,-0.375 0.375,-0.375 0.375,-0.25 h 0.375 0.375 l 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 h -0.375 l -0.375,-0.125 -0.375,-0.125 -0.375,-0.375 -0.125,-0.375 -0.125,-0.375 m 32.5,0.875 v -0.375 l 0.25,-0.375 0.25,-0.375 0.375,-0.25 h 0.375 0.5 l 0.375,0.125 0.25,0.25 0.25,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.25,0.375 -0.25,0.25 -0.375,0.125 h -0.5 -0.375 l -0.375,-0.25 -0.25,-0.375 -0.25,-0.375 v -0.375 m 32.375,0.25 0.125,-0.5 0.125,-0.375 0.25,-0.25 0.375,-0.25 h 0.5 0.375 l 0.375,0.125 0.375,0.25 0.25,0.375 0.125,0.375 v 0.5 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 h -0.375 l -0.5,-0.125 -0.375,-0.125 -0.25,-0.375 -0.125,-0.375 -0.125,-0.375 m 32.375,-0.5 0.125,-0.375 0.125,-0.375 0.375,-0.25 0.375,-0.25 0.375,-0.125 h 0.375 l 0.375,0.25 0.375,0.25 0.25,0.25 0.125,0.5 v 0.375 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 -0.375,0.125 -0.375,-0.125 -0.375,-0.25 -0.375,-0.25 -0.125,-0.375 -0.125,-0.5 m 32.5,-1 v -0.5 l 0.25,-0.375 0.25,-0.25 0.375,-0.25 0.375,-0.125 0.5,0.125 0.375,0.125 0.25,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.5 -0.25,0.25 -0.25,0.25 -0.375,0.25 h -0.5 l -0.375,-0.125 -0.375,-0.25 -0.25,-0.25 -0.25,-0.375 v -0.375 m 32.375,-1.75 v -0.5 l 0.25,-0.375 0.25,-0.25 0.375,-0.25 0.375,-0.125 0.375,0.125 0.5,0.125 0.25,0.25 0.25,0.375 0.125,0.375 v 0.375 l -0.125,0.5 -0.25,0.25 -0.25,0.25 -0.5,0.25 h -0.375 l -0.375,-0.125 -0.375,-0.25 -0.25,-0.25 -0.25,-0.375 v -0.375 m 32.25,-2.5 0.125,-0.375 0.125,-0.375 0.375,-0.375 0.25,-0.125 0.5,-0.125 h 0.375 l 0.375,0.125 0.375,0.375 0.25,0.25 0.125,0.5 v 0.375 l -0.125,0.375 -0.25,0.375 -0.375,0.25 -0.375,0.125 -0.375,0.125 -0.5,-0.125 -0.25,-0.25 -0.375,-0.25 -0.125,-0.375 -0.125,-0.5 m 83,-68 0.5,0.125 0.5,0.25 0.375,0.25 0.25,0.5 0.125,0.375 v 0.5 l -0.125,0.5 -0.25,0.5 -0.375,0.25 -0.5,0.25 -0.5,0.125 m -26.625,-3.625 h 26.625 m -27.75,-1 v 0.25 l 0.125,0.125 0.125,0.25 0.125,0.125 0.125,0.125 0.125,0.125 h 0.25 0.25 m -27,-1 0.5,-2.75 1,-2.75 0.75,-1.625 1,-1.5 1.125,-1.375 1.625,-1.5 1.75,-1.125 2,-0.875 2.125,-0.5 h 1.75 l 1.875,0.25 1.625,0.625 1.5,0.75 1.5,1.125 1.375,1.375 1.125,1.5 1,1.5 0.75,1.625 0.875,2.625 0.625,2.625 m -27,1 h 0.125 0.25 l 0.125,-0.125 0.25,-0.125 0.125,-0.125 0.125,-0.25 v -0.125 l 0.125,-0.25 m -109.375,1 h 108.25 m -108.25,3.625 -0.5,-0.125 -0.375,-0.25 -0.5,-0.25 -0.25,-0.5 -0.125,-0.5 v -0.5 l 0.125,-0.375 0.25,-0.5 0.5,-0.25 0.375,-0.25 0.5,-0.125 m 108.25,3.625 h -108.25 m 109.375,1 -0.125,-0.25 v -0.125 l -0.125,-0.25 -0.125,-0.125 -0.25,-0.125 -0.125,-0.125 h -0.25 -0.125 m 27,1 -0.625,2.75 -0.875,2.75 -0.875,1.5 -1,1.625 -1.125,1.375 -1.5,1.5 -1.75,1.125 -2,0.875 -2.125,0.5 h -1.875 l -1.75,-0.375 -1.75,-0.5 -1.5,-0.75 -1.5,-1.125 -1.375,-1.375 -1.125,-1.5 -1,-1.5 -0.75,-1.625 -0.875,-2.625 -0.5,-2.625 m 27,-1 h -0.25 -0.25 l -0.125,0.125 -0.125,0.125 -0.125,0.125 -0.125,0.25 -0.125,0.125 v 0.25 m 27.75,-1 h -26.625 m 11.125,-66.875 -0.125,-0.25 -0.125,-0.25 -0.25,-0.125 -0.25,-0.125 -0.375,0.125 -0.25,0.125 -0.125,0.25 v 0.25 0.375 l 0.125,0.25 0.25,0.125 h 0.375 0.25 l 0.25,-0.125 0.125,-0.25 0.125,-0.375 m -33.5,-3.75 v -0.375 l -0.25,-0.25 -0.25,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.25 -0.125,0.375 0.125,0.25 0.125,0.25 0.25,0.125 0.25,0.125 0.25,-0.125 0.25,-0.125 0.25,-0.25 v -0.25 m 33.5,133.875 -0.125,-0.375 -0.125,-0.25 -0.25,-0.125 h -0.25 -0.375 l -0.25,0.125 -0.125,0.25 v 0.375 0.25 l 0.125,0.25 0.25,0.125 h 0.375 0.25 l 0.25,-0.125 0.125,-0.25 0.125,-0.25 m -33.5,3.75 v -0.25 l -0.25,-0.25 -0.25,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.125,0.25 -0.125,0.25 0.125,0.375 0.125,0.25 0.25,0.125 h 0.25 0.25 l 0.25,-0.125 0.25,-0.25 v -0.375 m -260.875,0.25 v -0.25 l -0.125,-0.25 -0.25,-0.125 h -0.375 -0.25 l -0.25,0.125 -0.125,0.25 -0.125,0.25 0.125,0.375 0.125,0.25 0.25,0.125 h 0.25 0.375 l 0.25,-0.125 0.125,-0.25 v -0.375 m -56.25,-84.5 -0.125,-0.25 -0.125,-0.25 -0.25,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.25,0.25 v 0.25 0.25 l 0.25,0.25 0.25,0.25 h 0.25 0.25 l 0.25,-0.25 0.125,-0.25 0.125,-0.25 m 0,30.875 -0.125,-0.375 -0.125,-0.125 -0.25,-0.25 h -0.25 -0.25 l -0.25,0.25 -0.25,0.125 v 0.375 0.25 l 0.25,0.25 0.25,0.125 0.25,0.125 0.25,-0.125 0.25,-0.125 0.125,-0.25 0.125,-0.25 m 56.25,-84.625 v -0.25 l -0.125,-0.25 -0.25,-0.125 h -0.375 -0.25 l -0.25,0.125 -0.125,0.25 -0.125,0.25 0.125,0.375 0.125,0.25 0.25,0.125 h 0.25 0.375 l 0.25,-0.125 0.125,-0.25 v -0.375 m 8.125,-2.875 14.5,-0.75 14.375,-0.625 14.375,-0.375 14.375,-0.375 14.375,-0.125 14.375,-0.125 14.5,0.125 14.375,0.125 14.375,0.375 14.375,0.5 14.375,0.5 14.375,0.75 14.375,0.875 14.375,1 14.375,1.125 14.375,1.25 m 0,0.125 v 0 -0.125 m 0,135.625 -14.375,1.25 -14.375,1.125 -14.375,1 -14.375,0.875 -14.375,0.625 -14.375,0.625 -14.375,0.5 -14.375,0.375 -14.375,0.125 -14.5,0.125 -14.375,-0.125 -14.375,-0.125 -14.375,-0.375 -14.375,-0.375 -14.375,-0.625 -14.5,-0.75 m 230.25,-4.25 v 0 -0.125 m 119.5,-15.75 v 0.125 l -0.125,0.125 v 0.125 h -0.125 l -0.125,0.125 h -0.125 m -0.125,-0.625 v 0.125 0.125 0.125 0.125 h 0.125 v 0.125 m -0.125,-0.625 h 0.125 0.125 0.125 0.125 v 0.125 h 0.125 m -0.5,0.5 -5.375,0.875 -5.375,0.875 -5.25,0.875 -5.375,0.875 -5.375,0.75 -5.375,0.875 -5.375,0.75 -5.25,0.75 m 0,-0.25 v 0.125 0.125 m 43.25,-111 1.125,5.75 1,5.75 0.75,5.75 0.75,5.75 0.5,5.75 0.5,5.75 0.25,5.875 c 0.37977,8.50784 0.35316,15.00227 0,23.125 l -0.25,5.875 -0.5,5.75 -0.5,5.75 -0.75,5.75 -0.75,5.75 -1,5.75 -1.125,5.75 m -0.625,-103.75 h 0.125 0.125 0.125 0.125 v -0.125 h 0.125 m -0.5,-0.5 h 0.125 l 0.125,0.125 h 0.125 v 0.125 l 0.125,0.125 v 0.125 m -0.625,0.125 v -0.125 -0.125 -0.125 -0.125 h 0.125 v -0.125 m -42.75,-6.625 5.25,0.75 5.375,0.75 5.375,0.875 5.375,0.75 5.375,0.875 5.25,0.875 5.375,0.875 5.375,0.875 m -42.75,-6.625 v 0 0.125 m -182.625,-12.5 v 0.25 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.375,-0.125 -0.25,-0.125 -0.125,-0.25 -0.125,-0.25 0.125,-0.375 0.125,-0.25 0.25,-0.125 0.375,-0.125 0.25,0.125 0.25,0.125 0.25,0.25 v 0.375 m -32.375,143.375 -0.125,0.25 -0.125,0.25 -0.25,0.25 h -0.375 -0.25 l -0.25,-0.25 -0.125,-0.25 -0.125,-0.25 0.125,-0.375 0.125,-0.25 0.25,-0.125 0.25,-0.125 0.375,0.125 0.25,0.125 0.125,0.25 0.125,0.375 m -64.875,-142.75 v 0.25 l -0.25,0.375 -0.25,0.125 h -0.25 -0.375 l -0.25,-0.125 -0.125,-0.375 -0.125,-0.25 0.125,-0.25 0.125,-0.375 0.25,-0.125 h 0.375 0.25 l 0.25,0.125 0.25,0.375 v 0.25 m 194.375,4.625 v 0.25 l -0.25,0.25 -0.25,0.25 h -0.25 -0.375 l -0.25,-0.25 -0.125,-0.25 -0.125,-0.25 0.125,-0.375 0.125,-0.25 0.25,-0.125 0.375,-0.125 0.25,0.125 0.25,0.125 0.25,0.25 v 0.375 m 94.25,11 0.125,-0.25 0.125,-0.25 0.25,-0.25 h 0.375 0.25 l 0.25,0.25 0.25,0.25 v 0.25 0.375 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.375,-0.125 -0.25,-0.125 -0.125,-0.25 -0.125,-0.375 m -191.375,126.625 v 0.375 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.375,-0.125 -0.25,-0.125 -0.125,-0.25 -0.125,-0.375 0.125,-0.25 0.125,-0.25 0.25,-0.25 h 0.375 0.25 l 0.25,0.25 0.25,0.25 v 0.25 m -32.375,-143.375 -0.125,0.375 -0.125,0.25 -0.25,0.125 h -0.375 -0.25 l -0.25,-0.125 -0.125,-0.25 -0.125,-0.375 0.125,-0.25 0.125,-0.25 0.25,-0.25 h 0.25 0.375 l 0.25,0.25 0.125,0.25 0.125,0.25 m -32.5,0.25 v 0.25 l -0.125,0.25 -0.375,0.25 h -0.25 -0.25 l -0.25,-0.25 -0.25,-0.25 v -0.25 -0.375 l 0.25,-0.25 0.25,-0.125 h 0.25 0.25 l 0.375,0.125 0.125,0.25 v 0.375 m 256.25,126.875 0.125,-0.375 0.125,-0.25 0.25,-0.125 0.375,-0.125 0.25,0.125 0.25,0.125 0.25,0.25 v 0.375 0.25 l -0.25,0.25 -0.25,0.25 h -0.25 -0.375 l -0.25,-0.25 -0.125,-0.25 -0.125,-0.25 m -159,15.25 v 0.25 l -0.25,0.25 -0.25,0.25 h -0.25 -0.25 l -0.375,-0.25 -0.125,-0.25 v -0.25 -0.375 l 0.125,-0.25 0.375,-0.125 0.25,-0.125 0.25,0.125 0.25,0.125 0.25,0.25 v 0.375 m 190.5,-120.625 0.125,-0.375 0.125,-0.25 0.25,-0.125 0.375,-0.125 0.25,0.125 0.25,0.125 0.25,0.25 v 0.375 0.25 l -0.25,0.25 -0.25,0.25 h -0.25 -0.375 l -0.25,-0.25 -0.125,-0.25 -0.125,-0.25 m -158.125,-18.5 v 0.375 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.25,-0.125 -0.375,-0.125 -0.125,-0.25 v -0.375 -0.25 l 0.125,-0.25 0.375,-0.25 h 0.25 0.25 l 0.25,0.25 0.25,0.25 v 0.25 m -162,139.5 v 0.25 l -0.25,0.25 -0.25,0.25 h -0.25 -0.375 l -0.25,-0.25 -0.125,-0.25 -0.125,-0.25 0.125,-0.375 0.125,-0.25 0.25,-0.125 h 0.375 0.25 l 0.25,0.125 0.25,0.25 v 0.375 m 129.625,-141.25 v 0.375 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.25,-0.125 -0.375,-0.125 -0.125,-0.25 v -0.375 -0.25 l 0.125,-0.25 0.375,-0.25 h 0.25 0.25 l 0.25,0.25 0.25,0.25 v 0.25 m 194.875,85.875 0.125,-0.375 0.125,-0.25 0.25,-0.125 0.375,-0.125 0.25,0.125 0.25,0.125 0.25,0.25 v 0.375 0.25 l -0.25,0.25 -0.25,0.25 h -0.25 -0.375 l -0.25,-0.25 -0.125,-0.25 -0.125,-0.25 m 0,-30.875 0.125,-0.25 0.125,-0.25 0.25,-0.25 h 0.375 0.25 l 0.25,0.25 0.25,0.25 v 0.25 0.375 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.375,-0.125 -0.25,-0.125 -0.125,-0.25 -0.125,-0.375 m -292.125,87.125 v 0.25 l -0.125,0.375 -0.375,0.125 h -0.25 -0.25 l -0.25,-0.125 -0.25,-0.375 v -0.25 -0.25 l 0.25,-0.25 0.25,-0.25 h 0.25 0.25 l 0.375,0.25 0.125,0.25 v 0.25 m 287.75,-21.5 0.125,-0.25 0.125,-0.25 0.25,-0.25 h 0.375 0.25 l 0.25,0.25 0.25,0.25 v 0.25 0.375 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.375,-0.125 -0.25,-0.125 -0.125,-0.25 -0.125,-0.375 m -125.75,16 v 0.375 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.375,-0.125 -0.25,-0.125 -0.125,-0.25 -0.125,-0.375 0.125,-0.25 0.125,-0.25 0.25,-0.25 h 0.375 0.25 l 0.25,0.25 0.25,0.25 v 0.25 m -32.375,2.5 v 0.25 l -0.25,0.25 -0.25,0.125 -0.25,0.125 -0.25,-0.125 -0.375,-0.125 -0.125,-0.25 v -0.25 -0.375 l 0.125,-0.25 0.375,-0.125 0.25,-0.125 0.25,0.125 0.25,0.125 0.25,0.25 v 0.375 m -188.25,-140.875 h -0.125 -0.125 -0.125 -0.125 -0.125 m 229.75,4.25 h 0.25 0.25 0.125 0.25 0.25 l 0.25,-0.125 h 0.125 l 0.25,-0.125 m 74.25,8.625 0.25,0.125 0.125,0.125 h 0.25 l 0.25,0.125 0.125,0.125 h 0.25 l 0.25,0.125 h 0.125 m 0,117.875 h -0.125 l -0.25,0.125 h -0.25 l -0.125,0.125 -0.25,0.125 h -0.25 l -0.125,0.125 -0.25,0.125 m -74.25,8.625 -0.25,-0.125 h -0.125 l -0.25,-0.125 h -0.25 -0.25 -0.125 -0.25 -0.25 m -229.75,4.25 h 0.125 l 0.125,-0.125 h 0.125 0.125 0.125 m -63.875,-114 v -0.25 l -0.125,-0.25 -0.25,-0.125 h -0.25 -0.125 l -0.25,0.125 -0.125,0.25 v 0.25 0.125 l 0.125,0.25 0.25,0.125 h 0.125 0.25 l 0.25,-0.125 0.125,-0.25 v -0.125 m -1.125,26.5 v -0.25 l -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 v -0.25 m 0,30.875 v -0.25 l -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.25 l 0.125,0.125 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.125 v -0.25 m 1.125,26.5 v -0.125 l -0.125,-0.25 -0.25,-0.125 h -0.25 -0.125 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.125 0.25 l 0.25,-0.125 0.125,-0.25 v -0.25 m 2.125,26.625 v -0.25 l -0.125,-0.125 -0.25,-0.125 -0.25,-0.125 -0.25,0.125 -0.125,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.125,0.125 0.25,0.125 0.25,-0.125 0.25,-0.125 0.125,-0.125 v -0.25 m 26.5,0.875 v -0.25 l -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 v -0.25 m 26.625,-0.375 v -0.125 l -0.125,-0.25 -0.25,-0.125 h -0.25 -0.125 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.125 0.25 l 0.25,-0.125 0.125,-0.25 v -0.25 m 34.625,1.75 v -0.25 l -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 v -0.25 m 32.5,0.875 -0.125,-0.25 -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.125,0.125 -0.125,0.125 -0.125,0.25 0.125,0.25 0.125,0.125 0.125,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 0.125,-0.25 m 32.375,0.25 v -0.25 l -0.125,-0.125 -0.25,-0.125 -0.25,-0.125 -0.125,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.125,0.125 0.25,-0.125 0.25,-0.125 0.125,-0.125 v -0.25 m 32.375,-0.5 v -0.125 l -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 v -0.25 m 32.5,-1 -0.125,-0.25 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.25 0.125,0.125 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.125 m 32.375,-1.75 -0.125,-0.25 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.25 0.125,0.125 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.125 m 32.25,-2.5 v -0.125 l -0.125,-0.25 -0.25,-0.125 h -0.125 -0.25 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.25 0.125 l 0.25,-0.125 0.125,-0.25 v -0.25 m 31.875,2.625 -0.125,-0.125 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.125 0.125,0.25 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.25 m 33.375,-3.75 v -0.25 l -0.125,-0.25 -0.25,-0.125 h -0.125 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.125 l 0.125,0.25 0.25,0.125 h 0.25 0.125 l 0.25,-0.125 0.125,-0.25 v -0.125 m 30.625,-9.875 v -0.25 l -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.25 l 0.125,0.125 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.125 v -0.25 m 31.5,-5 v -0.25 l -0.125,-0.125 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.25 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 v -0.25 m 4.5,-34.75 -0.125,-0.25 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.25 0.125,0.25 0.125,0.125 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.125 0.125,-0.25 m 0,-30.875 -0.125,-0.25 -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.125,0.125 -0.125,0.125 -0.125,0.25 0.125,0.25 0.125,0.125 0.125,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 0.125,-0.25 m -4.5,-34.75 v -0.25 l -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.125 l 0.125,0.25 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 v -0.125 m -31.5,-5 v -0.25 l -0.125,-0.125 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.25 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 v -0.25 m -30.625,-9.875 v -0.125 l -0.125,-0.25 -0.25,-0.125 h -0.125 -0.25 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.25 0.125 l 0.25,-0.125 0.125,-0.25 v -0.25 m -33.375,-3.75 -0.125,-0.25 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.25 0.125,0.125 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.125 m -31.875,2.625 v -0.25 l -0.125,-0.25 -0.25,-0.125 h -0.125 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.125 l 0.125,0.25 0.25,0.125 h 0.25 0.125 l 0.25,-0.125 0.125,-0.25 v -0.125 m -32.25,-2.5 -0.125,-0.125 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.125 0.125,0.25 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.25 m -32.375,-1.75 -0.125,-0.125 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.125 0.125,0.25 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.25 m -32.5,-1 v -0.25 l -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.125 l 0.125,0.25 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 v -0.125 m -32.375,-0.5 v -0.25 l -0.125,-0.125 -0.25,-0.125 -0.25,-0.125 -0.125,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.125,0.125 0.25,-0.125 0.25,-0.125 0.125,-0.125 v -0.25 m -32.375,0.25 -0.125,-0.25 -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.125,0.125 -0.125,0.125 -0.125,0.25 0.125,0.25 0.125,0.125 0.125,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 0.125,-0.25 m -32.5,0.875 v -0.25 l -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 v -0.25 m -34.625,1.625 v -0.125 l -0.125,-0.25 -0.25,-0.125 h -0.25 -0.125 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.125 0.25 l 0.25,-0.125 0.125,-0.25 v -0.25 m -26.625,-0.25 v -0.25 l -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 v -0.25 m -26.5,0.875 v -0.25 l -0.125,-0.125 -0.25,-0.125 -0.25,-0.125 -0.25,0.125 -0.125,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.125,0.125 0.25,0.125 0.25,-0.125 0.25,-0.125 0.125,-0.125 v -0.25 m 87.75,139.375 v -0.25 l -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 v -0.25 m 290.25,-126 v -0.25 l -0.125,-0.125 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.25 h 0.25 0.25 l 0.125,-0.25 0.125,-0.125 v -0.25 m 31.5,105.375 v -0.25 l -0.125,-0.125 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.25 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 v -0.25 m -412.75,-34.75 v -0.25 l -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.25 l 0.125,0.125 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.125 v -0.25 m 188.25,56 v -0.125 l -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 v -0.25 m 64.875,-140.125 -0.125,-0.125 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.125 0.125,0.25 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.25 m 159.625,18.5 v -0.25 l -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.125 l 0.125,0.25 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 v -0.125 m -356.375,-19 v -0.125 l -0.125,-0.25 -0.25,-0.125 h -0.25 -0.125 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.125 0.25 l 0.25,-0.125 0.125,-0.25 v -0.25 m 229,3 v -0.25 l -0.125,-0.25 -0.25,-0.125 h -0.125 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.125 l 0.125,0.25 0.25,0.125 h 0.25 0.125 l 0.25,-0.125 0.125,-0.25 v -0.125 m 95.875,121.375 v -0.25 l -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.25 l 0.125,0.125 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.125 v -0.25 m -351.5,14.25 v -0.25 l -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 v -0.25 m 320.875,-134.5 v -0.125 l -0.125,-0.25 -0.25,-0.125 h -0.125 -0.25 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.25 0.125 l 0.25,-0.125 0.125,-0.25 v -0.25 m -194.75,-6.875 v -0.25 l -0.125,-0.125 -0.25,-0.125 -0.25,-0.125 -0.125,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.125,0.125 0.25,-0.125 0.25,-0.125 0.125,-0.125 v -0.25 m -152.625,3.375 v -0.25 l -0.125,-0.125 -0.25,-0.125 -0.25,-0.125 -0.25,0.125 -0.125,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.125,0.125 0.25,0.125 0.25,-0.125 0.25,-0.125 0.125,-0.125 v -0.25 m 87.75,-2.25 v -0.25 l -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 v -0.25 m -91,55.375 v -0.25 l -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 v -0.25 m 155.875,87.375 v -0.25 l -0.125,-0.125 -0.25,-0.125 -0.25,-0.125 -0.125,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.125,0.125 0.25,-0.125 0.25,-0.125 0.125,-0.125 v -0.25 m 97.25,-3.25 -0.125,-0.25 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.25 0.125,0.125 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.125 m -252,-26.75 v -0.125 l -0.125,-0.25 -0.25,-0.125 h -0.25 -0.125 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.125 0.25 l 0.25,-0.125 0.125,-0.25 v -0.25 m 316.125,26.875 -0.125,-0.125 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.125 0.125,0.25 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.25 m -316.125,-110.75 v -0.25 l -0.125,-0.25 -0.25,-0.125 h -0.25 -0.125 l -0.25,0.125 -0.125,0.25 v 0.25 0.125 l 0.125,0.25 0.25,0.125 h 0.125 0.25 l 0.25,-0.125 0.125,-0.25 v -0.125 m 122.375,113.625 -0.125,-0.25 -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.125,0.125 -0.125,0.125 -0.125,0.25 0.125,0.25 0.125,0.125 0.125,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 0.125,-0.25 m -93.75,-141.125 v -0.25 l -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.25,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.25,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 v -0.25 m 287.5,0.625 -0.125,-0.25 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.25 0.125,0.125 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.125 m -193.75,-2.875 -0.125,-0.25 -0.125,-0.125 -0.125,-0.125 -0.25,-0.125 -0.25,0.125 -0.125,0.125 -0.125,0.125 -0.125,0.25 0.125,0.25 0.125,0.125 0.125,0.125 0.25,0.125 0.25,-0.125 0.125,-0.125 0.125,-0.125 0.125,-0.25 m 97.25,1.25 -0.125,-0.125 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.125 0.125,0.25 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.25 m -32.5,-1 v -0.25 l -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.125 l 0.125,0.25 0.25,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 v -0.125 m -131.875,140.5 v -0.125 l -0.125,-0.25 -0.25,-0.125 h -0.25 -0.125 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.125 0.25 l 0.25,-0.125 0.125,-0.25 v -0.25 m 229,-2.875 v -0.125 l -0.125,-0.25 -0.25,-0.125 h -0.125 -0.25 l -0.25,0.125 -0.125,0.25 v 0.125 0.25 l 0.125,0.25 0.25,0.125 h 0.25 0.125 l 0.25,-0.125 0.125,-0.25 v -0.25 m -64.625,4.25 -0.125,-0.25 -0.125,-0.25 -0.125,-0.125 h -0.25 -0.25 l -0.125,0.125 -0.125,0.25 -0.125,0.25 0.125,0.125 0.125,0.25 0.125,0.125 h 0.25 0.25 l 0.125,-0.125 0.125,-0.25 0.125,-0.125 m 129.875,-5.375 v -0.25 l -0.125,-0.25 -0.25,-0.125 h -0.125 -0.25 l -0.25,0.125 -0.125,0.25 v 0.25 0.125 l 0.125,0.25 0.25,0.125 h 0.25 0.125 l 0.25,-0.125 0.125,-0.25 v -0.125 m -347.375,3.5 v -0.25 l -0.125,-0.125 -0.25,-0.125 -0.25,-0.125 -0.25,0.125 -0.125,0.125 -0.125,0.125 v 0.25 0.25 l 0.125,0.125 0.125,0.125 0.25,0.125 0.25,-0.125 0.25,-0.125 0.125,-0.125 v -0.25 m -12.5,-54.5 v 0 -0.25 -0.25 -0.5 -0.5 -0.75 -0.75 -0.875 -1 -1 -1.125 -1.25 -1.25 -1.25 -1.375 -1.25 -1.375 -1.375 -1.25 -1.25 -1.25 -1.25 -1.125 -1 -1 -0.875 -0.75 -0.75 -0.5 -0.5 -0.25 -0.25 m 77.875,85.625 21.875,1 25.75,0.75 25.75,0.375 25.875,-0.125 25.75,-0.5 25.375,-0.875 25.375,-1.25 25.25,-1.75 24.25,-2 m 0,-134.375 -24.75,-2.125 -25.75,-1.625 -25.75,-1.375 -25.75,-0.875 -25.875,-0.5 h -25.375 l -25.25,0.375 -25.375,0.75 -21.375,1 m 303.375,13.375 20.375,3 21.375,3.375 m 0,103.625 -21.375,3.375 -20.375,3"
2043
- inkscape:connector-curvature="0"
2044
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
2045
- </g>
2046
- <path
2047
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#de861e;fill-opacity:1;fill-rule:evenodd;stroke:#dd871d;stroke-width:2.21971;stroke-opacity:1;marker:none;enable-background:accumulate"
2048
- d="m 93.964966,1052.7792 c -5.426605,-0.072 -5.495356,-0.08 -5.226176,-0.5829 0.626138,-1.17 -0.394906,-2.5109 -1.911883,-2.5109 -1.335326,0 -2.01995,0.8318 -1.800032,2.187 l 0.139186,0.8577 -3.962755,-0.1409 c -7.745099,-0.2754 -20.552132,-0.631 -22.722909,-0.631 H 56.27625 l 0.0879,-1.1052 c 0.07109,-0.8938 -0.02219,-1.2078 -0.487741,-1.6415 -1.319901,-1.2297 -3.258323,-0.2781 -3.258323,1.5995 v 0.9669 l -2.462247,-0.1571 c -1.354235,-0.086 -4.450984,-0.236 -6.881664,-0.3325 l -4.419417,-0.1754 4.04061,-0.6774 c 11.306026,-1.8952 26.057394,-5.5271 35.734145,-8.7979 13.199912,-4.4617 20.681284,-7.6673 30.458187,-13.0507 19.33298,-10.6451 32.3405,-24.5929 36.30739,-38.93175 0.9612,-3.4744 1.24537,-5.7098 1.24537,-9.7965 0,-7.8629 -1.79325,-13.8003 -6.52468,-21.6032 -4.53459,-7.4782 -12.82482,-15.5865 -22.72166,-22.2229 -6.0269,-4.0415 -16.71993,-9.6554 -24.748739,-12.9934 -4.971963,-2.067 -18.949278,-6.7623 -24.748738,-8.3135 -7.870953,-2.1053 -18.618696,-4.48427 -25.127544,-5.5618 l -3.409265,-0.56439 2.020305,-0.16421 c 1.111168,-0.0903 4.094275,-0.23922 6.629126,-0.3309 l 4.608821,-0.16669 v 1.02877 c 0,1.80367 1.729986,2.64762 3.14523,1.53442 0.59445,-0.46759 0.676066,-0.69071 0.600448,-1.6415 -0.07643,-0.96093 -0.02329,-1.10106 0.419382,-1.10603 0.278792,-0.003 5.677614,-0.17103 11.99738,-0.37312 6.319767,-0.20209 12.591352,-0.36999 13.936855,-0.37312 l 2.44637,-0.006 -0.140424,0.86533 c -0.114001,0.7025 -0.01813,0.98763 0.509473,1.51523 1.371826,1.37183 3.340123,0.56141 3.289886,-1.35456 l -0.02495,-0.95196 3.036764,-0.16329 c 1.670209,-0.0898 8.118242,-0.16329 14.32895,-0.16329 h 11.29219 l -0.0259,0.98898 c -0.0351,1.33845 0.61839,2.04148 1.89758,2.04148 1.36233,0 2.06025,-0.7372 1.93558,-2.04452 l -0.094,-0.98594 6.32013,4.3e-4 c 3.47607,2.3e-4 9.95668,0.0748 14.40135,0.16569 l 8.08122,0.16526 -0.0857,1.06093 c -0.0733,0.90735 0.0139,1.13926 0.60227,1.60208 1.4344,1.12829 3.14523,0.28052 3.14523,-1.55857 v -0.93074 l 2.46225,0.004 c 1.35423,0.002 7.00793,0.1705 12.56377,0.37406 5.55584,0.20356 10.98625,0.37225 12.06758,0.37485 1.86487,0.005 1.9526,0.0299 1.70463,0.49322 -0.70768,1.32232 0.28042,2.8919 1.79349,2.8489 1.15505,-0.033 1.85694,-0.83339 1.82424,-2.08057 l -0.0265,-1.0107 1.92488,0.14001 c 1.05868,0.077 6.07282,0.35926 11.14252,0.62723 5.06971,0.26797 10.66517,0.56458 12.43436,0.65914 l 3.21672,0.17192 -0.14542,0.90943 c -0.11176,0.69894 -0.0191,1.07004 0.40028,1.60314 1.20183,1.5279 3.77044,0.447 3.46153,-1.45663 l -0.1236,-0.76163 6.98245,0.43042 c 6.85018,0.42226 18.54279,1.33634 20.70529,1.61864 1.00936,0.1318 1.08378,0.1915 0.9422,0.7556 -0.23788,0.9478 0.0715,1.7445 0.85798,2.209 0.99187,0.5859 1.58591,0.5314 2.39651,-0.2198 0.55528,-0.5146 0.67431,-0.8158 0.59406,-1.5033 l -0.10037,-0.8597 2.03134,0.1467 c 1.11723,0.081 2.11695,0.2234 2.22159,0.3172 0.10463,0.094 -0.69086,0.6611 -1.76777,1.2606 -12.01177,6.6876 -22.15891,16.8796 -29.18478,29.3138 -1.84671,3.2683 -4.71931,9.8648 -4.71931,10.8373 0,1.0171 0.2747,1.0398 11.7527,0.9715 l 11.06314,-0.066 1.66197,-2.7779 c 4.37217,-7.3079 10.17119,-13.2993 17.44352,-18.0221 4.3582,-2.8303 11.935,-5.9005 17.42513,-7.0608 7.20274,-1.5223 15.09935,-1.5241 22.19391,0 8.1239,1.7396 16.69279,5.9602 23.19065,11.4227 9.59468,8.0657 15.8923,18.9428 18.29311,31.5953 0.50149,2.6429 0.5754,3.8378 0.5779,9.3439 0.003,7.2864 -0.32643,9.581 -2.30441,16.0361 -3.36562,10.98375 -11.01058,21.37935 -20.40864,27.75155 -6.71342,4.552 -12.35346,6.907 -21.03314,8.7826 -3.01609,0.6517 -3.58521,0.6933 -9.3977,0.6879 -5.69086,-0.01 -6.4708,-0.061 -9.72272,-0.6945 -6.70483,-1.3061 -14.37605,-4.3851 -19.55753,-7.8497 -6.8895,-4.6068 -13.40838,-11.5114 -16.94238,-17.945 -0.45778,-0.8334 -1.06078,-1.7709 -1.34,-2.0834 l -0.50766,-0.5682 -10.75199,0.01 c -11.39689,0.01 -11.63586,0.033 -11.63586,1.1855 0,0.9041 2.65514,7.0285 4.54065,10.4736 3.45406,6.3109 7.7012,11.937 13.13279,17.3966 4.86022,4.8854 9.2515,8.2377 15.595,11.9051 l 2.8376,1.6406 -1.32237,0.1588 c -0.72731,0.087 -1.78567,0.1598 -2.35192,0.1611 -1.00485,0 -1.02683,-0.016 -0.91628,-0.7696 0.22978,-1.5656 -1.7646,-2.6009 -3.14616,-1.6333 -0.65551,0.4592 -0.91941,1.4127 -0.61358,2.2171 l 0.2299,0.6047 -5.34339,0.4406 c -6.64081,0.5476 -22.01536,1.6622 -22.97494,1.6655 -0.60542,0 -0.68671,-0.076 -0.54528,-0.5212 0.47942,-1.5105 -1.48132,-3.0046 -2.80493,-2.1373 -0.8989,0.589 -1.26722,1.4954 -0.91857,2.2606 0.26865,0.5896 0.23872,0.6144 -0.90648,0.7491 -2.15878,0.254 -23.9727,1.416 -26.62121,1.4181 -1.1877,0 -1.19255,0 -1.04374,-0.7465 0.12136,-0.6068 0.005,-0.892 -0.61824,-1.5152 -0.9412,-0.9412 -1.76867,-0.978 -2.69475,-0.1197 -0.59349,0.55 -0.67967,0.7939 -0.56987,1.6125 l 0.12937,0.9645 -3.31822,0.1561 c -1.82502,0.086 -6.89794,0.2677 -11.27316,0.4041 -4.37523,0.1364 -9.37678,0.3124 -11.11456,0.3912 l -3.15961,0.1433 0.089,-1.1193 c 0.0748,-0.94 -0.005,-1.1848 -0.49526,-1.5285 -0.81604,-0.5716 -2.03134,-0.5146 -2.72062,0.1275 -0.44747,0.4169 -0.55593,0.7494 -0.48547,1.4881 l 0.0907,0.9513 -6.82262,0.147 c -3.75244,0.081 -10.23714,0.204 -14.41046,0.2736 l -7.58785,0.1264 0.10268,-0.8795 c 0.16077,-1.3771 -0.47841,-2.1395 -1.78972,-2.1347 -0.58711,0 -1.20241,0.09 -1.36734,0.1945 -0.52971,0.3368 -0.84333,1.5187 -0.58401,2.2007 l 0.24003,0.6314 -9.14825,-0.058 c -5.03155,-0.032 -11.622784,-0.091 -14.647203,-0.1312 v 0 z M 292.20561,996.89935 c 2.10753,-0.4864 3.94101,-1.5651 5.7629,-3.3905 2.46204,-2.4669 3.72872,-4.7226 4.64064,-8.2642 l 0.73655,-2.8606 13.84783,-0.1263 c 14.50415,-0.1322 14.63769,-0.1432 15.23103,-1.2519 0.2886,-0.5392 0.34085,-1.7747 0.10144,-2.3986 -0.42919,-1.1184 -0.821,-1.1477 -15.35194,-1.1477 h -13.76613 l -0.26588,-1.0733 c -1.72993,-6.9835 -4.31416,-10.7576 -8.84497,-12.9176 -1.54275,-0.7355 -1.81739,-0.7826 -4.5654,-0.7826 h -2.9239 l -2.15735,1.0694 c -2.33586,1.1578 -4.58202,3.2514 -5.89861,5.498 -0.89227,1.5225 -2.02619,4.5972 -2.2528,6.1085 -0.1001,0.6675 -0.28842,1.4126 -0.41849,1.6556 -0.22412,0.4188 -3.08665,0.442 -54.66213,0.442 -59.66833,0 -55.49486,-0.1106 -56.15722,1.4885 -0.46869,1.1315 0.0117,2.349 1.13883,2.8865 0.82181,0.3919 4.91528,0.4232 55.28391,0.4232 51.5885,0 54.40305,0.023 54.52559,0.442 0.0711,0.243 0.24381,1.0871 0.38387,1.8757 0.80536,4.5343 4.03928,9.3526 7.47591,11.1385 2.42344,1.2594 5.72887,1.741 8.13632,1.1854 z"
2049
- id="path5960"
2050
- inkscape:connector-curvature="0" />
2051
- <path
2052
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#de861e;fill-opacity:1;fill-rule:evenodd;stroke:#dd871d;stroke-width:1.12112;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2053
- d="m 49.437445,1015.654 c -6.322712,-5.8281 -10.347724,-22.25309 -9.631564,-39.30385 0.677699,-16.13505 4.328689,-28.17462 10.021652,-33.04758 3.689221,-3.15784 7.540195,-1.97908 11.13031,3.40691 7.29417,10.94292 9.395467,37.09178 4.437921,55.22612 -1.940003,7.0964 -5.619617,13.5355 -8.622181,15.0881 -2.654344,1.3727 -4.79453,0.9731 -7.336138,-1.3697 z"
2054
- id="path5966"
2055
- inkscape:connector-curvature="0" />
2056
- <path
2057
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:#b4b4b4;stroke-width:1.12112;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2058
- d="m -29.758991,1052.0553 c -3.578791,-0.2281 -6.569328,-0.4792 -6.645639,-0.558 -0.07631,-0.079 -0.383128,-2.6434 -0.681816,-5.6992 -1.977495,-20.2306 -3.56745,-53.18069 -2.595147,-53.78161 0.318024,-0.19655 4.826614,-0.50988 10.019089,-0.6963 14.35693,-0.51542 32.5010094,-2.28063 40.250516,-3.91591 4.332221,-0.91418 10.513344,-2.99532 12.74816,-4.29221 3.541762,-2.05534 3.530135,-4.90447 -0.02849,-6.98217 -6.648854,-3.88189 -24.9566131,-6.77054 -49.84278,-7.86432 -6.805903,-0.29913 -12.680874,-0.64949 -13.055492,-0.77859 -0.726205,-0.25025 -0.61198,-6.77005 0.46856,-26.74471 0.462699,-8.55338 2.397653,-32.65803 2.641101,-32.90148 0.06144,-0.0614 5.335907,-0.38411 11.721032,-0.71703 45.811459,-2.38866 94.474144,6.17585 126.550657,22.2726 23.70348,11.89496 37.92383,26.26643 41.95635,42.40221 3.6912,14.77003 -3.64688,31.07752 -19.99064,44.42542 -17.71651,14.469 -47.288783,26.2432 -79.833428,31.7857 -9.855988,1.6785 -20.201511,3.1009 -22.375495,3.0764 -1.169792,-0.013 -1.237745,-0.088 -0.479206,-0.5302 1.340331,-0.7807 1.124754,-2.9019 -0.363852,-3.5802 -0.954064,-0.4347 -1.429563,-0.4176 -2.020305,0.073 -0.919179,0.7629 -1.012658,2.6008 -0.174898,3.4385 0.328724,0.3288 0.499187,0.6903 0.378807,0.8035 -0.120375,0.1132 -4.678845,0.4579 -10.1299325,0.766 -11.0916103,0.627 -28.6714255,0.6265 -38.5171555,0 v -1e-4 z m 24.6896384,-2.9742 c 0,-1.4613 -0.2018365,-1.7963 -1.164222,-1.9328 -2.150881,-0.3049 -3.4601104,1.9047 -1.9960523,3.3688 0.3452888,0.3452 1.197605,0.5612 1.894036,0.4798 1.0822264,-0.1265 1.2662383,-0.4049 1.2662383,-1.9158 z m -26.3065514,0.1814 c 0.72972,-1.9016 -1.003598,-3.6508 -2.897492,-2.9241 -1.104109,0.4237 -1.57049,2.1247 -0.82788,3.0195 0.834695,1.0058 3.327319,0.9419 3.725372,-0.095 z m -2.518873,-26.2289 c 1.440448,-1.4404 0.595707,-3.2469 -1.518323,-3.2469 -1.680178,0 -2.506462,1.2724 -1.813681,2.7929 0.649521,1.4255 2.155311,1.6307 3.332004,0.454 z m 92.265333,-5.1921 c 7.82953,-4.9654 12.999249,-26.65766 11.091939,-46.54211 -1.521234,-15.85947 -5.676153,-26.59128 -11.722133,-30.27728 -6.037899,-3.68108 -12.458691,2.09181 -16.287275,14.64378 -2.105002,6.90121 -2.966359,13.82856 -3.011528,24.2198 -0.04308,9.91493 0.457352,14.38793 2.473894,22.11161 2.116305,8.1057 6.419403,15.3402 9.976155,16.7723 2.279783,0.9179 5.124727,0.5649 7.478948,-0.9281 z m -93.082431,-22.65993 c 0.133694,-1.38327 -0.03583,-1.67256 -1.142981,-1.95043 -1.470027,-0.36896 -2.802069,0.47135 -2.802069,1.76766 0,1.27 1.098162,2.12129 2.521834,1.95492 1.018298,-0.119 1.296976,-0.466 1.423216,-1.77215 z m -0.156978,-30.95325 c 0,-1.46129 -0.201836,-1.79638 -1.164222,-1.9328 -2.150881,-0.30491 -3.46011,1.90466 -1.996052,3.36872 0.345289,0.34529 1.197605,0.56121 1.894036,0.47983 1.082226,-0.12647 1.266238,-0.40488 1.266238,-1.91575 z m 0.844114,-25.07955 c 0.508009,-0.45975 0.923653,-1.12536 0.923653,-1.47916 0,-0.84927 -1.407501,-2.23064 -2.272843,-2.23064 -0.884338,0 -2.272843,1.38851 -2.272843,2.27285 0,0.82379 1.366198,2.27284 2.142881,2.27284 0.305524,0 0.971142,-0.37615 1.479152,-0.83589 z m 2.438882,-26.9433 c 1.191477,-2.2263 -1.927076,-4.21092 -3.547947,-2.25789 -0.49027,0.59074 -0.507374,1.06624 -0.07267,2.02031 0.711257,1.56103 2.837651,1.70057 3.620619,0.23758 z m 53.027564,-0.24598 c 0.36412,-0.43874 0.487646,-1.29164 0.297056,-2.05102 -0.277878,-1.10714 -0.567166,-1.27667 -1.950438,-1.14298 -1.253468,0.12115 -1.661838,0.4227 -1.789208,1.3212 -0.315147,2.2231 2.073449,3.52251 3.44259,1.8728 z m -26.3540824,-1.63073 c 0.1336947,-1.38327 -0.03583,-1.67256 -1.1429805,-1.95044 -1.4700275,-0.36895 -2.8020687,0.47136 -2.8020687,1.76767 0,1.27 1.0981621,2.12129 2.5218337,1.95491 1.0182979,-0.119 1.2969757,-0.466 1.4232155,-1.77214 z"
2059
- id="path5968"
2060
- inkscape:connector-curvature="0" />
2061
- <path
2062
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:#b4b4b4;stroke-width:1.12112;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2063
- d="m 278.83757,1051.8399 c -13.04683,-2.4671 -21.68292,-5.9797 -31.32641,-12.7413 -5.23421,-3.67 -12.93422,-11.3048 -16.90441,-16.7612 -2.87582,-3.9524 -8.64432,-14.3906 -8.64432,-15.6421 0,-0.372 3.0146,-0.5408 9.47018,-0.5304 l 9.47018,0.015 2.52352,3.8991 c 3.43791,5.312 9.56125,11.58 14.82387,15.1741 5.34704,3.6517 7.17998,4.5927 12.81492,6.5788 14.44281,5.0904 31.84665,3.8354 44.73787,-3.2261 9.74633,-5.3388 18.47614,-14.2602 23.20967,-23.719 10.84253,-21.66636 7.01632,-46.74113 -9.7215,-63.70909 -7.89212,-8.00064 -16.1322,-12.73941 -26.88192,-15.45947 -3.76314,-0.95221 -5.72995,-1.11581 -13.01911,-1.08293 -7.65949,0.0346 -9.13147,0.18541 -13.63705,1.39764 -13.02065,3.5032 -24.95294,11.985 -32.06171,22.79035 -1.09654,1.66675 -2.2862,3.43673 -2.64368,3.93329 -0.59133,0.8214 -1.50716,0.88974 -10.15302,0.75762 l -9.50306,-0.14523 2.95218,-5.80837 c 7.7754,-15.29797 18.25564,-25.78053 33.25598,-33.26334 10.10657,-5.04158 20.18741,-7.37506 31.79036,-7.35871 9.55351,0.0135 14.99921,0.87695 23.55317,3.73464 11.11766,3.71418 19.50367,8.93403 27.98489,17.41914 14.20433,14.21084 21.64742,31.94422 21.63271,51.54061 -0.0117,15.64992 -4.79008,30.38525 -13.83983,42.67895 -11.31985,15.3775 -27.04197,25.4176 -45.49527,29.0531 -6.00571,1.1832 -19.27588,1.4415 -24.38821,0.4747 v 0 z m 3.48148,-3.2638 c 0,-1.4613 -0.20184,-1.7964 -1.16422,-1.9328 -2.15089,-0.305 -3.46012,1.9046 -1.99606,3.3687 0.34529,0.3453 1.19761,0.5612 1.89404,0.4798 1.08222,-0.1265 1.26624,-0.4049 1.26624,-1.9157 z m 33.84458,-3.0377 c 0.46987,-0.7603 -0.18548,-2.3827 -1.105,-2.7355 -2.35482,-0.9036 -4.12325,1.7778 -2.19973,3.3354 1.12506,0.911 2.52837,0.6562 3.30473,-0.5999 z M 315.90662,915.741 c 1.19147,-2.22629 -1.92708,-4.21092 -3.54795,-2.25789 -0.49027,0.59074 -0.50737,1.06624 -0.0727,2.02031 0.71126,1.56104 2.83765,1.70057 3.62062,0.23758 z m -33.58757,-4.74318 c 0,-1.80225 -1.35603,-2.83456 -2.65165,-2.01863 -1.98151,1.24786 -0.99736,3.90299 1.34572,3.63062 1.06836,-0.12419 1.30593,-0.41743 1.30593,-1.61199 z"
2064
- id="path5970"
2065
- inkscape:connector-curvature="0" />
2066
- <path
2067
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:#b4b4b4;stroke-width:1.12112;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2068
- d="m 285.05014,994.36993 c -3.12227,-1.64544 -5.75008,-5.31529 -6.91606,-9.65861 l -0.9565,-3.56294 -54.82171,-0.12851 c -47.74012,-0.1119 -54.90204,-0.22531 -55.44365,-0.87791 -0.49674,-0.59854 -0.4834,-0.80172 0.0663,-1.00929 0.37853,-0.14295 25.21018,-0.3161 55.18145,-0.38479 47.83202,-0.10962 54.5436,-0.21749 54.90542,-0.8825 0.22673,-0.41669 0.754,-2.01214 1.17174,-3.54544 0.97297,-3.57137 3.28545,-7.05189 5.87985,-8.84982 6.19456,-4.29283 14.37614,-0.12236 16.88546,8.60719 0.47911,1.66675 1.04169,3.37138 1.25016,3.78807 0.32068,0.64094 2.50963,0.77735 14.21389,0.88574 7.60915,0.0705 14.14453,0.24363 14.52305,0.38479 0.54729,0.20409 0.5618,0.40899 0.0709,1.00052 -0.51182,0.61671 -3.04463,0.76678 -14.81658,0.87791 l -14.19923,0.13404 -0.36456,2.13662 c -0.81705,4.78867 -3.92218,9.42687 -7.55002,11.27765 -2.6603,1.35719 -6.28487,1.28026 -9.07987,-0.19272 v 0 z"
2069
- id="path5972"
2070
- inkscape:connector-curvature="0" />
2071
- <path
2072
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:#b4b4b4;stroke-width:0.396376;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2073
- d="m 338.99691,1036.1529 c 3.46688,-3.1024 6.67807,-6.4102 8.82242,-9.088 1.87623,-2.343 5.06737,-6.9759 6.61212,-9.5995 3.37452,-5.7313 6.94604,-14.7117 8.29085,-20.84692 1.08511,-4.95043 1.89961,-12.17043 1.89961,-16.83879 0,-4.98027 -0.83407,-12.32927 -1.96999,-17.35764 -1.34576,-5.95723 -4.88778,-14.86416 -8.04184,-20.22237 -4.20162,-7.13784 -8.94317,-13.00381 -14.51391,-17.95578 -1.06505,-0.94675 -1.84829,-1.75075 -1.74053,-1.78667 0.17317,-0.0577 3.208,0.35202 4.52536,0.61099 0.46289,0.091 0.47577,0.11864 0.22321,0.47921 -0.45793,0.65379 -0.34323,1.68402 0.25396,2.28121 0.43455,0.43455 0.66819,0.52198 1.3949,0.52198 0.63942,0 0.98039,-0.10012 1.27467,-0.37429 0.53338,-0.49691 0.77687,-1.18061 0.64092,-1.79959 -0.0855,-0.38927 -0.0457,-0.50469 0.17399,-0.50469 0.88519,0 27.94369,4.21205 28.10689,4.37525 0.049,0.049 0.002,0.089 -0.10545,0.089 -0.29628,0 -0.62237,1.18323 -0.49097,1.78151 0.26882,1.22392 2.01596,1.86575 2.97183,1.09172 l 0.42119,-0.34105 0.58004,3.15355 c 1.23003,6.68736 2.78366,18.83318 3.16726,24.7607 0.0572,0.88393 0.14852,2.13664 0.20291,2.78381 l 0.0989,1.17667 -0.54978,-0.0807 c -1.02119,-0.14988 -1.75172,0.10363 -2.14846,0.74557 -0.53176,0.8604 -0.47428,1.58042 0.18625,2.33271 0.58877,0.67057 1.26415,0.81364 2.18614,0.4631 l 0.44217,-0.16811 0.1344,1.73061 c 0.18776,2.41768 0.19798,21.27674 0.0129,23.84089 -0.13388,1.855 -0.18788,2.09588 -0.44643,1.99133 -0.16177,-0.0654 -0.59323,-0.16148 -0.95879,-0.21347 -0.58344,-0.083 -0.74163,-0.0175 -1.29464,0.53545 -0.829,0.82901 -0.86987,1.73113 -0.11917,2.63036 0.47191,0.56527 0.58822,0.61187 1.52709,0.61187 h 1.01627 l -0.0916,0.63138 c -0.0504,0.34726 -0.17936,1.79656 -0.28666,3.2207 -0.49532,6.5747 -1.86735,17.6757 -2.972,24.0463 l -0.65517,3.7784 -0.49519,-0.3661 c -0.85484,-0.632 -2.47047,-0.1251 -2.85911,0.8971 -0.19667,0.5173 -0.0652,1.592 0.23982,1.9611 0.10342,0.1252 0.1565,0.2514 0.11795,0.2806 -0.0812,0.061 -19.6711,3.1205 -24.17724,3.7754 -1.66964,0.2427 -3.24237,0.4782 -3.49495,0.5234 -0.44343,0.079 -0.4588,0.052 -0.44643,-0.7956 0.0173,-1.1846 -0.56121,-1.7958 -1.80165,-1.9036 -0.70807,-0.062 -0.9548,-6e-4 -1.36632,0.3381 -0.62433,0.5138 -0.82949,1.6389 -0.44091,2.4178 l 0.2602,0.5216 -2.2729,0.3101 c -1.2501,0.1705 -2.46252,0.3555 -2.69426,0.4111 -0.30604,0.073 -0.12813,-0.1614 0.65008,-0.8577 z"
2074
- id="path5976"
2075
- inkscape:connector-curvature="0" />
2076
- <path
2077
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#de861e;fill-opacity:1;fill-rule:evenodd;stroke:#de861e;stroke-width:0.198188;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2078
- d="m -44.757928,979.65008 v -13.57143 h 1.428572 1.428571 v 0.97484 c 0,0.53617 0.02496,1.03988 0.05546,1.11938 0.08998,0.23449 0.526758,0.40578 1.034697,0.40578 0.371922,0 0.497255,0.0372 0.581857,0.17266 0.150707,0.24133 0.320041,0.25376 4.979769,0.36568 15.854883,0.38083 30.7804794,1.53546 39.7726179,3.07679 4.1332643,0.70847 9.2392741,1.76176 11.4347691,2.3588 1.792622,0.48748 4.430626,1.41358 5.355113,1.87997 2.073561,1.04606 3.198494,1.88698 3.428904,2.5632 0.406058,1.19171 -0.0078,1.827 -2.101662,3.22611 -1.400729,0.93597 -6.810364,2.74669 -11.237956,3.76158 -2.8327771,0.64933 -11.01581457,1.91143 -14.776786,2.27909 -12.619539,1.23362 -20.370279,1.74845 -29.598214,1.96601 -7.523495,0.17739 -7.004776,0.15315 -7.207542,0.33672 -0.09492,0.0859 -0.294956,0.15625 -0.444513,0.15625 -0.36799,0 -1.027775,0.23856 -1.16491,0.4212 -0.07323,0.0975 -0.111607,0.48046 -0.111607,1.11372 v 0.96508 h -1.428571 -1.428572 v -13.57143 z"
2079
- id="path5982"
2080
- inkscape:connector-curvature="0" />
2081
- <path
2082
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#de861e;fill-opacity:1;fill-rule:evenodd;stroke:#de861e;stroke-width:0.198188;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2083
- d="m -46.064732,992.44026 c -0.823643,-1.45985 -1.030159,-2.13934 -1.567121,-5.15625 l -0.381395,-2.14286 -8.85e-4,-5.44643 -8.84e-4,-5.44642 0.383044,-2.14286 c 0.210676,-1.17857 0.467726,-2.46429 0.571223,-2.85714 0.205638,-0.78057 0.913921,-2.36834 1.214783,-2.72322 l 0.189241,-0.22321 0.003,13.37053 c 0.0016,7.3538 -0.01366,13.37054 -0.03399,13.37054 -0.02033,0 -0.189972,-0.27121 -0.376989,-0.60268 z"
2084
- id="path5984"
2085
- inkscape:connector-curvature="0" />
2086
- </g>
2087
- <text
2088
- id="text4577"
2089
- y="76.501038"
2090
- x="371.69467"
2091
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2092
- xml:space="preserve"><tspan
2093
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:1;font-family:Calibri;-inkscape-font-specification:Calibri"
2094
- y="76.501038"
2095
- x="371.69467"
2096
- id="tspan4579"
2097
- sodipodi:role="line">Tangerine pump laser</tspan></text>
2098
- <rect
2099
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.556863;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2100
- id="rect6036"
2101
- width="89.537254"
2102
- height="7.9840522"
2103
- x="567.50177"
2104
- y="115.50574" />
2105
- <rect
2106
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2107
- id="rect6036-1"
2108
- width="357.07297"
2109
- height="7.9840522"
2110
- x="118.54621"
2111
- y="-657.03906"
2112
- transform="rotate(90)" />
2113
- <rect
2114
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2115
- id="rect6036-1-2"
2116
- width="435.89948"
2117
- height="7.9840522"
2118
- x="213.15552"
2119
- y="467.63513" />
2120
- <rect
2121
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2122
- id="rect6036-1-2-2"
2123
- width="39.185455"
2124
- height="2.0376239"
2125
- x="129.62332"
2126
- y="469.96558" />
2127
- <rect
2128
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592;marker:none;enable-background:accumulate"
2129
- id="rect6036-1-2-2-6"
2130
- width="68.812111"
2131
- height="2"
2132
- x="131.28592"
2133
- y="427.60449" />
2134
- <rect
2135
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2136
- id="rect6036-1-2-2-8"
2137
- width="45.711216"
2138
- height="2"
2139
- x="425.19186"
2140
- y="-131.62329"
2141
- transform="rotate(90)" />
2142
- <path
2143
- sodipodi:type="star"
2144
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:1.98191;marker:none;enable-background:accumulate"
2145
- id="path6234"
2146
- sodipodi:sides="3"
2147
- sodipodi:cx="191.67645"
2148
- sodipodi:cy="507.88995"
2149
- sodipodi:r1="27.526657"
2150
- sodipodi:r2="13.763328"
2151
- sodipodi:arg1="-1.5707963"
2152
- sodipodi:arg2="-0.52359878"
2153
- inkscape:flatsided="true"
2154
- inkscape:rounded="0"
2155
- inkscape:randomized="0"
2156
- d="m 191.67645,480.3633 23.83879,41.28998 -47.67757,0 z"
2157
- transform="matrix(-0.04183704,0,0,1,204.70189,-121.62823)"
2158
- inkscape:transform-center-y="-6.8816642" />
2159
- <rect
2160
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2161
- id="rect6036-1-2-2-8-3"
2162
- width="27.791786"
2163
- height="2"
2164
- x="400.02505"
2165
- y="-197.68536"
2166
- transform="rotate(90)" />
2167
- <path
2168
- sodipodi:nodetypes="cccc"
2169
- inkscape:connector-curvature="0"
2170
- id="path6234-3"
2171
- d="m 196.81993,479.65257 15.45321,42.54608 -46.33685,-0.38001 z"
2172
- inkscape:transform-center-y="-10.26981"
2173
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff9a00;fill-opacity:0.556863;fill-rule:evenodd;stroke:none;stroke-width:1.98191;marker:none;enable-background:accumulate"
2174
- transform="matrix(-0.27495253,0,0,-1.4923547,250.57214,1075.6075)" />
2175
- <path
2176
- inkscape:transform-center-x="-10.67751"
2177
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff9b00;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:1.98191;marker:none;enable-background:accumulate"
2178
- inkscape:transform-center-y="68.679285"
2179
- d="m 217.8052,434.76274 -26.48399,-137.38397 13.09747,-0.55142 20.75174,137.42994 z"
2180
- id="path6234-3-7"
2181
- inkscape:connector-curvature="0"
2182
- sodipodi:nodetypes="ccccc" />
2183
- <path
2184
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff9b00;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:1.98191;marker:none;enable-background:accumulate"
2185
- inkscape:transform-center-x="60.796872"
2186
- d="m 401.75387,432.89719 -182.38616,2.35141 -0.74021,-6.8505 z"
2187
- id="path6234-3-7-9"
2188
- inkscape:connector-curvature="0"
2189
- sodipodi:nodetypes="cccc" />
2190
- <path
2191
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2192
- d="m 214.03127,467.63119 106.20873,10.91595 0.008,7.98009 -107.09262,-10.96016 z"
2193
- id="rect6036-1-2-8"
2194
- inkscape:connector-curvature="0"
2195
- sodipodi:nodetypes="ccccc" />
2196
- <path
2197
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2198
- d="m 320.24813,452.64069 v 25.92844 l -7.93986,-0.80812 -0.0442,-25.12032 z"
2199
- id="rect6036-1-8"
2200
- inkscape:connector-curvature="0"
2201
- sodipodi:nodetypes="ccccc" />
2202
- <rect
2203
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00bf07;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2204
- id="rect6036-1-8-0"
2205
- width="60.055115"
2206
- height="7.9840522"
2207
- x="392.58557"
2208
- y="-320.29028"
2209
- transform="rotate(90)" />
2210
- <rect
2211
- transform="scale(-1)"
2212
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00bf07;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2213
- id="rect6036-1-8-0-8"
2214
- width="44.087036"
2215
- height="7.9840522"
2216
- x="-364.37732"
2217
- y="-400.56961" />
2218
- <rect
2219
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00bf07;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2220
- id="rect6036-1-8-0-8-6"
2221
- width="42.881794"
2222
- height="7.9840522"
2223
- x="-435.46735"
2224
- y="364.37732"
2225
- transform="rotate(-90)" />
2226
- <rect
2227
- transform="scale(-1)"
2228
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00bf07;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2229
- id="rect6036-1-8-0-8-8"
2230
- width="120.86629"
2231
- height="7.9840522"
2232
- x="-364.37732"
2233
- y="-435.46735" />
2234
- <path
2235
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00bf07;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:1.98191;marker:none;enable-background:accumulate"
2236
- inkscape:transform-center-x="-63.113055"
2237
- d="m 401.66548,432.94008 -158.2151,3.27727 -0.276,-7.83487 z"
2238
- id="path6234-3-7-9-7"
2239
- inkscape:connector-curvature="0"
2240
- sodipodi:nodetypes="cccc" />
2241
- <rect
2242
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#9687f6;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2243
- id="rect6635"
2244
- width="6.75"
2245
- height="22.75"
2246
- x="399.24048"
2247
- y="421.41736" />
2248
- <path
2249
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.98191;marker:none;enable-background:accumulate"
2250
- inkscape:transform-center-x="72.305435"
2251
- d="m 401.70967,432.89366 217.76169,1.57369 -0.11967,-5.1005 z"
2252
- id="path6234-3-7-9-8"
2253
- inkscape:connector-curvature="0"
2254
- sodipodi:nodetypes="cccc" />
2255
- <path
2256
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00bf07;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:1.98191;marker:none;enable-background:accumulate"
2257
- inkscape:transform-center-x="56.841216"
2258
- d="m 401.66548,432.9557 142.49253,3.27727 0.24857,-7.83487 z"
2259
- id="path6234-3-7-9-7-8"
2260
- inkscape:connector-curvature="0"
2261
- sodipodi:nodetypes="cccc" />
2262
- <rect
2263
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2264
- id="rect6036-1-2-2-8-2"
2265
- width="127.85577"
2266
- height="4.4126239"
2267
- x="301.51108"
2268
- y="-619.35168"
2269
- transform="rotate(90)" />
2270
- <rect
2271
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2272
- id="rect6036-1-2-2-8-2-9"
2273
- width="59.973515"
2274
- height="4.4126239"
2275
- x="123.01946"
2276
- y="-677.99805"
2277
- transform="rotate(105.7272)"
2278
- inkscape:transform-center-x="10.332938"
2279
- inkscape:transform-center-y="28.945449" />
2280
- <rect
2281
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2282
- id="rect6036-1-2-2-8-2-9-9"
2283
- width="59.973515"
2284
- height="4.4126239"
2285
- x="125.91503"
2286
- y="-659.54871"
2287
- transform="rotate(105.7272)"
2288
- inkscape:transform-center-x="28.876474"
2289
- inkscape:transform-center-y="26.731783" />
2290
- <rect
2291
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2292
- id="rect6036-1-2-2-8-2-9-8"
2293
- width="59.973515"
2294
- height="4.4126239"
2295
- x="321.27368"
2296
- y="585.20172"
2297
- transform="matrix(0.03685251,0.99932072,0.99932072,-0.03685251,0,0)"
2298
- inkscape:transform-center-x="19.397851"
2299
- inkscape:transform-center-y="27.863315" />
2300
- <rect
2301
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2302
- id="rect6036-1-2-2-8-2-9-8-0"
2303
- width="29.923798"
2304
- height="4.412622"
2305
- x="346.11584"
2306
- y="567.91449"
2307
- transform="matrix(0.03428653,0.99941204,0.99946427,-0.03272874,0,0)"
2308
- inkscape:transform-center-x="37.156253"
2309
- inkscape:transform-center-y="40.695036" />
2310
- <rect
2311
- transform="scale(-1)"
2312
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2313
- id="rect6036-1-2-2-8-2-7"
2314
- width="56.035439"
2315
- height="4.4126239"
2316
- x="-584.00757"
2317
- y="-331.59341" />
2318
- <path
2319
- sodipodi:nodetypes="ccccc"
2320
- inkscape:connector-curvature="0"
2321
- id="rect6036-1-8-0-8-6-6"
2322
- d="m 536.43358,428.65974 -2.41735,-18.9029 h 12.6403 l -2.256,18.71648 z"
2323
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00bf07;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate" />
2324
- <rect
2325
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#9687f6;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2326
- id="rect6635-3"
2327
- width="6.75"
2328
- height="22.75"
2329
- x="449.36218"
2330
- y="-328.00278"
2331
- transform="rotate(90)" />
2332
- <rect
2333
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2334
- id="rect6975"
2335
- width="556"
2336
- height="237.01039"
2337
- x="83.877769"
2338
- y="262.35175" />
2339
- <rect
2340
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:0.9;stroke-miterlimit:4;stroke-dasharray:1.8, 1.8;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
2341
- id="rect7028"
2342
- width="200.99042"
2343
- height="28.991379"
2344
- x="268.34702"
2345
- y="417.38031" />
2346
- <circle
2347
- r="13.169864"
2348
- cy="610.68561"
2349
- cx="310.33148"
2350
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#a1a0a2;fill-opacity:1;stroke:#000000;stroke-width:0.535971;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
2351
- id="path7048"
2352
- transform="matrix(0.93288591,0,0,0.93288591,30.7271,-280.91439)" />
2353
- <path
2354
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00bf07;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:1.98191;marker:none;enable-background:accumulate"
2355
- inkscape:transform-center-x="-79.156914"
2356
- d="m 320.54316,288.77446 -87.7557,9.80515 0.004,-4.284 z"
2357
- id="path6234-3-7-9-7-1"
2358
- inkscape:connector-curvature="0"
2359
- sodipodi:nodetypes="cccc"
2360
- inkscape:transform-center-y="-8.277576" />
2361
- <rect
2362
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#9687f6;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2363
- id="rect6635-5"
2364
- width="6.75"
2365
- height="22.75"
2366
- x="342.16287"
2367
- y="246.46442"
2368
- transform="rotate(5.3064149)" />
2369
- <path
2370
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.98191;marker:none;enable-background:accumulate"
2371
- inkscape:transform-center-x="65.379212"
2372
- d="m 319.30572,288.79176 105.02704,1.44869 0.14179,-3.1005 z"
2373
- id="path6234-3-7-9-8-4"
2374
- inkscape:connector-curvature="0"
2375
- sodipodi:nodetypes="cccc" />
2376
- <path
2377
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00bf07;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:1.98191;marker:none;enable-background:accumulate"
2378
- inkscape:transform-center-x="71.18738"
2379
- d="m 319.31505,288.85156 104.76772,-7.02125 -0.15728,-4.82822 z"
2380
- id="path6234-3-7-9-7-8-2"
2381
- inkscape:connector-curvature="0"
2382
- sodipodi:nodetypes="cccc"
2383
- inkscape:transform-center-y="7.599309" />
2384
- <path
2385
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff9b00;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:1.98191;marker:none;enable-background:accumulate"
2386
- inkscape:transform-center-x="53.284706"
2387
- d="m 321.42704,288.89792 -88.7252,2.10141 0.2887,-4.2255 z"
2388
- id="path6234-3-7-9-9"
2389
- inkscape:connector-curvature="0"
2390
- sodipodi:nodetypes="cccc" />
2391
- <rect
2392
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2393
- id="rect6975-7"
2394
- width="199.97177"
2395
- height="52.809086"
2396
- x="226.65103"
2397
- y="265.89716" />
2398
- <path
2399
- sodipodi:nodetypes="csc"
2400
- inkscape:connector-curvature="0"
2401
- id="path7048-3"
2402
- d="m 335.6279,302.87133 c -5.9892,6.35559 -16.72724,9.08767 -24.42024,4.1397 -1.42613,-0.91725 -3.02685,-3.60099 -4.05145,-4.83102"
2403
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.2;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-end:url(#Arrow2Mend);enable-background:accumulate" />
2404
- <path
2405
- sodipodi:nodetypes="cc"
2406
- inkscape:connector-curvature="0"
2407
- id="path7048-3-6"
2408
- d="m 258.0197,295.47645 c -0.53886,-2.50088 -0.41039,-3.86209 0.37251,-7.53507"
2409
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:0.9;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-end:url(#Arrow2Mend);enable-background:accumulate" />
2410
- <g
2411
- ns0:preamble=""
2412
- ns0:text="$\\theta_\\textrm{PM}$"
2413
- word-spacing="normal"
2414
- letter-spacing="normal"
2415
- font-size-adjust="none"
2416
- font-stretch="normal"
2417
- font-weight="normal"
2418
- font-variant="normal"
2419
- font-style="normal"
2420
- stroke-miterlimit="10.433"
2421
- xml:space="preserve"
2422
- transform="matrix(1.894076,0,0,-1.8741315,-85.86959,1631.9224)"
2423
- id="content"
2424
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;stroke:#000000;stroke-width:2.65382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
2425
- id="path8487"
2426
- d="m 227.96,712.1 v 0.07 0.07 0.07 0.07 l -0.01,0.08 -0.01,0.08 -0.01,0.08 -0.01,0.08 -0.01,0.08 -0.02,0.09 -0.02,0.08 -0.02,0.09 -0.02,0.08 -0.02,0.09 -0.03,0.08 -0.03,0.08 -0.04,0.08 -0.03,0.08 -0.04,0.07 -0.05,0.07 -0.04,0.07 -0.05,0.06 -0.06,0.06 -0.05,0.06 -0.07,0.05 -0.03,0.02 -0.03,0.02 -0.04,0.02 -0.03,0.02 -0.04,0.02 -0.04,0.02 -0.04,0.01 -0.04,0.01 -0.04,0.01 -0.04,0.01 -0.04,0.01 h -0.05 -0.04 l -0.05,0.01 -0.01,-0.22 c 0.49,0 0.55,-0.64 0.55,-1.21 0,-0.49 -0.08,-1 -0.32,-1.98 h -2.08 c 0.17,0.64 0.37,1.43 0.76,2.14 0.27,0.49 0.64,1.05 1.09,1.05 l 0.01,0.22 c -1.39,0 -2.92,-2.81 -2.92,-5.1 0,-0.93 0.29,-2.04 1.2,-2.04 v 0.22 c -0.33,0 -0.54,0.29 -0.54,1.22 0,0.42 0.06,0.99 0.32,1.97 h 2.07 c -0.11,-0.46 -0.32,-1.31 -0.7,-2.02 -0.35,-0.68 -0.72,-1.17 -1.15,-1.17 v -0.22 c 1.4,0 2.91,2.86 2.91,5.09 z"
2427
- inkscape:connector-curvature="0"
2428
- style="fill:#000000;stroke-width:0" /><path
2429
- id="path8489"
2430
- d="m 229.0832,707.13319 -0.0174,0.15069 v 1.55328 c 0,0.19126 0.0116,0.23183 0.284,0.23183 h 0.51582 c 0.91574,0 0.91574,-0.60856 0.91574,-0.89255 0,-0.2724 0,-0.89256 -0.91574,-0.89256 h -0.79982 l 0.0174,-0.15069 h 0.97949 c 0.6897,0 1.31565,0.46367 1.31565,1.04325 0,0.56219 -0.57379,1.07222 -1.36202,1.07222 h -2.04012 v -0.17967 h 0.1391 c 0.44628,0 0.45787,-0.0638 0.45787,-0.2666 v -3.0428 c 0,-0.20865 -0.0116,-0.27241 -0.45787,-0.27241 h -0.1391 v -0.17967 c 0.20285,0.0174 0.63174,0.0174 0.85198,0.0174 0.21445,0 0.64913,0 0.85199,-0.0174 v 0.17967 h -0.1391 c -0.44628,0 -0.45787,0.0638 -0.45787,0.27241 z"
2431
- inkscape:connector-curvature="0"
2432
- style="fill:#000000;stroke-width:0" /><path
2433
- id="path8491"
2434
- d="m 232.41658,709.12116 v 0.006 0.006 l -0.006,0.006 v 0.006 l -0.006,0.0116 -0.006,0.0116 v 0.006 l -0.006,0.006 -0.006,0.0116 -0.006,0.006 v 0.006 l -0.006,0.006 -0.006,0.006 -0.006,0.006 v 0.006 h -0.006 l -0.006,0.006 h -0.006 l -0.006,0.006 h -0.006 l -0.006,0.006 h -0.006 -0.006 l -0.006,0.006 h -0.006 -0.0116 -0.006 -0.0116 -0.006 -0.0116 -0.0116 -0.006 -0.0116 -0.0116 -0.97949 v -0.17967 h 0.1391 c 0.44628,0 0.45787,-0.0638 0.45787,-0.2666 v -2.89211 c 0,-0.15069 0,-0.4231 -0.59697,-0.4231 v -0.17967 c 0.20285,0.006 0.48685,0.0174 0.67811,0.0174 0.19126,0 0.46946,-0.0116 0.67231,-0.0174 v 0.17967 c -0.59117,0 -0.59117,0.27241 -0.59117,0.4231 v 3.11235 h 0.006 l 1.39099,-3.58761 c 0.029,-0.0754 0.058,-0.12751 0.11592,-0.12751 0.0637,0 0.0811,0.0464 0.10432,0.11012 l 1.41998,3.65136 h 0.006 v -3.3094 c 0,-0.20865 -0.0116,-0.27241 -0.45787,-0.27241 h -0.1391 v -0.17967 c 0.21445,0.0174 0.60856,0.0174 0.8346,0.0174 0.22024,0 0.60856,0 0.82301,-0.0174 v 0.17967 h -0.1391 c -0.44628,0 -0.45787,0.0638 -0.45787,0.27241 v 3.0428 c 0,0.20285 0.0116,0.2666 0.45787,0.2666 h 0.1391 v 0.17967 h -0.9737 c -0.15069,0 -0.15069,-0.006 -0.19126,-0.11012 l -1.26349,-3.25145 z"
2435
- inkscape:connector-curvature="0"
2436
- style="fill:#000000;stroke-width:0" /></g>
2437
- <path
2438
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1"
2439
- d="m 268.75,417.61218 -42.25,-99"
2440
- id="path8244"
2441
- inkscape:connector-curvature="0" />
2442
- <path
2443
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1"
2444
- d="M 469.75,417.36218 426.96447,320.27639"
2445
- id="path8246"
2446
- inkscape:connector-curvature="0" />
2447
- <g
2448
- id="g10835"
2449
- transform="matrix(1.8390073,0,0,-2.3352998,-150.00437,1934.1277)"
2450
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;stroke:#000000;stroke-width:2.41272;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
2451
- <path
2452
- style="fill:#000000;stroke-width:0"
2453
- inkscape:connector-curvature="0"
2454
- d="m 228.18,709.02 v 0.07 0.07 0.07 l -0.01,0.07 -0.01,0.13 -0.02,0.12 -0.02,0.12 -0.03,0.12 -0.03,0.1 -0.03,0.11 -0.04,0.09 -0.04,0.09 -0.05,0.09 -0.05,0.08 -0.05,0.08 -0.05,0.07 -0.06,0.07 -0.06,0.06 -0.06,0.06 -0.07,0.05 -0.06,0.05 -0.07,0.04 -0.07,0.04 -0.07,0.04 -0.07,0.03 -0.07,0.03 -0.07,0.02 -0.07,0.02 -0.07,0.02 -0.08,0.01 -0.07,0.01 -0.07,0.01 -0.07,0.01 h -0.07 l -0.01,-0.22 c 0.99,0 0.99,-1.31 0.99,-2.08 0,-0.37 0,-0.95 0.02,-1.12 v 0 c -0.88,-0.77 -1.65,-0.87 -2.04,-0.87 -0.6,0 -0.9,0.44 -0.9,1.08 0,0.49 0.26,1.56 0.58,2.07 0.46,0.73 1,0.92 1.35,0.92 l 0.01,0.22 c -1.36,0 -2.68,-1.43 -2.68,-2.83 0,-0.93 0.6,-1.69 1.62,-1.69 0.62,0 1.34,0.23 2.1,0.84 0.13,-0.53 0.45,-0.84 0.9,-0.84 0.53,0 0.84,0.55 0.84,0.71 0,0.07 -0.06,0.1 -0.12,0.1 -0.07,0 -0.1,-0.03 -0.13,-0.1 -0.18,-0.48 -0.54,-0.48 -0.56,-0.48 -0.31,0 -0.31,0.77 -0.31,1.01 0,0.21 0,0.23 0.1,0.35 0.94,1.18 1.15,2.33 1.15,2.34 0,0.02 -0.01,0.1 -0.12,0.1 -0.1,0 -0.1,-0.03 -0.15,-0.21 -0.18,-0.63 -0.51,-1.38 -0.98,-1.97 z"
2455
- id="path9489" />
2456
- </g>
2457
- <rect
2458
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.40724;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2459
- id="rect6036-1-0"
2460
- width="32.072968"
2461
- height="7.9840522"
2462
- x="360.5126"
2463
- y="-320.29028"
2464
- transform="rotate(90)" />
2465
- <rect
2466
- y="343.86218"
2467
- x="309.5"
2468
- height="17"
2469
- width="14.290277"
2470
- id="rect10531"
2471
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.696833;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;enable-background:accumulate" />
2472
- <rect
2473
- y="392.83221"
2474
- x="533.26941"
2475
- height="17"
2476
- width="14.290277"
2477
- id="rect10531-3"
2478
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.696833;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;enable-background:accumulate" />
2479
- <rect
2480
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#9f9f9f;fill-opacity:0.710407;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2481
- id="rect6635-3-8-1"
2482
- width="6.75"
2483
- height="22.75"
2484
- x="687.04242"
2485
- y="-88.220772"
2486
- transform="rotate(45)" />
2487
- <g
2488
- transform="rotate(180,309.80989,328.48775)"
2489
- id="g10608">
2490
- <rect
2491
- transform="scale(-1)"
2492
- y="-547.82141"
2493
- x="21.270294"
2494
- height="22.75"
2495
- width="22.25"
2496
- id="rect6635-3-8"
2497
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c15cec;fill-opacity:0.719457;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate" />
2498
- <path
2499
- style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.4, 0.6;stroke-dashoffset:0;stroke-opacity:1"
2500
- d="m 702.875,207.36218 v 22.625"
2501
- id="path10606"
2502
- inkscape:connector-curvature="0"
2503
- transform="rotate(180,335.17735,377.63858)" />
2504
- <path
2505
- style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
2506
- d="m -21.196922,536.68224 h -22.625"
2507
- id="path10606-1"
2508
- inkscape:connector-curvature="0" />
2509
- </g>
2510
- <g
2511
- transform="rotate(180,155.98285,466.50692)"
2512
- id="g10608-2">
2513
- <rect
2514
- transform="scale(-1)"
2515
- y="-547.82141"
2516
- x="21.270294"
2517
- height="22.75"
2518
- width="22.25"
2519
- id="rect6635-3-8-5"
2520
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#54319a;fill-opacity:0.760181;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate" />
2521
- <path
2522
- style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
2523
- d="m 702.875,207.36218 v 22.625"
2524
- id="path10606-0"
2525
- inkscape:connector-curvature="0"
2526
- transform="rotate(180,335.17735,377.63858)" />
2527
- </g>
2528
- <rect
2529
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c15cec;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2530
- id="rect6635-3-8-0-9"
2531
- width="6.75"
2532
- height="22.75"
2533
- x="795.25745"
2534
- y="117.49256"
2535
- transform="matrix(0.70710678,0.70710678,0.70710678,-0.70710678,0,0)" />
2536
- <rect
2537
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c15cec;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2538
- id="rect6635-3-8-0-4"
2539
- width="6.75"
2540
- height="18.153807"
2541
- x="575.95648"
2542
- y="-62.606369"
2543
- transform="matrix(0.62390138,0.78150308,0.78150308,-0.62390138,0,0)" />
2544
- <rect
2545
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c2368f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2546
- id="rect6635-3-8-0-8"
2547
- width="6.75"
2548
- height="22.75"
2549
- x="498.75742"
2550
- y="-68.007439"
2551
- transform="matrix(0.70710678,0.70710678,0.70710678,-0.70710678,0,0)" />
2552
- <rect
2553
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5a28a4;fill-opacity:0.892911;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2554
- id="rect6635-3-8-0-3"
2555
- width="6.75"
2556
- height="22.75"
2557
- x="13.507439"
2558
- y="-551.75745"
2559
- transform="rotate(135)" />
2560
- <rect
2561
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5a28a4;fill-opacity:0.892911;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2562
- id="rect6635-3-8-0-5"
2563
- width="6.75"
2564
- height="22.75"
2565
- x="-571.50745"
2566
- y="-54.507439"
2567
- transform="rotate(-135)" />
2568
- <path
2569
- sodipodi:nodetypes="cccczc"
2570
- inkscape:connector-curvature="0"
2571
- id="rect6635-3-8-0-1"
2572
- d="m 244.41004,443.25098 h -6.75 v -22.75 h 6.75 c 0,0 -1.06066,4.51749 -1.06066,11.375 0,6.85751 1.06066,11.375 1.06066,11.375 z"
2573
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5a28a4;fill-opacity:0.892911;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate" />
2574
- <rect
2575
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c15cec;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2576
- id="rect6635-3-8-0-2"
2577
- width="6.75"
2578
- height="22.75"
2579
- x="239.95198"
2580
- y="-436.95932"
2581
- transform="rotate(135)" />
2582
- <rect
2583
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c15cec;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2584
- id="rect6635-3-8-0-0"
2585
- width="6.75"
2586
- height="22.75"
2587
- x="-395.96191"
2588
- y="197.62614"
2589
- transform="matrix(-0.70710678,-0.70710678,-0.70710678,0.70710678,0,0)" />
2590
- <rect
2591
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c15cec;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2592
- id="rect6635-3-8-0-16"
2593
- width="6.75"
2594
- height="22.75"
2595
- x="441.40646"
2596
- y="-174.24226"
2597
- transform="matrix(0.70710678,0.70710678,0.70710678,-0.70710678,0,0)" />
2598
- <path
2599
- sodipodi:nodetypes="cczccc"
2600
- inkscape:connector-curvature="0"
2601
- id="rect6635-3-8-0-40"
2602
- d="m 209.16318,292.47244 0.34194,6.51952 c 0,0 -5.46377,-0.47974 -11.5743,-0.1018 -6.11055,0.37792 -11.11421,1.567 -11.11421,1.567 l -0.36935,-6.73989 z"
2603
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#9f9f9f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate" />
2604
- <rect
2605
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#9f9f9f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2606
- id="rect6635-3-8-0-6"
2607
- width="6.75"
2608
- height="22.75"
2609
- x="148.00743"
2610
- y="-473.25742"
2611
- transform="rotate(135)" />
2612
- <rect
2613
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#1029e5;fill-opacity:0.823529;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
2614
- id="rect6635-3-8-0-18"
2615
- width="8.6945438"
2616
- height="36.008251"
2617
- x="280.35605"
2618
- y="-650.69861"
2619
- transform="rotate(97.185608)" />
2620
- <rect
2621
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#9f9f9f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2622
- id="rect6635-3-8-0-41"
2623
- width="6.75"
2624
- height="22.75"
2625
- x="-184.24255"
2626
- y="-647.50745"
2627
- transform="rotate(135)" />
2628
- <rect
2629
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2630
- id="rect6036-1-2-2-8-2-98"
2631
- width="77.522507"
2632
- height="4.4126239"
2633
- x="249.19702"
2634
- y="-460.57755"
2635
- transform="rotate(90)" />
2636
- <rect
2637
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#1029e5;fill-opacity:0.823529;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2638
- id="rect6635-3-8-0-18-3"
2639
- width="8.6945438"
2640
- height="36.008251"
2641
- x="237.42847"
2642
- y="-648.66077"
2643
- transform="rotate(95.094167)" />
2644
- <text
2645
- id="text13308"
2646
- y="461.22092"
2647
- x="269.40768"
2648
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2649
- xml:space="preserve"><tspan
2650
- style="font-size:20px;line-height:1"
2651
- y="461.22092"
2652
- x="269.40768"
2653
- id="tspan13310"
2654
- sodipodi:role="line">SHG</tspan></text>
2655
- <text
2656
- id="text13312"
2657
- y="460.51382"
2658
- x="383.25186"
2659
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2660
- xml:space="preserve"><tspan
2661
- style="font-size:20px;line-height:1"
2662
- y="460.51382"
2663
- x="383.25186"
2664
- id="tspan13314"
2665
- sodipodi:role="line">NOPA</tspan></text>
2666
- <text
2667
- id="text13312-8"
2668
- y="279.81281"
2669
- x="336.96832"
2670
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2671
- xml:space="preserve"><tspan
2672
- style="font-size:20px;line-height:1"
2673
- y="279.81281"
2674
- x="336.96832"
2675
- id="tspan13314-9"
2676
- sodipodi:role="line">NOPA</tspan></text>
2677
- <text
2678
- id="text13308-0-5"
2679
- y="309.01871"
2680
- x="561.31311"
2681
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2682
- xml:space="preserve"><tspan
2683
- style="font-size:20.8066px;line-height:1"
2684
- y="309.01871"
2685
- x="561.31311"
2686
- id="tspan13310-7-3"
2687
- sodipodi:role="line">M<tspan
2688
- id="tspan13428"
2689
- style="font-size:13.5245px;baseline-shift:sub">4</tspan></tspan></text>
2690
- <text
2691
- id="text13308-0-5-2"
2692
- y="286.62775"
2693
- x="590.60962"
2694
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2695
- xml:space="preserve"><tspan
2696
- style="font-size:20.8066px;line-height:1"
2697
- y="286.62775"
2698
- x="590.60962"
2699
- id="tspan13310-7-3-4"
2700
- sodipodi:role="line">M<tspan
2701
- id="tspan13428-6"
2702
- style="font-size:13.5245px;baseline-shift:sub">3</tspan></tspan></text>
2703
- <text
2704
- id="text13308-0-5-1"
2705
- y="381.29196"
2706
- x="572.44543"
2707
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2708
- xml:space="preserve"><tspan
2709
- style="font-size:20.8066px;line-height:1"
2710
- y="381.29196"
2711
- x="572.44543"
2712
- id="tspan13310-7-3-8"
2713
- sodipodi:role="line">M<tspan
2714
- id="tspan13428-2"
2715
- style="font-size:13.5245px;baseline-shift:sub">3</tspan></tspan></text>
2716
- <text
2717
- id="text13308-0-5-11"
2718
- y="492.52075"
2719
- x="216.29805"
2720
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2721
- xml:space="preserve"><tspan
2722
- style="font-size:20.8066px;line-height:1"
2723
- y="492.52075"
2724
- x="216.29805"
2725
- id="tspan13310-7-3-9"
2726
- sodipodi:role="line">BS</tspan></text>
2727
- <text
2728
- id="text13308-0-5-6"
2729
- y="285.33847"
2730
- x="189.42799"
2731
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2732
- xml:space="preserve"><tspan
2733
- style="font-size:20.8066px;line-height:1"
2734
- y="285.33847"
2735
- x="189.42799"
2736
- id="tspan13310-7-3-2"
2737
- sodipodi:role="line">M<tspan
2738
- id="tspan13428-9"
2739
- style="font-size:13.5245px;baseline-shift:sub">1</tspan></tspan></text>
2740
- <text
2741
- id="text13308-0-5-5"
2742
- y="414.73901"
2743
- x="231.8544"
2744
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2745
- xml:space="preserve"><tspan
2746
- style="font-size:20.8066px;line-height:1"
2747
- y="414.73901"
2748
- x="231.8544"
2749
- id="tspan13310-7-3-20"
2750
- sodipodi:role="line">M<tspan
2751
- id="tspan13428-0"
2752
- style="font-size:13.5245px;baseline-shift:sub">2</tspan></tspan></text>
2753
- <text
2754
- id="text13312-8-3"
2755
- y="147.38284"
2756
- x="606.02246"
2757
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2758
- xml:space="preserve"><tspan
2759
- style="font-size:20px;line-height:1"
2760
- y="147.38284"
2761
- x="606.02246"
2762
- id="tspan13314-9-9"
2763
- sodipodi:role="line">Per.</tspan></text>
2764
- <text
2765
- id="text13312-8-3-1"
2766
- y="380.47235"
2767
- x="330.91016"
2768
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2769
- xml:space="preserve"><tspan
2770
- style="font-size:20px;line-height:1"
2771
- y="380.47235"
2772
- x="330.91016"
2773
- id="tspan13314-9-9-8"
2774
- sodipodi:role="line">Per.</tspan></text>
2775
- <text
2776
- id="text13312-8-3-19"
2777
- y="404.51401"
2778
- x="482.23096"
2779
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2780
- xml:space="preserve"><tspan
2781
- style="font-size:20px;line-height:1"
2782
- y="404.51401"
2783
- x="482.23096"
2784
- id="tspan13314-9-9-5"
2785
- sodipodi:role="line">Dump</tspan></text>
2786
- <text
2787
- id="text13312-8-3-19-5"
2788
- y="337.7756"
2789
- x="291.75943"
2790
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2791
- xml:space="preserve"><tspan
2792
- style="font-size:20px;line-height:1"
2793
- y="337.7756"
2794
- x="291.75943"
2795
- id="tspan13314-9-9-5-2"
2796
- sodipodi:role="line">Dump</tspan></text>
2797
- <rect
2798
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#9687f6;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2799
- id="rect6635-3-5"
2800
- width="6.75"
2801
- height="22.75"
2802
- x="356.02255"
2803
- y="-201.58673"
2804
- transform="rotate(90)" />
2805
- <g
2806
- inkscape:export-ydpi="50"
2807
- inkscape:export-xdpi="50"
2808
- inkscape:export-filename="C:\Users\sweber\Labo\biblio\articles rédigé\2016\NOPA high repetition rate\figures\polar_ver.png"
2809
- transform="matrix(0.6249286,0,0,0.6249286,167.01543,55.65678)"
2810
- id="g13627">
2811
- <circle
2812
- r="9.1923885"
2813
- cy="78.676147"
2814
- cx="661.14484"
2815
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
2816
- id="path13607" />
2817
- <circle
2818
- r="9.1923885"
2819
- cy="78.676147"
2820
- cx="661.14484"
2821
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;stroke:none;stroke-width:17.5943;marker:none;enable-background:accumulate"
2822
- id="path13607-8"
2823
- transform="matrix(0.26569684,0,0,0.26569684,485.48074,57.772144)" />
2824
- </g>
2825
- <path
2826
- sodipodi:nodetypes="czczc"
2827
- inkscape:connector-curvature="0"
2828
- id="rect6635-3-8-0-16-4"
2829
- d="m 185.62121,399.27014 c 0,0 4.48871,1.625 11.375,1.625 6.88629,0 11.375,-1.625 11.375,-1.625 0,0 -4.67729,-1.625 -11.375,-1.625 -6.69771,0 -11.375,1.625 -11.375,1.625 z"
2830
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#1b1bcc;fill-opacity:0.642534;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate" />
2831
- <rect
2832
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient13797);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2833
- id="rect6635-3-8-0-0-3"
2834
- width="6.75"
2835
- height="22.75"
2836
- x="-191.25"
2837
- y="458.98718"
2838
- transform="scale(-1,1)" />
2839
- <text
2840
- id="text13308-0-5-11-9"
2841
- y="496.35471"
2842
- x="175.16574"
2843
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2844
- xml:space="preserve"><tspan
2845
- style="font-size:20.8066px;line-height:1"
2846
- y="496.35471"
2847
- x="175.16574"
2848
- id="tspan13310-7-3-9-7"
2849
- sodipodi:role="line">ND<tspan
2850
- id="tspan13428-7-6"
2851
- style="font-size:13.5245px;baseline-shift:sub" /></tspan></text>
2852
- <rect
2853
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff0000;fill-opacity:0.556561;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2854
- id="rect6036-1-2-2-7"
2855
- width="44.965637"
2856
- height="4.4126239"
2857
- x="168.80156"
2858
- y="468.77808" />
2859
- <g
2860
- transform="translate(-0.05096699,-1.2113286)"
2861
- id="g13872">
2862
- <g
2863
- id="g13844"
2864
- transform="matrix(0.41836735,0,0,0.41836735,93.797299,246.78407)">
2865
- <path
2866
- inkscape:connector-curvature="0"
2867
- id="path13840"
2868
- d="m 178.25,542.36218 c 0,23.5 0,23.5 0,23.5"
2869
- style="fill:none;stroke:#000000;stroke-width:2.39024px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
2870
- <path
2871
- inkscape:connector-curvature="0"
2872
- id="path13842"
2873
- d="M 171.5,542.36218 H 185"
2874
- style="fill:none;stroke:#000000;stroke-width:2.39024px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
2875
- </g>
2876
- <g
2877
- id="g13844-9"
2878
- transform="matrix(0.41836735,0,0,-0.41836735,93.797299,697.59733)">
2879
- <path
2880
- inkscape:connector-curvature="0"
2881
- id="path13840-3"
2882
- d="m 178.25,542.36218 c 0,23.5 0,23.5 0,23.5"
2883
- style="fill:none;stroke:#000000;stroke-width:2.39024px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
2884
- <path
2885
- inkscape:connector-curvature="0"
2886
- id="path13842-5"
2887
- d="M 171.5,542.36218 H 185"
2888
- style="fill:none;stroke:#000000;stroke-width:2.39024px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
2889
- </g>
2890
- </g>
2891
- <rect
2892
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c15cec;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2893
- id="rect6635-3-8-0-7"
2894
- width="6.75"
2895
- height="22.75"
2896
- x="-233.01767"
2897
- y="-475.3905"
2898
- transform="rotate(-177.9018)" />
2899
- <text
2900
- id="text13312-8-3-1-6"
2901
- y="456.83777"
2902
- x="160.2207"
2903
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2904
- xml:space="preserve"><tspan
2905
- style="font-size:20px;line-height:1"
2906
- y="456.83777"
2907
- x="160.2207"
2908
- id="tspan13314-9-9-8-6"
2909
- sodipodi:role="line">Iris</tspan></text>
2910
- <text
2911
- id="text13308-5"
2912
- y="364.65524"
2913
- x="148.00296"
2914
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2915
- xml:space="preserve"><tspan
2916
- style="font-size:20px;line-height:1"
2917
- y="364.65524"
2918
- x="148.00296"
2919
- id="tspan13310-8"
2920
- sodipodi:role="line">WL</tspan></text>
2921
- <rect
2922
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#9f9f9f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2923
- id="rect6635-3-8-0-9-0"
2924
- width="6.75"
2925
- height="22.75"
2926
- x="740.11359"
2927
- y="120.84872"
2928
- transform="matrix(0.70710678,0.70710678,0.70710678,-0.70710678,0,0)" />
2929
- <path
2930
- sodipodi:nodetypes="czczc"
2931
- inkscape:connector-curvature="0"
2932
- id="rect6635-3-8-0-16-4-1"
2933
- d="m 594.625,420.61218 c 0,0 -1.625,4.48871 -1.625,11.375 0,6.88629 1.625,11.375 1.625,11.375 0,0 1.625,-4.67729 1.625,-11.375 0,-6.69771 -1.625,-11.375 -1.625,-11.375 z"
2934
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#1b1bcc;fill-opacity:0.642534;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate" />
2935
- <text
2936
- id="text13308-0-5-5-1"
2937
- y="394.36304"
2938
- x="280.73376"
2939
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2940
- xml:space="preserve"><tspan
2941
- style="font-size:20.8066px;line-height:1"
2942
- y="394.36304"
2943
- x="280.73376"
2944
- id="tspan13310-7-3-20-7"
2945
- sodipodi:role="line">Dic</tspan></text>
2946
- <rect
2947
- y="266.76654"
2948
- x="475.52936"
2949
- height="122.32948"
2950
- width="160.86679"
2951
- id="rect4724"
2952
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:4, 2;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
2953
- <rect
2954
- inkscape:transform-center-y="-1.0148544"
2955
- inkscape:transform-center-x="4.9584392"
2956
- transform="rotate(-168.43297)"
2957
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2958
- id="rect6036-1-2-2-8-2-7-9"
2959
- width="10.122488"
2960
- height="4.4126239"
2961
- x="-584.12482"
2962
- y="-218.82576" />
2963
- <rect
2964
- transform="scale(-1)"
2965
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.592092;marker:none;enable-background:accumulate"
2966
- id="rect6036-1-2-2-8-2-7-4"
2967
- width="63.536591"
2968
- height="4.4126239"
2969
- x="-519.50897"
2970
- y="-329.53925" />
2971
- <rect
2972
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#9f9f9f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6;stroke-opacity:1;marker:none;enable-background:accumulate"
2973
- id="rect6635-3-8-0-43"
2974
- width="6.75"
2975
- height="22.75"
2976
- x="-94.945999"
2977
- y="-566.05408"
2978
- transform="rotate(135)" />
2979
- <path
2980
- sodipodi:nodetypes="cccc"
2981
- inkscape:connector-curvature="0"
2982
- id="rect4726"
2983
- d="m 518.99215,317.2363 4.94974,42.77996 h -4.94974 z"
2984
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#7777f9;fill-opacity:0.643137;stroke:#000000;stroke-width:0.6;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
2985
- <path
2986
- sodipodi:nodetypes="cccc"
2987
- inkscape:connector-curvature="0"
2988
- id="rect4726-0"
2989
- d="m 529.59873,347.46511 -4.94974,-42.77996 h 4.94974 z"
2990
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#7777f9;fill-opacity:0.643137;stroke:#000000;stroke-width:0.6;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
2991
- <text
2992
- id="text13312-8-3-19-3"
2993
- y="375.25229"
2994
- x="512.5293"
2995
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
2996
- xml:space="preserve"><tspan
2997
- style="font-size:20px;line-height:1"
2998
- y="375.25229"
2999
- x="512.5293"
3000
- id="tspan13314-9-9-5-22"
3001
- sodipodi:role="line">W<tspan
3002
- id="tspan4888"
3003
- style="font-size:65.0009%;baseline-shift:sub">1</tspan></tspan></text>
3004
- <text
3005
- id="text13312-8-3-19-3-1"
3006
- y="302.58044"
3007
- x="513.74017"
3008
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
3009
- xml:space="preserve"><tspan
3010
- style="font-size:20px;line-height:1"
3011
- y="302.58044"
3012
- x="513.74017"
3013
- id="tspan13314-9-9-5-22-6"
3014
- sodipodi:role="line">W<tspan
3015
- id="tspan4888-8"
3016
- style="font-size:65.0009%;baseline-shift:sub">1</tspan></tspan></text>
3017
- <text
3018
- id="text13312-8-3-19-57"
3019
- y="282.62128"
3020
- x="479.14273"
3021
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
3022
- xml:space="preserve"><tspan
3023
- style="font-size:20px;line-height:1"
3024
- y="282.62128"
3025
- x="479.14273"
3026
- id="tspan13314-9-9-5-6"
3027
- sodipodi:role="line">Compressor</tspan></text>
3028
- <text
3029
- id="text13308-0-5-5-17"
3030
- y="399.8898"
3031
- x="163.63179"
3032
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
3033
- xml:space="preserve"><tspan
3034
- style="font-size:20.8066px;line-height:1"
3035
- y="399.8898"
3036
- x="163.63179"
3037
- id="tspan13310-7-3-20-4"
3038
- sodipodi:role="line">L<tspan
3039
- id="tspan13428-0-0"
3040
- style="font-size:13.5245px;baseline-shift:sub">1</tspan></tspan></text>
3041
- <text
3042
- id="text13308-0-5-5-17-9"
3043
- y="454.07666"
3044
- x="585.31299"
3045
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
3046
- xml:space="preserve"><tspan
3047
- style="font-size:20.8066px;line-height:1"
3048
- y="454.07666"
3049
- x="585.31299"
3050
- id="tspan13310-7-3-20-4-4"
3051
- sodipodi:role="line">L<tspan
3052
- id="tspan13428-0-0-8"
3053
- style="font-size:13.5245px;baseline-shift:sub">2</tspan></tspan></text>
3054
- <text
3055
- id="text13312-8-1"
3056
- y="279.44888"
3057
- x="86.652519"
3058
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
3059
- xml:space="preserve"><tspan
3060
- style="font-size:20px;line-height:1"
3061
- y="279.44888"
3062
- x="86.652519"
3063
- id="tspan13314-9-7"
3064
- sodipodi:role="line">VROPA</tspan></text>
3065
- <g
3066
- id="g14056-4-5"
3067
- style="display:inline"
3068
- transform="matrix(0,0.81624021,-0.81624021,0,568.83405,118.84821)">
3069
- <path
3070
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;display:inline;fill:none;stroke:#000000;stroke-width:1.22513;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)"
3071
- d="m 219.26093,370.86219 c 20.47814,0 20.47814,0 20.47814,0"
3072
- id="path9744-6-3-0-5-14-28-5"
3073
- inkscape:connector-curvature="0" />
3074
- <ellipse
3075
- ry="8.5"
3076
- rx="13.753289"
3077
- cy="370.86218"
3078
- cx="230.75328"
3079
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.3574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
3080
- id="path14054-8-1"
3081
- transform="matrix(0.90359941,0,0,0.90150941,20.918927,36.396374)" />
3082
- </g>
3083
- <g
3084
- id="g14056-4-5-6"
3085
- style="display:inline"
3086
- transform="matrix(0.81624021,0,0,0.81624021,52.732074,-24.390691)">
3087
- <path
3088
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;display:inline;fill:none;stroke:#000000;stroke-width:1.22513;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend-7)"
3089
- d="m 219.26093,370.86219 c 20.47814,0 20.47814,0 20.47814,0"
3090
- id="path9744-6-3-0-5-14-28-5-1"
3091
- inkscape:connector-curvature="0" />
3092
- <ellipse
3093
- ry="8.5"
3094
- rx="13.753289"
3095
- cy="370.86218"
3096
- cx="230.75328"
3097
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.3574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
3098
- id="path14054-8-1-8"
3099
- transform="matrix(0.90359941,0,0,0.90150941,20.918927,36.396374)" />
3100
- </g>
3101
- <g
3102
- transform="matrix(0.6249286,0,0,0.6249286,-28.148692,357.60675)"
3103
- id="g13627-6-1">
3104
- <circle
3105
- r="9.1923885"
3106
- cy="78.676147"
3107
- cx="661.14484"
3108
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
3109
- id="path13607-7-7" />
3110
- <circle
3111
- r="9.1923885"
3112
- cy="78.676147"
3113
- cx="661.14484"
3114
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;stroke:none;stroke-width:17.5943;marker:none;enable-background:accumulate"
3115
- id="path13607-8-7-4"
3116
- transform="matrix(0.26569684,0,0,0.26569684,485.48074,57.772144)" />
3117
- </g>
3118
- </g>
3119
- </svg>