dcscope 2.22.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.
Files changed (267) hide show
  1. dcscope/__init__.py +17 -0
  2. dcscope/__main__.py +44 -0
  3. dcscope/_version.py +21 -0
  4. dcscope/extensions.py +250 -0
  5. dcscope/gui/__init__.py +2 -0
  6. dcscope/gui/analysis/__init__.py +10 -0
  7. dcscope/gui/analysis/ana_basins.py +110 -0
  8. dcscope/gui/analysis/ana_basins.ui +143 -0
  9. dcscope/gui/analysis/ana_filter.py +341 -0
  10. dcscope/gui/analysis/ana_filter.ui +364 -0
  11. dcscope/gui/analysis/ana_log.py +122 -0
  12. dcscope/gui/analysis/ana_log.ui +100 -0
  13. dcscope/gui/analysis/ana_meta.py +207 -0
  14. dcscope/gui/analysis/ana_meta.ui +141 -0
  15. dcscope/gui/analysis/ana_plot.py +638 -0
  16. dcscope/gui/analysis/ana_plot.ui +1060 -0
  17. dcscope/gui/analysis/ana_slot.py +504 -0
  18. dcscope/gui/analysis/ana_slot.ui +684 -0
  19. dcscope/gui/analysis/ana_tables.py +227 -0
  20. dcscope/gui/analysis/ana_tables.ui +195 -0
  21. dcscope/gui/analysis/ana_view.py +69 -0
  22. dcscope/gui/analysis/ana_view.ui +269 -0
  23. dcscope/gui/analysis/dlg_slot_reorder.py +55 -0
  24. dcscope/gui/analysis/dlg_slot_reorder.ui +138 -0
  25. dcscope/gui/bulk/__init__.py +2 -0
  26. dcscope/gui/bulk/bulk_emodulus.py +200 -0
  27. dcscope/gui/bulk/bulk_emodulus.ui +245 -0
  28. dcscope/gui/compute/__init__.py +3 -0
  29. dcscope/gui/compute/comp_lme4.py +115 -0
  30. dcscope/gui/compute/comp_lme4.ui +194 -0
  31. dcscope/gui/compute/comp_lme4_dataset.py +51 -0
  32. dcscope/gui/compute/comp_lme4_dataset.ui +92 -0
  33. dcscope/gui/compute/comp_lme4_results.py +120 -0
  34. dcscope/gui/compute/comp_lme4_results.ui +268 -0
  35. dcscope/gui/compute/comp_stats.py +223 -0
  36. dcscope/gui/compute/comp_stats.ui +187 -0
  37. dcscope/gui/dcor/__init__.py +304 -0
  38. dcscope/gui/dcor/dcor.ui +118 -0
  39. dcscope/gui/export/__init__.py +3 -0
  40. dcscope/gui/export/e2data.py +394 -0
  41. dcscope/gui/export/e2data.ui +367 -0
  42. dcscope/gui/export/e2filter.py +76 -0
  43. dcscope/gui/export/e2filter.ui +111 -0
  44. dcscope/gui/export/e2plot.py +94 -0
  45. dcscope/gui/export/e2plot.ui +175 -0
  46. dcscope/gui/main.py +1089 -0
  47. dcscope/gui/main.ui +579 -0
  48. dcscope/gui/matrix/__init__.py +4 -0
  49. dcscope/gui/matrix/block_matrix.py +141 -0
  50. dcscope/gui/matrix/block_matrix.ui +207 -0
  51. dcscope/gui/matrix/data_matrix.py +574 -0
  52. dcscope/gui/matrix/dm_dataset.py +116 -0
  53. dcscope/gui/matrix/dm_dataset.ui +348 -0
  54. dcscope/gui/matrix/dm_element.py +111 -0
  55. dcscope/gui/matrix/dm_element.ui +169 -0
  56. dcscope/gui/matrix/dm_filter.py +115 -0
  57. dcscope/gui/matrix/dm_filter.ui +287 -0
  58. dcscope/gui/matrix/plot_matrix.py +316 -0
  59. dcscope/gui/matrix/pm_element.py +39 -0
  60. dcscope/gui/matrix/pm_plot.py +86 -0
  61. dcscope/gui/matrix/pm_plot.ui +249 -0
  62. dcscope/gui/pipeline_plot.py +797 -0
  63. dcscope/gui/pipeline_plot.ui +66 -0
  64. dcscope/gui/preferences.py +380 -0
  65. dcscope/gui/preferences.ui +554 -0
  66. dcscope/gui/quick_view/__init__.py +1 -0
  67. dcscope/gui/quick_view/qv_main.py +1072 -0
  68. dcscope/gui/quick_view/qv_main.ui +1297 -0
  69. dcscope/gui/quick_view/qv_scatter.py +284 -0
  70. dcscope/gui/quick_view/qv_style.css +10 -0
  71. dcscope/gui/update.py +90 -0
  72. dcscope/gui/widgets/__init__.py +15 -0
  73. dcscope/gui/widgets/bg_thread.py +29 -0
  74. dcscope/gui/widgets/bulk_list.py +79 -0
  75. dcscope/gui/widgets/bulk_list.ui +95 -0
  76. dcscope/gui/widgets/double_spin_box_nan.py +75 -0
  77. dcscope/gui/widgets/feature_combobox.py +140 -0
  78. dcscope/gui/widgets/get_path.py +42 -0
  79. dcscope/gui/widgets/key_value_table_widget.css +12 -0
  80. dcscope/gui/widgets/key_value_table_widget.py +75 -0
  81. dcscope/gui/widgets/mdi_subwindow_wo_close.py +12 -0
  82. dcscope/gui/widgets/qrangeslider.py +262 -0
  83. dcscope/gui/widgets/rangecontrol.py +308 -0
  84. dcscope/gui/widgets/rangecontrol.ui +136 -0
  85. dcscope/gui/widgets/simple_image_view.py +55 -0
  86. dcscope/gui/widgets/simple_plot_widget.py +113 -0
  87. dcscope/gui/widgets/so_colorbaritem.py +29 -0
  88. dcscope/gui/widgets/wait_cursor.py +33 -0
  89. dcscope/idiom.py +26 -0
  90. dcscope/img/__init__.py +2 -0
  91. dcscope/img/icon-theme/breeze/COPYING-ICONS +209 -0
  92. dcscope/img/icon-theme/breeze/COPYING.LIB +510 -0
  93. dcscope/img/icon-theme/breeze/README +5 -0
  94. dcscope/img/icon-theme/breeze/actions/16/application-exit.svg +17 -0
  95. dcscope/img/icon-theme/breeze/actions/16/code-context.svg +13 -0
  96. dcscope/img/icon-theme/breeze/actions/16/dialog-cancel.svg +13 -0
  97. dcscope/img/icon-theme/breeze/actions/16/dialog-close.svg +17 -0
  98. dcscope/img/icon-theme/breeze/actions/16/dialog-messages.svg +13 -0
  99. dcscope/img/icon-theme/breeze/actions/16/dialog-ok-apply.svg +13 -0
  100. dcscope/img/icon-theme/breeze/actions/16/dialog-ok.svg +13 -0
  101. dcscope/img/icon-theme/breeze/actions/16/document-open-folder.svg +13 -0
  102. dcscope/img/icon-theme/breeze/actions/16/document-open.svg +13 -0
  103. dcscope/img/icon-theme/breeze/actions/16/document-save.svg +13 -0
  104. dcscope/img/icon-theme/breeze/actions/16/documentinfo.svg +12 -0
  105. dcscope/img/icon-theme/breeze/actions/16/draw-watercolor.svg +13 -0
  106. dcscope/img/icon-theme/breeze/actions/16/edit-clear-all.svg +13 -0
  107. dcscope/img/icon-theme/breeze/actions/16/edit-clear.svg +13 -0
  108. dcscope/img/icon-theme/breeze/actions/16/edit-paste.svg +13 -0
  109. dcscope/img/icon-theme/breeze/actions/16/globe.svg +16 -0
  110. dcscope/img/icon-theme/breeze/actions/16/gtk-preferences.svg +13 -0
  111. dcscope/img/icon-theme/breeze/actions/16/list-add.svg +13 -0
  112. dcscope/img/icon-theme/breeze/actions/16/messagebox_warning.svg +20 -0
  113. dcscope/img/icon-theme/breeze/actions/16/object-columns.svg +13 -0
  114. dcscope/img/icon-theme/breeze/actions/16/object-order-lower.svg +13 -0
  115. dcscope/img/icon-theme/breeze/actions/16/object-rows.svg +13 -0
  116. dcscope/img/icon-theme/breeze/actions/16/office-chart-line-stacked.svg +13 -0
  117. dcscope/img/icon-theme/breeze/actions/16/office-chart-ring.svg +13 -0
  118. dcscope/img/icon-theme/breeze/actions/16/office-chart-scatter.svg +13 -0
  119. dcscope/img/icon-theme/breeze/actions/16/path-mode-polyline.svg +13 -0
  120. dcscope/img/icon-theme/breeze/actions/16/preferences-activities.svg +13 -0
  121. dcscope/img/icon-theme/breeze/actions/16/remove.svg +10 -0
  122. dcscope/img/icon-theme/breeze/actions/16/search.svg +13 -0
  123. dcscope/img/icon-theme/breeze/actions/16/show-grid.svg +13 -0
  124. dcscope/img/icon-theme/breeze/actions/16/special_paste.svg +13 -0
  125. dcscope/img/icon-theme/breeze/actions/16/tools-wizard.svg +13 -0
  126. dcscope/img/icon-theme/breeze/actions/16/view-calendar-list.svg +13 -0
  127. dcscope/img/icon-theme/breeze/actions/16/view-filter.svg +13 -0
  128. dcscope/img/icon-theme/breeze/actions/16/view-list-tree.svg +13 -0
  129. dcscope/img/icon-theme/breeze/actions/16/view-statistics.svg +13 -0
  130. dcscope/img/icon-theme/breeze/actions/16/visibility.svg +21 -0
  131. dcscope/img/icon-theme/breeze/actions/22/application-exit.svg +13 -0
  132. dcscope/img/icon-theme/breeze/actions/22/code-context.svg +14 -0
  133. dcscope/img/icon-theme/breeze/actions/22/dialog-cancel.svg +14 -0
  134. dcscope/img/icon-theme/breeze/actions/22/dialog-close.svg +10 -0
  135. dcscope/img/icon-theme/breeze/actions/22/dialog-messages.svg +14 -0
  136. dcscope/img/icon-theme/breeze/actions/22/dialog-ok-apply.svg +14 -0
  137. dcscope/img/icon-theme/breeze/actions/22/dialog-ok.svg +14 -0
  138. dcscope/img/icon-theme/breeze/actions/22/document-open-folder.svg +14 -0
  139. dcscope/img/icon-theme/breeze/actions/22/document-open.svg +14 -0
  140. dcscope/img/icon-theme/breeze/actions/22/document-save.svg +14 -0
  141. dcscope/img/icon-theme/breeze/actions/22/documentinfo.svg +14 -0
  142. dcscope/img/icon-theme/breeze/actions/22/draw-watercolor.svg +14 -0
  143. dcscope/img/icon-theme/breeze/actions/22/edit-clear-all.svg +14 -0
  144. dcscope/img/icon-theme/breeze/actions/22/edit-clear.svg +14 -0
  145. dcscope/img/icon-theme/breeze/actions/22/edit-paste.svg +14 -0
  146. dcscope/img/icon-theme/breeze/actions/22/globe.svg +12 -0
  147. dcscope/img/icon-theme/breeze/actions/22/gtk-preferences.svg +13 -0
  148. dcscope/img/icon-theme/breeze/actions/22/list-add.svg +14 -0
  149. dcscope/img/icon-theme/breeze/actions/22/messagebox_warning.svg +17 -0
  150. dcscope/img/icon-theme/breeze/actions/22/object-columns.svg +14 -0
  151. dcscope/img/icon-theme/breeze/actions/22/object-order-lower.svg +17 -0
  152. dcscope/img/icon-theme/breeze/actions/22/object-rows.svg +17 -0
  153. dcscope/img/icon-theme/breeze/actions/22/office-chart-line-stacked.svg +17 -0
  154. dcscope/img/icon-theme/breeze/actions/22/office-chart-ring.svg +17 -0
  155. dcscope/img/icon-theme/breeze/actions/22/office-chart-scatter.svg +17 -0
  156. dcscope/img/icon-theme/breeze/actions/22/path-mode-polyline.svg +17 -0
  157. dcscope/img/icon-theme/breeze/actions/22/preferences-activities.svg +14 -0
  158. dcscope/img/icon-theme/breeze/actions/22/remove.svg +10 -0
  159. dcscope/img/icon-theme/breeze/actions/22/special_paste.svg +14 -0
  160. dcscope/img/icon-theme/breeze/actions/22/tools-wizard.svg +14 -0
  161. dcscope/img/icon-theme/breeze/actions/22/view-calendar-list.svg +14 -0
  162. dcscope/img/icon-theme/breeze/actions/22/view-filter.svg +14 -0
  163. dcscope/img/icon-theme/breeze/actions/22/view-list-tree.svg +14 -0
  164. dcscope/img/icon-theme/breeze/actions/22/view-statistics.svg +14 -0
  165. dcscope/img/icon-theme/breeze/actions/22/visibility.svg +14 -0
  166. dcscope/img/icon-theme/breeze/actions/24/application-exit.svg +12 -0
  167. dcscope/img/icon-theme/breeze/actions/24/code-context.svg +12 -0
  168. dcscope/img/icon-theme/breeze/actions/24/dialog-cancel.svg +12 -0
  169. dcscope/img/icon-theme/breeze/actions/24/dialog-close.svg +10 -0
  170. dcscope/img/icon-theme/breeze/actions/24/dialog-messages.svg +12 -0
  171. dcscope/img/icon-theme/breeze/actions/24/dialog-ok-apply.svg +12 -0
  172. dcscope/img/icon-theme/breeze/actions/24/dialog-ok.svg +14 -0
  173. dcscope/img/icon-theme/breeze/actions/24/document-open-folder.svg +12 -0
  174. dcscope/img/icon-theme/breeze/actions/24/document-open.svg +12 -0
  175. dcscope/img/icon-theme/breeze/actions/24/document-save.svg +12 -0
  176. dcscope/img/icon-theme/breeze/actions/24/documentinfo.svg +14 -0
  177. dcscope/img/icon-theme/breeze/actions/24/draw-watercolor.svg +12 -0
  178. dcscope/img/icon-theme/breeze/actions/24/edit-clear-all.svg +14 -0
  179. dcscope/img/icon-theme/breeze/actions/24/edit-clear.svg +12 -0
  180. dcscope/img/icon-theme/breeze/actions/24/edit-paste.svg +12 -0
  181. dcscope/img/icon-theme/breeze/actions/24/globe.svg +14 -0
  182. dcscope/img/icon-theme/breeze/actions/24/gtk-preferences.svg +13 -0
  183. dcscope/img/icon-theme/breeze/actions/24/list-add.svg +12 -0
  184. dcscope/img/icon-theme/breeze/actions/24/messagebox_warning.svg +13 -0
  185. dcscope/img/icon-theme/breeze/actions/24/object-columns.svg +12 -0
  186. dcscope/img/icon-theme/breeze/actions/24/object-order-lower.svg +15 -0
  187. dcscope/img/icon-theme/breeze/actions/24/object-rows.svg +15 -0
  188. dcscope/img/icon-theme/breeze/actions/24/office-chart-line-stacked.svg +15 -0
  189. dcscope/img/icon-theme/breeze/actions/24/office-chart-ring.svg +15 -0
  190. dcscope/img/icon-theme/breeze/actions/24/office-chart-scatter.svg +15 -0
  191. dcscope/img/icon-theme/breeze/actions/24/path-mode-polyline.svg +15 -0
  192. dcscope/img/icon-theme/breeze/actions/24/preferences-activities.svg +13 -0
  193. dcscope/img/icon-theme/breeze/actions/24/remove.svg +10 -0
  194. dcscope/img/icon-theme/breeze/actions/24/special_paste.svg +12 -0
  195. dcscope/img/icon-theme/breeze/actions/24/tools-wizard.svg +12 -0
  196. dcscope/img/icon-theme/breeze/actions/24/view-calendar-list.svg +12 -0
  197. dcscope/img/icon-theme/breeze/actions/24/view-filter.svg +12 -0
  198. dcscope/img/icon-theme/breeze/actions/24/view-list-tree.svg +12 -0
  199. dcscope/img/icon-theme/breeze/actions/24/view-statistics.svg +12 -0
  200. dcscope/img/icon-theme/breeze/actions/24/visibility.svg +14 -0
  201. dcscope/img/icon-theme/breeze/actions/32/application-exit.svg +8 -0
  202. dcscope/img/icon-theme/breeze/actions/32/dialog-cancel.svg +13 -0
  203. dcscope/img/icon-theme/breeze/actions/32/dialog-messages.svg +13 -0
  204. dcscope/img/icon-theme/breeze/actions/32/dialog-ok-apply.svg +1 -0
  205. dcscope/img/icon-theme/breeze/actions/32/dialog-ok.svg +1 -0
  206. dcscope/img/icon-theme/breeze/actions/32/document-open-folder.svg +13 -0
  207. dcscope/img/icon-theme/breeze/actions/32/document-open.svg +13 -0
  208. dcscope/img/icon-theme/breeze/actions/32/document-save.svg +18 -0
  209. dcscope/img/icon-theme/breeze/actions/32/gtk-preferences.svg +17 -0
  210. dcscope/img/icon-theme/breeze/actions/32/object-order-lower.svg +18 -0
  211. dcscope/img/icon-theme/breeze/actions/32/view-filter.svg +18 -0
  212. dcscope/img/icon-theme/breeze/actions/32/view-list-tree.svg +18 -0
  213. dcscope/img/icon-theme/breeze/places/16/folder-cloud.svg +13 -0
  214. dcscope/img/icon-theme/breeze/places/16/folder.svg +13 -0
  215. dcscope/img/icon-theme/breeze/places/22/folder-cloud.svg +13 -0
  216. dcscope/img/icon-theme/breeze/places/22/folder.svg +13 -0
  217. dcscope/img/icon-theme/breeze/places/24/folder-cloud.svg +12 -0
  218. dcscope/img/icon-theme/breeze/places/24/folder.svg +12 -0
  219. dcscope/img/icon-theme/breeze/places/32/folder-cloud.svg +35 -0
  220. dcscope/img/icon-theme/breeze/places/32/folder.svg +30 -0
  221. dcscope/img/icon-theme/breeze/places/64/folder-cloud.svg +35 -0
  222. dcscope/img/icon-theme/breeze/places/64/folder.svg +30 -0
  223. dcscope/img/icon-theme/breeze/status/16/dialog-error.svg +9 -0
  224. dcscope/img/icon-theme/breeze/status/16/dialog-information.svg +9 -0
  225. dcscope/img/icon-theme/breeze/status/16/dialog-question.svg +7 -0
  226. dcscope/img/icon-theme/breeze/status/16/dialog-warning.svg +9 -0
  227. dcscope/img/icon-theme/breeze/status/22/dialog-error.svg +9 -0
  228. dcscope/img/icon-theme/breeze/status/22/dialog-information.svg +9 -0
  229. dcscope/img/icon-theme/breeze/status/22/dialog-question.svg +7 -0
  230. dcscope/img/icon-theme/breeze/status/22/dialog-warning.svg +9 -0
  231. dcscope/img/icon-theme/breeze/status/24/dialog-error.svg +13 -0
  232. dcscope/img/icon-theme/breeze/status/24/dialog-information.svg +13 -0
  233. dcscope/img/icon-theme/breeze/status/24/dialog-question.svg +9 -0
  234. dcscope/img/icon-theme/breeze/status/24/dialog-warning.svg +1 -0
  235. dcscope/img/icon-theme/breeze/status/64/dialog-error.svg +25 -0
  236. dcscope/img/icon-theme/breeze/status/64/dialog-information.svg +25 -0
  237. dcscope/img/icon-theme/breeze/status/64/dialog-question.svg +25 -0
  238. dcscope/img/icon-theme/breeze/status/64/dialog-warning.svg +25 -0
  239. dcscope/img/icon-theme/collect_icons.py +124 -0
  240. dcscope/img/icon-theme/dcscope/dcor.png +0 -0
  241. dcscope/img/icon-theme/dcscope/edit-copy-anew.svg +13 -0
  242. dcscope/img/icon-theme/dcscope/emodulus.svg +69 -0
  243. dcscope/img/icon-theme/dcscope/filter_ray.svg +54 -0
  244. dcscope/img/icon-theme/dcscope/region_channel.svg +86 -0
  245. dcscope/img/icon-theme/dcscope/region_reservoir.svg +89 -0
  246. dcscope/img/icon-theme/dcscope/rlang.svg +108 -0
  247. dcscope/img/icon-theme/dcscope/statistical_significance.svg +106 -0
  248. dcscope/img/icon-theme/index.theme +81 -0
  249. dcscope/img/icon.png +0 -0
  250. dcscope/img/icon.svg +73 -0
  251. dcscope/img/splash.png +0 -0
  252. dcscope/meta_tool.py +143 -0
  253. dcscope/pipeline/__init__.py +5 -0
  254. dcscope/pipeline/core.py +632 -0
  255. dcscope/pipeline/dataslot.py +270 -0
  256. dcscope/pipeline/filter.py +161 -0
  257. dcscope/pipeline/filter_ray.py +170 -0
  258. dcscope/pipeline/plot.py +187 -0
  259. dcscope/plot_cache.py +79 -0
  260. dcscope/session.py +379 -0
  261. dcscope/util.py +34 -0
  262. dcscope-2.22.1.dist-info/METADATA +95 -0
  263. dcscope-2.22.1.dist-info/RECORD +267 -0
  264. dcscope-2.22.1.dist-info/WHEEL +5 -0
  265. dcscope-2.22.1.dist-info/entry_points.txt +2 -0
  266. dcscope-2.22.1.dist-info/licenses/LICENSE +621 -0
  267. dcscope-2.22.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 3 2.9980469 L 3 3 L 3 4 L 3 19 L 4 19 L 19 19 L 19 18 L 19 7 L 19 6.3007812 L 18.992188 6.3007812 L 19 6.2910156 L 15.707031 2.9980469 L 15.699219 3.0078125 L 15.699219 2.9980469 L 15 2.9980469 L 3 2.9980469 z M 4 4 L 7 4 L 7 8 L 7 9 L 15 9 L 15 8 L 15 4 L 15.292969 4 L 18 6.7070312 L 18 7 L 18 18 L 16 18 L 16 11 L 15 11 L 7 11 L 6 11 L 6 18 L 4 18 L 4 4 z M 8 4 L 11.900391 4 L 11.900391 8 L 8 8 L 8 4 z M 7 12 L 15 12 L 15 18 L 7 18 L 7 12 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs><g transform="translate(1,1)">
