lean4monaco 1.0.46 → 1.1.0

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 (209) hide show
  1. package/README.md +75 -0
  2. package/dist/JuliaMono-Regular.ttf +0 -0
  3. package/dist/css/custom.css +7 -1
  4. package/dist/infowebview.d.ts +3 -4
  5. package/dist/infowebview.js +4 -4
  6. package/dist/lean4-infoview/codicon.ttf +0 -0
  7. package/dist/lean4-infoview/esm-shims/react-dom.d.ts +5 -0
  8. package/dist/lean4-infoview/esm-shims/react-jsx-runtime.d.ts +5 -0
  9. package/dist/lean4-infoview/esm-shims/react.d.ts +5 -0
  10. package/dist/lean4-infoview/index.css +4161 -0
  11. package/dist/lean4-infoview/index.d.ts +16 -0
  12. package/dist/lean4-infoview/index.development.js +37312 -0
  13. package/dist/lean4-infoview/index.production.min.js +1528 -0
  14. package/dist/lean4-infoview/infoview/collapsing.d.ts +12 -0
  15. package/dist/lean4-infoview/infoview/contexts.d.ts +10 -0
  16. package/dist/lean4-infoview/infoview/editorConnection.d.ts +22 -0
  17. package/dist/lean4-infoview/infoview/errors.d.ts +14 -0
  18. package/dist/lean4-infoview/infoview/event.d.ts +33 -0
  19. package/dist/lean4-infoview/infoview/goalLocation.d.ts +61 -0
  20. package/dist/lean4-infoview/infoview/goals.d.ts +46 -0
  21. package/dist/lean4-infoview/infoview/info.d.ts +18 -0
  22. package/dist/lean4-infoview/infoview/infos.d.ts +2 -0
  23. package/dist/lean4-infoview/infoview/interactiveCode.d.ts +19 -0
  24. package/dist/lean4-infoview/infoview/main.d.ts +13 -0
  25. package/dist/lean4-infoview/infoview/messages.d.ts +19 -0
  26. package/dist/lean4-infoview/infoview/rpcSessions.d.ts +11 -0
  27. package/dist/lean4-infoview/infoview/serverVersion.d.ts +10 -0
  28. package/dist/lean4-infoview/infoview/tooltips.d.ts +32 -0
  29. package/dist/lean4-infoview/infoview/traceExplorer.d.ts +11 -0
  30. package/dist/lean4-infoview/infoview/userWidget.d.ts +39 -0
  31. package/dist/lean4-infoview/infoview/util.d.ts +144 -0
  32. package/dist/lean4-infoview/loader.d.ts +20 -0
  33. package/dist/lean4-infoview/loader.development.js +1006 -0
  34. package/dist/lean4-infoview/loader.production.min.js +1 -0
  35. package/dist/lean4-infoview/react-dom.development.js +30537 -0
  36. package/dist/lean4-infoview/react-dom.production.min.js +21 -0
  37. package/dist/lean4-infoview/react-jsx-runtime.development.js +1362 -0
  38. package/dist/lean4-infoview/react-jsx-runtime.production.min.js +1 -0
  39. package/dist/lean4-infoview/react.development.js +2823 -0
  40. package/dist/lean4-infoview/react.production.min.js +1 -0
  41. package/dist/leanmonaco.js +5 -4
  42. package/dist/monaco-lean4/vscode-lean4/package.json +944 -0
  43. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.d.ts +9 -0
  44. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.js +20 -0
  45. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationHoverProvider.d.ts +12 -0
  46. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationHoverProvider.js +40 -0
  47. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.d.ts +20 -0
  48. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.js +79 -0
  49. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationConfig.d.ts +13 -0
  50. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationConfig.js +29 -0
  51. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.d.ts +28 -0
  52. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.js +124 -0
  53. package/dist/monaco-lean4/vscode-lean4/src/config.d.ts +33 -0
  54. package/dist/monaco-lean4/vscode-lean4/src/config.js +119 -0
  55. package/dist/monaco-lean4/vscode-lean4/src/diagnostics/setupNotifs.d.ts +27 -0
  56. package/dist/monaco-lean4/vscode-lean4/src/diagnostics/setupNotifs.js +133 -0
  57. package/dist/monaco-lean4/vscode-lean4/src/infoview.d.ts +69 -0
  58. package/dist/monaco-lean4/vscode-lean4/src/infoview.js +711 -0
  59. package/dist/monaco-lean4/vscode-lean4/src/leanclient.d.ts +67 -0
  60. package/dist/monaco-lean4/vscode-lean4/src/leanclient.js +443 -0
  61. package/dist/monaco-lean4/vscode-lean4/src/rpc.d.ts +16 -0
  62. package/dist/monaco-lean4/vscode-lean4/src/rpc.js +102 -0
  63. package/dist/monaco-lean4/vscode-lean4/src/taskgutter.d.ts +11 -0
  64. package/dist/monaco-lean4/vscode-lean4/src/taskgutter.js +130 -0
  65. package/dist/monaco-lean4/vscode-lean4/src/utils/batch.d.ts +37 -0
  66. package/dist/monaco-lean4/vscode-lean4/src/utils/batch.js +203 -0
  67. package/dist/monaco-lean4/vscode-lean4/src/utils/clientProvider.d.ts +41 -0
  68. package/dist/monaco-lean4/vscode-lean4/src/utils/clientProvider.js +205 -0
  69. package/dist/monaco-lean4/vscode-lean4/src/utils/converters.d.ts +16 -0
  70. package/dist/monaco-lean4/vscode-lean4/src/utils/converters.js +129 -0
  71. package/dist/monaco-lean4/vscode-lean4/src/utils/elan.d.ts +3 -0
  72. package/dist/monaco-lean4/vscode-lean4/src/utils/elan.js +4 -0
  73. package/dist/monaco-lean4/vscode-lean4/src/utils/envPath.d.ts +21 -0
  74. package/dist/monaco-lean4/vscode-lean4/src/utils/envPath.js +53 -0
  75. package/dist/monaco-lean4/vscode-lean4/src/utils/exturi.d.ts +35 -0
  76. package/dist/monaco-lean4/vscode-lean4/src/utils/exturi.js +136 -0
  77. package/dist/monaco-lean4/vscode-lean4/src/utils/fsHelper.d.ts +17 -0
  78. package/dist/monaco-lean4/vscode-lean4/src/utils/fsHelper.js +36 -0
  79. package/dist/monaco-lean4/vscode-lean4/src/utils/leanInstaller.d.ts +37 -0
  80. package/dist/monaco-lean4/vscode-lean4/src/utils/leanInstaller.js +210 -0
  81. package/dist/monaco-lean4/vscode-lean4/src/utils/logger.d.ts +7 -0
  82. package/dist/monaco-lean4/vscode-lean4/src/utils/logger.js +20 -0
  83. package/dist/monaco-lean4/vscode-lean4/src/utils/notifs.d.ts +24 -0
  84. package/dist/monaco-lean4/vscode-lean4/src/utils/notifs.js +110 -0
  85. package/dist/monaco-lean4/vscode-lean4/src/utils/projectInfo.d.ts +9 -0
  86. package/dist/monaco-lean4/vscode-lean4/src/utils/projectInfo.js +125 -0
  87. package/dist/monacoleanclient.d.ts +1 -2
  88. package/dist/monacoleanclient.js +3 -3
  89. package/dist/vscode-lean4/lean4-infoview/package.json +25 -23
  90. package/dist/vscode-lean4/lean4-infoview/src/infoview/highlightjs.css +210 -0
  91. package/dist/vscode-lean4/lean4-infoview/tsconfig.json +6 -2
  92. package/dist/vscode-lean4/lean4-infoview-api/package.json +1 -1
  93. package/dist/vscode-lean4/lean4-unicode-input/package.json +1 -1
  94. package/dist/vscode-lean4/lean4-unicode-input/src/abbreviations.json +12 -12
  95. package/dist/vscode-lean4/lean4-unicode-input-component/package.json +2 -2
  96. package/dist/vscode-lean4/package-lock.json +6129 -3245
  97. package/dist/vscode-lean4/vscode-lean4/language-configuration.json +1 -1
  98. package/dist/vscode-lean4/vscode-lean4/loogleview/static/index.css +19 -16
  99. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-dark.svg +91 -0
  100. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-dark.svg +114 -0
  101. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-light.svg +114 -0
  102. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-passthrough-dark.svg +109 -0
  103. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-passthrough-light.svg +109 -0
  104. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-init-dark.svg +100 -0
  105. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-init-light.svg +100 -0
  106. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-dark.svg +123 -0
  107. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-light.svg +123 -0
  108. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-passthrough-dark.svg +109 -0
  109. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-passthrough-light.svg +109 -0
  110. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-light.svg +91 -0
  111. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-dark.svg +123 -0
  112. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-light.svg +123 -0
  113. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-passthrough-dark.svg +118 -0
  114. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-passthrough-light.svg +118 -0
  115. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-dark.svg +138 -0
  116. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-i-passthrough-dark.svg +160 -0
  117. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-i-passthrough-light.svg +160 -0
  118. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-l-passthrough-dark.svg +158 -0
  119. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-l-passthrough-light.svg +158 -0
  120. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-light.svg +138 -0
  121. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-t-passthrough-dark.svg +169 -0
  122. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-t-passthrough-light.svg +169 -0
  123. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-dark.svg +147 -0
  124. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-i-passthrough-dark.svg +170 -0
  125. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-i-passthrough-light.svg +170 -0
  126. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-l-passthrough-dark.svg +167 -0
  127. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-l-passthrough-light.svg +167 -0
  128. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-light.svg +147 -0
  129. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-t-passthrough-dark.svg +179 -0
  130. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-t-passthrough-light.svg +179 -0
  131. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-dark.svg +165 -0
  132. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-i-passthrough-dark.svg +187 -0
  133. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-i-passthrough-light.svg +187 -0
  134. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-l-passthrough-dark.svg +185 -0
  135. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-l-passthrough-light.svg +185 -0
  136. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-light.svg +165 -0
  137. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-t-passthrough-dark.svg +196 -0
  138. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-t-passthrough-light.svg +196 -0
  139. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-dark.svg +184 -0
  140. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-i-passthrough-dark.svg +206 -0
  141. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-i-passthrough-light.svg +206 -0
  142. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-l-passthrough-dark.svg +204 -0
  143. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-l-passthrough-light.svg +204 -0
  144. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-light.svg +184 -0
  145. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-t-passthrough-dark.svg +215 -0
  146. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-t-passthrough-light.svg +215 -0
  147. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-dark.svg +132 -0
  148. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-i-passthrough-dark.svg +154 -0
  149. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-i-passthrough-light.svg +154 -0
  150. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-l-passthrough-dark.svg +152 -0
  151. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-l-passthrough-light.svg +152 -0
  152. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-light.svg +132 -0
  153. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-t-passthrough-dark.svg +163 -0
  154. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-t-passthrough-light.svg +163 -0
  155. package/dist/vscode-lean4/vscode-lean4/moogleview/static/index.css +198 -0
  156. package/dist/vscode-lean4/vscode-lean4/moogleview/tsconfig.json +10 -0
  157. package/dist/vscode-lean4/vscode-lean4/package.json +638 -18
  158. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.d.ts +2 -2
  159. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.js +2 -2
  160. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.d.ts +2 -3
  161. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.js +3 -5
  162. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.d.ts +1 -2
  163. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.js +4 -8
  164. package/dist/vscode-lean4/vscode-lean4/src/config.d.ts +14 -1
  165. package/dist/vscode-lean4/vscode-lean4/src/config.js +56 -5
  166. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnoser.d.ts +36 -5
  167. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnoser.js +59 -23
  168. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnostics.d.ts +22 -17
  169. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnostics.js +182 -119
  170. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupNotifs.d.ts +33 -20
  171. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupNotifs.js +235 -89
  172. package/dist/vscode-lean4/vscode-lean4/src/infoview.d.ts +7 -18
  173. package/dist/vscode-lean4/vscode-lean4/src/infoview.js +217 -102
  174. package/dist/vscode-lean4/vscode-lean4/src/leanclient.d.ts +12 -7
  175. package/dist/vscode-lean4/vscode-lean4/src/leanclient.js +187 -64
  176. package/dist/vscode-lean4/vscode-lean4/src/taskgutter.d.ts +35 -3
  177. package/dist/vscode-lean4/vscode-lean4/src/taskgutter.js +533 -93
  178. package/dist/vscode-lean4/vscode-lean4/src/utils/batch.d.ts +12 -4
  179. package/dist/vscode-lean4/vscode-lean4/src/utils/batch.js +78 -72
  180. package/dist/vscode-lean4/vscode-lean4/src/utils/clientProvider.d.ts +9 -9
  181. package/dist/vscode-lean4/vscode-lean4/src/utils/clientProvider.js +121 -77
  182. package/dist/vscode-lean4/vscode-lean4/src/utils/converters.d.ts +15 -0
  183. package/dist/vscode-lean4/vscode-lean4/src/utils/converters.js +9 -0
  184. package/dist/vscode-lean4/vscode-lean4/src/utils/elan.d.ts +179 -1
  185. package/dist/vscode-lean4/vscode-lean4/src/utils/elan.js +422 -3
  186. package/dist/vscode-lean4/vscode-lean4/src/utils/exturi.d.ts +3 -1
  187. package/dist/vscode-lean4/vscode-lean4/src/utils/exturi.js +11 -11
  188. package/dist/vscode-lean4/vscode-lean4/src/utils/groupBy.d.ts +2 -0
  189. package/dist/vscode-lean4/vscode-lean4/src/utils/groupBy.js +17 -0
  190. package/dist/vscode-lean4/vscode-lean4/src/utils/internalErrors.d.ts +2 -0
  191. package/dist/vscode-lean4/vscode-lean4/src/utils/internalErrors.js +35 -0
  192. package/dist/vscode-lean4/vscode-lean4/src/utils/leanCmdRunner.d.ts +34 -0
  193. package/dist/vscode-lean4/vscode-lean4/src/utils/leanCmdRunner.js +249 -0
  194. package/dist/vscode-lean4/vscode-lean4/src/utils/leanEditorProvider.d.ts +83 -0
  195. package/dist/vscode-lean4/vscode-lean4/src/utils/leanEditorProvider.js +323 -0
  196. package/dist/vscode-lean4/vscode-lean4/src/utils/leanInstaller.d.ts +41 -12
  197. package/dist/vscode-lean4/vscode-lean4/src/utils/leanInstaller.js +245 -128
  198. package/dist/vscode-lean4/vscode-lean4/src/utils/notifs.d.ts +27 -22
  199. package/dist/vscode-lean4/vscode-lean4/src/utils/notifs.js +177 -82
  200. package/dist/vscode-lean4/vscode-lean4/src/utils/projectInfo.d.ts +11 -4
  201. package/dist/vscode-lean4/vscode-lean4/src/utils/projectInfo.js +18 -16
  202. package/dist/vscode-lean4/vscode-lean4/src/utils/semverRegex.d.ts +1 -0
  203. package/dist/vscode-lean4/vscode-lean4/src/utils/semverRegex.js +2 -0
  204. package/dist/vscode-lean4/vscode-lean4/src/utils/viewColumn.d.ts +3 -0
  205. package/dist/vscode-lean4/vscode-lean4/src/utils/viewColumn.js +22 -0
  206. package/dist/vscode-lean4/vscode-lean4/tsconfig.json +2 -1
  207. package/dist/vscode-lean4/vscode-lean4/webview/tsconfig.json +3 -1
  208. package/dist/vscode.css +7 -0
  209. package/package.json +7 -5
