@talrace/ngx-noder 0.0.2

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 (515) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +274 -0
  3. package/esm2022/lib/+shared/abstract/base-api.service.mjs +99 -0
  4. package/esm2022/lib/+shared/abstract/observer.component.mjs +24 -0
  5. package/esm2022/lib/+shared/confirm-dialog/confirm-dialog.component.mjs +28 -0
  6. package/esm2022/lib/+shared/constants/default-file-name.const.mjs +2 -0
  7. package/esm2022/lib/+shared/constants/paginator-sizes.const.mjs +3 -0
  8. package/esm2022/lib/+shared/editor/core/base/event-emitting.mjs +71 -0
  9. package/esm2022/lib/+shared/editor/core/components/edges/edge-type.enum.mjs +6 -0
  10. package/esm2022/lib/+shared/editor/core/components/edges/edge.component.mjs +100 -0
  11. package/esm2022/lib/+shared/editor/core/components/edges/edges.mjs +104 -0
  12. package/esm2022/lib/+shared/editor/core/constants/alignments.const.mjs +8 -0
  13. package/esm2022/lib/+shared/editor/core/constants/clipboardEventTypes.const.mjs +6 -0
  14. package/esm2022/lib/+shared/editor/core/constants/content-style-change.const.mjs +15 -0
  15. package/esm2022/lib/+shared/editor/core/constants/display-values.const.mjs +8 -0
  16. package/esm2022/lib/+shared/editor/core/constants/document-info.const.mjs +13 -0
  17. package/esm2022/lib/+shared/editor/core/constants/editor-version.const.mjs +2 -0
  18. package/esm2022/lib/+shared/editor/core/constants/editor.const.mjs +62 -0
  19. package/esm2022/lib/+shared/editor/core/constants/unicode-chars.const.mjs +5 -0
  20. package/esm2022/lib/+shared/editor/core/document.mjs +134 -0
  21. package/esm2022/lib/+shared/editor/core/edit.session.mjs +1102 -0
  22. package/esm2022/lib/+shared/editor/core/editor.mjs +1279 -0
  23. package/esm2022/lib/+shared/editor/core/enums/break-types.enum.mjs +7 -0
  24. package/esm2022/lib/+shared/editor/core/enums/hrule.enum.mjs +7 -0
  25. package/esm2022/lib/+shared/editor/core/enums/mouse-button.enum.mjs +7 -0
  26. package/esm2022/lib/+shared/editor/core/enums/numbering-marker-type.enum.mjs +12 -0
  27. package/esm2022/lib/+shared/editor/core/enums/page-type.enum.mjs +7 -0
  28. package/esm2022/lib/+shared/editor/core/enums/vertical-alignment.enum.mjs +11 -0
  29. package/esm2022/lib/+shared/editor/core/helpers/content-style.helper.mjs +156 -0
  30. package/esm2022/lib/+shared/editor/core/helpers/delta.helper.mjs +18 -0
  31. package/esm2022/lib/+shared/editor/core/helpers/dom.helper.mjs +42 -0
  32. package/esm2022/lib/+shared/editor/core/helpers/event.helper.mjs +18 -0
  33. package/esm2022/lib/+shared/editor/core/helpers/font-metrics.helper.mjs +88 -0
  34. package/esm2022/lib/+shared/editor/core/helpers/format-style.helper.mjs +72 -0
  35. package/esm2022/lib/+shared/editor/core/helpers/line-width.helper.mjs +13 -0
  36. package/esm2022/lib/+shared/editor/core/helpers/numbering.helper.mjs +83 -0
  37. package/esm2022/lib/+shared/editor/core/helpers/page.helper.mjs +12 -0
  38. package/esm2022/lib/+shared/editor/core/helpers/paragraph-style.helper.mjs +41 -0
  39. package/esm2022/lib/+shared/editor/core/helpers/paragraph.helper.mjs +132 -0
  40. package/esm2022/lib/+shared/editor/core/helpers/position.helper.mjs +191 -0
  41. package/esm2022/lib/+shared/editor/core/helpers/print.rendering.helper.mjs +7 -0
  42. package/esm2022/lib/+shared/editor/core/helpers/rendering.helper.mjs +186 -0
  43. package/esm2022/lib/+shared/editor/core/helpers/unicode.helper.mjs +20 -0
  44. package/esm2022/lib/+shared/editor/core/interfaces/cell.interface.mjs +2 -0
  45. package/esm2022/lib/+shared/editor/core/interfaces/cursor-position.interface.mjs +2 -0
  46. package/esm2022/lib/+shared/editor/core/interfaces/font-metric-size.interface.mjs +2 -0
  47. package/esm2022/lib/+shared/editor/core/interfaces/layer.config.mjs +2 -0
  48. package/esm2022/lib/+shared/editor/core/interfaces/paragraph-info.interface.mjs +2 -0
  49. package/esm2022/lib/+shared/editor/core/interfaces/render-changes.interface.mjs +2 -0
  50. package/esm2022/lib/+shared/editor/core/interfaces/replace.interface.mjs +2 -0
  51. package/esm2022/lib/+shared/editor/core/interfaces/search-iteration.interface.mjs +2 -0
  52. package/esm2022/lib/+shared/editor/core/interfaces/toolbar-styles.interface.mjs +2 -0
  53. package/esm2022/lib/+shared/editor/core/interfaces/visible-line-info.interface.mjs +2 -0
  54. package/esm2022/lib/+shared/editor/core/interfaces/visible-range.interface.mjs +2 -0
  55. package/esm2022/lib/+shared/editor/core/keyboard/text-input.mjs +53 -0
  56. package/esm2022/lib/+shared/editor/core/layers/cursor.layer.mjs +103 -0
  57. package/esm2022/lib/+shared/editor/core/layers/edges.layer.mjs +99 -0
  58. package/esm2022/lib/+shared/editor/core/layers/lines.mjs +96 -0
  59. package/esm2022/lib/+shared/editor/core/layers/pages.layer.mjs +106 -0
  60. package/esm2022/lib/+shared/editor/core/layers/print.edges.layer.mjs +7 -0
  61. package/esm2022/lib/+shared/editor/core/layers/print.pages.layer.mjs +7 -0
  62. package/esm2022/lib/+shared/editor/core/layers/print.text.layer.mjs +7 -0
  63. package/esm2022/lib/+shared/editor/core/layers/renderloop.mjs +26 -0
  64. package/esm2022/lib/+shared/editor/core/layers/scrollbar.mjs +100 -0
  65. package/esm2022/lib/+shared/editor/core/layers/selection.layer.mjs +115 -0
  66. package/esm2022/lib/+shared/editor/core/layers/text.layer.mjs +124 -0
  67. package/esm2022/lib/+shared/editor/core/models/display-token.model.mjs +12 -0
  68. package/esm2022/lib/+shared/editor/core/models/distance.model.mjs +10 -0
  69. package/esm2022/lib/+shared/editor/core/models/edge-element.model.mjs +9 -0
  70. package/esm2022/lib/+shared/editor/core/models/format-ext.model.mjs +10 -0
  71. package/esm2022/lib/+shared/editor/core/models/indent.model.mjs +9 -0
  72. package/esm2022/lib/+shared/editor/core/models/line-info.model.mjs +9 -0
  73. package/esm2022/lib/+shared/editor/core/models/margin.model.mjs +16 -0
  74. package/esm2022/lib/+shared/editor/core/models/numbering-data.model.mjs +9 -0
  75. package/esm2022/lib/+shared/editor/core/models/render-changes.model.mjs +25 -0
  76. package/esm2022/lib/+shared/editor/core/paging/page-vertical-data.model.mjs +9 -0
  77. package/esm2022/lib/+shared/editor/core/paging/pages.wrap.mjs +219 -0
  78. package/esm2022/lib/+shared/editor/core/paging/paragraph.mjs +52 -0
  79. package/esm2022/lib/+shared/editor/core/paging/text-line-info.mjs +34 -0
  80. package/esm2022/lib/+shared/editor/core/point.mjs +13 -0
  81. package/esm2022/lib/+shared/editor/core/print.renderer.mjs +72 -0
  82. package/esm2022/lib/+shared/editor/core/range.mjs +94 -0
  83. package/esm2022/lib/+shared/editor/core/renderer.mjs +217 -0
  84. package/esm2022/lib/+shared/editor/core/search.mjs +231 -0
  85. package/esm2022/lib/+shared/editor/core/virtual.renderer.mjs +356 -0
  86. package/esm2022/lib/+shared/editor/custom-components/external-element/element-toolbar/element-toolbar.component.mjs +35 -0
  87. package/esm2022/lib/+shared/editor/custom-components/external-element/external-element.service.mjs +6 -0
  88. package/esm2022/lib/+shared/editor/custom-components/external-element/external-elements.const.mjs +4 -0
  89. package/esm2022/lib/+shared/editor/custom-components/external-element/external-sidenav.interface.mjs +2 -0
  90. package/esm2022/lib/+shared/editor/custom-components/external-element/external.component.mjs +41 -0
  91. package/esm2022/lib/+shared/editor/custom-components/external-element/models/element-data.model.mjs +9 -0
  92. package/esm2022/lib/+shared/editor/custom-components/external-element/models/external-element.model.mjs +10 -0
  93. package/esm2022/lib/+shared/editor/custom-components/external-element/models/external-sidenav.model.mjs +15 -0
  94. package/esm2022/lib/+shared/editor/custom-components/image/components/image.component.mjs +87 -0
  95. package/esm2022/lib/+shared/editor/custom-components/image/input-handler/image-input.handler.mjs +38 -0
  96. package/esm2022/lib/+shared/editor/custom-components/image/interfaces/size.mjs +2 -0
  97. package/esm2022/lib/+shared/editor/custom-components/image/resizer/coordinate.mjs +2 -0
  98. package/esm2022/lib/+shared/editor/custom-components/image/resizer/direction-wrapper.mjs +19 -0
  99. package/esm2022/lib/+shared/editor/custom-components/image/resizer/direction.enum.mjs +12 -0
  100. package/esm2022/lib/+shared/editor/custom-components/image/resizer/resizer.component.mjs +106 -0
  101. package/esm2022/lib/+shared/editor/custom-components/image/resizer/size-delta.mjs +2 -0
  102. package/esm2022/lib/+shared/editor/custom-components/image/resizer/size-wrapper.mjs +52 -0
  103. package/esm2022/lib/+shared/editor/custom-components/image/services/image-api.service.mjs +14 -0
  104. package/esm2022/lib/+shared/editor/custom-components/shared/abstract/base.component.mjs +57 -0
  105. package/esm2022/lib/+shared/editor/custom-components/shared/constants/custom-content-markers.const.mjs +3 -0
  106. package/esm2022/lib/+shared/editor/custom-components/shared/helpers/custom-component.hepler.mjs +43 -0
  107. package/esm2022/lib/+shared/editor/custom-components/shared/interfaces/custom-components.interface.mjs +2 -0
  108. package/esm2022/lib/+shared/editor/custom-components/shared/services/component/component.service.mjs +64 -0
  109. package/esm2022/lib/+shared/editor/custom-components/shared/services/custom-content/custom-content.service.mjs +120 -0
  110. package/esm2022/lib/+shared/editor/custom-components/shared/services/overlay/overlay.service.mjs +55 -0
  111. package/esm2022/lib/+shared/editor/custom-components/shared/types/custom-content.mjs +2 -0
  112. package/esm2022/lib/+shared/editor/custom-components/tab/tab.component.mjs +43 -0
  113. package/esm2022/lib/+shared/editor/custom-components/table/cell-resizer/cell-resizer.mjs +118 -0
  114. package/esm2022/lib/+shared/editor/custom-components/table/components/table-cell.component.mjs +95 -0
  115. package/esm2022/lib/+shared/editor/custom-components/table/components/table.component.mjs +293 -0
  116. package/esm2022/lib/+shared/editor/custom-components/table/enums/reisizer-side.enum.mjs +8 -0
  117. package/esm2022/lib/+shared/editor/custom-components/table/enums/vertical-merge.enum.mjs +6 -0
  118. package/esm2022/lib/+shared/editor/custom-components/table/models/cell-data.model.mjs +18 -0
  119. package/esm2022/lib/+shared/editor/custom-components/table/models/cell-resizer-parameters.model.mjs +9 -0
  120. package/esm2022/lib/+shared/editor/custom-components/table/models/row-data.model.mjs +8 -0
  121. package/esm2022/lib/+shared/editor/custom-components/table/models/selection-range.model.mjs +7 -0
  122. package/esm2022/lib/+shared/editor/custom-components/table/overlay-menu/overlay-menu.component.mjs +74 -0
  123. package/esm2022/lib/+shared/editor/custom-components/table/selection/table-selection.mjs +358 -0
  124. package/esm2022/lib/+shared/editor/editor.component.mjs +103 -0
  125. package/esm2022/lib/+shared/editor/editor.module.mjs +85 -0
  126. package/esm2022/lib/+shared/editor/execution/models/cell-session-source.model.mjs +19 -0
  127. package/esm2022/lib/+shared/editor/execution/models/edge-session-source.model.mjs +15 -0
  128. package/esm2022/lib/+shared/editor/execution/models/general-properties.model.mjs +11 -0
  129. package/esm2022/lib/+shared/editor/execution/models/main-session-source.model.mjs +8 -0
  130. package/esm2022/lib/+shared/editor/execution/models/session-source.model.mjs +3 -0
  131. package/esm2022/lib/+shared/editor/execution/models/session.model.mjs +10 -0
  132. package/esm2022/lib/+shared/editor/execution/regulator.service.mjs +193 -0
  133. package/esm2022/lib/+shared/editor/helpers/break.helper.mjs +18 -0
  134. package/esm2022/lib/+shared/editor/helpers/content.helper.mjs +30 -0
  135. package/esm2022/lib/+shared/editor/helpers/format.helper.mjs +23 -0
  136. package/esm2022/lib/+shared/editor/helpers/indexed-element.helper.mjs +6 -0
  137. package/esm2022/lib/+shared/editor/helpers/tab.helper.mjs +6 -0
  138. package/esm2022/lib/+shared/editor/interaction/editor.service.mjs +309 -0
  139. package/esm2022/lib/+shared/editor/interaction/input.handler.mjs +160 -0
  140. package/esm2022/lib/+shared/editor/interaction/mouse.handler.mjs +49 -0
  141. package/esm2022/lib/+shared/editor/interfaces/contents.interface.mjs +2 -0
  142. package/esm2022/lib/+shared/editor/interfaces/insert-index.interface.mjs +2 -0
  143. package/esm2022/lib/+shared/editor/operation-history/operation-history.mjs +184 -0
  144. package/esm2022/lib/+shared/editor/operation-history/operation.type.mjs +2 -0
  145. package/esm2022/lib/+shared/editor/operation-history/operations-history-info.model.mjs +7 -0
  146. package/esm2022/lib/+shared/editor/operations/enums/command-type.enum.mjs +31 -0
  147. package/esm2022/lib/+shared/editor/operations/enums/target-type.enum.mjs +7 -0
  148. package/esm2022/lib/+shared/editor/operations/helpers/break-operations.helper.mjs +9 -0
  149. package/esm2022/lib/+shared/editor/operations/helpers/content-operations.helper.mjs +15 -0
  150. package/esm2022/lib/+shared/editor/operations/helpers/format-operations.helper.mjs +56 -0
  151. package/esm2022/lib/+shared/editor/operations/helpers/image-operations.helper.mjs +19 -0
  152. package/esm2022/lib/+shared/editor/operations/helpers/indexed-element-operations.helper.mjs +43 -0
  153. package/esm2022/lib/+shared/editor/operations/helpers/link-operations.helper.mjs +28 -0
  154. package/esm2022/lib/+shared/editor/operations/helpers/numbering-operations.helper.mjs +55 -0
  155. package/esm2022/lib/+shared/editor/operations/helpers/operations-helper.helper.mjs +394 -0
  156. package/esm2022/lib/+shared/editor/operations/helpers/paragraph-operations.helper.mjs +83 -0
  157. package/esm2022/lib/+shared/editor/operations/helpers/save-commands.helper.mjs +118 -0
  158. package/esm2022/lib/+shared/editor/operations/helpers/tab-operations.helper.mjs +16 -0
  159. package/esm2022/lib/+shared/editor/operations/helpers/table-operations.helper.mjs +371 -0
  160. package/esm2022/lib/+shared/editor/operations/helpers/target-operations.helper.mjs +23 -0
  161. package/esm2022/lib/+shared/editor/positioning/selection.mjs +307 -0
  162. package/esm2022/lib/+shared/editor/store/editor.actions.mjs +13 -0
  163. package/esm2022/lib/+shared/editor-header/editor-header.component.mjs +314 -0
  164. package/esm2022/lib/+shared/editor-search/editor-search-dialog.component.mjs +71 -0
  165. package/esm2022/lib/+shared/editor-toolbar/color-picker/color-picker.component.mjs +32 -0
  166. package/esm2022/lib/+shared/editor-toolbar/constants/numbering-templates.const.mjs +1148 -0
  167. package/esm2022/lib/+shared/editor-toolbar/constants/svg-icons.const.mjs +157 -0
  168. package/esm2022/lib/+shared/editor-toolbar/editor-toolbar.component.mjs +115 -0
  169. package/esm2022/lib/+shared/editor-toolbar/editor-toolbar.module.mjs +107 -0
  170. package/esm2022/lib/+shared/editor-toolbar/enums/alignment.enum.mjs +8 -0
  171. package/esm2022/lib/+shared/editor-toolbar/enums/numbering-template-type.enum.mjs +16 -0
  172. package/esm2022/lib/+shared/editor-toolbar/enums/numbering-type.enum.mjs +6 -0
  173. package/esm2022/lib/+shared/editor-toolbar/font/font.component.mjs +45 -0
  174. package/esm2022/lib/+shared/editor-toolbar/font-size/font-size.component.mjs +85 -0
  175. package/esm2022/lib/+shared/editor-toolbar/font-style/font-style.component.mjs +80 -0
  176. package/esm2022/lib/+shared/editor-toolbar/format/format.component.mjs +28 -0
  177. package/esm2022/lib/+shared/editor-toolbar/heading/heading.component.mjs +23 -0
  178. package/esm2022/lib/+shared/editor-toolbar/helpers/toolbar-styles.helper.mjs +55 -0
  179. package/esm2022/lib/+shared/editor-toolbar/numbering/numbering.component.mjs +53 -0
  180. package/esm2022/lib/+shared/editor-toolbar/print/print.component.mjs +18 -0
  181. package/esm2022/lib/+shared/editor-toolbar/undo-redo/undo-redo.component.mjs +27 -0
  182. package/esm2022/lib/+shared/editor-toolbar/zoom/zoom.component.mjs +74 -0
  183. package/esm2022/lib/+shared/enums/mode.enum.mjs +7 -0
  184. package/esm2022/lib/+shared/helpers/print.helper.mjs +40 -0
  185. package/esm2022/lib/+shared/insert-table/insert-table.component.mjs +54 -0
  186. package/esm2022/lib/+shared/services/commands.service.mjs +20 -0
  187. package/esm2022/lib/+shared/services/custom-icon.service.mjs +34 -0
  188. package/esm2022/lib/models/generated/add-numbering.model.mjs +8 -0
  189. package/esm2022/lib/models/generated/apply-element-style.model.mjs +8 -0
  190. package/esm2022/lib/models/generated/apply-image-style.model.mjs +8 -0
  191. package/esm2022/lib/models/generated/apply-paragraph-style.model.mjs +12 -0
  192. package/esm2022/lib/models/generated/apply-text-style.model.mjs +12 -0
  193. package/esm2022/lib/models/generated/borders-style.model.mjs +8 -0
  194. package/esm2022/lib/models/generated/break.model.mjs +8 -0
  195. package/esm2022/lib/models/generated/cell.model.mjs +12 -0
  196. package/esm2022/lib/models/generated/column-section.model.mjs +8 -0
  197. package/esm2022/lib/models/generated/column.model.mjs +8 -0
  198. package/esm2022/lib/models/generated/command.model.mjs +116 -0
  199. package/esm2022/lib/models/generated/delete.model.mjs +8 -0
  200. package/esm2022/lib/models/generated/document-name.model.mjs +8 -0
  201. package/esm2022/lib/models/generated/document.model.mjs +8 -0
  202. package/esm2022/lib/models/generated/docx.model.mjs +12 -0
  203. package/esm2022/lib/models/generated/edge-target.model.mjs +8 -0
  204. package/esm2022/lib/models/generated/edge.model.mjs +8 -0
  205. package/esm2022/lib/models/generated/element.model.mjs +8 -0
  206. package/esm2022/lib/models/generated/file-source.model.mjs +8 -0
  207. package/esm2022/lib/models/generated/format.model.mjs +12 -0
  208. package/esm2022/lib/models/generated/heading.model.mjs +16 -0
  209. package/esm2022/lib/models/generated/image-data.model.mjs +8 -0
  210. package/esm2022/lib/models/generated/image.model.mjs +12 -0
  211. package/esm2022/lib/models/generated/insert-break.model.mjs +8 -0
  212. package/esm2022/lib/models/generated/insert-element.model.mjs +12 -0
  213. package/esm2022/lib/models/generated/insert-image.model.mjs +12 -0
  214. package/esm2022/lib/models/generated/insert-link.model.mjs +12 -0
  215. package/esm2022/lib/models/generated/insert-styled-text.model.mjs +12 -0
  216. package/esm2022/lib/models/generated/insert-tab.model.mjs +8 -0
  217. package/esm2022/lib/models/generated/insert-table-columns.model.mjs +8 -0
  218. package/esm2022/lib/models/generated/insert-table-rows.model.mjs +8 -0
  219. package/esm2022/lib/models/generated/insert-table.model.mjs +8 -0
  220. package/esm2022/lib/models/generated/insert-text.model.mjs +8 -0
  221. package/esm2022/lib/models/generated/last-document-revision.model.mjs +12 -0
  222. package/esm2022/lib/models/generated/link-data.model.mjs +8 -0
  223. package/esm2022/lib/models/generated/link.model.mjs +8 -0
  224. package/esm2022/lib/models/generated/margins.model.mjs +8 -0
  225. package/esm2022/lib/models/generated/numbering-level.model.mjs +12 -0
  226. package/esm2022/lib/models/generated/numbering.model.mjs +8 -0
  227. package/esm2022/lib/models/generated/operation.model.mjs +12 -0
  228. package/esm2022/lib/models/generated/page-numbers.model.mjs +8 -0
  229. package/esm2022/lib/models/generated/paragraph-style.model.mjs +8 -0
  230. package/esm2022/lib/models/generated/paragraph.model.mjs +12 -0
  231. package/esm2022/lib/models/generated/remove-numberings.model.mjs +8 -0
  232. package/esm2022/lib/models/generated/remove-table-columns.model.mjs +8 -0
  233. package/esm2022/lib/models/generated/remove-table-rows.model.mjs +8 -0
  234. package/esm2022/lib/models/generated/replace-by-text.model.mjs +8 -0
  235. package/esm2022/lib/models/generated/replace.model.mjs +40 -0
  236. package/esm2022/lib/models/generated/resize-table-columns.model.mjs +8 -0
  237. package/esm2022/lib/models/generated/restore-numberings.model.mjs +8 -0
  238. package/esm2022/lib/models/generated/restore-paragraph-styles.model.mjs +8 -0
  239. package/esm2022/lib/models/generated/restore-table.model.mjs +12 -0
  240. package/esm2022/lib/models/generated/restore-text-styles.model.mjs +8 -0
  241. package/esm2022/lib/models/generated/restore.model.mjs +8 -0
  242. package/esm2022/lib/models/generated/revision.model.mjs +12 -0
  243. package/esm2022/lib/models/generated/row.model.mjs +8 -0
  244. package/esm2022/lib/models/generated/tab.model.mjs +8 -0
  245. package/esm2022/lib/models/generated/table-cell.model.mjs +8 -0
  246. package/esm2022/lib/models/generated/table.model.mjs +12 -0
  247. package/esm2022/lib/models/generated/target.model.mjs +16 -0
  248. package/esm2022/lib/models/generated/text-style.model.mjs +8 -0
  249. package/esm2022/public-api.mjs +43 -0
  250. package/esm2022/talrace-ngx-noder.mjs +5 -0
  251. package/fesm2022/talrace-ngx-noder.mjs +13736 -0
  252. package/fesm2022/talrace-ngx-noder.mjs.map +1 -0
  253. package/index.d.ts +5 -0
  254. package/lib/+shared/abstract/base-api.service.d.ts +23 -0
  255. package/lib/+shared/abstract/observer.component.d.ts +10 -0
  256. package/lib/+shared/confirm-dialog/confirm-dialog.component.d.ts +16 -0
  257. package/lib/+shared/constants/default-file-name.const.d.ts +1 -0
  258. package/lib/+shared/constants/paginator-sizes.const.d.ts +2 -0
  259. package/lib/+shared/editor/core/base/event-emitting.d.ts +17 -0
  260. package/lib/+shared/editor/core/components/edges/edge-type.enum.d.ts +4 -0
  261. package/lib/+shared/editor/core/components/edges/edge.component.d.ts +45 -0
  262. package/lib/+shared/editor/core/components/edges/edges.d.ts +26 -0
  263. package/lib/+shared/editor/core/constants/alignments.const.d.ts +7 -0
  264. package/lib/+shared/editor/core/constants/clipboardEventTypes.const.d.ts +5 -0
  265. package/lib/+shared/editor/core/constants/content-style-change.const.d.ts +14 -0
  266. package/lib/+shared/editor/core/constants/display-values.const.d.ts +7 -0
  267. package/lib/+shared/editor/core/constants/document-info.const.d.ts +12 -0
  268. package/lib/+shared/editor/core/constants/editor-version.const.d.ts +1 -0
  269. package/lib/+shared/editor/core/constants/editor.const.d.ts +16 -0
  270. package/lib/+shared/editor/core/constants/unicode-chars.const.d.ts +1 -0
  271. package/lib/+shared/editor/core/document.d.ts +56 -0
  272. package/lib/+shared/editor/core/edit.session.d.ts +159 -0
  273. package/lib/+shared/editor/core/editor.d.ts +206 -0
  274. package/lib/+shared/editor/core/enums/break-types.enum.d.ts +5 -0
  275. package/lib/+shared/editor/core/enums/hrule.enum.d.ts +5 -0
  276. package/lib/+shared/editor/core/enums/mouse-button.enum.d.ts +5 -0
  277. package/lib/+shared/editor/core/enums/numbering-marker-type.enum.d.ts +10 -0
  278. package/lib/+shared/editor/core/enums/page-type.enum.d.ts +5 -0
  279. package/lib/+shared/editor/core/enums/vertical-alignment.enum.d.ts +9 -0
  280. package/lib/+shared/editor/core/helpers/content-style.helper.d.ts +16 -0
  281. package/lib/+shared/editor/core/helpers/delta.helper.d.ts +6 -0
  282. package/lib/+shared/editor/core/helpers/dom.helper.d.ts +10 -0
  283. package/lib/+shared/editor/core/helpers/event.helper.d.ts +4 -0
  284. package/lib/+shared/editor/core/helpers/font-metrics.helper.d.ts +32 -0
  285. package/lib/+shared/editor/core/helpers/format-style.helper.d.ts +11 -0
  286. package/lib/+shared/editor/core/helpers/line-width.helper.d.ts +5 -0
  287. package/lib/+shared/editor/core/helpers/numbering.helper.d.ts +19 -0
  288. package/lib/+shared/editor/core/helpers/page.helper.d.ts +4 -0
  289. package/lib/+shared/editor/core/helpers/paragraph-style.helper.d.ts +6 -0
  290. package/lib/+shared/editor/core/helpers/paragraph.helper.d.ts +27 -0
  291. package/lib/+shared/editor/core/helpers/position.helper.d.ts +34 -0
  292. package/lib/+shared/editor/core/helpers/print.rendering.helper.d.ts +6 -0
  293. package/lib/+shared/editor/core/helpers/rendering.helper.d.ts +26 -0
  294. package/lib/+shared/editor/core/helpers/unicode.helper.d.ts +4 -0
  295. package/lib/+shared/editor/core/interfaces/cell.interface.d.ts +5 -0
  296. package/lib/+shared/editor/core/interfaces/cursor-position.interface.d.ts +11 -0
  297. package/lib/+shared/editor/core/interfaces/font-metric-size.interface.d.ts +11 -0
  298. package/lib/+shared/editor/core/interfaces/layer.config.d.ts +13 -0
  299. package/lib/+shared/editor/core/interfaces/paragraph-info.interface.d.ts +7 -0
  300. package/lib/+shared/editor/core/interfaces/render-changes.interface.d.ts +10 -0
  301. package/lib/+shared/editor/core/interfaces/replace.interface.d.ts +4 -0
  302. package/lib/+shared/editor/core/interfaces/search-iteration.interface.d.ts +4 -0
  303. package/lib/+shared/editor/core/interfaces/toolbar-styles.interface.d.ts +18 -0
  304. package/lib/+shared/editor/core/interfaces/visible-line-info.interface.d.ts +5 -0
  305. package/lib/+shared/editor/core/interfaces/visible-range.interface.d.ts +11 -0
  306. package/lib/+shared/editor/core/keyboard/text-input.d.ts +10 -0
  307. package/lib/+shared/editor/core/layers/cursor.layer.d.ts +24 -0
  308. package/lib/+shared/editor/core/layers/edges.layer.d.ts +24 -0
  309. package/lib/+shared/editor/core/layers/lines.d.ts +21 -0
  310. package/lib/+shared/editor/core/layers/pages.layer.d.ts +27 -0
  311. package/lib/+shared/editor/core/layers/print.edges.layer.d.ts +4 -0
  312. package/lib/+shared/editor/core/layers/print.pages.layer.d.ts +4 -0
  313. package/lib/+shared/editor/core/layers/print.text.layer.d.ts +5 -0
  314. package/lib/+shared/editor/core/layers/renderloop.d.ts +8 -0
  315. package/lib/+shared/editor/core/layers/scrollbar.d.ts +41 -0
  316. package/lib/+shared/editor/core/layers/selection.layer.d.ts +19 -0
  317. package/lib/+shared/editor/core/layers/text.layer.d.ts +22 -0
  318. package/lib/+shared/editor/core/models/display-token.model.d.ts +27 -0
  319. package/lib/+shared/editor/core/models/distance.model.d.ts +6 -0
  320. package/lib/+shared/editor/core/models/edge-element.model.d.ts +7 -0
  321. package/lib/+shared/editor/core/models/format-ext.model.d.ts +5 -0
  322. package/lib/+shared/editor/core/models/indent.model.d.ts +7 -0
  323. package/lib/+shared/editor/core/models/line-info.model.d.ts +14 -0
  324. package/lib/+shared/editor/core/models/margin.model.d.ts +9 -0
  325. package/lib/+shared/editor/core/models/numbering-data.model.d.ts +11 -0
  326. package/lib/+shared/editor/core/models/render-changes.model.d.ts +14 -0
  327. package/lib/+shared/editor/core/paging/page-vertical-data.model.d.ts +8 -0
  328. package/lib/+shared/editor/core/paging/pages.wrap.d.ts +41 -0
  329. package/lib/+shared/editor/core/paging/paragraph.d.ts +44 -0
  330. package/lib/+shared/editor/core/paging/text-line-info.d.ts +17 -0
  331. package/lib/+shared/editor/core/point.d.ts +7 -0
  332. package/lib/+shared/editor/core/print.renderer.d.ts +25 -0
  333. package/lib/+shared/editor/core/range.d.ts +32 -0
  334. package/lib/+shared/editor/core/renderer.d.ts +60 -0
  335. package/lib/+shared/editor/core/search.d.ts +32 -0
  336. package/lib/+shared/editor/core/virtual.renderer.d.ts +93 -0
  337. package/lib/+shared/editor/custom-components/external-element/element-toolbar/element-toolbar.component.d.ts +14 -0
  338. package/lib/+shared/editor/custom-components/external-element/external-element.service.d.ts +7 -0
  339. package/lib/+shared/editor/custom-components/external-element/external-elements.const.d.ts +5 -0
  340. package/lib/+shared/editor/custom-components/external-element/external-sidenav.interface.d.ts +5 -0
  341. package/lib/+shared/editor/custom-components/external-element/external.component.d.ts +17 -0
  342. package/lib/+shared/editor/custom-components/external-element/models/element-data.model.d.ts +7 -0
  343. package/lib/+shared/editor/custom-components/external-element/models/external-element.model.d.ts +20 -0
  344. package/lib/+shared/editor/custom-components/external-element/models/external-sidenav.model.d.ts +7 -0
  345. package/lib/+shared/editor/custom-components/image/components/image.component.d.ts +31 -0
  346. package/lib/+shared/editor/custom-components/image/input-handler/image-input.handler.d.ts +13 -0
  347. package/lib/+shared/editor/custom-components/image/interfaces/size.d.ts +4 -0
  348. package/lib/+shared/editor/custom-components/image/resizer/coordinate.d.ts +4 -0
  349. package/lib/+shared/editor/custom-components/image/resizer/direction-wrapper.d.ts +9 -0
  350. package/lib/+shared/editor/custom-components/image/resizer/direction.enum.d.ts +10 -0
  351. package/lib/+shared/editor/custom-components/image/resizer/resizer.component.d.ts +26 -0
  352. package/lib/+shared/editor/custom-components/image/resizer/size-delta.d.ts +4 -0
  353. package/lib/+shared/editor/custom-components/image/resizer/size-wrapper.d.ts +19 -0
  354. package/lib/+shared/editor/custom-components/image/services/image-api.service.d.ts +8 -0
  355. package/lib/+shared/editor/custom-components/shared/abstract/base.component.d.ts +24 -0
  356. package/lib/+shared/editor/custom-components/shared/constants/custom-content-markers.const.d.ts +2 -0
  357. package/lib/+shared/editor/custom-components/shared/helpers/custom-component.hepler.d.ts +8 -0
  358. package/lib/+shared/editor/custom-components/shared/interfaces/custom-components.interface.d.ts +13 -0
  359. package/lib/+shared/editor/custom-components/shared/services/component/component.service.d.ts +21 -0
  360. package/lib/+shared/editor/custom-components/shared/services/custom-content/custom-content.service.d.ts +30 -0
  361. package/lib/+shared/editor/custom-components/shared/services/overlay/overlay.service.d.ts +18 -0
  362. package/lib/+shared/editor/custom-components/shared/types/custom-content.d.ts +5 -0
  363. package/lib/+shared/editor/custom-components/tab/tab.component.d.ts +15 -0
  364. package/lib/+shared/editor/custom-components/table/cell-resizer/cell-resizer.d.ts +31 -0
  365. package/lib/+shared/editor/custom-components/table/components/table-cell.component.d.ts +45 -0
  366. package/lib/+shared/editor/custom-components/table/components/table.component.d.ts +55 -0
  367. package/lib/+shared/editor/custom-components/table/enums/reisizer-side.enum.d.ts +6 -0
  368. package/lib/+shared/editor/custom-components/table/enums/vertical-merge.enum.d.ts +4 -0
  369. package/lib/+shared/editor/custom-components/table/models/cell-data.model.d.ts +11 -0
  370. package/lib/+shared/editor/custom-components/table/models/cell-resizer-parameters.model.d.ts +9 -0
  371. package/lib/+shared/editor/custom-components/table/models/row-data.model.d.ts +7 -0
  372. package/lib/+shared/editor/custom-components/table/models/selection-range.model.d.ts +17 -0
  373. package/lib/+shared/editor/custom-components/table/overlay-menu/overlay-menu.component.d.ts +37 -0
  374. package/lib/+shared/editor/custom-components/table/selection/table-selection.d.ts +74 -0
  375. package/lib/+shared/editor/editor.component.d.ts +43 -0
  376. package/lib/+shared/editor/editor.module.d.ts +30 -0
  377. package/lib/+shared/editor/execution/models/cell-session-source.model.d.ts +11 -0
  378. package/lib/+shared/editor/execution/models/edge-session-source.model.d.ts +11 -0
  379. package/lib/+shared/editor/execution/models/general-properties.model.d.ts +7 -0
  380. package/lib/+shared/editor/execution/models/main-session-source.model.d.ts +5 -0
  381. package/lib/+shared/editor/execution/models/session-source.model.d.ts +5 -0
  382. package/lib/+shared/editor/execution/models/session.model.d.ts +12 -0
  383. package/lib/+shared/editor/execution/regulator.service.d.ts +45 -0
  384. package/lib/+shared/editor/helpers/break.helper.d.ts +7 -0
  385. package/lib/+shared/editor/helpers/content.helper.d.ts +9 -0
  386. package/lib/+shared/editor/helpers/format.helper.d.ts +4 -0
  387. package/lib/+shared/editor/helpers/indexed-element.helper.d.ts +4 -0
  388. package/lib/+shared/editor/helpers/tab.helper.d.ts +3 -0
  389. package/lib/+shared/editor/interaction/editor.service.d.ts +194 -0
  390. package/lib/+shared/editor/interaction/input.handler.d.ts +25 -0
  391. package/lib/+shared/editor/interaction/mouse.handler.d.ts +14 -0
  392. package/lib/+shared/editor/interfaces/contents.interface.d.ts +22 -0
  393. package/lib/+shared/editor/interfaces/insert-index.interface.d.ts +3 -0
  394. package/lib/+shared/editor/operation-history/operation-history.d.ts +65 -0
  395. package/lib/+shared/editor/operation-history/operation.type.d.ts +24 -0
  396. package/lib/+shared/editor/operation-history/operations-history-info.model.d.ts +5 -0
  397. package/lib/+shared/editor/operations/enums/command-type.enum.d.ts +29 -0
  398. package/lib/+shared/editor/operations/enums/target-type.enum.d.ts +5 -0
  399. package/lib/+shared/editor/operations/helpers/break-operations.helper.d.ts +5 -0
  400. package/lib/+shared/editor/operations/helpers/content-operations.helper.d.ts +5 -0
  401. package/lib/+shared/editor/operations/helpers/format-operations.helper.d.ts +11 -0
  402. package/lib/+shared/editor/operations/helpers/image-operations.helper.d.ts +7 -0
  403. package/lib/+shared/editor/operations/helpers/indexed-element-operations.helper.d.ts +8 -0
  404. package/lib/+shared/editor/operations/helpers/link-operations.helper.d.ts +6 -0
  405. package/lib/+shared/editor/operations/helpers/numbering-operations.helper.d.ts +11 -0
  406. package/lib/+shared/editor/operations/helpers/operations-helper.helper.d.ts +52 -0
  407. package/lib/+shared/editor/operations/helpers/paragraph-operations.helper.d.ts +13 -0
  408. package/lib/+shared/editor/operations/helpers/save-commands.helper.d.ts +43 -0
  409. package/lib/+shared/editor/operations/helpers/tab-operations.helper.d.ts +4 -0
  410. package/lib/+shared/editor/operations/helpers/table-operations.helper.d.ts +30 -0
  411. package/lib/+shared/editor/operations/helpers/target-operations.helper.d.ts +6 -0
  412. package/lib/+shared/editor/positioning/selection.d.ts +50 -0
  413. package/lib/+shared/editor/store/editor.actions.d.ts +11 -0
  414. package/lib/+shared/editor-header/editor-header.component.d.ts +101 -0
  415. package/lib/+shared/editor-search/editor-search-dialog.component.d.ts +24 -0
  416. package/lib/+shared/editor-toolbar/color-picker/color-picker.component.d.ts +12 -0
  417. package/lib/+shared/editor-toolbar/constants/numbering-templates.const.d.ts +6 -0
  418. package/lib/+shared/editor-toolbar/constants/svg-icons.const.d.ts +12 -0
  419. package/lib/+shared/editor-toolbar/editor-toolbar.component.d.ts +44 -0
  420. package/lib/+shared/editor-toolbar/editor-toolbar.module.d.ts +28 -0
  421. package/lib/+shared/editor-toolbar/enums/alignment.enum.d.ts +6 -0
  422. package/lib/+shared/editor-toolbar/enums/numbering-template-type.enum.d.ts +14 -0
  423. package/lib/+shared/editor-toolbar/enums/numbering-type.enum.d.ts +4 -0
  424. package/lib/+shared/editor-toolbar/font/font.component.d.ts +13 -0
  425. package/lib/+shared/editor-toolbar/font-size/font-size.component.d.ts +24 -0
  426. package/lib/+shared/editor-toolbar/font-style/font-style.component.d.ts +24 -0
  427. package/lib/+shared/editor-toolbar/format/format.component.d.ts +12 -0
  428. package/lib/+shared/editor-toolbar/heading/heading.component.d.ts +8 -0
  429. package/lib/+shared/editor-toolbar/helpers/toolbar-styles.helper.d.ts +6 -0
  430. package/lib/+shared/editor-toolbar/numbering/numbering.component.d.ts +18 -0
  431. package/lib/+shared/editor-toolbar/print/print.component.d.ts +7 -0
  432. package/lib/+shared/editor-toolbar/undo-redo/undo-redo.component.d.ts +10 -0
  433. package/lib/+shared/editor-toolbar/zoom/zoom.component.d.ts +22 -0
  434. package/lib/+shared/enums/mode.enum.d.ts +5 -0
  435. package/lib/+shared/helpers/print.helper.d.ts +9 -0
  436. package/lib/+shared/insert-table/insert-table.component.d.ts +21 -0
  437. package/lib/+shared/services/commands.service.d.ts +10 -0
  438. package/lib/+shared/services/custom-icon.service.d.ts +11 -0
  439. package/lib/models/generated/add-numbering.model.d.ts +7 -0
  440. package/lib/models/generated/apply-element-style.model.d.ts +6 -0
  441. package/lib/models/generated/apply-image-style.model.d.ts +6 -0
  442. package/lib/models/generated/apply-paragraph-style.model.d.ts +7 -0
  443. package/lib/models/generated/apply-text-style.model.d.ts +7 -0
  444. package/lib/models/generated/borders-style.model.d.ts +8 -0
  445. package/lib/models/generated/break.model.d.ts +5 -0
  446. package/lib/models/generated/cell.model.d.ts +32 -0
  447. package/lib/models/generated/column-section.model.d.ts +7 -0
  448. package/lib/models/generated/column.model.d.ts +5 -0
  449. package/lib/models/generated/command.model.d.ts +60 -0
  450. package/lib/models/generated/delete.model.d.ts +5 -0
  451. package/lib/models/generated/document-name.model.d.ts +5 -0
  452. package/lib/models/generated/document.model.d.ts +7 -0
  453. package/lib/models/generated/docx.model.d.ts +43 -0
  454. package/lib/models/generated/edge-target.model.d.ts +5 -0
  455. package/lib/models/generated/edge.model.d.ts +24 -0
  456. package/lib/models/generated/element.model.d.ts +9 -0
  457. package/lib/models/generated/file-source.model.d.ts +4 -0
  458. package/lib/models/generated/format.model.d.ts +7 -0
  459. package/lib/models/generated/heading.model.d.ts +12 -0
  460. package/lib/models/generated/image-data.model.d.ts +6 -0
  461. package/lib/models/generated/image.model.d.ts +31 -0
  462. package/lib/models/generated/insert-break.model.d.ts +6 -0
  463. package/lib/models/generated/insert-element.model.d.ts +5 -0
  464. package/lib/models/generated/insert-image.model.d.ts +6 -0
  465. package/lib/models/generated/insert-link.model.d.ts +7 -0
  466. package/lib/models/generated/insert-styled-text.model.d.ts +7 -0
  467. package/lib/models/generated/insert-tab.model.d.ts +4 -0
  468. package/lib/models/generated/insert-table-columns.model.d.ts +7 -0
  469. package/lib/models/generated/insert-table-rows.model.d.ts +7 -0
  470. package/lib/models/generated/insert-table.model.d.ts +8 -0
  471. package/lib/models/generated/insert-text.model.d.ts +5 -0
  472. package/lib/models/generated/last-document-revision.model.d.ts +9 -0
  473. package/lib/models/generated/link-data.model.d.ts +5 -0
  474. package/lib/models/generated/link.model.d.ts +7 -0
  475. package/lib/models/generated/margins.model.d.ts +7 -0
  476. package/lib/models/generated/numbering-level.model.d.ts +14 -0
  477. package/lib/models/generated/numbering.model.d.ts +7 -0
  478. package/lib/models/generated/operation.model.d.ts +8 -0
  479. package/lib/models/generated/page-numbers.model.d.ts +8 -0
  480. package/lib/models/generated/paragraph-style.model.d.ts +18 -0
  481. package/lib/models/generated/paragraph.model.d.ts +6 -0
  482. package/lib/models/generated/remove-numberings.model.d.ts +5 -0
  483. package/lib/models/generated/remove-table-columns.model.d.ts +6 -0
  484. package/lib/models/generated/remove-table-rows.model.d.ts +6 -0
  485. package/lib/models/generated/replace-by-text.model.d.ts +6 -0
  486. package/lib/models/generated/replace.model.d.ts +19 -0
  487. package/lib/models/generated/resize-table-columns.model.d.ts +9 -0
  488. package/lib/models/generated/restore-numberings.model.d.ts +7 -0
  489. package/lib/models/generated/restore-paragraph-styles.model.d.ts +5 -0
  490. package/lib/models/generated/restore-table.model.d.ts +6 -0
  491. package/lib/models/generated/restore-text-styles.model.d.ts +5 -0
  492. package/lib/models/generated/restore.model.d.ts +22 -0
  493. package/lib/models/generated/revision.model.d.ts +9 -0
  494. package/lib/models/generated/row.model.d.ts +9 -0
  495. package/lib/models/generated/tab.model.d.ts +6 -0
  496. package/lib/models/generated/table-cell.model.d.ts +6 -0
  497. package/lib/models/generated/table.model.d.ts +18 -0
  498. package/lib/models/generated/target.model.d.ts +9 -0
  499. package/lib/models/generated/text-style.model.d.ts +14 -0
  500. package/package.json +35 -0
  501. package/public-api.d.ts +42 -0
  502. package/src/_ngx-noder.theme.scss +22 -0
  503. package/src/assets/fonts/nc-iconfont.css +333 -0
  504. package/src/assets/fonts/nc-iconfont.eot +0 -0
  505. package/src/assets/fonts/nc-iconfont.svg +110 -0
  506. package/src/assets/fonts/nc-iconfont.ttf +0 -0
  507. package/src/assets/fonts/nc-iconfont.woff +0 -0
  508. package/src/lib/+shared/add-link-dialog/_add-link-dialog.theme.scss +21 -0
  509. package/src/lib/+shared/editor/_editor.theme.scss +35 -0
  510. package/src/lib/+shared/editor/custom-components/external-element/element-toolbar/_element-toolbar.theme.scss +10 -0
  511. package/src/lib/+shared/editor-header/_editor-header.theme.scss +106 -0
  512. package/src/lib/+shared/editor-toolbar/_editor-toolbar.theme.scss +33 -0
  513. package/src/lib/+shared/editor-toolbar/numbering/_numbering.theme.scss +29 -0
  514. package/src/lib/+shared/insert-table/_insert-table.theme.scss +22 -0
  515. package/src/styles.scss +58 -0