9
+ <path
10
+ style="fill:currentColor;fill-opacity:1;stroke:none"
11
+ d="M 11 3 C 6.568 3 3 6.568 3 11 C 3 15.432 6.568 19 11 19 C 15.432 19 19 15.432 19 11 C 19 6.568 15.432 3 11 3 z M 11 4 C 14.878 4 18 7.122 18 11 C 18 14.878 14.878 18 11 18 C 7.122 18 4 14.878 4 11 C 4 7.122 7.122 4 11 4 z M 10 6 L 10 8 L 12 8 L 12 6 L 10 6 z M 10 9 L 10 16 L 12 16 L 12 9 L 10 9 z "
12
+ class="ColorScheme-Text"
13
+ />
14
+ </g></svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 18.513672 3.0078125 A 2 9 45 0 0 11.068359 8.1054688 A 2 9 45 0 0 7.5253906 12.21875 C 8.6014506 12.56139 9.4405631 13.400494 9.7832031 14.476562 A 2 9 45 0 0 13.896484 10.933594 A 2 9 45 0 0 18.845703 3.15625 A 2 9 45 0 0 18.513672 3.0078125 z M 16.5 11 C 16.01355 12.70252 14.823758 14.166141 14.298828 15.337891 C 14.115128 15.686281 14 16.07729 14 16.5 C 14 17.885 15.115 19 16.5 19 C 17.885 19 19 17.885 19 16.5 C 19 16.07729 18.886825 15.686281 18.703125 15.337891 C 18.178205 14.166141 16.98645 12.70252 16.5 11 z M 7 13.664062 C 2.99999 14.735864 6 17.26795 3 19 C 7.00339 19 9 16.99918 9 15.664062 C 9 14.999182 9.0676 13.774622 7 13.664062 z M 17.642578 14.859375 C 18.161428 15.219975 18.5 15.81754 18.5 16.5 C 18.5 17.608 17.608 18.5 16.5 18.5 C 15.81752 18.5 15.219975 18.161458 14.859375 17.642578 C 15.182895 17.867438 15.57446 18 16 18 C 17.108 18 18 17.108 18 16 C 18 15.57446 17.867438 15.182895 17.642578 14.859375 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs><g transform="translate(1,1)">
9
+ <path
10
+ style="fill:currentColor;fill-opacity:1;stroke:none"
11
+ d="M 17.564453 2.7558594 L 14.298828 8.5742188 L 11.882812 7.1386719 L 10.861328 8.8574219 L 16.511719 12.216797 L 17.533203 10.496094 L 15.158203 9.0839844 L 18.435547 3.2441406 L 17.564453 2.7558594 z M 7 6 A 1 1 0 0 0 6 7 A 1 1 0 0 0 7 8 A 1 1 0 0 0 8 7 A 1 1 0 0 0 7 6 z M 3.5 7 A 0.5 0.5 0 0 0 3 7.5 A 0.5 0.5 0 0 0 3.5 8 A 0.5 0.5 0 0 0 4 7.5 A 0.5 0.5 0 0 0 3.5 7 z M 5 9 A 1 1 0 0 0 4 10 A 1 1 0 0 0 5 11 A 1 1 0 0 0 6 10 A 1 1 0 0 0 5 9 z M 10 10 C 8.8815125 11.564268 6.8355055 12.810894 3 13 L 3 14 C 5.1137135 17.371692 8 19 12 19 L 13 19 C 14.311249 17.412805 15.357513 15.967619 16 14 L 16 13 L 11 10 L 10 10 z M 10.529297 11.101562 L 14.857422 13.699219 C 14.284594 15.24586 13.385404 16.602833 12.273438 17.96875 C 8.9999995 18 6.052768 16.540538 4.3261719 13.830078 C 7.4443879 13.51946 9.3457156 12.545306 10.529297 11.101562 z "
12
+ class="ColorScheme-Text"
13
+ />
14
+ </g></svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 8 3 L 0.94335938 10.056641 L 0 11 L 0.94335938 11.943359 L 8 19 L 20.333984 19 L 22 19 L 22 3 L 20.333984 3 L 8 3 z M 11.320312 7 L 14 9.6796875 L 16.679688 7 L 18 8.3203125 L 15.320312 11 L 18 13.679688 L 16.679688 15 L 14 12.320312 L 11.320312 15 L 10 13.679688 L 12.679688 11 L 10 8.3203125 L 11.320312 7 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 7 3 L 7 5 L 5 5 L 4 5 L 4 19 L 5 19 L 18 19 L 18 18 L 18 5 L 17 5 L 15 5 L 15 3 L 7 3 z M 5 6 L 6 6 L 6 8 L 16 8 L 16 6 L 17 6 L 17 18 L 5 18 L 5 6 z M 7 9 L 7 10 L 15 10 L 15 9 L 7 9 z M 7 12 L 7 13 L 13 13 L 13 12 L 7 12 z M 7 15 L 7 16 L 10 16 L 10 15 L 7 15 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <g transform="translate(-421.71429,-525.79074)">
11
+ <path id="path3011" d="m 432.71834,528.79074 c -0.31896,0 -0.62792,0.026 -0.93788,0.063 -0.30396,0.036 -0.61392,0.087 -0.90589,0.1559 -0.094,0.022 -0.18497,0.067 -0.28096,0.094 -0.084,0.023 -0.16698,0.037 -0.24997,0.063 -0.10499,0.033 -0.21397,0.059 -0.31296,0.094 -0.10699,0.038 -0.20697,0.083 -0.31296,0.1249 -0.20597,0.083 -0.39695,0.182 -0.59393,0.2809 -0.071,0.036 -0.14898,0.056 -0.21897,0.094 -0.22997,0.1209 -0.44094,0.2629 -0.65592,0.4058 -0.082,0.055 -0.16997,0.098 -0.24996,0.1559 -0.033,0.024 -0.061,0.038 -0.094,0.063 -0.094,0.071 -0.19098,0.1418 -0.28097,0.2188 -0.10698,0.089 -0.20997,0.1869 -0.31296,0.2809 -0.032,0.03 -0.062,0.064 -0.094,0.094 -0.011,0.011 -0.02,0.02 -0.031,0.031 -0.016,0.016 -0.015,0.047 -0.031,0.063 -0.20997,0.2039 -0.43894,0.3988 -0.62492,0.6247 -0.005,0.01 0.005,0.025 0,0.031 -0.18098,0.2199 -0.34296,0.4478 -0.49994,0.6877 -0.021,0.032 -0.042,0.061 -0.063,0.094 -0.015,0.024 -0.047,0.037 -0.063,0.063 -0.06,0.098 -0.10099,0.209 -0.15598,0.3129 -0.018,0.033 -0.045,0.061 -0.063,0.094 -0.075,0.1459 -0.14998,0.2898 -0.21897,0.4378 -0.004,0.01 0.004,0.023 0,0.031 -0.11699,0.2528 -0.22198,0.5136 -0.31296,0.7805 -0.019,0.053 -0.045,0.103 -0.063,0.156 -0.003,0.01 0.003,0.022 0,0.031 -0.02,0.062 -0.044,0.125 -0.063,0.188 -0.073,0.2568 -0.13998,0.5137 -0.18798,0.7806 -0.034,0.1919 -0.074,0.3968 -0.094,0.5938 -0.027,0.2648 -0.031,0.5417 -0.031,0.8125 0,0.4038 0.036,0.7996 0.094,1.1875 0.006,0.041 -0.007,0.085 0,0.1249 0.044,0.2659 0.11798,0.5248 0.18798,0.7807 0.026,0.096 0.064,0.1859 0.094,0.2809 0.04,0.1289 0.079,0.2489 0.12499,0.3748 0.077,0.2119 0.15598,0.4218 0.24997,0.6246 0.05,0.106 0.10198,0.2099 0.15598,0.3129 0.15198,0.2919 0.31496,0.5747 0.49993,0.8436 0.016,0.024 0.046,0.039 0.063,0.063 0.19797,0.2809 0.39395,0.5597 0.62492,0.8126 0.04,0.044 0.084,0.082 0.12498,0.125 0.04,0.042 0.084,0.084 0.12499,0.1249 0.21397,0.2139 0.45094,0.4048 0.68791,0.5938 0.30596,0.2438 0.62892,0.4587 0.96888,0.6556 0.012,0.01 0.019,0.024 0.031,0.031 0.053,0.03 0.10299,0.065 0.15598,0.094 0.31596,0.156 0.69192,0.3249 0.93788,0.4378 0.10999,0.042 0.23098,0.057 0.34396,0.094 0.053,0.018 0.10299,0.046 0.15598,0.063 0.13598,0.041 0.26797,0.09 0.40595,0.1249 0.042,0.011 0.083,0.021 0.12499,0.031 0.29196,0.069 0.60192,0.1209 0.90588,0.1559 0.30896,0.036 0.61792,0.063 0.93788,0.063 0.33996,0 0.67092,-0.021 0.99988,-0.063 0.36495,-0.048 0.68091,-0.1239 0.99987,-0.1879 1.69779,-0.4358 3.1616,-1.4213 4.21847,-2.7487 0.028,-0.035 0.067,-0.058 0.094,-0.094 0.009,-0.012 0.022,-0.02 0.031,-0.031 0.014,-0.018 0.018,-0.044 0.031,-0.063 0.62292,-0.8246 1.07686,-1.7801 1.34383,-2.8117 0.056,-0.2169 0.11799,-0.4318 0.15598,-0.6557 0.005,-0.03 -0.005,-0.063 0,-0.094 0.006,-0.04 0.025,-0.079 0.031,-0.125 0.006,-0.043 0.026,-0.082 0.031,-0.1249 l -0.031,0 c 0.044,-0.3289 0.094,-0.6587 0.094,-0.9996 0,-0.5517 -0.05,-1.1034 -0.15598,-1.6242 -0.009,-0.043 -0.022,-0.082 -0.031,-0.1249 -0.046,-0.2079 -0.12398,-0.4229 -0.18798,-0.6248 -0.003,-0.01 0.003,-0.022 0,-0.031 -0.012,-0.038 -0.018,-0.056 -0.031,-0.094 -0.039,-0.119 -0.081,-0.2579 -0.12498,-0.3748 -0.012,-0.032 -0.018,-0.064 -0.031,-0.094 -0.043,-0.109 -0.10799,-0.2059 -0.15598,-0.3128 -0.002,0 0.002,-0.026 0,-0.031 -0.025,-0.054 -0.068,-0.1029 -0.094,-0.1559 -0.098,-0.2029 -0.19797,-0.3998 -0.31296,-0.5937 -0.058,-0.098 -0.094,-0.2169 -0.15598,-0.3129 -0.024,-0.036 -0.069,-0.058 -0.094,-0.094 -0.067,-0.099 -0.14698,-0.185 -0.21897,-0.2809 -0.08,-0.1 -0.13999,-0.2159 -0.21898,-0.3129 -0.005,-0.01 0.005,-0.025 0,-0.031 -0.17197,-0.2089 -0.36995,-0.4028 -0.56292,-0.5937 -0.093,-0.092 -0.18398,-0.1939 -0.28097,-0.2809 -0.028,-0.025 -0.065,-0.038 -0.094,-0.063 -0.20897,-0.1819 -0.42994,-0.3398 -0.65592,-0.4996 -0.055,-0.038 -0.10098,-0.088 -0.15598,-0.125 -0.07,-0.046 -0.14798,-0.081 -0.21897,-0.1249 -0.13498,-0.084 -0.26597,-0.174 -0.40595,-0.2499 -0.12298,-0.067 -0.24797,-0.127 -0.37495,-0.1879 -0.21397,-0.102 -0.43195,-0.198 -0.65592,-0.2809 -0.26596,-0.099 -0.53393,-0.1799 -0.8129,-0.2499 -0.24496,-0.062 -0.49693,-0.118 -0.7499,-0.1559 -0.39695,-0.061 -0.8049,-0.094 -1.21885,-0.094 m 0,0.9996 c 0.29896,0 0.58493,0.027 0.87489,0.063 0.17998,0.023 0.35496,0.058 0.53093,0.094 0.01,0 0.021,0 0.031,0 0.16598,0.035 0.33796,0.079 0.49994,0.1249 0.096,0.027 0.18698,0.063 0.28097,0.094 0.17197,0.057 0.33395,0.1169 0.49993,0.1879 0.19398,0.08 0.37896,0.1528 0.56293,0.2498 -0.031,0.01 -0.063,0.021 -0.094,0.031 -0.047,0.017 -0.11298,0.096 -0.12498,0.1249 -0.02,0.048 0.005,0.115 0,0.188 0.038,0.017 0.06,0.089 0.12498,0.1249 0.025,0.014 0.041,-0.01 0.063,0 0.038,0.021 0.07,0.087 0.063,0.1249 -0.011,0.055 -0.088,0.022 -0.12498,0.063 0.006,0.078 -0.043,0.105 -0.063,0.1559 0.012,0.033 0.057,0.024 0.063,0.063 -0.007,0.043 -0.079,0.049 -0.063,0.094 0.072,0.056 0.15098,-0.022 0.21897,-0.031 0.14898,-0.019 0.28297,0.041 0.37495,-0.031 -0.012,-0.071 0.10099,-0.092 0.094,-0.1559 -0.006,-0.048 -0.09,-0.061 -0.12498,-0.094 -0.019,-0.018 -0.04,-0.059 -0.063,-0.094 -0.026,-0.04 -0.064,-0.087 -0.094,-0.125 -0.039,-0.052 -0.12498,-0.1169 -0.12498,-0.1559 0.001,-0.045 0.052,-0.063 0.063,-0.125 -0.012,-0.057 -0.11699,0 -0.12499,-0.063 0.002,-0.019 0.021,-0.051 0.031,-0.063 0.14998,0.082 0.29796,0.1789 0.43795,0.2809 0.032,0.021 0.062,0.041 0.094,0.063 0.10798,0.081 0.20697,0.17 0.31296,0.2499 -0.067,0.012 -0.10099,0.09 -0.15598,0.156 -0.038,0.046 -0.099,0.1009 -0.15598,0.1249 -0.028,0.012 -0.068,-0.016 -0.094,0 -0.037,0.025 -0.051,0.096 -0.094,0.125 -0.031,0.021 -0.12399,0.094 -0.15598,0.094 -0.038,10e-4 -0.098,-0.04 -0.12499,-0.031 -0.04,0.013 -0.017,0.077 -0.063,0.094 -0.088,0.031 -0.24997,-0.069 -0.28096,0.063 0.038,0.076 0.15298,0.051 0.21897,0.094 0.042,0.026 0.11399,0.143 0.12498,0.1879 0.01,0.038 0.015,0.179 0,0.2189 -0.041,0.106 -0.15898,0.097 -0.28096,0.094 -0.034,-10e-4 -0.063,0 -0.094,0 -0.20697,-0.014 -0.40695,-0.085 -0.49994,0.063 0.007,0.1129 0.025,0.1829 0,0.2808 -0.018,0.072 -0.097,0.125 -0.094,0.188 0.002,0.032 0.055,0.082 0.063,0.1249 0.005,0.023 -0.011,0.073 0,0.094 0.034,0.066 0.12699,-0.01 0.18798,0 0.059,0.01 0.12598,0.1209 0.12498,0.1879 -10e-4,0.046 -0.033,0.1119 -0.063,0.1559 -0.058,0.089 -0.16698,0.077 -0.24997,0.1249 -0.07,0.039 -0.084,0.1189 -0.12498,0.1879 -0.044,0.074 -0.081,0.1109 -0.063,0.2189 -0.06,0.1179 -0.12598,0.1939 -0.24997,0.2499 -0.037,0.017 -0.092,0.039 -0.12498,0.063 -0.027,0.019 -0.056,0.051 -0.094,0.094 -0.047,0.052 -0.1,0.085 -0.12499,0.125 -0.019,0.031 -0.01,0.084 -0.031,0.1249 -0.029,0.056 -0.088,0.1 -0.12498,0.1559 -0.017,0.026 -0.043,0.059 -0.063,0.094 -0.042,0.077 -0.10099,0.1509 -0.094,0.2189 0.007,0.066 0.089,0.068 0.094,0.1249 0.004,0.032 -0.033,0.059 -0.031,0.094 0.001,0.051 0.027,0.086 0.031,0.1249 0.01,0.099 -0.044,0.12 -0.063,0.188 -0.009,0.032 0.008,0.068 0,0.094 -0.016,0.05 -0.093,0.098 -0.094,0.156 -0.001,0.042 0.059,0.097 0.063,0.1559 0.002,0.04 -0.038,0.057 -0.031,0.094 0.014,0.073 0.16198,0.162 0.21897,0.2189 0.075,0.075 0.15498,0.139 0.18798,0.219 0.027,0.067 0.041,0.1678 0.094,0.2188 0.039,0.037 0.10598,0.054 0.15598,0.094 0.047,0.036 0.10698,0.055 0.15598,0.094 0.081,0.064 0.18297,0.1969 0.31296,0.1879 0.068,-0.01 0.14198,-0.05 0.21897,-0.063 0.079,-0.014 0.16998,-0.039 0.24997,-0.031 0.061,0.01 0.12398,0.066 0.18797,0.063 0.067,0 0.14299,-0.061 0.21898,-0.094 0.13198,-0.057 0.33896,-0.1529 0.53093,-0.1249 0.14598,0.021 0.14898,0.2169 0.24997,0.2809 0.11798,0.01 0.21897,-0.054 0.31296,-0.031 0.07,0.017 0.14898,0.1319 0.15598,0.1879 0.007,0.058 -0.054,0.121 -0.063,0.1559 -0.018,0.078 -0.017,0.169 -0.031,0.2189 -0.011,0.038 -0.032,0.086 -0.031,0.125 0,0.035 0.058,0.1419 0.094,0.1879 0.044,0.056 0.10299,0.096 0.15598,0.1559 0.087,0.109 0.15498,0.2359 0.21897,0.3749 0.017,0.037 -0.016,0.077 0,0.1249 -0.029,0.2239 -0.10298,0.3769 -0.24997,0.6247 -0.069,0.08 -0.15798,0.15 -0.15598,0.2499 -0.005,0.2399 0.13599,0.3928 0.12499,0.6247 -0.024,0.3118 0.024,0.3328 0,0.4997 0.10499,0.053 0.031,0.2329 0,0.3439 -0.045,0.1319 -0.1,0.1619 -0.12499,0.2499 0.071,0.031 0.17098,0.019 0.24997,0 0,0 0.096,0.4008 0.094,0.4058 -0.8069,0.7967 -1.81877,1.3874 -2.93763,1.7182 -0.54993,0.1329 -0.71291,0.1329 -0.96888,0.1879 -0.33395,0.055 -0.68291,0.094 -1.03087,0.094 -0.24296,0 -0.48293,-0.01 -0.71891,-0.031 -0.18197,-0.018 -0.35395,-0.062 -0.53093,-0.094 -0.053,-0.01 -0.10398,-0.02 -0.15598,-0.031 -0.16298,-0.055 -0.35095,-0.088 -0.49994,-0.1249 -0.16997,-0.048 -0.33495,-0.096 -0.49993,-0.156 0.014,-0.013 0.027,-0.011 0.031,-0.031 0.009,-0.04 0.002,-0.062 0,-0.1249 0.015,-0.065 0.08,-0.058 0.094,-0.1249 -0.028,-0.048 -0.083,-0.038 -0.12498,-0.063 -0.041,-0.024 -0.068,-0.074 -0.063,-0.125 0.07,-0.029 0.19997,0.066 0.24996,-0.031 0.025,-0.046 -0.034,-0.1409 0,-0.1879 0.023,-0.031 0.16898,-0.055 0.21898,-0.063 0.071,-0.012 0.14798,-0.01 0.18797,-0.031 0.044,-0.029 0.10099,-0.105 0.094,-0.188 -0.004,-0.039 -0.033,-0.059 -0.063,-0.094 -0.025,-0.029 -0.013,-0.066 -0.031,-0.094 -0.031,-0.047 -0.08,-0.058 -0.094,-0.1249 0.096,-0.019 0.23597,0.1019 0.37496,0.063 0.066,-0.019 0.15698,-0.188 0.18797,-0.2499 0.01,-0.019 -0.01,-0.04 0,-0.063 0.012,-0.026 0.059,-0.049 0.063,-0.063 0.01,-0.036 -0.008,-0.071 0,-0.094 0.024,-0.068 0.085,-0.075 0.12498,-0.125 0.03,-0.038 0.065,-0.087 0.094,-0.1249 0.031,-0.041 0.042,-0.089 0.063,-0.125 0.02,-0.1219 -0.06,-0.2059 -0.031,-0.3128 0.032,-0.12 0.19598,-0.165 0.31296,-0.2189 0.04,-0.019 0.092,-0.05 0.12499,-0.063 0.08,-0.028 0.17598,-0.036 0.24997,-0.063 0.12498,-0.046 0.15698,-0.1669 0.21897,-0.2809 0.029,-0.054 0.057,-0.1179 0.063,-0.1559 0.005,-0.035 -0.007,-0.053 0,-0.094 0.006,-0.04 0.02,-0.081 0.031,-0.1248 0.014,-0.058 0.031,-0.1539 0.031,-0.2189 0,-0.053 -0.029,-0.078 -0.031,-0.1249 -0.009,-0.173 0.061,-0.218 0.12498,-0.3129 0.032,-0.047 0.04,-0.091 0.063,-0.125 0.10799,-0.1609 0.29497,-0.2259 0.28097,-0.4688 -0.005,-0.08 -0.035,-0.2558 -0.094,-0.2808 -0.034,-0.015 -0.10699,-0.011 -0.15598,-0.031 -0.15798,-0.059 -0.27397,-0.2689 -0.43795,-0.2809 -0.035,0 -0.055,0.031 -0.094,0.031 -0.065,0 -0.14698,-0.053 -0.21897,-0.063 -0.046,-0.01 -0.12898,0.013 -0.15598,0 -0.042,-0.02 -0.029,-0.1019 -0.063,-0.1249 -0.027,-0.018 -0.084,-0.015 -0.12498,-0.031 -0.066,-0.025 -0.11199,-0.056 -0.18798,-0.063 -0.023,-0.001 -0.067,0 -0.094,0 -0.042,-0.01 -0.086,-0.04 -0.12498,-0.063 -0.048,-0.029 -0.074,-0.052 -0.094,-0.094 0.044,-0.1439 -0.096,-0.1669 -0.12498,-0.2499 -0.014,-0.039 0.013,-0.09 0,-0.1249 -0.017,-0.05 -0.071,-0.084 -0.12499,-0.125 -0.097,-0.074 -0.17398,-0.1389 -0.31296,-0.1559 -0.061,-0.01 -0.14498,0 -0.21897,0 -0.078,-0.01 -0.16098,-0.058 -0.21897,-0.125 -0.056,-0.065 -0.076,-0.1249 -0.12499,-0.1559 -0.047,-0.03 -0.12398,-0.031 -0.15598,-0.063 -0.014,-0.014 -0.017,-0.031 -0.031,-0.063 -0.023,-0.048 -0.061,-0.098 -0.031,-0.156 -0.053,-0.027 -0.035,0.072 -0.094,0.063 -0.052,-0.074 -0.10099,-0.115 -0.21897,-0.094 -0.054,0.01 -0.093,0.06 -0.15598,0.063 -0.052,0 -0.088,-0.053 -0.15598,-0.063 -0.052,-0.01 -0.11999,0.036 -0.15598,0.031 -0.057,-0.011 -0.073,-0.059 -0.12499,-0.094 -0.038,-0.025 -0.10398,-0.095 -0.12498,-0.094 -0.067,0 -0.12598,0.1429 -0.21897,0.094 -0.045,-0.057 0.085,-0.071 0.031,-0.125 -0.04,-0.041 -0.061,0.01 -0.094,0.031 -0.037,0.025 -0.084,0.047 -0.12499,0.063 -0.092,0.034 -0.14698,0.025 -0.21897,0.063 -0.066,0.034 -0.087,0.088 -0.12499,0.156 -0.031,0.056 -0.079,0.1529 -0.12498,0.1559 -0.056,0 -0.10599,-0.072 -0.15598,-0.094 -0.15298,-0.066 -0.24797,0.03 -0.37495,0.031 -0.11799,0 -0.28697,-0.1709 -0.28097,-0.2808 0.004,-0.067 0.054,-0.166 0.063,-0.2499 0.006,-0.066 0.062,-0.127 0.063,-0.1879 0.001,-0.081 -0.13499,-0.147 -0.18798,-0.156 -0.12498,-0.023 -0.29496,0.061 -0.43794,0 -0.027,-0.045 0.047,-0.081 0.063,-0.1249 0.009,-0.025 -0.009,-0.034 0,-0.063 0.016,-0.042 0.074,-0.08 0.094,-0.1249 0.015,-0.034 0.016,-0.082 0.031,-0.125 0.017,-0.049 0.059,-0.091 0.063,-0.1249 0.005,-0.045 -0.027,-0.095 -0.063,-0.125 -0.11098,0.01 -0.18697,0 -0.24997,0.031 -0.14398,0.066 -0.10598,0.2659 -0.24997,0.3129 -0.05,0.016 -0.13298,0.021 -0.18797,0.031 -0.047,0.01 -0.10699,0.032 -0.15598,0.031 -0.058,-0.001 -0.15298,-0.057 -0.18798,-0.094 -0.009,-0.01 -0.024,-0.036 -0.031,-0.063 0.002,-0.01 -0.002,-0.021 0,-0.031 0.046,-0.2229 0.093,-0.4438 0.15598,-0.6557 0.003,-0.01 -0.003,-0.022 0,-0.031 0.042,-0.1389 0.10298,-0.2699 0.15598,-0.4058 0.013,-0.01 0.019,-0.023 0.031,-0.031 0.077,-0.053 0.15598,-0.1189 0.24997,-0.1249 0.057,0 0.16398,0.02 0.21897,0.031 0.05,0.01 0.082,0.059 0.12499,0.063 0.12298,0.01 0.14898,-0.1029 0.24997,-0.1559 0.10398,0.015 0.15598,-0.01 0.24996,0 0.064,0.01 0.13799,0.09 0.18798,0.094 0.042,0 0.053,-0.069 0.094,-0.063 0.04,0.01 0.11898,0.1079 0.12498,0.1559 0.007,0.06 -0.048,0.122 -0.031,0.1879 0.063,0.064 0.19097,0.056 0.28096,0.094 0.059,-0.048 0.009,-0.118 0,-0.1879 -0.002,-0.031 0.004,-0.066 0,-0.094 -0.006,-0.048 -0.031,-0.084 -0.031,-0.1249 -0.001,-0.1899 0.15398,-0.2999 0.28096,-0.3749 0.055,-0.033 0.10799,-0.069 0.15598,-0.094 0.067,-0.034 0.1,-0.063 0.15598,-0.094 0.10099,-0.057 0.20198,-0.092 0.28097,-0.1559 0.037,-0.086 -0.004,-0.1959 0,-0.2809 0.037,-0.022 0.055,0 0.094,0 0.061,-0.013 0.09,-0.091 0.12499,-0.1249 0.02,-0.02 0.069,-0.043 0.094,-0.063 0.061,-0.048 0.072,-0.104 0.12498,-0.125 0.019,-0.01 0.064,-0.017 0.094,-0.031 0.04,-0.011 0.092,-0.04 0.15598,-0.063 0.042,-0.014 0.13998,-0.015 0.15598,-0.031 0.02,-0.02 -0.006,-0.095 0,-0.1249 0.032,-0.151 0.27196,-0.168 0.40595,-0.2189 0.094,-0.036 0.17798,-0.114 0.28096,-0.094 -0.02,0.072 -0.10998,0.038 -0.094,0.1249 0.023,0.121 0.17598,-0.013 0.21898,-0.031 0.081,-0.034 0.23697,-0.055 0.34395,-0.094 0.094,-0.034 0.24497,-0.08 0.15598,-0.1879 -0.074,0 -0.092,0.066 -0.15598,0.094 -0.044,0.01 -0.056,-0.027 -0.094,-0.031 -0.036,0 -0.057,0.038 -0.094,0.031 -0.037,-0.01 -0.088,-0.082 -0.094,-0.1249 -0.015,-0.111 0.10999,-0.136 0.15598,-0.2189 -0.03,-0.101 -0.16598,-0.024 -0.24997,-0.063 0.009,-0.06 0.055,-0.1139 0.12499,-0.1249 0.057,-0.01 0.18497,0.01 0.21897,0.031 0.02,0.017 0,0.066 0.031,0.094 0.034,0.031 0.081,0.01 0.12499,0 0.016,-0.076 -0.10599,-0.043 -0.094,-0.094 0.09,-0.059 0.26497,-0.016 0.37495,-0.031 0.063,-0.01 0.13099,-0.062 0.18798,-0.094 0.054,-0.03 0.099,-0.081 0.15598,-0.031 0.016,0.054 -0.032,0.066 -0.063,0.094 -0.10199,0.091 -0.20198,0.2069 -0.28097,0.3128 0.049,0.048 0.13599,0.022 0.21898,0.031 0.032,0 0.06,0.025 0.094,0.031 0.04,0.01 0.094,-0.012 0.12499,0 0.056,0.014 0.07,0.094 0.12498,0.094 0.091,0 0.083,-0.125 0.031,-0.1879 0.016,-0.063 0.053,-0.08 0.031,-0.125 -0.041,-0.082 -0.21097,0.014 -0.21897,-0.094 -0.005,-0.067 0.07,-0.075 0.094,-0.125 -0.011,-0.1289 0.10598,-0.1349 0.094,-0.2499 -0.006,-0.048 -0.06,-0.049 -0.094,-0.094 -0.017,-0.023 -0.01,-0.076 -0.031,-0.094 -0.07,-0.059 -0.20997,-0.044 -0.21897,-0.1559 -0.004,-0.066 0.01,-0.115 0,-0.1879 -0.009,-0.067 -0.066,-0.2679 -0.12498,-0.2809 -0.075,-0.016 -0.12899,0.1139 -0.21898,0.1559 -0.049,0.023 -0.13898,0.04 -0.18797,0.031 -0.032,-0.01 -0.089,-0.032 -0.094,-0.094 -0.006,-0.07 0.05,-0.082 0.063,-0.1558 -0.011,-0.044 -0.051,-0.029 -0.094,-0.063 -0.049,-0.037 -0.091,-0.1159 -0.15598,-0.1249 -0.033,0 -0.093,0.029 -0.12498,0.031 -0.06,0 -0.10599,-0.015 -0.15598,-0.031 0.021,-0.01 0.041,-0.024 0.063,-0.031 0.12198,-0.042 0.24997,-0.059 0.37495,-0.094 0.022,-0.01 0.041,-0.025 0.063,-0.031 0.031,0.033 0.056,0.1029 0.094,0.1249 0.025,0.014 0.063,-0.01 0.094,0 0.098,0.03 0.17398,0.085 0.28097,0.063 0.037,-0.065 -0.074,-0.074 -0.031,-0.125 0.072,0.01 0.13198,0.04 0.18798,0.063 0.077,-0.056 0.12798,-0.066 0.12498,-0.1559 -0.001,-0.046 -0.062,-0.063 -0.094,-0.094 0.063,-0.011 0.12399,-0.022 0.18798,-0.031 0.005,0.017 0.021,0.03 0.031,0.031 0.038,0.01 0.16498,-0.051 0.18797,-0.063 0.004,0 -0.006,-0.027 0,-0.031 0.25297,-0.027 0.52094,-0.031 0.7809,-0.031 m -2.49968,0.4688 c -0.023,0.043 -0.047,0.079 -0.094,0.094 0.012,0.065 -0.084,0.1049 -0.094,0.1558 -0.006,0.035 -0.002,0.094 0,0.125 0.02,0.3189 -0.25096,0.4768 -0.56293,0.4688 -0.061,0.058 -0.029,0.1699 -0.063,0.2499 -0.028,0.067 -0.11998,0.1309 -0.18797,0.1249 -0.05,0 -0.12499,-0.079 -0.12499,-0.1249 0,-0.057 0.081,-0.091 0.031,-0.156 0.007,-0.044 0.10598,-0.086 0.094,-0.1559 -0.012,-0.074 -0.096,-0.019 -0.18798,-0.031 -0.052,-0.01 -0.13298,-0.037 -0.18798,-0.063 0.10099,-0.067 0.20498,-0.126 0.31296,-0.188 0.094,-0.056 0.18498,-0.1049 0.28097,-0.1559 0.25197,-0.1269 0.52193,-0.2438 0.7809,-0.3437 m 5.37432,0.7495 c -0.027,0 -0.04,0.018 -0.063,0.031 -0.051,0.031 -0.054,0.079 -0.094,0.094 -0.054,0.021 -0.11698,0.01 -0.12498,0.063 -0.006,0.041 0.033,0.055 0.031,0.094 -0.02,0.049 -0.053,0.066 -0.063,0.1249 0.068,0.11 0.22897,-0.01 0.31296,-0.031 0.038,-0.011 0.073,0 0.094,-0.031 0.023,-0.035 0.013,-0.105 0.031,-0.156 0.019,-0.056 0.069,-0.043 0.063,-0.094 -0.006,-0.05 -0.10599,-0.102 -0.18797,-0.094 m -7.31208,0.7807 c 0.061,0.016 0.19597,0.1929 0.063,0.2499 -0.013,0.01 -0.18698,0.036 -0.21897,0.031 -0.046,-0.01 -0.078,-0.086 -0.12499,-0.094 -0.092,-0.016 -0.21797,0.101 -0.28096,0 0.016,-0.059 0.086,-0.043 0.15598,-0.063 0.12498,-0.034 0.29796,-0.1529 0.40595,-0.1249 m 0.24996,0.3128 c 0.031,0 0.056,0.059 0.094,0.063 0.036,0 0.072,-0.036 0.094,-0.031 0.056,0.015 0.084,0.115 0.031,0.156 -0.044,0 -0.061,-0.037 -0.094,-0.031 -0.091,0.016 -0.11999,0.1929 -0.18798,0.1879 -0.064,-0.01 -0.096,-0.1409 -0.031,-0.1879 0.002,-0.04 -0.033,-0.054 -0.031,-0.094 0.02,-0.025 0.072,-0.066 0.12498,-0.063 m -0.31296,0.031 c 0.019,0.001 0.024,0 0.031,0 -0.009,0.071 -0.039,0.091 -0.094,0.125 -0.095,0.057 -0.15698,0.1279 -0.18797,0.2499 -0.009,0.036 -0.11099,0.1339 -0.15598,0.1249 -0.10599,-0.022 0.038,-0.2199 0.063,-0.2499 0.027,-0.033 0.062,-0.056 0.094,-0.094 0.03,-0.037 0.033,-0.105 0.063,-0.125 0.032,-0.022 0.13198,-0.033 0.18797,-0.031 m 9.49881,0.031 c 0.048,0.013 0.058,0.069 0.094,0.094 0.027,0.018 0.064,0.012 0.094,0.031 0.035,0.022 0.054,0.06 0.094,0.094 0.056,0.047 0.13998,0.088 0.21897,0.125 0.016,0.01 0.044,0.023 0.063,0.031 0.055,0.071 0.10399,0.1449 0.15598,0.2189 0.006,0.04 0.012,0.099 0.031,0.1249 0.052,0.071 0.13098,0.1319 0.18798,0.2189 -10e-4,0.083 0.036,0.133 0.094,0.1559 0.073,0.124 0.14898,0.2479 0.21897,0.3748 0.029,0.058 0.035,0.1289 0.063,0.1879 -0.021,0 -0.043,0.01 -0.063,0 -0.066,-0.116 -0.40895,-0.1389 -0.43795,0.031 -0.013,0.075 0.049,0.1749 -0.063,0.1879 -0.071,0.01 -0.15298,-0.073 -0.24997,-0.094 -0.04,-0.01 -0.094,0.014 -0.12498,0 -0.073,-0.025 -0.062,-0.1119 -0.12498,-0.1559 -0.036,-0.025 -0.12999,-0.056 -0.18798,-0.063 -0.036,0 -0.056,0 -0.094,0 -0.045,-0.01 -0.11798,-0.01 -0.15598,-0.031 -0.036,-0.022 -0.11599,-0.062 -0.12498,-0.094 -0.014,-0.049 0.09,-0.1139 0.094,-0.1558 0.002,-0.031 -0.023,-0.045 -0.031,-0.094 -0.005,-0.029 0.006,-0.074 0,-0.094 -0.01,-0.034 -0.071,-0.062 -0.12499,-0.063 -0.048,0 -0.084,0.03 -0.12498,0.031 -0.059,0.001 -0.17698,-0.037 -0.24997,-0.031 -0.044,0 -0.084,0.028 -0.12499,0.031 -0.11598,0.01 -0.19097,-0.01 -0.28096,0 -0.066,0 -0.18898,0.034 -0.24997,0.063 -0.031,0.014 -0.054,0.043 -0.094,0.063 -0.018,0.01 -0.039,0.021 -0.063,0.031 -0.038,0.017 -0.089,0.053 -0.12498,0.063 -0.052,0.013 -0.12399,0 -0.21898,0 -0.068,0 -0.18697,-0.014 -0.18797,-0.094 -10e-4,-0.1229 0.22697,-0.072 0.34396,-0.094 0.044,-0.01 0.073,-0.063 0.12498,-0.094 0.025,-0.015 0.039,-0.015 0.063,-0.031 0.04,-0.028 0.11898,-0.093 0.12498,-0.1249 0.006,-0.03 -0.035,-0.072 -0.031,-0.094 0.005,-0.028 0.057,-0.058 0.094,-0.094 0.056,-0.055 0.087,-0.1199 0.15598,-0.1559 0.047,-0.025 0.13499,-0.024 0.15599,-0.063 0.005,-0.043 -0.001,-0.055 0,-0.094 0.029,-0.027 0.038,-0.058 0.063,-0.063 0.072,-0.016 0.13498,0.035 0.21897,0.031 0.036,0 0.086,-0.01 0.12498,-0.031 0.033,-0.022 0.062,-0.045 0.094,-0.063 0.035,-0.018 0.051,-0.059 0.094,-0.063 0.10499,-0.01 0.17098,0.1239 0.21897,0.1879 0.04,0.053 0.15299,0.1189 0.21898,0.1559 0.037,0.021 0.084,0.045 0.12498,0.063 0.087,0.039 0.24697,0.1649 0.24997,0.2499 0.002,0.042 -0.038,0.054 -0.031,0.094 0.066,0.011 0.12298,-0.059 0.12498,-0.1249 10e-4,-0.041 -0.039,-0.05 -0.031,-0.094 0.031,-0.066 0.14798,-0.01 0.18798,-0.031 -0.007,-0.075 -0.12398,-0.086 -0.18798,-0.1249 -0.034,-0.021 -0.058,-0.048 -0.094,-0.063 -0.052,-0.021 -0.11598,-0.032 -0.15598,-0.063 -0.038,-0.029 -0.057,-0.08 -0.094,-0.1249 -0.054,-0.064 -0.15798,-0.073 -0.12498,-0.2189 0.016,-0.022 0.037,-0.069 0.063,-0.063 m -8.81189,0.2189 0.094,0 c 0.034,10e-4 0.08,-0.018 0.094,0 -0.022,0.088 -0.21197,0.063 -0.28096,0.031 0.004,-0.033 0.05,-0.027 0.094,-0.031 m -0.31296,0.156 c 0.023,0 0.039,-0.01 0.063,0 -0.062,0.052 -0.14398,0.092 -0.24997,0.1249 -0.051,0.016 -0.11598,0.025 -0.12498,-0.031 -0.011,-0.069 0.047,-0.056 0.094,-0.063 0.058,-0.01 0.14999,-0.029 0.21898,-0.031 m 8.6869,0 c -0.043,0.014 -0.066,0.1129 0,0.1249 0.031,-0.018 0.039,-0.068 0.031,-0.1249 -0.017,-0.018 -0.017,0 -0.031,0 m -0.031,0.1879 c -0.021,0.01 -0.04,0.01 -0.063,0.031 10e-4,0.075 0.015,0.1229 0,0.1879 0.043,0.082 0.13398,0.026 0.15598,-0.031 0.026,-0.1389 -0.03,-0.2049 -0.094,-0.1879 m 0.43795,0.3748 c 0.049,0.08 0.14098,0.137 0.24997,0.1559 0.04,-0.03 0.044,-0.1049 0.063,-0.1559 -0.047,10e-4 -0.097,0 -0.15598,0 -0.059,0 -0.12198,-0.028 -0.15598,0 m -11.68652,2.6867 c 0.16398,-0.01 0.21197,0.2159 0.34395,0.2809 0.033,0.017 0.082,0.022 0.12499,0.031 0.035,0.01 0.061,0.02 0.094,0.031 0.071,0.024 0.16198,0.01 0.21897,0.031 0.085,0.038 0.14598,0.2069 0.21897,0.2499 0.004,0.043 -0.013,0.093 0,0.1249 0.035,0.047 0.099,0.064 0.15598,0.094 0.068,0.037 0.092,0.1269 0.15598,0.1559 0.022,0.01 0.059,-0.01 0.094,0 0.088,0.027 0.11199,0.1468 0.18798,0.1248 0.05,-0.014 0.055,-0.078 0.063,-0.1248 0.033,-0.036 0.074,-0.093 0.12498,-0.094 0.083,0 0.095,0.075 0.12499,0.1559 0.017,0.046 0.051,0.1079 0.063,0.1559 0.021,0.083 0.017,0.3249 0,0.3748 -0.021,0.061 -0.10599,0.089 -0.15598,0.156 -0.024,0.031 -0.044,0.071 -0.063,0.094 -0.032,0.04 -0.069,0.057 -0.094,0.094 -0.014,0.021 -0.018,0.066 -0.031,0.094 -0.04,0.085 -0.096,0.148 -0.063,0.2499 0.014,0.042 0.062,0.076 0.063,0.125 0,0.058 -0.11498,0.093 -0.12498,0.1559 -0.007,0.047 0.048,0.126 0.063,0.1879 0.011,0.047 0.097,0.094 0.12498,0.125 0.047,0.053 0.082,0.1209 0.12499,0.1879 0.085,0.1299 0.13598,0.2799 0.21897,0.4058 0.043,0.066 0.12698,0.119 0.15598,0.1879 0.015,0.035 -0.014,0.094 0,0.125 0.048,0.1079 0.26597,0.2279 0.37495,0.2809 0.051,0.025 0.10999,0 0.15598,0.031 0.071,0.039 0.21398,0.1569 0.24997,0.2189 0.032,0.056 0.047,0.1929 0.063,0.2808 0.021,0.117 -0.005,0.2169 0,0.3439 0.004,0.069 0.03,0.1189 0.031,0.1879 0,0.024 10e-4,0.07 0,0.094 -0.002,0.083 0.007,0.1659 0,0.2498 -0.004,0.046 -0.003,0.087 0,0.125 0.004,0.041 0.028,0.057 0.031,0.094 0.002,0.039 -0.035,0.095 -0.031,0.125 0.009,0.084 0.077,0.1419 0.094,0.2189 0.013,0.061 0.039,0.2079 0.031,0.2809 -0.005,0.039 -0.025,0.083 -0.031,0.1249 -0.004,0.033 0.005,0.062 0,0.094 -0.006,0.047 -0.034,0.081 -0.031,0.1249 0.006,0.09 0.08,0.16 0.094,0.2499 0.005,0.03 -10e-4,0.065 0,0.094 10e-4,0.027 0.023,0.038 0.031,0.063 -0.26297,-0.1499 -0.50894,-0.3178 -0.74991,-0.4997 -0.22897,-0.173 -0.45094,-0.3639 -0.65592,-0.5628 -0.01,-0.01 -0.021,-0.021 -0.031,-0.031 -0.20698,-0.2039 -0.41395,-0.4278 -0.59393,-0.6557 -0.10398,-0.1319 -0.21797,-0.2669 -0.31296,-0.4058 -0.056,-0.083 -0.10399,-0.1639 -0.15598,-0.2499 -0.032,-0.051 -0.063,-0.104 -0.094,-0.1559 -0.089,-0.153 -0.17297,-0.3078 -0.24997,-0.4687 -0.049,-0.101 -0.081,-0.2079 -0.12498,-0.3129 -0.10499,-0.2479 -0.20497,-0.4888 -0.28096,-0.7497 -0.054,-0.1849 -0.086,-0.3708 -0.12499,-0.5627 -0.03,-0.146 -0.073,-0.2889 -0.094,-0.4378 -0.011,-0.081 -0.023,-0.168 -0.031,-0.2499 -0.024,-0.2349 -0.031,-0.4768 -0.031,-0.7186 0,-0.3019 0.026,-0.5837 0.063,-0.8746 10e-4,-0.01 -10e-4,-0.021 0,-0.031 0.063,0 0.14899,-0.092 0.21898,-0.094 m 2.68766,0.7497 c 0.064,-0.029 0.084,0.117 0.031,0.125 -0.05,0.01 -0.08,-0.102 -0.031,-0.125" style="fill:currentColor;fill-opacity:1" class="ColorScheme-Text"/>
12
+ </g>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs><g transform="translate(1,1)">
9
+ <path style="fill:currentColor;fill-opacity:1;stroke:none"
10
+ d="M 11.5 3 C 10.286139 3 9.2809778 3.8559279 9.0507812 5 L 3 5 L 3 6 L 9.0507812 6 C 9.2809778 7.1440721 10.286139 8 11.5 8 C 12.713861 8 13.719022 7.1440721 13.949219 6 L 19 6 L 19 5 L 13.949219 5 C 13.719022 3.8559279 12.713861 3 11.5 3 z M 5.5 14 C 4.1149999 14 3 15.115 3 16.5 C 3 17.885 4.1149999 19 5.5 19 C 6.7138604 19 7.7190223 18.144072 7.9492188 17 L 19 17 L 19 16 L 7.9492188 16 C 7.7190223 14.855928 6.7138604 14 5.5 14 z M 5.5 15 C 6.3310001 15 7 15.669 7 16.5 C 7 17.331 6.3310001 18 5.5 18 C 4.6689999 18 4 17.331 4 16.5 C 4 15.669 4.6689999 15 5.5 15 z "
11
+ class="ColorScheme-Text"
12
+ />
13
+ </g></svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 10 4 L 10 11 L 3 11 L 3 12 L 10 12 L 10 19 L 11 19 L 11 12 L 18 12 L 18 11 L 11 11 L 11 4 L 10 4 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 4 3 L 4 19 L 5 19 L 12 19 L 18 19 L 18 18 L 18 13 L 18 3 L 17 3 L 5 3 L 4 3 z M 5 4 L 17 4 L 17 13 L 17 18 L 12 18 L 5 18 L 5 4 z " class="ColorScheme-Text"/>
11
+ <path style="fill:#da4453;fill-opacity:1;stroke:none" d="M 14 11 L 14 15 L 15 15 L 15 11 L 14 11 z M 14 16 L 14 17 L 15 17 L 15 16 L 14 16 z "/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 3 3 L 3 19 L 8 19 L 8 3 L 3 3 z M 9 3 L 9 19 L 14 19 L 14 3 L 9 3 z M 15 3 L 15 19 L 20 19 L 20 3 L 15 3 z M 4 4 L 7 4 L 7 18 L 4 18 L 4 4 z M 10 4 L 13 4 L 13 18 L 10 18 L 10 4 z M 16 4 L 19 4 L 19 18 L 16 18 L 16 4 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ .ColorScheme-Accent {
8
+ color:#3daee9;
9
+ }
10
+ </style>
11
+ </defs>
12
+ <g transform="translate(1,1)">
13
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 6 3 L 6 6.9394531 L 6 11.091797 L 3.71875 8.8457031 L 3 9.5546875 L 6.28125 12.785156 L 6.5 13 L 6.71875 12.785156 L 10 9.5546875 L 9.28125 8.8457031 L 7 11.091797 L 7 6.9394531 L 7 3 L 6 3 z M 10 4 L 10 5 L 19 5 L 19 4 L 10 4 z M 16 6 L 16 7 L 19 7 L 19 6 L 16 6 z M 12 8 L 12 9 L 19 9 L 19 8 L 12 8 z M 10 10 L 10 11 L 19 11 L 19 10 L 10 10 z M 15 12 L 15 13 L 19 13 L 19 12 L 15 12 z M 3 14 L 3 15 L 19 15 L 19 14 L 3 14 z M 11 16 L 11 17 L 19 17 L 19 16 L 11 16 z M 13 18 L 13 19 L 19 19 L 19 18 L 13 18 z " class="ColorScheme-Text"/>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ .ColorScheme-Accent {
8
+ color:#3daee9;
9
+ }
10
+ </style>
11
+ </defs>
12
+ <g transform="translate(1,1)">
13
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 3 2 L 3 7 L 19 7 L 19 2 L 3 2 z M 4 3 L 18 3 L 18 6 L 4 6 L 4 3 z M 3 8 L 3 13 L 19 13 L 19 8 L 3 8 z M 4 9 L 18 9 L 18 12 L 4 12 L 4 9 z M 3 14 L 3 19 L 19 19 L 19 14 L 3 14 z M 4 15 L 18 15 L 18 18 L 4 18 L 4 15 z " class="ColorScheme-Text"/>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ .ColorScheme-Accent {
8
+ color:#3daee9;
9
+ }
10
+ </style>
11
+ </defs>
12
+ <g transform="translate(1,1)">
13
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 4 3 L 4 9 L 4 10 L 4 15 L 4 16 L 4 17 L 3 17 L 3 18 L 4 18 L 4 19 L 5 19 L 5 18 L 19 18 L 19 17 L 5 17 L 5 16 L 5.0078125 16 L 6 16 L 8 16 L 8 15.992188 L 8.0078125 16 L 10.007812 14 L 11.599609 14 L 13.599609 16 L 17.099609 16 L 19 16 L 19 15 L 17.099609 15 L 14.013672 15 L 12.013672 13 L 12 13 L 11.007812 13 L 10.599609 13 L 9.59375 13 L 7.59375 15 L 6 15 L 5.0078125 15 L 5 15 L 5 12 L 5 11 L 5 10 L 6 10 L 7 10 L 8.8730469 10 L 8.875 10 L 10.875 8 L 11.703125 7.171875 L 12.998047 5.8769531 L 15.121094 8 L 15.126953 7.9960938 L 15.130859 8 L 17.130859 6 L 17.958984 5.171875 L 19 4.1308594 L 18.292969 3.4238281 L 17.251953 4.4648438 L 16.423828 5.2929688 L 15.126953 6.5898438 L 13 4.4648438 L 12.998047 4.4667969 L 12.996094 4.4648438 L 11.46875 5.9921875 L 5 5.9921875 L 5 5 L 5 3 L 4 3 z M 5 6 L 11.460938 6 L 10.996094 6.4648438 L 10.167969 7.2929688 L 8.4609375 9 L 7 9 L 6 9 L 5 9 L 5 6 z " class="ColorScheme-Text"/>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ .ColorScheme-Accent {
8
+ color:#3daee9;
9
+ }
10
+ </style>
11
+ </defs>
12
+ <g transform="translate(1,1)">
13
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 10 3.0683594 C 6.0443281 3.5584193 3 6.907464 3 11 C 3 15.092536 6.0443281 18.441581 10 18.931641 L 10 17.921875 C 6.6006429 17.438059 4 14.537215 4 11 C 4 7.4627852 6.6006429 4.5619415 10 4.078125 L 10 3.0683594 z M 12 3.0683594 L 12 4.078125 C 15.399357 4.5619415 18 7.4627852 18 11 C 18 14.537215 15.399357 17.438059 12 17.921875 L 12 18.931641 C 15.955672 18.441581 19 15.092536 19 11 C 19 6.907464 15.955672 3.5584193 12 3.0683594 z M 11 5 C 7.676 5 5 7.676 5 11 C 5 14.324 7.676 17 11 17 C 14.324 17 17 14.324 17 11 C 17 10.118224 16.807518 9.283967 16.46875 8.53125 L 15.6875 9.3125 C 15.877228 9.8417746 16 10.403857 16 11 C 16 13.77 13.77 16 11 16 C 8.23 16 6 13.77 6 11 C 6 8.23 8.23 6 11 6 C 12.641573 6 14.079708 6.7951359 14.990234 8.0097656 L 15.712891 7.2871094 C 14.616004 5.8947115 12.918061 5 11 5 z M 11 7 C 9.892 7 8.8929219 7.4469219 8.1699219 8.1699219 L 8.8769531 8.8769531 C 9.4192031 8.3347031 10.169 8 11 8 C 12.662 8 14 9.338 14 11 C 14 12.662 12.662 14 11 14 C 9.338 14 8 12.662 8 11 C 8 10.698149 8.0564772 10.413074 8.1386719 10.138672 L 7.3574219 9.3574219 C 7.1318349 9.8589963 7 10.412506 7 11 C 7 13.216 8.784 15 11 15 C 13.216 15 15 13.216 15 11 C 15 8.784 13.216 7 11 7 z " class="ColorScheme-Text"/>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ .ColorScheme-Accent {
8
+ color:#3daee9;
9
+ }
10
+ </style>
11
+ </defs>
12
+ <g transform="translate(1,1)">
13
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 4 3 L 4 9 L 4 10 L 4 15 L 4 16 L 4 17 L 3 17 L 3 18 L 4 18 L 4 19 L 5 19 L 5 18 L 18.292969 18 L 19 18 L 19 17.292969 L 19 17 L 18.707031 17 L 17.292969 17 L 5 17 L 5 15.431641 L 5 15.423828 L 5 15 L 5 12.423828 L 5 11.423828 L 5 11 L 5 10 L 5 9 L 5 6 L 5 5.9921875 L 5 5 L 5 3 L 4 3 z M 17 3 L 17 4 L 18 4 L 18 3 L 17 3 z M 18 4 L 18 5 L 19 5 L 19 4 L 18 4 z M 18 5 L 17 5 L 17 6 L 18 6 L 18 5 z M 17 5 L 17 4 L 16 4 L 16 5 L 17 5 z M 6 4 L 6 5 L 7 5 L 7 4 L 6 4 z M 8 4 L 8 5 L 9 5 L 9 4 L 8 4 z M 6 6 L 6 7 L 7 7 L 7 6 L 6 6 z M 8 6 L 8 7 L 9 7 L 9 6 L 8 6 z M 11 7 L 11 8 L 12 8 L 12 7 L 11 7 z M 13 7 L 13 8 L 14 8 L 14 7 L 13 7 z M 11 9 L 11 10 L 12 10 L 12 9 L 11 9 z M 13 9 L 13 10 L 14 10 L 14 9 L 13 9 z M 7 13 L 7 14 L 8 14 L 8 13 L 7 13 z M 8 14 L 8 15 L 9 15 L 9 14 L 8 14 z M 8 15 L 7 15 L 7 16 L 8 16 L 8 15 z M 7 15 L 7 14 L 6 14 L 6 15 L 7 15 z " class="ColorScheme-Text"/>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ .ColorScheme-Accent {
8
+ color:#3daee9;
9
+ }
10
+ </style>
11
+ </defs>
12
+ <g transform="translate(1,1)">
13
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 3 3 L 3 6 L 5.0664062 6 L 12 16.402344 L 12 19 L 15 19 L 15 16 L 12.933594 16 L 6 5.5996094 L 6 5 L 16 5 L 16 6 L 19 6 L 19 3 L 16 3 L 16 4 L 6 4 L 6 3 L 3 3 z M 4 4 L 5 4 L 5 5 L 4 5 L 4 4 z M 17 4 L 18 4 L 18 5 L 17 5 L 17 4 z M 13 17 L 14 17 L 14 18 L 13 18 L 13 17 z " class="ColorScheme-Text"/>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <path style="fill:currentColor;fill-opacity:1;stroke:none"
10
+ d="M 6 10 C 4.8919999 10 4 10.892 4 12 C 4 13.108 4.8919999 14 6 14 C 7.1080001 14 8 13.108 8 12 C 8 10.892 7.1080001 10 6 10 z M 12 10 C 10.892 10 10 10.892 10 12 C 10 13.108 10.892 14 12 14 C 13.108 14 14 13.108 14 12 C 14 10.892 13.108 10 12 10 z M 18 10 C 16.892 10 16 10.892 16 12 C 16 13.108 16.892 14 18 14 C 19.108 14 20 13.108 20 12 C 20 10.892 19.108 10 18 10 z M 6 11 C 6.5540001 11 7 11.446 7 12 C 7 12.554 6.5540001 13 6 13 C 5.4459999 13 5 12.554 5 12 C 5 11.446 5.4459999 11 6 11 z M 12 11 C 12.554 11 13 11.446 13 12 C 13 12.554 12.554 13 12 13 C 11.446 13 11 12.554 11 12 C 11 11.446 11.446 11 12 11 z M 18 11 C 18.554 11 19 11.446 19 12 C 19 12.554 18.554 13 18 13 C 17.446 13 17 12.554 17 12 C 17 11.446 17.446 11 18 11 z "
11
+ class="ColorScheme-Text"
12
+ />
13
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs><g transform="translate(1,1)">
9
+ <path style="fill:currentColor" class="ColorScheme-Text" d="M 3 7 L 3 9 L 13 9 L 13 7 L 3 7 z" transform="translate(3 3)"/>
10
+ </g></svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 7 3 L 7 5 L 5 5 L 4 5 L 4 19 L 5 19 L 13 19 L 13 18 L 5 18 L 5 6 L 6 6 L 6 8 L 16 8 L 16 6 L 17 6 L 17 13 L 18 13 L 18 5 L 17 5 L 15 5 L 15 3 L 7 3 z M 7 9 L 7 10 L 15 10 L 15 9 L 7 9 z M 7 12 L 7 13 L 13 13 L 13 12 L 7 12 z M 16 13 L 15.425781 14.613281 L 13.878906 13.878906 L 14.613281 15.425781 L 13 16 L 14.613281 16.574219 L 13.878906 18.121094 L 15.425781 17.386719 L 16 19 L 16.574219 17.386719 L 18.121094 18.121094 L 17.386719 16.574219 L 19 16 L 17.386719 15.425781 L 18.121094 13.878906 L 16.574219 14.613281 L 16 13 z M 7 15 L 7 16 L 10 16 L 10 15 L 7 15 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 4.5 3 L 3.96875 3.96875 L 3 4.5 L 3.96875 5.03125 L 4.5 6 L 5.03125 5.03125 L 6 4.5 L 5.03125 3.96875 L 4.5 3 z M 9.5 3 L 8.96875 3.96875 L 8 4.5 L 8.96875 5.03125 L 9.5 6 L 10.03125 5.03125 L 11 4.5 L 10.03125 3.96875 L 9.5 3 z M 16.171875 3 L 3 16.171875 L 5.828125 19 L 19 5.828125 L 16.171875 3 z M 16.103516 4.4824219 L 17.517578 5.8964844 L 14.419922 8.9960938 L 13.003906 7.5800781 L 16.103516 4.4824219 z M 6.5 7 L 5.96875 7.96875 L 5 8.5 L 5.96875 9.03125 L 6.5 10 L 7.03125 9.03125 L 8 8.5 L 7.03125 7.96875 L 6.5 7 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 4 3 L 4 5 L 3 5 L 3 6 L 4 6 L 4 7 L 3 7 L 3 8 L 4 8 L 4 14 L 3 14 L 3 15 L 4 15 L 4 16 L 3 16 L 3 17 L 4 17 L 4 19 L 7 19 L 19 19 L 19 18 L 19 3 L 7 3 L 4 3 z M 7 4 L 9 4 L 10 4 L 18 4 L 18 6 L 18 7 L 18 9 L 18 10 L 18 12 L 18 13 L 18 15 L 18 16 L 18 18 L 10 18 L 9 18 L 7 18 L 7 16 L 7 15 L 7 13 L 7 12 L 7 10 L 7 9 L 7 7 L 7 6 L 7 4 z M 8 6 L 8 7 L 17 7 L 17 6 L 8 6 z M 8 10 L 8 11 L 17 11 L 17 10 L 8 10 z M 8 14 L 8 15 L 17 15 L 17 14 L 8 14 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 5 3 L 4 4 L 4 5 L 4 5.3046875 L 9 12.367188 L 9 16 L 9 16.039062 L 12.990234 19 L 13 19 L 13 12.367188 L 18 5.3046875 L 18 4 L 17 3 L 5 3 z M 5 4 L 17 4 L 17 4.9882812 L 12.035156 12 L 12 12 L 12 12.048828 L 12 13 L 12 17.019531 L 10 15.535156 L 10 13 L 10 12.048828 L 10 12 L 9.9648438 12 L 5 4.9882812 L 5 4 z M 6 5 L 8 8 L 8 6 L 10 5 L 6 5 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 3 3 L 3 10 L 9 10 L 9 16 L 10 16 L 12 16 L 12 19 L 19 19 L 19 12 L 12 12 L 12 15 L 10 15 L 10 10 L 10 7 L 12 7 L 12 10 L 19 10 L 19 3 L 12 3 L 12 6 L 10 6 L 10 3 L 3 3 z M 4 4 L 9 4 L 9 9 L 4 9 L 4 4 z M 13 4 L 18 4 L 18 9 L 13 9 L 13 4 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g transform="translate(1,1)">
10
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 15 3 L 15 19 L 19 19 L 19 3 L 15 3 z M 9 10 L 9 19 L 13 19 L 13 10 L 9 10 z M 3 14 L 3 19 L 7 19 L 7 14 L 3 14 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs><g transform="translate(1,1)">
9
+ <path
10
+ style="fill:currentColor;fill-opacity:1;stroke:none"
11
+ d="M 11 6 A 10 9.999975 0 0 0 2.3144531 11.070312 C 2.4995621 11.361743 2.7600802 11.597238 3.0664062 11.759766 A 9 8.999978 0 0 1 11 7 A 4 4 0 0 0 7 11 A 4 4 0 0 0 11 15 A 4 4 0 0 0 15 11 A 4 4 0 0 0 11.34375 7.0175781 A 9 8.999978 0 0 1 18.931641 11.761719 C 19.241063 11.598077 19.503624 11.359298 19.689453 11.064453 A 10 9.999975 0 0 0 11 6 z M 11 8 A 3 3 0 0 1 14 11 A 3 3 0 0 1 11 14 A 3 3 0 0 1 8 11 A 3 3 0 0 1 11 8 z M 11 9 C 9.892 9 9 9.892 9 11 C 9 12.108 9.892 13 11 13 C 12.108 13 13 12.108 13 11 C 13 10.79519 12.960983 10.601795 12.904297 10.416016 C 12.746415 10.759733 12.404317 11 12 11 C 11.446 11 11 10.554 11 10 C 11 9.595683 11.240267 9.2535881 11.583984 9.0957031 C 11.398205 9.0390231 11.20481 9 11 9 z "
12
+ class="ColorScheme-Text"
13
+ />
14
+ </g></svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><defs id="defs3051">
2
+ <style type="text/css" id="current-color-scheme">
3
+ .ColorScheme-NegativeText {
4
+ color:#da4453;
5
+ }
6
+ </style>
7
+ </defs>
8
+ <g style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-NegativeText"><path d="M4 4v24h24V4zm1 6h22v17H5z"/><path d="M12 17h8v3h-8z"/></g></svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <path style="fill:currentColor;fill-opacity:1;stroke:none"
10
+ d="M16 4A12 12 0 0 0 7.886719 7.179688L7.885 7.178A12 12 0 0 0 7.847656 7.214844 12 12 0 0 0 4 16 12 12 0 0 0 16 28 12 12 0 0 0 24.11328 24.820312L24.12 24.822A12 12 0 0 0 24.15234 24.785156 12 12 0 0 0 28 16 12 12 0 0 0 16 4M16 5A11 11 0 0 1 27 16 11 11 0 0 1 24.11523 23.408203L8.592 7.885A11 11 0 0 1 16 5M7.885 8.592L23.408 24.12A11 11 0 0 1 16 27 11 11 0 0 1 5 16 11 11 0 0 1 7.884766 8.591797"
11
+ class="ColorScheme-Text"
12
+ />
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <path style="fill:currentColor;fill-opacity:1;stroke:none"
10
+ d="m4 5v16l6 6v-6h18v-16zm1 1h22v14h-22z"
11
+ class="ColorScheme-Text"
12
+ />
13
+ </svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><style type="text/css" id="current-color-scheme">.ColorScheme-Text{color:#232629;}</style><path d="m30 6.5961948-19.303301 19.3032992-8.696699-8.696697.7071076-.707106 7.9895914 7.989592 18.596195-18.5961947z" style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Text"/></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><style type="text/css" id="current-color-scheme">.ColorScheme-Text{color:#232629;}</style><path d="m30 6.5961948-19.303301 19.3032992-8.696699-8.696697.7071076-.707106 7.9895914 7.989592 18.596195-18.5961947z" style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Text"/></svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <path style="fill:currentColor;fill-opacity:1;stroke:none"
10
+ d="m4 4v24h24l-1-1h-22v-13h5l3-3h14v16l1 1v-21h-10l-3-3z"
11
+ class="ColorScheme-Text"
12
+ />
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <path style="fill:currentColor;fill-opacity:1;stroke:none"
10
+ d="M 6 4 L 6 28 L 13 28 L 13 27 L 7 27 L 7 5 L 18 5 L 18 12 L 25 12 L 25 16 L 26 16 L 26 11 L 19 4 L 18 4 L 6 4 z M 14 16 L 14 17 L 14 20 L 14 21 L 14 27 L 14 28 L 26 28 L 26 27 L 26 20 L 26 19 L 26 18 L 21 18 L 19 16 L 19 16 L 19 16 L 15 16 L 14 16 z M 15 17 L 18.6 17 L 19.6 18 L 19 18 L 19 18 L 19 18 L 17 20 L 15 20 L 15 17 z M 15 21 L 25 21 L 25 27 L 15 27 L 15 21 z "
11
+ class="ColorScheme-Text"
12
+ />
13
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <defs
3
+ id="defs3051">
4
+ <style
5
+ type="text/css"
6
+ id="current-color-scheme">
7
+ .ColorScheme-Text {
8
+ color:#232629;
9
+ }
10
+ </style>
11
+ </defs>
12
+ <path
13
+ style="fill:currentColor;fill-opacity:1;stroke:none"
14
+ d="M 4 4 L 4 28 L 9 28 L 23 28 L 28 28 L 28 10 L 27 9 L 23 5 L 22 4 L 21 4 L 10 4 L 4 4 z M 5 5 L 10 5 L 10 13 L 21 13 L 21 5 L 21.585938 5 L 27 10.414062 L 27 27 L 23 27 L 23 19 L 9 19 L 9 27 L 5 27 L 5 5 z M 11 5 L 17 5 L 17 12 L 11 12 L 11 5 z M 10 20 L 22 20 L 22 27 L 10 27 L 10 20 z "
15
+ id="path60"
16
+ class="ColorScheme-Text"
17
+ />
18
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <defs id="defs3051">
3
+ <style type="text/css" id="current-color-scheme">
4
+ .ColorScheme-Text {
5
+ color:#232629;
6
+ }
7
+ .ColorScheme-Accent {
8
+ color:#3daee9;
9
+ }
10
+ </style>
11
+ </defs>
12
+ <path
13
+ style="fill:currentColor;fill-opacity:1;stroke:none"
14
+ d="M18.5 6A3.5 3.5 0 0 0 15.04102 9H4V10H15.04A3.5 3.5 0 0 0 18.5 13 3.5 3.5 0 0 0 21.958984 10H28V9H21.961A3.5 3.5 0 0 0 18.5 6M7.5 19A3.5 3.5 0 0 0 4 22.5 3.5 3.5 0 0 0 7.5 26 3.5 3.5 0 0 0 10.960938 23H28V22H10.959A3.5 3.5 0 0 0 7.5 19m0 1A2.5 2.5 0 0 1 10 22.5 2.5 2.5 0 0 1 7.5 25 2.5 2.5 0 0 1 5 22.5 2.5 2.5 0 0 1 7.5 20"
15
+ class="ColorScheme-Text"
16
+ />
17
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <defs
3
+ id="defs3051">
4
+ <style
5
+ type="text/css"
6
+ id="current-color-scheme">
7
+ .ColorScheme-Text {
8
+ color:#232629;
9
+ }
10
+ </style>
11
+ </defs>
12
+ <path
13
+ style="fill:currentColor;fill-opacity:1;stroke:none"
14
+ d="M 9.0390625 3.9960938 L 9.0390625 18.085938 L 5.2460938 14.292969 L 4.5390625 15 L 9.5390625 20 L 10.539062 19 L 14.539062 15 L 13.832031 14.292969 L 10.039062 18.085938 L 10.039062 3.9960938 L 9.0390625 3.9960938 z M 16 6 L 16 7 L 25 7 L 25 6 L 16 6 z M 16 9 L 16 10 L 22 10 L 22 9 L 16 9 z M 16 12 L 16 13 L 28 13 L 28 12 L 16 12 z M 16 15 L 16 16 L 27 16 L 27 15 L 16 15 z M 16 18 L 16 19 L 21 19 L 21 18 L 16 18 z M 4 21 L 4 22 L 28 22 L 28 21 L 4 21 z M 4 24 L 4 25 L 27 25 L 27 24 L 4 24 z M 16 27 L 16 28 L 28 28 L 28 27 L 16 27 z "
15
+ id="path130"
16
+ class="ColorScheme-Text"
17
+ />
18
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <defs
3
+ id="defs3051">
4
+ <style
5
+ type="text/css"
6
+ id="current-color-scheme">
7
+ .ColorScheme-Text {
8
+ color:#232629;
9
+ }
10
+ </style>
11
+ </defs>
12
+ <path
13
+ style="fill:currentColor;fill-opacity:1;stroke:none"
14
+ d="M 6.2929688 4 L 5 5.2929688 L 5 7.8320312 C 5.055 7.8720313 13 18.5 13 18.5 L 13 23.509766 L 19 28.011719 L 19 18.501953 L 27 7.8339844 L 27 5.2949219 L 25.707031 4.0019531 L 6.2929688 4 z M 6.7070312 5 L 25.292969 5 L 26 5.7070312 L 26 7.5019531 L 18 18.167969 L 18 26.009766 C 16.84 25.142766 15.285 23.975766 14 23.009766 L 14 18.167969 L 6 7.5019531 L 6 5.7070312 L 6.7070312 5 z M 7 6 L 12 12.5 C 11.985 12.505 12 9 12 9 L 15 6 L 7 6 z "
15
+ id="path64"
16
+ class="ColorScheme-Text"
17
+ />
18
+ </svg>