@@ -0,0 +1,100 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="currentColor"
7
+ version="1.1"
8
+ id="svg1"
9
+ sodipodi:docname="error-init-dark.svg"
10
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
11
+ inkscape:export-filename="error-t-passthrough-light-2.svg"
12
+ inkscape:export-xdpi="96"
13
+ inkscape:export-ydpi="96"
14
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
15
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ xmlns:svg="http://www.w3.org/2000/svg">
18
+ <defs
19
+ id="defs1">
20
+ <clipPath
21
+ clipPathUnits="userSpaceOnUse"
22
+ id="clipPath12">
23
+ <rect
24
+ style="display:inline;fill:none;stroke-width:1.00098"
25
+ id="rect12"
26
+ width="16"
27
+ height="16"
28
+ x="0"
29
+ y="0" />
30
+ </clipPath>
31
+ <clipPath
32
+ clipPathUnits="userSpaceOnUse"
33
+ id="clipPath13">
34
+ <rect
35
+ style="display:inline;fill:none;stroke-width:1.00098"
36
+ id="rect13"
37
+ width="16"
38
+ height="16"
39
+ x="0"
40
+ y="0" />
41
+ </clipPath>
42
+ <clipPath
43
+ clipPathUnits="userSpaceOnUse"
44
+ id="clipPath14">
45
+ <rect
46
+ style="display:inline;fill:none;stroke-width:1.00098"
47
+ id="rect14"
48
+ width="16"
49
+ height="16"
50
+ x="0"
51
+ y="0" />
52
+ </clipPath>
53
+ <clipPath
54
+ clipPathUnits="userSpaceOnUse"
55
+ id="clipPath15">
56
+ <rect
57
+ style="display:inline;fill:none;stroke-width:1.00098"
58
+ id="rect15"
59
+ width="16"
60
+ height="16"
61
+ x="0"
62
+ y="0" />
63
+ </clipPath>
64
+ </defs>
65
+ <sodipodi:namedview
66
+ id="namedview1"
67
+ pagecolor="#ffffff"
68
+ bordercolor="#000000"
69
+ borderopacity="0.25"
70
+ inkscape:showpageshadow="2"
71
+ inkscape:pageopacity="0.0"
72
+ inkscape:pagecheckerboard="0"
73
+ inkscape:deskcolor="#d1d1d1"
74
+ inkscape:zoom="45.254834"
75
+ inkscape:cx="-0.22097087"
76
+ inkscape:cy="8.1648736"
77
+ inkscape:window-width="3838"
78
+ inkscape:window-height="2128"
79
+ inkscape:window-x="0"
80
+ inkscape:window-y="0"
81
+ inkscape:window-maximized="0"
82
+ inkscape:current-layer="svg1" />
83
+ <path
84
+ fill-rule="evenodd"
85
+ clip-rule="evenodd"
86
+ d="m 8.5534798,2.5369052 c 1.247156,0.077947 2.4163642,0.7015251 3.2737842,1.5589451 1.013314,1.0912614 1.558945,2.4163647 1.558945,3.9753096 0,1.2471562 -0.467684,2.4163641 -1.247156,3.4296791 -0.779473,0.935366 -1.870734,1.636892 -3.1178896,1.870734 -1.247156,0.233841 -2.494312,0.07795 -3.5855736,-0.545631 C 4.3443284,12.202364 3.4869086,11.266997 3.0192251,10.097788 2.5515416,8.9285796 2.4735943,7.6034766 2.8633305,6.4342677 3.2530667,5.1871117 3.9545922,4.1737974 5.0458535,3.4722722 6.0591679,2.7707471 7.3063239,2.4589579 8.5534798,2.5369052 Z M 8.9432161,12.5921 c 1.0133143,-0.233842 1.9486809,-0.779472 2.6502059,-1.636892 0.623578,-0.85742 1.013314,-1.8707338 0.935367,-2.9619951 0,-1.2471563 -0.467684,-2.4943123 -1.325103,-3.351732 C 10.424213,3.8620084 9.4888469,3.3943249 8.3975852,3.3163776 7.3842712,3.2384303 6.2930095,3.4722722 5.4355898,4.0958503 4.57817,4.7194282 3.9545922,5.5768479 3.642803,6.6681096 3.331014,7.6814237 3.331014,8.7726853 3.7986976,9.7859997 c 0.4676835,1.0133133 1.1692086,1.7927863 2.1045757,2.3384173 0.935367,0.54563 2.0266284,0.701525 3.0399428,0.467683 z M 8.007849,7.6034766 9.8785831,5.6547952 10.424213,6.2004261 8.5534798,8.1491072 10.424213,10.097788 9.8785831,10.643419 8.007849,8.694738 6.1371152,10.643419 5.5914844,10.097788 7.4622184,8.1491072 5.5914844,6.2004261 6.1371152,5.6547952 Z"
87
+ id="path1"
88
+ style="fill:#f14c4c;fill-opacity:1;stroke-width:0.779473"
89
+ sodipodi:nodetypes="scscsssccssccscscsssccccccccccccc"
90
+ clip-path="url(#clipPath15)" />
91
+ <rect
92
+ style="fill:#f14c4c;fill-opacity:1;stroke-width:1.35524"
93
+ id="rect2"
94
+ width="1.0011008"
95
+ height="2.959403"
96
+ x="7.4994497"
97
+ y="13.324205"
98
+ clip-path="url(#clipPath14)"
99
+ transform="matrix(1,0,0,1.2320548,0,-3.7128776)" />
100
+ </svg>
@@ -0,0 +1,100 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="currentColor"
7
+ version="1.1"
8
+ id="svg1"
9
+ sodipodi:docname="error-init-light.svg"
10
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
11
+ inkscape:export-filename="error-t-passthrough-light-2.svg"
12
+ inkscape:export-xdpi="96"
13
+ inkscape:export-ydpi="96"
14
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
15
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ xmlns:svg="http://www.w3.org/2000/svg">
18
+ <defs
19
+ id="defs1">
20
+ <clipPath
21
+ clipPathUnits="userSpaceOnUse"
22
+ id="clipPath12">
23
+ <rect
24
+ style="display:inline;fill:none;stroke-width:1.00098"
25
+ id="rect12"
26
+ width="16"
27
+ height="16"
28
+ x="0"
29
+ y="0" />
30
+ </clipPath>
31
+ <clipPath
32
+ clipPathUnits="userSpaceOnUse"
33
+ id="clipPath13">
34
+ <rect
35
+ style="display:inline;fill:none;stroke-width:1.00098"
36
+ id="rect13"
37
+ width="16"
38
+ height="16"
39
+ x="0"
40
+ y="0" />
41
+ </clipPath>
42
+ <clipPath
43
+ clipPathUnits="userSpaceOnUse"
44
+ id="clipPath14">
45
+ <rect
46
+ style="display:inline;fill:none;stroke-width:1.00098"
47
+ id="rect14"
48
+ width="16"
49
+ height="16"
50
+ x="0"
51
+ y="0" />
52
+ </clipPath>
53
+ <clipPath
54
+ clipPathUnits="userSpaceOnUse"
55
+ id="clipPath15">
56
+ <rect
57
+ style="display:inline;fill:none;stroke-width:1.00098"
58
+ id="rect15"
59
+ width="16"
60
+ height="16"
61
+ x="0"
62
+ y="0" />
63
+ </clipPath>
64
+ </defs>
65
+ <sodipodi:namedview
66
+ id="namedview1"
67
+ pagecolor="#ffffff"
68
+ bordercolor="#000000"
69
+ borderopacity="0.25"
70
+ inkscape:showpageshadow="2"
71
+ inkscape:pageopacity="0.0"
72
+ inkscape:pagecheckerboard="0"
73
+ inkscape:deskcolor="#d1d1d1"
74
+ inkscape:zoom="45.254834"
75
+ inkscape:cx="-0.22097087"
76
+ inkscape:cy="8.1648736"
77
+ inkscape:window-width="3838"
78
+ inkscape:window-height="2128"
79
+ inkscape:window-x="0"
80
+ inkscape:window-y="0"
81
+ inkscape:window-maximized="0"
82
+ inkscape:current-layer="svg1" />
83
+ <path
84
+ fill-rule="evenodd"
85
+ clip-rule="evenodd"
86
+ d="m 8.5534798,2.5369052 c 1.247156,0.077947 2.4163642,0.7015251 3.2737842,1.5589451 1.013314,1.0912614 1.558945,2.4163647 1.558945,3.9753096 0,1.2471562 -0.467684,2.4163641 -1.247156,3.4296791 -0.779473,0.935366 -1.870734,1.636892 -3.1178896,1.870734 -1.247156,0.233841 -2.494312,0.07795 -3.5855736,-0.545631 C 4.3443284,12.202364 3.4869086,11.266997 3.0192251,10.097788 2.5515416,8.9285796 2.4735943,7.6034766 2.8633305,6.4342677 3.2530667,5.1871117 3.9545922,4.1737974 5.0458535,3.4722722 6.0591679,2.7707471 7.3063239,2.4589579 8.5534798,2.5369052 Z M 8.9432161,12.5921 c 1.0133143,-0.233842 1.9486809,-0.779472 2.6502059,-1.636892 0.623578,-0.85742 1.013314,-1.8707338 0.935367,-2.9619951 0,-1.2471563 -0.467684,-2.4943123 -1.325103,-3.351732 C 10.424213,3.8620084 9.4888469,3.3943249 8.3975852,3.3163776 7.3842712,3.2384303 6.2930095,3.4722722 5.4355898,4.0958503 4.57817,4.7194282 3.9545922,5.5768479 3.642803,6.6681096 3.331014,7.6814237 3.331014,8.7726853 3.7986976,9.7859997 c 0.4676835,1.0133133 1.1692086,1.7927863 2.1045757,2.3384173 0.935367,0.54563 2.0266284,0.701525 3.0399428,0.467683 z M 8.007849,7.6034766 9.8785831,5.6547952 10.424213,6.2004261 8.5534798,8.1491072 10.424213,10.097788 9.8785831,10.643419 8.007849,8.694738 6.1371152,10.643419 5.5914844,10.097788 7.4622184,8.1491072 5.5914844,6.2004261 6.1371152,5.6547952 Z"
87
+ id="path1"
88
+ style="fill:#e51400;fill-opacity:1;stroke-width:0.779473"
89
+ sodipodi:nodetypes="scscsssccssccscscsssccccccccccccc"
90
+ clip-path="url(#clipPath15)" />
91
+ <rect
92
+ style="fill:#e51400;fill-opacity:1;stroke-width:1.35524"
93
+ id="rect2"
94
+ width="1.0011008"
95
+ height="2.959403"
96
+ x="7.4994497"
97
+ y="13.324205"
98
+ clip-path="url(#clipPath14)"
99
+ transform="matrix(1,0,0,1.2320548,0,-3.7128776)" />
100
+ </svg>
@@ -0,0 +1,123 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="currentColor"
7
+ version="1.1"
8
+ id="svg1"
9
+ sodipodi:docname="error-l-dark.svg"
10
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
11
+ inkscape:export-filename="error-t-passthrough-light-2.svg"
12
+ inkscape:export-xdpi="96"
13
+ inkscape:export-ydpi="96"
14
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
15
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ xmlns:svg="http://www.w3.org/2000/svg">
18
+ <defs
19
+ id="defs1">
20
+ <clipPath
21
+ clipPathUnits="userSpaceOnUse"
22
+ id="clipPath12">
23
+ <rect
24
+ style="display:inline;fill:none;stroke-width:1.00098"
25
+ id="rect12"
26
+ width="16"
27
+ height="16"
28
+ x="0"
29
+ y="0" />
30
+ </clipPath>
31
+ <clipPath
32
+ clipPathUnits="userSpaceOnUse"
33
+ id="clipPath13">
34
+ <rect
35
+ style="display:inline;fill:none;stroke-width:1.00098"
36
+ id="rect13"
37
+ width="16"
38
+ height="16"
39
+ x="0"
40
+ y="0" />
41
+ </clipPath>
42
+ <clipPath
43
+ clipPathUnits="userSpaceOnUse"
44
+ id="clipPath14">
45
+ <rect
46
+ style="display:inline;fill:none;stroke-width:1.00098"
47
+ id="rect14"
48
+ width="16"
49
+ height="16"
50
+ x="0"
51
+ y="0" />
52
+ </clipPath>
53
+ <clipPath
54
+ clipPathUnits="userSpaceOnUse"
55
+ id="clipPath15">
56
+ <rect
57
+ style="display:inline;fill:none;stroke-width:1.00098"
58
+ id="rect15"
59
+ width="16"
60
+ height="16"
61
+ x="0"
62
+ y="0" />
63
+ </clipPath>
64
+ <clipPath
65
+ clipPathUnits="userSpaceOnUse"
66
+ id="clipPath16">
67
+ <rect
68
+ style="fill:none;stroke-width:0.58283"
69
+ id="rect17"
70
+ width="5.4350572"
71
+ height="16"
72
+ x="10.564943"
73
+ y="0" />
74
+ </clipPath>
75
+ <clipPath
76
+ clipPathUnits="userSpaceOnUse"
77
+ id="clipPath17">
78
+ <rect
79
+ style="fill:none;stroke-width:0.43627"
80
+ id="rect18"
81
+ width="16"
82
+ height="3.0452998"
83
+ x="0"
84
+ y="0" />
85
+ </clipPath>
86
+ </defs>
87
+ <sodipodi:namedview
88
+ id="namedview1"
89
+ pagecolor="#ffffff"
90
+ bordercolor="#000000"
91
+ borderopacity="0.25"
92
+ inkscape:showpageshadow="2"
93
+ inkscape:pageopacity="0.0"
94
+ inkscape:pagecheckerboard="0"
95
+ inkscape:deskcolor="#d1d1d1"
96
+ inkscape:zoom="45.254834"
97
+ inkscape:cx="-5.977262"
98
+ inkscape:cy="12.761068"
99
+ inkscape:window-width="3838"
100
+ inkscape:window-height="2128"
101
+ inkscape:window-x="0"
102
+ inkscape:window-y="0"
103
+ inkscape:window-maximized="0"
104
+ inkscape:current-layer="svg1" />
105
+ <rect
106
+ style="fill:#f14c4c;fill-opacity:1;stroke-width:1.58139"
107
+ id="rect2-5"
108
+ width="1.001"
109
+ height="4.0295243"
110
+ x="7.4994497"
111
+ y="-0.93362951"
112
+ clip-path="url(#clipPath17)"
113
+ transform="scale(1,2.7903981)" />
114
+ <rect
115
+ style="fill:#f14c4c;fill-opacity:1;stroke-width:1.97609"
116
+ id="rect3"
117
+ width="4.3305449"
118
+ height="1"
119
+ x="13.114391"
120
+ y="7.5"
121
+ clip-path="url(#clipPath16)"
122
+ transform="matrix(2.9438512,0,0,1,-31.10162,0)" />
123
+ </svg>
@@ -0,0 +1,123 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="currentColor"
7
+ version="1.1"
8
+ id="svg1"
9
+ sodipodi:docname="error-l-light.svg"
10
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
11
+ inkscape:export-filename="error-t-passthrough-light-2.svg"
12
+ inkscape:export-xdpi="96"
13
+ inkscape:export-ydpi="96"
14
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
15
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ xmlns:svg="http://www.w3.org/2000/svg">
18
+ <defs
19
+ id="defs1">
20
+ <clipPath
21
+ clipPathUnits="userSpaceOnUse"
22
+ id="clipPath12">
23
+ <rect
24
+ style="display:inline;fill:none;stroke-width:1.00098"
25
+ id="rect12"
26
+ width="16"
27
+ height="16"
28
+ x="0"
29
+ y="0" />
30
+ </clipPath>
31
+ <clipPath
32
+ clipPathUnits="userSpaceOnUse"
33
+ id="clipPath13">
34
+ <rect
35
+ style="display:inline;fill:none;stroke-width:1.00098"
36
+ id="rect13"
37
+ width="16"
38
+ height="16"
39
+ x="0"
40
+ y="0" />
41
+ </clipPath>
42
+ <clipPath
43
+ clipPathUnits="userSpaceOnUse"
44
+ id="clipPath14">
45
+ <rect
46
+ style="display:inline;fill:none;stroke-width:1.00098"
47
+ id="rect14"
48
+ width="16"
49
+ height="16"
50
+ x="0"
51
+ y="0" />
52
+ </clipPath>
53
+ <clipPath
54
+ clipPathUnits="userSpaceOnUse"
55
+ id="clipPath15">
56
+ <rect
57
+ style="display:inline;fill:none;stroke-width:1.00098"
58
+ id="rect15"
59
+ width="16"
60
+ height="16"
61
+ x="0"
62
+ y="0" />
63
+ </clipPath>
64
+ <clipPath
65
+ clipPathUnits="userSpaceOnUse"
66
+ id="clipPath16">
67
+ <rect
68
+ style="fill:none;stroke-width:0.58283"
69
+ id="rect17"
70
+ width="5.4350572"
71
+ height="16"
72
+ x="10.564943"
73
+ y="0" />
74
+ </clipPath>
75
+ <clipPath
76
+ clipPathUnits="userSpaceOnUse"
77
+ id="clipPath17">
78
+ <rect
79
+ style="fill:none;stroke-width:0.43627"
80
+ id="rect18"
81
+ width="16"
82
+ height="3.0452998"
83
+ x="0"
84
+ y="0" />
85
+ </clipPath>
86
+ </defs>
87
+ <sodipodi:namedview
88
+ id="namedview1"
89
+ pagecolor="#ffffff"
90
+ bordercolor="#000000"
91
+ borderopacity="0.25"
92
+ inkscape:showpageshadow="2"
93
+ inkscape:pageopacity="0.0"
94
+ inkscape:pagecheckerboard="0"
95
+ inkscape:deskcolor="#d1d1d1"
96
+ inkscape:zoom="45.254834"
97
+ inkscape:cx="-5.9662135"
98
+ inkscape:cy="12.761068"
99
+ inkscape:window-width="3838"
100
+ inkscape:window-height="2128"
101
+ inkscape:window-x="0"
102
+ inkscape:window-y="0"
103
+ inkscape:window-maximized="0"
104
+ inkscape:current-layer="svg1" />
105
+ <rect
106
+ style="fill:#e51400;fill-opacity:1;stroke-width:1.58139"
107
+ id="rect2-5"
108
+ width="1.001"
109
+ height="4.0295243"
110
+ x="7.4994497"
111
+ y="-0.93362951"
112
+ clip-path="url(#clipPath17)"
113
+ transform="scale(1,2.7903981)" />
114
+ <rect
115
+ style="fill:#e51400;fill-opacity:1;stroke-width:1.97609"
116
+ id="rect3"
117
+ width="4.3305449"
118
+ height="1"
119
+ x="13.114391"
120
+ y="7.5"
121
+ clip-path="url(#clipPath16)"
122
+ transform="matrix(2.9438512,0,0,1,-31.10162,0)" />
123
+ </svg>
@@ -0,0 +1,109 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="currentColor"
7
+ version="1.1"
8
+ id="svg1"
9
+ sodipodi:docname="error-l-passthrough-dark.svg"
10
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
11
+ inkscape:export-filename="error-t-passthrough-light-2.svg"
12
+ inkscape:export-xdpi="96"
13
+ inkscape:export-ydpi="96"
14
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
15
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ xmlns:svg="http://www.w3.org/2000/svg">
18
+ <defs
19
+ id="defs1">
20
+ <clipPath
21
+ clipPathUnits="userSpaceOnUse"
22
+ id="clipPath12">
23
+ <rect
24
+ style="display:inline;fill:none;stroke-width:1.00098"
25
+ id="rect12"
26
+ width="16"
27
+ height="16"
28
+ x="0"
29
+ y="0" />
30
+ </clipPath>
31
+ <clipPath
32
+ clipPathUnits="userSpaceOnUse"
33
+ id="clipPath13">
34
+ <rect
35
+ style="display:inline;fill:none;stroke-width:1.00098"
36
+ id="rect13"
37
+ width="16"
38
+ height="16"
39
+ x="0"
40
+ y="0" />
41
+ </clipPath>
42
+ <clipPath
43
+ clipPathUnits="userSpaceOnUse"
44
+ id="clipPath14">
45
+ <rect
46
+ style="display:inline;fill:none;stroke-width:1.00098"
47
+ id="rect14"
48
+ width="16"
49
+ height="16"
50
+ x="0"
51
+ y="0" />
52
+ </clipPath>
53
+ <clipPath
54
+ clipPathUnits="userSpaceOnUse"
55
+ id="clipPath15">
56
+ <rect
57
+ style="display:inline;fill:none;stroke-width:1.00098"
58
+ id="rect15"
59
+ width="16"
60
+ height="16"
61
+ x="0"
62
+ y="0" />
63
+ </clipPath>
64
+ </defs>
65
+ <sodipodi:namedview
66
+ id="namedview1"
67
+ pagecolor="#ffffff"
68
+ bordercolor="#000000"
69
+ borderopacity="0.25"
70
+ inkscape:showpageshadow="2"
71
+ inkscape:pageopacity="0.0"
72
+ inkscape:pagecheckerboard="0"
73
+ inkscape:deskcolor="#d1d1d1"
74
+ inkscape:zoom="45.254834"
75
+ inkscape:cx="-0.23201941"
76
+ inkscape:cy="8.1648736"
77
+ inkscape:window-width="3838"
78
+ inkscape:window-height="2128"
79
+ inkscape:window-x="0"
80
+ inkscape:window-y="0"
81
+ inkscape:window-maximized="0"
82
+ inkscape:current-layer="svg1" />
83
+ <path
84
+ fill-rule="evenodd"
85
+ clip-rule="evenodd"
86
+ d="m 8.5534798,2.5369052 c 1.247156,0.077947 2.4163642,0.7015251 3.2737842,1.5589451 1.013314,1.0912614 1.558945,2.4163647 1.558945,3.9753096 0,1.2471562 -0.467684,2.4163641 -1.247156,3.4296791 -0.779473,0.935366 -1.870734,1.636892 -3.1178896,1.870734 -1.247156,0.233841 -2.494312,0.07795 -3.5855736,-0.545631 C 4.3443284,12.202364 3.4869086,11.266997 3.0192251,10.097788 2.5515416,8.9285796 2.4735943,7.6034766 2.8633305,6.4342677 3.2530667,5.1871117 3.9545922,4.1737974 5.0458535,3.4722722 6.0591679,2.7707471 7.3063239,2.4589579 8.5534798,2.5369052 Z M 8.9432161,12.5921 c 1.0133143,-0.233842 1.9486809,-0.779472 2.6502059,-1.636892 0.623578,-0.85742 1.013314,-1.8707338 0.935367,-2.9619951 0,-1.2471563 -0.467684,-2.4943123 -1.325103,-3.351732 C 10.424213,3.8620084 9.4888469,3.3943249 8.3975852,3.3163776 7.3842712,3.2384303 6.2930095,3.4722722 5.4355898,4.0958503 4.57817,4.7194282 3.9545922,5.5768479 3.642803,6.6681096 3.331014,7.6814237 3.331014,8.7726853 3.7986976,9.7859997 c 0.4676835,1.0133133 1.1692086,1.7927863 2.1045757,2.3384173 0.935367,0.54563 2.0266284,0.701525 3.0399428,0.467683 z M 8.007849,7.6034766 9.8785831,5.6547952 10.424213,6.2004261 8.5534798,8.1491072 10.424213,10.097788 9.8785831,10.643419 8.007849,8.694738 6.1371152,10.643419 5.5914844,10.097788 7.4622184,8.1491072 5.5914844,6.2004261 6.1371152,5.6547952 Z"
87
+ id="path1"
88
+ style="fill:#f14c4c;fill-opacity:1;stroke-width:0.779473"
89
+ sodipodi:nodetypes="scscsssccssccscscsssccccccccccccc"
90
+ clip-path="url(#clipPath15)" />
91
+ <rect
92
+ style="fill:#f14c4c;fill-opacity:1;stroke-width:1.58139"
93
+ id="rect2-5"
94
+ width="1.0011008"
95
+ height="4.0295243"
96
+ x="7.4994497"
97
+ y="-0.93362951"
98
+ clip-path="url(#clipPath13)"
99
+ transform="scale(1,1.0638267)" />
100
+ <rect
101
+ style="fill:#f14c4c;fill-opacity:1;stroke-width:1.97609"
102
+ id="rect3"
103
+ width="4.3305449"
104
+ height="1"
105
+ x="13.114391"
106
+ y="7.5"
107
+ clip-path="url(#clipPath12)"
108
+ transform="matrix(1.1942224,0,0,1,-3.1075589,0)" />
109
+ </svg>
@@ -0,0 +1,109 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="currentColor"
7
+ version="1.1"
8
+ id="svg1"
9
+ sodipodi:docname="error-l-passthrough-light.svg"
10
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
11
+ inkscape:export-filename="error-t-passthrough-light-2.svg"
12
+ inkscape:export-xdpi="96"
13
+ inkscape:export-ydpi="96"
14
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
15
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ xmlns:svg="http://www.w3.org/2000/svg">
18
+ <defs
19
+ id="defs1">
20
+ <clipPath
21
+ clipPathUnits="userSpaceOnUse"
22
+ id="clipPath12">
23
+ <rect
24
+ style="display:inline;fill:none;stroke-width:1.00098"
25
+ id="rect12"
26
+ width="16"
27
+ height="16"
28
+ x="0"
29
+ y="0" />
30
+ </clipPath>
31
+ <clipPath
32
+ clipPathUnits="userSpaceOnUse"
33
+ id="clipPath13">
34
+ <rect
35
+ style="display:inline;fill:none;stroke-width:1.00098"
36
+ id="rect13"
37
+ width="16"
38
+ height="16"
39
+ x="0"
40
+ y="0" />
41
+ </clipPath>
42
+ <clipPath
43
+ clipPathUnits="userSpaceOnUse"
44
+ id="clipPath14">
45
+ <rect
46
+ style="display:inline;fill:none;stroke-width:1.00098"
47
+ id="rect14"
48
+ width="16"
49
+ height="16"
50
+ x="0"
51
+ y="0" />
52
+ </clipPath>
53
+ <clipPath
54
+ clipPathUnits="userSpaceOnUse"
55
+ id="clipPath15">
56
+ <rect
57
+ style="display:inline;fill:none;stroke-width:1.00098"
58
+ id="rect15"
59
+ width="16"
60
+ height="16"
61
+ x="0"
62
+ y="0" />
63
+ </clipPath>
64
+ </defs>
65
+ <sodipodi:namedview
66
+ id="namedview1"
67
+ pagecolor="#ffffff"
68
+ bordercolor="#000000"
69
+ borderopacity="0.25"
70
+ inkscape:showpageshadow="2"
71
+ inkscape:pageopacity="0.0"
72
+ inkscape:pagecheckerboard="0"
73
+ inkscape:deskcolor="#d1d1d1"
74
+ inkscape:zoom="45.254834"
75
+ inkscape:cx="-0.22097087"
76
+ inkscape:cy="8.1648736"
77
+ inkscape:window-width="3838"
78
+ inkscape:window-height="2128"
79
+ inkscape:window-x="0"
80
+ inkscape:window-y="0"
81
+ inkscape:window-maximized="0"
82
+ inkscape:current-layer="svg1" />
83
+ <path
84
+ fill-rule="evenodd"
85
+ clip-rule="evenodd"
86
+ d="m 8.5534798,2.5369052 c 1.247156,0.077947 2.4163642,0.7015251 3.2737842,1.5589451 1.013314,1.0912614 1.558945,2.4163647 1.558945,3.9753096 0,1.2471562 -0.467684,2.4163641 -1.247156,3.4296791 -0.779473,0.935366 -1.870734,1.636892 -3.1178896,1.870734 -1.247156,0.233841 -2.494312,0.07795 -3.5855736,-0.545631 C 4.3443284,12.202364 3.4869086,11.266997 3.0192251,10.097788 2.5515416,8.9285796 2.4735943,7.6034766 2.8633305,6.4342677 3.2530667,5.1871117 3.9545922,4.1737974 5.0458535,3.4722722 6.0591679,2.7707471 7.3063239,2.4589579 8.5534798,2.5369052 Z M 8.9432161,12.5921 c 1.0133143,-0.233842 1.9486809,-0.779472 2.6502059,-1.636892 0.623578,-0.85742 1.013314,-1.8707338 0.935367,-2.9619951 0,-1.2471563 -0.467684,-2.4943123 -1.325103,-3.351732 C 10.424213,3.8620084 9.4888469,3.3943249 8.3975852,3.3163776 7.3842712,3.2384303 6.2930095,3.4722722 5.4355898,4.0958503 4.57817,4.7194282 3.9545922,5.5768479 3.642803,6.6681096 3.331014,7.6814237 3.331014,8.7726853 3.7986976,9.7859997 c 0.4676835,1.0133133 1.1692086,1.7927863 2.1045757,2.3384173 0.935367,0.54563 2.0266284,0.701525 3.0399428,0.467683 z M 8.007849,7.6034766 9.8785831,5.6547952 10.424213,6.2004261 8.5534798,8.1491072 10.424213,10.097788 9.8785831,10.643419 8.007849,8.694738 6.1371152,10.643419 5.5914844,10.097788 7.4622184,8.1491072 5.5914844,6.2004261 6.1371152,5.6547952 Z"
87
+ id="path1"
88
+ style="fill:#e51400;fill-opacity:1;stroke-width:0.779473"
89
+ sodipodi:nodetypes="scscsssccssccscscsssccccccccccccc"
90
+ clip-path="url(#clipPath15)" />
91
+ <rect
92
+ style="fill:#e51400;fill-opacity:1;stroke-width:1.58139"
93
+ id="rect2-5"
94
+ width="1.0011008"
95
+ height="4.0295243"
96
+ x="7.4994497"
97
+ y="-0.93362951"
98
+ clip-path="url(#clipPath13)"
99
+ transform="scale(1,1.0638267)" />
100
+ <rect
101
+ style="fill:#e51400;fill-opacity:1;stroke-width:1.97609"
102
+ id="rect3"
103
+ width="4.3305449"
104
+ height="1"
105
+ x="13.114391"
106
+ y="7.5"
107
+ clip-path="url(#clipPath12)"
108
+ transform="matrix(1.1942224,0,0,1,-3.1075589,0)" />
109
+ </svg>