npmapps 1.0.25 → 1.0.27

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 (213) hide show
  1. package/PUBLISH.md +268 -0
  2. package/app/.codegraph/daemon.pid +6 -0
  3. package/app/.eslintrc.js +19 -0
  4. package/app/README.md +24 -0
  5. package/app/babel.config.js +5 -0
  6. package/app/devtool-windows-amd64.zip +0 -0
  7. package/app/docs/superpowers/plans/2026-05-29-quill-editor.md +836 -0
  8. package/app/docs/superpowers/specs/2026-05-29-quill-editor-design.md +210 -0
  9. package/app/docs/superpowers/specs/2026-06-06-lazy-cascader-design.md +400 -0
  10. package/app/jsconfig.json +19 -0
  11. package/app/package-lock.json +21347 -0
  12. package/app/package.json +63 -0
  13. package/app/postcss.config.js +10 -0
  14. package/app/public/favicon.ico +0 -0
  15. package/app/public/index.html +17 -0
  16. package/app/public//344/270/200/351/224/256/351/273/221/346/232/227.html +136 -0
  17. package/app/src/App.vue +110 -0
  18. package/app/src/assets/bpmn-camunda.jpg +0 -0
  19. package/app/src/assets/css/diagram.less +17 -0
  20. package/app/src/assets/icon/Icon.less +31 -0
  21. package/app/src/assets/icon/font/app-codes.css +26 -0
  22. package/app/src/assets/icon/font/app.eot +0 -0
  23. package/app/src/assets/icon/font/app.svg +60 -0
  24. package/app/src/assets/icon/font/app.ttf +0 -0
  25. package/app/src/assets/icon/font/app.woff +0 -0
  26. package/app/src/assets/icon/font/app.woff2 +0 -0
  27. package/app/src/assets/icon/font/config.json +248 -0
  28. package/app/src/assets/icon/font/source/raw/align-bottom-tool.svg +30 -0
  29. package/app/src/assets/icon/font/source/raw/align-horizontal-center-tool.svg +85 -0
  30. package/app/src/assets/icon/font/source/raw/align-left-tool.svg +84 -0
  31. package/app/src/assets/icon/font/source/raw/align-right-tool.svg +80 -0
  32. package/app/src/assets/icon/font/source/raw/align-top-tool.svg +84 -0
  33. package/app/src/assets/icon/font/source/raw/align-vertical-center-tool.svg +89 -0
  34. package/app/src/assets/icon/font/source/raw/distribute-horizontally-tool.svg +95 -0
  35. package/app/src/assets/icon/font/source/raw/distribute-vertically-tool.svg +99 -0
  36. package/app/src/assets/icon/font/source/raw/set-color-tool.svg +111 -0
  37. package/app/src/assets/icon/font/source/symbols/align-bottom-tool.svg +30 -0
  38. package/app/src/assets/icon/font/source/symbols/align-horizontal-center-tool.svg +30 -0
  39. package/app/src/assets/icon/font/source/symbols/align-left-tool.svg +30 -0
  40. package/app/src/assets/icon/font/source/symbols/align-right-tool.svg +30 -0
  41. package/app/src/assets/icon/font/source/symbols/align-top-tool.svg +30 -0
  42. package/app/src/assets/icon/font/source/symbols/align-vertical-center-tool.svg +30 -0
  43. package/app/src/assets/icon/font/source/symbols/distribute-horizontally-tool.svg +30 -0
  44. package/app/src/assets/icon/font/source/symbols/distribute-vertically-tool.svg +30 -0
  45. package/app/src/assets/icon/font/source/symbols/set-color-tool.svg +63 -0
  46. package/app/src/assets/logo.png +0 -0
  47. package/app/src/components/EllTable/README.md +70 -0
  48. package/app/src/components/EllTable/article.md +184 -0
  49. package/app/src/components/EllTable/index.js +213 -0
  50. package/app/src/components/FormulaEditor/FunctionSelector.vue +123 -0
  51. package/app/src/components/FormulaEditor/OperatorSelector.vue +184 -0
  52. package/app/src/components/FormulaEditor/ParameterSelector.vue +123 -0
  53. package/app/src/components/FormulaEditor/api.js +69 -0
  54. package/app/src/components/FormulaEditor/index.vue +435 -0
  55. package/app/src/components/HelloWorld.vue +58 -0
  56. package/app/src/components/PageHeader/index.vue +158 -0
  57. package/app/src/components/Splitter/README.md +144 -0
  58. package/app/src/components/Splitter/example.vue +88 -0
  59. package/app/src/components/Splitter/index.vue +203 -0
  60. package/app/src/components/diagram/ToolBar.vue +357 -0
  61. package/app/src/components/diagram/customTranslate/customTranslate.js +12 -0
  62. package/app/src/components/diagram/customTranslate/translationsGerman.js +241 -0
  63. package/app/src/components/diagram/index.vue +261 -0
  64. package/app/src/components/diagram/xmlData.js +29 -0
  65. package/app/src/directives/filldown.js +155 -0
  66. package/app/src/directives/filldownTable.js +291 -0
  67. package/app/src/main.js +40 -0
  68. package/app/src/router/index.js +63 -0
  69. package/app/src/store/index.js +23 -0
  70. package/app/src/utils/winBox.js +23 -0
  71. package/app/src/views/Extend/A.vue +12 -0
  72. package/app/src/views/Extend/B.vue +10 -0
  73. package/app/src/views/Extend/MagicalComponentsForELFormItem.vue +87 -0
  74. package/app/src/views/Extend/index.vue +59 -0
  75. package/app/src/views/Extend/tableMouseHorizontalWheel.vue +193 -0
  76. package/app/src/views/Home.vue +37 -0
  77. package/app/src/views/RouterJump.vue +155 -0
  78. package/app/src/views/css.vue +57 -0
  79. package/app/src/views/cssComponents/EllipsisText.vue +83 -0
  80. package/app/src/views/cssComponents/HoverCard.vue +79 -0
  81. package/app/src/views/cssComponents/TableHover.vue +140 -0
  82. package/app/src/views/cssComponents/inputSlo.vue +52 -0
  83. package/app/src/views/cssComponents/tableFixed.vue +158 -0
  84. package/app/src/views/echarts/echart-dome.vue +82 -0
  85. package/app/src/views/echarts/index.vue +118 -0
  86. package/app/src/views/echarts/pei3d.vue +667 -0
  87. package/app/src/views/element/bpmn/index.vue +18 -0
  88. package/app/src/views/element/components/attendanceCycle/index.vue +131 -0
  89. package/app/src/views/element/components/attendanceGroup/index.vue +147 -0
  90. package/app/src/views/element/components/attendancePersonnel/index.vue +158 -0
  91. package/app/src/views/element/components/companyCalendar/index.vue +147 -0
  92. package/app/src/views/element/components/shift/index.vue +147 -0
  93. package/app/src/views/element/components/shiftRotationSystem/index.vue +147 -0
  94. package/app/src/views/element/elTableJsx/columnManagement.vue +340 -0
  95. package/app/src/views/element/elTableJsx/dialogInput.vue +71 -0
  96. package/app/src/views/element/elTableJsx/elTableJsx.vue +1826 -0
  97. package/app/src/views/element/elTableJsx/formTable.vue +598 -0
  98. package/app/src/views/element/elTableJsx/index.vue +29 -0
  99. package/app/src/views/element/elTableJsx/simpleTable.vue +192 -0
  100. package/app/src/views/element/elTableJsx.zip +0 -0
  101. package/app/src/views/element/index.vue +44 -0
  102. package/app/src/views/element/lazyCascader/LazyCascader.vue +302 -0
  103. package/app/src/views/element/lazyCascader/data.js +205 -0
  104. package/app/src/views/element/lazyCascader/index.vue +315 -0
  105. package/app/src/views/element/quillEditor/README.md +163 -0
  106. package/app/src/views/element/quillEditor/example.vue +314 -0
  107. package/app/src/views/element/quillEditor/index.vue +409 -0
  108. package/app/src/views/element/quillEditor/toolbar.js +122 -0
  109. package/app/vue.config.js +15 -0
  110. package/package.json +1 -1
  111. package/app/wujie-vue3-child/.claude/settings.local.json +0 -8
  112. package/app/wujie-vue3-child/.vscode/extensions.json +0 -3
  113. package/app/wujie-vue3-child/PROJECT_MEMORY.md +0 -427
  114. package/app/wujie-vue3-child/README.md +0 -5
  115. package/app/wujie-vue3-child/index.html +0 -13
  116. package/app/wujie-vue3-child/package-lock.json +0 -5744
  117. package/app/wujie-vue3-child/package.json +0 -28
  118. package/app/wujie-vue3-child/public/vite.svg +0 -1
  119. package/app/wujie-vue3-child/src/App.vue +0 -130
  120. package/app/wujie-vue3-child/src/assets/vue.svg +0 -1
  121. package/app/wujie-vue3-child/src/components/HelloWorld.vue +0 -43
  122. package/app/wujie-vue3-child/src/components/SmartAnchorTabs/index.jsx +0 -224
  123. package/app/wujie-vue3-child/src/components/SmartAnchorTabs/style.css +0 -154
  124. package/app/wujie-vue3-child/src/components/tags-view.vue +0 -193
  125. package/app/wujie-vue3-child/src/components/tags-view1.vue +0 -131
  126. package/app/wujie-vue3-child/src/directives/aiLoading.js +0 -182
  127. package/app/wujie-vue3-child/src/hooks/useClickOutside.js +0 -11
  128. package/app/wujie-vue3-child/src/hooks/useTableDragSort.js +0 -28
  129. package/app/wujie-vue3-child/src/main.js +0 -18
  130. package/app/wujie-vue3-child/src/router/index.js +0 -104
  131. package/app/wujie-vue3-child/src/store/tagsViewStroe.js +0 -34
  132. package/app/wujie-vue3-child/src/style.css +0 -171
  133. package/app/wujie-vue3-child/src/views/aiCoach/collapseExpand/index.jsx +0 -108
  134. package/app/wujie-vue3-child/src/views/aiCoach/collapseExpand/index.module.scss +0 -97
  135. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/README.md +0 -836
  136. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/REFLEX_EXAMPLES.md +0 -728
  137. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentPersonnelSelector.jsx +0 -687
  138. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentPersonnelSelector.module.scss +0 -560
  139. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelector.jsx +0 -570
  140. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelector.module.scss +0 -330
  141. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelectorV2.jsx +0 -378
  142. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelectorV2.module.scss +0 -228
  143. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/OptionsSelector.jsx +0 -399
  144. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/OptionsSelector.module.scss +0 -252
  145. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PersonnelSelector.jsx +0 -585
  146. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PersonnelSelector.module.scss +0 -331
  147. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PopoverSelector.jsx +0 -392
  148. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PopoverSelector.module.scss +0 -39
  149. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/README.md +0 -248
  150. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/SelectorTrigger.jsx +0 -194
  151. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/index.jsx +0 -1459
  152. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/mockData.js +0 -301
  153. package/app/wujie-vue3-child/src/views/aiCoach/dialogueSegment/index.jsx +0 -182
  154. package/app/wujie-vue3-child/src/views/aiCoach/dialogueSegment/index.module.scss +0 -28
  155. package/app/wujie-vue3-child/src/views/aiCoach/index.jsx +0 -375
  156. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ChartsPanel/index.jsx +0 -121
  157. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ChartsPanel/index.module.scss +0 -76
  158. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/DonutChart/index.jsx +0 -104
  159. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/PracticeTable/index.jsx +0 -75
  160. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/PracticeTable/index.module.scss +0 -12
  161. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankBarChart/index.jsx +0 -62
  162. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankBarChart/index.module.scss +0 -43
  163. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingGroup/index.jsx +0 -29
  164. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingGroup/index.module.scss +0 -5
  165. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingList/index.jsx +0 -58
  166. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingList/index.module.scss +0 -85
  167. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ScriptStatsPanel/index.jsx +0 -92
  168. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ScriptStatsPanel/index.module.scss +0 -56
  169. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/StatCardsRow/index.jsx +0 -40
  170. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/StatCardsRow/index.module.scss +0 -53
  171. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/echarts/EchartsDonut.jsx +0 -106
  172. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/echarts/EchartsRankBar.jsx +0 -132
  173. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/index.jsx +0 -176
  174. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/index.module.scss +0 -96
  175. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/CoachReport/index.jsx +0 -162
  176. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/CoachReport/index.module.scss +0 -16
  177. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ComprehensiveEvaluation/index.jsx +0 -29
  178. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ComprehensiveEvaluation/index.module.scss +0 -25
  179. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueBubble/index.jsx +0 -106
  180. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueBubble/index.module.scss +0 -164
  181. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueRecord/index.jsx +0 -182
  182. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueRecord/index.module.scss +0 -203
  183. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionDetail/index.jsx +0 -145
  184. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionDetail/index.module.scss +0 -126
  185. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionScores/index.jsx +0 -67
  186. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionScores/index.module.scss +0 -105
  187. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ReportHeader/index.jsx +0 -81
  188. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ReportHeader/index.module.scss +0 -47
  189. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/RoleInfo/index.jsx +0 -64
  190. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/RoleInfo/index.module.scss +0 -85
  191. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ScoreBadge/index.jsx +0 -39
  192. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ScoreBadge/index.module.scss +0 -44
  193. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/SubDimensionItem/index.jsx +0 -83
  194. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/SubDimensionItem/index.module.scss +0 -101
  195. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/index.jsx +0 -50
  196. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/index.module.scss +0 -25
  197. package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/index.jsx +0 -196
  198. package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/index.module.scss +0 -41
  199. package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/inputColumn/index.jsx +0 -183
  200. package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/inputColumn/index.module.scss +0 -115
  201. package/app/wujie-vue3-child/src/views/child-to-parent.vue +0 -117
  202. package/app/wujie-vue3-child/src/views/home.vue +0 -53
  203. package/app/wujie-vue3-child/src/views/jsx/btnSelect/btnSelect.vue +0 -169
  204. package/app/wujie-vue3-child/src/views/jsx/btnSelect/index.vue +0 -69
  205. package/app/wujie-vue3-child/src/views/jsx/com.vue +0 -44
  206. package/app/wujie-vue3-child/src/views/jsx/dialog.jsx +0 -66
  207. package/app/wujie-vue3-child/src/views/jsx/index.vue +0 -72
  208. package/app/wujie-vue3-child/src/views/jsx/props.vue +0 -33
  209. package/app/wujie-vue3-child/src/views/parent-to-child.vue +0 -225
  210. package/app/wujie-vue3-child/src/views/phone-code.vue +0 -318
  211. package/app/wujie-vue3-child/src/views/router-jump.vue +0 -123
  212. package/app/wujie-vue3-child/src/views/test.vue +0 -192
  213. package/app/wujie-vue3-child/vite.config.js +0 -15