@@ -0,0 +1,110 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by IcoMoon</metadata>
5
+ <defs>
6
+ <font id="NC-iconfont" horiz-adv-x="1024">
7
+ <font-face units-per-em="1024" ascent="960" descent="-64" />
8
+ <missing-glyph horiz-adv-x="1024" />
9
+ <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
10
+ <glyph unicode="&#xe900;" glyph-name="add-column" d="M490.667 277.333c0-11.78 9.553-21.333 21.333-21.333s21.333 9.553 21.333 21.333v149.333h149.333c11.78 0 21.333 9.553 21.333 21.333s-9.553 21.333-21.333 21.333h-149.333v149.333c0 11.782-9.553 21.333-21.333 21.333s-21.333-9.551-21.333-21.333v-149.333h-149.333c-11.782 0-21.333-9.553-21.333-21.333s9.551-21.333 21.333-21.333h149.333v-149.333zM512.145 64c-53.103 0-103.026 10.078-149.773 30.229s-87.409 47.501-121.99 82.048c-34.579 34.547-61.954 75.174-82.126 121.877s-30.257 96.602-30.257 149.7c0 53.103 10.076 103.026 30.228 149.773s47.503 87.409 82.050 121.989c34.547 34.579 75.172 61.955 121.874 82.126s96.604 30.257 149.702 30.257c53.103 0 103.027-10.076 149.773-30.228s87.411-47.503 121.988-82.050c34.581-34.547 61.956-75.172 82.125-121.874 20.173-46.703 30.259-96.604 30.259-149.702 0-53.103-10.078-103.027-30.229-149.773s-47.501-87.411-82.048-121.988c-34.547-34.581-75.174-61.956-121.877-82.129-46.703-20.169-96.602-30.255-149.7-30.255zM512 106.667c95.287 0 176 33.067 242.133 99.2s99.2 146.846 99.2 242.133c0 95.289-33.067 176-99.2 242.133s-146.846 99.2-242.133 99.2c-95.289 0-176-33.067-242.133-99.2s-99.2-146.845-99.2-242.133c0-95.287 33.067-176 99.2-242.133s146.845-99.2 242.133-99.2z" />
11
+ <glyph unicode="&#xe901;" glyph-name="add-new" d="M507.666 222.72h40.96v122.88h122.88v40.96h-122.88v122.88h-40.96v-122.88h-122.879v-40.96h122.879v-122.88zM307.593 79.36c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v604.948c0 18.852 6.314 34.592 18.944 47.222s28.37 18.944 47.222 18.944h322.953l184.32-184.32v-486.793c0-18.854-6.312-34.595-18.944-47.223-12.628-12.628-28.369-18.944-47.219-18.944h-441.111zM610.066 611.84v163.84h-302.473c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-604.948c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877h441.111c6.3 0 12.075 2.626 17.326 7.877s7.877 11.026 7.877 17.33v466.313h-163.84z" />
12
+ <glyph unicode="&#xe902;" glyph-name="add" d="M507.666 427.52h-204.799c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h204.799v204.8c0 11.311 9.171 20.48 20.48 20.48 11.313 0 20.48-9.169 20.48-20.48v-204.8h204.8c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-204.8v-204.8c0-11.309-9.167-20.48-20.48-20.48-11.309 0-20.48 9.171-20.48 20.48v204.8z" />
13
+ <glyph unicode="&#xe903;" glyph-name="arrow-dropdown" d="M528.146 331.633l-176.536 176.538h353.074l-176.538-176.538z" />
14
+ <glyph unicode="&#xe904;" glyph-name="arrow-dropup" d="M351.705 388.276l176.441 176.444 176.443-176.444h-352.885z" />
15
+ <glyph unicode="&#xe905;" glyph-name="arrow-left" d="M574.447 264.107l-183.892 183.893 183.892 183.893v-367.787z" />
16
+ <glyph unicode="&#xe906;" glyph-name="arrow-north" d="M512 64c-11.78 0-21.333 9.553-21.333 21.333v667.159l-205.37-205.14c-8.115-8.106-21.263-8.102-29.374 0.008-8.113 8.114-8.113 21.268 0 29.382l256.078 256.078 256.081-256.080c8.154-8.155 8.273-21.34 0.265-29.638-8.213-8.511-21.811-8.632-30.174-0.269l-204.838 204.838v-666.338c0-11.78-9.549-21.333-21.333-21.333z" />
17
+ <glyph unicode="&#xe907;" glyph-name="arrow-right" d="M446.332 264.107v367.787l183.893-183.893-183.893-183.893z" />
18
+ <glyph unicode="&#xe908;" glyph-name="back" horiz-adv-x="983" d="M283.537 426.521c-5.654 5.607-5.668 14.721 0 20.345l175.588 174.499c13.705 13.691 34.243-6.831 20.55-20.522l-139.309-139.121c-5.639-5.624-3.837-10.26 4.128-10.26h350.639c7.819 0 14.402-6.496 14.402-14.52 0-8.081-6.451-14.52-14.402-14.52h-350.639c-7.819 0-9.811-4.592-4.128-10.277l139.309-139.104c13.693-13.693-6.844-34.214-20.55-20.525l-175.588 174.006zM40.96 436.941c0-248.84 201.723-450.56 450.56-450.56s450.56 201.72 450.56 450.56c0 248.837-201.724 450.559-450.56 450.559s-450.56-201.723-450.56-450.559zM491.52 15.45c-232.783 0-421.492 188.707-421.492 421.491s188.708 421.491 421.492 421.491 421.491-188.708 421.491-421.491c0-232.784-188.707-421.491-421.491-421.491z" />
19
+ <glyph unicode="&#xe909;" glyph-name="bottom" d="M266.633 120.32c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v523.028c0 18.852 6.314 34.592 18.944 47.222s28.37 18.944 47.222 18.944h523.031c18.85 0 34.591-6.315 47.219-18.944 12.632-12.629 18.944-28.37 18.944-47.222v-523.028c0-18.854-6.312-34.595-18.944-47.223-12.628-12.628-28.369-18.944-47.219-18.944h-523.031zM241.428 309.367h573.439v400.148c0 6.301-2.626 12.077-7.877 17.329s-11.026 7.877-17.326 7.877h-523.031c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-400.148zM241.428 268.407v-81.92c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877h523.031c6.3 0 12.075 2.626 17.326 7.877s7.877 11.026 7.877 17.33v81.92h-573.439z" />
20
+ <glyph unicode="&#xe90a;" glyph-name="cancel-nofill" d="M343.302 279.3c8.338-8.337 21.857-8.337 30.195 0l138.502 138.505 138.505-138.505c8.337-8.337 21.854-8.337 30.191 0.004 8.341 8.337 8.341 21.854 0 30.191l-138.5 138.505 138.505 138.502c8.337 8.338 8.337 21.857-0.004 30.195-8.337 8.338-21.854 8.338-30.191 0l-138.505-138.502-138.502 138.502c-8.338 8.338-21.857 8.338-30.195 0s-8.338-21.857 0-30.195l138.502-138.502-138.502-138.505c-8.338-8.337-8.338-21.854 0-30.195zM512.145 64c-53.103 0-103.026 10.078-149.773 30.229s-87.409 47.501-121.99 82.048c-34.579 34.547-61.954 75.174-82.126 121.877s-30.257 96.602-30.257 149.7c0 53.103 10.076 103.026 30.228 149.773s47.503 87.409 82.050 121.989c34.547 34.579 75.172 61.955 121.874 82.126s96.604 30.257 149.702 30.257c53.103 0 103.027-10.076 149.773-30.228s87.411-47.503 121.988-82.050c34.581-34.547 61.956-75.172 82.125-121.874 20.173-46.703 30.259-96.604 30.259-149.702 0-53.103-10.078-103.027-30.229-149.773s-47.501-87.411-82.048-121.988c-34.547-34.581-75.174-61.956-121.877-82.129-46.703-20.169-96.602-30.255-149.7-30.255zM512 106.667c95.287 0 176 33.067 242.133 99.2s99.2 146.846 99.2 242.133c0 95.289-33.067 176-99.2 242.133s-146.846 99.2-242.133 99.2c-95.289 0-176-33.067-242.133-99.2s-99.2-146.845-99.2-242.133c0-95.287 33.067-176 99.2-242.133s146.845-99.2 242.133-99.2z" />
21
+ <glyph unicode="&#xe90b;" glyph-name="cancel-thin" d="M313.266 204.128c-8.005-8.004-20.983-8.004-28.987 0-8.005 8.008-8.005 20.984 0 28.987l214.88 214.884-214.88 214.882c-8.005 8.005-8.005 20.983 0 28.987s20.983 8.005 28.987 0l214.88-214.882 214.884 214.882c8.004 8.005 20.984 8.005 28.987 0s8.004-20.983 0-28.987l-214.884-214.882 214.884-214.884c8.004-8.004 8.004-20.98 0-28.987-8.004-8.004-20.984-8.004-28.987 0l-214.884 214.884-214.88-214.884z" />
22
+ <glyph unicode="&#xe90c;" glyph-name="cancel" d="M358.4 264.205l153.6 153.6 153.6-153.6 30.195 30.195-153.6 153.6 153.6 153.6-30.195 30.195-153.6-153.6-153.6 153.6-30.195-30.195 153.6-153.6-153.6-153.6 30.195-30.195zM512.145 64c-53.103 0-103.026 10.078-149.773 30.229s-87.409 47.501-121.99 82.048c-34.579 34.547-61.954 75.174-82.126 121.877s-30.257 96.602-30.257 149.7c0 53.103 10.076 103.026 30.228 149.773s47.503 87.409 82.050 121.989c34.547 34.579 75.172 61.955 121.874 82.126s96.604 30.257 149.702 30.257c53.103 0 103.027-10.076 149.773-30.228s87.411-47.503 121.988-82.050c34.581-34.547 61.956-75.172 82.125-121.874 20.173-46.703 30.259-96.604 30.259-149.702 0-53.103-10.078-103.027-30.229-149.773s-47.501-87.411-82.048-121.988c-34.547-34.581-75.174-61.956-121.877-82.129-46.703-20.169-96.602-30.255-149.7-30.255z" />
23
+ <glyph unicode="&#xe90d;" glyph-name="check-circle" d="M450.628 281.271l272.9 272.902-30.195 30.195-242.705-242.707-121.602 121.6-30.195-30.195 151.797-151.795zM512.145 64c-53.103 0-103.026 10.078-149.773 30.229s-87.409 47.501-121.99 82.048c-34.579 34.547-61.954 75.174-82.126 121.877s-30.257 96.602-30.257 149.7c0 53.103 10.076 103.026 30.228 149.773s47.503 87.409 82.050 121.989c34.547 34.579 75.172 61.955 121.874 82.126s96.604 30.257 149.702 30.257c53.103 0 103.027-10.076 149.773-30.228s87.411-47.503 121.988-82.050c34.581-34.547 61.956-75.172 82.125-121.874 20.173-46.703 30.259-96.604 30.259-149.702 0-53.103-10.078-103.027-30.229-149.773s-47.501-87.411-82.048-121.988c-34.547-34.581-75.174-61.956-121.877-82.129-46.703-20.169-96.602-30.255-149.7-30.255z" />
24
+ <glyph unicode="&#xe90e;" glyph-name="content-cut" d="M830.624 98.263l-299.323 299.323-127.765-127.762c5.986-10.24 10.399-21.033 13.233-32.375s4.256-23.081 4.256-35.209c0-37.257-13.26-69.153-39.776-95.687-26.515-26.53-58.391-39.797-95.625-39.797s-69.139 13.259-95.71 39.772c-26.572 26.518-39.857 58.393-39.857 95.625 0 37.237 13.266 69.14 39.798 95.711s58.428 39.858 95.685 39.858c12.13 0 23.867-1.417 35.21-4.256 11.342-2.834 22.134-7.246 32.374-13.23l127.764 127.762-127.764 127.763c-10.24-5.986-21.031-10.397-32.374-13.233s-23.080-4.254-35.21-4.254c-37.258 0-69.153 13.258-95.685 39.774s-39.798 58.391-39.798 95.625c0 37.236 13.258 69.139 39.773 95.71s58.391 39.857 95.626 39.857c37.236 0 69.139-13.266 95.71-39.799s39.859-58.427 39.859-95.685c0-12.13-1.421-23.867-4.256-35.21s-7.247-22.134-13.233-32.374l502.705-502.706v-25.207h-75.616zM635.273 501.563l-50.409 50.412 245.76 245.76h75.616v-25.207l-270.967-270.966zM285.538 599.236c25.994 0 48.246 9.256 66.757 27.767s27.767 40.763 27.767 66.757-9.255 48.246-27.767 66.757c-18.51 18.511-40.763 27.767-66.757 27.767s-48.246-9.255-66.757-27.767c-18.511-18.51-27.767-40.763-27.767-66.757s9.256-48.246 27.767-66.757c18.511-18.511 40.763-27.767 66.757-27.767zM285.538 107.717c25.994 0 48.246 9.257 66.757 27.767s27.767 40.763 27.767 66.757-9.255 48.247-27.767 66.757c-18.51 18.51-40.763 27.767-66.757 27.767s-48.246-9.257-66.757-27.767c-18.511-18.51-27.767-40.763-27.767-66.757s9.256-48.247 27.767-66.757c18.511-18.51 40.763-27.767 66.757-27.767z" />
25
+ <glyph unicode="&#xe90f;" glyph-name="content-paste" d="M266.633 120.32c-18.327 0-33.936 6.447-46.828 19.337-12.892 12.894-19.337 28.5-19.337 46.83v523.028c0 18.327 6.445 33.936 19.337 46.828s28.502 19.337 46.828 19.337h189.915c3.83 16.017 12.337 29.473 25.518 40.369s28.541 16.345 46.080 16.345c17.854 0 33.333-5.448 46.436-16.345s21.57-24.352 25.403-40.369h189.678c18.326 0 33.935-6.445 46.825-19.337 12.894-12.892 19.337-28.502 19.337-46.828v-523.028c0-18.33-6.443-33.935-19.337-46.83-12.89-12.89-28.5-19.337-46.825-19.337h-523.031zM266.633 161.28h523.031c6.3 0 12.075 2.626 17.326 7.877s7.877 11.026 7.877 17.33v523.028c0 6.301-2.626 12.077-7.877 17.329s-11.026 7.877-17.326 7.877h-97.677v-91.372h-327.679v91.372h-97.674c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-523.028c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877zM528.146 725.268c9.507 0 17.396 3.138 23.671 9.413s9.413 14.165 9.413 23.67c0 9.505-3.138 17.394-9.413 23.67s-14.164 9.414-23.671 9.414c-9.503 0-17.392-3.138-23.667-9.414-6.279-6.275-9.417-14.165-9.417-23.67s3.138-17.395 9.417-23.67c6.275-6.275 14.164-9.413 23.667-9.413z" />
26
+ <glyph unicode="&#xe910;" glyph-name="datepicker" d="M360.172 370.807c-8.455 0-15.82 3.138-22.095 9.413s-9.413 13.64-9.413 22.094c0 8.454 3.138 15.819 9.413 22.094s13.64 9.413 22.095 9.413c8.455 0 15.82-3.138 22.095-9.413s9.413-13.64 9.413-22.094c0-8.454-3.138-15.819-9.413-22.094s-13.64-9.413-22.095-9.413zM524.014 370.807c-8.454 0-15.823 3.138-22.098 9.413s-9.413 13.64-9.413 22.094c0 8.454 3.138 15.819 9.413 22.094s13.644 9.413 22.098 9.413c8.454 0 15.819-3.138 22.094-9.413s9.413-13.64 9.413-22.094c0-8.454-3.138-15.819-9.413-22.094s-13.64-9.413-22.094-9.413zM687.854 370.807c-8.454 0-15.823 3.138-22.098 9.413s-9.413 13.64-9.413 22.094c0 8.454 3.138 15.819 9.413 22.094s13.644 9.413 22.098 9.413c8.454 0 15.819-3.138 22.094-9.413s9.413-13.64 9.413-22.094c0-8.454-3.138-15.819-9.413-22.094s-13.64-9.413-22.094-9.413zM262.498 79.36c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v523.027c0 18.852 6.315 34.593 18.944 47.222s28.37 18.944 47.222 18.944h72.467v91.372h44.111v-91.372h293.020v91.372h40.964v-91.372h72.466c18.85 0 34.591-6.315 47.223-18.944 12.628-12.629 18.944-28.37 18.944-47.222v-523.027c0-18.854-6.316-34.595-18.944-47.223-12.632-12.628-28.373-18.944-47.223-18.944h-523.028zM262.498 120.32h523.028c6.3 0 12.079 2.626 17.33 7.877s7.877 11.026 7.877 17.33v359.186h-573.441v-359.186c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877zM237.292 545.674h573.441v122.88c0 6.301-2.626 12.077-7.877 17.329s-11.031 7.877-17.33 7.877h-523.028c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-122.88z" />
27
+ <glyph unicode="&#xe911;" glyph-name="delete" d="M348.553 120.32c-18.327 0-33.936 6.447-46.828 19.337-12.892 12.894-19.337 28.5-19.337 46.83v507.274h-40.96v40.96h163.84v31.508h245.759v-31.508h163.84v-40.96h-40.96v-507.274c0-18.854-6.312-34.595-18.944-47.223-12.628-12.628-28.369-18.944-47.219-18.944h-359.191zM732.946 693.76h-409.599v-507.274c0-7.352 2.363-13.39 7.089-18.117s10.765-7.090 18.117-7.090h359.191c6.3 0 12.075 2.626 17.326 7.877s7.877 11.026 7.877 17.33v507.274zM438.35 243.2h40.96v368.64h-40.96v-368.64zM576.983 243.2h40.964v368.64h-40.964v-368.64z" />
28
+ <glyph unicode="&#xe912;" glyph-name="done-thin" d="M427.794 230.597l-188.928 188.928c-8.070 8.069-8.070 21.156 0 29.225s21.153 8.069 29.223 0l159.705-159.707 360.407 360.41c8.073 8.070 21.156 8.070 29.225 0s8.069-21.153 0-29.223l-389.632-389.633z" />
29
+ <glyph unicode="&#xe913;" glyph-name="draft" d="M282.256 64c-19.637 0-36.034 6.579-49.189 19.733s-19.733 29.551-19.733 49.19v630.154c0 19.637 6.578 36.034 19.733 49.189s29.552 19.733 49.189 19.733h336.411l192-192v-507.076c0-19.639-6.579-36.036-19.733-49.19s-29.551-19.733-49.19-19.733h-459.487zM597.333 618.667v170.667h-315.078c-6.563 0-12.58-2.735-18.051-8.205s-8.205-11.488-8.205-18.051v-630.154c0-6.566 2.735-12.582 8.205-18.052s11.488-8.205 18.051-8.205h459.487c6.566 0 12.582 2.735 18.052 8.205s8.205 11.486 8.205 18.052v485.743h-170.667z" />
30
+ <glyph unicode="&#xe914;" glyph-name="edit-mode" horiz-adv-x="983" d="M176.68 843.382c2.021 2.021 4.763 3.157 7.621 3.157h153.6c1.428 0.020 2.846-0.244 4.172-0.776s2.532-1.323 3.549-2.326c1.017-1.003 1.825-2.198 2.376-3.516s0.836-2.732 0.836-4.16c0-1.429-0.284-2.843-0.836-4.161s-1.359-2.513-2.376-3.516c-1.017-1.003-2.224-1.794-3.549-2.327s-2.744-0.796-4.172-0.776h-142.821v-288.335c0.020-1.43-0.244-2.847-0.777-4.174-0.532-1.323-1.323-2.531-2.326-3.547s-2.198-1.827-3.516-2.376c-1.318-0.553-2.732-0.836-4.16-0.836s-2.843 0.283-4.161 0.836c-1.318 0.549-2.513 1.36-3.516 2.376s-1.794 2.224-2.326 3.547c-0.533 1.327-0.797 2.744-0.777 4.174v299.114c0 2.859 1.136 5.6 3.158 7.621zM640.93 845.763c1.323 0.532 2.74 0.797 4.17 0.776h153.6c2.859 0 5.599-1.136 7.623-3.157 2.019-2.021 3.158-4.763 3.158-7.621v-299.114c0.020-1.43-0.246-2.847-0.778-4.174-0.532-1.323-1.323-2.531-2.327-3.547s-2.195-1.827-3.514-2.376c-1.319-0.553-2.732-0.836-4.162-0.836s-2.843 0.283-4.162 0.836c-1.315 0.549-2.511 1.36-3.514 2.376s-1.794 2.224-2.327 3.547c-0.532 1.327-0.795 2.744-0.774 4.174v288.335h-142.823c-1.43-0.020-2.847 0.244-4.17 0.776-1.327 0.533-2.531 1.323-3.551 2.327-1.016 1.003-1.823 2.198-2.376 3.516s-0.836 2.732-0.836 4.161c0 1.428 0.283 2.843 0.836 4.16s1.36 2.513 2.376 3.516c1.020 1.003 2.224 1.794 3.551 2.326zM180.021 347.296c1.3 0.565 2.697 0.864 4.112 0.885 1.444 0.025 2.877-0.242 4.216-0.786 1.338-0.541 2.554-1.348 3.575-2.367s1.827-2.236 2.369-3.576c0.542-1.339 0.81-2.773 0.787-4.215v-288.338h142.821c1.428 0.020 2.846-0.242 4.172-0.774s2.532-1.323 3.549-2.327c1.017-1.004 1.825-2.2 2.376-3.518 0.551-1.315 0.836-2.732 0.836-4.157 0-1.43-0.284-2.843-0.836-4.162s-1.359-2.515-2.376-3.514c-1.017-1.004-2.224-1.794-3.549-2.327s-2.744-0.799-4.172-0.778h-153.6c-2.859 0-5.6 1.135-7.621 3.158-2.021 2.019-3.157 4.764-3.158 7.623v299.114c-0.022 1.413 0.235 2.822 0.756 4.137s1.297 2.515 2.282 3.535c0.985 1.016 2.161 1.827 3.46 2.388zM794.419 347.296c1.298 0.565 2.695 0.864 4.112 0.885 1.442 0.025 2.879-0.242 4.215-0.786 1.339-0.541 2.556-1.348 3.576-2.367s1.827-2.236 2.367-3.576c0.545-1.339 0.811-2.773 0.791-4.215v-299.114c0-2.859-1.139-5.603-3.158-7.623-2.023-2.023-4.764-3.158-7.623-3.158h-153.6c-1.43-0.020-2.847 0.246-4.17 0.778-1.327 0.532-2.531 1.323-3.551 2.327-1.016 0.999-1.823 2.195-2.376 3.514s-0.836 2.732-0.836 4.162c0 1.425 0.283 2.843 0.836 4.157 0.553 1.319 1.36 2.515 2.376 3.518 1.020 1.004 2.224 1.794 3.551 2.327 1.323 0.532 2.74 0.795 4.17 0.774h142.823v288.338c-0.025 1.413 0.233 2.822 0.754 4.137s1.298 2.515 2.281 3.535c0.987 1.016 2.163 1.827 3.461 2.388zM261.854 446.943c1.325 0.532 2.744 0.795 4.172 0.774h450.987c1.43 0.020 2.847-0.242 4.174-0.774 1.323-0.532 2.531-1.323 3.547-2.327 1.020-1.004 1.827-2.2 2.376-3.514 0.553-1.319 0.836-2.732 0.836-4.162s-0.283-2.843-0.836-4.162c-0.549-1.319-1.356-2.511-2.376-3.514-1.016-1.004-2.224-1.794-3.547-2.327-1.327-0.532-2.744-0.799-4.174-0.778h-450.987c-1.428-0.020-2.846 0.246-4.172 0.778s-2.532 1.323-3.549 2.327c-1.017 1.004-1.825 2.195-2.376 3.514s-0.835 2.732-0.835 4.162c0 1.43 0.284 2.843 0.835 4.162 0.551 1.315 1.359 2.511 2.376 3.514s2.224 1.794 3.549 2.327zM317.481 365.064c-1.416-0.070-2.804-0.418-4.085-1.028-1.281-0.606-2.429-1.462-3.38-2.511-0.951-1.053-1.685-2.281-2.16-3.617s-0.683-2.753-0.612-4.17c0.072-1.413 0.422-2.802 1.031-4.084s1.463-2.429 2.515-3.379c1.052-0.95 2.281-1.683 3.618-2.159s2.752-0.68 4.168-0.61h353.98c1.425-0.020 2.843 0.246 4.17 0.778s2.531 1.323 3.551 2.327c1.016 1.004 1.823 2.195 2.376 3.514 0.549 1.319 0.836 2.732 0.836 4.162s-0.287 2.843-0.836 4.162c-0.553 1.315-1.36 2.511-2.376 3.514-1.020 1.004-2.224 1.794-3.551 2.327s-2.744 0.795-4.17 0.774h-353.98c-0.365 0.020-0.73 0.020-1.094 0zM314.4 281.678c1.325 0.532 2.744 0.799 4.172 0.778h353.978c1.43 0.020 2.847-0.246 4.17-0.778 1.327-0.532 2.535-1.323 3.551-2.327s1.823-2.195 2.376-3.514c0.553-1.319 0.836-2.732 0.836-4.162s-0.283-2.843-0.836-4.162c-0.553-1.315-1.36-2.511-2.376-3.514s-2.224-1.794-3.551-2.327c-1.323-0.532-2.74-0.795-4.17-0.774h-353.978c-1.429-0.020-2.847 0.242-4.172 0.774s-2.532 1.323-3.549 2.327c-1.017 1.004-1.825 2.2-2.376 3.514-0.551 1.319-0.835 2.732-0.835 4.162s0.284 2.843 0.835 4.162c0.551 1.319 1.359 2.511 2.376 3.514s2.223 1.794 3.549 2.327zM318.573 199.803c-1.429 0.020-2.847-0.242-4.172-0.774s-2.532-1.323-3.549-2.327c-1.017-1.004-1.825-2.2-2.376-3.518-0.551-1.315-0.835-2.732-0.835-4.157 0-1.43 0.284-2.843 0.835-4.162s1.359-2.515 2.376-3.514c1.017-1.004 2.223-1.794 3.549-2.327s2.744-0.799 4.172-0.778h353.978c1.43-0.020 2.847 0.246 4.17 0.778 1.327 0.532 2.535 1.323 3.551 2.327 1.016 0.999 1.823 2.195 2.376 3.514s0.836 2.732 0.836 4.162c0 1.425-0.283 2.843-0.836 4.157-0.553 1.319-1.36 2.515-2.376 3.518s-2.224 1.794-3.551 2.327c-1.323 0.532-2.74 0.795-4.17 0.774h-353.978zM314.4 694.858c1.325 0.532 2.744 0.796 4.172 0.776h353.978c1.43 0.020 2.847-0.244 4.17-0.776 1.327-0.533 2.535-1.323 3.551-2.327s1.823-2.198 2.376-3.516c0.553-1.318 0.836-2.732 0.836-4.161s-0.283-2.843-0.836-4.16c-0.553-1.318-1.36-2.513-2.376-3.516s-2.224-1.794-3.551-2.326c-1.323-0.532-2.74-0.797-4.17-0.776h-353.978c-1.429-0.020-2.847 0.244-4.172 0.776s-2.532 1.323-3.549 2.326c-1.017 1.003-1.825 2.198-2.376 3.516s-0.835 2.732-0.835 4.16c0 1.429 0.284 2.843 0.835 4.161s1.359 2.513 2.376 3.516c1.017 1.003 2.223 1.794 3.549 2.327zM318.573 612.984c-1.429 0.020-2.847-0.244-4.172-0.776s-2.532-1.323-3.549-2.327c-1.017-1.003-1.825-2.198-2.376-3.516s-0.835-2.732-0.835-4.161c0-1.428 0.284-2.843 0.835-4.16s1.359-2.513 2.376-3.516c1.017-1.003 2.223-1.794 3.549-2.326s2.744-0.797 4.172-0.777h353.978c1.43-0.020 2.847 0.244 4.17 0.777 1.327 0.532 2.535 1.323 3.551 2.326s1.823 2.198 2.376 3.516c0.553 1.318 0.836 2.732 0.836 4.16s-0.283 2.843-0.836 4.161c-0.553 1.318-1.36 2.512-2.376 3.516s-2.224 1.794-3.551 2.327c-1.323 0.532-2.74 0.796-4.17 0.776h-353.978zM314.4 529.592c1.325 0.532 2.744 0.799 4.172 0.778h353.978c1.43 0.020 2.847-0.246 4.17-0.778 1.327-0.532 2.535-1.323 3.551-2.327s1.823-2.195 2.376-3.514c0.553-1.319 0.836-2.732 0.836-4.162s-0.283-2.843-0.836-4.162c-0.553-1.315-1.36-2.511-2.376-3.514s-2.224-1.794-3.551-2.327c-1.323-0.532-2.74-0.795-4.17-0.778h-353.978c-1.429-0.016-2.847 0.246-4.172 0.778s-2.532 1.323-3.549 2.327c-1.017 1.004-1.825 2.2-2.376 3.514-0.551 1.319-0.835 2.732-0.835 4.162s0.284 2.843 0.835 4.162c0.551 1.319 1.359 2.511 2.376 3.514s2.223 1.794 3.549 2.327zM91.922 522.162c-2.71-0.213-5.24-1.442-7.083-3.441s-2.862-4.62-2.854-7.34v-148.886c-0.002-1.892 0.495-3.752 1.44-5.39 0.945-1.642 2.306-3.002 3.944-3.953 1.639-0.946 3.498-1.446 5.391-1.446s3.753 0.496 5.392 1.442l128.968 74.445c1.644 0.942 3.010 2.306 3.96 3.944 0.95 1.642 1.45 3.506 1.45 5.403s-0.5 3.756-1.45 5.399c-0.95 1.642-2.316 3.002-3.96 3.949l-128.968 74.441c-1.885 1.098-4.057 1.597-6.231 1.434zM103.543 492.728l96.632-55.788-96.632-55.792v111.579zM898.183 518.734c-1.851 1.999-4.391 3.224-7.107 3.428-2.163 0.156-4.317-0.344-6.189-1.434l-128.971-74.441c-1.642-0.946-3.011-2.306-3.961-3.949-0.95-1.638-1.45-3.502-1.45-5.399s0.5-3.76 1.45-5.403c0.95-1.638 2.318-3.002 3.961-3.944l128.971-74.445c1.638-0.946 3.498-1.442 5.39-1.442s3.752 0.5 5.39 1.446c1.638 0.95 3.002 2.31 3.944 3.953 0.946 1.638 1.442 3.498 1.442 5.394v148.881c0.008 2.724-1.020 5.353-2.871 7.352zM782.864 436.941l96.633 55.788v-111.579l-96.633 55.792z" />
31
+ <glyph unicode="&#xe915;" glyph-name="error" d="M512 257.638c7.441 0 13.675 2.517 18.709 7.552 5.030 5.030 7.548 11.268 7.548 18.705 0 7.441-2.517 13.675-7.548 18.709-5.035 5.030-11.268 7.548-18.709 7.548s-13.675-2.517-18.709-7.548c-5.030-5.035-7.548-11.268-7.548-18.709 0-7.437 2.517-13.675 7.548-18.705 5.035-5.035 11.268-7.552 18.709-7.552zM490.667 420.105c0-11.785 9.553-21.333 21.333-21.333s21.333 9.549 21.333 21.333v213.331c0 11.782-9.553 21.333-21.333 21.333s-21.333-9.551-21.333-21.333v-213.331zM512.145 64c-53.103 0-103.026 10.078-149.773 30.229s-87.409 47.501-121.99 82.048c-34.579 34.547-61.954 75.174-82.126 121.877s-30.257 96.602-30.257 149.7c0 53.103 10.076 103.026 30.228 149.773s47.503 87.409 82.050 121.989c34.547 34.579 75.172 61.955 121.874 82.126s96.604 30.257 149.702 30.257c53.103 0 103.027-10.076 149.773-30.228s87.411-47.503 121.988-82.050c34.581-34.547 61.956-75.172 82.125-121.874 20.173-46.703 30.259-96.604 30.259-149.702 0-53.103-10.078-103.027-30.229-149.773s-47.501-87.411-82.048-121.988c-34.547-34.581-75.174-61.956-121.877-82.129-46.703-20.169-96.602-30.255-149.7-30.255zM512 106.667c95.287 0 176 33.067 242.133 99.2s99.2 146.846 99.2 242.133c0 95.289-33.067 176-99.2 242.133s-146.846 99.2-242.133 99.2c-95.289 0-176-33.067-242.133-99.2s-99.2-146.845-99.2-242.133c0-95.287 33.067-176 99.2-242.133s146.845-99.2 242.133-99.2z" />
32
+ <glyph unicode="&#xe916;" glyph-name="file-copy" d="M789.664 202.24h-400.151c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v523.028c0 18.852 6.314 34.592 18.944 47.222s28.37 18.944 47.222 18.944h281.993l184.32-184.32v-404.873c0-18.854-6.312-34.595-18.944-47.223-12.628-12.628-28.369-18.944-47.219-18.944zM651.026 652.8v163.84h-261.513c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-523.028c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877h400.151c6.3 0 12.075 2.626 17.326 7.877s7.877 11.026 7.877 17.33v384.393h-163.84zM225.673 38.4c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v486.793c0 11.311 9.169 20.48 20.48 20.48s20.48-9.169 20.48-20.48v-486.793c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877h363.913c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-363.913z" />
33
+ <glyph unicode="&#xe917;" glyph-name="file-library" d="M278.33 782.333c-0.769 0-2.095-0.322-3.498-1.9-1.475-1.66-2.665-4.396-2.665-7.7v-649.602c0-3.302 1.19-6.037 2.665-7.697 1.403-1.579 2.729-1.903 3.498-1.903h467.437c0.768 0 2.095 0.324 3.499 1.903 1.476 1.66 2.667 4.395 2.667 7.697v534.932c-0.004 3.302-1.195 6.036-2.667 7.695l-0.004 0.003-101.931 114.672c-1.404 1.578-2.726 1.9-3.499 1.901h-365.502zM242.942 808.78c8.911 10.025 21.572 16.221 35.388 16.221h365.515c13.811-0.003 26.47-6.2 35.379-16.224v-0.002l101.926-114.665c8.836-9.94 13.444-22.939 13.449-36.041v-534.936c0-13.103-4.608-26.103-13.444-36.045-8.909-10.022-21.572-16.222-35.388-16.222h-467.437c-13.815 0-26.477 6.199-35.388 16.222-8.838 9.941-13.442 22.942-13.442 36.045v649.602c0 13.104 4.604 26.103 13.442 36.046zM347 624c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333h192.473c11.785 0 21.333 9.551 21.333 21.333s-9.549 21.333-21.333 21.333h-192.473zM325.667 509.666c0 11.785 9.551 21.333 21.333 21.333h329.954c11.785 0 21.333-9.549 21.333-21.333 0-11.78-9.549-21.333-21.333-21.333h-329.954c-11.782 0-21.333 9.553-21.333 21.333zM347 438.332c-11.782 0-21.333-9.549-21.333-21.333 0-11.78 9.551-21.333 21.333-21.333h329.954c11.785 0 21.333 9.553 21.333 21.333 0 11.785-9.549 21.333-21.333 21.333h-329.954zM325.667 324.335c0 11.78 9.551 21.333 21.333 21.333h329.954c11.785 0 21.333-9.553 21.333-21.333 0-11.785-9.549-21.333-21.333-21.333h-329.954c-11.782 0-21.333 9.549-21.333 21.333zM347 252.668c-11.782 0-21.333-9.553-21.333-21.333 0-11.785 9.551-21.333 21.333-21.333h329.954c11.785 0 21.333 9.549 21.333 21.333 0 11.78-9.549 21.333-21.333 21.333h-329.954z" />
34
+ <glyph unicode="&#xe918;" glyph-name="file-related" d="M751.027 64h-478.054c-32.616 0-59.64 27.84-59.64 60.48v646.080c0 33.6 27.025 61.44 59.64 61.44h309.384l228.309-234.24v-472.32c0-33.6-27.025-61.44-59.639-61.44zM744.503 611.2l-149.099 153.6v-134.4c0-10.56 8.384-19.2 18.637-19.2h130.462zM272.974 793.6c-12.115 0-22.365-10.56-22.365-23.040v-645.12c0-12.48 10.251-23.040 22.365-23.040h477.119c12.117 0 22.366 10.56 22.366 23.040v447.36h-158.417c-30.754 0-55.915 25.92-55.915 57.6v163.2h-285.153zM449.762 606.115c-8.905 9.344-19.627 14.017-32.168 14.017s-23.264-4.672-32.168-14.017c-8.903-9.344-13.355-20.598-13.355-33.76s4.452-24.415 13.355-33.759c8.904-9.346 19.626-14.018 32.168-14.018s23.263 4.672 32.168 14.018c8.905 9.344 13.355 20.598 13.355 33.759s-4.45 24.416-13.355 33.76zM638.545 305.404c-8.9 9.344-19.627 14.016-32.166 14.016s-23.262-4.672-32.166-14.016c-8.905-9.344-13.355-20.595-13.355-33.758s4.45-24.414 13.355-33.762c8.905-9.344 19.627-14.016 32.166-14.016s23.266 4.672 32.166 14.016c8.905 9.348 13.359 20.599 13.359 33.762s-4.454 24.414-13.359 33.758zM360.691 632.076c15.621 16.394 34.589 24.591 56.904 24.591s41.281-8.197 56.906-24.591c15.62-16.394 23.428-36.301 23.428-59.721 0-20.468-5.969-38.267-17.907-53.396s-26.944-24.708-45.022-28.736v-49.954h188.787v-86.49c18.074-4.028 33.079-13.606 45.018-28.736 11.942-15.13 17.911-32.93 17.911-53.397 0-23.42-7.812-43.328-23.433-59.721-15.62-16.397-34.59-24.593-56.905-24.593s-41.284 8.196-56.905 24.593c-15.62 16.393-23.428 36.301-23.428 59.721 0 20.467 5.969 38.268 17.907 53.397s26.944 24.708 45.022 28.736v49.954h-188.786v86.49c-18.075 4.028-33.082 13.606-45.021 28.736s-17.908 32.928-17.908 53.396c0 23.42 7.811 43.327 23.431 59.721z" />
35
+ <glyph unicode="&#xe919;" glyph-name="file" horiz-adv-x="983" d="M656.949 427.725h-313.346c-10.138 0-18.432 8.294-18.432 18.432s8.294 18.432 18.432 18.432h313.346c10.138 0 18.432-8.294 18.432-18.432s-8.294-18.432-18.432-18.432zM343.604 326.349h313.346c10.138 0 18.432 8.294 18.432 18.432s-8.294 18.432-18.432 18.432h-313.346c-10.138 0-18.432-8.294-18.432-18.432s8.294-18.432 18.432-18.432zM656.949 224.973h-313.346c-10.138 0-18.432 8.294-18.432 18.432s8.294 18.432 18.432 18.432h313.346c10.138 0 18.432-8.294 18.432-18.432s-8.294-18.432-18.432-18.432zM727.912 68.301h-472.782c-32.256 0-58.982 26.726-58.982 58.061v620.236c0 32.256 26.726 58.982 58.982 58.982h305.973l225.792-224.87v-453.426c0-32.256-26.726-58.982-58.982-58.982zM721.461 593.612l-147.456 147.456v-129.024c0-10.138 8.294-18.432 18.432-18.432h129.024zM255.13 768.716c-11.981 0-22.118-10.138-22.118-22.118v-619.314c0-11.981 10.138-22.118 22.118-22.118h471.861c11.981 0 22.118 10.138 22.118 22.118v429.465h-156.672c-30.413 0-55.296 24.883-55.296 55.296v156.672h-282.011z" />
36
+ <glyph unicode="&#xe91a;" glyph-name="fill-done" horiz-adv-x="983" d="M865.169 436.941c0-215.953-175.673-391.627-391.627-391.627-215.951 0-391.623 175.673-391.623 391.627 0 215.952 175.671 391.623 391.623 391.623 91.754 0 182.387-32.449 252.879-92.871 8.95-7.832 10.068-22.378 2.236-31.33s-22.376-10.070-31.33-2.238c-62.661 52.589-142.103 81.682-223.785 81.682-191.335 0-346.866-155.531-346.866-346.866s155.53-347.988 346.866-347.988c191.336 0 346.87 155.533 346.87 346.87 0 32.449-4.477 64.897-13.431 95.109-3.355 12.304 3.359 24.615 15.667 27.971s24.617-3.357 27.972-15.667c10.072-33.567 14.549-70.492 14.549-106.295zM864.047 746.882c8.954 8.951 22.381 8.951 31.33 0 7.832-8.951 7.832-23.498-1.118-31.33l-433.025-433.023c-4.477-4.477-10.068-6.713-15.663-6.713s-11.19 2.236-15.667 6.713l-175.67 175.669c-8.951 8.95-8.951 22.381 0 31.33s22.378 8.95 31.33 0l160.008-161.124 418.476 418.477z" />
37
+ <glyph unicode="&#xe91b;" glyph-name="fill-mode" horiz-adv-x="983" d="M677.433 846.396c0.582 0.091 1.176 0.139 1.769 0.143 1.626 0.012 3.24-0.301 4.743-0.922s2.867-1.537 4.010-2.694l139.85-137.577c0.254-0.213 0.496-0.438 0.733-0.673 0.389-0.392 0.754-0.809 1.085-1.246 0.639-0.807 1.171-1.692 1.585-2.637 0.655-1.481 1.004-3.077 1.032-4.696 0.012-0.69-0.033-1.378-0.139-2.057l-0.139-509.157c0.020-1.614-0.279-3.215-0.881-4.714-0.602-1.495-1.495-2.859-2.626-4.010-1.135-1.147-2.486-2.060-3.973-2.683-1.491-0.623-3.088-0.946-4.702-0.946s-3.211 0.324-4.702 0.946c-1.487 0.623-2.839 1.536-3.969 2.683-1.135 1.151-2.028 2.515-2.63 4.010-0.602 1.499-0.901 3.101-0.877 4.714l0.143 499.003h-100.618c-21.979 0-40.296 17.748-40.296 39.724v0.049l0.332 98.383h-448.573c-24.781 0-44.149-19.118-44.149-43.102v-649.86c0-23.982 19.368-43.102 44.149-43.102h487.87c1.614 0.025 3.215-0.274 4.714-0.877s2.859-1.495 4.010-2.63c1.151-1.13 2.060-2.482 2.683-3.969 0.623-1.491 0.946-3.088 0.946-4.702s-0.324-3.211-0.946-4.702c-0.623-1.487-1.532-2.839-2.683-3.973-1.151-1.13-2.511-2.023-4.010-2.626s-3.101-0.901-4.714-0.877h-487.87c-37.619 0-68.507 30.163-68.507 67.457v649.86c0 37.296 30.888 67.46 68.507 67.46l458.842-0.001zM691.47 805.3l-0.279-81.692c0-8.664 6.713-15.366 15.938-15.366h83.005l-98.664 97.058zM600.285 397.083c-17.351-10.011-23.388-32.555-13.369-49.902l174.236-301.625c10.019-17.347 32.571-23.388 49.922-13.378l3.67 2.118c17.347 10.011 23.388 32.551 13.369 49.897l-174.24 301.629c-10.019 17.342-32.571 23.388-49.922 13.373l-3.666-2.114zM612.471 375.988l3.666 2.118c6.025 3.478 13.16 1.565 16.638-4.461l174.24-301.625c3.482-6.025 1.569-13.156-4.456-16.634l-3.666-2.118c-6.029-3.478-13.16-1.565-16.642 4.461l-174.24 301.629c-3.478 6.025-1.569 13.152 4.461 16.63zM565.060 461.554c1.794 1.114 3.846 1.745 5.96 1.827 2.241 0.082 4.465-0.455 6.418-1.556 1.958-1.098 3.572-2.716 4.665-4.678l13.75-23.785c0.872-1.384 1.462-2.937 1.724-4.555s0.197-3.273-0.197-4.866c-0.393-1.593-1.102-3.088-2.085-4.399-0.987-1.315-2.228-2.413-3.645-3.232-1.421-0.823-2.994-1.348-4.62-1.544-1.63-0.201-3.281-0.070-4.854 0.389-1.577 0.455-3.043 1.221-4.317 2.257-1.27 1.036-2.318 2.318-3.084 3.772l-13.746 23.785c-1.085 1.815-1.675 3.879-1.72 5.992-0.041 2.114 0.467 4.198 1.475 6.058 1.008 1.855 2.478 3.42 4.276 4.534zM678.58 456.577c-2.388 0.098-4.751-0.508-6.799-1.741-2.048-1.237-3.686-3.047-4.71-5.206l-10.99-22.172c-0.823-1.438-1.343-3.035-1.528-4.682-0.184-1.651-0.033-3.322 0.451-4.907 0.487-1.589 1.29-3.060 2.363-4.325s2.392-2.302 3.879-3.039c1.487-0.737 3.109-1.159 4.768-1.249 1.659-0.086 3.314 0.164 4.87 0.741s2.982 1.466 4.182 2.609c1.2 1.147 2.154 2.527 2.802 4.055l10.99 22.168c0.934 1.819 1.401 3.838 1.348 5.878-0.049 2.044-0.61 4.039-1.634 5.804-1.024 1.769-2.474 3.248-4.219 4.309s-3.731 1.663-5.771 1.757zM515.191 364.29c2.306 2.249 5.411 3.498 8.634 3.465 0.41 0.004 0.823-0.012 1.237-0.049l24.736-1.569c1.597-0.102 3.158-0.52 4.596-1.225s2.72-1.688 3.777-2.888c1.057-1.204 1.864-2.601 2.38-4.116s0.729-3.117 0.627-4.71c-0.102-1.597-0.52-3.158-1.225-4.596-0.709-1.434-1.692-2.72-2.892-3.772-1.204-1.057-2.601-1.868-4.116-2.38-1.516-0.516-3.117-0.729-4.714-0.623l-24.74 1.569c-3.219 0.057-6.291 1.384-8.532 3.699-2.245 2.314-3.478 5.423-3.437 8.647 0.045 3.224 1.364 6.296 3.67 8.548zM595.141 306.242c-1.982 0.016-3.936-0.455-5.693-1.368-1.757-0.909-3.265-2.236-4.395-3.863l-11.559-15.987c-0.938-1.294-1.61-2.765-1.982-4.321-0.369-1.556-0.426-3.17-0.172-4.747 0.254-1.581 0.815-3.092 1.655-4.456s1.937-2.544 3.232-3.482c1.298-0.938 2.765-1.61 4.321-1.982 1.556-0.369 3.174-0.426 4.751-0.172 1.581 0.254 3.092 0.815 4.456 1.655 1.36 0.84 2.544 1.937 3.482 3.236l11.559 16.032c1.348 1.802 2.163 3.944 2.367 6.185 0.201 2.241-0.221 4.493-1.221 6.509-1.004 2.015-2.54 3.715-4.448 4.907-1.905 1.196-4.104 1.839-6.353 1.855zM714.502 366.375c0.283 0.025 0.569 0.041 0.856 0.049 3.105 0.020 6.103-1.143 8.376-3.256 2.277-2.114 3.658-5.014 3.867-8.114 0.205-3.101-0.778-6.16-2.753-8.557-1.978-2.396-4.792-3.949-7.873-4.338l-19.698-1.999c-1.626-0.233-3.285-0.139-4.874 0.283-1.593 0.422-3.080 1.163-4.375 2.175-1.298 1.012-2.376 2.277-3.17 3.719-0.791 1.442-1.286 3.027-1.45 4.665-0.164 1.634 0.004 3.289 0.496 4.858 0.496 1.569 1.298 3.023 2.367 4.272s2.384 2.269 3.854 3.002c1.475 0.729 3.084 1.151 4.727 1.241l19.649 1.999zM322.065 651.819c-1.614 0.023-3.217-0.275-4.714-0.877s-2.861-1.495-4.010-2.628c-1.149-1.133-2.062-2.483-2.685-3.972s-0.944-3.087-0.944-4.701c0-1.614 0.321-3.212 0.944-4.701s1.536-2.839 2.685-3.973c1.149-1.133 2.512-2.026 4.010-2.628s3.1-0.9 4.714-0.877h326.93c1.614-0.023 3.215 0.275 4.71 0.877 1.499 0.602 2.863 1.495 4.010 2.628 1.151 1.133 2.064 2.484 2.687 3.973s0.942 3.087 0.942 4.701c0 1.614-0.319 3.212-0.942 4.701s-1.536 2.839-2.687 3.972c-1.147 1.133-2.511 2.027-4.010 2.628-1.495 0.602-3.097 0.9-4.71 0.877h-326.93zM317.351 527.204c1.497 0.602 3.1 0.897 4.714 0.877h326.93c1.614 0.020 3.215-0.274 4.71-0.877 1.499-0.602 2.863-1.495 4.010-2.63 1.151-1.135 2.064-2.482 2.687-3.973 0.623-1.487 0.942-3.088 0.942-4.702s-0.319-3.211-0.942-4.698c-0.623-1.491-1.536-2.839-2.687-3.973-1.147-1.135-2.511-2.028-4.010-2.63-1.495-0.602-3.097-0.901-4.71-0.877h-326.93c-1.614-0.025-3.217 0.274-4.714 0.877s-2.861 1.495-4.010 2.63c-1.149 1.135-2.062 2.482-2.685 3.973-0.623 1.487-0.944 3.084-0.944 4.698s0.321 3.215 0.944 4.702c0.623 1.491 1.536 2.839 2.685 3.973s2.512 2.028 4.010 2.63zM322.065 404.292c-1.614 0.025-3.217-0.274-4.714-0.877s-2.861-1.495-4.010-2.63c-1.149-1.13-2.062-2.482-2.685-3.969-0.623-1.491-0.944-3.088-0.944-4.702s0.321-3.211 0.944-4.702c0.623-1.487 1.536-2.839 2.685-3.973 1.149-1.13 2.512-2.023 4.010-2.626s3.1-0.901 4.714-0.881h176.926c1.614-0.020 3.219 0.279 4.714 0.881 1.499 0.602 2.863 1.495 4.010 2.626 1.151 1.135 2.064 2.486 2.687 3.973 0.623 1.491 0.942 3.088 0.942 4.702s-0.319 3.211-0.942 4.702c-0.623 1.487-1.536 2.839-2.687 3.969-1.147 1.135-2.511 2.028-4.010 2.63-1.495 0.602-3.101 0.901-4.714 0.877h-176.926zM317.351 279.675c1.497 0.602 3.1 0.901 4.714 0.877h202.71c1.618 0.025 3.219-0.274 4.714-0.877 1.499-0.602 2.863-1.495 4.010-2.63 1.151-1.13 2.064-2.482 2.687-3.969 0.623-1.491 0.942-3.088 0.942-4.702s-0.319-3.211-0.942-4.702c-0.623-1.487-1.536-2.839-2.687-3.973-1.147-1.13-2.511-2.023-4.010-2.626-1.495-0.602-3.097-0.901-4.714-0.877h-202.71c-1.614-0.025-3.217 0.274-4.714 0.877s-2.861 1.495-4.010 2.626c-1.149 1.135-2.062 2.486-2.685 3.973-0.623 1.491-0.944 3.088-0.944 4.702s0.321 3.211 0.944 4.702c0.623 1.487 1.536 2.839 2.685 3.969 1.149 1.135 2.512 2.028 4.010 2.63z" />
38
+ <glyph unicode="&#xe91c;" glyph-name="fill" horiz-adv-x="983" d="M597.975 623.171l-540.497-540.497c-10.646-10.646-16.518-24.814-16.518-39.879 0-15.081 5.854-29.233 16.518-39.879 10.646-10.646 24.814-16.519 39.879-16.519 15.083 0 29.233 5.857 39.879 16.519l540.517 540.516c21.959 21.98 21.959 57.739 0 79.72-21.311 21.328-58.466 21.366-79.778 0.018zM110.202 29.929c-6.842-6.84-18.812-6.861-25.728 0.020-3.43 3.432-5.313 7.999-5.313 12.845 0 4.85 1.901 9.417 5.332 12.845l421.531 421.515 25.711-25.711-421.532-421.515zM650.719 570.447l-91.972-91.968-25.706 25.711 91.947 91.967c3.449 3.449 8.020 5.332 12.845 5.332 4.866 0 9.437-1.901 12.866-5.313 7.102-7.103 7.102-18.643 0.020-25.728zM730.456 491.344c-7.459 7.455-19.558 7.455-27.013 0-7.438-7.459-7.438-19.558 0-27.017l118.628-118.628c3.727-3.727 8.63-5.595 13.517-5.595 4.882 0 9.769 1.868 13.517 5.595 7.438 7.459 7.438 19.558 0 27.013l-118.649 118.632zM518.889 648.899c3.727-3.729 8.63-5.593 13.517-5.593 4.882 0 9.769 1.864 13.517 5.593 7.438 7.458 7.438 19.557 0 27.015l-118.649 118.629c-7.459 7.458-19.557 7.458-27.015 0-7.439-7.458-7.439-19.557 0-27.015l118.63-118.629zM922.989 589.202h-167.809c-10.535 0-19.091-8.557-19.091-19.091s8.557-19.091 19.091-19.091h167.809c10.535 0 19.091 8.557 19.091 19.091s-8.557 19.091-19.091 19.091zM326.375 551.001h167.791c10.535 0 19.091 8.558 19.091 19.091s-8.557 19.091-19.091 19.091h-167.791c-10.534 0-19.091-8.558-19.091-19.091s8.539-19.091 19.091-19.091zM716.939 643.287c4.887 0 9.769 1.864 13.517 5.593l118.649 118.629c7.438 7.457 7.438 19.557 0 27.014-7.459 7.458-19.558 7.458-27.013 0l-118.649-118.629c-7.438-7.457-7.438-19.557 0-27.014 3.711-3.729 8.614-5.593 13.496-5.593zM624.673 681.507c10.535 0 19.091 8.557 19.091 19.091l-0.020 167.792c0 10.534-8.557 19.091-19.091 19.091-10.531 0-19.087-8.557-19.087-19.091l0.016-167.792c-0.016-10.534 8.54-19.091 19.091-19.091zM624.673 458.699c-10.535 0-19.091-8.561-19.091-19.091v-167.793c0-10.535 8.557-19.091 19.091-19.091s19.091 8.557 19.091 19.091v167.793c0 10.531-8.557 19.091-19.091 19.091z" />
39
+ <glyph unicode="&#xe91d;" glyph-name="folder-library" d="M844.762 623.139h-52.54v35.028c0 13.935-5.534 27.299-15.39 37.152-9.852 9.853-23.215 15.389-37.15 15.389h-360.612l-47.287 47.463c-1.636 1.623-3.577 2.907-5.711 3.779s-4.419 1.313-6.724 1.3h-140.111c-13.935 0-27.299-5.536-37.152-15.389s-15.389-23.217-15.389-37.152v-525.415c0-13.935 5.536-27.298 15.389-37.154 9.853-9.852 23.218-15.386 37.152-15.386h665.525c13.935 0 27.302 5.534 37.154 15.386 9.852 9.856 15.39 23.219 15.39 37.154v385.305c0 13.935-5.538 27.299-15.39 37.152s-23.219 15.389-37.154 15.389zM161.723 710.708c0 4.645 1.845 9.1 5.13 12.384s7.739 5.129 12.384 5.129h132.93l47.287-47.462c1.637-1.623 3.578-2.907 5.711-3.779s4.419-1.313 6.723-1.3h367.793c4.642 0 9.097-1.845 12.382-5.13s5.129-7.739 5.129-12.384v-35.028h-595.47v87.569zM862.276 185.293c0-4.646-1.843-9.101-5.129-12.386-3.285-3.281-7.74-5.129-12.386-5.129h-665.525c-4.645 0-9.1 1.847-12.384 5.129-3.284 3.285-5.13 7.74-5.13 12.386v402.819h683.039c4.646 0 9.101-1.845 12.386-5.13s5.129-7.739 5.129-12.384v-385.305zM319.348 307.891h-105.083c-4.645 0-9.1-1.847-12.384-5.133-3.284-3.281-5.13-7.74-5.13-12.382v-70.054c0-4.646 1.845-9.101 5.13-12.386s7.739-5.129 12.384-5.129h105.083c4.645 0 9.1 1.843 12.384 5.129s5.13 7.74 5.13 12.386v70.054c0 4.642-1.845 9.101-5.13 12.382-3.284 3.285-7.739 5.133-12.384 5.133zM301.834 237.833h-70.055v35.029h70.055v-35.029zM371.889 307.891h140.111v-35.029h-140.111v35.029zM371.889 237.833h140.111v-35.025h-140.111v35.025z" />
40
+ <glyph unicode="&#xe91e;" glyph-name="folder-upload" d="M490.667 288.819c0-11.78 9.553-21.333 21.333-21.333s21.333 9.553 21.333 21.333v179.2l75.324-75.324c8.337-8.337 21.854-8.337 30.195 0 8.337 8.341 8.337 21.858 0 30.199l-126.852 126.849-125.21-125.21c-8.338-8.337-8.338-21.858 0-30.195s21.857-8.337 30.196 0l73.682 73.681v-179.2zM196.923 149.333c-19.637 0-36.034 6.579-49.19 19.733s-19.733 29.551-19.733 49.19v459.487c0 19.637 6.578 36.034 19.733 49.189s29.552 19.733 49.19 19.733h212.513l85.335-85.333h332.305c19.639 0 36.036-6.578 49.19-19.733s19.733-29.552 19.733-49.189v-374.154c0-19.639-6.579-36.036-19.733-49.19s-29.551-19.733-49.19-19.733h-630.153zM196.923 192h630.153c7.659 0 13.948 2.462 18.871 7.386s7.386 11.213 7.386 18.871v374.154c0 7.658-2.462 13.948-7.386 18.871s-11.213 7.384-18.871 7.384h-349.457l-85.332 85.333h-195.364c-7.658 0-13.949-2.461-18.871-7.384s-7.385-11.214-7.385-18.871v-459.487c0-7.659 2.461-13.948 7.385-18.871s11.213-7.386 18.871-7.386z" />
41
+ <glyph unicode="&#xe91f;" glyph-name="format-align" d="M220.948 120.32c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 273.92c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 427.52c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 581.12c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 734.72c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399z" />
42
+ <glyph unicode="&#xe920;" glyph-name="format-aligncenter" d="M220.948 120.32c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM384.788 273.92c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h286.719c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-286.719zM220.948 427.52c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM384.788 581.12c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h286.719c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-286.719zM220.948 734.72c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399z" />
43
+ <glyph unicode="&#xe921;" glyph-name="format-alignleft" d="M220.948 120.32c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 273.92c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h368.639c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-368.639zM220.948 427.52c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 581.12c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h368.639c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-368.639zM220.948 734.72c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399z" />
44
+ <glyph unicode="&#xe922;" glyph-name="format-alignright" d="M220.948 734.72c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM466.706 581.12c-11.309 0-20.48 9.169-20.48 20.48s9.171 20.48 20.48 20.48h368.64c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-368.64zM220.948 427.52c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM466.706 273.92c-11.309 0-20.48 9.171-20.48 20.48s9.171 20.48 20.48 20.48h368.64c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-368.64zM220.948 120.32c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399z" />
45
+ <glyph unicode="&#xe923;" glyph-name="format-bold" d="M359.268 192v512h171.955c39.121 0 73.646-12.34 103.58-37.022s44.9-56.793 44.9-96.335c0-26.413-6.935-49.534-20.795-69.354-13.865-19.825-31.035-34.357-51.515-43.602 24.941-6.984 46.117-21.635 63.525-43.954 17.408-22.315 26.112-49.23 26.112-80.736 0-43.954-16.409-78.442-49.23-103.465s-68.948-37.532-108.384-37.532h-180.147zM411.492 240.521h125.399c31.719 0 57.332 9.544 76.841 28.631 19.509 19.091 29.262 41.316 29.262 66.679 0 25.367-9.753 47.591-29.262 66.679s-45.359 28.631-77.55 28.631h-124.69v-190.62zM411.492 478.72h117.285c27.255 0 50.336 8.43 69.239 25.285 18.907 16.859 28.357 37.967 28.357 63.33 0 25.837-9.609 47.026-28.828 63.567-19.223 16.542-41.984 24.813-68.293 24.813h-117.76v-176.994z" />
46
+ <glyph unicode="&#xe924;" glyph-name="format-bulleted" d="M450.953 181.76c-11.309 0-20.48 9.171-20.48 20.48s9.171 20.48 20.48 20.48h384.393c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-384.393zM450.953 427.52c-11.309 0-20.48 9.171-20.48 20.48s9.171 20.48 20.48 20.48h384.393c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-384.393zM450.953 673.28c-11.309 0-20.48 9.169-20.48 20.48s9.171 20.48 20.48 20.48h384.393c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-384.393zM254.818 147.89c-14.946 0-27.741 5.321-38.386 15.962-10.643 10.646-15.965 23.441-15.965 38.388s5.322 27.742 15.965 38.384c10.644 10.646 23.439 15.966 38.386 15.966s27.741-5.321 38.386-15.966c10.643-10.641 15.965-23.437 15.965-38.384s-5.322-27.742-15.965-38.388c-10.644-10.641-23.439-15.962-38.386-15.962zM254.818 393.65c-14.946 0-27.741 5.321-38.386 15.962-10.643 10.646-15.965 23.441-15.965 38.388s5.322 27.742 15.965 38.384c10.644 10.646 23.439 15.966 38.386 15.966s27.741-5.321 38.386-15.966c10.643-10.641 15.965-23.437 15.965-38.384s-5.322-27.742-15.965-38.388c-10.644-10.641-23.439-15.962-38.386-15.962zM254.818 639.409c-14.946 0-27.741 5.322-38.386 15.965s-15.965 23.439-15.965 38.386c0 14.946 5.322 27.742 15.965 38.386s23.439 15.965 38.386 15.965c14.946 0 27.741-5.322 38.386-15.965s15.965-23.439 15.965-38.386c0-14.946-5.322-27.741-15.965-38.386s-23.439-15.965-38.386-15.965z" />
47
+ <glyph unicode="&#xe925;" glyph-name="format-colortext" horiz-adv-x="1067" d="M244.513-64c-40.784 0-73.846 33.062-73.846 73.847v0c0 40.785 33.062 73.843 73.846 73.843h620.306c40.785 0 73.847-33.058 73.847-73.843v0c0-40.785-33.062-73.847-73.847-73.847h-620.306zM308.513 234.667l225.639 554.667h41.028l225.638-554.667h-51.529l-61.538 155.238h-268.963l-62.030-155.238h-48.246zM433.886 430.933h238.276l-115.362 290.133h-5.905l-117.009-290.133z" />
48
+ <glyph unicode="&#xe926;" glyph-name="format-italic" d="M309.563 192c-12.616 0-22.843 10.228-22.843 22.843s10.227 22.843 22.843 22.843h126.030l142.574 420.626h-126.030c-12.616 0-22.843 10.227-22.843 22.843s10.228 22.843 22.843 22.843h294.597c12.616 0 22.843-10.227 22.843-22.843s-10.228-22.843-22.843-22.843h-121.307l-142.569-420.626h121.303c12.616 0 22.843-10.228 22.843-22.843s-10.228-22.843-22.843-22.843h-294.597z" />
49
+ <glyph unicode="&#xe927;" glyph-name="format-numbered" d="M200.468 79.36v36.233h102.4v55.927h-61.44v36.233h61.44v55.927h-102.4v36.233h110.277c8.034 0 14.769-2.716 20.204-8.151s8.153-12.173 8.153-20.206v-56.713c0-8.036-2.718-14.77-8.153-20.206s-12.17-8.151-20.204-8.151c8.034 0 14.769-2.72 20.204-8.155s8.153-12.169 8.153-20.201v-50.414c0-8.032-2.718-14.77-8.153-20.206s-12.17-8.151-20.204-8.151h-110.277zM200.468 337.723v100.037c0 8.032 2.717 14.77 8.152 20.206s12.17 8.151 20.205 8.151h74.043v55.927h-102.4v36.233h110.277c8.034 0 14.769-2.717 20.204-8.152s8.153-12.17 8.153-20.205v-71.68c0-8.032-2.718-14.77-8.153-20.206s-12.17-8.151-20.204-8.151h-74.043v-55.927h102.4v-36.233h-138.634zM261.908 596.086v184.32h-61.44v36.234h97.674v-220.554h-36.234zM450.953 181.76c-11.309 0-20.48 9.171-20.48 20.48s9.171 20.48 20.48 20.48h384.393c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-384.393zM450.953 427.52c-11.309 0-20.48 9.171-20.48 20.48s9.171 20.48 20.48 20.48h384.393c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-384.393zM450.953 673.28c-11.309 0-20.48 9.169-20.48 20.48s9.171 20.48 20.48 20.48h384.393c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-384.393z" />
50
+ <glyph unicode="&#xe928;" glyph-name="format-underlined" d="M290.263 132.137c-11.311 0-20.48 9.167-20.48 20.48 0 11.309 9.169 20.48 20.48 20.48h475.767c11.309 0 20.48-9.171 20.48-20.48 0-11.313-9.171-20.48-20.48-20.48h-475.767zM528.146 262.894c-58.446 0-104.292 17.17-137.532 51.515-33.241 34.341-49.861 80.974-49.861 139.891v286.368c0 12.811 10.386 23.198 23.198 23.198s23.198-10.386 23.198-23.198v-287.785c0-44.528 12.445-79.79 37.335-105.787 24.891-25.993 59.445-38.99 103.662-38.99s78.77 12.997 103.662 38.99c24.887 25.997 37.335 61.26 37.335 105.787v287.785c0 12.811 10.387 23.198 23.196 23.198 12.812 0 23.2-10.386 23.2-23.198v-286.368c0-58.917-16.622-105.55-49.861-139.891-33.243-34.345-79.086-51.515-137.531-51.515z" />
51
+ <glyph unicode="&#xe929;" glyph-name="header" d="M272.123 120.32c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v523.028c0 18.852 6.315 34.592 18.944 47.222s28.37 18.944 47.222 18.944h523.029c18.85 0 34.591-6.315 47.223-18.944 12.628-12.629 18.944-28.37 18.944-47.222v-523.028c0-18.854-6.316-34.595-18.944-47.223-12.632-12.628-28.373-18.944-47.223-18.944h-523.029zM246.918 611.84h573.442v97.674c0 6.301-2.626 12.077-7.877 17.329-5.255 5.251-11.031 7.877-17.33 7.877h-523.029c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-97.674zM820.359 570.88h-573.442v-384.393c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877h523.029c6.3 0 12.075 2.626 17.33 7.877 5.251 5.251 7.877 11.026 7.877 17.33v384.393z" />
52
+ <glyph unicode="&#xe92a;" glyph-name="headers-footers" d="M253.243 284.164c-18.852 0-34.592 6.316-47.222 18.944-12.629 12.632-18.944 28.373-18.944 47.223v195.349c0 18.852 6.315 34.592 18.944 47.222s28.37 18.944 47.222 18.944h523.026c18.854 0 34.595-6.315 47.223-18.944 12.632-12.629 18.944-28.37 18.944-47.222v-195.349c0-18.85-6.312-34.591-18.944-47.223-12.628-12.628-28.369-18.944-47.223-18.944h-523.026zM253.243 325.124h523.026c6.304 0 12.079 2.626 17.33 7.877 5.251 5.255 7.877 11.031 7.877 17.33v195.349c0 6.301-2.626 12.077-7.877 17.329s-11.026 7.877-17.33 7.877h-523.026c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-195.349c0-6.3 2.626-12.075 7.877-17.33 5.252-5.251 11.028-7.877 17.329-7.877zM207.557 709.52c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM207.557 145.531c-11.311 0-20.48 9.171-20.48 20.48 0 11.313 9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.167 20.48-20.48 0-11.309-9.167-20.48-20.48-20.48h-614.399z" />
53
+ <glyph unicode="&#xe92b;" glyph-name="image" d="M266.633 120.32c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v523.028c0 18.852 6.314 34.592 18.944 47.222s28.37 18.944 47.222 18.944h523.031c18.85 0 34.591-6.315 47.219-18.944 12.632-12.629 18.944-28.37 18.944-47.222v-523.028c0-18.854-6.312-34.595-18.944-47.223-12.628-12.628-28.369-18.944-47.219-18.944h-523.031zM266.633 161.28h523.031c6.3 0 12.075 2.626 17.326 7.877s7.877 11.026 7.877 17.33v523.028c0 6.301-2.626 12.077-7.877 17.329s-11.026 7.877-17.326 7.877h-523.031c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-523.028c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877zM343.828 263.68h374.943l-115.79 154.386-107.127-135.483-71.68 86.647-80.346-105.55z" />
54
+ <glyph unicode="&#xe92c;" glyph-name="input" d="M302.311 290.345c-10.451 0-18.924 8.475-18.924 18.924 0 10.453 8.472 18.924 18.924 18.924h27.961v249.447h-27.961c-10.451 0-18.924 8.472-18.924 18.924s8.472 18.924 18.924 18.924h106.086c10.451 0 18.922-8.472 18.922-18.924s-8.471-18.924-18.922-18.924h-28.002v-249.447h28.002c10.451 0 18.922-8.471 18.922-18.924 0-10.449-8.471-18.924-18.922-18.924h-106.086zM840.016 719.146c22.622 0 40.96-18.338 40.96-40.96v-450.559c0-22.622-18.338-40.96-40.96-40.96h-614.398c-22.621 0-40.96 18.338-40.96 40.96v450.559c0 22.622 18.338 40.96 40.96 40.96h614.398zM225.618 760.106c-45.243 0-81.92-36.677-81.92-81.92v-450.559c0-45.244 36.677-81.92 81.92-81.92h614.398c45.244 0 81.92 36.676 81.92 81.92v450.559c0 45.243-36.676 81.92-81.92 81.92h-614.398z" />
55
+ <glyph unicode="&#xe92d;" glyph-name="insert" horiz-adv-x="983" d="M506.536 451.957h210.264c3.981 0 7.803-1.581 10.617-4.399 2.818-2.814 4.399-6.636 4.399-10.617 0-3.985-1.581-7.803-4.399-10.621-2.814-2.818-6.636-4.399-10.617-4.399h-210.264v-210.26c0-3.985-1.581-7.803-4.399-10.621-2.814-2.818-6.636-4.399-10.617-4.399-3.985 0-7.803 1.581-10.621 4.399s-4.399 6.636-4.399 10.621v210.26h-210.261c-3.983 0-7.803 1.581-10.62 4.399s-4.399 6.636-4.399 10.621c0 3.981 1.582 7.803 4.399 10.617 2.817 2.818 6.637 4.399 10.62 4.399h210.261v210.263c0 3.983 1.581 7.803 4.399 10.62s6.636 4.399 10.621 4.399c3.981 0 7.803-1.582 10.617-4.399 2.818-2.817 4.399-6.637 4.399-10.62v-210.263zM241.202 811.567c74.094 49.508 161.205 75.933 250.318 75.933 119.374-0.396 233.746-47.992 318.157-132.403s132.006-198.783 132.403-318.156c0-89.113-26.423-176.222-75.932-250.319-49.508-74.093-119.878-131.842-202.207-165.945s-172.921-43.024-260.321-25.641c-87.4 17.388-167.682 60.297-230.694 123.31s-105.924 143.294-123.308 230.695c-17.385 87.4-8.462 177.992 25.639 260.321s91.851 152.697 165.945 202.205zM257.89 87.29c69.154-46.211 150.458-70.873 233.63-70.873 111.407 0.397 218.141 44.827 296.919 123.605 78.774 78.778 123.208 185.512 123.605 296.919 0 83.169-24.666 164.474-70.873 233.629s-111.882 123.054-188.723 154.882c-76.841 31.828-161.395 40.156-242.967 23.93s-156.504-56.277-215.315-115.088c-58.811-58.811-98.862-133.741-115.088-215.315-16.226-81.572-7.898-166.126 23.93-242.967s85.728-142.516 154.882-188.723z" />
56
+ <glyph unicode="&#xe92e;" glyph-name="layout" horiz-adv-x="983" d="M427.901 369.787h-286.915c-9.67 0-17.907 8.237-17.907 17.908v0.717c-0.299 10.809-0.199 21.656-0.1 32.489 0.050 5.411 0.1 10.822 0.1 16.22v349.995c0 9.67 8.237 17.907 17.907 17.907h288.307c9.671 0 17.908-8.237 17.908-17.907v-0.716c0.299-10.807 0.197-21.658 0.098-32.492-0.049-5.41-0.098-10.818-0.098-16.216v-349.998c0.446-9.671-8.507-17.908-17.908-17.908-0.467-0.020-0.934-0.020-1.393 0zM411.185 405.602c0.008 5.1 0.053 10.199 0.102 15.299 0.049 5.411 0.098 10.822 0.098 16.22v332.088h-252.175c-0.009-5.098-0.084-10.199-0.159-15.297-0.079-5.412-0.159-10.82-0.159-16.219v-332.090h252.292zM427.901 68.948h-286.914c-9.67 0-17.907 8.237-17.907 17.908v175.489c0 9.671 8.237 17.908 17.907 17.908h288.306c9.671 0 17.908-8.237 17.908-17.908v-175.489c0.446-9.671-8.507-17.908-17.908-17.908-0.467-0.020-0.934-0.020-1.393 0zM411.386 104.763v139.674h-252.491v-139.674h252.491zM842.056 504.091h-288.309c-9.671 0-17.908-8.237-17.908-17.904v-349.999c0-5.399-0.049-10.805-0.098-16.22-0.098-10.83-0.201-21.68 0.098-32.485v-0.717c0-9.671 8.237-17.908 17.908-17.908h288.309c9.667 0 17.904 8.237 17.904 17.908v349.995c0 5.394 0.053 10.801 0.102 16.208 0.098 10.707 0.197 21.434-0.090 32.113 0.008 0.365 0.008 0.733-0.012 1.106 0 9.4-8.237 18.354-17.904 17.904zM824.148 468.279v-332.091c0-5.399-0.082-10.805-0.16-16.22-0.074-5.095-0.152-10.199-0.16-15.294h-252.174v332.087c0 5.399 0.082 10.805 0.16 16.216 0.074 5.095 0.152 10.207 0.16 15.303h252.174zM842.056 804.934c9.671 0.448 17.908-8.506 17.908-17.907 0.020-0.468 0.020-0.932 0-1.393v-174.098c0-9.67-8.237-17.907-17.908-17.907h-288.309c-9.667 0-17.904 8.237-17.904 17.907v175.491c0 9.67 8.237 17.907 17.904 17.907h288.309zM824.148 769.12h-252.494v-139.676h252.494v139.676z" />
57
+ <glyph unicode="&#xe92f;" glyph-name="library-tab" d="M917.266 58.888h40.96c5.431 0 10.641-2.159 14.483-6.001 3.838-3.838 5.997-9.048 5.997-14.479s-2.159-10.641-5.997-14.483c-3.842-3.838-9.052-5.997-14.483-5.997h-860.159c-5.432 0-10.641 2.159-14.482 5.997-3.841 3.842-5.998 9.052-5.998 14.483s2.157 10.641 5.998 14.479c3.841 3.842 9.050 6.001 14.482 6.001h40.96v716.799c0 5.432 2.157 10.641 5.998 14.482s9.050 5.998 14.482 5.998h225.28v61.44c0 5.432 2.157 10.641 5.998 14.482s9.050 5.998 14.482 5.998h245.759c5.431 0 10.641-2.158 14.483-5.998 3.838-3.841 5.997-9.050 5.997-14.482v-61.44h225.28c5.431 0 10.641-2.158 14.483-5.998 3.838-3.841 5.997-9.050 5.997-14.482v-716.799zM384.788 755.207h-204.8v-696.319h204.8v696.319zM425.746 837.127v-778.239h204.8v778.239h-204.8zM671.506 755.207v-696.319h204.8v696.319h-204.8zM487.186 755.207h81.92c5.431 0 10.641-2.158 14.483-5.998 3.838-3.841 5.997-9.050 5.997-14.482v-368.639c0-5.431-2.159-10.641-5.997-14.483-3.842-3.838-9.052-5.997-14.483-5.997h-81.92c-5.431 0-10.641 2.159-14.479 5.997-3.842 3.842-6.001 9.052-6.001 14.483v368.639c0 5.432 2.159 10.641 6.001 14.482 3.838 3.84 9.048 5.998 14.479 5.998zM507.666 386.568h40.96v327.679h-40.96v-327.679zM487.186 263.688h81.92c5.431 0 10.641-2.159 14.483-6.001 3.838-3.838 5.997-9.048 5.997-14.479s-2.159-10.641-5.997-14.483c-3.842-3.838-9.052-5.997-14.483-5.997h-81.92c-5.431 0-10.641 2.159-14.479 5.997-3.842 3.842-6.001 9.052-6.001 14.483s2.159 10.641 6.001 14.479c3.838 3.842 9.048 6.001 14.479 6.001zM487.186 161.288h81.92c5.431 0 10.641-2.159 14.483-6.001 3.838-3.838 5.997-9.048 5.997-14.479s-2.159-10.641-5.997-14.483c-3.842-3.838-9.052-5.997-14.483-5.997h-81.92c-5.431 0-10.641 2.159-14.479 5.997-3.842 3.842-6.001 9.052-6.001 14.483s2.159 10.641 6.001 14.479c3.838 3.842 9.048 6.001 14.479 6.001zM732.946 652.807h81.92c5.431 0 10.641-2.158 14.483-5.998 3.838-3.841 5.997-9.050 5.997-14.482s-2.159-10.641-5.997-14.481c-3.842-3.841-9.052-5.999-14.483-5.999h-81.92c-5.431 0-10.641 2.158-14.479 5.999-3.842 3.841-6.001 9.050-6.001 14.481s2.159 10.641 6.001 14.482c3.838 3.84 9.048 5.998 14.479 5.998zM732.946 509.448h81.92c5.431 0 10.641-2.159 14.483-6.001 3.838-3.838 5.997-9.048 5.997-14.479s-2.159-10.641-5.997-14.483c-3.842-3.838-9.052-5.997-14.483-5.997h-81.92c-5.431 0-10.641 2.159-14.479 5.997-3.842 3.842-6.001 9.052-6.001 14.483s2.159 10.641 6.001 14.479c3.838 3.842 9.048 6.001 14.479 6.001zM732.946 345.608h81.92c5.431 0 10.641-2.159 14.483-6.001 3.838-3.838 5.997-9.048 5.997-14.479s-2.159-10.641-5.997-14.483c-3.842-3.838-9.052-5.997-14.483-5.997h-81.92c-5.431 0-10.641 2.159-14.479 5.997-3.842 3.842-6.001 9.052-6.001 14.483s2.159 10.641 6.001 14.479c3.838 3.842 9.048 6.001 14.479 6.001zM732.946 202.248h81.92c5.431 0 10.641-2.159 14.483-6.001 3.838-3.838 5.997-9.048 5.997-14.479s-2.159-10.641-5.997-14.483c-3.842-3.838-9.052-5.997-14.483-5.997h-81.92c-5.431 0-10.641 2.159-14.479 5.997-3.842 3.842-6.001 9.052-6.001 14.483s2.159 10.641 6.001 14.479c3.838 3.842 9.048 6.001 14.479 6.001zM308.866 667.289c3.841 3.84 9.050 5.998 14.482 5.998s10.641-2.158 14.481-5.998c3.841-3.841 5.999-9.050 5.999-14.482v-327.679c0-5.431-2.158-10.641-5.999-14.483-3.841-3.838-9.050-5.997-14.481-5.997s-10.641 2.159-14.482 5.997c-3.841 3.842-5.998 9.052-5.998 14.483v327.679c0 5.432 2.157 10.641 5.998 14.482zM226.946 667.289c3.841 3.84 9.050 5.998 14.482 5.998s10.641-2.158 14.481-5.998c3.841-3.841 5.999-9.050 5.999-14.482v-409.599c0-5.431-2.158-10.641-5.999-14.483-3.841-3.838-9.050-5.997-14.481-5.997s-10.641 2.159-14.482 5.997c-3.841 3.842-5.998 9.052-5.998 14.483v409.599c0 5.432 2.157 10.641 5.998 14.482z" />
58
+ <glyph unicode="&#xe930;" glyph-name="link-highlighter" d="M159.508-43.52c-22.622 0-40.96 18.338-40.96 40.96s18.338 40.96 40.96 40.96h737.279c22.622 0 40.96-18.338 40.96-40.96s-18.338-40.96-40.96-40.96h-737.279zM610.226 436.183l-106.496 106.498-159.115-159.115c-4.726-4.727-7.089-10.502-7.089-17.33 0-6.824 2.363-12.599 7.089-17.326l71.604-71.84c4.723-4.727 10.502-7.090 17.326-7.090 6.828 0 12.603 2.363 17.33 7.090l159.351 159.113zM489.472 586.398l164.471-164.473-173.842-174.080c-13.234-13.23-28.713-19.849-46.436-19.849s-33.201 6.619-46.434 19.849l-7.877 7.881-47.34-46.395h-113.428l103.818 103.58-6.302 6.304c-13.233 13.23-19.929 28.787-20.086 46.67-0.158 17.879 6.38 33.436 19.612 46.67l173.844 173.844zM489.472 586.398l200.942 200.94c13.23 13.234 28.709 19.85 46.432 19.85s33.202-6.617 46.436-19.85l71.836-71.601c13.234-13.234 19.853-28.712 19.853-46.436s-6.619-33.201-19.853-46.434l-201.175-200.942-164.471 164.473z" />
59
+ <glyph unicode="&#xe931;" glyph-name="link-off" d="M296.701 777.501c-6.964 8.913-19.834 10.494-28.747 3.53s-10.494-19.834-3.53-28.747l495.179-633.799c6.963-8.913 19.833-10.494 28.746-3.531s10.494 19.833 3.531 28.746l-495.179 633.802zM351.542 578.954c2.22 2.225 4.498 4.378 6.831 6.459l25.29-32.369c-1.061-0.989-2.105-1.999-3.133-3.029l-149.999-150.029c-22.678-22.68-35.418-53.436-35.418-85.508s12.74-62.829 35.418-85.508c22.678-22.675 53.436-35.418 85.507-35.418s62.829 12.743 85.507 35.418l29.285 29.286c7.999 7.999 20.967 7.999 28.963 0 7.999-7.995 7.999-20.963 0-28.963l-29.286-29.286c-30.358-30.36-71.534-47.415-114.468-47.415s-84.111 17.056-114.47 47.415c-30.359 30.36-47.415 71.537-47.415 114.471s17.055 84.107 47.414 114.467l0.001 0.004 149.975 150.005zM586.22 478.814c1.016-8.573 1.102-17.162 0.295-25.633l32.551-41.66c7.963 22.942 10.732 47.583 7.832 72.106-4.788 40.473-24.67 77.654-55.673 104.113-30.999 26.459-70.84 40.251-111.567 38.62-2.687-0.108-5.37-0.282-8.036-0.522l32.551-41.661c22.184-3.347 43.168-12.83 60.461-27.593 23.159-19.764 38.011-47.538 41.587-77.77zM470.094 409.473c-1.282 10.822-1.081 21.676 0.52 32.276l-31.445 40.251c-9.425-24.408-12.874-50.942-9.753-77.337 4.784-40.473 24.658-77.652 55.652-104.112s70.828-40.26 111.546-38.638c4.575 0.18 9.122 0.557 13.627 1.118l-31.445 40.251c-24.637 2.327-48.116 12.182-67.133 28.418-23.151 19.767-37.999 47.538-41.57 77.771zM676.073 338.551l25.371-32.469c1.11 1.053 2.212 2.126 3.297 3.211l149.971 149.971c30.36 30.36 47.415 71.536 47.415 114.471s-17.056 84.111-47.415 114.47c-30.36 30.36-71.533 47.415-114.471 47.415-42.934 0-84.107-17.056-114.467-47.415l-23.568-23.567c-7.999-7.998-7.999-20.965 0-28.963s20.963-7.998 28.963 0l23.568 23.567c22.675 22.678 53.436 35.418 85.504 35.418 32.072 0 62.833-12.74 85.508-35.418 22.68-22.678 35.418-53.436 35.418-85.507s-12.739-62.829-35.418-85.508l-149.676-149.676z" />
60
+ <glyph unicode="&#xe932;" glyph-name="link-on" d="M654.742 659.238c22.68 22.678 53.436 35.418 85.508 35.418s62.829-12.741 85.504-35.418c22.68-22.678 35.418-53.436 35.418-85.507s-12.739-62.828-35.418-85.508l-149.991-149.996c-21.508-21.541-50.352-34.181-80.769-35.389-30.417-1.212-60.174 9.097-83.325 28.86-23.151 19.767-37.999 47.538-41.57 77.771-3.576 30.228 4.383 60.699 22.286 85.316 6.652 9.15 4.633 21.959-4.518 28.611-9.146 6.651-21.955 4.628-28.606-4.518-23.97-32.961-34.623-73.748-29.839-114.221 4.784-40.468 24.658-77.648 55.652-104.108s70.828-40.26 111.55-38.638c40.718 1.618 79.331 18.538 108.122 47.378l149.971 149.971c30.36 30.36 47.415 71.536 47.415 114.471s-17.056 84.111-47.415 114.47c-30.36 30.36-71.533 47.415-114.467 47.415s-84.111-17.056-114.471-47.415l-23.568-23.567c-7.995-7.998-7.995-20.965 0-28.963 7.999-7.998 20.967-7.998 28.963 0l23.568 23.568zM461.3 585.429c30.421 1.218 60.183-9.084 83.341-28.849 23.155-19.764 38.007-47.537 41.583-77.77 3.576-30.237-4.383-60.707-22.286-85.328-6.652-9.15-4.628-21.959 4.518-28.611s21.955-4.628 28.606 4.518c23.974 32.965 34.628 73.757 29.839 114.233-4.788 40.473-24.67 77.654-55.673 104.113-30.999 26.459-70.84 40.251-111.567 38.62-40.718-1.63-79.328-18.559-108.114-47.406l-149.976-150.008c-30.358-30.36-47.414-71.533-47.414-114.467s17.056-84.111 47.415-114.471c30.36-30.36 71.535-47.415 114.47-47.415s84.111 17.056 114.472 47.415l29.286 29.286c7.995 7.999 7.995 20.963 0 28.963-7.999 7.999-20.967 7.999-28.963 0l-29.288-29.286c-22.678-22.68-53.436-35.418-85.507-35.418s-62.829 12.739-85.507 35.418c-22.678 22.68-35.418 53.436-35.418 85.508s12.74 62.829 35.418 85.504l0.002 0.004 149.998 150.028c21.504 21.552 50.344 34.2 80.765 35.418z" />
61
+ <glyph unicode="&#xe933;" glyph-name="log-tab" d="M876.306 755.207h-20.48v40.96c0 16.295-6.472 31.923-17.994 43.445s-27.148 17.995-43.446 17.995h-532.479c-16.295 0-31.922-6.473-43.445-17.995s-17.995-27.15-17.995-43.445v-40.96h-20.48c-16.295 0-31.922-6.473-43.445-17.995s-17.995-27.15-17.995-43.445v-81.92c0-5.432 2.158-10.641 5.999-14.481s9.050-5.999 14.481-5.999c5.432 0 10.641 2.158 14.481 5.999s5.999 9.050 5.999 14.481v81.92c0 5.432 2.158 10.641 5.999 14.482s9.050 5.998 14.481 5.998h20.48v-532.479c0-16.294 6.473-31.924 17.995-43.446s27.15-17.994 43.445-17.994h532.479c16.298 0 31.924 6.472 43.446 17.994s17.994 27.152 17.994 43.446v532.479h20.48c5.431 0 10.641-2.158 14.483-5.998s5.997-9.050 5.997-14.482v-593.919c0-5.431-2.154-10.641-5.997-14.483-3.842-3.838-9.052-5.997-14.483-5.997h-696.319c-5.432 0-10.641 2.159-14.481 5.997-3.841 3.842-5.999 9.052-5.999 14.483v511.999c-20.48 0-40.96 0-40.96 0v-511.999c0-16.294 6.473-31.924 17.995-43.446s27.15-17.994 43.445-17.994h696.319c16.298 0 31.924 6.472 43.446 17.994s17.994 27.152 17.994 43.446v593.919c0 16.295-6.472 31.923-17.994 43.445s-27.148 17.995-43.446 17.995zM261.908 161.288c-5.432 0-10.641 2.159-14.481 5.997-3.841 3.842-5.999 9.052-5.999 14.483v614.399c0 5.432 2.158 10.641 5.999 14.482s9.050 5.998 14.481 5.998h245.759v-655.359h-245.759zM814.866 181.768c0-5.431-2.154-10.641-5.997-14.483-3.842-3.838-9.052-5.997-14.483-5.997h-245.76v655.359h245.76c5.431 0 10.641-2.158 14.483-5.998s5.997-9.050 5.997-14.482v-614.399zM466.706 734.727c0-5.432-2.154-10.641-5.997-14.481s-9.052-5.999-14.483-5.999h-143.359c-5.432 0-10.641 2.158-14.481 5.999s-5.999 9.050-5.999 14.481c0 5.432 2.158 10.641 5.999 14.482s9.050 5.998 14.481 5.998h143.359c5.431 0 10.641-2.158 14.483-5.998s5.997-9.050 5.997-14.482zM466.706 632.327c0-5.432-2.154-10.641-5.997-14.481s-9.052-5.999-14.483-5.999h-143.359c-5.432 0-10.641 2.158-14.481 5.999s-5.999 9.050-5.999 14.481c0 5.432 2.158 10.641 5.999 14.482s9.050 5.998 14.481 5.998h143.359c5.431 0 10.641-2.158 14.483-5.998s5.997-9.050 5.997-14.482zM466.706 529.927c0-5.43-2.154-10.641-5.997-14.483-3.842-3.838-9.052-5.997-14.483-5.997h-143.359c-5.432 0-10.641 2.159-14.481 5.997-3.841 3.842-5.999 9.052-5.999 14.483 0 5.432 2.158 10.641 5.999 14.482s9.050 5.998 14.481 5.998h143.359c5.431 0 10.641-2.158 14.483-5.998s5.997-9.050 5.997-14.482zM466.706 427.528c0-5.431-2.154-10.641-5.997-14.483-3.842-3.838-9.052-5.997-14.483-5.997h-143.359c-5.432 0-10.641 2.159-14.481 5.997-3.841 3.842-5.999 9.052-5.999 14.483s2.158 10.641 5.999 14.479c3.841 3.842 9.050 6.001 14.481 6.001h143.359c5.431 0 10.641-2.159 14.483-6.001 3.842-3.838 5.997-9.048 5.997-14.479zM773.906 734.727c0-5.432-2.154-10.641-5.997-14.481s-9.052-5.999-14.483-5.999h-143.36c-5.431 0-10.641 2.158-14.479 5.999-3.842 3.841-6.001 9.050-6.001 14.481s2.159 10.641 6.001 14.482c3.838 3.84 9.048 5.998 14.479 5.998h143.36c5.431 0 10.641-2.158 14.483-5.998s5.997-9.050 5.997-14.482zM773.906 632.327c0-5.432-2.154-10.641-5.997-14.481s-9.052-5.999-14.483-5.999h-143.36c-5.431 0-10.641 2.158-14.479 5.999-3.842 3.841-6.001 9.050-6.001 14.481s2.159 10.641 6.001 14.482c3.838 3.84 9.048 5.998 14.479 5.998h143.36c5.431 0 10.641-2.158 14.483-5.998s5.997-9.050 5.997-14.482zM773.906 529.927c0-5.43-2.154-10.641-5.997-14.483-3.842-3.838-9.052-5.997-14.483-5.997h-143.36c-5.431 0-10.641 2.159-14.479 5.997-3.842 3.842-6.001 9.052-6.001 14.483 0 5.432 2.159 10.641 6.001 14.482 3.838 3.84 9.048 5.998 14.479 5.998h143.36c5.431 0 10.641-2.158 14.483-5.998s5.997-9.050 5.997-14.482zM773.906 427.528c0-5.431-2.154-10.641-5.997-14.483-3.842-3.838-9.052-5.997-14.483-5.997h-143.36c-5.431 0-10.641 2.159-14.479 5.997-3.842 3.842-6.001 9.052-6.001 14.483s2.159 10.641 6.001 14.479c3.838 3.842 9.048 6.001 14.479 6.001h143.36c5.431 0 10.641-2.159 14.483-6.001 3.842-3.838 5.997-9.048 5.997-14.479z" />
62
+ <glyph unicode="&#xe934;" glyph-name="more-vert" d="M512 101.15c-14.588 0-27.076 5.193-37.466 15.582s-15.582 22.878-15.582 37.466c0 14.588 5.193 27.076 15.582 37.466s22.878 15.582 37.466 15.582c14.588 0 27.076-5.193 37.466-15.582s15.582-22.878 15.582-37.466c0-14.588-5.193-27.076-15.582-37.466s-22.878-15.582-37.466-15.582zM512 394.953c-14.588 0-27.076 5.193-37.466 15.582s-15.582 22.878-15.582 37.466c0 14.588 5.193 27.076 15.582 37.466s22.878 15.582 37.466 15.582c14.588 0 27.076-5.193 37.466-15.582s15.582-22.878 15.582-37.466c0-14.588-5.193-27.076-15.582-37.466s-22.878-15.582-37.466-15.582zM512 688.755c-14.588 0-27.076 5.194-37.466 15.583s-15.582 22.877-15.582 37.466c0 14.588 5.193 27.076 15.582 37.465s22.878 15.583 37.466 15.583c14.588 0 27.076-5.194 37.466-15.583s15.582-22.877 15.582-37.465c0-14.589-5.193-27.078-15.582-37.466s-22.878-15.583-37.466-15.583z" />
63
+ <glyph unicode="&#xe935;" glyph-name="open-from" d="M225.673 161.28c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v441.108c0 18.852 6.314 34.592 18.944 47.222s28.37 18.944 47.222 18.944h204.014l81.92-81.92h319.017c18.85 0 34.591-6.315 47.219-18.944 12.632-12.629 18.944-28.37 18.944-47.222v-359.188c0-18.854-6.312-34.595-18.944-47.223-12.628-12.628-28.369-18.944-47.219-18.944h-604.951zM225.673 202.24h604.951c7.348 0 13.39 2.363 18.117 7.090 4.723 4.727 7.086 10.764 7.086 18.117v359.188c0 7.352-2.363 13.39-7.086 18.117-4.727 4.726-10.768 7.089-18.117 7.089h-335.479l-81.92 81.92h-187.552c-7.352 0-13.391-2.363-18.117-7.089s-7.089-10.765-7.089-18.117v-441.108c0-7.352 2.363-13.39 7.089-18.117s10.765-7.090 18.117-7.090z" />
64
+ <glyph unicode="&#xe936;" glyph-name="page-break" d="M307.592 79.36c-18.196 0-33.772 6.48-46.729 19.436-12.958 12.96-19.436 28.533-19.436 46.731v97.673c0 11.309 9.169 20.48 20.48 20.48s20.48-9.171 20.48-20.48v-97.673c0-7.352 2.363-13.39 7.089-18.117s10.765-7.090 18.117-7.090h441.107c7.352 0 13.39 2.363 18.117 7.090s7.090 10.764 7.090 18.117v97.673c0 11.309 9.171 20.48 20.48 20.48s20.48-9.171 20.48-20.48v-97.673c0-18.199-6.48-33.772-19.436-46.731-12.96-12.956-28.533-19.436-46.731-19.436h-441.107zM261.907 468.48c-11.311 0-20.48 9.171-20.48 20.48v261.514c0 18.196 6.479 33.772 19.436 46.729s28.534 19.437 46.729 19.437h322.954l184.32-184.32v-143.36c0-11.309-9.171-20.48-20.48-20.48s-20.48 9.171-20.48 20.48v122.88h-163.84v163.84h-302.474c-7.352 0-13.391-2.363-18.117-7.089s-7.089-10.765-7.089-18.117v-261.514c0-11.309-9.169-20.48-20.48-20.48zM433.623 345.6c-11.309 0-20.48 9.171-20.48 20.48s9.171 20.48 20.48 20.48h189.047c11.309 0 20.48-9.171 20.48-20.48s-9.171-20.48-20.48-20.48h-189.047zM745.55 345.6c-11.309 0-20.48 9.171-20.48 20.48s9.171 20.48 20.48 20.48h189.047c11.309 0 20.48-9.171 20.48-20.48s-9.171-20.48-20.48-20.48h-189.047zM121.697 345.6c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h189.046c11.311 0 20.48-9.171 20.48-20.48s-9.169-20.48-20.48-20.48h-189.046z" />
65
+ <glyph unicode="&#xe937;" glyph-name="print" d="M691.986 586.634v122.88h-327.68v-122.88h-40.96v122.88c0 22.622 18.338 40.96 40.96 40.96h327.68c22.622 0 40.96-18.338 40.96-40.96v-122.88h-40.96zM758.153 443.273c11.604 0 21.332 3.924 29.184 11.776 7.848 7.852 11.776 17.58 11.776 29.184s-3.928 21.332-11.776 29.184c-7.852 7.852-17.58 11.776-29.184 11.776-11.608 0-21.336-3.924-29.184-11.776-7.852-7.852-11.776-17.58-11.776-29.184s3.924-21.332 11.776-29.184c7.848-7.852 17.576-11.776 29.184-11.776zM691.986 161.28v185.893h-327.68v-185.893h327.68zM732.946 161.28c0-22.622-18.338-40.96-40.96-40.96h-327.68c-22.622 0-40.96 18.338-40.96 40.96v122.88h-140.209v220.553c0 23.212 7.877 42.667 23.631 58.368s35.183 23.552 58.289 23.552h526.179c23.208 0 42.664-7.85 58.368-23.552 15.7-15.701 23.552-35.156 23.552-58.368v-220.553h-140.21v-122.88zM832.197 325.12v179.593c0 11.604-3.928 21.332-11.776 29.184-7.852 7.851-17.58 11.776-29.184 11.776h-526.179c-11.605 0-21.333-3.925-29.184-11.776s-11.776-17.58-11.776-29.184v-179.593h99.249v63.017h409.6v-63.017h99.25z" />
66
+ <glyph unicode="&#xe938;" glyph-name="processing-tab" d="M261.367 857.024c-2.059-0.037-4.091-0.534-5.981-1.461s-3.6-2.269-5.032-3.946c-1.433-1.677-2.56-3.658-3.317-5.829s-1.13-4.49-1.097-6.825v-125.898h-77.106c-26.465 0-48.321-24.603-48.321-54.576v-477.281h-47.035c-4.158 0-8.146-1.872-11.086-5.206s-4.592-7.856-4.592-12.571c0-68.444 48.289-124.441 107.961-124.441h724.775c59.671 0 107.958 55.996 107.958 124.441 0 4.714-1.651 9.236-4.592 12.571s-6.926 5.206-11.084 5.206h-47.038v477.281c0 29.972-21.852 54.576-48.321 54.576h-108.462v125.898c0 4.715-1.651 9.236-4.592 12.57-2.937 3.334-6.926 5.207-11.084 5.207h-62.714c-4.157 0-8.147-1.873-11.088-5.207-2.937-3.334-4.592-7.855-4.592-12.57v-125.898h-156.783v54.789c0 4.715-1.651 9.237-4.592 12.571s-6.926 5.207-11.084 5.207h-62.714c-4.157 0-8.147-1.873-11.088-5.207s-4.592-7.856-4.592-12.571v-54.789h-156.782v125.898c0.034 2.382-0.355 4.748-1.144 6.957s-1.96 4.215-3.446 5.9c-1.486 1.685-3.256 3.014-5.204 3.908s-4.035 1.335-6.135 1.297zM716.288 821.185h31.355v-426.154h-31.355v426.154zM465.433 750.076h31.359v-355.046h-31.359v355.046zM168.833 677.51h77.106v-34.097h-47.035c-4.158 0-8.146-1.873-11.086-5.207s-4.592-7.856-4.592-12.57v-391.099c0-4.714 1.652-9.236 4.592-12.571s6.928-5.206 11.086-5.206h658.487c4.157 0 8.147 1.872 11.088 5.206 2.937 3.334 4.592 7.856 4.592 12.571v391.099c0 4.714-1.655 9.236-4.592 12.57-2.941 3.334-6.93 5.207-11.088 5.207h-78.393v34.097h108.462c9.724 0 16.966-8.249 16.966-19.022v-477.281h-752.556v477.281c0 10.773 7.212 19.022 16.964 19.022zM277.296 677.51h156.782v-34.097h-156.782v34.097zM528.146 677.51h156.783v-34.097h-156.783v34.097zM214.582 607.859h31.357v-231.105c0-4.714 1.652-9.236 4.592-12.571s6.928-5.206 11.086-5.206h533.060c4.157 0 8.147 1.872 11.088 5.206s4.592 7.856 4.592 12.571c0 4.714-1.651 9.236-4.592 12.571s-6.93 5.206-11.088 5.206h-15.679v213.328h62.714v-355.545h-627.129v355.545zM277.296 607.859h156.782v-213.328h-31.356v124.94c0 4.714-1.652 9.236-4.592 12.57s-6.928 5.207-11.086 5.207h-62.713c-4.158 0-8.146-1.873-11.086-5.207s-4.592-7.855-4.592-12.57v-124.94h-31.357v213.328zM528.146 607.859h156.783v-213.328h-31.355v159.996c0 4.715-1.651 9.236-4.592 12.571s-6.93 5.207-11.088 5.207h-62.714c-4.157 0-8.143-1.873-11.084-5.207s-4.592-7.856-4.592-12.571v-159.996h-31.359v213.328zM590.86 536.75h31.355v-141.72h-31.355v141.72zM340.009 501.694h31.357v-106.664h-31.357v106.664zM95.459 145.654h333.478v-9.957c0-24.637 17.715-45.474 39.571-45.474h119.28c21.856 0 39.571 20.836 39.571 45.511v9.921h333.509c-7.84-39.682-33.739-71.111-70.304-71.111h-724.804c-36.562 0-62.493 31.429-70.301 71.111zM460.292 145.654h135.713v-9.957c0-6.046-3.609-9.921-8.217-9.921h-119.28c-4.612 0-8.217 3.912-8.217 9.957v9.921z" />
67
+ <glyph unicode="&#xe939;" glyph-name="redo-material" d="M419.291 202.24c-53.617 0-99.421 18.616-137.414 55.849-37.993 37.229-56.99 82.416-56.99 135.561 0 53.142 18.996 98.198 56.99 135.168 37.993 36.968 83.797 55.453 137.414 55.453h317.125l-106.971 106.968c-8.004 8.005-8.004 20.983 0 28.987 8.008 8.005 20.984 8.005 28.987 0l156.439-156.435-156.439-156.436c-8.004-8.004-20.98-8.004-28.987 0-8.004 8.004-8.004 20.984 0 28.987l106.971 106.968h-317.125c-42.484 0-78.678-14.44-108.584-43.325-29.907-28.881-44.859-64.328-44.859-106.336 0-42.013 14.953-77.591 44.859-106.734s66.1-43.717 108.584-43.717h276.636c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-276.636z" />
68
+ <glyph unicode="&#xe93a;" glyph-name="redo" horiz-adv-x="983" d="M735.551 625.789c-57.582 51.124-132.231 80.272-211.562 80.272-176.113 0-318.881-142.768-318.881-318.882 0-176.112 142.768-318.878 318.881-318.878 92.701 0 179.003 39.797 239.157 107.95 5.546 6.287 4.948 15.884-1.339 21.434-6.287 5.546-15.88 4.948-21.43-1.339-54.448-61.686-132.493-97.677-216.388-97.677-159.341 0-288.511 129.171-288.511 288.51 0 159.343 129.171 288.512 288.511 288.512 78.422 0 151.732-31.447 205.435-85.936l-178.037-47.703c-8.098-2.171-12.906-10.498-10.736-18.6 2.171-8.098 10.498-12.906 18.596-10.736l207.43 55.579c8.102 2.17 12.906 10.497 10.736 18.597l-55.579 207.428c-2.171 8.1-10.498 12.908-18.596 10.737-8.102-2.171-12.911-10.497-10.74-18.597l43.053-160.673z" />
69
+ <glyph unicode="&#xe93b;" glyph-name="remove" d="M302.868 427.52c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h450.559c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-450.559z" />
70
+ <glyph unicode="&#xe93c;" glyph-name="rename" d="M620.298 878.080c-11.313 0-20.48-9.169-20.48-20.48s9.167-20.48 20.48-20.48h61.44v-778.24h-61.44c-11.313 0-20.48-9.171-20.48-20.48s9.167-20.48 20.48-20.48h163.84c11.309 0 20.48 9.171 20.48 20.48s-9.171 20.48-20.48 20.48h-61.44v778.24h61.44c11.309 0 20.48 9.169 20.48 20.48s-9.171 20.48-20.48 20.48h-163.84zM615.199 755.2c11.309 0 20.48-9.169 20.48-20.48s-9.171-20.48-20.48-20.48h-394.251c-22.622 0-40.96-18.339-40.96-40.96v-450.56c0-22.622 18.338-40.96 40.96-40.96h394.251c11.309 0 20.48-9.171 20.48-20.48s-9.171-20.48-20.48-20.48h-394.251c-45.243 0-81.92 36.676-81.92 81.92v450.56c0 45.243 36.677 81.92 81.92 81.92h394.251zM773.579 181.76c-11.313 0-20.48-9.171-20.48-20.48s9.167-20.48 20.48-20.48h61.768c45.244 0 81.92 36.676 81.92 81.92v450.56c0 45.243-36.676 81.92-81.92 81.92h-61.768c-11.313 0-20.48-9.169-20.48-20.48s9.167-20.48 20.48-20.48h61.768c22.622 0 40.96-18.339 40.96-40.96v-450.56c0-22.622-18.338-40.96-40.96-40.96h-61.768z" />
71
+ <glyph unicode="&#xe93d;" glyph-name="sandwich" horiz-adv-x="983" d="M764.531 674.54h-546.020c-3.636 0-7.123 1.444-9.695 4.016s-4.016 6.059-4.016 9.695c0 3.636 1.445 7.124 4.016 9.695s6.059 4.016 9.695 4.016h546.020c3.633 0 7.123-1.445 9.695-4.016 2.568-2.571 4.014-6.058 4.014-9.695s-1.446-7.124-4.014-9.695c-2.572-2.571-6.062-4.016-9.695-4.016zM764.531 423.219h-546.020c-3.636 0-7.123 1.446-9.695 4.018s-4.016 6.058-4.016 9.695c0 3.637 1.445 7.123 4.016 9.695 2.571 2.568 6.059 4.014 9.695 4.014h546.020c3.633 0 7.123-1.446 9.695-4.014 2.568-2.572 4.014-6.058 4.014-9.695s-1.446-7.123-4.014-9.695c-2.572-2.572-6.062-4.018-9.695-4.018zM218.511 171.917h546.020c3.633 0 7.123 1.446 9.695 4.014 2.568 2.572 4.014 6.062 4.014 9.695 0 3.637-1.446 7.127-4.014 9.695-2.572 2.572-6.062 4.018-9.695 4.018h-546.020c-3.636 0-7.123-1.446-9.695-4.018-2.571-2.568-4.016-6.058-4.016-9.695 0-3.633 1.445-7.123 4.016-9.695 2.571-2.568 6.059-4.014 9.695-4.014z" />
72
+ <glyph unicode="&#xe93e;" glyph-name="save" d="M855.826 635.471v-448.984c0-18.854-6.312-34.595-18.944-47.223-12.628-12.628-28.369-18.944-47.219-18.944h-523.031c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v523.028c0 18.852 6.314 34.592 18.944 47.222s28.37 18.944 47.222 18.944h448.987l140.206-140.209zM814.866 617.984l-116.736 116.736h-431.497c-7.352 0-13.391-2.363-18.117-7.089s-7.089-10.765-7.089-18.117v-523.028c0-7.352 2.363-13.39 7.089-18.117s10.765-7.090 18.117-7.090h523.031c7.348 0 13.39 2.363 18.117 7.090 4.723 4.727 7.086 10.764 7.086 18.117v431.497zM528.146 262.103c22.581 0 41.882 8.008 57.897 24.027 16.015 16.015 24.023 35.312 24.023 57.893s-8.008 41.882-24.023 57.897c-16.015 16.015-35.316 24.023-57.897 24.023s-41.878-8.008-57.893-24.023c-16.019-16.015-24.027-35.316-24.027-57.897s8.008-41.878 24.027-57.893c16.015-16.019 35.312-24.027 57.893-24.027zM313.895 539.373h304.052v122.88h-304.052v-122.88zM241.428 617.984v0z" />
73
+ <glyph unicode="&#xe93f;" glyph-name="search" d="M846.443 115.2c-8.337-8.337-21.858-8.337-30.195 0l-252.062 252.062c-21.333-18.163-45.867-32.218-73.6-42.176-27.733-9.954-55.603-14.933-83.612-14.933-68.337 0-126.174 23.654-173.509 70.963-47.336 47.313-71.004 105.118-71.004 173.417 0 68.301 23.655 126.15 70.964 173.549s105.115 71.098 173.416 71.098c68.3 0 126.151-23.667 173.55-71.002s71.095-105.172 71.095-173.51c0-29.649-5.248-58.338-15.753-86.071-10.5-27.733-24.286-51.447-41.353-71.138l252.062-252.062c8.337-8.337 8.337-21.858 0-30.195zM406.974 352.819c56.617 0 104.412 19.49 143.383 58.462 38.976 38.976 58.462 86.771 58.462 143.386s-19.486 104.41-58.462 143.384c-38.972 38.975-86.767 58.462-143.383 58.462-56.615 0-104.41-19.487-143.384-58.462s-58.461-86.769-58.461-143.384c0-56.614 19.487-104.41 58.461-143.386 38.974-38.972 86.769-58.462 143.384-58.462z" />
74
+ <glyph unicode="&#xe940;" glyph-name="select-all" d="M392.664 271.557c-22.622 0-40.96 18.338-40.96 40.96v270.967c0 22.621 18.338 40.96 40.96 40.96h270.966c22.622 0 40.96-18.339 40.96-40.96v-270.967c0-22.622-18.338-40.96-40.96-40.96h-270.966zM392.664 320.709c0-4.526 3.668-8.192 8.192-8.192h254.582c4.526 0 8.192 3.666 8.192 8.192v254.583c0 4.524-3.666 8.192-8.192 8.192h-254.582c-4.524 0-8.192-3.668-8.192-8.192v-254.583zM250.88 170.734v-50.414c-13.864 0-25.732 4.936-35.604 14.807-9.872 9.875-14.808 21.742-14.808 35.607h50.412zM200.468 271.557v50.414h50.412v-50.414h-50.412zM200.468 422.793v50.414h50.412v-50.414h-50.412zM200.468 574.031v50.412h50.412v-50.412h-50.412zM250.88 725.267h-50.412c0 13.864 4.936 25.732 14.808 35.605 9.873 9.872 21.741 14.808 35.604 14.808v-50.413zM351.704 120.32v50.414h50.412v-50.414h-50.412zM351.704 725.267v50.413h50.412v-50.413h-50.412zM502.944 120.32v50.414h50.409v-50.414h-50.409zM502.944 725.267v50.413h50.409v-50.413h-50.409zM654.18 120.32v50.414h50.409v-50.414h-50.409zM654.18 725.267v50.413h50.409v-50.413h-50.409zM805.417 120.32v50.414h50.409c0-14.127-4.936-26.063-14.807-35.803s-21.742-14.61-35.602-14.61zM805.417 271.557v50.414h50.409v-50.414h-50.409zM805.417 422.793v50.414h50.409v-50.414h-50.409zM805.417 574.031v50.412h50.409v-50.412h-50.409zM805.417 725.267v50.413c13.861 0 25.731-4.936 35.602-14.808 9.871-9.873 14.807-21.741 14.807-35.605h-50.409z" />
75
+ <glyph unicode="&#xe941;" glyph-name="signature" d="M563.397 384.434c59.814 40.014 107.127 84.271 141.943 132.764 34.816 48.497 52.224 96.428 52.224 143.794 0 28.672-5.816 51.541-17.449 68.608-11.629 17.067-27.005 25.6-46.117 25.6-39.965 0-73.282-27.399-99.959-82.195s-40.014-122.631-40.014-203.501c0-16.908 0.827-32.387 2.478-46.436 1.655-14.045 3.953-26.923 6.894-38.633zM199.877 99.84c-4.524 0-8.192 3.666-8.192 8.192v43.479c0 4.526 3.668 8.192 8.192 8.192h43.48c4.524 0 8.192-3.666 8.192-8.192v-43.479c0-4.526-3.668-8.192-8.192-8.192h-43.48zM348.75 99.84c-4.524 0-8.192 3.666-8.192 8.192v43.479c0 4.526 3.668 8.192 8.192 8.192h43.481c4.524 0 8.192-3.666 8.192-8.192v-43.479c0-4.526-3.668-8.192-8.192-8.192h-43.481zM497.623 99.84c-4.522 0-8.192 3.666-8.192 8.192v43.479c0 4.526 3.67 8.192 8.192 8.192h43.483c4.522 0 8.192-3.666 8.192-8.192v-43.479c0-4.526-3.67-8.192-8.192-8.192h-43.483zM646.5 99.84c-4.526 0-8.192 3.666-8.192 8.192v43.479c0 4.526 3.666 8.192 8.192 8.192h43.479c4.522 0 8.192-3.666 8.192-8.192v-43.479c0-4.526-3.67-8.192-8.192-8.192h-43.479zM795.374 99.84c-4.526 0-8.192 3.666-8.192 8.192v43.479c0 4.526 3.666 8.192 8.192 8.192h43.479c4.526 0 8.192-3.666 8.192-8.192v-43.479c0-4.526-3.666-8.192-8.192-8.192h-43.479zM193.811 265.966c-7.787-7.791-20.412-7.791-28.2 0-7.786 7.786-7.786 20.41 0 28.197l51.437 51.438-51.437 51.438c-7.787 7.786-7.787 20.41 0 28.197 7.787 7.791 20.413 7.791 28.2 0l51.436-51.433 51.436 51.433c7.787 7.791 20.413 7.791 28.2 0 7.787-7.786 7.787-20.41 0-28.197l-51.436-51.438 51.436-51.438c7.787-7.786 7.787-20.41 0-28.197-7.787-7.791-20.412-7.791-28.2 0l-51.436 51.433-51.436-51.433zM635.47 263.68c-20.48 0-38.597 4.846-54.35 14.533s-28.725 24.195-38.912 43.52c-16.015-9.556-32.809-18.354-50.373-26.386-11.424-5.226-23.065-10.342-34.922-15.344-10.564-4.456-22.655 0.84-26.722 11.559-3.936 10.383 1.139 21.991 11.334 26.391 11.739 5.071 23.339 10.359 34.791 15.872 17.408 8.376 34.042 17.265 49.902 26.665-4.465 15.016-7.811 31.793-10.043 50.332s-3.346 38.572-3.346 60.101c0 95.679 16.962 173.805 50.885 234.378s77.353 90.861 130.286 90.861c31.298 0 56.504-12.354 75.616-37.061 19.116-24.707 28.672-57.725 28.672-99.052 0-56.084-19.784-111.879-59.351-167.384s-93.25-105.079-161.042-148.718c6.877-13.181 15.241-23.065 25.088-29.655 9.843-6.59 20.91-9.888 33.198-9.888 21.95 0 45.228 10.478 69.829 31.429 20.124 17.138 38.584 39.072 55.39 65.798 6.459 10.277 19.501 14.537 30.478 9.355 9.372-4.424 14.545-14.549 13.3-24.842-1.757-14.557-2.294-27.754-1.61-39.596 0.946-16.384 5.485-30.458 13.627-42.222 8.925 4.465 17.474 9.609 25.637 15.438 4.915 3.51 10.457 8.466 16.634 14.881 7.586 7.881 19.919 9.212 28.459 2.38 9.118-7.291 10.203-20.832 1.884-29.024-12.095-11.919-23.515-21.545-34.255-28.881-15.069-10.293-29.356-15.438-42.848-15.438-12.239 0-22.807 6.894-31.707 20.677s-15.004 31.126-18.313 52.027c-16.49-22.319-36.471-40.014-59.945-53.092-23.47-13.074-45.896-19.612-67.269-19.612z" />
76
+ <glyph unicode="&#xe942;" glyph-name="stop" d="M256 192v512h512v-512h-512z" />
77
+ <glyph unicode="&#xe943;" glyph-name="table" d="M194.935 697.337c0 39.315 30.652 71.187 68.462 71.187h518.296c37.81 0 68.465-31.871 68.465-71.187v-512.964c0-39.313-30.654-71.184-68.465-71.184h-518.296c-37.811 0-68.462 31.871-68.462 71.184v512.964zM263.397 726.649c-15.569 0-28.19-13.124-28.19-29.312v-512.964c0-16.187 12.621-29.311 28.19-29.311h518.296c15.569 0 28.193 13.124 28.193 29.311v512.964c0 16.189-12.624 29.312-28.193 29.312h-518.296zM194.868 598.38c0 11.563 9.015 20.937 20.136 20.937h615.088c11.121 0 20.136-9.374 20.136-20.937s-9.015-20.938-20.136-20.938h-615.088c-11.121 0-20.136 9.374-20.136 20.938zM194.868 366.236c0 11.563 9.015 20.935 20.136 20.935h615.088c11.121 0 20.136-9.372 20.136-20.935s-9.015-20.939-20.136-20.939h-615.088c-11.121 0-20.136 9.376-20.136 20.939zM420.024 619.317c11.121 0 20.136-9.374 20.136-20.937v-464.277c0-11.567-9.015-20.939-20.136-20.939-11.119 0-20.135 9.372-20.135 20.939v464.277c0 11.563 9.015 20.937 20.135 20.937zM625.066 619.317c11.121 0 20.136-9.374 20.136-20.937v-464.277c0-11.567-9.015-20.939-20.136-20.939s-20.136 9.372-20.136 20.939v464.277c0 11.563 9.015 20.937 20.136 20.937zM270.051 482.308c0 11.563 9.015 20.935 20.136 20.935h54.675c11.121 0 20.136-9.372 20.136-20.935s-9.015-20.939-20.136-20.939h-54.675c-11.121 0-20.136 9.376-20.136 20.939zM270.051 250.184c0 11.563 9.015 20.939 20.136 20.939h54.675c11.121 0 20.136-9.376 20.136-20.939s-9.015-20.939-20.136-20.939h-54.675c-11.121 0-20.136 9.376-20.136 20.939z" />
78
+ <glyph unicode="&#xe944;" glyph-name="undo-material" d="M360.369 202.24c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h276.636c42.484 0 78.676 14.574 108.585 43.717 29.905 29.143 44.859 64.721 44.859 106.734 0 42.009-14.954 77.455-44.859 106.336-29.909 28.885-66.101 43.325-108.585 43.325h-317.123l106.97-106.968c8.004-8.004 8.004-20.984 0-28.987-8.008-8.004-20.985-8.004-28.989 0l-156.435 156.436 156.435 156.435c8.005 8.005 20.982 8.005 28.989 0 8.004-8.005 8.004-20.983 0-28.987l-106.97-106.968h317.123c53.617 0 99.422-18.485 137.413-55.453 37.994-36.97 56.992-82.026 56.992-135.168 0-53.146-18.997-98.333-56.992-135.561-37.99-37.233-83.796-55.849-137.413-55.849h-276.636z" />
79
+ <glyph unicode="&#xe945;" glyph-name="undo" horiz-adv-x="983" d="M247.491 625.789c57.582 51.124 132.229 80.272 211.564 80.272 176.112 0 318.878-142.768 318.878-318.882 0-176.112-142.766-318.878-318.878-318.878-92.701 0-179.004 39.797-239.157 107.95-5.549 6.287-4.951 15.884 1.337 21.434 6.287 5.546 15.883 4.948 21.433-1.339 54.448-61.686 132.491-97.677 216.388-97.677 159.338 0 288.51 129.171 288.51 288.51 0 159.343-129.171 288.512-288.51 288.512-78.424 0-151.733-31.447-205.436-85.936l178.033-47.703c8.102-2.171 12.911-10.498 10.74-18.6-2.171-8.098-10.498-12.906-18.6-10.736l-207.427 55.579c-8.101 2.17-12.908 10.497-10.737 18.597l55.58 207.428c2.17 8.1 10.497 12.908 18.597 10.737s12.908-10.497 10.737-18.597l-43.052-160.673z" />
80
+ <glyph unicode="&#xe946;" glyph-name="view" horiz-adv-x="983" d="M371.361 436.941c0 66.306 53.853 120.159 120.159 120.159 12.018 0 21.848-9.833 21.848-21.846 0-12.018-9.83-21.848-21.848-21.848-42.164 0-76.464-34.3-76.464-76.464 0-12.018-9.832-21.848-21.848-21.848s-21.847 9.83-21.847 21.848zM972.157 352.502c-10.486-6.009-23.814-2.404-29.823 8.081-64.34 111.751-166.801 194.222-284.996 234.421 39.215-41.182 63.578-96.783 63.578-158.063 0-126.497-102.9-229.396-229.396-229.396s-229.394 102.9-229.394 229.396c0 61.28 24.359 116.882 63.575 158.063-118.302-40.199-220.656-122.67-284.995-234.528-4.042-6.992-11.361-10.924-18.898-10.924-3.714 0-7.428 0.872-10.924 2.949-10.377 6.009-13.982 19.333-7.974 29.819 100.715 175.216 287.945 284.014 488.61 284.014 200.667 0 387.895-108.798 488.612-284.014 6.005-10.486 2.4-23.81-7.975-29.819zM491.52 622.641c-102.354 0-185.7-83.345-185.7-185.7s83.347-185.7 185.7-185.7c102.355 0 185.7 83.345 185.7 185.7s-83.345 185.7-185.7 185.7z" />
81
+ <glyph unicode="&#xe947;" glyph-name="visibility-off" d="M659.034 420.433l-33.967 33.967c6.4 37.252-4.16 69.5-31.671 96.739-27.516 27.241-59.627 37.662-96.329 31.262l-33.971 33.969c7.168 2.954 14.647 5.169 22.443 6.647s16.614 2.215 26.462 2.215c43.486 0 80.341-15.111 110.562-45.333 30.225-30.222 45.333-67.079 45.333-110.565 0-9.847-0.738-18.94-2.214-27.281s-3.691-15.548-6.647-21.619zM793.929 289.314l-32.329 28.553c27.021 20.621 51.021 43.2 72 67.733 20.975 24.533 38.933 52.446 53.867 83.733-35.558 71.823-86.579 128.889-153.067 171.2-66.492 42.311-140.625 63.467-222.4 63.467-20.625 0-40.892-1.422-60.8-4.267-19.913-2.845-39.468-7.111-58.668-12.8l-33.313 33.313c24.78 9.354 49.997 16.096 75.652 20.226s51.362 6.194 77.129 6.194c92.608 0 177.314-25.45 254.114-76.349s133.222-117.894 169.271-200.985c-15.262-34.295-34.586-66.53-57.971-96.695-23.386-30.17-51.213-57.941-83.486-83.324zM841.519 58.091l-166.071 165.581c-18.876-8.367-42.3-15.74-70.281-22.114-27.977-6.37-59.034-9.557-93.167-9.557-93.156 0-177.861 25.451-254.114 76.348-76.253 50.901-132.677 117.897-169.271 200.986 16.574 37.687 38.427 72.985 65.559 105.888s56.096 60.512 86.893 82.831l-118.975 119.467 30.195 30.196 719.428-719.428-30.195-30.195zM271.26 627.857c-24.451-17.395-49.449-40.259-74.994-68.594s-45.456-58.313-59.733-89.929c35.555-71.821 86.578-128.887 153.067-171.2s140.622-63.467 222.401-63.467c24.614 0 49.421 2.394 74.419 7.181s43.789 9.613 56.371 14.481l-69.581 70.071c-6.729-3.776-16.111-6.878-28.143-9.314-12.036-2.432-23.057-3.648-33.067-3.648-43.49 0-80.341 15.108-110.565 45.333-30.222 30.221-45.333 67.076-45.333 110.562 0 9.463 1.217 20.075 3.651 31.838 2.434 11.759 5.539 21.551 9.313 29.372l-97.806 97.314z" />
82
+ <glyph unicode="&#xe948;" glyph-name="visibility-on" d="M512.192 313.438c43.358 0 80.149 15.172 110.37 45.525 30.225 30.349 45.333 67.204 45.333 110.562s-15.172 80.15-45.525 110.372c-30.349 30.222-67.204 45.333-110.562 45.333-43.362 0-80.149-15.175-110.373-45.526-30.222-30.351-45.333-67.206-45.333-110.563s15.175-80.149 45.526-110.37c30.351-30.225 67.206-45.333 110.564-45.333zM512 354.133c-32 0-59.2 11.2-81.6 33.6s-33.601 49.6-33.601 81.6c0 32 11.2 59.2 33.601 81.6s49.6 33.6 81.6 33.6c32 0 59.2-11.2 81.6-33.6s33.6-49.6 33.6-81.6c0-32-11.2-59.2-33.6-81.6s-49.6-33.6-81.6-33.6zM512.115 192c-92.412 0-176.636 25.148-252.67 75.447-76.035 50.295-132.978 117.594-170.831 201.886 37.853 84.294 94.757 151.59 170.714 201.887s160.141 75.447 252.553 75.447c92.416 0 176.64-25.149 252.672-75.447 76.036-50.297 132.979-117.592 170.833-201.887-37.854-84.292-94.758-151.59-170.714-201.886-75.959-50.3-160.141-75.447-252.557-75.447zM512 234.667c80.354 0 154.133 21.154 221.333 63.467s118.575 99.379 154.133 171.2c-35.558 71.822-86.933 128.889-154.133 171.2s-140.979 63.467-221.333 63.467c-80.358 0-154.134-21.155-221.334-63.467s-118.578-99.378-154.133-171.2c35.555-71.821 86.933-128.887 154.133-171.2s140.976-63.467 221.334-63.467z" />
83
+ <glyph unicode="&#xe949;" glyph-name="new-folder" d="M618.667 320c0-11.78 9.553-21.333 21.333-21.333s21.333 9.553 21.333 21.333v64h64c11.78 0 21.333 9.553 21.333 21.333s-9.553 21.333-21.333 21.333h-64v64c0 11.78-9.553 21.333-21.333 21.333s-21.333-9.553-21.333-21.333v-64h-64c-11.78 0-21.333-9.553-21.333-21.333s9.553-21.333 21.333-21.333h64v-64zM196.923 149.333c-19.637 0-36.034 6.579-49.19 19.733s-19.733 29.551-19.733 49.19v459.487c0 19.637 6.578 36.034 19.733 49.189s29.552 19.733 49.19 19.733h212.513l85.335-85.333h332.305c19.639 0 36.036-6.578 49.19-19.733s19.733-29.552 19.733-49.189v-374.154c0-19.639-6.579-36.036-19.733-49.19s-29.551-19.733-49.19-19.733h-630.153zM196.923 192h630.153c7.659 0 13.948 2.462 18.871 7.386s7.386 11.213 7.386 18.871v374.154c0 7.658-2.462 13.948-7.386 18.871s-11.213 7.384-18.871 7.384h-349.457l-85.332 85.333h-195.364c-7.658 0-13.949-2.461-18.871-7.384s-7.385-11.214-7.385-18.871v-459.487c0-7.659 2.461-13.948 7.385-18.871s11.213-7.386 18.871-7.386z" />
84
+ <glyph unicode="&#xe94a;" glyph-name="folder-move" d="M571.405 384l-66.543-66.543c-8.337-8.341-8.337-21.858 0-30.195s21.854-8.337 30.195 0l118.071 118.071-118.071 118.071c-8.341 8.337-21.858 8.337-30.195 0s-8.337-21.854 0-30.195l66.543-66.543h-179.2c-11.782 0-21.333-9.553-21.333-21.333s9.551-21.333 21.333-21.333h179.2zM196.923 149.333c-19.637 0-36.034 6.579-49.19 19.733s-19.733 29.551-19.733 49.19v459.487c0 19.637 6.578 36.034 19.733 49.189s29.552 19.733 49.19 19.733h212.513l85.335-85.333h332.305c19.639 0 36.036-6.578 49.19-19.733s19.733-29.552 19.733-49.189v-374.154c0-19.639-6.579-36.036-19.733-49.19s-29.551-19.733-49.19-19.733h-630.153zM196.923 192h630.153c7.659 0 13.948 2.462 18.871 7.386s7.386 11.213 7.386 18.871v374.154c0 7.658-2.462 13.948-7.386 18.871s-11.213 7.384-18.871 7.384h-349.457l-85.332 85.333h-195.364c-7.658 0-13.949-2.461-18.871-7.384s-7.385-11.214-7.385-18.871v-459.487c0-7.659 2.461-13.948 7.385-18.871s11.213-7.386 18.871-7.386z" />
85
+ <glyph unicode="&#xe94b;" glyph-name="arrow-south" d="M512 64l-256.077 256.077c-8.113 8.115-8.114 21.269 0 29.385v0c8.111 8.111 21.26 8.115 29.375 0.009l205.37-205.141v667.159c0 11.782 9.553 21.333 21.333 21.333v0c11.785 0 21.333-9.551 21.333-21.333v-666.339l204.838 204.838c8.363 8.363 21.961 8.243 30.174-0.269v0c8.009-8.299 7.889-21.483-0.265-29.636l-256.081-256.081z" />
86
+ <glyph unicode="&#xe94c;" glyph-name="arrow-back" d="M295.302 426.667l231.917-231.919c8.397-8.393 8.371-22.016-0.060-30.379v0c-8.384-8.316-21.909-8.286-30.259 0.064l-283.567 283.567 283.567 283.569c8.35 8.348 21.875 8.375 30.259 0.061v0c8.431-8.362 8.457-21.984 0.060-30.38l-231.917-231.917h494.031c11.78 0 21.333-9.553 21.333-21.333v0c0-11.78-9.553-21.333-21.333-21.333h-494.031z" />
87
+ <glyph unicode="&#xe94d;" glyph-name="download" d="M512 295.386l-135.877 135.876c-8.358 8.358-8.413 21.892-0.122 30.319v0c8.385 8.521 22.109 8.576 30.563 0.124l84.102-84.105v347.733c0 11.782 9.553 21.333 21.333 21.333v0c11.78 0 21.333-9.551 21.333-21.333v-347.733l84.105 84.105c8.452 8.452 22.174 8.397 30.562-0.124v0c8.29-8.427 8.235-21.961-0.124-30.319l-135.876-135.876zM282.256 149.333c-19.637 0-36.034 6.579-49.189 19.733s-19.733 29.551-19.733 49.19v82.048c0 11.785 9.551 21.333 21.333 21.333v0c11.782 0 21.333-9.549 21.333-21.333v-82.048c0-6.566 2.735-12.582 8.205-18.052s11.488-8.205 18.051-8.205h459.487c6.566 0 12.582 2.735 18.052 8.205s8.205 11.486 8.205 18.052v82.048c0 11.785 9.553 21.333 21.333 21.333v0c11.78 0 21.333-9.549 21.333-21.333v-82.048c0-19.639-6.579-36.036-19.733-49.19s-29.551-19.733-49.19-19.733h-459.487z" />
88
+ <glyph unicode="&#xe94e;" glyph-name="info" d="M490.667 277.333c0-11.78 9.553-21.333 21.333-21.333v0c11.78 0 21.333 9.553 21.333 21.333v192c0 11.78-9.553 21.333-21.333 21.333v0c-11.78 0-21.333-9.553-21.333-21.333v-192zM512 551.384c7.441 0 13.675 2.516 18.709 7.549 5.030 5.033 7.548 11.269 7.548 18.708s-2.517 13.675-7.548 18.707c-5.035 5.033-11.268 7.549-18.709 7.549s-13.675-2.516-18.709-7.549c-5.030-5.033-7.548-11.268-7.548-18.707s2.517-13.676 7.548-18.708c5.035-5.033 11.268-7.549 18.709-7.549zM512.145 64c-53.103 0-103.026 10.078-149.773 30.229s-87.409 47.501-121.99 82.048c-34.579 34.547-61.954 75.174-82.126 121.877s-30.257 96.602-30.257 149.7c0 53.103 10.076 103.026 30.228 149.773s47.503 87.409 82.050 121.989c34.547 34.579 75.172 61.955 121.874 82.126s96.604 30.257 149.702 30.257c53.103 0 103.027-10.076 149.773-30.228s87.411-47.503 121.988-82.050c34.581-34.547 61.956-75.172 82.125-121.874 20.173-46.703 30.259-96.604 30.259-149.702 0-53.103-10.078-103.027-30.229-149.773s-47.501-87.411-82.048-121.988c-34.547-34.581-75.174-61.956-121.877-82.129-46.703-20.169-96.602-30.255-149.7-30.255zM512 106.667c95.287 0 176 33.067 242.133 99.2s99.2 146.846 99.2 242.133c0 95.289-33.067 176-99.2 242.133s-146.846 99.2-242.133 99.2c-95.289 0-176-33.067-242.133-99.2s-99.2-146.845-99.2-242.133c0-95.287 33.067-176 99.2-242.133s146.845-99.2 242.133-99.2z" />
89
+ <glyph unicode="&#xe94f;" glyph-name="upload-file" d="M490.667 223.177c0-11.78 9.553-21.333 21.333-21.333v0c11.78 0 21.333 9.553 21.333 21.333v178.957l74.381-74.381c8.397-8.397 22.016-8.367 30.379 0.064v0c8.311 8.38 8.286 21.905-0.064 30.255l-126.029 126.033-125.908-125.909c-8.396-8.397-8.369-22.020 0.062-30.379v0c8.382-8.316 21.908-8.29 30.257 0.060l74.256 74.257v-178.957zM282.256 64c-19.637 0-36.034 6.579-49.189 19.733s-19.733 29.551-19.733 49.19v630.154c0 19.637 6.578 36.034 19.733 49.189s29.552 19.733 49.189 19.733h336.411l192-192v-507.076c0-19.639-6.579-36.036-19.733-49.19s-29.551-19.733-49.19-19.733h-459.487zM597.333 618.667v170.667h-315.078c-6.563 0-12.58-2.735-18.051-8.205s-8.205-11.488-8.205-18.051v-630.154c0-6.566 2.735-12.582 8.205-18.052s11.488-8.205 18.051-8.205h459.487c6.566 0 12.582 2.735 18.052 8.205s8.205 11.486 8.205 18.052v485.743h-170.667z" />
90
+ <glyph unicode="&#xe950;" glyph-name="edit-menu" d="M721.084 773.068c-4.787-1.983-9.135-4.889-12.796-8.552l-6.323-6.322 120.247-120.223 6.327 6.324c3.661 3.662 6.566 8.009 8.55 12.794s3.004 9.914 3.004 15.093c0 5.18-1.020 10.308-3.004 15.093s-4.89 9.132-8.55 12.794l-64.478 64.447c-3.661 3.663-8.009 6.569-12.796 8.552-4.783 1.982-9.911 3.003-15.091 3.003s-10.308-1.021-15.091-3.003zM658.505 775.070l19.609 19.612c7.625 7.626 16.674 13.676 26.637 17.803s20.642 6.252 31.424 6.252c10.786 0 21.461-2.125 31.424-6.252s19.012-10.175 26.633-17.798l64.469-64.44c7.629-7.624 13.679-16.675 17.805-26.639 4.13-9.962 6.255-20.641 6.255-31.425s-2.125-21.462-6.255-31.425c-4.126-9.962-10.176-19.013-17.801-26.636l-484.562-484.5c-2.808-2.807-6.345-4.779-10.211-5.683l-196.45-46.089c-7.188-1.69-14.737 0.461-19.958 5.683s-7.371 12.77-5.684 19.959l46.089 196.416c0.907 3.866 2.875 7.403 5.683 10.21l5.725 5.726c0.575 0.755 1.207 1.481 1.895 2.167s1.412 1.318 2.164 1.894l451.519 451.575c0.516 0.658 1.079 1.292 1.69 1.9 0.606 0.608 1.242 1.17 1.899 1.69zM223.661 265.412l-32.421-138.167 138.171 32.418-105.751 105.749zM366.801 182.613l384.854 384.808-119.936 120.517-385.096-385.146 120.178-120.179zM655.855 712.076l119.936-120.521 16.252 16.247-120.243 120.219-15.945-15.946z" />
91
+ <glyph unicode="&#xe951;" glyph-name="fill-color" d="M581.363 906.818l-86.635-86.64-354.416-366.874 422.904-417.391c41.31-40.768 107.925-40.081 148.386 1.536l222.144 228.518c39.842 40.981 39.377 106.364-1.037 146.778l-66.509 66.509-330.453 327.642 72.768 72.769-27.153 27.153zM213.344 473.634l295.486 305.874 298.027-295.489-593.513-10.385zM213.294 435.226l631.575 11.055 60.689-60.689c25.57-25.566 25.86-66.931 0.657-92.86l-222.148-228.514c-25.596-26.33-67.738-26.769-93.875-0.973l-376.897 371.981zM177.678 276.523c-4.329 4.698-9.967 6.289-14.525 6.199-4.558-0.085-10.128-1.89-14.272-6.75-74.878-87.77-97.477-158.246-84.945-209.792 12.932-53.188 60.805-77.743 105.126-76.979 44.325 0.764 91.259 26.974 102.028 80.661 10.42 51.947-15.034 121.557-93.413 206.66zM101.249 75.251c-7.514 30.903 2.809 83.132 62.835 158.788 63.142-73.6 75.604-125.483 69.357-156.625-6.354-31.676-33.958-49.284-65.040-49.822-31.085-0.533-59.487 16.132-67.152 47.659z" />
92
+ <glyph unicode="&#xe952;" glyph-name="menu-circle" d="M528.151 834.491c-106.070 0-207.793-42.135-282.794-117.137s-117.137-176.724-117.137-282.794c0-106.066 42.135-207.79 117.137-282.792s176.724-117.137 282.794-117.137c106.066 0 207.79 42.136 282.792 117.137s117.133 176.726 117.133 282.792c0 106.070-42.131 207.793-117.133 282.794s-176.726 117.137-282.792 117.137zM274.319 688.392c67.32 67.32 158.624 105.139 253.831 105.139 95.203 0 186.507-37.82 253.829-105.139 67.318-67.32 105.136-158.623 105.136-253.831 0-95.203-37.818-186.507-105.136-253.829-67.322-67.318-158.626-105.14-253.829-105.14-95.207 0-186.511 37.822-253.831 105.14-67.319 67.322-105.139 158.626-105.139 253.829 0 95.207 37.82 186.511 105.139 253.831zM354.92 582.929c-9.048 0-16.384-7.336-16.384-16.384s7.336-16.383 16.384-16.383h346.454c9.048 0 16.384 7.334 16.384 16.383s-7.336 16.384-16.384 16.384h-346.454zM354.92 450.945c-9.048 0-16.384-7.336-16.384-16.384s7.336-16.384 16.384-16.384h346.454c9.048 0 16.384 7.336 16.384 16.384s-7.336 16.384-16.384 16.384h-346.454zM338.536 302.58c0 9.048 7.336 16.384 16.384 16.384h346.454c9.048 0 16.384-7.336 16.384-16.384s-7.336-16.384-16.384-16.384h-346.454c-9.048 0-16.384 7.336-16.384 16.384z" />
93
+ <glyph unicode="&#xe953;" glyph-name="edit" d="M769.604 874.88c-28.868 0-56.277-11.395-76.463-31.312l-0.064-0.064-441.936-446.568c-12.638-13.854-23.152-31.194-24.736-51.947l-26.65-191.953v-0.567c0-5.585 1.86-11.84 6.457-16.375 1.827-1.801 3.989-3.486 6.691-4.668 2.738-1.203 5.596-1.702 8.574-1.702h1.946l190.912 27.665c18.77 2.85 37.91 11.413 51.418 26.146l441.613 444.92c41.737 42.6 41.737 110.716 0 153.316l-61.299 61.797c-20.186 19.918-47.599 31.312-76.463 31.312zM709.457 801.002c14.217 15.325 37.043 29.866 57.143 29.635 20.689-0.237 36.169-7.724 50.679-21.33l0.333-0.311 55.74-58.752c29.67-30.626 30.4-68.785 0-98.712l-45.99-44.177-155.213 156.832 37.308 36.815zM645.022 734.123l153.869-155.017-366.473-367.983c-8.977-10.18-21.907-15.633-34.402-16.917l-155.472-20.241 22.676 159.817c1.87 14.959 6.111 24.256 17.354 34.048l362.447 366.294zM106.667 63.292c-11.782 0-21.333-9.438-21.333-21.086 0-11.644 9.551-21.086 21.333-21.086h369.135c11.785 0 21.333 9.442 21.333 21.086 0 11.648-9.549 21.086-21.333 21.086h-369.135z" />
94
+ <glyph unicode="&#xe954;" glyph-name="refresh" d="M505.344 163.328c-130.362 0-220.347 88.832-255.675 181.662-3.962 10.411-15.092 16.546-25.792 13.449v0c-10.802-3.127-17.063-14.46-13.195-25.020 39.558-107.994 142.943-211.051 294.662-211.051 187.392 0 314.368 162.816 314.368 314.368s-125.952 314.369-314.368 314.369c-106.495 0-191.487-55.296-242.687-114.688l1.721 106.686c0.181 11.235-8.726 20.516-19.959 20.797v0c-11.384 0.285-20.813-8.775-20.983-20.161l-2.764-185.146 185.132 2.763c11.395 0.17 20.46 9.605 20.175 20.997v0c-0.281 11.229-9.551 20.139-20.783 19.974l-118.988-1.75c43.008 53.248 120.832 109.568 219.135 109.568 163.84 0 273.408-141.312 273.408-273.409s-109.568-273.408-273.408-273.408z" />
95
+ <glyph unicode="&#xe955;" glyph-name="password" d="M106.667 170.667v42.667h810.666v-42.667h-810.666zM129.478 425.519l-32.493 18.871 41.19 72.205h-82.379v37.742h82.379l-41.19 70.072 32.493 18.871 41.19-70.071 41.189 70.071 32.493-18.871-41.189-70.072h82.379v-37.742h-82.379l41.189-72.205-32.493-18.871-41.189 72.205-41.19-72.205zM470.81 425.519l-32.491 18.871 41.19 72.205h-82.38v37.742h82.38l-41.19 70.072 32.491 18.871 41.19-70.071 41.19 70.071 32.491-18.871-41.186-70.072h82.377v-37.742h-82.377l41.186-72.205-32.491-18.871-41.19 72.205-41.19-72.205zM812.143 425.519l-32.491 18.871 41.19 72.205h-82.381v37.742h82.381l-41.19 70.072 32.491 18.871 41.19-70.071 41.19 70.071 32.491-18.871-41.186-70.072h82.377v-37.742h-82.377l41.186-72.205-32.491-18.871-41.19 72.205-41.19-72.205z" />
96
+ <glyph unicode="&#xe956;" glyph-name="font-color0" d="M265.846 170.667l225.64 554.667h41.028l225.638-554.667h-51.529l-61.538 155.238h-268.963l-62.030-155.238h-48.247zM391.22 366.933h238.275l-115.362 290.133h-5.909l-117.004-290.133z" />
97
+ <glyph unicode="&#xe957;" glyph-name="mail" d="M196.923 149.333c-19.637 0-36.034 6.579-49.19 19.733s-19.733 29.551-19.733 49.19v459.487c0 19.637 6.578 36.034 19.733 49.189s29.552 19.733 49.19 19.733h630.153c19.639 0 36.036-6.578 49.19-19.733s19.733-29.552 19.733-49.189v-459.487c0-19.639-6.579-36.036-19.733-49.19s-29.551-19.733-49.19-19.733h-630.153zM512 443.076l-341.333 223.18v-447.999c0-7.659 2.461-13.948 7.385-18.871s11.213-7.386 18.871-7.386h630.153c7.659 0 13.948 2.462 18.871 7.386s7.386 11.213 7.386 18.871v447.999l-341.333-223.18zM512 490.667l328.205 213.333h-656.41l328.205-213.333zM170.667 666.256v37.744-485.743c0-7.659 2.461-13.948 7.385-18.871s11.213-7.386 18.871-7.386h-26.256v474.256z" />
98
+ <glyph unicode="&#xe958;" glyph-name="text" d="M172.54 708.655c-41.13 0-74.473 33.342-74.473 74.473s33.342 74.473 74.473 74.473c41.13 0 74.473-33.343 74.473-74.473s-33.343-74.473-74.473-74.473zM172.54 745.891c20.565 0 37.236 16.671 37.236 37.236s-16.671 37.236-37.236 37.236c-20.565 0-37.236-16.671-37.236-37.236s16.671-37.236 37.236-37.236zM786.94 801.746h-558.545v-37.236h558.545v37.236zM842.797 708.655c-41.132 0-74.473 33.342-74.473 74.473s33.341 74.473 74.473 74.473c41.128 0 74.469-33.343 74.469-74.473s-33.341-74.473-74.469-74.473zM842.797 745.891c20.562 0 37.233 16.671 37.233 37.236s-16.671 37.236-37.233 37.236c-20.566 0-37.237-16.671-37.237-37.236s16.671-37.236 37.237-37.236zM172.54 38.4c-41.13 0-74.473 33.341-74.473 74.473 0 41.128 33.342 74.473 74.473 74.473s74.473-33.346 74.473-74.473c0-41.132-33.343-74.473-74.473-74.473zM172.54 75.637c20.565 0 37.236 16.671 37.236 37.237s-16.671 37.237-37.236 37.237c-20.565 0-37.236-16.671-37.236-37.237s16.671-37.237 37.236-37.237zM786.94 131.49h-558.545v-37.237h558.545v37.237zM842.797 38.4c-41.132 0-74.473 33.341-74.473 74.473 0 41.128 33.341 74.473 74.473 74.473 41.128 0 74.469-33.346 74.469-74.473 0-41.132-33.341-74.473-74.469-74.473zM842.797 75.637c20.562 0 37.233 16.671 37.233 37.237s-16.671 37.237-37.233 37.237c-20.566 0-37.237-16.671-37.237-37.237s16.671-37.237 37.237-37.237zM191.159 727.273h-37.236v-558.546h37.236v558.546zM861.413 727.273h-37.237v-558.546h37.237v558.546zM526.287 615.564h186.18v37.236h-409.599v-37.236h186.182v-409.6h37.237v409.6z" />
99
+ <glyph unicode="&#xe959;" glyph-name="logout" d="M239.59 106.667c-19.637 0-36.034 6.579-49.19 19.733s-19.733 29.551-19.733 49.19v544.82c0 19.637 6.578 36.034 19.733 49.189s29.552 19.733 49.19 19.733h251.896c11.785 0 21.333-9.551 21.333-21.333v0c0-11.782-9.549-21.333-21.333-21.333h-251.896c-6.564 0-12.581-2.735-18.051-8.205s-8.205-11.488-8.205-18.051v-544.82c0-6.566 2.735-12.582 8.205-18.052s11.488-8.205 18.051-8.205h251.896c11.785 0 21.333-9.553 21.333-21.333v0c0-11.78-9.549-21.333-21.333-21.333h-251.896zM717.705 312.371c-8.444-8.444-22.161-8.363-30.502 0.183v0c-8.201 8.401-8.115 21.833 0.183 30.135l83.977 83.977h-357.824c-11.782 0-21.333 9.553-21.333 21.333v0c0 11.78 9.551 21.333 21.333 21.333h357.824l-83.977 83.978c-8.299 8.3-8.384 21.732-0.183 30.132v0c8.341 8.547 22.059 8.63 30.502 0.186l135.629-135.63-135.629-135.629z" />
100
+ <glyph unicode="&#xe95a;" glyph-name="arrow-up" d="M512 528.738l-181.168-181.171c-8.338-8.337-21.857-8.337-30.195 0v0c-8.338 8.341-8.338 21.858 0 30.195l211.363 211.366 211.366-211.366c8.337-8.337 8.337-21.854 0-30.195v0c-8.341-8.337-21.858-8.337-30.195 0l-181.171 181.171z" />
101
+ <glyph unicode="&#xe95b;" glyph-name="arrow-onright" d="M567.138 448l-181.168 181.168c-8.338 8.338-8.338 21.857 0 30.195v0c8.338 8.338 21.857 8.338 30.195 0l211.363-211.363-211.363-211.366c-8.338-8.337-21.857-8.337-30.195 0v0c-8.338 8.341-8.338 21.858 0 30.195l181.168 181.171z" />
102
+ <glyph unicode="&#xe95c;" glyph-name="arrow-onleft" d="M612.433 236.634c-8.341-8.337-21.858-8.337-30.195 0l-211.366 211.366 211.366 211.363c8.337 8.338 21.854 8.338 30.195 0v0c8.337-8.338 8.337-21.857 0-30.195l-181.171-181.168 181.171-181.171c8.337-8.337 8.337-21.854 0-30.195v0z" />
103
+ <glyph unicode="&#xe95d;" glyph-name="arrow-forward" d="M728.695 426.667h-494.029c-11.782 0-21.333 9.553-21.333 21.333v0c0 11.78 9.551 21.333 21.333 21.333h494.029l-231.915 231.917c-8.397 8.396-8.371 22.018 0.060 30.38v0c8.384 8.314 21.909 8.287 30.259-0.061l283.567-283.569-283.567-283.567c-8.35-8.35-21.875-8.38-30.259-0.064v0c-8.431 8.363-8.457 21.986-0.060 30.379l231.915 231.919z" />
104
+ <glyph unicode="&#xe95e;" glyph-name="arrow-down" d="M512 332.471l-211.363 211.363c-8.338 8.338-8.338 21.857 0 30.195v0c8.338 8.338 21.857 8.338 30.195 0l181.168-181.168 181.171 181.168c8.337 8.338 21.854 8.338 30.195 0v0c8.337-8.338 8.337-21.857 0-30.195l-211.366-211.363z" />
105
+ <glyph unicode="&#xe95f;" glyph-name="account-circle" d="M264.369 213.99c36.267 26.091 74.749 46.729 115.446 61.905 40.698 15.181 84.761 22.771 132.185 22.771s91.486-7.59 132.186-22.771c40.695-15.177 79.181-35.814 115.447-61.905 28.169 29.154 50.829 63.59 67.977 103.3 17.148 39.714 25.724 83.285 25.724 130.709 0 94.578-33.246 175.111-99.733 241.6s-147.021 99.733-241.6 99.733c-94.578 0-175.111-33.245-241.6-99.733s-99.733-147.022-99.733-241.6c0-47.424 8.574-90.995 25.723-130.709 17.149-39.71 39.809-74.146 67.98-103.3zM512.026 426.667c-35.955 0-66.283 12.339-90.979 37.022-24.698 24.678-37.046 54.997-37.046 90.953s12.34 66.281 37.021 90.978c24.679 24.698 54.998 37.047 90.953 37.047s66.283-12.34 90.978-37.022c24.7-24.681 37.047-54.998 37.047-90.953s-12.339-66.282-37.022-90.977c-24.683-24.7-54.997-37.047-90.953-37.047zM512 64c-53.551 0-103.686 9.967-150.4 29.905-46.714 19.942-87.357 47.198-121.929 81.766-34.571 34.573-61.825 75.213-81.764 121.929s-29.907 96.849-29.907 150.4c0 53.551 9.969 103.686 29.907 150.4s47.194 87.357 81.764 121.929c34.572 34.571 75.214 61.825 121.929 81.764s96.849 29.907 150.4 29.907c53.551 0 103.684-9.969 150.4-29.907s87.356-47.194 121.929-81.764c34.569-34.572 61.824-75.214 81.762-121.929s29.909-96.849 29.909-150.4c0-53.551-9.971-103.684-29.909-150.4s-47.194-87.356-81.762-121.929c-34.573-34.569-75.213-61.824-121.929-81.766-46.716-19.938-96.849-29.905-150.4-29.905zM512 106.667c39.33 0 78.033 6.878 116.105 20.634 38.071 13.76 70.972 32.589 98.705 56.495-27.733 22.263-59.814 39.863-96.247 52.8-36.429 12.937-75.951 19.405-118.562 19.405s-82.27-6.332-118.974-18.995c-36.705-12.663-68.65-30.4-95.837-53.21 27.733-23.906 60.636-42.735 98.708-56.495 38.069-13.756 76.772-20.634 116.102-20.634zM512 469.333c23.957 0 44.173 8.23 60.638 24.695s24.695 36.681 24.695 60.638c0 23.959-8.23 44.171-24.695 60.636s-36.681 24.698-60.638 24.698c-23.957 0-44.173-8.233-60.638-24.698s-24.695-36.677-24.695-60.636c0-23.957 8.23-44.173 24.695-60.638s36.681-24.695 60.638-24.695z" />
106
+ <glyph unicode="&#xe960;" glyph-name="person" d="M519.868 484.266c-33.792 0-62.718 12.034-86.782 36.098s-36.096 52.99-36.096 86.782c0 33.793 12.032 62.721 36.096 86.785s52.99 36.096 86.782 36.096c33.792 0 62.722-12.032 86.786-36.096s36.094-52.992 36.094-86.785c0-33.792-12.030-62.718-36.094-86.782s-52.994-36.098-86.786-36.098zM233.15 188.092v67.428c0 16.908 4.923 32.727 14.769 47.46 9.846 14.729 23.093 26.161 39.739 34.304 38.649 18.534 77.325 32.44 116.027 41.705 38.704 9.269 77.431 13.906 116.183 13.906 38.756 0 77.484-4.637 116.187-13.906 38.703-9.265 77.378-23.171 116.027-41.705 16.646-8.143 29.893-19.575 39.739-34.304 9.843-14.733 14.766-30.552 14.766-47.46v-67.428h-573.438z" />
107
+ <glyph unicode="&#xe961;" glyph-name="upload" horiz-adv-x="983" d="M491.52 314.122c-11.309 0-20.48 9.171-20.48 20.48v333.826l-80.738-80.738c-8.116-8.116-21.291-8.063-29.341 0.118v0c-7.959 8.088-7.907 21.081 0.118 29.105l130.442 130.442 130.441-130.442c8.024-8.024 8.077-21.017 0.119-29.105v0c-8.053-8.181-21.225-8.235-29.34-0.118l-80.74 80.738v-333.826c0-11.309-9.171-20.48-20.48-20.48v0zM270.966 173.916c-18.852 0-34.592 6.312-47.222 18.944-12.629 12.628-18.944 28.369-18.944 47.219v78.77c0 11.313 9.169 20.48 20.48 20.48v0c11.311 0 20.48-9.167 20.48-20.48v-78.77c0-6.3 2.626-12.075 7.877-17.326s11.028-7.877 17.329-7.877h441.108c6.304 0 12.079 2.626 17.33 7.877s7.877 11.026 7.877 17.326v78.77c0 11.313 9.171 20.48 20.48 20.48v0c11.309 0 20.48-9.167 20.48-20.48v-78.77c0-18.85-6.316-34.591-18.944-47.219-12.628-12.632-28.369-18.944-47.223-18.944h-441.108z" />
108
+ <glyph unicode="&#xe962;" glyph-name="zoom-in" d="M840.933 139.571c-8.004-8.004-20.984-8.004-28.987 0l-241.979 241.979c-20.48-17.433-44.032-30.929-70.656-40.489-26.624-9.556-53.379-14.336-80.265-14.336-65.605 0-121.128 22.712-166.569 68.129-45.443 45.416-68.164 100.909-68.164 166.477s22.709 121.104 68.125 166.607c45.417 45.502 100.91 68.254 166.48 68.254 65.569 0 121.102-22.721 166.605-68.162s68.256-100.965 68.256-166.57c0-28.46-5.042-56.005-15.127-82.629-10.080-26.624-23.314-49.39-39.698-68.293l241.979-241.979c8.004-8.004 8.004-20.984 0-28.987v0zM419.045 367.686c54.35 0 100.233 18.711 137.65 56.123 37.413 37.417 56.123 83.3 56.123 137.651s-18.711 100.234-56.123 137.649c-37.417 37.416-83.3 56.123-137.65 56.123-54.351 0-100.234-18.708-137.649-56.123s-56.123-83.299-56.123-137.649c0-54.351 18.708-100.234 56.123-137.651 37.415-37.413 83.298-56.123 137.649-56.123zM398.565 463.786v77.193h-77.193v40.961h77.193v77.194h40.96v-77.194h77.193v-40.961h-77.193v-77.193h-40.96z" />
109
+ <glyph unicode="&#xe963;" glyph-name="zoom-out" d="M840.933 139.571c-8.004-8.004-20.984-8.004-28.987 0l-241.979 241.979c-20.48-17.433-44.032-30.929-70.656-40.489-26.624-9.556-53.379-14.336-80.265-14.336-65.605 0-121.128 22.712-166.569 68.129-45.443 45.416-68.164 100.909-68.164 166.477s22.709 121.104 68.125 166.607c45.417 45.502 100.91 68.254 166.48 68.254 65.569 0 121.102-22.721 166.605-68.162s68.256-100.965 68.256-166.57c0-28.46-5.042-56.005-15.127-82.629-10.080-26.624-23.314-49.39-39.698-68.293l241.979-241.979c8.004-8.004 8.004-20.984 0-28.987v0zM419.045 367.686c54.35 0 100.233 18.711 137.65 56.123 37.413 37.417 56.123 83.3 56.123 137.651s-18.711 100.234-56.123 137.649c-37.417 37.416-83.3 56.123-137.65 56.123-54.351 0-100.234-18.708-137.649-56.123s-56.123-83.299-56.123-137.649c0-54.351 18.708-100.234 56.123-137.651 37.415-37.413 83.298-56.123 137.649-56.123zM326.098 540.979v40.961h185.894v-40.961h-185.894z" />
110
+ </font></defs></svg>
Binary file
@@ -0,0 +1,21 @@
1
+ @use '@angular/material' as mat;
2
+ @use 'sass:map';
3
+
4
+ @mixin add-link-dialog-component($theme) {
5
+ $foreground: map.get($theme, foreground);
6
+ $background: map.get($theme, background);
7
+
8
+ app-add-link-dialog {
9
+ .mat-mdc-dialog-actions .apply-btn {
10
+ color: mat.get-color-from-palette($foreground, button-text);
11
+
12
+ &:disabled {
13
+ background-color: mat.get-color-from-palette($background, disabled-button);
14
+ }
15
+
16
+ &:enabled {
17
+ background-color: mat.get-color-from-palette($background, button-background);
18
+ }
19
+ }
20
+ }
21
+ }
@@ -0,0 +1,35 @@
1
+ @use '@angular/material' as mat;
2
+ @use 'sass:map';
3
+
4
+ @mixin editor-component-theme($theme) {
5
+ $background: map.get($theme, background);
6
+ $foreground: map.get($theme, foreground);
7
+
8
+ .container {
9
+ background-color: mat.get-color-from-palette($background, editor-background);
10
+
11
+ .page {
12
+ background-color: mat.get-color-from-palette($background, page-background);
13
+ }
14
+ }
15
+
16
+ .drawer-container {
17
+ .mat-mdc-button {
18
+ border: 1px solid mat.get-color-from-palette($foreground, form-field-border);
19
+ }
20
+
21
+ .mat-button-toggle-button {
22
+ background-color: mat.get-color-from-palette($background, button-input-background);
23
+ color: mat.get-color-from-palette($foreground, button-input-text);
24
+ }
25
+
26
+ .mat-button-toggle-button:hover {
27
+ background-color: mat.get-color-from-palette($background, button-input-hover);
28
+ }
29
+
30
+ .mat-button-toggle-checked button {
31
+ background-color: mat.get-color-from-palette($background, button-input-checked);
32
+ color: mat.get-color-from-palette($foreground, button-toggle-checked);
33
+ }
34
+ }
35
+ }
@@ -0,0 +1,10 @@
1
+ @use '@angular/material' as mat;
2
+ @use 'sass:map';
3
+
4
+ @mixin element-toolbar-theme($theme) {
5
+ $background: map.get($theme, background);
6
+
7
+ .mat-mdc-raised-button:not(:disabled), .menu-items {
8
+ background-color: mat.get-color-from-palette($background, new-item-menu-background);
9
+ }
10
+ }
@@ -0,0 +1,106 @@
1
+ @use '@angular/material' as mat;
2
+ @use 'sass:map';
3
+
4
+ @mixin editor-header-component-theme($theme) {
5
+ $background: map.get($theme, background);
6
+ $foreground: map.get($theme, foreground);
7
+
8
+ app-editor-header {
9
+ background-color: mat.get-color-from-palette($background, page-header);
10
+
11
+ .file-name {
12
+ color: mat.get-color-from-palette($foreground, text);
13
+ }
14
+ }
15
+
16
+ .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text {
17
+ color: unset;
18
+ }
19
+
20
+ div.mat-mdc-select-panel {
21
+ background-color: mat.get-color-from-palette($background, new-item-menu-background);
22
+
23
+ .mat-mdc-option.mdc-list-item--selected,
24
+ .mat-mdc-option:hover {
25
+ background-color: mat.get-color-from-palette($background, new-item-menu-hover);
26
+ }
27
+ }
28
+
29
+ .mat-mdc-menu-content {
30
+ button {
31
+ .mat-mdc-menu-submenu-icon {
32
+ color: mat.get-color-from-palette($foreground, secondary-text);
33
+ }
34
+ }
35
+
36
+ button:hover {
37
+ background-color: mat.get-color-from-palette($background, focused-button);
38
+
39
+ .mat-mdc-menu-submenu-icon {
40
+ color: mat.get-color-from-palette($foreground, text);
41
+ }
42
+ }
43
+
44
+ #editor-header-menu-item-print, #editor-header-menu-item-redo, #editor-header-menu-item-paste, #editor-header-menu-item-link, #editor-header-menu-item-image {
45
+ border-bottom-color: mat.get-color-from-palette($background, new-item-menu-hover);
46
+ }
47
+ }
48
+
49
+ .hot-keys {
50
+ color: mat.get-color-from-palette($foreground, secondary-text);
51
+ }
52
+
53
+ app-editor-header .editor-mode {
54
+ border-color: mat.get-color-from-palette($foreground, menu-separator);
55
+ }
56
+
57
+ .item-text {
58
+ color: mat.get-color-from-palette($foreground, secondary-text);
59
+ }
60
+
61
+ .separator {
62
+ border-color: mat.get-color-from-palette($foreground, text);
63
+ }
64
+
65
+ .mat-mdc-select-arrow svg {
66
+ color: mat.get-color-from-palette($foreground, text);
67
+ }
68
+
69
+ .list-marker, .list-number {
70
+ mat-icon {
71
+ stroke: mat.get-color-from-palette($foreground, numbering-line);
72
+
73
+ .line {
74
+ fill: mat.get-color-from-palette($foreground, numbering-line);
75
+ }
76
+
77
+ .bullet {
78
+ stroke: mat.get-color-from-palette($foreground, numbering-bullet);
79
+ }
80
+
81
+ .filled {
82
+ fill: mat.get-color-from-palette($foreground, numbering-bullet);
83
+ }
84
+ }
85
+
86
+ mat-icon:hover {
87
+ background-color: mat.get-color-from-palette($background, numbering-hover);
88
+ }
89
+ }
90
+
91
+ .list-number mat-icon svg path {
92
+ fill: mat.get-color-from-palette($foreground, text);
93
+ }
94
+
95
+ .mat-mdc-menu-panel .mat-mdc-menu-content {
96
+ .list-icon, .list-number {
97
+ .selected {
98
+ border-color: mat.get-color-from-palette($foreground, text-accent-secondary)!important;
99
+ }
100
+
101
+ .selected:hover {
102
+ border-color: mat.get-color-from-palette($foreground, text-accent-secondary);
103
+ }
104
+ }
105
+ }
106
+ }
@@ -0,0 +1,33 @@
1
+ @use '@angular/material' as mat;
2
+ @use 'sass:map';
3
+
4
+ @mixin editor-toolbar-component($theme) {
5
+ $foreground: map.get($theme, foreground);
6
+ $background: map.get($theme, background);
7
+
8
+ app-editor-toolbar {
9
+ background-color: mat.get-color-from-palette($background, editor-toolbar);
10
+ border-color: mat.get-color-from-palette($foreground, editor-toolbar-border);
11
+
12
+ input {
13
+ background-color: mat.get-color-from-palette($background, editor-toolbar);
14
+ color: mat.get-color-from-palette($foreground, text);
15
+ }
16
+
17
+ mat-button-toggle {
18
+ background-color: mat.get-color-from-palette($background, editor-toolbar);
19
+ }
20
+
21
+ .mat-button-toggle-checked mat-icon {
22
+ color: mat.get-color-from-palette($foreground, selected-button-icon);
23
+ }
24
+
25
+ button:hover {
26
+ background-color: mat.get-color-from-palette($background, focused-button);
27
+ }
28
+
29
+ .separator {
30
+ border-color: mat.get-color-from-palette($foreground, text);
31
+ }
32
+ }
33
+ }
@@ -0,0 +1,29 @@
1
+ @use '@angular/material' as mat;
2
+ @use 'sass:map';
3
+
4
+ @mixin numbering-component($theme) {
5
+ $foreground: map.get($theme, foreground);
6
+ $background: map.get($theme, background);
7
+
8
+ .list-marker, .list-number {
9
+ mat-icon {
10
+ stroke: mat.get-color-from-palette($foreground, numbering-line);
11
+
12
+ .line {
13
+ fill: mat.get-color-from-palette($foreground, numbering-line);
14
+ }
15
+
16
+ .bullet {
17
+ stroke: mat.get-color-from-palette($foreground, numbering-bullet);
18
+ }
19
+
20
+ .filled {
21
+ fill: mat.get-color-from-palette($foreground, numbering-bullet);
22
+ }
23
+ }
24
+
25
+ mat-icon:hover {
26
+ background-color: mat.get-color-from-palette($background, numbering-hover);
27
+ }
28
+ }
29
+ }
@@ -0,0 +1,22 @@
1
+ @use '@angular/material' as mat;
2
+ @use 'sass:map';
3
+
4
+ @mixin insert-table-component($theme) {
5
+ $background: map.get($theme, background);
6
+ $foreground: map.get($theme, foreground);
7
+
8
+ app-insert-table {
9
+ background-color: mat.get-color-from-palette($background, page-header);
10
+ box-shadow: mat.get-color-from-palette($background, button-background, 0.12);
11
+
12
+ .cell {
13
+ border: 1px solid mat.get-color-from-palette($background, selected-disabled-button);
14
+ background-color: mat.get-color-from-palette($background, editor-background);
15
+
16
+ &.highlighted {
17
+ border-color: mat.get-color-from-palette($background, insert-table-cell-border-highlighted);
18
+ background-color: mat.get-color-from-palette($background, insert-table-cell-highlighted);
19
+ }
20
+ }
21
+ }
22
+ }