datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.0__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.
Files changed (496) hide show
  1. datalab/__init__.py +35 -2
  2. datalab/adapters_metadata/__init__.py +31 -0
  3. datalab/adapters_metadata/base_adapter.py +316 -0
  4. datalab/adapters_metadata/common.py +422 -0
  5. datalab/adapters_metadata/geometry_adapter.py +98 -0
  6. datalab/adapters_metadata/table_adapter.py +84 -0
  7. datalab/adapters_plotpy/__init__.py +54 -0
  8. datalab/adapters_plotpy/annotations.py +124 -0
  9. datalab/adapters_plotpy/base.py +110 -0
  10. datalab/adapters_plotpy/converters.py +86 -0
  11. datalab/adapters_plotpy/factories.py +80 -0
  12. datalab/adapters_plotpy/objects/__init__.py +0 -0
  13. datalab/adapters_plotpy/objects/base.py +197 -0
  14. datalab/adapters_plotpy/objects/image.py +157 -0
  15. datalab/adapters_plotpy/objects/scalar.py +565 -0
  16. datalab/adapters_plotpy/objects/signal.py +264 -0
  17. datalab/adapters_plotpy/roi/__init__.py +0 -0
  18. datalab/adapters_plotpy/roi/base.py +146 -0
  19. datalab/adapters_plotpy/roi/factory.py +93 -0
  20. datalab/adapters_plotpy/roi/image.py +207 -0
  21. datalab/adapters_plotpy/roi/signal.py +72 -0
  22. datalab/app.py +98 -0
  23. datalab/config.py +817 -0
  24. datalab/control/__init__.py +0 -0
  25. datalab/control/baseproxy.py +776 -0
  26. datalab/control/proxy.py +343 -0
  27. datalab/control/remote.py +1005 -0
  28. datalab/data/doc/DataLab_en.pdf +0 -0
  29. datalab/data/doc/DataLab_fr.pdf +0 -0
  30. datalab/data/icons/analysis/delete_results.svg +109 -0
  31. datalab/data/icons/analysis/fw1e2.svg +156 -0
  32. datalab/data/icons/analysis/fwhm.svg +156 -0
  33. datalab/data/icons/analysis/histogram.svg +49 -0
  34. datalab/data/icons/analysis/peak_detect.svg +160 -0
  35. datalab/data/icons/analysis/plot_results.svg +151 -0
  36. datalab/data/icons/analysis/show_results.svg +83 -0
  37. datalab/data/icons/analysis/stats.svg +49 -0
  38. datalab/data/icons/analysis.svg +120 -0
  39. datalab/data/icons/apply.svg +3 -0
  40. datalab/data/icons/check_all.svg +15 -0
  41. datalab/data/icons/collapse.svg +44 -0
  42. datalab/data/icons/collapse_selection.svg +63 -0
  43. datalab/data/icons/console.svg +101 -0
  44. datalab/data/icons/create/1d-normal.svg +8 -0
  45. datalab/data/icons/create/1d-poisson.svg +9 -0
  46. datalab/data/icons/create/1d-uniform.svg +8 -0
  47. datalab/data/icons/create/1d-zero.svg +57 -0
  48. datalab/data/icons/create/2d-gaussian.svg +56 -0
  49. datalab/data/icons/create/2d-normal.svg +38 -0
  50. datalab/data/icons/create/2d-poisson.svg +38 -0
  51. datalab/data/icons/create/2d-ramp.svg +90 -0
  52. datalab/data/icons/create/2d-sinc.svg +62 -0
  53. datalab/data/icons/create/2d-uniform.svg +38 -0
  54. datalab/data/icons/create/2d-zero.svg +13 -0
  55. datalab/data/icons/create/checkerboard.svg +39 -0
  56. datalab/data/icons/create/cosine.svg +12 -0
  57. datalab/data/icons/create/exponential.svg +55 -0
  58. datalab/data/icons/create/gaussian.svg +12 -0
  59. datalab/data/icons/create/grating.svg +29 -0
  60. datalab/data/icons/create/linear_chirp.svg +7 -0
  61. datalab/data/icons/create/logistic.svg +7 -0
  62. datalab/data/icons/create/lorentzian.svg +12 -0
  63. datalab/data/icons/create/planck.svg +12 -0
  64. datalab/data/icons/create/polynomial.svg +7 -0
  65. datalab/data/icons/create/pulse.svg +12 -0
  66. datalab/data/icons/create/ring.svg +18 -0
  67. datalab/data/icons/create/sawtooth.svg +7 -0
  68. datalab/data/icons/create/siemens.svg +35 -0
  69. datalab/data/icons/create/sinc.svg +12 -0
  70. datalab/data/icons/create/sine.svg +7 -0
  71. datalab/data/icons/create/square.svg +7 -0
  72. datalab/data/icons/create/square_pulse.svg +7 -0
  73. datalab/data/icons/create/step.svg +7 -0
  74. datalab/data/icons/create/step_pulse.svg +12 -0
  75. datalab/data/icons/create/triangle.svg +7 -0
  76. datalab/data/icons/create/voigt.svg +12 -0
  77. datalab/data/icons/edit/annotations.svg +72 -0
  78. datalab/data/icons/edit/annotations_copy.svg +114 -0
  79. datalab/data/icons/edit/annotations_delete.svg +83 -0
  80. datalab/data/icons/edit/annotations_edit.svg +98 -0
  81. datalab/data/icons/edit/annotations_export.svg +85 -0
  82. datalab/data/icons/edit/annotations_import.svg +85 -0
  83. datalab/data/icons/edit/annotations_paste.svg +100 -0
  84. datalab/data/icons/edit/copy_titles.svg +109 -0
  85. datalab/data/icons/edit/delete.svg +84 -0
  86. datalab/data/icons/edit/delete_all.svg +214 -0
  87. datalab/data/icons/edit/duplicate.svg +64 -0
  88. datalab/data/icons/edit/goto_source.svg +60 -0
  89. datalab/data/icons/edit/metadata.svg +60 -0
  90. datalab/data/icons/edit/metadata_add.svg +80 -0
  91. datalab/data/icons/edit/metadata_copy.svg +96 -0
  92. datalab/data/icons/edit/metadata_delete.svg +62 -0
  93. datalab/data/icons/edit/metadata_export.svg +68 -0
  94. datalab/data/icons/edit/metadata_import.svg +68 -0
  95. datalab/data/icons/edit/metadata_paste.svg +79 -0
  96. datalab/data/icons/edit/move_down.svg +55 -0
  97. datalab/data/icons/edit/move_up.svg +54 -0
  98. datalab/data/icons/edit/new_group.svg +76 -0
  99. datalab/data/icons/edit/recompute.svg +60 -0
  100. datalab/data/icons/edit/rename.svg +49 -0
  101. datalab/data/icons/edit.svg +16 -0
  102. datalab/data/icons/expand.svg +44 -0
  103. datalab/data/icons/expand_selection.svg +63 -0
  104. datalab/data/icons/fit/cdf_fit.svg +56 -0
  105. datalab/data/icons/fit/exponential_fit.svg +55 -0
  106. datalab/data/icons/fit/gaussian_fit.svg +62 -0
  107. datalab/data/icons/fit/interactive_fit.svg +101 -0
  108. datalab/data/icons/fit/linear_fit.svg +57 -0
  109. datalab/data/icons/fit/lorentzian_fit.svg +209 -0
  110. datalab/data/icons/fit/multigaussian_fit.svg +85 -0
  111. datalab/data/icons/fit/multilorentzian_fit.svg +85 -0
  112. datalab/data/icons/fit/piecewiseexponential_fit.svg +209 -0
  113. datalab/data/icons/fit/planckian_fit.svg +62 -0
  114. datalab/data/icons/fit/polynomial_fit.svg +59 -0
  115. datalab/data/icons/fit/sigmoid_fit.svg +56 -0
  116. datalab/data/icons/fit/sinusoidal_fit.svg +72 -0
  117. datalab/data/icons/fit/twohalfgaussian_fit.svg +63 -0
  118. datalab/data/icons/fit/voigt_fit.svg +57 -0
  119. datalab/data/icons/group.svg +56 -0
  120. datalab/data/icons/h5/h5array.svg +59 -0
  121. datalab/data/icons/h5/h5attrs.svg +75 -0
  122. datalab/data/icons/h5/h5browser.svg +133 -0
  123. datalab/data/icons/h5/h5file.svg +69 -0
  124. datalab/data/icons/h5/h5group.svg +49 -0
  125. datalab/data/icons/h5/h5scalar.svg +1 -0
  126. datalab/data/icons/help_pdf.svg +46 -0
  127. datalab/data/icons/history.svg +7 -0
  128. datalab/data/icons/image.svg +135 -0
  129. datalab/data/icons/io/fileopen_directory.svg +60 -0
  130. datalab/data/icons/io/fileopen_h5.svg +84 -0
  131. datalab/data/icons/io/fileopen_ima.svg +187 -0
  132. datalab/data/icons/io/fileopen_py.svg +123 -0
  133. datalab/data/icons/io/fileopen_sig.svg +138 -0
  134. datalab/data/icons/io/filesave_h5.svg +97 -0
  135. datalab/data/icons/io/filesave_ima.svg +200 -0
  136. datalab/data/icons/io/filesave_py.svg +136 -0
  137. datalab/data/icons/io/filesave_sig.svg +151 -0
  138. datalab/data/icons/io/import_text.svg +144 -0
  139. datalab/data/icons/io/save_to_directory.svg +134 -0
  140. datalab/data/icons/io.svg +84 -0
  141. datalab/data/icons/libre-camera-flash-off.svg +1 -0
  142. datalab/data/icons/libre-camera-flash-on.svg +1 -0
  143. datalab/data/icons/libre-gui-about.svg +1 -0
  144. datalab/data/icons/libre-gui-action-delete.svg +1 -0
  145. datalab/data/icons/libre-gui-add.svg +1 -0
  146. datalab/data/icons/libre-gui-arrow-down.svg +1 -0
  147. datalab/data/icons/libre-gui-arrow-left.svg +1 -0
  148. datalab/data/icons/libre-gui-arrow-right.svg +1 -0
  149. datalab/data/icons/libre-gui-arrow-up.svg +1 -0
  150. datalab/data/icons/libre-gui-close.svg +40 -0
  151. datalab/data/icons/libre-gui-cogs.svg +1 -0
  152. datalab/data/icons/libre-gui-globe.svg +1 -0
  153. datalab/data/icons/libre-gui-help.svg +1 -0
  154. datalab/data/icons/libre-gui-link.svg +1 -0
  155. datalab/data/icons/libre-gui-menu.svg +1 -0
  156. datalab/data/icons/libre-gui-pencil.svg +1 -0
  157. datalab/data/icons/libre-gui-plugin.svg +1 -0
  158. datalab/data/icons/libre-gui-questions.svg +1 -0
  159. datalab/data/icons/libre-gui-settings.svg +1 -0
  160. datalab/data/icons/libre-gui-unlink.svg +1 -0
  161. datalab/data/icons/libre-tech-ram.svg +1 -0
  162. datalab/data/icons/libre-toolbox.svg +1 -0
  163. datalab/data/icons/logs.svg +1 -0
  164. datalab/data/icons/markers.svg +74 -0
  165. datalab/data/icons/menu.svg +13 -0
  166. datalab/data/icons/new_ima.svg +148 -0
  167. datalab/data/icons/new_sig.svg +123 -0
  168. datalab/data/icons/operations/abs.svg +116 -0
  169. datalab/data/icons/operations/arithmetic.svg +123 -0
  170. datalab/data/icons/operations/average.svg +124 -0
  171. datalab/data/icons/operations/complex_from_magnitude_phase.svg +116 -0
  172. datalab/data/icons/operations/complex_from_real_imag.svg +124 -0
  173. datalab/data/icons/operations/constant.svg +116 -0
  174. datalab/data/icons/operations/constant_add.svg +109 -0
  175. datalab/data/icons/operations/constant_divide.svg +109 -0
  176. datalab/data/icons/operations/constant_multiply.svg +109 -0
  177. datalab/data/icons/operations/constant_subtract.svg +109 -0
  178. datalab/data/icons/operations/convert_dtype.svg +117 -0
  179. datalab/data/icons/operations/convolution.svg +46 -0
  180. datalab/data/icons/operations/deconvolution.svg +57 -0
  181. datalab/data/icons/operations/derivative.svg +127 -0
  182. datalab/data/icons/operations/difference.svg +52 -0
  183. datalab/data/icons/operations/division.svg +139 -0
  184. datalab/data/icons/operations/exp.svg +116 -0
  185. datalab/data/icons/operations/flip_horizontally.svg +69 -0
  186. datalab/data/icons/operations/flip_vertically.svg +74 -0
  187. datalab/data/icons/operations/im.svg +124 -0
  188. datalab/data/icons/operations/integral.svg +50 -0
  189. datalab/data/icons/operations/inverse.svg +143 -0
  190. datalab/data/icons/operations/log10.svg +109 -0
  191. datalab/data/icons/operations/phase.svg +116 -0
  192. datalab/data/icons/operations/power.svg +118 -0
  193. datalab/data/icons/operations/product.svg +124 -0
  194. datalab/data/icons/operations/profile.svg +379 -0
  195. datalab/data/icons/operations/profile_average.svg +399 -0
  196. datalab/data/icons/operations/profile_radial.svg +261 -0
  197. datalab/data/icons/operations/profile_segment.svg +262 -0
  198. datalab/data/icons/operations/quadratic_difference.svg +84 -0
  199. datalab/data/icons/operations/re.svg +124 -0
  200. datalab/data/icons/operations/rotate_left.svg +72 -0
  201. datalab/data/icons/operations/rotate_right.svg +72 -0
  202. datalab/data/icons/operations/signals_to_image.svg +314 -0
  203. datalab/data/icons/operations/sqrt.svg +110 -0
  204. datalab/data/icons/operations/std.svg +124 -0
  205. datalab/data/icons/operations/sum.svg +102 -0
  206. datalab/data/icons/play_demo.svg +9 -0
  207. datalab/data/icons/processing/axis_transform.svg +62 -0
  208. datalab/data/icons/processing/bandpass.svg +79 -0
  209. datalab/data/icons/processing/bandstop.svg +71 -0
  210. datalab/data/icons/processing/binning.svg +126 -0
  211. datalab/data/icons/processing/clip.svg +119 -0
  212. datalab/data/icons/processing/detrending.svg +173 -0
  213. datalab/data/icons/processing/distribute_on_grid.svg +769 -0
  214. datalab/data/icons/processing/edge_detection.svg +46 -0
  215. datalab/data/icons/processing/erase.svg +1 -0
  216. datalab/data/icons/processing/exposure.svg +143 -0
  217. datalab/data/icons/processing/fourier.svg +104 -0
  218. datalab/data/icons/processing/highpass.svg +59 -0
  219. datalab/data/icons/processing/interpolation.svg +71 -0
  220. datalab/data/icons/processing/level_adjustment.svg +70 -0
  221. datalab/data/icons/processing/lowpass.svg +60 -0
  222. datalab/data/icons/processing/morphology.svg +49 -0
  223. datalab/data/icons/processing/noise_addition.svg +114 -0
  224. datalab/data/icons/processing/noise_reduction.svg +38 -0
  225. datalab/data/icons/processing/normalize.svg +84 -0
  226. datalab/data/icons/processing/offset_correction.svg +131 -0
  227. datalab/data/icons/processing/resampling1d.svg +101 -0
  228. datalab/data/icons/processing/resampling2d.svg +240 -0
  229. datalab/data/icons/processing/reset_positions.svg +185 -0
  230. datalab/data/icons/processing/resize.svg +9 -0
  231. datalab/data/icons/processing/reverse_signal_x.svg +171 -0
  232. datalab/data/icons/processing/stability.svg +11 -0
  233. datalab/data/icons/processing/swap_x_y.svg +65 -0
  234. datalab/data/icons/processing/thresholding.svg +63 -0
  235. datalab/data/icons/processing/windowing.svg +45 -0
  236. datalab/data/icons/properties.svg +26 -0
  237. datalab/data/icons/reset.svg +9 -0
  238. datalab/data/icons/restore.svg +40 -0
  239. datalab/data/icons/roi/roi.svg +76 -0
  240. datalab/data/icons/roi/roi_coordinate.svg +78 -0
  241. datalab/data/icons/roi/roi_copy.svg +112 -0
  242. datalab/data/icons/roi/roi_delete.svg +81 -0
  243. datalab/data/icons/roi/roi_export.svg +87 -0
  244. datalab/data/icons/roi/roi_graphical.svg +78 -0
  245. datalab/data/icons/roi/roi_grid.svg +67 -0
  246. datalab/data/icons/roi/roi_ima.svg +188 -0
  247. datalab/data/icons/roi/roi_import.svg +87 -0
  248. datalab/data/icons/roi/roi_new.svg +81 -0
  249. datalab/data/icons/roi/roi_new_circle.svg +95 -0
  250. datalab/data/icons/roi/roi_new_polygon.svg +110 -0
  251. datalab/data/icons/roi/roi_new_rectangle.svg +70 -0
  252. datalab/data/icons/roi/roi_paste.svg +98 -0
  253. datalab/data/icons/roi/roi_sig.svg +124 -0
  254. datalab/data/icons/shapes.svg +134 -0
  255. datalab/data/icons/signal.svg +103 -0
  256. datalab/data/icons/table.svg +85 -0
  257. datalab/data/icons/table_unavailable.svg +102 -0
  258. datalab/data/icons/to_signal.svg +124 -0
  259. datalab/data/icons/tour/next.svg +44 -0
  260. datalab/data/icons/tour/previous.svg +44 -0
  261. datalab/data/icons/tour/rewind.svg +51 -0
  262. datalab/data/icons/tour/stop.svg +47 -0
  263. datalab/data/icons/tour/tour.svg +16 -0
  264. datalab/data/icons/uncheck_all.svg +78 -0
  265. datalab/data/icons/view/curve_antialiasing.svg +50 -0
  266. datalab/data/icons/view/new_window.svg +98 -0
  267. datalab/data/icons/view/refresh-auto.svg +57 -0
  268. datalab/data/icons/view/refresh-manual.svg +51 -0
  269. datalab/data/icons/view/reset_curve_styles.svg +96 -0
  270. datalab/data/icons/view/show_first.svg +55 -0
  271. datalab/data/icons/view/show_titles.svg +46 -0
  272. datalab/data/icons/visualization.svg +51 -0
  273. datalab/data/logo/DataLab-Banner-150.png +0 -0
  274. datalab/data/logo/DataLab-Banner-200.png +0 -0
  275. datalab/data/logo/DataLab-Banner2-100.png +0 -0
  276. datalab/data/logo/DataLab-Splash.png +0 -0
  277. datalab/data/logo/DataLab-watermark.png +0 -0
  278. datalab/data/logo/DataLab.svg +83 -0
  279. datalab/data/tests/reordering_test.h5 +0 -0
  280. datalab/data/tutorials/fabry_perot/fabry-perot1.jpg +0 -0
  281. datalab/data/tutorials/fabry_perot/fabry-perot2.jpg +0 -0
  282. datalab/data/tutorials/laser_beam/TEM00_z_13.jpg +0 -0
  283. datalab/data/tutorials/laser_beam/TEM00_z_18.jpg +0 -0
  284. datalab/data/tutorials/laser_beam/TEM00_z_23.jpg +0 -0
  285. datalab/data/tutorials/laser_beam/TEM00_z_30.jpg +0 -0
  286. datalab/data/tutorials/laser_beam/TEM00_z_35.jpg +0 -0
  287. datalab/data/tutorials/laser_beam/TEM00_z_40.jpg +0 -0
  288. datalab/data/tutorials/laser_beam/TEM00_z_45.jpg +0 -0
  289. datalab/data/tutorials/laser_beam/TEM00_z_50.jpg +0 -0
  290. datalab/data/tutorials/laser_beam/TEM00_z_55.jpg +0 -0
  291. datalab/data/tutorials/laser_beam/TEM00_z_60.jpg +0 -0
  292. datalab/data/tutorials/laser_beam/TEM00_z_65.jpg +0 -0
  293. datalab/data/tutorials/laser_beam/TEM00_z_70.jpg +0 -0
  294. datalab/data/tutorials/laser_beam/TEM00_z_75.jpg +0 -0
  295. datalab/data/tutorials/laser_beam/TEM00_z_80.jpg +0 -0
  296. datalab/env.py +542 -0
  297. datalab/gui/__init__.py +89 -0
  298. datalab/gui/actionhandler.py +1701 -0
  299. datalab/gui/docks.py +473 -0
  300. datalab/gui/h5io.py +150 -0
  301. datalab/gui/macroeditor.py +310 -0
  302. datalab/gui/main.py +2081 -0
  303. datalab/gui/newobject.py +217 -0
  304. datalab/gui/objectview.py +766 -0
  305. datalab/gui/panel/__init__.py +48 -0
  306. datalab/gui/panel/base.py +3254 -0
  307. datalab/gui/panel/image.py +157 -0
  308. datalab/gui/panel/macro.py +607 -0
  309. datalab/gui/panel/signal.py +164 -0
  310. datalab/gui/plothandler.py +800 -0
  311. datalab/gui/processor/__init__.py +84 -0
  312. datalab/gui/processor/base.py +2456 -0
  313. datalab/gui/processor/catcher.py +75 -0
  314. datalab/gui/processor/image.py +1214 -0
  315. datalab/gui/processor/signal.py +755 -0
  316. datalab/gui/profiledialog.py +333 -0
  317. datalab/gui/roieditor.py +633 -0
  318. datalab/gui/roigrideditor.py +208 -0
  319. datalab/gui/settings.py +612 -0
  320. datalab/gui/tour.py +908 -0
  321. datalab/h5/__init__.py +12 -0
  322. datalab/h5/common.py +314 -0
  323. datalab/h5/generic.py +580 -0
  324. datalab/h5/native.py +39 -0
  325. datalab/h5/utils.py +95 -0
  326. datalab/objectmodel.py +640 -0
  327. datalab/plugins/_readme_.txt +9 -0
  328. datalab/plugins/datalab_imageformats.py +175 -0
  329. datalab/plugins/datalab_testdata.py +190 -0
  330. datalab/plugins.py +355 -0
  331. datalab/tests/__init__.py +199 -0
  332. datalab/tests/backbone/__init__.py +1 -0
  333. datalab/tests/backbone/config_unit_test.py +170 -0
  334. datalab/tests/backbone/config_versioning_unit_test.py +34 -0
  335. datalab/tests/backbone/dictlistserial_app_test.py +38 -0
  336. datalab/tests/backbone/errorcatcher_unit_test.py +69 -0
  337. datalab/tests/backbone/errormsgbox_unit_test.py +50 -0
  338. datalab/tests/backbone/execenv_unit.py +262 -0
  339. datalab/tests/backbone/loadtest_gdi.py +147 -0
  340. datalab/tests/backbone/long_callback.py +96 -0
  341. datalab/tests/backbone/main_app_test.py +137 -0
  342. datalab/tests/backbone/memory_leak.py +43 -0
  343. datalab/tests/backbone/procisolation1_unit.py +128 -0
  344. datalab/tests/backbone/procisolation2_unit.py +171 -0
  345. datalab/tests/backbone/procisolation_unit_test.py +22 -0
  346. datalab/tests/backbone/profiling_app.py +27 -0
  347. datalab/tests/backbone/strings_unit_test.py +65 -0
  348. datalab/tests/backbone/title_formatting_unit_test.py +82 -0
  349. datalab/tests/conftest.py +131 -0
  350. datalab/tests/features/__init__.py +1 -0
  351. datalab/tests/features/applauncher/__init__.py +1 -0
  352. datalab/tests/features/applauncher/launcher1_app_test.py +28 -0
  353. datalab/tests/features/applauncher/launcher2_app_test.py +30 -0
  354. datalab/tests/features/common/__init__.py +1 -0
  355. datalab/tests/features/common/add_metadata_app_test.py +134 -0
  356. datalab/tests/features/common/add_metadata_unit_test.py +267 -0
  357. datalab/tests/features/common/annotations_management_unit_test.py +152 -0
  358. datalab/tests/features/common/auto_analysis_recompute_unit_test.py +240 -0
  359. datalab/tests/features/common/createobject_unit_test.py +50 -0
  360. datalab/tests/features/common/geometry_results_app_test.py +135 -0
  361. datalab/tests/features/common/interactive_processing_test.py +1109 -0
  362. datalab/tests/features/common/io_app_test.py +75 -0
  363. datalab/tests/features/common/large_results_app_test.py +187 -0
  364. datalab/tests/features/common/metadata_all_patterns_test.py +103 -0
  365. datalab/tests/features/common/metadata_app_test.py +139 -0
  366. datalab/tests/features/common/metadata_io_unit_test.py +60 -0
  367. datalab/tests/features/common/misc_app_test.py +236 -0
  368. datalab/tests/features/common/multiple_geometry_results_unit_test.py +122 -0
  369. datalab/tests/features/common/multiple_table_results_unit_test.py +64 -0
  370. datalab/tests/features/common/operation_modes_app_test.py +392 -0
  371. datalab/tests/features/common/plot_results_app_test.py +278 -0
  372. datalab/tests/features/common/reorder_app_test.py +75 -0
  373. datalab/tests/features/common/result_deletion_unit_test.py +96 -0
  374. datalab/tests/features/common/result_merged_label_unit_test.py +154 -0
  375. datalab/tests/features/common/result_shape_settings_unit_test.py +223 -0
  376. datalab/tests/features/common/roi_plotitem_unit_test.py +64 -0
  377. datalab/tests/features/common/roieditor_unit_test.py +102 -0
  378. datalab/tests/features/common/save_to_dir_app_test.py +163 -0
  379. datalab/tests/features/common/save_to_dir_unit_test.py +474 -0
  380. datalab/tests/features/common/stat_app_test.py +40 -0
  381. datalab/tests/features/common/stats_tools_unit_test.py +77 -0
  382. datalab/tests/features/common/table_results_app_test.py +52 -0
  383. datalab/tests/features/common/textimport_unit_test.py +131 -0
  384. datalab/tests/features/common/uuid_preservation_test.py +281 -0
  385. datalab/tests/features/common/worker_unit_test.py +402 -0
  386. datalab/tests/features/control/__init__.py +1 -0
  387. datalab/tests/features/control/connect_dialog.py +28 -0
  388. datalab/tests/features/control/embedded1_unit_test.py +304 -0
  389. datalab/tests/features/control/embedded2_unit_test.py +52 -0
  390. datalab/tests/features/control/remoteclient_app_test.py +219 -0
  391. datalab/tests/features/control/remoteclient_unit.py +75 -0
  392. datalab/tests/features/control/simpleclient_unit_test.py +321 -0
  393. datalab/tests/features/hdf5/__init__.py +1 -0
  394. datalab/tests/features/hdf5/h5browser1_unit_test.py +31 -0
  395. datalab/tests/features/hdf5/h5browser2_unit.py +55 -0
  396. datalab/tests/features/hdf5/h5browser_app_test.py +77 -0
  397. datalab/tests/features/hdf5/h5import_app_test.py +25 -0
  398. datalab/tests/features/hdf5/h5importer_app_test.py +34 -0
  399. datalab/tests/features/image/__init__.py +1 -0
  400. datalab/tests/features/image/annotations_app_test.py +28 -0
  401. datalab/tests/features/image/annotations_unit_test.py +80 -0
  402. datalab/tests/features/image/average_app_test.py +46 -0
  403. datalab/tests/features/image/background_dialog_test.py +70 -0
  404. datalab/tests/features/image/blobs_app_test.py +50 -0
  405. datalab/tests/features/image/contour_app_test.py +42 -0
  406. datalab/tests/features/image/contour_fabryperot_app_test.py +51 -0
  407. datalab/tests/features/image/denoise_app_test.py +31 -0
  408. datalab/tests/features/image/distribute_on_grid_app_test.py +95 -0
  409. datalab/tests/features/image/edges_app_test.py +31 -0
  410. datalab/tests/features/image/erase_app_test.py +21 -0
  411. datalab/tests/features/image/fft2d_app_test.py +27 -0
  412. datalab/tests/features/image/flatfield_app_test.py +40 -0
  413. datalab/tests/features/image/geometry_transform_unit_test.py +396 -0
  414. datalab/tests/features/image/imagetools_app_test.py +51 -0
  415. datalab/tests/features/image/imagetools_unit_test.py +27 -0
  416. datalab/tests/features/image/load_app_test.py +73 -0
  417. datalab/tests/features/image/morph_app_test.py +32 -0
  418. datalab/tests/features/image/offsetcorrection_app_test.py +30 -0
  419. datalab/tests/features/image/peak2d_app_test.py +53 -0
  420. datalab/tests/features/image/profile_app_test.py +73 -0
  421. datalab/tests/features/image/profile_dialog_test.py +56 -0
  422. datalab/tests/features/image/roi_app_test.py +98 -0
  423. datalab/tests/features/image/roi_circ_app_test.py +62 -0
  424. datalab/tests/features/image/roi_manipulation_app_test.py +268 -0
  425. datalab/tests/features/image/roigrid_unit_test.py +60 -0
  426. datalab/tests/features/image/side_by_side_app_test.py +52 -0
  427. datalab/tests/features/macro/__init__.py +1 -0
  428. datalab/tests/features/macro/macro_app_test.py +28 -0
  429. datalab/tests/features/macro/macroeditor_unit_test.py +102 -0
  430. datalab/tests/features/signal/__init__.py +1 -0
  431. datalab/tests/features/signal/baseline_dialog_test.py +53 -0
  432. datalab/tests/features/signal/deltax_dialog_unit_test.py +34 -0
  433. datalab/tests/features/signal/fft1d_app_test.py +26 -0
  434. datalab/tests/features/signal/filter_app_test.py +44 -0
  435. datalab/tests/features/signal/fitdialog_unit_test.py +50 -0
  436. datalab/tests/features/signal/interpolation_app_test.py +110 -0
  437. datalab/tests/features/signal/loadbigsignal_app_test.py +80 -0
  438. datalab/tests/features/signal/multiple_rois_unit_test.py +132 -0
  439. datalab/tests/features/signal/pulse_features_app_test.py +118 -0
  440. datalab/tests/features/signal/pulse_features_roi_app_test.py +55 -0
  441. datalab/tests/features/signal/roi_app_test.py +78 -0
  442. datalab/tests/features/signal/roi_manipulation_app_test.py +261 -0
  443. datalab/tests/features/signal/select_xy_cursor_unit_test.py +46 -0
  444. datalab/tests/features/signal/signalpeakdetection_dialog_test.py +33 -0
  445. datalab/tests/features/signal/signals_to_image_app_test.py +98 -0
  446. datalab/tests/features/signal/xarray_compat_app_test.py +128 -0
  447. datalab/tests/features/tour_unit_test.py +22 -0
  448. datalab/tests/features/utilities/__init__.py +1 -0
  449. datalab/tests/features/utilities/installconf_unit_test.py +21 -0
  450. datalab/tests/features/utilities/logview_app_test.py +21 -0
  451. datalab/tests/features/utilities/logview_error.py +24 -0
  452. datalab/tests/features/utilities/logview_unit_test.py +21 -0
  453. datalab/tests/features/utilities/memstatus_app_test.py +42 -0
  454. datalab/tests/features/utilities/settings_unit_test.py +88 -0
  455. datalab/tests/scenarios/__init__.py +1 -0
  456. datalab/tests/scenarios/beautiful_app.py +121 -0
  457. datalab/tests/scenarios/common.py +463 -0
  458. datalab/tests/scenarios/demo.py +212 -0
  459. datalab/tests/scenarios/example_app_test.py +47 -0
  460. datalab/tests/scenarios/scenario_h5_app_test.py +75 -0
  461. datalab/tests/scenarios/scenario_ima1_app_test.py +34 -0
  462. datalab/tests/scenarios/scenario_ima2_app_test.py +34 -0
  463. datalab/tests/scenarios/scenario_mac_app_test.py +58 -0
  464. datalab/tests/scenarios/scenario_sig1_app_test.py +36 -0
  465. datalab/tests/scenarios/scenario_sig2_app_test.py +35 -0
  466. datalab/utils/__init__.py +1 -0
  467. datalab/utils/conf.py +304 -0
  468. datalab/utils/dephash.py +105 -0
  469. datalab/utils/qthelpers.py +633 -0
  470. datalab/utils/strings.py +34 -0
  471. datalab/utils/tests.py +0 -0
  472. datalab/widgets/__init__.py +1 -0
  473. datalab/widgets/connection.py +138 -0
  474. datalab/widgets/filedialog.py +91 -0
  475. datalab/widgets/fileviewer.py +84 -0
  476. datalab/widgets/fitdialog.py +788 -0
  477. datalab/widgets/h5browser.py +1048 -0
  478. datalab/widgets/imagebackground.py +111 -0
  479. datalab/widgets/instconfviewer.py +175 -0
  480. datalab/widgets/logviewer.py +80 -0
  481. datalab/widgets/signalbaseline.py +90 -0
  482. datalab/widgets/signalcursor.py +208 -0
  483. datalab/widgets/signaldeltax.py +151 -0
  484. datalab/widgets/signalpeak.py +199 -0
  485. datalab/widgets/status.py +249 -0
  486. datalab/widgets/textimport.py +786 -0
  487. datalab/widgets/warningerror.py +223 -0
  488. datalab/widgets/wizard.py +286 -0
  489. datalab_platform-1.0.0.dist-info/METADATA +121 -0
  490. datalab_platform-1.0.0.dist-info/RECORD +494 -0
  491. datalab_platform-0.0.1.dev0.dist-info/METADATA +0 -67
  492. datalab_platform-0.0.1.dev0.dist-info/RECORD +0 -7
  493. {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/WHEEL +0 -0
  494. {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/entry_points.txt +0 -0
  495. {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/licenses/LICENSE +0 -0
  496. {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1"
3
+ xmlns="http://www.w3.org/2000/svg">
4
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" />
5
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" />
6
+ <path style="fill:none;stroke:#009966;stroke-width:0.35;stroke-linejoin:round" d="M 1,7 C 1.5,5.5 2,4.5 2.5,5.5 3,7 3.3,8.5 3.6,7.5 3.9,6 4.2,4 4.5,5 4.8,6.5 5,8.5 5.3,7.5 5.6,6 5.9,3.5 6.3,5 6.7,7 6.9,9.5 7.2,7.5 7.5,5 7.8,2 8.2,5 8.6,8 8.9,11 9.3,8 9.7,5 10.1,2 10.6,5.5 11.1,9 11.6,12 12.2,8.5 12.8,5 13,2" />
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1"
3
+ xmlns="http://www.w3.org/2000/svg">
4
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" />
5
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" />
6
+ <path style="fill:none;stroke:#9900cc;stroke-width:0.35;stroke-linejoin:round" d="M 1.5,12 C 2,12 2.5,12 3,11.9 3.5,11.8 4,11.6 4.5,11.2 5,10.8 5.5,10.2 6,9.5 6.5,8.5 7,7.2 7.5,5.5 8,4 8.5,3 9,2.5 9.5,2.2 10,2.1 10.5,2.05 11,2.02 11.5,2.01 12,2 12.5,2" />
7
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1" id="svg2" sodipodi:docname="lorentzian.svg" inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
3
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:svg="http://www.w3.org/2000/svg">
7
+ <defs id="defs2" />
8
+ <sodipodi:namedview id="namedview2" pagecolor="#505050" bordercolor="#ffffff" borderopacity="1" inkscape:showpageshadow="0" inkscape:pageopacity="0" inkscape:pagecheckerboard="1" inkscape:deskcolor="#505050" inkscape:zoom="57.642857" inkscape:cx="7" inkscape:cy="7" inkscape:window-width="1920" inkscape:window-height="1009" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" inkscape:current-layer="svg2" />
9
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" id="rect1" />
10
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" id="rect2" />
11
+ <path class="fil1 str1" d="m 0.57018818,11.457471 v 0 h 0.042194 0.043952 0.042194 0.043952 0.042194 0.043952 0.042194 0.043952 l 0.042194,-0.0018 h 0.042194 0.043952 0.042194 0.043952 l 0.042194,-0.0035 h 0.043952 0.042194 l 0.043952,-0.0018 h 0.042194 l 0.043952,-0.0018 h 0.042194 l 0.043952,-0.0018 h 0.042194 l 0.043952,-0.0018 0.042194,-0.0018 h 0.043952 l 0.042194,-0.0035 0.043952,-0.0018 0.042194,-0.0018 0.043952,-0.0035 0.042194,-0.0018 0.042194,-0.0035 0.043952,-0.0035 0.042194,-0.0018 0.043952,-0.0035 0.042194,-0.0053 0.043952,-0.0035 0.042194,-0.007 0.043952,-0.0035 0.042194,-0.0053 0.043952,-0.007 0.042194,-0.0053 0.043952,-0.007 0.042194,-0.0088 0.043952,-0.007 0.042194,-0.01055 0.043952,-0.0088 0.042194,-0.01055 0.04395,-0.01231 0.04219,-0.01231 0.04044,-0.01055 0.04395,-0.01231 0.04219,-0.01758 0.04395,-0.01406 0.04219,-0.01758 0.04395,-0.01758 0.04219,-0.01934 0.04395,-0.0211 0.04219,-0.0211 0.04395,-0.02461 0.04219,-0.02461 0.04395,-0.02637 0.04219,-0.02637 0.04395,-0.03165 0.04219,-0.02989 0.04395,-0.0334 0.04219,-0.03692 0.04219,-0.03692 0.04395,-0.03868 0.04219,-0.04044 0.04395,-0.04571 0.04219,-0.04395 0.04395,-0.04923 0.04219,-0.04923 0.04395,-0.0545 0.04219,-0.05626 0.04395,-0.05802 0.04219,-0.06153 0.04395,-0.06329 0.04219,-0.06681 0.04395,-0.07032 0.04219,-0.07384 0.04395,-0.0756 0.04219,-0.077356 0.04395,-0.08263 0.04219,-0.086146 0.04395,-0.087904 0.04219,-0.093178 0.04219,-0.093178 0.04395,-0.098453 0.04219,-0.1002106 0.04395,-0.1054848 0.04219,-0.1054848 0.04395,-0.110759 0.04219,-0.115793 0.04395,-0.1159913 0.04219,-0.1195494 0.04395,-0.1213075 0.04219,-0.1283399 0.04395,-0.1265817 0.04219,-0.1336141 0.04395,-0.1336141 0.04219,-0.1336141 0.04395,-0.1406464 0.04219,-0.1406464 0.04395,-0.1441625 0.04219,-0.1424045 0.04395,-0.1476787 0.04219,-0.1476787 0.04219,-0.1494368 0.04395,-0.1511949 0.04219,-0.152953 0.04395,-0.1511949 0.04219,-0.1529529 0.04395,-0.1547111 0.04219,-0.1529529 0.04395,-0.1547111 0.04219,-0.1511948 0.04395,-0.152953 0.04219,-0.1494368 0.04395,-0.1494368 0.04219,-0.1511949 0.04395,-0.1441625 0.04219,-0.1459207 0.04395,-0.1406464 0.04219,-0.1424045 0.04395,-0.1353721 0.04219,-0.1336141 0.04395,-0.1300979 0.04219,-0.1248237 0.04219,-0.1230656 0.04395,-0.1195494 0.04219,-0.1125172 0.04395,-0.1090009 0.04219,-0.1037267 0.04395,-0.098453 0.04219,-0.09142 0.04395,-0.089662 0.04219,-0.079114 0.04395,-0.075597 0.04219,-0.070323 0.04395,-0.061533 0.04219,-0.056259 0.04395,-0.049226 0.04219,-0.042194 0.04395,-0.03692 0.04219,-0.028129 0.04395,-0.021097 0.04219,-0.014065 0.04395,-0.00703 h 0.04044 l 0.04219,0.00703 0.04395,0.014065 0.04219,0.021097 0.04395,0.028129 0.04219,0.03692 0.04395,0.042194 0.04219,0.049226 0.04395,0.056259 0.04219,0.061533 0.04395,0.070323 0.04219,0.075597 0.04219,0.079114 0.04395,0.089662 0.04219,0.09142 0.04395,0.098453 0.04219,0.1037267 0.04395,0.1090009 0.04219,0.1125172 0.04395,0.1195494 0.04219,0.1230656 0.04395,0.1248237 0.04219,0.1300979 0.04395,0.1336141 0.04219,0.1353721 0.04395,0.1424045 0.04219,0.1406464 0.04395,0.1459207 0.04219,0.1441625 0.04395,0.1511949 0.04219,0.1494368 0.04395,0.1494368 0.04219,0.152953 0.04219,0.1511948 0.04395,0.1547111 0.04219,0.1529529 0.04395,0.1547111 0.04219,0.1529529 0.04395,0.1511949 0.04219,0.152953 0.04395,0.1511949 0.04219,0.1494368 0.04395,0.1476787 0.04219,0.1476787 0.04395,0.1424045 0.04219,0.1441625 0.04395,0.1406464 0.04219,0.1406464 0.04395,0.1336141 0.04219,0.1336141 0.04395,0.1336141 0.04219,0.1265817 0.04395,0.1283399 0.04219,0.1213075 0.04219,0.1195494 0.04395,0.1160333 0.04219,0.1160333 0.04395,0.110759 0.04219,0.1054848 0.04395,0.1054848 0.04219,0.1002106 0.04395,0.098453 0.04219,0.093178 0.04395,0.093178 0.04219,0.087904 0.04395,0.086146 0.04219,0.08263 0.04395,0.077356 0.04219,0.0756 0.04395,0.07384 0.04219,0.07032 0.04395,0.06681 0.04219,0.06329 0.04395,0.06153 0.04219,0.05802 0.04219,0.05626 0.04395,0.0545 0.04219,0.04923 0.04395,0.04923 0.04219,0.04395 0.04395,0.04571 0.04219,0.04044 0.04395,0.03868 0.04219,0.03692 0.04395,0.03692 0.04219,0.0334 0.04395,0.02989 0.04219,0.03165 0.04395,0.02637 0.04219,0.02637 0.04395,0.02461 0.04219,0.02461 0.04395,0.0211 0.04219,0.0211 0.04395,0.01934 0.04219,0.01758 0.04219,0.01758 0.04395,0.01406 0.04219,0.01758 0.04395,0.01231 0.04044,0.01055 0.04395,0.01231 0.04219,0.01231 0.04395,0.01055 0.04219,0.0088 0.04395,0.01055 0.04219,0.007 0.04395,0.0088 0.04219,0.007 0.04219,0.0053 0.04395,0.007 0.04219,0.0053 0.04395,0.0035 0.04219,0.007 0.04395,0.0035 0.04219,0.0053 0.04395,0.0035 0.04219,0.0018 0.04395,0.0035 0.04219,0.0035 0.04395,0.0018 0.04219,0.0035 0.04395,0.0018 0.04219,0.0018 0.04395,0.0035 h 0.04219 l 0.04395,0.0018 0.04219,0.0018 h 0.04395 l 0.04219,0.0018 h 0.04219 l 0.04395,0.0018 h 0.04219 l 0.04395,0.0018 h 0.04219 0.04395 l 0.04219,0.0035 h 0.04395 0.04219 0.04395 0.04219 l 0.04395,0.0018 h 0.04219 0.04395 0.04219 0.04395 0.04219 0.04395 0.04219 0.04395" id="path6" style="fill:none;fill-rule:evenodd;stroke:#cc6600;stroke-width:0.35;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" />
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1" id="svg2" sodipodi:docname="planck.svg" inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
3
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:svg="http://www.w3.org/2000/svg">
7
+ <defs id="defs2" />
8
+ <sodipodi:namedview id="namedview2" pagecolor="#505050" bordercolor="#ffffff" borderopacity="1" inkscape:showpageshadow="0" inkscape:pageopacity="0" inkscape:pagecheckerboard="1" inkscape:deskcolor="#505050" inkscape:zoom="57.642857" inkscape:cx="7" inkscape:cy="7" inkscape:window-width="1920" inkscape:window-height="1009" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" inkscape:current-layer="svg2" />
9
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" id="rect1" />
10
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" id="rect2" />
11
+ <path class="fil1 str1" d="m 0.57018818,11.45747 v 0 h 0.042194 0.043952 0.042194 0.043952 0.042194 0.043952 0.042194 0.043952 l 0.042194,-0.0018 h 0.042194 0.043952 0.042194 0.043952 l 0.042194,-0.0035 h 0.043952 0.042194 l 0.043952,-0.0018 h 0.042194 l 0.043952,-0.0018 h 0.042194 l 0.043952,-0.0018 h 0.042194 l 0.043952,-0.0018 0.042194,-0.0018 h 0.043952 l 0.042194,-0.0035 0.043952,-0.0018 0.042194,-0.0018 0.043952,-0.0035 0.042194,-0.0018 0.042194,-0.0035 0.043952,-0.0035 0.042194,-0.0018 0.043952,-0.0035 0.042194,-0.0053 0.043952,-0.0035 0.042194,-0.007 0.043952,-0.0035 0.042194,-0.0053 0.043952,-0.007 0.042194,-0.0053 0.043952,-0.007 0.042194,-0.0088 0.043952,-0.007 0.042194,-0.01055 0.043952,-0.0088 0.042194,-0.01055 0.04395,-0.01231 0.04219,-0.01231 0.04044,-0.01055 0.04395,-0.01231 0.04219,-0.01758 0.04395,-0.01406 0.04219,-0.01758 0.04395,-0.01758 0.04219,-0.01934 0.04395,-0.0211 0.04219,-0.0211 0.04395,-0.02461 0.04219,-0.02461 0.04395,-0.02637 0.04219,-0.02637 0.04395,-0.03165 0.04219,-0.02989 0.04395,-0.0334 0.04219,-0.03692 0.04219,-0.03692 0.04395,-0.03868 0.04219,-0.04044 0.04395,-0.04571 0.04219,-0.04395 0.04395,-0.04923 0.04219,-0.04923 0.04395,-0.0545 0.04219,-0.05626 0.04395,-0.05802 0.04219,-0.06153 0.04395,-0.06329 0.04219,-0.06681 0.04395,-0.07032 0.04219,-0.07384 0.04395,-0.0756 0.04219,-0.077356 0.04395,-0.08263 0.04219,-0.086146 0.04395,-0.087904 0.04219,-0.093178 0.04219,-0.093178 0.04395,-0.098453 0.04219,-0.1002106 0.04395,-0.1054848 0.04219,-0.1054848 0.04395,-0.110759 0.04219,-0.115793 0.04395,-0.1159913 0.04219,-0.1195494 0.04395,-0.1213075 0.04219,-0.1283399 0.04395,-0.1265817 0.04219,-0.1336141 0.04395,-0.1336141 0.04219,-0.1336141 0.04395,-0.1406464 0.04219,-0.1406464 0.04395,-0.1441625 0.04219,-0.1424045 0.04395,-0.1476787 0.04219,-0.1476787 0.04219,-0.1494368 0.04395,-0.1511949 0.04219,-0.152953 0.04395,-0.1511949 0.04219,-0.1529529 0.04395,-0.1547111 0.04219,-0.1529529 0.04395,-0.1547111 0.04219,-0.1511948 0.04395,-0.152953 0.04219,-0.1494368 0.04395,-0.1494368 0.04219,-0.1511949 0.04395,-0.1441625 0.04219,-0.1459207 0.04395,-0.1406464 0.04219,-0.1424045 0.04395,-0.1353721 0.04219,-0.1336141 0.04395,-0.1300979 0.04219,-0.1248237 0.04219,-0.1230656 0.04395,-0.1195494 0.04219,-0.1125172 0.04395,-0.1090009 0.04219,-0.1037267 0.04395,-0.098453 0.04219,-0.09142 0.04395,-0.089662 0.04219,-0.079114 0.04395,-0.075597 0.04219,-0.070323 0.04395,-0.061533 0.04219,-0.056259 0.04395,-0.049226 0.04219,-0.042194 0.04395,-0.03692 0.04219,-0.028129 0.04395,-0.021097 0.04219,-0.014065 0.04395,-0.00703 h 0.04044 l 0.04219,0.00703 0.04395,0.014065 0.04219,0.021097 0.04395,0.028129 0.04219,0.03692 0.04395,0.042194 0.04219,0.049226 0.04395,0.056259 0.04219,0.061533 0.04395,0.070323 0.04219,0.075597 0.04219,0.079114 0.04395,0.089662 0.04219,0.09142 0.04395,0.098453 0.04219,0.1037267 0.04395,0.1090009 0.04219,0.1125172 0.04395,0.1195494 0.04219,0.1230656 0.04395,0.1248237 0.04219,0.1300979 0.04395,0.1336141 0.04219,0.1353721 0.04395,0.1424045 0.04219,0.1406464 0.04395,0.1459207 0.04219,0.1441625 0.04395,0.1511949 0.04219,0.1494368 0.04395,0.1494368 0.04219,0.152953 0.04219,0.1511948 0.04395,0.1547111 0.04219,0.1529529 0.04395,0.1547111 0.04219,0.1529529 0.04395,0.1511949 0.04219,0.152953 0.04395,0.1511949 0.04219,0.1494368 0.04395,0.1476787 0.04219,0.1476787 0.04395,0.1424045 0.04219,0.1441625 0.04395,0.1406464 0.04219,0.1406464 0.04395,0.1336141 0.04219,0.1336141 0.04395,0.1336141 0.04219,0.1265817 0.04395,0.1283399 0.04219,0.1213075 0.04219,0.1195494 0.04395,0.1160333 0.04219,0.1160333 0.04395,0.110759 0.04219,0.1054848 0.04395,0.1054848 0.04219,0.1002106 0.04395,0.098453 0.04219,0.093178 0.04395,0.093178 0.04219,0.087904 0.04395,0.086146 0.04219,0.08263 0.04395,0.077356 0.04219,0.0756 0.04395,0.07384 0.04219,0.07032 0.04395,0.06681 0.04219,0.06329 0.04395,0.06153 0.04219,0.05802 0.04219,0.05626 0.04395,0.0545 0.04219,0.04923 0.04395,0.04923 0.04219,0.04395 0.04395,0.04571 0.04219,0.04044 0.04395,0.03868 0.04219,0.03692 0.04395,0.03692 0.04219,0.0334 0.04395,0.02989 0.04219,0.03165 0.04395,0.02637 0.04219,0.02637 0.04395,0.02461 0.04219,0.02461 0.04395,0.0211 0.04219,0.0211 0.04395,0.01934 0.04219,0.01758 0.04219,0.01758 0.04395,0.01406 0.04219,0.01758 0.04395,0.01231 0.04044,0.01055 0.04395,0.01231 0.04219,0.01231 0.04395,0.01055 0.04219,0.0088 0.04395,0.01055 0.04219,0.007 0.04395,0.0088 0.04219,0.007 0.04219,0.0053 0.04395,0.007 0.04219,0.0053 0.04395,0.0035 0.04219,0.007 0.04395,0.0035 0.04219,0.0053 0.04395,0.0035 0.04219,0.0018 0.04395,0.0035 0.04219,0.0035 0.04395,0.0018 0.04219,0.0035 0.04395,0.0018 0.04219,0.0018 0.04395,0.0035 h 0.04219 l 0.04395,0.0018 0.04219,0.0018 h 0.04395 l 0.04219,0.0018 h 0.04219 l 0.04395,0.0018 h 0.04219 l 0.04395,0.0018 h 0.04219 0.04395 l 0.04219,0.0035 h 0.04395 0.04219 0.04395 0.04219 l 0.04395,0.0018 h 0.04219 0.04395 0.04219 0.04395 0.04219 0.04395 0.04219 0.04395" id="path6" style="fill:none;fill-rule:evenodd;stroke:#ff6600;stroke-width:0.35;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" />
12
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1"
3
+ xmlns="http://www.w3.org/2000/svg">
4
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" />
5
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" />
6
+ <path style="fill:none;stroke:#336699;stroke-width:0.35;stroke-linejoin:round" d="M 1.5,2 C 2,3 2.5,5 3,7.5 3.5,10 4,11.5 4.8,12 5.5,11.8 6.2,10.5 7,8 7.8,5.5 8.5,3.5 9.2,2.5 10,2 10.8,2.5 11.5,4 12,5.5 12.5,7.5 13,10" />
7
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1" id="svg2" sodipodi:docname="pulse.svg" inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
3
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:svg="http://www.w3.org/2000/svg">
7
+ <defs id="defs2" />
8
+ <sodipodi:namedview id="namedview2" pagecolor="#505050" bordercolor="#ffffff" borderopacity="1" inkscape:showpageshadow="0" inkscape:pageopacity="0" inkscape:pagecheckerboard="1" inkscape:deskcolor="#505050" inkscape:zoom="57.642857" inkscape:cx="7" inkscape:cy="7" inkscape:window-width="1920" inkscape:window-height="1009" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" inkscape:current-layer="svg2" />
9
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" id="rect1" />
10
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" id="rect2" />
11
+ <path style="fill:none;stroke:#0066ff;stroke-width:0.35;stroke-linejoin:round" d="M 1.5,12 C 3.197026,12.037794 4.5991326,11.731722 5.2123916,11.02974 5.8736059,10.070632 6.5092937,5.7317224 6.7806691,4.110285 6.9857497,3.1674102 7.0876894,1.8876894 7.5,2.3 7.8678848,2.6678848 8.0578428,5.3537967 8.9613712,7.8489421 9.5517747,9.4793753 10.718182,12.25735 13.160471,12.135068" id="path2" sodipodi:nodetypes="cccssc" />
12
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg width="14" height="14" viewBox="0 0 14 14" version="1.1" id="svg5" sodipodi:docname="ring.svg" inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
3
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:svg="http://www.w3.org/2000/svg">
7
+ <defs id="defs5" />
8
+ <sodipodi:namedview id="namedview5" pagecolor="#505050" bordercolor="#ffffff" borderopacity="1" inkscape:showpageshadow="0" inkscape:pageopacity="0" inkscape:pagecheckerboard="1" inkscape:deskcolor="#505050" inkscape:zoom="57.642857" inkscape:cx="7" inkscape:cy="7" inkscape:window-width="1920" inkscape:window-height="1009" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" inkscape:current-layer="svg5" />
9
+ <rect style="fill:#440154;fill-opacity:1;stroke:none;stroke-width:1.2228;stroke-dasharray:none" id="rect3" width="10.5" height="10.5" x="1.75" y="1.75" />
10
+ <!-- Gray axes -->
11
+ <line x1="7" y1="1" x2="7" y2="13" stroke="#696969" stroke-width="0.53" id="line1" />
12
+ <line x1="1" y1="7" x2="13" y2="7" stroke="#696969" stroke-width="0.53" id="line2" />
13
+ <!-- Ring pattern (concentric circles) -->
14
+ <circle cx="7" cy="7" r="5" fill="none" stroke="#8c564b" stroke-width="0.5" id="circle2" style="stroke:#eee51c;stroke-opacity:1" />
15
+ <circle cx="7" cy="7" r="3.8" fill="none" stroke="#8c564b" stroke-width="0.5" id="circle3" style="stroke:#eee51c;stroke-opacity:1" />
16
+ <circle cx="7" cy="7" r="2.6" fill="none" stroke="#8c564b" stroke-width="0.5" id="circle4" style="stroke:#eee51c;stroke-opacity:1" />
17
+ <circle cx="7" cy="7" r="1.4" fill="none" stroke="#8c564b" stroke-width="0.5" id="circle5" style="stroke:#eee51c;stroke-opacity:1" />
18
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1"
3
+ xmlns="http://www.w3.org/2000/svg">
4
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" />
5
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" />
6
+ <path style="fill:none;stroke:#cc0066;stroke-width:0.35;stroke-linejoin:miter" d="M 1.5,12 L 4,2.5 L 4,12 L 6.5,2.5 L 6.5,12 L 9,2.5 L 9,12 L 11.5,2.5 L 11.5,12" />
7
+ </svg>
@@ -0,0 +1,35 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg width="14" height="14" viewBox="0 0 14 14" version="1.1" id="svg14" sodipodi:docname="siemens.svg" inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
3
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:svg="http://www.w3.org/2000/svg">
7
+ <defs id="defs14" />
8
+ <sodipodi:namedview id="namedview14" pagecolor="#505050" bordercolor="#ffffff" borderopacity="1" inkscape:showpageshadow="0" inkscape:pageopacity="0" inkscape:pagecheckerboard="1" inkscape:deskcolor="#505050" inkscape:zoom="57.642857" inkscape:cx="7" inkscape:cy="7" inkscape:window-width="1920" inkscape:window-height="1009" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" inkscape:current-layer="svg14" />
9
+ <rect style="fill:#440154;fill-opacity:1;stroke:none;stroke-width:1.2228;stroke-dasharray:none" id="rect3" width="10.5" height="10.5" x="1.75" y="1.75" />
10
+ <line x1="7" y1="1" x2="7" y2="13" stroke="#696969" stroke-width="0.53" id="line1" />
11
+ <line x1="1" y1="7" x2="13" y2="7" stroke="#696969" stroke-width="0.53" id="line2" />
12
+ <path id="rect14" style="fill:#eee51c;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="m 6.25,2 h 1.5 L 7.0000001,7 Z" sodipodi:nodetypes="cccc" />
13
+ <path id="rect14-9" style="fill:#eee51c;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="m 12,6.25 v 1.5 L 7,7 Z" sodipodi:nodetypes="cccc" />
14
+ <g id="g14">
15
+ <path id="rect14-9-1" style="fill:#eee51c;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="m 11.705126,8.8504809 -0.75,1.2990381 L 7,7 Z" sodipodi:nodetypes="cccc" />
16
+ <path id="rect14-9-1-1" style="fill:#aa8933;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="M 10.149519,10.955127 8.8504799,11.705128 7,7 Z" sodipodi:nodetypes="cccc" />
17
+ </g>
18
+ <g id="g14-2" transform="rotate(-90,7,7)">
19
+ <path id="rect14-9-1-16" style="fill:#eee51c;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="m 11.705126,8.8504809 -0.75,1.2990381 L 7,7 Z" sodipodi:nodetypes="cccc" />
20
+ <path id="rect14-9-1-1-8" style="fill:#aa8933;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="M 10.149519,10.955127 8.8504799,11.705128 7,7 Z" sodipodi:nodetypes="cccc" />
21
+ </g>
22
+ <g id="g14-2-7" transform="rotate(180,7,7)">
23
+ <path id="rect14-9-1-16-6" style="fill:#eee51c;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="m 11.705126,8.8504809 -0.75,1.2990381 L 7,7 Z" sodipodi:nodetypes="cccc" />
24
+ <path id="rect14-9-1-1-8-1" style="fill:#aa8933;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="M 10.149519,10.955127 8.8504799,11.705128 7,7 Z" sodipodi:nodetypes="cccc" />
25
+ </g>
26
+ <g id="g14-2-7-9" transform="rotate(90,7.0000001,6.9999999)">
27
+ <path id="rect14-9-1-16-6-2" style="fill:#eee51c;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="m 11.705126,8.8504809 -0.75,1.2990381 L 7,7 Z" sodipodi:nodetypes="cccc" />
28
+ <path id="rect14-9-1-1-8-1-7" style="fill:#aa8933;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="M 10.149519,10.955127 8.8504799,11.705128 7,7 Z" sodipodi:nodetypes="cccc" />
29
+ </g>
30
+ <path id="rect14-8" style="fill:#eee51c;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="M 2,7.75 V 6.25 L 7,7 Z" sodipodi:nodetypes="cccc" />
31
+ <path id="rect14-2" style="fill:#eee51c;fill-opacity:1;stroke-width:0.804093;paint-order:stroke fill markers" d="M 7.75,12 H 6.25 L 6.9999999,6.9999998 Z" sodipodi:nodetypes="cccc" />
32
+ <!-- Gray axes -->
33
+ <!-- Siemens star pattern (radial lines from center) -->
34
+ <!-- Additional intermediate lines -->
35
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1" id="svg2" sodipodi:docname="sinc.svg" inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
3
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:svg="http://www.w3.org/2000/svg">
7
+ <defs id="defs2" />
8
+ <sodipodi:namedview id="namedview2" pagecolor="#505050" bordercolor="#ffffff" borderopacity="1" inkscape:showpageshadow="0" inkscape:pageopacity="0" inkscape:pagecheckerboard="1" inkscape:deskcolor="#505050" inkscape:zoom="57.642857" inkscape:cx="7" inkscape:cy="7" inkscape:window-width="1920" inkscape:window-height="1009" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" inkscape:current-layer="svg2" />
9
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" id="rect1" />
10
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" id="rect2" />
11
+ <path style="fill:none;stroke:#3399cc;stroke-width:0.35;stroke-linejoin:round" d="m 1,8.5 c 0.5,1 1,1.3 1.5,1 C 3,9 3.9,7.5 4.4,6 4.9,4.5 5.6,3 6.1,2.5 6.6,2 6.6568123,2 7,2 7.3431877,2 7.4,2 7.9,2.5 8.4,3 9.1,4.5 9.6,6 c 0.5,1.5 1.4,3 1.9,3.5 0.5,0.3 1,0 1.5,-1" id="path2" sodipodi:nodetypes="ccssasscc" />
12
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1"
3
+ xmlns="http://www.w3.org/2000/svg">
4
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" />
5
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" />
6
+ <path style="fill:none;stroke:#0099cc;stroke-width:0.35;stroke-linejoin:round" d="M 1,7 C 1.5,5 2,3.5 2.8,2.5 3.5,1.5 4.2,2 4.8,3 5.5,4.5 6,6.5 6.5,8.5 7,10 7.5,11.5 8.2,12 8.8,12.5 9.5,12 10.2,11 10.8,9.5 11.5,7.5 12,5.5 12.5,4 13,3 13,2" />
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1"
3
+ xmlns="http://www.w3.org/2000/svg">
4
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" />
5
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" />
6
+ <path style="fill:none;stroke:#6600cc;stroke-width:0.35;stroke-linejoin:miter" d="M 1.5,12 L 1.5,2.5 L 3.5,2.5 L 3.5,12 L 5.5,12 L 5.5,2.5 L 7.5,2.5 L 7.5,12 L 9.5,12 L 9.5,2.5 L 11.5,2.5 L 11.5,12" />
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1"
3
+ xmlns="http://www.w3.org/2000/svg">
4
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" />
5
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" />
6
+ <path style="fill:none;stroke:#ff6699;stroke-width:0.35;stroke-linejoin:miter" d="M 1.5,12 L 3,12 C 3.5,11 4,9 4.5,6 5,3.5 5.5,2.5 6,2.5 L 8,2.5 C 8.5,2.5 9,3.5 9.5,6 10,9 10.5,11 11,12 L 12.5,12" />
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1"
3
+ xmlns="http://www.w3.org/2000/svg">
4
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" />
5
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" />
6
+ <path style="fill:none;stroke:#cc9900;stroke-width:0.35;stroke-linejoin:miter" d="M 1.5,12 L 7,12 L 7,2.5 L 12.5,2.5" />
7
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1" id="svg2" sodipodi:docname="step_pulse.svg" inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
3
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:svg="http://www.w3.org/2000/svg">
7
+ <defs id="defs2" />
8
+ <sodipodi:namedview id="namedview2" pagecolor="#505050" bordercolor="#ffffff" borderopacity="1" inkscape:showpageshadow="0" inkscape:pageopacity="0" inkscape:pagecheckerboard="1" inkscape:deskcolor="#505050" inkscape:zoom="57.642857" inkscape:cx="7" inkscape:cy="7" inkscape:window-width="1920" inkscape:window-height="1009" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" inkscape:current-layer="svg2" />
9
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" id="rect1" />
10
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" id="rect2" />
11
+ <path style="fill:none;stroke:#ff3366;stroke-width:0.35;stroke-linejoin:round" d="m 1.5,12 h 2 C 4,11 4.5,9 5,6 5.5,3.5 6,2.5 6.5,2.5 H 9 12" id="path2" sodipodi:nodetypes="cccscc" />
12
+ </svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1"
3
+ xmlns="http://www.w3.org/2000/svg">
4
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" />
5
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" />
6
+ <path style="fill:none;stroke:#cc3399;stroke-width:0.35;stroke-linejoin:miter" d="M 1.5,12 L 2.75,2.5 L 4,12 L 5.25,2.5 L 6.5,12 L 7.75,2.5 L 9,12 L 10.25,2.5 L 11.5,12" />
7
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg role="img" focusable="false" aria-hidden="true" viewBox="0 0 14 14" version="1.1" id="svg2" sodipodi:docname="voigt.svg" inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
3
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:svg="http://www.w3.org/2000/svg">
7
+ <defs id="defs2" />
8
+ <sodipodi:namedview id="namedview2" pagecolor="#505050" bordercolor="#ffffff" borderopacity="1" inkscape:showpageshadow="0" inkscape:pageopacity="0" inkscape:pagecheckerboard="1" inkscape:deskcolor="#505050" inkscape:zoom="57.642857" inkscape:cx="7" inkscape:cy="7" inkscape:window-width="1920" inkscape:window-height="1009" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" inkscape:current-layer="svg2" />
9
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.547874" width="0.53186357" height="12.584304" x="6.7340684" y="0.70784807" id="rect1" />
10
+ <rect style="fill:#696969;fill-opacity:1;stroke-width:0.54642" width="0.53186357" height="12.5176" x="6.7340684" y="-13.258801" transform="rotate(90)" id="rect2" />
11
+ <path class="fil1 str1" d="m 0.57018818,11.457471 v 0 h 0.042194 0.043952 0.042194 0.043952 0.042194 0.043952 0.042194 0.043952 l 0.042194,-0.0018 h 0.042194 0.043952 0.042194 0.043952 l 0.042194,-0.0035 h 0.043952 0.042194 l 0.043952,-0.0018 h 0.042194 l 0.043952,-0.0018 h 0.042194 l 0.043952,-0.0018 h 0.042194 l 0.043952,-0.0018 0.042194,-0.0018 h 0.043952 l 0.042194,-0.0035 0.043952,-0.0018 0.042194,-0.0018 0.043952,-0.0035 0.042194,-0.0018 0.042194,-0.0035 0.043952,-0.0035 0.042194,-0.0018 0.043952,-0.0035 0.042194,-0.0053 0.043952,-0.0035 0.042194,-0.007 0.043952,-0.0035 0.042194,-0.0053 0.043952,-0.007 0.042194,-0.0053 0.043952,-0.007 0.042194,-0.0088 0.043952,-0.007 0.042194,-0.01055 0.043952,-0.0088 0.042194,-0.01055 0.04395,-0.01231 0.04219,-0.01231 0.04044,-0.01055 0.04395,-0.01231 0.04219,-0.01758 0.04395,-0.01406 0.04219,-0.01758 0.04395,-0.01758 0.04219,-0.01934 0.04395,-0.0211 0.04219,-0.0211 0.04395,-0.02461 0.04219,-0.02461 0.04395,-0.02637 0.04219,-0.02637 0.04395,-0.03165 0.04219,-0.02989 0.04395,-0.0334 0.04219,-0.03692 0.04219,-0.03692 0.04395,-0.03868 0.04219,-0.04044 0.04395,-0.04571 0.04219,-0.04395 0.04395,-0.04923 0.04219,-0.04923 0.04395,-0.0545 0.04219,-0.05626 0.04395,-0.05802 0.04219,-0.06153 0.04395,-0.06329 0.04219,-0.06681 0.04395,-0.07032 0.04219,-0.07384 0.04395,-0.0756 0.04219,-0.077356 0.04395,-0.08263 0.04219,-0.086146 0.04395,-0.087904 0.04219,-0.093178 0.04219,-0.093178 0.04395,-0.098453 0.04219,-0.1002106 0.04395,-0.1054848 0.04219,-0.1054848 0.04395,-0.110759 0.04219,-0.115793 0.04395,-0.1159912 0.04219,-0.1195494 0.04395,-0.1213075 0.04219,-0.1283399 0.04395,-0.1265817 0.04219,-0.1336141 0.04395,-0.1336141 0.04219,-0.1336141 0.04395,-0.1406464 0.04219,-0.1406464 0.04395,-0.1441625 0.04219,-0.1424045 0.04395,-0.1476787 0.04219,-0.1476787 0.04219,-0.1494368 0.04395,-0.1511949 0.04219,-0.152953 0.04395,-0.1511949 0.04219,-0.1529529 0.04395,-0.1547111 0.04219,-0.1529529 0.04395,-0.1547111 0.04219,-0.1511948 0.04395,-0.152953 0.04219,-0.1494368 0.04395,-0.1494368 0.04219,-0.1511949 0.04395,-0.1441625 0.04219,-0.1459207 0.04395,-0.1406464 0.04219,-0.1424045 0.04395,-0.1353721 0.04219,-0.1336141 0.04395,-0.1300979 0.04219,-0.1248237 0.04219,-0.1230656 0.04395,-0.1195494 0.04219,-0.1125172 0.04395,-0.1090009 0.04219,-0.1037267 0.04395,-0.098453 0.04219,-0.09142 0.04395,-0.089662 0.04219,-0.079114 0.04395,-0.075597 0.04219,-0.070323 0.04395,-0.061533 0.04219,-0.056259 0.04395,-0.049226 0.04219,-0.042194 0.04395,-0.03692 0.04219,-0.028129 0.04395,-0.021097 0.04219,-0.014065 0.04395,-0.00703 h 0.04044 l 0.04219,0.00703 0.04395,0.014065 0.04219,0.021097 0.04395,0.028129 0.04219,0.03692 0.04395,0.042194 0.04219,0.049226 0.04395,0.056259 0.04219,0.061533 0.04395,0.070323 0.04219,0.075597 0.04219,0.079114 0.04395,0.089662 0.04219,0.09142 0.04395,0.098453 0.04219,0.1037267 0.04395,0.1090009 0.04219,0.1125172 0.04395,0.1195494 0.04219,0.1230656 0.04395,0.1248237 0.04219,0.1300979 0.04395,0.1336141 0.04219,0.1353721 0.04395,0.1424045 0.04219,0.1406464 0.04395,0.1459207 0.04219,0.1441625 0.04395,0.1511949 0.04219,0.1494368 0.04395,0.1494368 0.04219,0.152953 0.04219,0.1511948 0.04395,0.1547111 0.04219,0.1529529 0.04395,0.1547111 0.04219,0.1529529 0.04395,0.1511949 0.04219,0.152953 0.04395,0.1511949 0.04219,0.1494368 0.04395,0.1476787 0.04219,0.1476787 0.04395,0.1424045 0.04219,0.1441625 0.04395,0.1406464 0.04219,0.1406464 0.04395,0.1336141 0.04219,0.1336141 0.04395,0.1336141 0.04219,0.1265817 0.04395,0.1283399 0.04219,0.1213075 0.04219,0.1195494 0.04395,0.1160333 0.04219,0.1160333 0.04395,0.110759 0.04219,0.1054848 0.04395,0.1054848 0.04219,0.1002106 0.04395,0.098453 0.04219,0.093178 0.04395,0.093178 0.04219,0.087904 0.04395,0.086146 0.04219,0.08263 0.04395,0.077356 0.04219,0.0756 0.04395,0.07384 0.04219,0.07032 0.04395,0.06681 0.04219,0.06329 0.04395,0.06153 0.04219,0.05802 0.04219,0.05626 0.04395,0.0545 0.04219,0.04923 0.04395,0.04923 0.04219,0.04395 0.04395,0.04571 0.04219,0.04044 0.04395,0.03868 0.04219,0.03692 0.04395,0.03692 0.04219,0.0334 0.04395,0.02989 0.04219,0.03165 0.04395,0.02637 0.04219,0.02637 0.04395,0.02461 0.04219,0.02461 0.04395,0.0211 0.04219,0.0211 0.04395,0.01934 0.04219,0.01758 0.04219,0.01758 0.04395,0.01406 0.04219,0.01758 0.04395,0.01231 0.04044,0.01055 0.04395,0.01231 0.04219,0.01231 0.04395,0.01055 0.04219,0.0088 0.04395,0.01055 0.04219,0.007 0.04395,0.0088 0.04219,0.007 0.04219,0.0053 0.04395,0.007 0.04219,0.0053 0.04395,0.0035 0.04219,0.007 0.04395,0.0035 0.04219,0.0053 0.04395,0.0035 0.04219,0.0018 0.04395,0.0035 0.04219,0.0035 0.04395,0.0018 0.04219,0.0035 0.04395,0.0018 0.04219,0.0018 0.04395,0.0035 h 0.04219 l 0.04395,0.0018 0.04219,0.0018 h 0.04395 l 0.04219,0.0018 h 0.04219 l 0.04395,0.0018 h 0.04219 l 0.04395,0.0018 h 0.04219 0.04395 l 0.04219,0.0035 h 0.04395 0.04219 0.04395 0.04219 l 0.04395,0.0018 h 0.04219 0.04395 0.04219 0.04395 0.04219 0.04395 0.04219 0.04395" id="path6" style="fill:none;fill-rule:evenodd;stroke:#9933cc;stroke-width:0.35;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" />
12
+ </svg>
@@ -0,0 +1,72 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ role="img"
4
+ focusable="false"
5
+ aria-hidden="true"
6
+ viewBox="0 0 14 14"
7
+ id="svg2"
8
+ version="1.1"
9
+ inkscape:version="1.1 (c68e22c387, 2021-05-23)"
10
+ width="100%"
11
+ height="100%"
12
+ sodipodi:docname="edit_shapes.svg"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg"
17
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
18
+ xmlns:cc="http://creativecommons.org/ns#"
19
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
20
+ <metadata
21
+ id="metadata12">
22
+ <rdf:RDF>
23
+ <cc:Work
24
+ rdf:about="">
25
+ <dc:format>image/svg+xml</dc:format>
26
+ <dc:type
27
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1"
37
+ objecttolerance="10"
38
+ gridtolerance="10"
39
+ guidetolerance="10"
40
+ inkscape:pageopacity="0"
41
+ inkscape:pageshadow="2"
42
+ inkscape:window-width="1920"
43
+ inkscape:window-height="1017"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="16.857143"
47
+ inkscape:cx="7.029661"
48
+ inkscape:cy="7.029661"
49
+ inkscape:window-x="-8"
50
+ inkscape:window-y="-8"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg2"
53
+ inkscape:pagecheckerboard="0" />
54
+ <rect
55
+ style="fill:#ffeeaa;stroke:#aa8800;stroke-width:0.6;stroke-miterlimit:4;stroke-dasharray:none"
56
+ id="rect924"
57
+ width="6.4067798"
58
+ height="5.6949153"
59
+ x="6.7033896"
60
+ y="6.9406781" />
61
+ <ellipse
62
+ style="fill:#aaffaa;stroke:#008000;stroke-width:0.6;stroke-miterlimit:4;stroke-dasharray:none"
63
+ id="path1036"
64
+ cx="5.724576"
65
+ cy="4.5974574"
66
+ rx="4.4788136"
67
+ ry="3.2923729" />
68
+ <path
69
+ style="fill:#ff6600;stroke:#d45500;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
70
+ d="M 1.9576271,12.161017 C 13.050847,5.398305 13.050847,5.398305 13.050847,5.398305"
71
+ id="path1169" />
72
+ </svg>
@@ -0,0 +1,114 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ role="img"
4
+ focusable="false"
5
+ aria-hidden="true"
6
+ viewBox="0 0 14 14"
7
+ id="svg2"
8
+ version="1.1"
9
+ inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
10
+ width="100%"
11
+ height="100%"
12
+ sodipodi:docname="annotations_copy.svg"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg"
17
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
18
+ xmlns:cc="http://creativecommons.org/ns#"
19
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
20
+ <metadata
21
+ id="metadata12">
22
+ <rdf:RDF>
23
+ <cc:Work
24
+ rdf:about="">
25
+ <dc:format>image/svg+xml</dc:format>
26
+ <dc:type
27
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1"
37
+ objecttolerance="10"
38
+ gridtolerance="10"
39
+ guidetolerance="10"
40
+ inkscape:pageopacity="0"
41
+ inkscape:pageshadow="2"
42
+ inkscape:window-width="1920"
43
+ inkscape:window-height="1009"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="16.857143"
47
+ inkscape:cx="7.029661"
48
+ inkscape:cy="7.148305"
49
+ inkscape:window-x="-8"
50
+ inkscape:window-y="-8"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg2"
53
+ inkscape:pagecheckerboard="0"
54
+ inkscape:showpageshadow="0"
55
+ inkscape:deskcolor="#505050" />
56
+ <g
57
+ id="g1"
58
+ transform="translate(0.1779661,0.47457627)">
59
+ <rect
60
+ style="fill:#ffeeaa;stroke:#aa8800;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
61
+ id="rect924"
62
+ width="5.309072"
63
+ height="4.7191753"
64
+ x="2.1643627"
65
+ y="6.5601668" />
66
+ <ellipse
67
+ style="fill:#aaffaa;stroke:#008000;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
68
+ id="path1036"
69
+ cx="4.2600341"
70
+ cy="4.6777449"
71
+ rx="3.7114346"
72
+ ry="2.7282732" />
73
+ <path
74
+ style="fill:#ff6600;stroke:#d45500;stroke-width:0.828665px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
75
+ d="M 0.24866609,10.589467 C 9.4412254,4.9854466 9.4412254,4.9854466 9.4412254,4.9854466"
76
+ id="path1169" />
77
+ </g>
78
+ <g
79
+ id="g306"
80
+ transform="matrix(0.83676874,0,0,0.83676874,2.6836548,1.7958618)">
81
+ <rect
82
+ style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
83
+ id="rect955"
84
+ width="3.6778848"
85
+ height="6.3810096"
86
+ x="4.0258412"
87
+ y="2.4609373" />
88
+ <rect
89
+ style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
90
+ id="rect955-6"
91
+ width="3.6778843"
92
+ height="4.3371396"
93
+ x="5.3046875"
94
+ y="4.5048075" />
95
+ <rect
96
+ style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
97
+ id="rect955-68"
98
+ width="3.6778848"
99
+ height="6.3810096"
100
+ x="7.7433882"
101
+ y="4.9393029" />
102
+ <rect
103
+ style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
104
+ id="rect955-6-6"
105
+ width="3.6778843"
106
+ height="4.3371396"
107
+ x="9.022234"
108
+ y="6.9831729" />
109
+ <path
110
+ d="M 11.460937,4.5048077 H 9.6021631 V 3.8852163 L 7.7433894,2.0264423 H 3.40625 v 7.4350961 h 3.717548 v 2.4783646 h 6.195913 V 6.3635817 Z m 0,0.8762376 0.982539,0.9825364 H 11.460937 Z M 7.7433894,2.9026799 8.7259291,3.8852163 H 7.7433894 Z M 4.0258413,2.6460336 H 7.123798 V 4.5048077 H 8.982572 V 8.841947 H 4.0258413 Z M 12.700119,11.320312 H 7.7433894 V 9.4615384 H 9.6021631 V 5.124399 h 1.2391829 v 1.858774 h 1.858773 z"
111
+ id="path2-0"
112
+ style="fill:#ff6600;stroke-width:0.826122" />
113
+ </g>
114
+ </svg>
@@ -0,0 +1,83 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ role="img"
4
+ focusable="false"
5
+ aria-hidden="true"
6
+ viewBox="0 0 14 14"
7
+ id="svg2"
8
+ version="1.1"
9
+ inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
10
+ width="100%"
11
+ height="100%"
12
+ sodipodi:docname="annotations_delete.svg"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg"
17
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
18
+ xmlns:cc="http://creativecommons.org/ns#"
19
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
20
+ <metadata
21
+ id="metadata12">
22
+ <rdf:RDF>
23
+ <cc:Work
24
+ rdf:about="">
25
+ <dc:format>image/svg+xml</dc:format>
26
+ <dc:type
27
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1"
37
+ objecttolerance="10"
38
+ gridtolerance="10"
39
+ guidetolerance="10"
40
+ inkscape:pageopacity="0"
41
+ inkscape:pageshadow="2"
42
+ inkscape:window-width="1920"
43
+ inkscape:window-height="1009"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="16.857143"
47
+ inkscape:cx="7.029661"
48
+ inkscape:cy="7.148305"
49
+ inkscape:window-x="-8"
50
+ inkscape:window-y="-8"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg2"
53
+ inkscape:pagecheckerboard="0"
54
+ inkscape:showpageshadow="0"
55
+ inkscape:deskcolor="#505050" />
56
+ <g
57
+ id="g1"
58
+ transform="translate(0.1779661,0.47457627)">
59
+ <rect
60
+ style="fill:#ffeeaa;stroke:#aa8800;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
61
+ id="rect924"
62
+ width="5.309072"
63
+ height="4.7191753"
64
+ x="2.1643627"
65
+ y="6.5601668" />
66
+ <ellipse
67
+ style="fill:#aaffaa;stroke:#008000;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
68
+ id="path1036"
69
+ cx="4.2600341"
70
+ cy="4.6777449"
71
+ rx="3.7114346"
72
+ ry="2.7282732" />
73
+ <path
74
+ style="fill:#ff6600;stroke:#d45500;stroke-width:0.828665px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
75
+ d="M 0.24866609,10.589467 C 9.4412254,4.9854466 9.4412254,4.9854466 9.4412254,4.9854466"
76
+ id="path1169" />
77
+ </g>
78
+ <path
79
+ fill="#ff0000"
80
+ d="m 5.5000002,5.4071996 q 0,-0.165174 0.115654,-0.280757 l 0.561792,-0.561642 q 0.11566,-0.115648 0.280892,-0.115648 0.165239,0 0.280893,0.115648 l 1.214467,1.214073 1.214461,-1.214073 q 0.115659,-0.115648 0.280891,-0.115648 0.1652386,0 0.2808926,0.115648 l 0.5617922,0.561642 q 0.11566,0.115583 0.11566,0.280757 0,0.165174 -0.11566,0.280822 l -1.2144608,1.214073 1.2144608,1.214073 q 0.11566,0.115583 0.11566,0.280757 0,0.165174 -0.11566,0.280821 l -0.5617922,0.561643 q -0.115654,0.115583 -0.2808926,0.115583 -0.165232,0 -0.280891,-0.115583 l -1.214461,-1.214073 -1.214467,1.214073 q -0.115654,0.115583 -0.280893,0.115583 -0.165232,0 -0.280892,-0.115583 l -0.561792,-0.561643 q -0.115654,-0.115647 -0.115654,-0.280821 0,-0.165174 0.115654,-0.280757 l 1.214467,-1.214073 -1.214467,-1.214073 q -0.115654,-0.115648 -0.115654,-0.280822 z"
81
+ id="path4"
82
+ style="stroke-width:0.645715" />
83
+ </svg>