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,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 14 L 9 14 L 9 23 L 18 23 L 18 28 L 28 28 L 28 18 L 18 18 L 18 22 L 10 22 L 10 14 L 14 14 L 14 9 L 18 9 L 18 14 L 28 14 L 28 4 L 18 4 L 18 8 L 14 8 L 14 4 L 4 4 z M 5 5 L 13 5 L 13 13 L 5 13 L 5 5 z M 19 5 L 27 5 L 27 13 L 19 13 L 19 5 z "
15
+ id="path6"
16
+ class="ColorScheme-Text"
17
+ />
18
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
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
10
+ style="fill:currentColor"
11
+ d="M 7.5 2 A 4.5 4.5 0 0 0 3 6.5 A 4.5 4.5 0 0 0 3 7.1 A 3 3 0 0 0 1 10 A 3 3 0 0 0 4 13 L 11.5 13 A 3.5 3.5 0 0 0 15 9.5 A 3.5 3.5 0 0 0 12 6 A 4.5 4.5 0 0 0 7.5 2 z M 7.5 3 A 3.5 3.5 0 0 1 11 6.5 A 3.5 3.5 0 0 1 11 7 A 2.5 2.5 0 0 1 11.5 7 A 2.5 2.5 0 0 1 14 9.5 A 2.5 2.5 0 0 1 11.5 12 L 4 12 A 2 2 0 0 1 2 10 A 2 2 0 0 1 4 8 A 2 2 0 0 1 4.4 8 A 3.5 3.5 0 0 1 4 6.5 A 3.5 3.5 0 0 1 7.5 3 z "
12
+ class="ColorScheme-Text"/>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
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"
10
+ d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9 4 L 7 2 L 7 2 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.6 3 L 7.6 4 L 7 4 L 7 4 L 7 4 L 5 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z "
11
+ class="ColorScheme-Text"
12
+ />
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
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
10
+ style="fill:currentColor"
11
+ d="M 11 4 A 6 6 0 0 0 5 10 A 6 6 0 0 0 5 10.1 A 4 4 0 0 0 2 14 A 4 4 0 0 0 6 18 L 15 18 A 5 5 0 0 0 20 13 A 5 5 0 0 0 16.8 8.3 A 6 6 0 0 0 11 4 z M 11 5 A 5 5 0 0 1 15.9 9.1 A 4 4 0 0 1 19 13 A 4 4 0 0 1 15 17 L 6 17 A 3 3 0 0 1 3 14 A 3 3 0 0 1 6 11 A 3 3 0 0 1 6.1 11 A 5 5 0 0 1 6 10 A 5 5 0 0 1 11 5 z "
12
+ class="ColorScheme-Text"/>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
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
10
+ style="fill:currentColor"
11
+ d="M 3 3 L 3 4 L 3 19 L 4 19 L 19 19 L 19 18 L 19 5 L 12 5 L 10 3 L 10 3 L 10 3 L 4 3 L 3 3 z M 4 4 L 7 4 L 9.6 4 L 10.6 5 L 6.6 9 L 6.6 9 L 4 9 L 4 4 z M 9 8 L 18 8 L 18 18 L 4 18 L 4 10 L 5.6 10 L 7 10 L 7 10 L 7 10 L 9 8 z "
12
+ class="ColorScheme-Text" />
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" d="M 11 4 A 6 6 0 0 0 5 10 A 6 6 0 0 0 5 10.1 A 4 4 0 0 0 2 14 A 4 4 0 0 0 6 18 L 15 18 A 5 5 0 0 0 20 13 A 5 5 0 0 0 16.8 8.3 A 6 6 0 0 0 11 4 z M 11 5 A 5 5 0 0 1 15.9 9.1 A 4 4 0 0 1 19 13 A 4 4 0 0 1 15 17 L 6 17 A 3 3 0 0 1 3 14 A 3 3 0 0 1 6 11 A 3 3 0 0 1 6.1 11 A 5 5 0 0 1 6 10 A 5 5 0 0 1 11 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" d="M 3 3 L 3 4 L 3 19 L 4 19 L 19 19 L 19 18 L 19 5 L 12 5 L 10 3 L 10 3 L 10 3 L 4 3 L 3 3 z M 4 4 L 7 4 L 9.6 4 L 10.6 5 L 6.6 9 L 6.6 9 L 4 9 L 4 4 z M 9 8 L 18 8 L 18 18 L 4 18 L 4 10 L 5.6 10 L 7 10 L 7 10 L 7 10 L 9 8 z " class="ColorScheme-Text"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,35 @@
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:#31363b;
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="M 2 3 L 2 10 L 1 10 L 1 29 L 12 29 L 13 29 L 31 29 L 31 8 L 30 8 L 30 5 L 16 5 L 14 3 L 2 3 z "
15
+ class="ColorScheme-Accent"
16
+ />
17
+ <path
18
+ style="fill-opacity:0.33;fill-rule:evenodd"
19
+ d="m 2,3 0,7 9,0 L 13,8 30,8 30,5 16,5 14,3 2,3 Z"
20
+ />
21
+ <path
22
+ style="fill:#ffffff;fill-opacity:0.2;fill-rule:evenodd"
23
+ d="M 14 3 L 15 6 L 30 6 L 30 5 L 16 5 L 14 3 z M 13 8 L 11 10 L 1 10 L 1 11 L 12 11 L 13 8 z "
24
+ />
25
+ <path
26
+ style="fill-opacity:0.2;fill-rule:evenodd"
27
+ d="M 13 8 L 11 9 L 2 9 L 2 10 L 11 10 L 13 8 z M 1 28 L 1 29 L 31 29 L 31 28 L 1 28 z "
28
+ class="ColorScheme-Text"
29
+ />
30
+ <path
31
+ style="fill:currentColor;fill-opacity:0.6;stroke:none"
32
+ d="M 16 13 A 4 4 0 0 0 12 17 A 4 4 0 0 0 12 17.2 A 3 3 0 0 0 10 20 A 3 3 0 0 0 13 23 L 18.5 23 A 3.5 3.5 0 0 0 22 19.5 A 3.5 3.5 0 0 0 20 16.3125 A 4 4 0 0 0 16 13 z M 16 14 A 3 3 0 0 1 19 17 A 3 3 0 0 1 19 17 A 2.5 2.5 0 0 1 21 19.5 A 2.5 2.5 0 0 1 18.5 22 L 13 22 A 2 2 0 0 1 11 20 A 2 2 0 0 1 13 18 A 2 2 0 0 1 13.2 18 A 3 3 0 0 1 13 17 A 3 3 0 0 1 16 14 z "
33
+ class="ColorScheme-Text"
34
+ />
35
+ </svg>
@@ -0,0 +1,30 @@
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:#31363b;
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="M 2 3 L 2 10 L 1 10 L 1 29 L 12 29 L 13 29 L 31 29 L 31 8 L 30 8 L 30 5 L 16 5 L 14 3 L 2 3 z "
15
+ class="ColorScheme-Accent"
16
+ />
17
+ <path
18
+ style="fill-opacity:0.33;fill-rule:evenodd"
19
+ d="m 2,3 0,7 9,0 L 13,8 30,8 30,5 16,5 14,3 2,3 Z"
20
+ />
21
+ <path
22
+ style="fill:#ffffff;fill-opacity:0.2;fill-rule:evenodd"
23
+ d="M 14 3 L 15 6 L 30 6 L 30 5 L 16 5 L 14 3 z M 13 8 L 11 10 L 1 10 L 1 11 L 12 11 L 13 8 z "
24
+ />
25
+ <path
26
+ style="fill-opacity:0.2;fill-rule:evenodd"
27
+ d="M 13 8 L 11 9 L 2 9 L 2 10 L 11 10 L 13 8 z M 1 28 L 1 29 L 31 29 L 31 28 L 1 28 z "
28
+ class="ColorScheme-Text"
29
+ />
30
+ </svg>
@@ -0,0 +1,35 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
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"
14
+ d="M 4 6 L 4 11 L 4 20 L 3 20 L 3 21 L 3 21 C 3 21 3 21 3 21 L 3 57 L 3 58 L 4 58 L 60 58 L 61 58 L 61 57 L 61 21 L 61 21 L 61 16 L 60 16 L 60 11 C 60 11 60 11 60 11 L 60 11 L 60 10 L 32 10 L 28 6 L 4 6 z "
15
+ class="ColorScheme-Accent"
16
+ />
17
+ <path
18
+ style="fill-opacity:0.33"
19
+ d="M 4 6 L 4 11 L 4 20 L 22 20 L 26 16 L 60 16 L 60 11 C 60 11 60 11 60 11 L 60 11 L 60 10 L 32 10 L 28 6 L 4 6 z "
20
+ />
21
+ <path
22
+ style="fill:#ffffff;fill-opacity:0.2"
23
+ d="M 28 6 L 31 11 L 33 11 L 60 11 L 60 10 L 33 10 L 32 10 L 28 6 z M 26 16 L 22 20 L 3 20 L 3 21 L 23 21 L 26 16 z "
24
+ />
25
+ <path
26
+ style="fill-opacity:0.2;fill-rule:evenodd"
27
+ d="M 26 16 L 20 19 L 4 19 L 4 20 L 22 20 L 26 16 z M 3 57 L 3 58 L 4 58 L 60 58 L 61 58 L 61 57 L 60 57 L 4 57 L 3 57 z "
28
+ class="ColorScheme-Text"
29
+ />
30
+ <path
31
+ style="fill:currentColor;fill-opacity:0.6;stroke:none"
32
+ d="M 32 28 A 7 7 0 0 0 25 35 A 7 7 0 0 0 25.1 36 A 5 5 0 0 0 25 36 A 5 5 0 0 0 20 41 A 5 5 0 0 0 25 46 L 38 46 A 6 6 0 0 0 44 40 A 6 6 0 0 0 38.9 34.1 A 7 7 0 0 0 32 28 z M 32 29 A 6 6 0 0 1 32.6 29 A 6 6 0 0 1 35.4 30 A 6 6 0 0 1 35.4 30 A 6 6 0 0 1 36.7 31.3 A 6 6 0 0 1 36.7 31.3 A 6 6 0 0 1 37.9 34 A 6 6 0 0 1 38 35 A 5 5 0 0 1 39 35.1 A 5 5 0 0 1 39.5 35.2 A 5 5 0 0 1 39.5 35.2 A 5 5 0 0 1 39.9 35.4 A 5 5 0 0 1 40 35.4 A 5 5 0 0 1 40.4 35.6 A 5 5 0 0 1 40.4 35.6 A 5 5 0 0 1 40.8 35.9 A 5 5 0 0 1 40.8 35.9 A 5 5 0 0 1 41.2 36.2 A 5 5 0 0 1 41.2 36.2 A 5 5 0 0 1 41.6 36.5 A 5 5 0 0 1 41.6 36.5 A 5 5 0 0 1 42.2 37.3 A 5 5 0 0 1 42.2 37.3 A 5 5 0 0 1 42.5 37.7 A 5 5 0 0 1 42.5 37.7 A 5 5 0 0 1 42.7 38.2 A 5 5 0 0 1 42.7 38.2 A 5 5 0 0 1 42.8 38.7 A 5 5 0 0 1 42.8 38.7 A 5 5 0 0 1 42.9 39.2 A 5 5 0 0 1 42.9 39.1 A 5 5 0 0 1 43 39.6 A 5 5 0 0 1 43 40 A 5 5 0 0 1 38 45 L 25 45 A 4 4 0 0 1 21 41 A 4 4 0 0 1 21 40.6 A 4 4 0 0 1 25 37 A 4 4 0 0 1 25.3 37 A 4 4 0 0 1 25.3 37 A 4 4 0 0 1 26.5 37.3 A 6 6 0 0 1 26.1 36.1 A 6 6 0 0 1 26 35.6 A 6 6 0 0 1 26 35.5 A 6 6 0 0 1 26 35 A 6 6 0 0 1 26 34.4 A 6 6 0 0 1 32 29 z "
33
+ class="ColorScheme-Text"
34
+ />
35
+ </svg>
@@ -0,0 +1,30 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
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"
14
+ d="M 4 6 L 4 11 L 4 20 L 3 20 L 3 21 L 3 21 C 3 21 3 21 3 21 L 3 57 L 3 58 L 4 58 L 60 58 L 61 58 L 61 57 L 61 21 L 61 21 L 61 16 L 60 16 L 60 11 C 60 11 60 11 60 11 L 60 11 L 60 10 L 32 10 L 28 6 L 4 6 z "
15
+ class="ColorScheme-Accent"
16
+ />
17
+ <path
18
+ style="fill-opacity:0.33"
19
+ d="M 4 6 L 4 11 L 4 20 L 22 20 L 26 16 L 60 16 L 60 11 C 60 11 60 11 60 11 L 60 11 L 60 10 L 32 10 L 28 6 L 4 6 z "
20
+ />
21
+ <path
22
+ style="fill:#ffffff;fill-opacity:0.2"
23
+ d="M 28 6 L 31 11 L 33 11 L 60 11 L 60 10 L 33 10 L 32 10 L 28 6 z M 26 16 L 22 20 L 3 20 L 3 21 L 23 21 L 26 16 z "
24
+ />
25
+ <path
26
+ style="fill-opacity:0.2;fill-rule:evenodd"
27
+ d="M 26 16 L 20 19 L 4 19 L 4 20 L 22 20 L 26 16 z M 3 57 L 3 58 L 4 58 L 60 58 L 61 58 L 61 57 L 60 57 L 4 57 L 3 57 z "
28
+ class="ColorScheme-Text"
29
+ />
30
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
2
+ <style type="text/css" id="current-color-scheme">
3
+ .ColorScheme-NegativeText {
4
+ color:#da4453;
5
+ }
6
+ </style>
7
+ <rect class="ColorScheme-NegativeText" x="2" y="2" width="12" height="12" rx="2" fill="currentColor"/>
8
+ <path d="M 5.414,4 4,5.414 6.586,8 4,10.586 5.414,12 8,9.414 10.586,12 12,10.586 9.414,8 12,5.414 10.586,4 8,6.586 Z" fill="#fff"/>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
2
+ <style type="text/css" id="current-color-scheme">
3
+ .ColorScheme-Accent {
4
+ color:#3daee9;
5
+ }
6
+ </style>
7
+ <rect class="ColorScheme-Accent" x="2" y="2" width="12" height="12" rx="2" fill="currentColor"/>
8
+ <path d="m7 4v2h2v-2zm0 3v5h2v-5z" fill="#fff"/>
9
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
2
+ <style type="text/css">.ColorScheme-Text {
3
+ color:#232629;
4
+ }</style>
5
+ <rect x="2" y="2" width="12" height="12" rx="2" fill="#9b59b6"/>
6
+ <path d="M8 2a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2H7v3h2V9.867A4 4 0 0 0 12 6a4 4 0 0 0-4-4zM7 12v2h2v-2z" fill="#fff"/>
7
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
2
+ <style type="text/css" id="current-color-scheme">
3
+ .ColorScheme-NeutralText {
4
+ color:#f67400;
5
+ }
6
+ </style>
7
+ <path class="ColorScheme-NeutralText" d="m8.0065001 2.0000269a0.75001881 0.74999832 0 0 0-0.6772669 0.414749l-5.2501316 10.499976a0.75001881 0.74999832 0 0 0 0.6712668 1.085248h10.500264a0.75001881 0.74999832 0 0 0 0.671266-1.085248l-5.2501312-10.499976a0.75001881 0.74999832 0 0 0-0.6652667-0.414749z" fill="currentColor"/>
8
+ <path d="m7 6v4h2v-4zm0 5v2h2v-2z" fill="#fff"/>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
2
+ <style type="text/css" id="current-color-scheme">
3
+ .ColorScheme-NegativeText {
4
+ color:#da4453;
5
+ }
6
+ </style>
7
+ <rect class="ColorScheme-NegativeText" x="3" y="3" width="16" height="16" rx="2" fill="currentColor"/>
8
+ <path d="M 6.414,5 5,6.414 9.586,11 5,15.586 6.414,17 11,12.414 15.586,17 17,15.586 12.414,11 17,6.414 15.586,5 11,9.586 Z" fill="#fff"/>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
2
+ <style type="text/css" id="current-color-scheme">
3
+ .ColorScheme-Accent {
4
+ color:#3daee9;
5
+ }
6
+ </style>
7
+ <rect class="ColorScheme-Accent" x="3" y="3" width="16" height="16" rx="2" fill="currentColor"/>
8
+ <path d="m10 6v2h2v-2zm0 4v6h2v-6z" fill="#fff"/>
9
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
2
+ <style type="text/css">.ColorScheme-Text {
3
+ color:#232629;
4
+ }</style>
5
+ <rect x="3" y="3" width="16" height="16" rx="2" fill="#9b59b6"/>
6
+ <path d="m11 5a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2h-1v3h2v-1.133a4 4 0 0 0 3-3.867 4 4 0 0 0-4-4zm-1 10v2h2v-2z" fill="#fff"/>
7
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
2
+ <style type="text/css" id="current-color-scheme">
3
+ .ColorScheme-NeutralText {
4
+ color:#f67400;
5
+ }
6
+ </style>
7
+ <path class="ColorScheme-NeutralText" d="m11.006318 3.0000261a0.72728737 0.72727154 0 0 0-0.65674 0.4021811l-7.2728738 14.545431a0.72728737 0.72727154 0 0 0 0.6509222 1.052362h14.545748a0.72728737 0.72727154 0 0 0 0.650922-1.052362l-7.272874-14.545431a0.72728737 0.72727154 0 0 0-0.645104-0.4021811z" fill="currentColor"/>
8
+ <path d="m10 8v5h2v-5zm0 7v2h2v-2z" fill="#fff"/>
9
+ </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 3 4 L 3 16 L 6 20 L 6 17 L 6 16 L 19 16 L 19 4 L 3 4 z M 4 5 L 18 5 L 18 15 L 4 15 L 4 5 z M 8 6 L 7 7 L 10 10 L 7 13 L 8 14 L 11 11 L 14 14 L 15 13 L 12 10 L 15 7 L 14 6 L 11 9 L 8 6 z "
11
+ class="ColorScheme-Text"
12
+ />
13
+ </g></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
10
+ style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none"
11
+ d="M 3,4 3,16 6,20 6,17 6,16 19,16 19,4 3,4 Z M 4,5 18,5 18,15 4,15 4,5 Z m 6,1 0,1 2,0 0,-1 -2,0 z m 0,2 0,6 2,0 0,-6 -2,0 z"
12
+ class="ColorScheme-Text" />
13
+ </g></svg>
@@ -0,0 +1,9 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24" width="24" height="24">
2
+ <style type="text/css">.ColorScheme-Text {
3
+ color:#232629;
4
+ }</style>
5
+ <g transform="translate(1,1)">
6
+ <rect x="3" y="3" width="16" height="16" rx="2" fill="#9b59b6"/>
7
+ <path d="m11 5a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2h-1v3h2v-1.133a4 4 0 0 0 3-3.867 4 4 0 0 0-4-4zm-1 10v2h2v-2z" fill="#fff"/>
8
+ </g>
9
+ </svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><style type="text/css" id="current-color-scheme">.ColorScheme-Text{color:#232629;}</style><g transform="translate(1,1)"><g style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Text"><path d="m3 4v12l3 4v-3-1h13v-12zm1 1h14v10h-14z"/><path d="m10 6v5h2v-5zm0 6v2h2v-2z"/></g></g></svg>
@@ -0,0 +1,25 @@
1
+ <svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22.0377 9L8 22.1321V43.8679L21.1321 57H42.8679L56 42.9623V23.0377L42.8679 9H22.0377Z" fill="url(#paint0_linear_1700_19950)"/>
3
+ <path d="M22.0377 9L8 22.1321V43.8679L21.1321 57H42.8679L56 42.9623V23.0377L42.8679 9H22.0377Z" fill="#000" fill-opacity=".2"/>
4
+ <path d="M22.0377 8L8 21.1321V42.8679L21.1321 56H42.8679L56 41.9623V22.0377L42.8679 8H22.0377Z" fill="url(#paint1_linear_1700_19950)"/>
5
+ <path d="M28 56L17 45L46 18L56 28V41.75L42.7 56H28Z" fill="url(#paint2_linear_1700_19950)" fill-opacity=".8"/>
6
+ <path d="M27.7574 32L15.8787 43.8787L20.1213 48.1213L32 36.2426L43.8787 48.1213L48.1213 43.8787L36.2426 32L48.1213 20.1213L43.8787 15.8787L32 27.7573L20.1213 15.8787L15.8787 20.1213L27.7574 32Z" clip-rule="evenodd" fill="url(#paint3_linear_1700_19950)" fill-rule="evenodd"/>
7
+ <defs>
8
+ <linearGradient id="paint0_linear_1700_19950" x1="61.0769" x2="2.46154" y1="62.0769" y2="3.46154" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#C61423" offset="0"/>
10
+ <stop stop-color="#DC2B41" offset="1"/>
11
+ </linearGradient>
12
+ <linearGradient id="paint1_linear_1700_19950" x1="61.0769" x2="2.46154" y1="61.0769" y2="2.46154" gradientUnits="userSpaceOnUse">
13
+ <stop stop-color="#C61423" offset="0"/>
14
+ <stop stop-color="#DC2B41" offset="1"/>
15
+ </linearGradient>
16
+ <linearGradient id="paint2_linear_1700_19950" x1="29.875" x2="48.875" y1="29.875" y2="48.875" gradientUnits="userSpaceOnUse">
17
+ <stop stop-opacity=".3" offset="0"/>
18
+ <stop stop-opacity="0" offset="1"/>
19
+ </linearGradient>
20
+ <linearGradient id="paint3_linear_1700_19950" x1="-1000.92" x2="-1000.92" y1="48.1213" y2="15.8787" gradientUnits="userSpaceOnUse">
21
+ <stop stop-color="#FFF3F4" offset="0"/>
22
+ <stop stop-color="#FFF9FA" offset="1"/>
23
+ </linearGradient>
24
+ </defs>
25
+ </svg>
@@ -0,0 +1,25 @@
1
+ <svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="m32 59c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="url(#paint0_linear_1700_20037)"/>
3
+ <path d="m32 59c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="#000" fill-opacity=".2"/>
4
+ <path d="m32 58c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="url(#paint1_linear_1700_20037)"/>
5
+ <path d="M37 57.9997L29 49.9996H34V26L29 21V15H35L57.5 37.4766C56.5 43 51.5 55 37 57.9997Z" clip-rule="evenodd" fill="url(#paint2_linear_1700_20037)" fill-rule="evenodd" opacity=".2"/>
6
+ <path d="m29 15v6h6v-6h-6zm6 35v-25h-6v25h6z" clip-rule="evenodd" fill="url(#paint3_linear_1700_20037)" fill-rule="evenodd"/>
7
+ <defs>
8
+ <linearGradient id="paint0_linear_1700_20037" x2="64" y1="1" y2="65" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#20BCFA" offset="0"/>
10
+ <stop stop-color="#197CF1" offset="1"/>
11
+ </linearGradient>
12
+ <linearGradient id="paint1_linear_1700_20037" x2="64" y2="64" gradientUnits="userSpaceOnUse">
13
+ <stop stop-color="#20BCFA" offset="0"/>
14
+ <stop stop-color="#197CF1" offset="1"/>
15
+ </linearGradient>
16
+ <linearGradient id="paint2_linear_1700_20037" x1="34" x2="53.1927" y1="29.3073" y2="48.5" gradientUnits="userSpaceOnUse">
17
+ <stop stop-opacity=".6" offset="0"/>
18
+ <stop stop-opacity="0" offset="1"/>
19
+ </linearGradient>
20
+ <linearGradient id="paint3_linear_1700_20037" x1="32.5" x2="32.5" y1="52" y2="12" gradientUnits="userSpaceOnUse">
21
+ <stop stop-color="#E3ECF5" offset="0"/>
22
+ <stop stop-color="#fff" offset="1"/>
23
+ </linearGradient>
24
+ </defs>
25
+ </svg>
@@ -0,0 +1,25 @@
1
+ <svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="32" cy="33" r="26" fill="url(#paint0_linear_1700_19984)"/>
3
+ <circle cx="32" cy="33" r="26" fill="#000" fill-opacity=".2"/>
4
+ <circle cx="32" cy="32" r="26" fill="url(#paint1_linear_1700_19984)"/>
5
+ <path d="m35.6041 57.7522-6.493-6.4929h4.8148v-4.8148l-4.8148-4.8149h1.9259v-5.7777l-11.5149-11.5149 12.4779-11.5963 11.0741 5.2963 14.327 19.5369c-2.3007 10.5332-10.9863 18.6792-21.797 20.1783z" clip-rule="evenodd" fill="url(#paint2_linear_1700_19984)" fill-rule="evenodd" opacity=".2"/>
6
+ <path d="m25.3704 24.2963c0-2.2525 0.7603-3.5106 1.7061-4.275 1.0442-0.8439 2.704-1.3917 4.9235-1.3917 2.2176 0 3.934 0.548 5.0153 1.3546 0.9784 0.7299 1.6143 1.7859 1.6143 3.4454 0 0.9137-0.3049 1.7567-0.9834 2.752-0.6352 0.9317-1.4546 1.8064-2.4976 2.9198h-1e-4c-0.1702 0.1818-0.3465 0.3699-0.5288 0.5656-2.4447 2.6244-5.6197 6.2354-5.6197 11.9626h6c0-3.2257 1.6398-5.3285 4.0099-7.8729 0.1518-0.1629 0.3094-0.3305 0.4712-0.5026 1.0189-1.0839 2.2021-2.3424 3.1227-3.6928 1.127-1.6532 2.0258-3.6591 2.0258-6.1317 0-3.5404-1.5197-6.3844-4.0266-8.2546-2.4039-1.7933-5.5023-2.5454-8.603-2.5454-3.0988 0-6.2538 0.7523-8.6949 2.7251-2.5394 2.0523-3.9347 5.1275-3.9347 8.9416h6zm3.6296 21.1852v5.7778h6v-5.7778h-6z" clip-rule="evenodd" fill="url(#paint3_linear_1700_19984)" fill-rule="evenodd"/>
7
+ <defs>
8
+ <linearGradient id="paint0_linear_1700_19984" x1="64" x2="2.13255e-6" y1="65" y2=".999998" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#8E44AD" offset="0"/>
10
+ <stop stop-color="#9B59B6" offset="1"/>
11
+ </linearGradient>
12
+ <linearGradient id="paint1_linear_1700_19984" x1="64" x2="2.13255e-6" y1="64" y2="-2.13255e-6" gradientUnits="userSpaceOnUse">
13
+ <stop stop-color="#8E44AD" offset="0"/>
14
+ <stop stop-color="#9B59B6" offset="1"/>
15
+ </linearGradient>
16
+ <linearGradient id="paint2_linear_1700_19984" x1="16.5913" x2="44.3371" y1="26.8838" y2="54.6421" gradientUnits="userSpaceOnUse">
17
+ <stop stop-opacity=".6" offset=".497499"/>
18
+ <stop stop-opacity="0" offset=".994092"/>
19
+ </linearGradient>
20
+ <linearGradient id="paint3_linear_1700_19984" x1="-23.9312" x2="-23.9312" y1="65.2625" y2="12.6296" gradientUnits="userSpaceOnUse">
21
+ <stop stop-color="#E2DBE6" offset="0"/>
22
+ <stop stop-color="#fff" offset="1"/>
23
+ </linearGradient>
24
+ </defs>
25
+ </svg>
@@ -0,0 +1,25 @@
1
+ <svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6 57L32 5L58 57H6Z" fill="url(#paint0_linear_1700_20014)"/>
3
+ <path d="M43.0311 27.0874L58 57H34L29 52H35V46H33L29 42V19H35L43.0311 27.0874Z" clip-rule="evenodd" fill="url(#paint1_linear_1700_20014)" fill-rule="evenodd" opacity=".2"/>
4
+ <path d="m29 52v-6h6v6h-6zm0-33v23h6v-23h-6z" clip-rule="evenodd" fill="url(#paint2_linear_1700_20014)" fill-rule="evenodd"/>
5
+ <rect x="6" y="57" width="52" height="1" fill="url(#paint3_linear_1700_20014)"/>
6
+ <rect x="6" y="57" width="52" height="1" fill="#000" fill-opacity=".2"/>
7
+ <defs>
8
+ <linearGradient id="paint0_linear_1700_20014" x2="64" y2="64" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#FF902E" offset="0"/>
10
+ <stop stop-color="#F07406" offset="1"/>
11
+ </linearGradient>
12
+ <linearGradient id="paint1_linear_1700_20014" x1="31.5" x2="51.3995" y1="32.0365" y2="54.0321" gradientUnits="userSpaceOnUse">
13
+ <stop stop-opacity=".6" offset="0"/>
14
+ <stop stop-opacity="0" offset="1"/>
15
+ </linearGradient>
16
+ <linearGradient id="paint2_linear_1700_20014" x1="-64" x2="-64" y1="73.5" y2="19.5" gradientUnits="userSpaceOnUse">
17
+ <stop stop-color="#FFE3B3" offset="0"/>
18
+ <stop stop-color="#FFFEFC" offset="1"/>
19
+ </linearGradient>
20
+ <linearGradient id="paint3_linear_1700_20014" x2=".0473198" y1="56.9038" y2="59.3645" gradientUnits="userSpaceOnUse">
21
+ <stop stop-color="#FF902E" offset="0"/>
22
+ <stop stop-color="#F07406" offset="1"/>
23
+ </linearGradient>
24
+ </defs>
25
+ </svg>
@@ -0,0 +1,124 @@
1
+ """Collect relevant icons to icon theme subdirectories
2
+
3
+ The icons used rely on the KDE breeze theme.
4
+
5
+ apt install breeze-icon-theme
6
+
7
+ This script must be run on a linux machine. Please make sure
8
+ that `icon_root` is correct.
9
+ """
10
+ import pathlib
11
+ import shutil
12
+
13
+ # The key identifies the theme; each list contains icon names
14
+ icons = {
15
+ "breeze": [
16
+ "application-exit",
17
+ "code-context",
18
+ "dialog-cancel",
19
+ "dialog-close",
20
+ "dialog-error",
21
+ "dialog-information",
22
+ "dialog-messages",
23
+ "dialog-ok",
24
+ "dialog-ok-apply",
25
+ "dialog-question",
26
+ "dialog-warning",
27
+ "documentinfo",
28
+ "document-open",
29
+ "document-open-folder",
30
+ "document-save",
31
+ "draw-watercolor",
32
+ "edit-clear",
33
+ "edit-clear-all",
34
+ "edit-paste",
35
+ "folder",
36
+ "folder-cloud",
37
+ "globe",
38
+ "gtk-preferences",
39
+ "list-add",
40
+ "messagebox_warning",
41
+ "object-columns",
42
+ "object-order-lower",
43
+ "object-rows",
44
+ "office-chart-line-stacked",
45
+ "office-chart-ring",
46
+ "office-chart-scatter",
47
+ "remove",
48
+ "search",
49
+ "show-grid",
50
+ "special_paste",
51
+ "tools-wizard",
52
+ "view-calendar-list",
53
+ "view-filter",
54
+ "view-list-tree",
55
+ "view-statistics",
56
+ "visibility",
57
+ "path-mode-polyline",
58
+ "preferences-activities",
59
+ ],
60
+ }
61
+
62
+ # theme index file
63
+ index = """[Icon Theme]
64
+ Name=DCscopeMix
65
+ Comment=Mix of themes for DCscope
66
+
67
+ Directories={directories}
68
+ """
69
+
70
+ # theme file folder item
71
+ index_item = """
72
+ [{directory}]
73
+ Size={res}
74
+ Type=Fixed
75
+ """
76
+
77
+ icon_root = pathlib.Path("/usr/share/icons")
78
+
79
+
80
+ def find_icons(name, theme, resolutions_used):
81
+ cands = sorted((icon_root / theme).rglob("{}.svg".format(name)))
82
+ cands += sorted((icon_root / theme).rglob("{}.png".format(name)))
83
+ # Only allow directories with the resolutions used
84
+ cands = [c for c in cands
85
+ if (set(resolutions_used) & set([cp.name for cp in c.parents]))]
86
+ return cands
87
+
88
+
89
+ if __name__ == "__main__":
90
+ resolutions_used = ["16", "22", "24", "32", "64", "128"]
91
+ directories = []
92
+ here = pathlib.Path(__file__).parent
93
+ for theme in icons:
94
+ for name in icons[theme]:
95
+ ipaths = find_icons(name, theme, resolutions_used)
96
+ if not ipaths:
97
+ print("Could not find {} {}".format(theme, name))
98
+ continue
99
+ for ipath in ipaths:
100
+ relp = ipath.parent.relative_to(icon_root)
101
+ dest = here / relp
102
+ directories.append(str(relp))
103
+ dest.mkdir(exist_ok=True, parents=True)
104
+ shutil.copy(ipath, dest)
105
+
106
+ with (here / "index.theme").open("w") as fd:
107
+ directories = sorted(set(directories))
108
+ fd.write(index.format(directories=",".join(
109
+ ["dcscope"] + directories)))
110
+ # DCscope icons
111
+ fd.write(index_item.format(directory="dcscope", res="16"))
112
+ fd.write(index_item.format(directory="dcscope", res="22"))
113
+ fd.write(index_item.format(directory="dcscope", res="24"))
114
+ fd.write(index_item.format(directory="dcscope", res="32"))
115
+ fd.write(index_item.format(directory="dcscope", res="64"))
116
+ fd.write(index_item.format(directory="dcscope", res="128"))
117
+ # theme icons
118
+ for dd in directories:
119
+ for res in resolutions_used:
120
+ if res in str(dd):
121
+ break
122
+ else:
123
+ raise ValueError(f"No resolution found for {dd}!")
124
+ fd.write(index_item.format(directory=dd, res=res))
Binary file
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
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 3 2 L 3 13 L 6 13 L 6 14 L 11 14 L 14 11 L 14 4 L 13 4 L 13 2 L 3.7851562 2 L 3 2 z M 4 3 L 12 3 L 12 4 L 6 4 L 6 12 L 4 12 L 4 3 z M 7 5 L 13 5 L 13 10 L 10 10 L 10 13 L 7 13 L 7 5 z "
11
+ class="ColorScheme-Text"
12
+ />
13
+ </svg>