@@ -0,0 +1,89 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ version="1.1"
11
+ id="svg3891"
12
+ height="2048"
13
+ width="2048"
14
+ inkscape:version="0.91 r13725"
15
+ sodipodi:docname="align-vertical-center-tool.svg">
16
+ <sodipodi:namedview
17
+ pagecolor="#ffffff"
18
+ bordercolor="#666666"
19
+ borderopacity="1"
20
+ objecttolerance="10"
21
+ gridtolerance="10"
22
+ guidetolerance="10"
23
+ inkscape:pageopacity="0"
24
+ inkscape:pageshadow="2"
25
+ inkscape:window-width="1600"
26
+ inkscape:window-height="847"
27
+ id="namedview8"
28
+ showgrid="true"
29
+ inkscape:snap-bbox="true"
30
+ inkscape:bbox-paths="true"
31
+ inkscape:snap-bbox-edge-midpoints="true"
32
+ inkscape:bbox-nodes="true"
33
+ inkscape:snap-bbox-midpoints="false"
34
+ inkscape:zoom="0.23046875"
35
+ inkscape:cx="-263.10357"
36
+ inkscape:cy="1024"
37
+ inkscape:window-x="-8"
38
+ inkscape:window-y="-8"
39
+ inkscape:window-maximized="1"
40
+ inkscape:current-layer="svg3891">
41
+ <inkscape:grid
42
+ type="xygrid"
43
+ id="grid4137"
44
+ empspacing="146" />
45
+ </sodipodi:namedview>
46
+ <defs
47
+ id="defs3893" />
48
+ <metadata
49
+ id="metadata3896">
50
+ <rdf:RDF>
51
+ <cc:Work
52
+ rdf:about="">
53
+ <dc:format>image/svg+xml</dc:format>
54
+ <dc:type
55
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
56
+ <dc:title></dc:title>
57
+ </cc:Work>
58
+ </rdf:RDF>
59
+ </metadata>
60
+ <g
61
+ id="g4138"
62
+ transform="matrix(0,1,-1,0,2048,4.0000065)">
63
+ <path
64
+ style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
65
+ d="m 1027.9727,1318 c 0,146 0,146 0,146"
66
+ id="path4363-4-2-8-5-8-0-8"
67
+ inkscape:connector-curvature="0" />
68
+ <path
69
+ inkscape:connector-curvature="0"
70
+ style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
71
+ d="M 364.99999,515 1679,515 l 0,-437.999997 -1314.00001,0 0,437.999997 z"
72
+ id="rect4338-7-82-22-4" />
73
+ <path
74
+ inkscape:connector-curvature="0"
75
+ style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
76
+ d="m 657,1245 730,0 0,-438 -730,0 0,438 z"
77
+ id="rect4338-7-82-22-4-9" />
78
+ <path
79
+ style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
80
+ d="m 1022,588 c 0,145.99998 0,145.99998 0,145.99998"
81
+ id="path4363-4-2-8-5-8-0-8-4"
82
+ inkscape:connector-curvature="0" />
83
+ <path
84
+ inkscape:connector-curvature="0"
85
+ style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
86
+ d="m 365,1975 1314,0 0,-438 -1314,0 0,438 z"
87
+ id="rect4338-7-82-22-4-7" />
88
+ </g>
89
+ </svg>
@@ -0,0 +1,95 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ version="1.1"
11
+ id="svg3891"
12
+ height="2048"
13
+ width="2048"
14
+ inkscape:version="0.91 r13725"
15
+ sodipodi:docname="distribute-horizontally-tool.svg">
16
+ <sodipodi:namedview
17
+ pagecolor="#ffffff"
18
+ bordercolor="#666666"
19
+ borderopacity="1"
20
+ objecttolerance="10"
21
+ gridtolerance="10"
22
+ guidetolerance="10"
23
+ inkscape:pageopacity="0"
24
+ inkscape:pageshadow="2"
25
+ inkscape:window-width="1600"
26
+ inkscape:window-height="847"
27
+ id="namedview8"
28
+ showgrid="true"
29
+ inkscape:snap-bbox="true"
30
+ inkscape:bbox-paths="true"
31
+ inkscape:snap-bbox-edge-midpoints="true"
32
+ inkscape:bbox-nodes="true"
33
+ inkscape:snap-bbox-midpoints="false"
34
+ inkscape:zoom="0.23046875"
35
+ inkscape:cx="799.73227"
36
+ inkscape:cy="1024"
37
+ inkscape:window-x="-8"
38
+ inkscape:window-y="-8"
39
+ inkscape:window-maximized="1"
40
+ inkscape:current-layer="svg3891">
41
+ <inkscape:grid
42
+ type="xygrid"
43
+ id="grid4140"
44
+ empspacing="146" />
45
+ </sodipodi:namedview>
46
+ <defs
47
+ id="defs3893" />
48
+ <metadata
49
+ id="metadata3896">
50
+ <rdf:RDF>
51
+ <cc:Work
52
+ rdf:about="">
53
+ <dc:format>image/svg+xml</dc:format>
54
+ <dc:type
55
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
56
+ <dc:title></dc:title>
57
+ </cc:Work>
58
+ </rdf:RDF>
59
+ </metadata>
60
+ <path
61
+ id="rect4338-7-82-22"
62
+ d="m 73.000002,661 0,1022 438.000008,0 0,-1022 -438.000008,0 z"
63
+ style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
64
+ inkscape:connector-curvature="0" />
65
+ <path
66
+ inkscape:connector-curvature="0"
67
+ id="path4363-4-2-8-5-8-0-8-1-5-5"
68
+ d="m 438,369 c 1168,0 1168,0 1168,0"
69
+ style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
70
+ <path
71
+ id="rect4338-7-82-22-9"
72
+ d="m 802.99999,660.99999 0,730.00001 438.00001,0 0,-730.00001 -438,0 z"
73
+ style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
74
+ inkscape:connector-curvature="0" />
75
+ <path
76
+ id="rect4338-7-82-22-3"
77
+ d="m 1533,661 0,1022 438,0 0,-1022 -438,0 z"
78
+ style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
79
+ inkscape:connector-curvature="0" />
80
+ <path
81
+ inkscape:connector-curvature="0"
82
+ id="path4363-4-2-8-5-8-0-8-1-5-5-1"
83
+ d="m 511,442 c 0,146 0,146 0,146"
84
+ style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
85
+ <path
86
+ inkscape:connector-curvature="0"
87
+ id="path4363-4-2-8-5-8-0-8-1-5-5-1-9"
88
+ d="m 1022,442 c 0,146 0,146 0,146"
89
+ style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
90
+ <path
91
+ inkscape:connector-curvature="0"
92
+ id="path4363-4-2-8-5-8-0-8-1-5-5-1-4"
93
+ d="m 1533,442 c 0,146 0,146 0,146"
94
+ style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
95
+ </svg>
@@ -0,0 +1,99 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ version="1.1"
11
+ id="svg3891"
12
+ height="2048"
13
+ width="2048"
14
+ inkscape:version="0.91 r13725"
15
+ sodipodi:docname="distribute-vertically-tool.svg">
16
+ <sodipodi:namedview
17
+ pagecolor="#ffffff"
18
+ bordercolor="#666666"
19
+ borderopacity="1"
20
+ objecttolerance="10"
21
+ gridtolerance="10"
22
+ guidetolerance="10"
23
+ inkscape:pageopacity="0"
24
+ inkscape:pageshadow="2"
25
+ inkscape:window-width="1600"
26
+ inkscape:window-height="847"
27
+ id="namedview8"
28
+ showgrid="true"
29
+ inkscape:snap-bbox="true"
30
+ inkscape:bbox-paths="true"
31
+ inkscape:snap-bbox-edge-midpoints="true"
32
+ inkscape:bbox-nodes="true"
33
+ inkscape:snap-bbox-midpoints="false"
34
+ inkscape:zoom="0.23046875"
35
+ inkscape:cx="799.73227"
36
+ inkscape:cy="1024"
37
+ inkscape:window-x="-8"
38
+ inkscape:window-y="-8"
39
+ inkscape:window-maximized="1"
40
+ inkscape:current-layer="svg3891">
41
+ <inkscape:grid
42
+ type="xygrid"
43
+ id="grid4140"
44
+ empspacing="146" />
45
+ </sodipodi:namedview>
46
+ <defs
47
+ id="defs3893" />
48
+ <metadata
49
+ id="metadata3896">
50
+ <rdf:RDF>
51
+ <cc:Work
52
+ rdf:about="">
53
+ <dc:format>image/svg+xml</dc:format>
54
+ <dc:type
55
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
56
+ <dc:title></dc:title>
57
+ </cc:Work>
58
+ </rdf:RDF>
59
+ </metadata>
60
+ <g
61
+ id="g4206"
62
+ transform="matrix(0,-1,1,0,-3.999999,2048)">
63
+ <path
64
+ inkscape:connector-curvature="0"
65
+ style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
66
+ d="m 73.000002,661 0,1022 438.000008,0 0,-1022 -438.000008,0 z"
67
+ id="rect4338-7-82-22" />
68
+ <path
69
+ style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
70
+ d="m 438,369 c 1168,0 1168,0 1168,0"
71
+ id="path4363-4-2-8-5-8-0-8-1-5-5"
72
+ inkscape:connector-curvature="0" />
73
+ <path
74
+ inkscape:connector-curvature="0"
75
+ style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
76
+ d="m 802.99999,660.99999 0,730.00001 438.00001,0 0,-730.00001 -438,0 z"
77
+ id="rect4338-7-82-22-9" />
78
+ <path
79
+ inkscape:connector-curvature="0"
80
+ style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
81
+ d="m 1533,661 0,1022 438,0 0,-1022 -438,0 z"
82
+ id="rect4338-7-82-22-3" />
83
+ <path
84
+ style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
85
+ d="m 511,442 c 0,146 0,146 0,146"
86
+ id="path4363-4-2-8-5-8-0-8-1-5-5-1"
87
+ inkscape:connector-curvature="0" />
88
+ <path
89
+ style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
90
+ d="m 1022,442 c 0,146 0,146 0,146"
91
+ id="path4363-4-2-8-5-8-0-8-1-5-5-1-9"
92
+ inkscape:connector-curvature="0" />
93
+ <path
94
+ style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
95
+ d="m 1533,442 c 0,146 0,146 0,146"
96
+ id="path4363-4-2-8-5-8-0-8-1-5-5-1-4"
97
+ inkscape:connector-curvature="0" />
98
+ </g>
99
+ </svg>
@@ -0,0 +1,111 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ width="2048"
11
+ height="2048"
12
+ id="svg3891"
13
+ version="1.1"
14
+ inkscape:version="0.91 r13725"
15
+ sodipodi:docname="set-color.svg"
16
+ inkscape:export-filename="C:\Users\Philipp\Desktop\align-bottom-tool.png"
17
+ inkscape:export-xdpi="0.69999999"
18
+ inkscape:export-ydpi="0.69999999">
19
+ <sodipodi:namedview
20
+ pagecolor="#ffffff"
21
+ bordercolor="#666666"
22
+ borderopacity="1"
23
+ objecttolerance="10"
24
+ gridtolerance="10"
25
+ guidetolerance="10"
26
+ inkscape:pageopacity="0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:window-width="1920"
29
+ inkscape:window-height="1027"
30
+ id="namedview6"
31
+ showgrid="false"
32
+ inkscape:snap-bbox="true"
33
+ inkscape:bbox-paths="true"
34
+ inkscape:bbox-nodes="true"
35
+ inkscape:snap-bbox-edge-midpoints="true"
36
+ inkscape:snap-bbox-midpoints="true"
37
+ inkscape:snap-center="false"
38
+ inkscape:zoom="0.16"
39
+ inkscape:cx="1019.5806"
40
+ inkscape:cy="976.38444"
41
+ inkscape:window-x="1592"
42
+ inkscape:window-y="-8"
43
+ inkscape:window-maximized="1"
44
+ inkscape:current-layer="svg3891" />
45
+ <defs
46
+ id="defs3893" />
47
+ <metadata
48
+ id="metadata3896">
49
+ <rdf:RDF>
50
+ <cc:Work
51
+ rdf:about="">
52
+ <dc:format>image/svg+xml</dc:format>
53
+ <dc:type
54
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
55
+ <dc:title></dc:title>
56
+ </cc:Work>
57
+ </rdf:RDF>
58
+ </metadata>
59
+ <g
60
+ id="g4247"
61
+ transform="matrix(0.86657935,0.86656601,-0.8706519,0.8706385,1241.9444,-973.98574)">
62
+ <rect
63
+ transform="matrix(0,1,-1,0,0,0)"
64
+ ry="7.2573023e-008"
65
+ rx="66287.227"
66
+ y="-1204"
67
+ x="300.12634"
68
+ height="360"
69
+ width="1000"
70
+ id="rect4136-7"
71
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
72
+ <rect
73
+ ry="7.2234677e-008"
74
+ rx="66597.734"
75
+ y="1542.1864"
76
+ x="603.13623"
77
+ height="338.4407"
78
+ width="854.00006"
79
+ id="rect4134"
80
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:118.85426331;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
81
+ <rect
82
+ ry="7.2234677e-008"
83
+ rx="66597.719"
84
+ y="1122.6344"
85
+ x="517.86371"
86
+ height="208.27118"
87
+ width="1000"
88
+ id="rect4136"
89
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
90
+ <rect
91
+ transform="matrix(0.87315759,0.48743802,-0.12756037,0.99183081,0,0)"
92
+ ry="6.9755927e-008"
93
+ rx="52748.914"
94
+ y="254.76707"
95
+ x="1395.241"
96
+ height="199.95149"
97
+ width="380.33994"
98
+ id="rect4136-3"
99
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
100
+ <rect
101
+ transform="matrix(-0.87315759,0.48743802,0.12756037,0.99183081,0,0)"
102
+ ry="6.9755927e-008"
103
+ rx="52748.914"
104
+ y="1323.813"
105
+ x="-780.03601"
106
+ height="199.95149"
107
+ width="380.33994"
108
+ id="rect4136-3-0"
109
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
110
+ </g>
111
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ version="1.1"
9
+ id="svg3891"
10
+ height="2048"
11
+ width="2048">
12
+ <defs
13
+ id="defs3893" />
14
+ <metadata
15
+ id="metadata3896">
16
+ <rdf:RDF>
17
+ <cc:Work
18
+ rdf:about="">
19
+ <dc:format>image/svg+xml</dc:format>
20
+ <dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
22
+ <dc:title></dc:title>
23
+ </cc:Work>
24
+ </rdf:RDF>
25
+ </metadata>
26
+ <path
27
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
28
+ d="M 0 296 L 0 1464 L 0 1610 L 584 1610 L 730 1610 L 1314 1610 L 1460 1610 L 2044 1610 L 2044 1464 L 2044 296 L 1971 296 L 1460 296 L 1460 1464 L 1314 1464 L 1314 734 L 1241 734 L 730 734 L 730 1464 L 584 1464 L 584 296 L 511 296 L 0 296 z M 146 442 L 438 442 L 438 1464 L 146 1464 L 146 442 z M 1606 442 L 1898 442 L 1898 1464 L 1606 1464 L 1606 442 z M 876 880 L 1168 880 L 1168 1464 L 876 1464 L 876 880 z "
29
+ id="path4363-4-2-8-5-8-0-8" />
30
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="2048"
9
+ height="2048"
10
+ id="svg3891"
11
+ version="1.1">
12
+ <defs
13
+ id="defs3893" />
14
+ <metadata
15
+ id="metadata3896">
16
+ <rdf:RDF>
17
+ <cc:Work
18
+ rdf:about="">
19
+ <dc:format>image/svg+xml</dc:format>
20
+ <dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
22
+ <dc:title></dc:title>
23
+ </cc:Work>
24
+ </rdf:RDF>
25
+ </metadata>
26
+ <path
27
+ id="path4363-4-2-8-5-8-0-8"
28
+ d="M 292 4 L 292 588 L 365 588 L 949 588 L 949 734 L 584 734 L 584 1318 L 657 1318 L 954.97266 1318 L 954.97266 1464 L 292 1464 L 292 2048 L 365 2048 L 1752 2048 L 1752 1464 L 1100.9727 1464 L 1100.9727 1318 L 1460 1318 L 1460 734 L 1095 734 L 1095 588 L 1752 588 L 1752 4 L 292 4 z M 438 150 L 1606 150 L 1606 442 L 438 442 L 438 150 z M 730 880 L 1314 880 L 1314 1172 L 730 1172 L 730 880 z M 438 1610 L 1606 1610 L 1606 1902 L 438 1902 L 438 1610 z "
29
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
30
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="2048"
9
+ height="2048"
10
+ id="svg3891"
11
+ version="1.1">
12
+ <defs
13
+ id="defs3893" />
14
+ <metadata
15
+ id="metadata3896">
16
+ <rdf:RDF>
17
+ <cc:Work
18
+ rdf:about="">
19
+ <dc:format>image/svg+xml</dc:format>
20
+ <dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
22
+ <dc:title></dc:title>
23
+ </cc:Work>
24
+ </rdf:RDF>
25
+ </metadata>
26
+ <path
27
+ id="path4363-4-2-8-5-8-0-8"
28
+ d="M 292 4 L 292 588 L 292 734 L 292 1318 L 292 1464 L 292 2048 L 438 2048 L 1606 2048 L 1606 1975 L 1606 1464 L 438 1464 L 438 1318 L 1168 1318 L 1168 1245 L 1168 734 L 438 734 L 438 588 L 1606 588 L 1606 515 L 1606 4 L 438 4 L 292 4 z M 438 150 L 1460 150 L 1460 442 L 438 442 L 438 150 z M 438 880 L 1022 880 L 1022 1172 L 438 1172 L 438 880 z M 438 1610 L 1460 1610 L 1460 1902 L 438 1902 L 438 1610 z "
29
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
30
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="2048"
9
+ height="2048"
10
+ id="svg3891"
11
+ version="1.1">
12
+ <defs
13
+ id="defs3893" />
14
+ <metadata
15
+ id="metadata3896">
16
+ <rdf:RDF>
17
+ <cc:Work
18
+ rdf:about="">
19
+ <dc:format>image/svg+xml</dc:format>
20
+ <dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
22
+ <dc:title></dc:title>
23
+ </cc:Work>
24
+ </rdf:RDF>
25
+ </metadata>
26
+ <path
27
+ id="path4363-4-2-8-5-8-0-8"
28
+ d="M 438 4 L 438 588 L 511 588 L 1606 588 L 1606 734 L 876 734 L 876 1318 L 949 1318 L 1606 1318 L 1606 1464 L 438 1464 L 438 2048 L 511 2048 L 1606 2048 L 1752 2048 L 1752 1464 L 1752 1318 L 1752 734 L 1752 588 L 1752 4 L 1606 4 L 438 4 z M 584 150 L 1606 150 L 1606 442 L 584 442 L 584 150 z M 1022 880 L 1606 880 L 1606 1172 L 1022 1172 L 1022 880 z M 584 1610 L 1606 1610 L 1606 1902 L 584 1902 L 584 1610 z "
29
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
30
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="2048"
9
+ height="2048"
10
+ id="svg3891"
11
+ version="1.1">
12
+ <defs
13
+ id="defs3893" />
14
+ <metadata
15
+ id="metadata3896">
16
+ <rdf:RDF>
17
+ <cc:Work
18
+ rdf:about="">
19
+ <dc:format>image/svg+xml</dc:format>
20
+ <dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
22
+ <dc:title></dc:title>
23
+ </cc:Work>
24
+ </rdf:RDF>
25
+ </metadata>
26
+ <path
27
+ id="path4363-4-2-8-5-8-0-8"
28
+ d="M 0 296 L 0 442 L 0 1610 L 584 1610 L 584 1537 L 584 442 L 730 442 L 730 1172 L 1314 1172 L 1314 1099 L 1314 442 L 1460 442 L 1460 1610 L 2044 1610 L 2044 1537 L 2044 442 L 2044 296 L 1460 296 L 0 296 z M 146 442 L 438 442 L 438 1464 L 146 1464 L 146 442 z M 876 442 L 1168 442 L 1168 1026 L 876 1026 L 876 442 z M 1606 442 L 1898 442 L 1898 1464 L 1606 1464 L 1606 442 z "
29
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
30
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="2048"
9
+ height="2048"
10
+ id="svg3891"
11
+ version="1.1">
12
+ <defs
13
+ id="defs3893" />
14
+ <metadata
15
+ id="metadata3896">
16
+ <rdf:RDF>
17
+ <cc:Work
18
+ rdf:about="">
19
+ <dc:format>image/svg+xml</dc:format>
20
+ <dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
22
+ <dc:title></dc:title>
23
+ </cc:Work>
24
+ </rdf:RDF>
25
+ </metadata>
26
+ <path
27
+ id="path4363-4-2-8-5-8-0-8"
28
+ d="M 0 296 L 0 369 L 0 1756 L 584 1756 L 584 1104.9727 L 730 1104.9727 L 730 1464 L 1314 1464 L 1314 1099 L 1460 1099 L 1460 1756 L 2044 1756 L 2044 296 L 1460 296 L 1460 369 L 1460 953 L 1314 953 L 1314 588 L 730 588 L 730 661 L 730 958.97266 L 584 958.97266 L 584 296 L 0 296 z M 146 442 L 438 442 L 438 1610 L 146 1610 L 146 442 z M 1606 442 L 1898 442 L 1898 1610 L 1606 1610 L 1606 442 z M 876 734 L 1168 734 L 1168 1318 L 876 1318 L 876 734 z "
29
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
30
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="2048"
9
+ height="2048"
10
+ id="svg3891"
11
+ version="1.1">
12
+ <defs
13
+ id="defs3893" />
14
+ <metadata
15
+ id="metadata3896">
16
+ <rdf:RDF>
17
+ <cc:Work
18
+ rdf:about="">
19
+ <dc:format>image/svg+xml</dc:format>
20
+ <dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
22
+ <dc:title></dc:title>
23
+ </cc:Work>
24
+ </rdf:RDF>
25
+ </metadata>
26
+ <path
27
+ id="rect4338-7-82-22"
28
+ d="M 438 296 L 438 442 L 438 588 L 0 588 L 0 661 L 0 1756 L 584 1756 L 584 588 L 584 442 L 949 442 L 949 588 L 730 588 L 730 661 L 730 1464 L 1314 1464 L 1314 588 L 1095 588 L 1095 442 L 1460 442 L 1460 588 L 1460 661 L 1460 1756 L 2044 1756 L 2044 588 L 1606 588 L 1606 442 L 1606 296 L 438 296 z M 146 734 L 438 734 L 438 1610 L 146 1610 L 146 734 z M 876 734 L 1168 734 L 1168 1318 L 876 1318 L 876 734 z M 1606 734 L 1898 734 L 1898 1610 L 1606 1610 L 1606 734 z "
29
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
30
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="2048"
9
+ height="2048"
10
+ id="svg3891"
11
+ version="1.1">
12
+ <defs
13
+ id="defs3893" />
14
+ <metadata
15
+ id="metadata3896">
16
+ <rdf:RDF>
17
+ <cc:Work
18
+ rdf:about="">
19
+ <dc:format>image/svg+xml</dc:format>
20
+ <dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
22
+ <dc:title></dc:title>
23
+ </cc:Work>
24
+ </rdf:RDF>
25
+ </metadata>
26
+ <path
27
+ id="rect4338-7-82-22"
28
+ d="M 584 4 L 584 442 L 438 442 L 292 442 L 292 1610 L 438 1610 L 584 1610 L 584 2048 L 657 2048 L 1752 2048 L 1752 1464 L 584 1464 L 438 1464 L 438 1099 L 584 1099 L 584 1318 L 657 1318 L 1460 1318 L 1460 734 L 584 734 L 584 953 L 438 953 L 438 588 L 584 588 L 657 588 L 1752 588 L 1752 4 L 584 4 z M 730 150 L 1606 150 L 1606 442 L 730 442 L 730 150 z M 730 880 L 1314 880 L 1314 1172 L 730 1172 L 730 880 z M 730 1610 L 1606 1610 L 1606 1902 L 730 1902 L 730 1610 z "
29
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
30
+ </svg>