@simonklee/opentui-tex-native-source 0.2.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 (529) hide show
  1. package/LICENSE +674 -0
  2. package/LICENSE-PROJECT +21 -0
  3. package/README.md +7 -0
  4. package/build.zig +112 -0
  5. package/build.zig.zon +12 -0
  6. package/native/lib.zig +280 -0
  7. package/native/nanosvg.c +4 -0
  8. package/native/vendor/.bootstrap-v5 +1 -0
  9. package/native/vendor/LICENSE-NANOSVG +18 -0
  10. package/native/vendor/microtex/.clang-format +26 -0
  11. package/native/vendor/microtex/.github/workflows/ubuntu.yml +92 -0
  12. package/native/vendor/microtex/.github/workflows/windows-gdi.yml +34 -0
  13. package/native/vendor/microtex/.github/workflows/windows-qt.yml +52 -0
  14. package/native/vendor/microtex/CMakeLists.txt +110 -0
  15. package/native/vendor/microtex/LICENSE +21 -0
  16. package/native/vendor/microtex/MicroTeXInstall.cmake +42 -0
  17. package/native/vendor/microtex/README.md +600 -0
  18. package/native/vendor/microtex/build.zig +209 -0
  19. package/native/vendor/microtex/clatexmath.wrap +6 -0
  20. package/native/vendor/microtex/doc/meson.build +38 -0
  21. package/native/vendor/microtex/doc/microtex-doc.toml.in +47 -0
  22. package/native/vendor/microtex/doc/microtex.svg +39 -0
  23. package/native/vendor/microtex/doc/urlmap.js +6 -0
  24. package/native/vendor/microtex/example/gtk/CMakeLists.txt +68 -0
  25. package/native/vendor/microtex/example/gtk/gtk_main.c +170 -0
  26. package/native/vendor/microtex/example/gtk/isamples.cpp +21 -0
  27. package/native/vendor/microtex/example/gtk/isamples.h +15 -0
  28. package/native/vendor/microtex/example/gtk/meson.build +27 -0
  29. package/native/vendor/microtex/example/gtk/microtex-gtk.gresource.xml +6 -0
  30. package/native/vendor/microtex/example/gtk/microtex-gtk.ui +117 -0
  31. package/native/vendor/microtex/example/gtkmm/CMakeLists.txt +19 -0
  32. package/native/vendor/microtex/example/gtkmm/gtkmm_main.cpp +531 -0
  33. package/native/vendor/microtex/example/gtkmm/meson.build +19 -0
  34. package/native/vendor/microtex/example/memcheck/CMakeLists.txt +12 -0
  35. package/native/vendor/microtex/example/memcheck/mem_check_main.cpp +154 -0
  36. package/native/vendor/microtex/example/qt/CMakeLists.txt +37 -0
  37. package/native/vendor/microtex/example/qt/meson.build +25 -0
  38. package/native/vendor/microtex/example/qt/qt_main.cpp +70 -0
  39. package/native/vendor/microtex/example/qt/qt_mainwindow.cpp +107 -0
  40. package/native/vendor/microtex/example/qt/qt_mainwindow.h +40 -0
  41. package/native/vendor/microtex/example/qt/qt_skiatexwidget.cpp +149 -0
  42. package/native/vendor/microtex/example/qt/qt_skiatexwidget.h +48 -0
  43. package/native/vendor/microtex/example/qt/qt_tex_render.h +15 -0
  44. package/native/vendor/microtex/example/qt/qt_texqmlitem.cpp +56 -0
  45. package/native/vendor/microtex/example/qt/qt_texqmlitem.h +31 -0
  46. package/native/vendor/microtex/example/qt/qt_texwidget.cpp +62 -0
  47. package/native/vendor/microtex/example/qt/qt_texwidget.h +31 -0
  48. package/native/vendor/microtex/example/qtpng/CMakeLists.txt +11 -0
  49. package/native/vendor/microtex/example/qtpng/latex2png.cpp +115 -0
  50. package/native/vendor/microtex/example/samples/samples.cpp +52 -0
  51. package/native/vendor/microtex/example/samples/samples.h +32 -0
  52. package/native/vendor/microtex/example/win32/CMakeLists.txt +15 -0
  53. package/native/vendor/microtex/example/win32/meson.build +18 -0
  54. package/native/vendor/microtex/example/win32/win32_main.cpp +375 -0
  55. package/native/vendor/microtex/githooks/pre-commit +19 -0
  56. package/native/vendor/microtex/githooks/pre-push +103 -0
  57. package/native/vendor/microtex/lib/CMakeLists.txt +234 -0
  58. package/native/vendor/microtex/lib/atom/atom.cpp +14 -0
  59. package/native/vendor/microtex/lib/atom/atom.h +96 -0
  60. package/native/vendor/microtex/lib/atom/atom_accent.cpp +115 -0
  61. package/native/vendor/microtex/lib/atom/atom_accent.h +53 -0
  62. package/native/vendor/microtex/lib/atom/atom_basic.cpp +146 -0
  63. package/native/vendor/microtex/lib/atom/atom_basic.h +273 -0
  64. package/native/vendor/microtex/lib/atom/atom_box.cpp +41 -0
  65. package/native/vendor/microtex/lib/atom/atom_box.h +70 -0
  66. package/native/vendor/microtex/lib/atom/atom_char.cpp +99 -0
  67. package/native/vendor/microtex/lib/atom/atom_char.h +147 -0
  68. package/native/vendor/microtex/lib/atom/atom_delim.cpp +65 -0
  69. package/native/vendor/microtex/lib/atom/atom_delim.h +58 -0
  70. package/native/vendor/microtex/lib/atom/atom_fence.cpp +65 -0
  71. package/native/vendor/microtex/lib/atom/atom_fence.h +56 -0
  72. package/native/vendor/microtex/lib/atom/atom_font.cpp +20 -0
  73. package/native/vendor/microtex/lib/atom/atom_font.h +49 -0
  74. package/native/vendor/microtex/lib/atom/atom_frac.cpp +101 -0
  75. package/native/vendor/microtex/lib/atom/atom_frac.h +42 -0
  76. package/native/vendor/microtex/lib/atom/atom_matrix.cpp +756 -0
  77. package/native/vendor/microtex/lib/atom/atom_matrix.h +268 -0
  78. package/native/vendor/microtex/lib/atom/atom_misc.cpp +230 -0
  79. package/native/vendor/microtex/lib/atom/atom_misc.h +200 -0
  80. package/native/vendor/microtex/lib/atom/atom_operator.cpp +51 -0
  81. package/native/vendor/microtex/lib/atom/atom_operator.h +41 -0
  82. package/native/vendor/microtex/lib/atom/atom_root.cpp +61 -0
  83. package/native/vendor/microtex/lib/atom/atom_root.h +27 -0
  84. package/native/vendor/microtex/lib/atom/atom_row.cpp +334 -0
  85. package/native/vendor/microtex/lib/atom/atom_row.h +176 -0
  86. package/native/vendor/microtex/lib/atom/atom_scripts.cpp +182 -0
  87. package/native/vendor/microtex/lib/atom/atom_scripts.h +52 -0
  88. package/native/vendor/microtex/lib/atom/atom_sideset.cpp +92 -0
  89. package/native/vendor/microtex/lib/atom/atom_sideset.h +24 -0
  90. package/native/vendor/microtex/lib/atom/atom_space.cpp +22 -0
  91. package/native/vendor/microtex/lib/atom/atom_space.h +38 -0
  92. package/native/vendor/microtex/lib/atom/atom_stack.cpp +117 -0
  93. package/native/vendor/microtex/lib/atom/atom_stack.h +103 -0
  94. package/native/vendor/microtex/lib/atom/atom_text.cpp +17 -0
  95. package/native/vendor/microtex/lib/atom/atom_text.h +33 -0
  96. package/native/vendor/microtex/lib/atom/atom_vrow.cpp +96 -0
  97. package/native/vendor/microtex/lib/atom/atom_vrow.h +47 -0
  98. package/native/vendor/microtex/lib/atom/atom_zstack.cpp +66 -0
  99. package/native/vendor/microtex/lib/atom/atom_zstack.h +37 -0
  100. package/native/vendor/microtex/lib/atom/colors_def.cpp +157 -0
  101. package/native/vendor/microtex/lib/atom/meson.build +50 -0
  102. package/native/vendor/microtex/lib/box/box.cpp +49 -0
  103. package/native/vendor/microtex/lib/box/box.h +184 -0
  104. package/native/vendor/microtex/lib/box/box_factory.cpp +162 -0
  105. package/native/vendor/microtex/lib/box/box_factory.h +24 -0
  106. package/native/vendor/microtex/lib/box/box_group.cpp +503 -0
  107. package/native/vendor/microtex/lib/box/box_group.h +285 -0
  108. package/native/vendor/microtex/lib/box/box_single.cpp +179 -0
  109. package/native/vendor/microtex/lib/box/box_single.h +157 -0
  110. package/native/vendor/microtex/lib/box/meson.build +15 -0
  111. package/native/vendor/microtex/lib/core/debug_config.cpp +3 -0
  112. package/native/vendor/microtex/lib/core/debug_config.h +24 -0
  113. package/native/vendor/microtex/lib/core/formula.cpp +180 -0
  114. package/native/vendor/microtex/lib/core/formula.h +137 -0
  115. package/native/vendor/microtex/lib/core/formula_def.cpp +167 -0
  116. package/native/vendor/microtex/lib/core/glue.cpp +108 -0
  117. package/native/vendor/microtex/lib/core/glue.h +55 -0
  118. package/native/vendor/microtex/lib/core/localized_num.cpp +51 -0
  119. package/native/vendor/microtex/lib/core/meson.build +19 -0
  120. package/native/vendor/microtex/lib/core/parser.cpp +874 -0
  121. package/native/vendor/microtex/lib/core/parser.h +306 -0
  122. package/native/vendor/microtex/lib/core/split.cpp +185 -0
  123. package/native/vendor/microtex/lib/core/split.h +40 -0
  124. package/native/vendor/microtex/lib/env/env.cpp +141 -0
  125. package/native/vendor/microtex/lib/env/env.h +221 -0
  126. package/native/vendor/microtex/lib/env/meson.build +11 -0
  127. package/native/vendor/microtex/lib/env/units.cpp +109 -0
  128. package/native/vendor/microtex/lib/env/units.h +61 -0
  129. package/native/vendor/microtex/lib/graphic/font_style.cpp +63 -0
  130. package/native/vendor/microtex/lib/graphic/font_style.h +61 -0
  131. package/native/vendor/microtex/lib/graphic/graphic.cpp +38 -0
  132. package/native/vendor/microtex/lib/graphic/graphic.h +314 -0
  133. package/native/vendor/microtex/lib/graphic/graphic_basic.cpp +44 -0
  134. package/native/vendor/microtex/lib/graphic/graphic_basic.h +131 -0
  135. package/native/vendor/microtex/lib/graphic/meson.build +13 -0
  136. package/native/vendor/microtex/lib/macro/macro.cpp +143 -0
  137. package/native/vendor/microtex/lib/macro/macro.h +155 -0
  138. package/native/vendor/microtex/lib/macro/macro_accent.cpp +50 -0
  139. package/native/vendor/microtex/lib/macro/macro_accent.h +61 -0
  140. package/native/vendor/microtex/lib/macro/macro_boxes.h +68 -0
  141. package/native/vendor/microtex/lib/macro/macro_colors.cpp +42 -0
  142. package/native/vendor/microtex/lib/macro/macro_colors.h +42 -0
  143. package/native/vendor/microtex/lib/macro/macro_decl.h +16 -0
  144. package/native/vendor/microtex/lib/macro/macro_def.cpp +418 -0
  145. package/native/vendor/microtex/lib/macro/macro_delims.cpp +56 -0
  146. package/native/vendor/microtex/lib/macro/macro_delims.h +73 -0
  147. package/native/vendor/microtex/lib/macro/macro_env.h +212 -0
  148. package/native/vendor/microtex/lib/macro/macro_fonts.cpp +53 -0
  149. package/native/vendor/microtex/lib/macro/macro_fonts.h +78 -0
  150. package/native/vendor/microtex/lib/macro/macro_frac.cpp +138 -0
  151. package/native/vendor/microtex/lib/macro/macro_frac.h +50 -0
  152. package/native/vendor/microtex/lib/macro/macro_misc.cpp +211 -0
  153. package/native/vendor/microtex/lib/macro/macro_misc.h +217 -0
  154. package/native/vendor/microtex/lib/macro/macro_scripts.cpp +32 -0
  155. package/native/vendor/microtex/lib/macro/macro_scripts.h +17 -0
  156. package/native/vendor/microtex/lib/macro/macro_sizes.h +110 -0
  157. package/native/vendor/microtex/lib/macro/macro_space.cpp +31 -0
  158. package/native/vendor/microtex/lib/macro/macro_space.h +17 -0
  159. package/native/vendor/microtex/lib/macro/macro_styles.cpp +45 -0
  160. package/native/vendor/microtex/lib/macro/macro_styles.h +22 -0
  161. package/native/vendor/microtex/lib/macro/macro_types.h +48 -0
  162. package/native/vendor/microtex/lib/macro/meson.build +33 -0
  163. package/native/vendor/microtex/lib/meson.build +102 -0
  164. package/native/vendor/microtex/lib/microtex.cpp +208 -0
  165. package/native/vendor/microtex/lib/microtex.h +225 -0
  166. package/native/vendor/microtex/lib/microtexConfig.cmake.in +2 -0
  167. package/native/vendor/microtex/lib/microtexapi.h +22 -0
  168. package/native/vendor/microtex/lib/microtexconfig.h.in +7 -0
  169. package/native/vendor/microtex/lib/microtexexport.h +31 -0
  170. package/native/vendor/microtex/lib/otf/clm.cpp +405 -0
  171. package/native/vendor/microtex/lib/otf/clm.h +61 -0
  172. package/native/vendor/microtex/lib/otf/fontsense.cpp +191 -0
  173. package/native/vendor/microtex/lib/otf/fontsense.h +20 -0
  174. package/native/vendor/microtex/lib/otf/glyph.cpp +53 -0
  175. package/native/vendor/microtex/lib/otf/glyph.h +384 -0
  176. package/native/vendor/microtex/lib/otf/math_consts.h +154 -0
  177. package/native/vendor/microtex/lib/otf/meson.build +18 -0
  178. package/native/vendor/microtex/lib/otf/otf.cpp +84 -0
  179. package/native/vendor/microtex/lib/otf/otf.h +177 -0
  180. package/native/vendor/microtex/lib/otf/otfconfig.h +32 -0
  181. package/native/vendor/microtex/lib/otf/path.cpp +187 -0
  182. package/native/vendor/microtex/lib/otf/path.h +120 -0
  183. package/native/vendor/microtex/lib/render/builder.cpp +68 -0
  184. package/native/vendor/microtex/lib/render/builder.h +73 -0
  185. package/native/vendor/microtex/lib/render/meson.build +11 -0
  186. package/native/vendor/microtex/lib/render/render.cpp +136 -0
  187. package/native/vendor/microtex/lib/render/render.h +59 -0
  188. package/native/vendor/microtex/lib/unimath/font_meta.h +22 -0
  189. package/native/vendor/microtex/lib/unimath/font_src.cpp +21 -0
  190. package/native/vendor/microtex/lib/unimath/font_src.h +61 -0
  191. package/native/vendor/microtex/lib/unimath/math_type.cpp +318 -0
  192. package/native/vendor/microtex/lib/unimath/math_type.h +105 -0
  193. package/native/vendor/microtex/lib/unimath/meson.build +18 -0
  194. package/native/vendor/microtex/lib/unimath/uni_char.cpp +121 -0
  195. package/native/vendor/microtex/lib/unimath/uni_char.h +109 -0
  196. package/native/vendor/microtex/lib/unimath/uni_font.cpp +248 -0
  197. package/native/vendor/microtex/lib/unimath/uni_font.h +139 -0
  198. package/native/vendor/microtex/lib/unimath/uni_symbol.cpp +2929 -0
  199. package/native/vendor/microtex/lib/unimath/uni_symbol.h +31 -0
  200. package/native/vendor/microtex/lib/utils/dict_tree.h +68 -0
  201. package/native/vendor/microtex/lib/utils/exceptions.h +61 -0
  202. package/native/vendor/microtex/lib/utils/log.h +34 -0
  203. package/native/vendor/microtex/lib/utils/meson.build +18 -0
  204. package/native/vendor/microtex/lib/utils/nums.h +24 -0
  205. package/native/vendor/microtex/lib/utils/string_utils.cpp +85 -0
  206. package/native/vendor/microtex/lib/utils/string_utils.h +130 -0
  207. package/native/vendor/microtex/lib/utils/types.h +152 -0
  208. package/native/vendor/microtex/lib/utils/utf.cpp +115 -0
  209. package/native/vendor/microtex/lib/utils/utf.h +58 -0
  210. package/native/vendor/microtex/lib/utils/utils.cpp +40 -0
  211. package/native/vendor/microtex/lib/utils/utils.h +88 -0
  212. package/native/vendor/microtex/lib/wrapper/byte_seq.cpp +46 -0
  213. package/native/vendor/microtex/lib/wrapper/byte_seq.h +70 -0
  214. package/native/vendor/microtex/lib/wrapper/callback.cpp +10 -0
  215. package/native/vendor/microtex/lib/wrapper/callback.h +72 -0
  216. package/native/vendor/microtex/lib/wrapper/cwrapper.cpp +206 -0
  217. package/native/vendor/microtex/lib/wrapper/cwrapper.h +305 -0
  218. package/native/vendor/microtex/lib/wrapper/graphic_wrapper.cpp +211 -0
  219. package/native/vendor/microtex/lib/wrapper/graphic_wrapper.h +159 -0
  220. package/native/vendor/microtex/lib/wrapper/meson.build +22 -0
  221. package/native/vendor/microtex/meson.build +75 -0
  222. package/native/vendor/microtex/meson_options.txt +29 -0
  223. package/native/vendor/microtex/platform/cairo/CMakeLists.txt +36 -0
  224. package/native/vendor/microtex/platform/cairo/graphic_cairo.cpp +384 -0
  225. package/native/vendor/microtex/platform/cairo/graphic_cairo.h +119 -0
  226. package/native/vendor/microtex/platform/cairo/meson.build +47 -0
  227. package/native/vendor/microtex/platform/cairo/microtex-cairoConfig.cmake.in +11 -0
  228. package/native/vendor/microtex/platform/flutter/microtex/.metadata +10 -0
  229. package/native/vendor/microtex/platform/flutter/microtex/CHANGELOG.md +3 -0
  230. package/native/vendor/microtex/platform/flutter/microtex/LICENSE +1 -0
  231. package/native/vendor/microtex/platform/flutter/microtex/README.md +15 -0
  232. package/native/vendor/microtex/platform/flutter/microtex/analysis_options.yaml +4 -0
  233. package/native/vendor/microtex/platform/flutter/microtex/android/build.gradle +56 -0
  234. package/native/vendor/microtex/platform/flutter/microtex/android/settings.gradle +1 -0
  235. package/native/vendor/microtex/platform/flutter/microtex/android/src/main/AndroidManifest.xml +3 -0
  236. package/native/vendor/microtex/platform/flutter/microtex/android/src/main/kotlin/io/nano/microtex/microtex/MicrotexPlugin.kt +35 -0
  237. package/native/vendor/microtex/platform/flutter/microtex/example/.metadata +10 -0
  238. package/native/vendor/microtex/platform/flutter/microtex/example/README.md +16 -0
  239. package/native/vendor/microtex/platform/flutter/microtex/example/analysis_options.yaml +31 -0
  240. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/build.gradle +68 -0
  241. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/debug/AndroidManifest.xml +7 -0
  242. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/AndroidManifest.xml +34 -0
  243. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/kotlin/io/nano/microtex/microtex_example/MainActivity.kt +6 -0
  244. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
  245. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
  246. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  247. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  248. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  249. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  250. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  251. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values/styles.xml +18 -0
  252. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values-night/styles.xml +18 -0
  253. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/profile/AndroidManifest.xml +7 -0
  254. package/native/vendor/microtex/platform/flutter/microtex/example/android/build.gradle +31 -0
  255. package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
  256. package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle.properties +3 -0
  257. package/native/vendor/microtex/platform/flutter/microtex/example/android/settings.gradle +11 -0
  258. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
  259. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Debug.xcconfig +2 -0
  260. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Release.xcconfig +2 -0
  261. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile +41 -0
  262. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile.lock +22 -0
  263. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/AppDelegate.swift +13 -0
  264. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
  265. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
  266. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
  267. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
  268. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
  269. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
  270. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
  271. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
  272. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
  273. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
  274. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
  275. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
  276. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
  277. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
  278. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
  279. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
  280. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
  281. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
  282. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
  283. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
  284. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
  285. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
  286. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/Main.storyboard +26 -0
  287. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Info.plist +49 -0
  288. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Runner-Bridging-Header.h +1 -0
  289. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.pbxproj +549 -0
  290. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  291. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  292. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  293. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
  294. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
  295. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  296. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  297. package/native/vendor/microtex/platform/flutter/microtex/example/lib/main.dart +23 -0
  298. package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_in_one.dart +0 -0
  299. package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_screen.dart +208 -0
  300. package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/convert_spans.dart +63 -0
  301. package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/string_ext.dart +10 -0
  302. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/cmp.dart +118 -0
  303. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/draggable.dart +75 -0
  304. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/rich.dart +23 -0
  305. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/split.dart +72 -0
  306. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_highlight_controller.dart +66 -0
  307. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_input_controller.dart +19 -0
  308. package/native/vendor/microtex/platform/flutter/microtex/example/linux/CMakeLists.txt +116 -0
  309. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/CMakeLists.txt +87 -0
  310. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.cc +15 -0
  311. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.h +15 -0
  312. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugins.cmake +24 -0
  313. package/native/vendor/microtex/platform/flutter/microtex/example/linux/main.cc +6 -0
  314. package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.cc +104 -0
  315. package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.h +18 -0
  316. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
  317. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
  318. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/GeneratedPluginRegistrant.swift +12 -0
  319. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile +40 -0
  320. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile.lock +22 -0
  321. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/AppDelegate.swift +9 -0
  322. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  323. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
  324. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
  325. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
  326. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
  327. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
  328. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
  329. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
  330. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
  331. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
  332. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Debug.xcconfig +2 -0
  333. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Release.xcconfig +2 -0
  334. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
  335. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/DebugProfile.entitlements +12 -0
  336. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Info.plist +32 -0
  337. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/MainFlutterWindow.swift +15 -0
  338. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Release.entitlements +8 -0
  339. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.pbxproj +633 -0
  340. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  341. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
  342. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
  343. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  344. package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.lock +191 -0
  345. package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.yaml +56 -0
  346. package/native/vendor/microtex/platform/flutter/microtex/example/test/widget_test.dart +26 -0
  347. package/native/vendor/microtex/platform/flutter/microtex/example/windows/CMakeLists.txt +95 -0
  348. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/CMakeLists.txt +103 -0
  349. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.cc +14 -0
  350. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.h +15 -0
  351. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugins.cmake +24 -0
  352. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/CMakeLists.txt +17 -0
  353. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/Runner.rc +121 -0
  354. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.cpp +61 -0
  355. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.h +33 -0
  356. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/main.cpp +43 -0
  357. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resource.h +16 -0
  358. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resources/app_icon.ico +0 -0
  359. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/runner.exe.manifest +20 -0
  360. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.cpp +64 -0
  361. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.h +19 -0
  362. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.cpp +245 -0
  363. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.h +98 -0
  364. package/native/vendor/microtex/platform/flutter/microtex/ios/Assets/.gitkeep +0 -0
  365. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.h +4 -0
  366. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.m +19 -0
  367. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/SwiftMicrotexPlugin.swift +14 -0
  368. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/dummy.h +4 -0
  369. package/native/vendor/microtex/platform/flutter/microtex/ios/microtex.podspec +27 -0
  370. package/native/vendor/microtex/platform/flutter/microtex/lib/microtex.dart +7 -0
  371. package/native/vendor/microtex/platform/flutter/microtex/lib/src/bindings.dart +218 -0
  372. package/native/vendor/microtex/platform/flutter/microtex/lib/src/bounds.dart +10 -0
  373. package/native/vendor/microtex/platform/flutter/microtex/lib/src/context.dart +205 -0
  374. package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontdesc.dart +14 -0
  375. package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontmeta.dart +14 -0
  376. package/native/vendor/microtex/platform/flutter/microtex/lib/src/pathcache.dart +17 -0
  377. package/native/vendor/microtex/platform/flutter/microtex/lib/src/render.dart +291 -0
  378. package/native/vendor/microtex/platform/flutter/microtex/lib/src/texstyle.dart +11 -0
  379. package/native/vendor/microtex/platform/flutter/microtex/lib/src/textlayout.dart +93 -0
  380. package/native/vendor/microtex/platform/flutter/microtex/lib/src/widget.dart +163 -0
  381. package/native/vendor/microtex/platform/flutter/microtex/linux/CMakeLists.txt +33 -0
  382. package/native/vendor/microtex/platform/flutter/microtex/linux/include/microtex/microtex_plugin.h +26 -0
  383. package/native/vendor/microtex/platform/flutter/microtex/linux/microtex_plugin.cc +70 -0
  384. package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/MicrotexPlugin.swift +20 -0
  385. package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/dummy.h +4 -0
  386. package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/microtex-Bridging-Header.h +1 -0
  387. package/native/vendor/microtex/platform/flutter/microtex/macos/microtex.podspec +26 -0
  388. package/native/vendor/microtex/platform/flutter/microtex/nativelib/CMakeLists.txt +44 -0
  389. package/native/vendor/microtex/platform/flutter/microtex/nativelib/builddarwin.sh +108 -0
  390. package/native/vendor/microtex/platform/flutter/microtex/pubspec.yaml +37 -0
  391. package/native/vendor/microtex/platform/flutter/microtex/test/microtex_test.dart +23 -0
  392. package/native/vendor/microtex/platform/flutter/microtex/windows/CMakeLists.txt +32 -0
  393. package/native/vendor/microtex/platform/flutter/microtex/windows/include/microtex/microtex_plugin.h +23 -0
  394. package/native/vendor/microtex/platform/flutter/microtex/windows/microtex_plugin.cpp +82 -0
  395. package/native/vendor/microtex/platform/gdi_win/CMakeLists.txt +20 -0
  396. package/native/vendor/microtex/platform/gdi_win/graphic_win32.cpp +352 -0
  397. package/native/vendor/microtex/platform/gdi_win/graphic_win32.h +137 -0
  398. package/native/vendor/microtex/platform/gdi_win/meson.build +39 -0
  399. package/native/vendor/microtex/platform/gtk/CMakeLists.txt +36 -0
  400. package/native/vendor/microtex/platform/gtk/meson.build +65 -0
  401. package/native/vendor/microtex/platform/gtk/microtex-gtkConfig.cmake.in +11 -0
  402. package/native/vendor/microtex/platform/gtk/microtexequation.cpp +708 -0
  403. package/native/vendor/microtex/platform/gtk/microtexequation.h +72 -0
  404. package/native/vendor/microtex/platform/qt/CMakeLists.txt +37 -0
  405. package/native/vendor/microtex/platform/qt/graphic_qt.cpp +355 -0
  406. package/native/vendor/microtex/platform/qt/graphic_qt.h +116 -0
  407. package/native/vendor/microtex/platform/qt/meson.build +38 -0
  408. package/native/vendor/microtex/platform/qt/microtex-qtConfig.cmake.in +7 -0
  409. package/native/vendor/microtex/platform/skia/CMakeLists.txt +46 -0
  410. package/native/vendor/microtex/platform/skia/graphic_skia.cpp +306 -0
  411. package/native/vendor/microtex/platform/skia/graphic_skia.h +125 -0
  412. package/native/vendor/microtex/platform/skia/microtex-skiaConfig.cmake.in +6 -0
  413. package/native/vendor/microtex/platform/wasm/CMakeLists.txt +38 -0
  414. package/native/vendor/microtex/platform/wasm/emscripten.cross +31 -0
  415. package/native/vendor/microtex/platform/wasm/main.cpp +15 -0
  416. package/native/vendor/microtex/platform/wasm/meson.build +8 -0
  417. package/native/vendor/microtex/platform/wasm/prebuild-example-meson.sh +21 -0
  418. package/native/vendor/microtex/platform/wasm/prebuild-example.sh +21 -0
  419. package/native/vendor/microtex/platform/wasm/prebuild-lib-meson.sh +28 -0
  420. package/native/vendor/microtex/platform/wasm/prebuild-lib.sh +31 -0
  421. package/native/vendor/microtex/platform/wasm/web/.babelrc +10 -0
  422. package/native/vendor/microtex/platform/wasm/web/example/examples.js +43 -0
  423. package/native/vendor/microtex/platform/wasm/web/example/hello.js +31 -0
  424. package/native/vendor/microtex/platform/wasm/web/example/index.html +55 -0
  425. package/native/vendor/microtex/platform/wasm/web/example/index.js +243 -0
  426. package/native/vendor/microtex/platform/wasm/web/example/styles.css +86 -0
  427. package/native/vendor/microtex/platform/wasm/web/example/utils.js +47 -0
  428. package/native/vendor/microtex/platform/wasm/web/lib/context.js +271 -0
  429. package/native/vendor/microtex/platform/wasm/web/lib/index.js +10 -0
  430. package/native/vendor/microtex/platform/wasm/web/lib/render.js +293 -0
  431. package/native/vendor/microtex/platform/wasm/web/lib/runtime.js +14 -0
  432. package/native/vendor/microtex/platform/wasm/web/lib/svg.js +237 -0
  433. package/native/vendor/microtex/platform/wasm/web/lib/textlayout.js +88 -0
  434. package/native/vendor/microtex/platform/wasm/web/package-lock.json +5931 -0
  435. package/native/vendor/microtex/platform/wasm/web/package.json +45 -0
  436. package/native/vendor/microtex/platform/wasm/web/publish-example.sh +17 -0
  437. package/native/vendor/microtex/platform/wasm/web/rollup.config.example.js +24 -0
  438. package/native/vendor/microtex/platform/wasm/web/rollup.config.lib.js +16 -0
  439. package/native/vendor/microtex/prebuilt/otf2clm.py +807 -0
  440. package/native/vendor/microtex/prebuilt/otf2clm.sh +9 -0
  441. package/native/vendor/microtex/prebuilt/preclms.sh +17 -0
  442. package/native/vendor/microtex/readme/example_bw_false.svg +680 -0
  443. package/native/vendor/microtex/readme/example_bw_true.svg +680 -0
  444. package/native/vendor/microtex/readme/example_cjk_trying.svg +54 -0
  445. package/native/vendor/microtex/readme/example_custom_symbols.svg +92 -0
  446. package/native/vendor/microtex/readme/example_debug.svg +764 -0
  447. package/native/vendor/microtex/readme/example_emoji.svg +199 -0
  448. package/native/vendor/microtex/readme/example_have_log.svg +79 -0
  449. package/native/vendor/microtex/readme/example_keep_trying.svg +101 -0
  450. package/native/vendor/microtex/readme/example_logos.svg +50 -0
  451. package/native/vendor/microtex/readme/example_ubuntu.png +0 -0
  452. package/native/vendor/microtex/readme/example_windows.png +0 -0
  453. package/native/vendor/microtex/readme/samples/sample_0.svg +665 -0
  454. package/native/vendor/microtex/readme/samples/sample_1.svg +1259 -0
  455. package/native/vendor/microtex/readme/samples/sample_10.svg +333 -0
  456. package/native/vendor/microtex/readme/samples/sample_11.svg +306 -0
  457. package/native/vendor/microtex/readme/samples/sample_2.svg +2461 -0
  458. package/native/vendor/microtex/readme/samples/sample_3.svg +2653 -0
  459. package/native/vendor/microtex/readme/samples/sample_4.svg +554 -0
  460. package/native/vendor/microtex/readme/samples/sample_5.svg +247 -0
  461. package/native/vendor/microtex/readme/samples/sample_6.svg +1082 -0
  462. package/native/vendor/microtex/readme/samples/sample_7.svg +518 -0
  463. package/native/vendor/microtex/readme/samples/sample_8.svg +529 -0
  464. package/native/vendor/microtex/readme/samples/sample_9.svg +1702 -0
  465. package/native/vendor/microtex/readme/samples.md +301 -0
  466. package/native/vendor/microtex/readme/tex_logo.svg +19 -0
  467. package/native/vendor/microtex/res/EXAMPLE.txt +25 -0
  468. package/native/vendor/microtex/res/SAMPLES.tex +946 -0
  469. package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm1 +0 -0
  470. package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm2 +0 -0
  471. package/native/vendor/microtex/res/firamath/FiraMath-Regular.otf +0 -0
  472. package/native/vendor/microtex/res/firamath/README.md +42 -0
  473. package/native/vendor/microtex/res/lm-math/README +92 -0
  474. package/native/vendor/microtex/res/lm-math/latinmodern-math.clm1 +0 -0
  475. package/native/vendor/microtex/res/lm-math/latinmodern-math.clm2 +0 -0
  476. package/native/vendor/microtex/res/lm-math/latinmodern-math.otf +0 -0
  477. package/native/vendor/microtex/res/tex-gyre/README-TeX-Gyre-DejaVu-Math.txt +82 -0
  478. package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm1 +0 -0
  479. package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm2 +0 -0
  480. package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.otf +0 -0
  481. package/native/vendor/microtex/res/xits/FONTLOG.txt +246 -0
  482. package/native/vendor/microtex/res/xits/OFL.txt +98 -0
  483. package/native/vendor/microtex/res/xits/README.txt +15 -0
  484. package/native/vendor/microtex/res/xits/XITS-Bold.clm1 +0 -0
  485. package/native/vendor/microtex/res/xits/XITS-Bold.clm2 +0 -0
  486. package/native/vendor/microtex/res/xits/XITS-Bold.otf +0 -0
  487. package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm1 +0 -0
  488. package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm2 +0 -0
  489. package/native/vendor/microtex/res/xits/XITS-BoldItalic.otf +0 -0
  490. package/native/vendor/microtex/res/xits/XITS-Italic.clm1 +0 -0
  491. package/native/vendor/microtex/res/xits/XITS-Italic.clm2 +0 -0
  492. package/native/vendor/microtex/res/xits/XITS-Italic.otf +0 -0
  493. package/native/vendor/microtex/res/xits/XITS-Regular.clm1 +0 -0
  494. package/native/vendor/microtex/res/xits/XITS-Regular.clm2 +0 -0
  495. package/native/vendor/microtex/res/xits/XITS-Regular.otf +0 -0
  496. package/native/vendor/microtex/res/xits/XITSMath-Bold.clm1 +0 -0
  497. package/native/vendor/microtex/res/xits/XITSMath-Bold.clm2 +0 -0
  498. package/native/vendor/microtex/res/xits/XITSMath-Bold.otf +0 -0
  499. package/native/vendor/microtex/res/xits/XITSMath-Regular.clm1 +0 -0
  500. package/native/vendor/microtex/res/xits/XITSMath-Regular.clm2 +0 -0
  501. package/native/vendor/microtex/res/xits/XITSMath-Regular.otf +0 -0
  502. package/native/vendor/microtex/test/clm/meson.build +10 -0
  503. package/native/vendor/microtex/test/clm/test_clm.cpp +140 -0
  504. package/native/vendor/microtex/test/env/meson.build +10 -0
  505. package/native/vendor/microtex/test/env/test_env.cpp +100 -0
  506. package/native/vendor/microtex/test/fuzzer/afl.native +20 -0
  507. package/native/vendor/microtex/test/fuzzer/fuzz.sh +135 -0
  508. package/native/vendor/microtex/test/fuzzer/fuzzer.cpp +61 -0
  509. package/native/vendor/microtex/test/fuzzer/generateSeed.java +33 -0
  510. package/native/vendor/microtex/test/fuzzer/meson.build +9 -0
  511. package/native/vendor/microtex/test/fuzzer/microtex.dict +3708 -0
  512. package/native/vendor/microtex/test/fuzzer/platform_none.cpp +100 -0
  513. package/native/vendor/microtex/test/has_filesystem.cpp +8 -0
  514. package/native/vendor/microtex/test/meson.build +6 -0
  515. package/native/vendor/nanosvg.h +3278 -0
  516. package/native/vendor/nanosvgrast.h +1472 -0
  517. package/native/vendor/zigtex/.github/assets/example.svg +27 -0
  518. package/native/vendor/zigtex/LICENSE +674 -0
  519. package/native/vendor/zigtex/README.md +52 -0
  520. package/native/vendor/zigtex/build.zig +52 -0
  521. package/native/vendor/zigtex/build.zig.zon +16 -0
  522. package/native/vendor/zigtex/fonts/latinmodern-math.clm2 +0 -0
  523. package/native/vendor/zigtex/src/main.zig +22 -0
  524. package/native/vendor/zigtex/src/root.zig +124 -0
  525. package/native/vendor/zigtex/src/svg.zig +273 -0
  526. package/native/vendor/zigtex/src/tex.zig +383 -0
  527. package/native/zigtex-0.16.patch +35 -0
  528. package/package.json +27 -0
  529. package/scripts/bootstrap-native +89 -0
@@ -0,0 +1,554 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="476pt" height="128pt" version="1.1" viewBox="0 0 476 128" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <defs>
4
+ <symbol id="u" overflow="visible">
5
+ <path d="m3.375-9.25 3.0312 7.8438 3.0781-7.8906c0.050781-0.14453 0.10938-0.22656 0.17188-0.25 0.050781-0.007813 0.14453-0.015625 0.28125-0.015625h2.375v0.4375h-0.34375c-0.60547 0-0.95312 0.078125-1.0469 0.23438-0.042969 0.0625-0.0625 0.20312-0.0625 0.42188v7.375c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.13281 0.085938 0.44531 0.125 0.9375 0.125h0.34375v0.4375c-0.35547-0.03125-1.0273-0.046875-2.0156-0.046875-0.99219 0-1.6641 0.015625-2.0156 0.046875v-0.4375h0.34375c0.60156 0 0.95312-0.078125 1.0469-0.23438 0.039063-0.0625 0.0625-0.20312 0.0625-0.42188v-8.0312h-0.015625l-3.4531 8.8594c-0.0625 0.16797-0.14844 0.25781-0.25 0.26562-0.10547 0-0.19922-0.10156-0.28125-0.3125l-3.375-8.7031v7.5469c0 0.39844 0.125 0.67188 0.375 0.82812 0.23828 0.13672 0.59375 0.20312 1.0625 0.20312v0.4375c-0.98047-0.03125-1.5273-0.046875-1.6406-0.046875-0.11719 0-0.66406 0.015625-1.6406 0.046875v-0.4375c0.90625 0 1.3828-0.26953 1.4375-0.8125v-0.21875-7c0-0.28125-0.054687-0.45703-0.15625-0.53125-0.13672-0.082031-0.44922-0.125-0.9375-0.125h-0.34375v-0.4375h2.375c0.20703 0 0.33594 0.039062 0.39062 0.10938l0.015625 0.015625v0.03125c0.019531 0.03125 0.046875 0.085938 0.078125 0.15625z"/>
6
+ </symbol>
7
+ <symbol id="t" overflow="visible">
8
+ <path d="m4.6562-1.0625c-0.23047 0.57422-0.63672 0.94922-1.2188 1.125-0.1875 0.0625-0.39062 0.09375-0.60938 0.09375-0.79297 0-1.4023-0.19141-1.8281-0.57812-0.27344-0.23828-0.40625-0.53906-0.40625-0.90625 0-0.71875 0.39453-1.2891 1.1875-1.7188 0.0625-0.039063 0.12891-0.078125 0.20312-0.10938 0.57031-0.26953 1.4102-0.4375 2.5156-0.5h0.0625v-0.51562c0-0.78906-0.28906-1.3359-0.85938-1.6406-0.1875-0.10156-0.39844-0.15625-0.625-0.15625-0.61719 0-1.0898 0.18359-1.4219 0.54688-0.03125 0.042969-0.0625 0.078125-0.09375 0.10938 0.4375 0.054688 0.67578 0.26562 0.71875 0.64062 0 0.3125-0.14844 0.51562-0.4375 0.60938-0.0625 0.023438-0.13281 0.03125-0.20312 0.03125-0.33594 0-0.54297-0.15625-0.625-0.46875-0.011719-0.039062-0.015625-0.10156-0.015625-0.1875 0-0.5625 0.28906-0.99219 0.875-1.2969 0.36328-0.1875 0.77344-0.28125 1.2344-0.28125 0.75781 0 1.3984 0.25781 1.9219 0.76562 0.32031 0.33594 0.48828 0.79688 0.5 1.3906v3.0625c0 0.27344 0.082031 0.46875 0.25 0.59375 0.070312 0.074219 0.16016 0.10938 0.26562 0.10938 0.32031 0 0.48828-0.30078 0.5-0.90625v-0.78125h0.35938v0.78125c0 0.6875-0.28125 1.1172-0.84375 1.2812-0.11719 0.03125-0.21875 0.046875-0.3125 0.046875-0.46094 0-0.78125-0.23828-0.96875-0.71875-0.0625-0.13281-0.10547-0.27344-0.125-0.42188zm-0.09375-2.2969c-1.4375 0.054687-2.3555 0.49219-2.75 1.3125-0.09375 0.23047-0.14062 0.46484-0.14062 0.70312 0 0.48047 0.21094 0.82812 0.64062 1.0469 0.1875 0.09375 0.39062 0.14062 0.60938 0.14062 0.48828 0 0.89453-0.19141 1.2188-0.57812 0.28125-0.3125 0.42188-0.71875 0.42188-1.2188z"/>
9
+ </symbol>
10
+ <symbol id="g" overflow="visible">
11
+ <path d="m2.4219-5.5938v3.8906c0 0.92969 0.26953 1.4297 0.8125 1.5h0.125c0.40625 0 0.6875-0.25781 0.84375-0.78125 0.0625-0.21875 0.09375-0.47656 0.09375-0.78125v-0.76562h0.34375v0.79688c0 0.76172-0.21484 1.3125-0.64062 1.6562-0.19922 0.15625-0.44531 0.23438-0.73438 0.23438-0.78125 0-1.3203-0.29688-1.6094-0.89062-0.13672-0.26953-0.20312-0.60156-0.20312-1v-3.8594h-1.1875v-0.3125c0.83203-0.039062 1.3828-0.5625 1.6562-1.5625 0.09375-0.36328 0.14453-0.74219 0.15625-1.1406h0.34375v2.5781h2v0.4375z"/>
12
+ </symbol>
13
+ <symbol id="bm" overflow="visible">
14
+ <path d="m2.4062-1.0938c0 0.29297 0.054688 0.46875 0.17188 0.53125l0.015625 0.015625c0.125 0.074219 0.41406 0.10938 0.875 0.10938h0.29688v0.4375c-0.375-0.03125-0.96875-0.046875-1.7812-0.046875 0.03125 0-0.5 0.015625-1.5938 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.75c0-0.36328-0.070313-0.58594-0.20312-0.67188-0.11719-0.070313-0.32031-0.10938-0.60938-0.10938h-0.28125v-0.4375l1.9531-0.15625v1.5469c0.25-0.78906 0.66016-1.2852 1.2344-1.4844 0.15625-0.039062 0.31641-0.0625 0.48438-0.0625 0.4375 0 0.75 0.16406 0.9375 0.48438 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.32422-0.15234 0.52344-0.45312 0.59375-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.29297 0-0.48047-0.125-0.5625-0.375-0.03125-0.0625-0.046875-0.13281-0.046875-0.21875 0-0.25781 0.10938-0.44141 0.32812-0.54688-0.023438-0.007813-0.074219-0.015625-0.15625-0.015625-0.625 0-1.0898 0.38281-1.3906 1.1406-0.17969 0.4375-0.26562 0.93359-0.26562 1.4844z"/>
15
+ </symbol>
16
+ <symbol id="f" overflow="visible">
17
+ <path d="m2.4844-6.1875v5.1406c0 0.29297 0.050781 0.46875 0.15625 0.53125 0.11328 0.054687 0.38281 0.078125 0.8125 0.078125v0.4375c-0.94922-0.03125-1.4336-0.046875-1.4531-0.046875-0.125 0-0.63672 0.015625-1.5312 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.7656c0-0.375-0.074219-0.59766-0.21875-0.67188h-0.015625l-0.015625-0.015625c-0.11719-0.050781-0.375-0.078125-0.78125-0.078125v-0.4375zm0.046875-2.4375c0 0.34375-0.15234 0.57422-0.45312 0.6875-0.09375 0.042969-0.1875 0.0625-0.28125 0.0625-0.33594 0-0.5625-0.14844-0.6875-0.45312v-0.015625c-0.042969-0.09375-0.0625-0.1875-0.0625-0.28125 0-0.28906 0.12891-0.50391 0.39062-0.64062 0.10156-0.0625 0.22266-0.09375 0.35938-0.09375 0.3125 0 0.53516 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
18
+ </symbol>
19
+ <symbol id="bl" overflow="visible">
20
+ <path d="m4.0156-3.2969 1.875 2.4219c0.19531 0.25 0.45312 0.39062 0.76562 0.42188 0.11328 0.011719 0.30078 0.015625 0.5625 0.015625v0.4375c-0.41797-0.03125-0.86719-0.046875-1.3438-0.046875-0.16797 0-0.66797 0.015625-1.5 0.046875v-0.4375c0.28125-0.007812 0.44531-0.125 0.5-0.34375 0-0.039062-0.10156-0.19531-0.29688-0.46875l-1.0625-1.3906c-0.71094 0.83594-1.1094 1.3516-1.2031 1.5469-0.042969 0.085938-0.0625 0.15625-0.0625 0.21875 0 0.26172 0.13281 0.40625 0.40625 0.4375v0.4375c-0.66797-0.03125-1.1094-0.046875-1.3281-0.046875-0.40625 0-0.79297 0.015625-1.1562 0.046875v-0.4375c0.72656 0 1.3203-0.28125 1.7812-0.84375l1.3281-1.6562-1.3906-1.8125c-0.32422-0.41406-0.55859-0.66016-0.70312-0.73438-0.042969-0.03125-0.09375-0.050781-0.15625-0.0625h-0.015625c-0.125-0.03125-0.38672-0.046875-0.78125-0.046875v-0.4375c0.38281 0.03125 0.82812 0.046875 1.3281 0.046875 0.28125 0 0.78516-0.015625 1.5156-0.046875v0.4375c-0.3125 0.011719-0.47656 0.125-0.48438 0.34375 0 0.074219 0.039062 0.15625 0.125 0.25l1.0938 1.4219 0.85938-1.0938c0.14453-0.16406 0.21875-0.33203 0.21875-0.5 0-0.25781-0.13672-0.39844-0.40625-0.42188v-0.4375c0.36328 0.03125 0.8125 0.046875 1.3438 0.046875 0.39453 0 0.77344-0.015625 1.1406-0.046875v0.4375c-0.71094 0.011719-1.2617 0.25-1.6562 0.71875-0.17969 0.19922-0.60938 0.72656-1.2969 1.5781z"/>
21
+ </symbol>
22
+ <symbol id="s" overflow="visible">
23
+ <path d="m5.4688-1.1094c-0.38672 0.84375-0.98438 1.2656-1.7969 1.2656-1.1484 0-1.8242-0.39844-2.0312-1.2031-0.0625-0.23828-0.09375-0.62891-0.09375-1.1719v-2.0938c0-0.60156-0.046875-0.96875-0.14062-1.0938l-0.078125-0.078125c-0.10547-0.070313-0.39844-0.10938-0.875-0.10938v-0.4375l2.0469-0.15625v4.6406c0 0.57422 0.10156 0.95312 0.3125 1.1406h0.015625c0.19531 0.16797 0.5 0.25 0.90625 0.25 0.63281 0 1.1094-0.3125 1.4219-0.9375 0.1875-0.35156 0.28125-0.76562 0.28125-1.2344v-2.4844c0-0.36328-0.074219-0.58594-0.21875-0.67188h-0.015625c-0.125-0.070313-0.41406-0.10938-0.85938-0.10938v-0.4375l2.0469-0.15625v4.9688c0 0.36719 0.070313 0.58984 0.21875 0.67188h0.015625c0.125 0.074219 0.41016 0.10938 0.85938 0.10938v0.4375l-2.0156 0.15625z"/>
24
+ </symbol>
25
+ <symbol id="r" overflow="visible">
26
+ <path d="m2.4844-9.7188v8.6562c0 0.3125 0.070313 0.5 0.21875 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375l-1.5469-0.046875c-0.11719 0-0.63281 0.015625-1.5469 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-7.2812c0-0.36328-0.0625-0.58594-0.1875-0.67188h-0.015625c-0.10547-0.050781-0.28125-0.085937-0.53125-0.10938h-0.34375v-0.4375z"/>
27
+ </symbol>
28
+ <symbol id="q" overflow="visible">
29
+ <path d="m5.0312-5.4062c-0.34375-0.34375-0.84375-0.51562-1.5-0.51562-0.59375 0-1.0703 0.28125-1.4219 0.84375-0.3125 0.5-0.46875 1.1797-0.46875 2.0312 0 1.3438 0.39844 2.2266 1.2031 2.6406 0.25 0.13672 0.50391 0.20312 0.76562 0.20312 0.91406 0 1.5312-0.48828 1.8438-1.4688 0.019531-0.09375 0.078125-0.14062 0.17188-0.14062 0.125 0 0.1875 0.046875 0.1875 0.14062 0 0.17969-0.10547 0.43359-0.3125 0.76562-0.46094 0.71094-1.1328 1.0625-2.0156 1.0625-0.875 0-1.6172-0.34375-2.2188-1.0312-0.53125-0.61328-0.79688-1.332-0.79688-2.1562 0-0.95703 0.33203-1.7578 1-2.4062 0.57031-0.55078 1.2539-0.82812 2.0469-0.82812 0.76953 0 1.3633 0.21094 1.7812 0.625 0.23828 0.25 0.35938 0.53906 0.35938 0.85938 0 0.36719-0.15625 0.58594-0.46875 0.65625-0.054688 0.011719-0.10938 0.015625-0.17188 0.015625-0.33594 0-0.54297-0.14844-0.625-0.45312-0.011719-0.050781-0.015625-0.11719-0.015625-0.20312 0-0.33203 0.16016-0.53516 0.48438-0.60938 0.050781-0.019531 0.10938-0.03125 0.17188-0.03125z"/>
30
+ </symbol>
31
+ <symbol id="j" overflow="visible">
32
+ <path d="m6.5938-3c0 0.96875-0.35547 1.7656-1.0625 2.3906-0.59375 0.51172-1.2773 0.76562-2.0469 0.76562-0.89844 0-1.6523-0.33594-2.2656-1.0156-0.55469-0.60156-0.82812-1.3164-0.82812-2.1406 0-0.94531 0.33594-1.75 1.0156-2.4062 0.59375-0.57031 1.2891-0.85938 2.0938-0.85938 0.90625 0 1.6641 0.35938 2.2812 1.0781 0.53906 0.625 0.8125 1.3555 0.8125 2.1875zm-3.0938 2.7969c0.625 0 1.1172-0.25781 1.4844-0.78125l0.14062-0.25c0.20703-0.40625 0.3125-1.0312 0.3125-1.875 0-0.89453-0.125-1.5391-0.375-1.9375-0.39844-0.58203-0.92188-0.89062-1.5781-0.92188-0.57422 0-1.0469 0.23438-1.4219 0.70312-0.074219 0.074219-0.13281 0.15234-0.17188 0.23438-0.23047 0.41797-0.34375 1.0586-0.34375 1.9219 0 0.90625 0.11719 1.5625 0.35938 1.9688 0.38281 0.61719 0.91406 0.92969 1.5938 0.9375z"/>
33
+ </symbol>
34
+ <symbol id="i" overflow="visible">
35
+ <path d="m1.5469-4.8125c0-0.36328-0.074219-0.58594-0.21875-0.67188-0.11719-0.070313-0.3125-0.10938-0.59375-0.10938h-0.28125v-0.4375l1.9688-0.15625v1.4688c0.4375-0.97656 1.1289-1.4688 2.0781-1.4688 1.082 0 1.7031 0.46094 1.8594 1.375 0.28125-0.63281 0.71875-1.0547 1.3125-1.2656 0.22656-0.070313 0.46875-0.10938 0.71875-0.10938 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875 0.007812 0.17969 0.015625 0.49609 0.015625 0.95312v2.6719c0 0.23047 0.13281 0.35938 0.40625 0.39062 0.10156 0.023438 0.32812 0.03125 0.67188 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085938-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875z"/>
36
+ </symbol>
37
+ <symbol id="h" overflow="visible">
38
+ <path d="m1.5469-4.8125c0-0.36328-0.074219-0.58594-0.21875-0.67188-0.11719-0.070313-0.3125-0.10938-0.59375-0.10938h-0.28125v-0.4375l1.9688-0.15625v1.4688c0.4375-0.97656 1.1289-1.4688 2.0781-1.4688 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875v0.95312 2.6719c0.007813 0.23047 0.14453 0.35938 0.40625 0.39062 0.11328 0.023438 0.34375 0.03125 0.6875 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875z"/>
39
+ </symbol>
40
+ <symbol id="b" overflow="visible">
41
+ <path d="m2.9062-2.7188c-0.80469-0.15625-1.3281-0.30469-1.5781-0.45312-0.09375-0.050781-0.18359-0.11328-0.26562-0.1875-0.39844-0.32031-0.59375-0.71875-0.59375-1.1875 0-0.65625 0.28516-1.1328 0.85938-1.4375 0.36328-0.1875 0.82031-0.28125 1.375-0.28125 0.51953 0 0.95703 0.13281 1.3125 0.39062 0.10156-0.082031 0.17969-0.16016 0.23438-0.23438 0.125-0.10156 0.21875-0.15625 0.28125-0.15625 0.09375 0.085937 0.14453 0.19531 0.15625 0.32812v1.4219c0 0.1875-0.027344 0.29297-0.078125 0.3125h-0.015625l-0.015625 0.015625h-0.0625c-0.10547 0-0.16406-0.039062-0.17188-0.125-0.074219-0.9375-0.46484-1.4883-1.1719-1.6562-0.14844-0.019531-0.30469-0.03125-0.46875-0.03125-0.875 0-1.3906 0.27344-1.5469 0.8125-0.011719 0.085938-0.015625 0.16797-0.015625 0.25 0 0.46875 0.35938 0.80469 1.0781 1 0.13281 0.042969 0.34766 0.089844 0.64062 0.14062 0.66406 0.13672 1.1445 0.32031 1.4375 0.54688 0.050781 0.042969 0.10156 0.085938 0.15625 0.125 0.39453 0.39844 0.59375 0.83984 0.59375 1.3281 0 0.79297-0.32812 1.3555-0.98438 1.6875-0.35547 0.17578-0.78125 0.26562-1.2812 0.26562-0.60547 0-1.1172-0.20312-1.5312-0.60938l-0.28125 0.32812c-0.1875 0.1875-0.30859 0.28125-0.35938 0.28125-0.09375-0.085938-0.14062-0.19531-0.14062-0.34375v-1.8438c0-0.20703 0.03125-0.31641 0.09375-0.32812l0.015625-0.015625h0.0625c0.09375 0 0.15625 0.054688 0.1875 0.15625 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.23828 1.0859 0.69531 1.7266 1.375 1.9219 0.17578 0.042969 0.36328 0.0625 0.5625 0.0625 0.84375 0 1.3516-0.28906 1.5312-0.875 0.039062-0.125 0.0625-0.25391 0.0625-0.39062 0-0.6875-0.49219-1.1172-1.4688-1.2969z"/>
42
+ </symbol>
43
+ <symbol id="bq" overflow="visible">
44
+ <path d="m8.1406-9.5156 0.40625 3.1406h-0.35938c-0.11719-1.0195-0.32031-1.707-0.60938-2.0625-0.36719-0.4375-1.0547-0.65625-2.0625-0.65625h-1.6719c-0.36719 0-0.58594 0.058594-0.65625 0.17188v0.03125c-0.023438 0.054687-0.03125 0.17188-0.03125 0.35938v3.5469h1.2031c0.70703 0 1.1484-0.16406 1.3281-0.5 0.10156-0.20703 0.15625-0.58594 0.15625-1.1406h0.34375v3.7188h-0.34375c0-0.6875-0.10156-1.1289-0.29688-1.3281l-0.015625-0.015625c-0.21094-0.19531-0.60156-0.29688-1.1719-0.29688h-1.2031v3.4375c0 0.27344 0.050781 0.44531 0.15625 0.51562 0.15625 0.10547 0.54688 0.15625 1.1719 0.15625h0.45312v0.4375c-0.33594-0.03125-1.1172-0.046875-2.3438-0.046875-1.0938 0-1.8047 0.015625-2.125 0.046875v-0.4375h0.32812c0.60156 0 0.95312-0.078125 1.0469-0.23438 0.039062-0.0625 0.0625-0.20312 0.0625-0.42188v-7.3281c0-0.28125-0.058594-0.45703-0.17188-0.53125-0.125-0.09375-0.4375-0.14062-0.9375-0.14062h-0.32812v-0.42188z"/>
45
+ </symbol>
46
+ <symbol id="bp" overflow="visible">
47
+ <path d="m5.4531-5.6094-3.8906 5.2656h1.6562c0.83203 0 1.3828-0.20703 1.6562-0.625 0.19531-0.28906 0.32812-0.84375 0.39062-1.6562h0.34375l-0.23438 2.625h-4.625c-0.21094 0-0.32422-0.03125-0.34375-0.09375-0.011719-0.03125-0.015625-0.066406-0.015625-0.10938 0-0.0625 0.039063-0.14453 0.125-0.25l3.9062-5.2656h-1.5938c-0.8125 0-1.3398 0.18359-1.5781 0.54688-0.16797 0.26172-0.27344 0.72656-0.3125 1.3906h-0.34375l0.14062-2.25h4.4844c0.21875 0 0.33594 0.039062 0.35938 0.10938 0.007813 0.023437 0.015625 0.042969 0.015625 0.0625 0 0.0625-0.046875 0.14844-0.14062 0.25z"/>
48
+ </symbol>
49
+ <symbol id="bo" overflow="visible">
50
+ <path d="m5.4531-3.2344h-3.9062c0 0.94922 0.14062 1.6484 0.42188 2.0938 0.44531 0.58594 0.97656 0.89844 1.5938 0.9375 0.63281 0 1.1484-0.25781 1.5469-0.78125 0.13281-0.1875 0.25-0.40625 0.34375-0.65625 0.019531-0.125 0.078125-0.1875 0.17188-0.1875 0.125 0 0.1875 0.054687 0.1875 0.15625 0 0.21094-0.13281 0.49219-0.39062 0.84375-0.38672 0.52344-0.89062 0.83203-1.5156 0.9375-0.13672 0.03125-0.28125 0.046875-0.4375 0.046875-0.875 0-1.6211-0.33594-2.2344-1.0156-0.5625-0.61328-0.84375-1.3516-0.84375-2.2188 0-0.96875 0.33594-1.7695 1.0156-2.4062 0.53906-0.51953 1.1719-0.78125 1.8906-0.78125 1.0625 0 1.8008 0.44922 2.2188 1.3438 0.19531 0.41797 0.29688 0.88281 0.29688 1.3906 0 0.15625-0.03125 0.25-0.09375 0.28125-0.03125 0.011719-0.12109 0.015625-0.26562 0.015625zm-3.8906-0.29688h3.3281c0-0.88281-0.19922-1.5508-0.59375-2-0.26172-0.28906-0.59375-0.4375-1-0.4375-0.46875 0-0.87109 0.21875-1.2031 0.65625-0.32422 0.42969-0.5 1.0234-0.53125 1.7812z"/>
51
+ </symbol>
52
+ <symbol id="bn" overflow="visible">
53
+ <path d="m5.3125-0.76562c-0.48047 0.61719-1.1055 0.92188-1.875 0.92188-0.85547 0-1.5781-0.34375-2.1719-1.0312-0.53125-0.60156-0.79688-1.3164-0.79688-2.1406 0-0.96875 0.36328-1.7695 1.0938-2.4062 0.59375-0.50781 1.2695-0.76562 2.0312-0.76562 0.70703 0 1.2969 0.29297 1.7656 0.875v-3.0312c0-0.36328-0.0625-0.58594-0.1875-0.67188h-0.015625c-0.125-0.070313-0.42188-0.10938-0.89062-0.10938v-0.4375l2.0156-0.15625v8.5c0 0.36719 0.070312 0.58984 0.21875 0.67188h0.015625c0.125 0.074219 0.41016 0.10938 0.85938 0.10938v0.4375l-2.0625 0.15625zm0-3.75c0-0.1875-0.042969-0.34375-0.125-0.46875l-0.015625-0.0625c-0.38672-0.55078-0.89062-0.82812-1.5156-0.82812-0.65625 0-1.1836 0.29688-1.5781 0.89062-0.29297 0.44922-0.4375 1.1094-0.4375 1.9844s0.13281 1.5273 0.40625 1.9531c0.375 0.59375 0.86328 0.89062 1.4688 0.89062 0.66406 0 1.207-0.30469 1.625-0.92188l0.03125-0.0625c0.09375-0.1875 0.14062-0.35938 0.14062-0.51562z"/>
54
+ </symbol>
55
+ <symbol id="bk" overflow="visible">
56
+ <path d="m10 41.391c-1.293-1.3672-2.375-2.8672-3.25-4.5-0.86719-1.6367-1.5547-3.3555-2.0625-5.1562-0.5-1.793-0.85938-3.6328-1.0781-5.5156-0.21094-1.8867-0.3125-3.8125-0.3125-5.7812s0.10156-3.9023 0.3125-5.7969c0.21875-1.8867 0.57812-3.7305 1.0781-5.5312 0.50781-1.793 1.1953-3.5117 2.0625-5.1562 0.875-1.6367 1.957-3.125 3.25-4.4688 0.050781-0.03125 0.082031-0.046875 0.09375-0.046875h0.40625c0.03125 0 0.054688 0.015625 0.078125 0.046875 0.019531 0.03125 0.03125 0.058594 0.03125 0.078125 0 0.042969-0.011719 0.074219-0.03125 0.09375-1.168 1.375-2.1367 2.8828-2.9062 4.5312-0.77344 1.6445-1.375 3.3516-1.8125 5.125-0.42969 1.7812-0.72656 3.5781-0.89062 5.3906-0.16797 1.8203-0.25 3.7344-0.25 5.7344s0.082031 3.8984 0.25 5.7031c0.16406 1.8125 0.46094 3.6094 0.89062 5.3906 0.4375 1.7891 1.0391 3.5039 1.8125 5.1406 0.76953 1.6328 1.7383 3.1484 2.9062 4.5469 0.019531 0.007812 0.03125 0.035156 0.03125 0.078125 0 0.03125-0.015625 0.054687-0.046875 0.078125-0.023438 0.03125-0.042969 0.046875-0.0625 0.046875h-0.40625c-0.011719 0-0.027344-0.007813-0.046875-0.015625-0.023437 0-0.039063-0.007812-0.046875-0.015625z"/>
57
+ </symbol>
58
+ <symbol id="am" overflow="visible">
59
+ <path d="m6.6719-3.2969v0.85938c0.61328-0.75 1.0703-1.6719 1.375-2.7656 0.09375-0.1875 0.16406-0.28516 0.21875-0.29688 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.10547 0.51172-0.3125 1.0625-0.32422 0.80469-0.75781 1.543-1.2969 2.2188-0.09375 0.1875-0.14062 0.35547-0.14062 0.5 0 0.94922 0.14453 1.4219 0.4375 1.4219 0.28906 0 0.52344-0.16016 0.70312-0.48438 0.03125-0.0625 0.054688-0.12891 0.078125-0.20312 0.039063-0.09375 0.10156-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.17969-0.12109 0.39062-0.35938 0.64062-0.24219 0.23828-0.51562 0.35938-0.82812 0.35938-0.58594 0-0.98438-0.32031-1.2031-0.96875-0.023437-0.0625-0.042969-0.12891-0.0625-0.20312-0.98047 0.78125-1.9648 1.1719-2.9531 1.1719-0.875 0-1.5234-0.34766-1.9375-1.0469-0.21875-0.38281-0.32812-0.82812-0.32812-1.3281 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5312-1.2383 2.4375-1.3125 0.082031-0.007813 0.16016-0.015625 0.23438-0.015625 0.78125 0 1.3828 0.30859 1.8125 0.92188 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.33203 0.49219 0.5 1.1406 0.5 1.9531zm-0.9375 1.9062c-0.011719-0.15625-0.015625-0.67578-0.015625-1.5625 0-1.1445-0.13281-1.9297-0.39062-2.3594-0.10547-0.1875-0.24219-0.32031-0.40625-0.40625l-0.015625-0.015625c-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.66797 0-1.2656 0.37109-1.7969 1.1094l-0.10938 0.17188c-0.33594 0.54297-0.57812 1.2969-0.73438 2.2656-0.054688 0.26172-0.078125 0.47656-0.078125 0.64062 0 0.79297 0.27344 1.2812 0.82812 1.4688 0.125 0.042969 0.26953 0.0625 0.4375 0.0625 0.96875 0 1.9219-0.41016 2.8594-1.2344z"/>
60
+ </symbol>
61
+ <symbol id="aa" overflow="visible">
62
+ <path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
63
+ </symbol>
64
+ <symbol id="z" overflow="visible">
65
+ <path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
66
+ </symbol>
67
+ <symbol id="c" overflow="visible">
68
+ <path d="m2.6875-3.5c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.13281-0.67188-0.40625-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
69
+ </symbol>
70
+ <symbol id="y" overflow="visible">
71
+ <path d="m6.6719-3.2969v0.85938c0.61328-0.75 1.0703-1.6719 1.375-2.7656 0.09375-0.1875 0.16406-0.28516 0.21875-0.29688 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.10547 0.51172-0.3125 1.0625-0.32422 0.80469-0.75781 1.543-1.2969 2.2188-0.09375 0.1875-0.14062 0.35547-0.14062 0.5 0 0.94922 0.14453 1.4219 0.4375 1.4219 0.28906 0 0.52344-0.16016 0.70312-0.48438 0.03125-0.0625 0.054688-0.12891 0.078125-0.20312 0.039063-0.09375 0.10156-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.17969-0.12109 0.39062-0.35938 0.64062-0.24219 0.23828-0.51562 0.35938-0.82812 0.35938-0.58594 0-0.98438-0.32031-1.2031-0.96875-0.023437-0.0625-0.042969-0.12891-0.0625-0.20312-0.98047 0.78125-1.9648 1.1719-2.9531 1.1719-0.875 0-1.5234-0.34766-1.9375-1.0469-0.21875-0.38281-0.32812-0.82812-0.32812-1.3281 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5312-1.2383 2.4375-1.3125 0.082031-0.007813 0.16016-0.015625 0.23438-0.015625 0.78125 0 1.3828 0.30859 1.8125 0.92188 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.33203 0.49219 0.5 1.1406 0.5 1.9531zm-0.9375 1.9062c-0.011719-0.15625-0.015625-0.67578-0.015625-1.5625 0-1.1445-0.13281-1.9297-0.39062-2.3594-0.10547-0.1875-0.24219-0.32031-0.40625-0.40625l-0.015625-0.015625c-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.66797 0-1.2656 0.37109-1.7969 1.1094l-0.10938 0.17188c-0.33594 0.54297-0.57812 1.2969-0.73438 2.2656-0.054688 0.26172-0.078125 0.47656-0.078125 0.64062 0 0.79297 0.27344 1.2812 0.82812 1.4688 0.125 0.042969 0.26953 0.0625 0.4375 0.0625 0.96875 0 1.9219-0.41016 2.8594-1.2344z"/>
72
+ </symbol>
73
+ <symbol id="x" overflow="visible">
74
+ <path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
75
+ </symbol>
76
+ <symbol id="w" overflow="visible">
77
+ <path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
78
+ </symbol>
79
+ <symbol id="a" overflow="visible">
80
+ <path d="m2.6875-0.73438c0 0.30469-0.14062 0.52734-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.20703-0.078125-0.3125 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.050781 0.21094-0.078125 0.32812-0.078125 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
81
+ </symbol>
82
+ <symbol id="v" overflow="visible">
83
+ <path d="m6.6719-3.2969v0.85938c0.61328-0.75 1.0703-1.6719 1.375-2.7656 0.09375-0.1875 0.16406-0.28516 0.21875-0.29688 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.10547 0.51172-0.3125 1.0625-0.32422 0.80469-0.75781 1.543-1.2969 2.2188-0.09375 0.1875-0.14062 0.35547-0.14062 0.5 0 0.94922 0.14453 1.4219 0.4375 1.4219 0.28906 0 0.52344-0.16016 0.70312-0.48438 0.03125-0.0625 0.054688-0.12891 0.078125-0.20312 0.039063-0.09375 0.10156-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.17969-0.12109 0.39062-0.35938 0.64062-0.24219 0.23828-0.51562 0.35938-0.82812 0.35938-0.58594 0-0.98438-0.32031-1.2031-0.96875-0.023437-0.0625-0.042969-0.12891-0.0625-0.20312-0.98047 0.78125-1.9648 1.1719-2.9531 1.1719-0.875 0-1.5234-0.34766-1.9375-1.0469-0.21875-0.38281-0.32812-0.82812-0.32812-1.3281 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5312-1.2383 2.4375-1.3125 0.082031-0.007813 0.16016-0.015625 0.23438-0.015625 0.78125 0 1.3828 0.30859 1.8125 0.92188 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.33203 0.49219 0.5 1.1406 0.5 1.9531zm-0.9375 1.9062c-0.011719-0.15625-0.015625-0.67578-0.015625-1.5625 0-1.1445-0.13281-1.9297-0.39062-2.3594-0.10547-0.1875-0.24219-0.32031-0.40625-0.40625l-0.015625-0.015625c-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.66797 0-1.2656 0.37109-1.7969 1.1094l-0.10938 0.17188c-0.33594 0.54297-0.57812 1.2969-0.73438 2.2656-0.054688 0.26172-0.078125 0.47656-0.078125 0.64062 0 0.79297 0.27344 1.2812 0.82812 1.4688 0.125 0.042969 0.26953 0.0625 0.4375 0.0625 0.96875 0 1.9219-0.41016 2.8594-1.2344z"/>
84
+ </symbol>
85
+ <symbol id="bj" overflow="visible">
86
+ <path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
87
+ </symbol>
88
+ <symbol id="bi" overflow="visible">
89
+ <path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
90
+ </symbol>
91
+ <symbol id="e" overflow="visible">
92
+ <path d="m2.6875-3.5c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.13281-0.67188-0.40625-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
93
+ </symbol>
94
+ <symbol id="bh" overflow="visible">
95
+ <path d="m6.6719-3.2969v0.85938c0.61328-0.75 1.0703-1.6719 1.375-2.7656 0.09375-0.1875 0.16406-0.28516 0.21875-0.29688 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.10547 0.51172-0.3125 1.0625-0.32422 0.80469-0.75781 1.543-1.2969 2.2188-0.09375 0.1875-0.14062 0.35547-0.14062 0.5 0 0.94922 0.14453 1.4219 0.4375 1.4219 0.28906 0 0.52344-0.16016 0.70312-0.48438 0.03125-0.0625 0.054688-0.12891 0.078125-0.20312 0.039063-0.09375 0.10156-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.17969-0.12109 0.39062-0.35938 0.64062-0.24219 0.23828-0.51562 0.35938-0.82812 0.35938-0.58594 0-0.98438-0.32031-1.2031-0.96875-0.023437-0.0625-0.042969-0.12891-0.0625-0.20312-0.98047 0.78125-1.9648 1.1719-2.9531 1.1719-0.875 0-1.5234-0.34766-1.9375-1.0469-0.21875-0.38281-0.32812-0.82812-0.32812-1.3281 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5312-1.2383 2.4375-1.3125 0.082031-0.007813 0.16016-0.015625 0.23438-0.015625 0.78125 0 1.3828 0.30859 1.8125 0.92188 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.33203 0.49219 0.5 1.1406 0.5 1.9531zm-0.9375 1.9062c-0.011719-0.15625-0.015625-0.67578-0.015625-1.5625 0-1.1445-0.13281-1.9297-0.39062-2.3594-0.10547-0.1875-0.24219-0.32031-0.40625-0.40625l-0.015625-0.015625c-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.66797 0-1.2656 0.37109-1.7969 1.1094l-0.10938 0.17188c-0.33594 0.54297-0.57812 1.2969-0.73438 2.2656-0.054688 0.26172-0.078125 0.47656-0.078125 0.64062 0 0.79297 0.27344 1.2812 0.82812 1.4688 0.125 0.042969 0.26953 0.0625 0.4375 0.0625 0.96875 0 1.9219-0.41016 2.8594-1.2344z"/>
96
+ </symbol>
97
+ <symbol id="bg" overflow="visible">
98
+ <path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
99
+ </symbol>
100
+ <symbol id="bf" overflow="visible">
101
+ <path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
102
+ </symbol>
103
+ <symbol id="be" overflow="visible">
104
+ <path d="m0.59375 41.422c-0.085938 0-0.125-0.042969-0.125-0.125 0-0.042969 0.007812-0.070313 0.03125-0.078125 1.1562-1.375 2.125-2.8906 2.9062-4.5469 0.78125-1.6484 1.3828-3.3594 1.8125-5.1406 0.42578-1.7812 0.72266-3.5781 0.89062-5.3906 0.16406-1.8047 0.25-3.7031 0.25-5.7031s-0.085937-3.9141-0.25-5.7344c-0.16797-1.8125-0.46484-3.6055-0.89062-5.375-0.42969-1.7734-1.0312-3.4922-1.8125-5.1562-0.78125-1.6562-1.75-3.1641-2.9062-4.5156-0.023438-0.019531-0.03125-0.050781-0.03125-0.09375 0-0.082031 0.039062-0.125 0.125-0.125h0.39062c0.007813 0 0.039063 0.015625 0.09375 0.046875 1.2812 1.332 2.3594 2.8203 3.2344 4.4688 0.88281 1.6445 1.5781 3.375 2.0781 5.1875s0.85156 3.6445 1.0625 5.5c0.20703 1.8516 0.3125 3.7852 0.3125 5.7969 0 2.0078-0.10547 3.9375-0.3125 5.7812-0.21094 1.8516-0.5625 3.6875-1.0625 5.5s-1.1875 3.5391-2.0625 5.1875c-0.875 1.6445-1.9609 3.1406-3.25 4.4844-0.054687 0.019531-0.085937 0.03125-0.09375 0.03125z"/>
105
+ </symbol>
106
+ <symbol id="bd" overflow="visible">
107
+ <path d="m11.641-5.1562-0.5625 5.1562h-10.422v-0.625h0.48438c0.86328 0 1.3633-0.10938 1.5-0.32812 0.050781-0.09375 0.078125-0.29688 0.078125-0.60938v-10.531c0-0.40625-0.078125-0.66016-0.23438-0.76562-0.1875-0.125-0.63672-0.1875-1.3438-0.1875h-0.48438v-0.60938c0.46875 0.042969 1.4844 0.0625 3.0469 0.0625 1.7578 0 2.8789-0.019531 3.3594-0.0625v0.60938h-0.65625c-1.0742 0-1.6836 0.13672-1.8281 0.40625-0.054687 0.09375-0.078125 0.28125-0.078125 0.5625v10.656c0 0.40625 0.070312 0.64062 0.21875 0.70312h0.015625c0.125 0.0625 0.375 0.09375 0.75 0.09375h1.6406c1.875 0 3.0703-0.75 3.5938-2.25 0.17578-0.5 0.31641-1.2578 0.42188-2.2812z"/>
108
+ </symbol>
109
+ <symbol id="bc" overflow="visible">
110
+ <path d="m6.6562-1.5156c-0.33594 0.82422-0.91797 1.3594-1.75 1.6094-0.27344 0.082031-0.55859 0.125-0.85938 0.125-1.1367 0-2.0117-0.26953-2.625-0.8125-0.38672-0.35156-0.57812-0.78906-0.57812-1.3125 0-1.0195 0.56641-1.8359 1.7031-2.4531 0.09375-0.050781 0.19141-0.097656 0.29688-0.14062 0.8125-0.38281 2.0039-0.625 3.5781-0.71875h0.09375v-0.73438c0-1.1328-0.40625-1.9141-1.2188-2.3438-0.28125-0.14453-0.57812-0.21875-0.89062-0.21875-0.88672 0-1.5703 0.26172-2.0469 0.78125-0.042969 0.054687-0.085937 0.10156-0.125 0.14062 0.63281 0.074219 0.97656 0.375 1.0312 0.90625 0 0.46094-0.21094 0.75781-0.625 0.89062-0.09375 0.023437-0.19531 0.03125-0.29688 0.03125-0.48047 0-0.77734-0.21875-0.89062-0.65625-0.023437-0.0625-0.03125-0.15625-0.03125-0.28125 0-0.80078 0.42188-1.4141 1.2656-1.8438 0.50781-0.26953 1.0938-0.40625 1.75-0.40625 1.0938 0 2.0078 0.36719 2.75 1.0938 0.45703 0.48047 0.69531 1.1484 0.71875 2v4.3594c0 0.38672 0.11719 0.67188 0.35938 0.85938 0.10156 0.09375 0.22656 0.14062 0.375 0.14062 0.46875 0 0.70703-0.42578 0.71875-1.2812v-1.125h0.5v1.125c0 0.98047-0.40234 1.5898-1.2031 1.8281-0.15625 0.050781-0.30469 0.078125-0.4375 0.078125-0.65625 0-1.125-0.34766-1.4062-1.0469-0.074219-0.1875-0.125-0.38281-0.15625-0.59375zm-0.14062-3.2812c-2.0547 0.074219-3.3594 0.69922-3.9219 1.875-0.14844 0.32422-0.21875 0.65625-0.21875 1 0 0.67969 0.30469 1.1797 0.92188 1.5 0.26953 0.13672 0.56641 0.20312 0.89062 0.20312 0.6875 0 1.2656-0.27344 1.7344-0.82812 0.39453-0.44531 0.59375-1.0312 0.59375-1.75z"/>
111
+ </symbol>
112
+ <symbol id="bb" overflow="visible">
113
+ <path d="m3.4375-1.5625c0 0.41797 0.082031 0.67188 0.25 0.76562l0.015625 0.015625c0.1875 0.10547 0.60156 0.15625 1.25 0.15625h0.42188v0.625c-0.53125-0.039062-1.375-0.0625-2.5312-0.0625 0.039062 0-0.71875 0.023438-2.2812 0.0625v-0.625c0.78125 0 1.2383-0.054688 1.375-0.17188l0.046875-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188v-5.3594c0-0.51953-0.10547-0.84375-0.3125-0.96875-0.15625-0.09375-0.44531-0.14453-0.85938-0.15625h-0.39062v-0.625l2.7812-0.21875v2.2031c0.35156-1.1133 0.94531-1.8125 1.7812-2.0938 0.20703-0.070313 0.42969-0.10938 0.67188-0.10938 0.625 0 1.0703 0.23438 1.3438 0.70312 0.09375 0.15625 0.14062 0.32812 0.14062 0.51562 0 0.46875-0.21875 0.75781-0.65625 0.85938-0.074219 0.023437-0.14062 0.03125-0.20312 0.03125-0.41797 0-0.68359-0.17969-0.79688-0.54688-0.042969-0.09375-0.0625-0.19531-0.0625-0.3125 0-0.36328 0.14844-0.625 0.45312-0.78125-0.023437-0.019531-0.09375-0.03125-0.21875-0.03125-0.89844 0-1.5586 0.54688-1.9844 1.6406-0.25 0.63672-0.375 1.3438-0.375 2.125z"/>
114
+ </symbol>
115
+ <symbol id="p" overflow="visible">
116
+ <path d="m4.4375-3.4375c0.58203 0 1.0547-0.26562 1.4219-0.79688 0.21875-0.36328 0.32812-0.92578 0.32812-1.6875-0.0625-1.5938-0.64844-2.4102-1.75-2.4531-0.58594 0-1.0586 0.26562-1.4219 0.79688-0.21094 0.35547-0.3125 0.91406-0.3125 1.6719 0.050781 1.6055 0.62891 2.4297 1.7344 2.4688zm-1.9844-0.15625c-0.21875 0.26172-0.32812 0.57422-0.32812 0.9375 0 0.54297 0.21094 0.94531 0.64062 1.2031 0.125 0.074219 0.26562 0.12109 0.42188 0.14062 0.082031 0.011719 0.58203 0.015625 1.5 0.015625 1.3633 0 2.3633 0.12109 3 0.35938 0.14453 0.054688 0.28906 0.12109 0.4375 0.20312 0.8125 0.53125 1.2422 1.2891 1.2969 2.2812 0 0.86328-0.5625 1.5391-1.6875 2.0312-0.79297 0.36328-1.7109 0.54688-2.75 0.54688-1.5547 0-2.7617-0.35938-3.625-1.0781-0.53125-0.42969-0.79688-0.91797-0.79688-1.4688 0-0.66797 0.33594-1.2148 1.0156-1.6406 0.23828-0.15625 0.51562-0.27344 0.82812-0.35938-0.55469-0.42578-0.85156-1.0195-0.89062-1.7812 0-0.625 0.20703-1.1758 0.625-1.6562-0.60547-0.57031-0.91797-1.2578-0.9375-2.0625 0-0.91406 0.39844-1.6719 1.2031-2.2656 0.58203-0.4375 1.2578-0.65625 2.0312-0.65625 0.80078 0 1.5078 0.24219 2.125 0.71875 0.63281-0.625 1.3438-0.9375 2.125-0.9375 0.50781 0 0.83203 0.24219 0.96875 0.71875 0.03125 0.085938 0.046875 0.17188 0.046875 0.26562-0.054687 0.34375-0.24609 0.54297-0.57812 0.59375-0.29297 0-0.48047-0.14062-0.5625-0.42188-0.011719-0.050781-0.015625-0.10156-0.015625-0.15625 0-0.28125 0.10156-0.45703 0.3125-0.53125-0.042969-0.019531-0.10938-0.03125-0.20312-0.03125-0.64844 0-1.2461 0.26172-1.7969 0.78125 0.55078 0.51172 0.82812 1.1562 0.82812 1.9375 0 0.92969-0.40234 1.6836-1.2031 2.2656-0.59375 0.4375-1.2773 0.65625-2.0469 0.65625-0.75 0-1.4141-0.20312-1.9844-0.60938zm2.5469 7.25c1.2695 0 2.2266-0.33594 2.875-1 0.33203-0.33594 0.5-0.69531 0.5-1.0781 0-0.99219-0.78906-1.5469-2.3594-1.6719h-0.015625c-0.34375-0.03125-0.87109-0.046875-1.5781-0.046875h-1.1875c-0.625 0.042969-1.1016 0.34375-1.4219 0.90625-0.14844 0.25-0.21875 0.51953-0.21875 0.8125 0 0.625 0.39062 1.1445 1.1719 1.5625 0.625 0.34375 1.3672 0.51562 2.2344 0.51562z"/>
117
+ </symbol>
118
+ <symbol id="ba" overflow="visible">
119
+ <path d="m7.7969-4.625h-5.5781c0 1.3672 0.19531 2.3672 0.59375 3 0.64453 0.83594 1.3984 1.2812 2.2656 1.3438 0.91406 0 1.6562-0.375 2.2188-1.125 0.19531-0.25781 0.35938-0.57031 0.48438-0.9375 0.039062-0.1875 0.12891-0.28125 0.26562-0.28125 0.16406 0 0.25 0.085938 0.25 0.25 0 0.29297-0.1875 0.6875-0.5625 1.1875-0.54297 0.75-1.2617 1.1953-2.1562 1.3438-0.19922 0.039062-0.40625 0.0625-0.625 0.0625-1.25 0-2.3125-0.47656-3.1875-1.4375-0.80469-0.88281-1.2031-1.9453-1.2031-3.1875 0-1.3828 0.47656-2.5312 1.4375-3.4375 0.76953-0.73828 1.6758-1.1094 2.7188-1.1094 1.5078 0 2.5625 0.63672 3.1562 1.9062 0.28125 0.60547 0.42188 1.2734 0.42188 2 0 0.23047-0.046875 0.36719-0.14062 0.40625-0.042969 0.011719-0.16406 0.015625-0.35938 0.015625zm-5.5625-0.42188h4.75c0-1.2578-0.28125-2.2109-0.84375-2.8594-0.375-0.40625-0.85156-0.60938-1.4219-0.60938-0.67969 0-1.25 0.3125-1.7188 0.9375-0.46875 0.59375-0.72656 1.4375-0.76562 2.5312z"/>
120
+ </symbol>
121
+ <symbol id="az" overflow="visible">
122
+ <path d="m4.4844-7.0625h2.2188c2.2266-0.13281 3.375-1.1328 3.4375-3 0-1.5938-0.73047-2.5391-2.1875-2.8438-0.42969-0.09375-1.0469-0.14062-1.8594-0.14062-0.64844 0-1.0391 0.015625-1.1719 0.046875-0.25 0.042969-0.39062 0.18359-0.42188 0.42188l-0.015625 0.015625zm4.2188 0.26562c1.3203 0.44922 2.1328 1.2188 2.4375 2.3125l0.26562 1.6094c0.19531 1.3359 0.39844 2.1523 0.60938 2.4531 0.082031 0.125 0.17578 0.21875 0.28125 0.28125 0.14453 0.09375 0.31641 0.14062 0.51562 0.14062 0.58203 0 0.98438-0.35938 1.2031-1.0781 0.050781-0.19531 0.09375-0.42969 0.125-0.70312 0.03125-0.19531 0.10938-0.30078 0.23438-0.3125 0.17578 0 0.26562 0.10938 0.26562 0.32812 0 0.63672-0.19531 1.1797-0.57812 1.625-0.054688 0.0625-0.11719 0.125-0.1875 0.1875-0.30469 0.25781-0.68359 0.39062-1.1406 0.39062-1.0312 0-1.8711-0.28125-2.5156-0.84375-0.49219-0.44531-0.75781-1.0781-0.79688-1.8906-0.011719-0.28906-0.015625-0.61328-0.015625-0.96875 0-0.97656-0.085938-1.6328-0.25-1.9688-0.10547-0.23828-0.27734-0.47266-0.51562-0.70312-0.46875-0.45703-1.0898-0.6875-1.8594-0.6875h-2.2969v5.0625c0 0.40625 0.078125 0.66406 0.23438 0.76562 0.1875 0.11719 0.63281 0.17188 1.3438 0.17188h0.48438v0.625c-0.49219-0.039062-1.4648-0.0625-2.9219-0.0625-1.4688 0-2.4453 0.023438-2.9219 0.0625v-0.625h0.48438c0.86328 0 1.3633-0.10938 1.5-0.32812 0.050781-0.09375 0.078125-0.29688 0.078125-0.60938v-10.531c0-0.40625-0.085937-0.66016-0.25-0.76562-0.1875-0.125-0.63281-0.1875-1.3281-0.1875h-0.48438v-0.60938h6.2812c1.6641 0 3.0195 0.45312 4.0625 1.3594 0.76953 0.66797 1.1562 1.4141 1.1562 2.2344 0 1.0312-0.60156 1.8906-1.7969 2.5781-0.51172 0.29297-1.0781 0.52344-1.7031 0.6875z"/>
123
+ </symbol>
124
+ <symbol id="ay" overflow="visible">
125
+ <path d="m3.5469-8.8438v7.3438c0 0.41797 0.078125 0.67188 0.23438 0.76562 0.15625 0.074219 0.53906 0.10938 1.1562 0.10938v0.625c-1.3555-0.039062-2.0469-0.0625-2.0781-0.0625-0.1875 0-0.92188 0.023438-2.2031 0.0625v-0.625c0.78906 0 1.2539-0.054688 1.3906-0.17188l0.03125-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188v-5.3906c0-0.53125-0.10547-0.84766-0.3125-0.95312h-0.03125l-0.015625-0.015625c-0.17969-0.082031-0.55469-0.125-1.125-0.125v-0.625zm0.078125-3.4688c0 0.49219-0.22656 0.8125-0.67188 0.96875-0.125 0.054688-0.25781 0.078125-0.39062 0.078125-0.46875 0-0.79688-0.21094-0.98438-0.64062v-0.015625c-0.054687-0.13281-0.078125-0.26562-0.078125-0.39062 0-0.41406 0.1875-0.72266 0.5625-0.92188 0.14453-0.09375 0.3125-0.14062 0.5-0.14062 0.44531 0 0.76562 0.19922 0.95312 0.59375 0.070313 0.14844 0.10938 0.30469 0.10938 0.46875z"/>
126
+ </symbol>
127
+ <symbol id="ax" overflow="visible">
128
+ <path d="m9.1406-5.0469v3.8281c0.007813 0.32422 0.20312 0.51172 0.57812 0.5625 0.15625 0.023438 0.48438 0.03125 0.98438 0.03125v0.625c-1.3672-0.039062-2.1172-0.0625-2.25-0.0625-0.10547 0-0.85547 0.023438-2.25 0.0625v-0.625c0.78125 0 1.2383-0.054688 1.375-0.17188l0.046875-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188v-4.6719c0-1.3125-0.38281-2.0352-1.1406-2.1719-0.11719-0.03125-0.23047-0.046875-0.34375-0.046875-0.8125 0-1.4961 0.35547-2.0469 1.0625-0.4375 0.57422-0.65625 1.2891-0.65625 2.1406v3.6875c0 0.44922 0.10938 0.71484 0.32812 0.79688 0.14453 0.0625 0.55469 0.09375 1.2344 0.09375v0.625c-1.3672-0.039062-2.1094-0.0625-2.2344-0.0625-0.11719 0-0.87109 0.023438-2.2656 0.0625v-0.625c0.78125 0 1.2383-0.054688 1.375-0.17188l0.046875-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188v-10.406c0-0.51953-0.09375-0.83594-0.28125-0.95312h-0.015625c-0.14844-0.082031-0.40234-0.14062-0.76562-0.17188h-0.5v-0.60938l2.875-0.21875v6.9531h0.03125c0.35156-0.8125 0.92578-1.3789 1.7188-1.7031 0.40625-0.125 0.78906-0.19531 1.1562-0.21875 1 0 1.6953 0.25 2.0938 0.75 0.36328 0.40625 0.56641 0.96875 0.60938 1.6875 0.007812 0.26172 0.015625 0.71484 0.015625 1.3594z"/>
129
+ </symbol>
130
+ <symbol id="aw" overflow="visible">
131
+ <path d="m3.4531-8v5.5625c0 1.3359 0.39062 2.0469 1.1719 2.1406 0.050781 0.011719 0.10938 0.015625 0.17188 0.015625 0.57031 0 0.97266-0.375 1.2031-1.125 0.09375-0.3125 0.14062-0.67969 0.14062-1.1094v-1.1094h0.5v1.1406c0 1.0938-0.30859 1.8828-0.92188 2.3594-0.29297 0.22656-0.64844 0.34375-1.0625 0.34375-1.1172 0-1.8828-0.42188-2.2969-1.2656-0.1875-0.39453-0.28125-0.875-0.28125-1.4375v-5.5156h-1.7031v-0.4375c1.1875-0.050781 1.9727-0.80078 2.3594-2.25 0.13281-0.5 0.20703-1.0352 0.21875-1.6094h0.5v3.6719h2.8594v0.625z"/>
132
+ </symbol>
133
+ <symbol id="av" overflow="visible">
134
+ <path d="m2.7031-2.5156c-0.74219-0.15625-1.2305-0.30078-1.4688-0.4375-0.085937-0.039063-0.16797-0.097656-0.25-0.17188-0.375-0.30078-0.5625-0.66406-0.5625-1.0938 0-0.61328 0.26953-1.0547 0.8125-1.3281 0.33203-0.1875 0.75781-0.28125 1.2812-0.28125 0.47656 0 0.88281 0.125 1.2188 0.375 0.09375-0.082031 0.16406-0.15625 0.21875-0.21875 0.11328-0.10156 0.20312-0.15625 0.26562-0.15625 0.082031 0.085937 0.12891 0.1875 0.14062 0.3125v1.3125c0 0.1875-0.027344 0.28906-0.078125 0.29688h-0.015625l-0.015625 0.015625h-0.0625c-0.09375 0-0.14844-0.035156-0.15625-0.10938-0.0625-0.875-0.42188-1.3828-1.0781-1.5312-0.13672-0.03125-0.28125-0.046875-0.4375-0.046875-0.82422 0-1.3047 0.25-1.4375 0.75-0.023437 0.085937-0.03125 0.16406-0.03125 0.23438 0 0.44922 0.33203 0.76172 1 0.9375 0.13281 0.042969 0.33594 0.089844 0.60938 0.14062 0.625 0.11719 1.0664 0.28125 1.3281 0.5 0.050781 0.03125 0.10156 0.070313 0.15625 0.10938 0.36328 0.36719 0.54688 0.78125 0.54688 1.25 0 0.73047-0.30859 1.2461-0.92188 1.5469-0.32422 0.16406-0.71484 0.25-1.1719 0.25-0.57422 0-1.0547-0.1875-1.4375-0.5625l-0.26562 0.3125c-0.16797 0.16406-0.27344 0.25-0.3125 0.25-0.09375-0.074219-0.14844-0.17578-0.15625-0.3125v-1.7188c0-0.1875 0.03125-0.28906 0.09375-0.3125h0.078125c0.09375 0 0.14844 0.046875 0.17188 0.14062 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.22656 1 0.65625 1.5938 1.2812 1.7812 0.15625 0.042969 0.33203 0.0625 0.53125 0.0625 0.76953 0 1.2383-0.27344 1.4062-0.82812 0.039062-0.10156 0.0625-0.22266 0.0625-0.35938 0-0.63281-0.45312-1.0312-1.3594-1.1875z"/>
135
+ </symbol>
136
+ <symbol id="au" overflow="visible">
137
+ <path d="m1.4375-4.4688c0-0.34375-0.070312-0.55078-0.20312-0.625-0.10547-0.0625-0.29297-0.097656-0.5625-0.10938h-0.25v-0.40625l1.8281-0.14062v1.375c0.40625-0.91406 1.0469-1.375 1.9219-1.375 1.0078 0 1.5859 0.42969 1.7344 1.2812 0.25781-0.59375 0.66406-0.98438 1.2188-1.1719 0.20703-0.070313 0.42578-0.10938 0.65625-0.10938 0.65625 0 1.1133 0.16406 1.375 0.48438 0.22656 0.27344 0.35938 0.64062 0.39062 1.1094 0.007813 0.16797 0.015625 0.46094 0.015625 0.875v2.4844c0 0.21094 0.125 0.33594 0.375 0.375 0.10156 0.011719 0.3125 0.015625 0.625 0.015625v0.40625c-0.875-0.019531-1.3594-0.03125-1.4531-0.03125-0.0625 0-0.55469 0.011719-1.4688 0.03125v-0.40625c0.50781 0 0.8125-0.035156 0.90625-0.10938l0.015625-0.03125c0.0625-0.070313 0.09375-0.21875 0.09375-0.4375v-3.0312c0-0.85156-0.24609-1.3281-0.73438-1.4219-0.074219-0.007812-0.14844-0.015625-0.21875-0.015625-0.53125 0-0.97656 0.23047-1.3281 0.6875-0.29297 0.36719-0.4375 0.82812-0.4375 1.3906v2.3906c0 0.29297 0.070312 0.46484 0.21875 0.51562 0.09375 0.042969 0.35938 0.0625 0.79688 0.0625v0.40625c-0.88672-0.019531-1.3711-0.03125-1.4531-0.03125-0.074219 0-0.5625 0.011719-1.4688 0.03125v-0.40625c0.50781 0 0.80469-0.035156 0.89062-0.10938l0.03125-0.03125c0.0625-0.070313 0.09375-0.21875 0.09375-0.4375v-3.0312c0-0.85156-0.25-1.3281-0.75-1.4219-0.0625-0.007812-0.13672-0.015625-0.21875-0.015625-0.53125 0-0.97656 0.23047-1.3281 0.6875-0.28125 0.36719-0.42188 0.82812-0.42188 1.3906v2.3906c0 0.29297 0.066406 0.46484 0.20312 0.51562 0.09375 0.042969 0.36328 0.0625 0.8125 0.0625v0.40625c-0.88672-0.019531-1.3711-0.03125-1.4531-0.03125-0.074219 0-0.5625 0.011719-1.4688 0.03125v-0.40625c0.50781 0 0.80469-0.035156 0.89062-0.10938l0.03125-0.03125c0.0625-0.070313 0.09375-0.21875 0.09375-0.4375z"/>
138
+ </symbol>
139
+ <symbol id="at" overflow="visible">
140
+ <path d="m4.3281-0.98438c-0.21875 0.53125-0.60156 0.88281-1.1406 1.0469-0.17969 0.050781-0.36719 0.078125-0.5625 0.078125-0.74219 0-1.3086-0.17578-1.7031-0.53125-0.25-0.22656-0.375-0.50781-0.375-0.84375 0-0.66406 0.36719-1.1953 1.1094-1.5938 0.050781-0.039063 0.11328-0.070313 0.1875-0.09375 0.53125-0.25 1.3047-0.40625 2.3281-0.46875h0.0625v-0.48438c0-0.73828-0.26562-1.2422-0.79688-1.5156-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.57422 0-1.0156 0.16797-1.3281 0.5-0.023438 0.03125-0.046875 0.0625-0.078125 0.09375 0.40625 0.054688 0.62891 0.25 0.67188 0.59375 0 0.29297-0.13672 0.48438-0.40625 0.57812-0.0625 0.011719-0.13281 0.015625-0.20312 0.015625-0.3125 0-0.5-0.14062-0.5625-0.42188-0.023437-0.039063-0.03125-0.10156-0.03125-0.1875 0-0.51953 0.26953-0.91406 0.8125-1.1875 0.34375-0.1875 0.72656-0.28125 1.1562-0.28125 0.70703 0 1.3008 0.24219 1.7812 0.71875 0.30078 0.3125 0.45703 0.74609 0.46875 1.2969v2.8438c0 0.25 0.078125 0.43359 0.23438 0.54688 0.0625 0.0625 0.14062 0.09375 0.23438 0.09375 0.3125 0 0.46875-0.27344 0.46875-0.82812v-0.73438h0.32812v0.73438c0 0.63672-0.26172 1.0312-0.78125 1.1875-0.10547 0.03125-0.19922 0.046875-0.28125 0.046875-0.42969 0-0.73047-0.22266-0.90625-0.67188-0.054688-0.125-0.089844-0.25391-0.10938-0.39062zm-0.09375-2.1406c-1.3359 0.054688-2.1836 0.46484-2.5469 1.2344-0.09375 0.19922-0.14062 0.41406-0.14062 0.64062 0 0.44922 0.19531 0.77734 0.59375 0.98438 0.17578 0.085937 0.36719 0.125 0.57812 0.125 0.44531 0 0.82031-0.17578 1.125-0.53125 0.25781-0.30078 0.39062-0.67969 0.39062-1.1406z"/>
141
+ </symbol>
142
+ <symbol id="o" overflow="visible">
143
+ <path d="m2.2969-9.0156v8.0312c0 0.29297 0.070313 0.46484 0.21875 0.51562 0.09375 0.042969 0.35938 0.0625 0.79688 0.0625v0.40625l-1.4375-0.03125c-0.10547 0-0.58984 0.011719-1.4531 0.03125v-0.40625c0.51953 0 0.82031-0.035156 0.90625-0.10938l0.03125-0.03125c0.050781-0.070313 0.078125-0.21875 0.078125-0.4375v-6.7656c0-0.33203-0.058594-0.53906-0.17188-0.625h-0.015625c-0.09375-0.050781-0.26172-0.082031-0.5-0.09375h-0.32812v-0.40625z"/>
144
+ </symbol>
145
+ <symbol id="as" overflow="visible">
146
+ <path d="m7.5625-3.3594-0.35938 3.3594h-6.7812v-0.40625h0.3125c0.57031 0 0.89844-0.070312 0.98438-0.21875 0.03125-0.0625 0.046875-0.19141 0.046875-0.39062v-6.8438c0-0.25781-0.054687-0.42578-0.15625-0.5-0.11719-0.070313-0.40625-0.10938-0.875-0.10938h-0.3125v-0.40625c0.3125 0.023438 0.97266 0.03125 1.9844 0.03125 1.1445 0 1.875-0.007812 2.1875-0.03125v0.40625h-0.4375c-0.6875 0-1.0781 0.085938-1.1719 0.25-0.042969 0.0625-0.0625 0.18359-0.0625 0.35938v6.9375c0 0.26172 0.046875 0.41406 0.14062 0.45312h0.015625c0.082031 0.042969 0.24219 0.0625 0.48438 0.0625h1.0625c1.2266 0 2.0078-0.48828 2.3438-1.4688 0.11328-0.32031 0.20312-0.81641 0.26562-1.4844z"/>
147
+ </symbol>
148
+ <symbol id="ar" overflow="visible">
149
+ <path d="m5.0625-3h-3.625c0 0.88672 0.12891 1.5391 0.39062 1.9531 0.41406 0.53125 0.90625 0.82031 1.4688 0.85938 0.60156 0 1.0859-0.23828 1.4531-0.71875 0.125-0.17578 0.22656-0.37891 0.3125-0.60938 0.019531-0.125 0.070312-0.1875 0.15625-0.1875 0.11328 0 0.17188 0.054687 0.17188 0.15625 0 0.1875-0.12109 0.44922-0.35938 0.78125-0.35547 0.49219-0.82422 0.78125-1.4062 0.875-0.125 0.019531-0.26172 0.03125-0.40625 0.03125-0.8125 0-1.5078-0.3125-2.0781-0.9375-0.52344-0.57031-0.78125-1.2578-0.78125-2.0625 0-0.90625 0.3125-1.6484 0.9375-2.2344 0.5-0.48828 1.0859-0.73438 1.7656-0.73438 0.97656 0 1.6641 0.41797 2.0625 1.25 0.17578 0.39844 0.26562 0.82812 0.26562 1.2969 0 0.14844-0.03125 0.23438-0.09375 0.26562-0.023437 0.011719-0.10156 0.015625-0.23438 0.015625zm-3.6094-0.28125h3.0781c0-0.82031-0.18359-1.4414-0.54688-1.8594-0.24219-0.25781-0.54688-0.39062-0.92188-0.39062-0.4375 0-0.80859 0.20312-1.1094 0.60938-0.30469 0.38672-0.46875 0.93359-0.5 1.6406z"/>
150
+ </symbol>
151
+ <symbol id="aq" overflow="visible">
152
+ <path d="m2.3125-5.2031v4.1875c0 0.27344 0.050781 0.4375 0.15625 0.5l0.015625 0.015625c0.125 0.0625 0.39453 0.09375 0.8125 0.09375h0.28125v0.40625c-0.34375-0.019531-0.89844-0.03125-1.6562-0.03125 0.03125 0-0.46484 0.011719-1.4844 0.03125v-0.40625c0.50781 0 0.8125-0.035156 0.90625-0.10938l0.015625-0.03125c0.0625-0.070313 0.09375-0.21875 0.09375-0.4375v-4.2188h-1.0312v-0.40625h1.0312v-1.4844c0-0.80078 0.32812-1.3906 0.98438-1.7656 0.32031-0.20703 0.66406-0.3125 1.0312-0.3125 0.48828 0 0.84375 0.17188 1.0625 0.51562 0.070312 0.125 0.10938 0.26172 0.10938 0.40625 0 0.30469-0.13672 0.48438-0.40625 0.54688-0.054687 0.011719-0.10938 0.015625-0.17188 0.015625-0.28125 0-0.46094-0.13281-0.53125-0.40625h-0.015625v-0.015625-0.125c0-0.25781 0.12891-0.44141 0.39062-0.54688-0.13672-0.0625-0.28125-0.09375-0.4375-0.09375-0.375 0-0.6875 0.21484-0.9375 0.64062-0.16797 0.30469-0.25 0.67969-0.25 1.125v1.5h1.5156v0.40625z"/>
153
+ </symbol>
154
+ <symbol id="ap" overflow="visible">
155
+ <path d="m2.25-5.2031v3.6094c0 0.875 0.25 1.3438 0.75 1.4062h0.125c0.36328 0 0.625-0.23828 0.78125-0.71875 0.050781-0.20703 0.078125-0.45312 0.078125-0.73438v-0.71875h0.32812v0.75c0 0.71094-0.19922 1.2188-0.59375 1.5312-0.1875 0.14453-0.41797 0.21875-0.6875 0.21875-0.73047 0-1.2305-0.26953-1.5-0.8125-0.11719-0.25781-0.17188-0.57031-0.17188-0.9375v-3.5938h-1.1094v-0.28125c0.76953-0.03125 1.2812-0.51562 1.5312-1.4531 0.082031-0.33203 0.12891-0.6875 0.14062-1.0625h0.32812v2.3906h1.8594v0.40625z"/>
156
+ </symbol>
157
+ <symbol id="ao" overflow="visible">
158
+ <path d="m1.2188-2.7969v1.9375c0 0.46875 0.12891 0.71875 0.39062 0.75 0.019531 0.011719 0.046875 0.015625 0.078125 0.015625 0.19531 0 0.33203-0.12891 0.40625-0.39062 0.039062-0.11328 0.0625-0.24219 0.0625-0.39062v-0.39062h0.17188v0.39062c0 0.38672-0.10938 0.66406-0.32812 0.82812-0.10547 0.082031-0.23047 0.125-0.375 0.125-0.38672 0-0.65234-0.14453-0.79688-0.4375-0.0625-0.14453-0.09375-0.31641-0.09375-0.51562v-1.9219h-0.59375v-0.15625c0.40625-0.019531 0.67578-0.28125 0.8125-0.78125 0.050781-0.17578 0.078125-0.36719 0.078125-0.57812h0.1875v1.2969h1v0.21875z"/>
159
+ </symbol>
160
+ <symbol id="n" overflow="visible">
161
+ <path d="m1.2344-3.0938v2.5625c0 0.14844 0.03125 0.23438 0.09375 0.26562 0.050781 0.03125 0.1875 0.046875 0.40625 0.046875v0.21875c-0.48047-0.0078125-0.72656-0.015625-0.73438-0.015625-0.0625 0-0.32031 0.0078125-0.76562 0.015625v-0.21875c0.26953 0 0.42969-0.019531 0.48438-0.0625l0.015625-0.015625c0.03125-0.03125 0.046875-0.10938 0.046875-0.23438v-1.8906c0-0.17578-0.039062-0.28516-0.10938-0.32812h-0.015625v-0.015625c-0.0625-0.019531-0.19531-0.03125-0.39062-0.03125v-0.21875zm0.03125-1.2188c0 0.17969-0.078125 0.29297-0.23438 0.34375-0.042969 0.023438-0.089844 0.03125-0.14062 0.03125-0.15625 0-0.27344-0.078125-0.34375-0.23438-0.011719-0.039063-0.015625-0.085937-0.015625-0.14062 0-0.14453 0.0625-0.25391 0.1875-0.32812 0.050781-0.03125 0.10938-0.046875 0.17188-0.046875 0.16406 0 0.28125 0.074219 0.34375 0.21875 0.019531 0.054688 0.03125 0.10547 0.03125 0.15625z"/>
162
+ </symbol>
163
+ <symbol id="m" overflow="visible">
164
+ <path d="m0.76562-2.4062c0-0.1875-0.03125-0.30078-0.09375-0.34375-0.0625-0.03125-0.16797-0.046875-0.3125-0.046875h-0.14062v-0.21875l1-0.078125v0.73438c0.21875-0.48828 0.5625-0.73438 1.0312-0.73438 0.34375 0 0.58594 0.089844 0.73438 0.26562 0.125 0.13672 0.19141 0.33594 0.20312 0.59375 0.007812 0.085937 0.015625 0.24219 0.015625 0.46875v1.3438c0 0.10547 0.066406 0.16797 0.20312 0.1875 0.050781 0.011719 0.16406 0.015625 0.34375 0.015625v0.21875c-0.48047-0.0078125-0.74219-0.015625-0.78125-0.015625-0.042969 0-0.30859 0.0078125-0.79688 0.015625v-0.21875c0.26953 0 0.42969-0.019531 0.48438-0.0625l0.015625-0.015625c0.03125-0.03125 0.046875-0.10938 0.046875-0.23438v-1.625c0-0.46875-0.13672-0.72266-0.40625-0.76562-0.03125-0.007813-0.070312-0.015625-0.10938-0.015625-0.29297 0-0.53125 0.125-0.71875 0.375-0.15625 0.19922-0.23438 0.44922-0.23438 0.75v1.2812c0 0.15625 0.035156 0.25 0.10938 0.28125 0.050781 0.023438 0.19531 0.03125 0.4375 0.03125v0.21875c-0.48047-0.0078125-0.74219-0.015625-0.78125-0.015625-0.042969 0-0.30859 0.0078125-0.79688 0.015625v-0.21875c0.28125 0 0.44141-0.019531 0.48438-0.0625l0.015625-0.015625c0.03125-0.03125 0.046875-0.10938 0.046875-0.23438z"/>
165
+ </symbol>
166
+ <symbol id="l" overflow="visible">
167
+ <path d="m2.9062-2.3594-1.2344 3c-0.21875 0.53125-0.51562 0.79688-0.89062 0.79688-0.25 0-0.4375-0.09375-0.5625-0.28125-0.054688-0.09375-0.078125-0.1875-0.078125-0.28125 0-0.16797 0.070313-0.26562 0.21875-0.29688 0.019531-0.011719 0.039063-0.015625 0.0625-0.015625 0.14453 0 0.23828 0.066406 0.28125 0.20312 0.007813 0.03125 0.015625 0.0625 0.015625 0.09375 0 0.16406-0.089844 0.26562-0.26562 0.29688 0.082031 0.082031 0.19141 0.125 0.32812 0.125 0.26953 0 0.5-0.20312 0.6875-0.60938 0.019531-0.054687 0.054688-0.14062 0.10938-0.26562 0.0625-0.13672 0.11719-0.27344 0.17188-0.40625l-1.0469-2.5625c-0.0625-0.13281-0.15625-0.20703-0.28125-0.21875-0.085937-0.007812-0.17969-0.015625-0.28125-0.015625v-0.21875c0.20703 0.011719 0.42969 0.015625 0.67188 0.015625 0.14453 0 0.39844-0.003906 0.76562-0.015625v0.21875c-0.26172 0-0.39062 0.058594-0.39062 0.17188 0 0.023438 0.007812 0.070312 0.03125 0.14062l0.78125 1.875 0.70312-1.7188c0.03125-0.0625 0.046875-0.11719 0.046875-0.17188 0-0.17578-0.09375-0.27344-0.28125-0.29688h-0.046875v-0.21875c0.3125 0.011719 0.51562 0.015625 0.60938 0.015625 0.1875 0 0.36328-0.003906 0.53125-0.015625v0.21875c-0.3125 0-0.53125 0.14844-0.65625 0.4375z"/>
168
+ </symbol>
169
+ <symbol id="an" overflow="visible">
170
+ <path d="m4.6562-4.7344 0.14062 1.5781h-0.17188c-0.054688-0.53906-0.13281-0.89062-0.23438-1.0469-0.11719-0.17578-0.35547-0.28125-0.71875-0.3125h-0.3125-0.39062c-0.085938 0.0625-0.13281 0.15625-0.14062 0.28125v3.6875c0 0.125 0.03125 0.21094 0.09375 0.25 0.082031 0.054687 0.29688 0.078125 0.64062 0.078125h0.28125v0.21875c-0.1875-0.0078125-0.63281-0.015625-1.3281-0.015625-0.6875 0-1.125 0.0078125-1.3125 0.015625v-0.21875h0.28125c0.40625 0 0.63281-0.039062 0.6875-0.125 0.019531-0.03125 0.03125-0.0625 0.03125-0.09375 0.007813-0.019531 0.015625-0.054688 0.015625-0.10938v-3.6875c0-0.13281-0.023438-0.21875-0.0625-0.25h-0.03125c-0.011719-0.007813-0.03125-0.019531-0.0625-0.03125h-0.375c-0.48047 0-0.79688 0.070313-0.95312 0.20312l-0.015625 0.03125h-0.015625c-0.125 0.14844-0.21094 0.45312-0.25 0.92188-0.011719 0.054687-0.023437 0.12109-0.03125 0.20312h-0.17188l0.14062-1.5781z"/>
171
+ </symbol>
172
+ <symbol id="al" overflow="visible">
173
+ <path d="m21.453-21.172v18.438c0 0.69922 0.14062 1.1406 0.42188 1.3281 0.35156 0.21875 1.1328 0.32812 2.3438 0.32812h0.84375v1.0781c-0.82422-0.070312-2.5547-0.10938-5.1875-0.10938-2.6172 0-4.3281 0.039062-5.1406 0.10938v-1.0781h0.84375c1.5078 0 2.3828-0.20312 2.625-0.60938 0.09375-0.15625 0.14062-0.50391 0.14062-1.0469v-9.1719h-10.469v9.1719c0 0.69922 0.14062 1.1406 0.42188 1.3281 0.32031 0.21875 1.1016 0.32812 2.3438 0.32812h0.84375v1.0781c-0.82422-0.070312-2.5547-0.10938-5.1875-0.10938-2.6172 0-4.3281 0.039062-5.1406 0.10938v-1.0781h0.84375c1.5078 0 2.3828-0.20312 2.625-0.60938 0.09375-0.15625 0.14062-0.50391 0.14062-1.0469v-18.438c0-0.69531-0.14062-1.1406-0.42188-1.3281-0.33594-0.20703-1.1172-0.3125-2.3438-0.3125h-0.84375v-1.0938c0.8125 0.074219 2.5352 0.10938 5.1719 0.10938 2.6133 0 4.332-0.035156 5.1562-0.10938v1.0938h-0.84375c-1.5234 0-2.3984 0.19922-2.625 0.59375-0.09375 0.15625-0.14062 0.50781-0.14062 1.0469v8.1875h10.469v-8.1875c0-0.69531-0.14062-1.1406-0.42188-1.3281-0.35547-0.20703-1.1367-0.3125-2.3438-0.3125h-0.84375v-1.0938c0.8125 0.074219 2.5391 0.10938 5.1875 0.10938 2.6016 0 4.3164-0.035156 5.1406-0.10938v1.0938h-0.84375c-1.5234 0-2.3984 0.19922-2.625 0.59375-0.09375 0.15625-0.14062 0.50781-0.14062 1.0469z"/>
174
+ </symbol>
175
+ <symbol id="d" overflow="visible">
176
+ <path d="m13.688-2.7656c-0.98047 2.1055-2.4844 3.1562-4.5156 3.1562-2.875 0-4.5703-1.0039-5.0781-3.0156-0.16797-0.60156-0.25-1.5703-0.25-2.9062v-5.25c0-1.5195-0.10547-2.4297-0.3125-2.7344l-0.20312-0.20312c-0.26172-0.1875-0.99609-0.28125-2.2031-0.28125v-1.0781l5.1406-0.39062v11.625c0 1.418 0.25391 2.3594 0.76562 2.8281h0.03125c0.5 0.41797 1.2578 0.625 2.2812 0.625 1.582 0 2.7578-0.78125 3.5312-2.3438 0.46875-0.88281 0.70312-1.9102 0.70312-3.0781v-6.2344c0-0.90625-0.17188-1.4609-0.51562-1.6719h-0.046875c-0.32422-0.1875-1.0469-0.28125-2.1719-0.28125v-1.0781l5.1562-0.39062v12.422c0 0.90625 0.17188 1.4688 0.51562 1.6875h0.046875c0.32031 0.1875 1.0391 0.28125 2.1562 0.28125v1.0781l-5.0312 0.39062z"/>
177
+ </symbol>
178
+ <symbol id="ag" overflow="visible">
179
+ <path d="m7.7656-6.0156c1.0312 0 1.8594-0.46875 2.4844-1.4062 0.375-0.625 0.5625-1.6016 0.5625-2.9375-0.09375-2.8008-1.1094-4.2383-3.0469-4.3125-1.0234 0-1.8516 0.46875-2.4844 1.4062-0.375 0.63672-0.5625 1.6172-0.5625 2.9375 0.09375 2.8047 1.1094 4.2422 3.0469 4.3125zm-3.4531-0.28125c-0.40625 0.46875-0.60938 1.0156-0.60938 1.6406 0 0.96094 0.375 1.6562 1.125 2.0938 0.23828 0.14844 0.48438 0.23047 0.73438 0.25 0.16406 0.023438 1.0391 0.03125 2.625 0.03125 2.4062 0 4.1562 0.21484 5.25 0.64062 0.25781 0.09375 0.51562 0.21094 0.76562 0.34375 1.4258 0.9375 2.1875 2.2656 2.2812 3.9844 0 1.5195-0.98047 2.7109-2.9375 3.5781-1.4062 0.625-3.0156 0.9375-4.8281 0.9375-2.7109 0-4.8242-0.63281-6.3438-1.8906-0.92969-0.74219-1.3906-1.5898-1.3906-2.5469 0-1.168 0.59375-2.125 1.7812-2.875 0.41406-0.28125 0.89453-0.48828 1.4375-0.625-0.96094-0.75-1.4766-1.7852-1.5469-3.1094 0-1.1016 0.36328-2.0703 1.0938-2.9062-1.0547-1.0078-1.6055-2.2109-1.6562-3.6094 0-1.6133 0.70312-2.9297 2.1094-3.9531 1.0195-0.76953 2.207-1.1562 3.5625-1.1562 1.4062 0 2.6445 0.42188 3.7188 1.2656 1.1133-1.1016 2.3477-1.6562 3.7031-1.6562 0.91406 0 1.4883 0.42188 1.7188 1.2656 0.039062 0.13672 0.0625 0.28906 0.0625 0.45312-0.09375 0.60547-0.43359 0.95312-1.0156 1.0469-0.51172 0-0.83594-0.24219-0.96875-0.73438-0.03125-0.09375-0.046875-0.1875-0.046875-0.28125 0-0.48828 0.1875-0.80078 0.5625-0.9375-0.0625-0.019531-0.17969-0.03125-0.34375-0.03125-1.1484 0-2.1992 0.45312-3.1562 1.3594 0.95703 0.88672 1.4375 2.0156 1.4375 3.3906 0 1.6172-0.69922 2.9336-2.0938 3.9531-1.0312 0.77344-2.2266 1.1562-3.5781 1.1562-1.3047 0-2.4531-0.35938-3.4531-1.0781zm4.4375 12.703c2.2188 0 3.8984-0.58594 5.0469-1.75 0.58203-0.58594 0.875-1.2148 0.875-1.8906 0-1.7305-1.3828-2.7109-4.1406-2.9375h-0.03125c-0.60547-0.050781-1.5273-0.078125-2.7656-0.078125h-2.0625c-1.0938 0.074219-1.9219 0.59766-2.4844 1.5781-0.26172 0.44531-0.39062 0.92578-0.39062 1.4375 0 1.0938 0.67578 2.0039 2.0312 2.7344 1.0938 0.60156 2.3984 0.90625 3.9219 0.90625z"/>
180
+ </symbol>
181
+ <symbol id="af" overflow="visible">
182
+ <path d="m13.656-8.0781h-9.7656c0 2.375 0.34766 4.125 1.0469 5.25 1.1133 1.4375 2.4297 2.2188 3.9531 2.3438 1.6133 0 2.9102-0.65625 3.8906-1.9688 0.34375-0.46875 0.61719-1.0156 0.82812-1.6406 0.070313-0.32031 0.22266-0.48438 0.45312-0.48438 0.3125 0 0.46875 0.13672 0.46875 0.40625 0 0.52344-0.32812 1.2266-0.98438 2.1094-0.96094 1.3047-2.2188 2.082-3.7812 2.3438-0.35547 0.070312-0.71484 0.10938-1.0781 0.10938-2.1992 0-4.0703-0.84375-5.6094-2.5312-1.3984-1.5312-2.0938-3.3828-2.0938-5.5625 0-2.4258 0.83594-4.4297 2.5156-6.0156 1.3516-1.3125 2.9414-1.9688 4.7656-1.9688 2.6328 0 4.4766 1.125 5.5312 3.375 0.48828 1.043 0.73438 2.2109 0.73438 3.5 0 0.39844-0.085938 0.625-0.25 0.6875-0.074219 0.03125-0.28125 0.046875-0.625 0.046875zm-9.7344-0.73438h8.2969c0-2.2188-0.49219-3.8906-1.4688-5.0156-0.65625-0.71875-1.4844-1.0781-2.4844-1.0781-1.1992 0-2.2031 0.54688-3.0156 1.6406-0.8125 1.0547-1.2578 2.5391-1.3281 4.4531z"/>
183
+ </symbol>
184
+ <symbol id="ae" overflow="visible">
185
+ <path d="m8.4375-23.141 7.5938 19.609 7.6562-19.703c0.14453-0.375 0.30078-0.58594 0.46875-0.64062 0.11328-0.019531 0.34375-0.03125 0.6875-0.03125h5.9219v1.0938h-0.84375c-1.5117 0-2.3867 0.19922-2.625 0.59375-0.09375 0.15625-0.14062 0.50781-0.14062 1.0469v18.438c0 0.69922 0.14062 1.1406 0.42188 1.3281 0.35156 0.21875 1.1328 0.32812 2.3438 0.32812h0.84375v1.0781c-0.86719-0.070312-2.5312-0.10938-5-0.10938-2.5 0-4.1836 0.039062-5.0469 0.10938v-1.0781h0.84375c1.5078 0 2.3828-0.20312 2.625-0.60938 0.09375-0.15625 0.14062-0.50391 0.14062-1.0469v-20.078h-0.03125l-8.6094 22.141c-0.16797 0.42969-0.38281 0.65234-0.64062 0.67188-0.28125 0-0.51562-0.25391-0.70312-0.76562l-8.4219-21.781h-0.046875v18.875c0 1 0.31641 1.6875 0.95312 2.0625 0.60156 0.35547 1.4883 0.53125 2.6562 0.53125v1.0781c-2.4492-0.070312-3.8125-0.10938-4.0938-0.10938s-1.6484 0.039062-4.0938 0.10938v-1.0781c2.2578 0 3.4453-0.67578 3.5625-2.0312 0.03125-0.14453 0.046875-0.33203 0.046875-0.5625v-17.5c0-0.69531-0.14062-1.1406-0.42188-1.3281-0.33594-0.20703-1.1172-0.3125-2.3438-0.3125h-0.84375v-1.0938h5.9062c0.53906 0 0.86719 0.09375 0.98438 0.28125l0.03125 0.03125 0.046875 0.03125v0.046875c0.039063 0.09375 0.097656 0.21875 0.17188 0.375z"/>
186
+ </symbol>
187
+ <symbol id="k" overflow="visible">
188
+ <path d="m6.1875-24.297v21.641c0 0.79297 0.1875 1.2578 0.5625 1.3906 0.25781 0.125 0.98438 0.1875 2.1719 0.1875v1.0781l-3.875-0.10938c-0.28125 0-1.5781 0.039062-3.8906 0.10938v-1.0781c1.375 0 2.1758-0.10938 2.4062-0.32812l0.078125-0.0625c0.16406-0.1875 0.25-0.58203 0.25-1.1875v-18.203c0-0.90625-0.16797-1.4688-0.5-1.6875h-0.03125c-0.26172-0.13281-0.70312-0.22266-1.3281-0.26562h-0.875v-1.0938z"/>
189
+ </symbol>
190
+ <symbol id="ad" overflow="visible">
191
+ <path d="m6.0625-14v9.7344c0 2.3359 0.67188 3.5781 2.0156 3.7344 0.09375 0.03125 0.20312 0.046875 0.32812 0.046875 1 0 1.6953-0.65625 2.0938-1.9688 0.16406-0.5625 0.25-1.2109 0.25-1.9531v-1.9219h0.875v1.9844c0 1.918-0.53906 3.2969-1.6094 4.1406-0.52344 0.39453-1.1406 0.59375-1.8594 0.59375-1.9609 0-3.3047-0.73438-4.0312-2.2031-0.32422-0.70703-0.48438-1.5508-0.48438-2.5312v-9.6562h-2.9688v-0.76562c2.0703-0.09375 3.4453-1.3984 4.125-3.9219 0.22656-0.88281 0.35938-1.832 0.39062-2.8438h0.875v6.4531h5v1.0781z"/>
192
+ </symbol>
193
+ <symbol id="ac" overflow="visible">
194
+ <path d="m6.1875-15.469v12.844c0 0.71875 0.14062 1.1641 0.42188 1.3281 0.28125 0.14844 0.95703 0.21875 2.0312 0.21875v1.0781c-2.375-0.070312-3.5898-0.10938-3.6406-0.10938-0.32422 0-1.6055 0.039062-3.8438 0.10938v-1.0781c1.375 0 2.1758-0.10938 2.4062-0.32812l0.078125-0.0625c0.16406-0.1875 0.25-0.58203 0.25-1.1875v-9.4219c0-0.92578-0.1875-1.4844-0.5625-1.6719h-0.03125l-0.046875-0.046875c-0.30469-0.13281-0.95312-0.20312-1.9531-0.20312v-1.0781zm0.14062-6.0938c0 0.86719-0.38281 1.4375-1.1406 1.7188-0.24219 0.09375-0.47656 0.14062-0.70312 0.14062-0.82422 0-1.3984-0.375-1.7188-1.125v-0.03125c-0.09375-0.22656-0.14062-0.46094-0.14062-0.70312 0-0.71875 0.32812-1.2539 0.98438-1.6094 0.25-0.16406 0.53906-0.25 0.875-0.25 0.78906 0 1.3477 0.35547 1.6719 1.0625 0.11328 0.25 0.17188 0.51562 0.17188 0.79688z"/>
195
+ </symbol>
196
+ <symbol id="ab" overflow="visible">
197
+ <path d="m12.562-13.516c-0.83594-0.86328-2.0859-1.2969-3.75-1.2969-1.4688 0-2.6484 0.70312-3.5312 2.1094-0.79297 1.2617-1.1875 2.9531-1.1875 5.0781 0 3.3555 1.0039 5.5586 3.0156 6.6094 0.625 0.35547 1.2656 0.53125 1.9219 0.53125 2.2812 0 3.8047-1.2266 4.5781-3.6875 0.070313-0.22656 0.22266-0.34375 0.45312-0.34375 0.3125 0 0.46875 0.11719 0.46875 0.34375 0 0.44922-0.26172 1.0781-0.78125 1.8906-1.1367 1.7812-2.8125 2.6719-5.0312 2.6719-2.1992 0-4.0547-0.86328-5.5625-2.5938-1.3125-1.5195-1.9688-3.3047-1.9688-5.3594 0-2.4062 0.82812-4.4102 2.4844-6.0156 1.4258-1.4062 3.1289-2.1094 5.1094-2.1094 1.9375 0 3.4219 0.52734 4.4531 1.5781 0.60156 0.63672 0.90625 1.3594 0.90625 2.1719 0 0.88672-0.38672 1.4219-1.1562 1.6094-0.13672 0.023437-0.28906 0.03125-0.45312 0.03125-0.8125 0-1.3281-0.36719-1.5469-1.1094-0.042969-0.14453-0.0625-0.3125-0.0625-0.5 0-0.83203 0.40625-1.3438 1.2188-1.5312 0.14453-0.050781 0.28516-0.078125 0.42188-0.078125z"/>
198
+ </symbol>
199
+ <symbol id="ak" overflow="visible">
200
+ <path d="m16.484-7.4844c0 2.3984-0.88672 4.375-2.6562 5.9375-1.4688 1.293-3.1719 1.9375-5.1094 1.9375-2.2422 0-4.1328-0.84375-5.6719-2.5312-1.375-1.5078-2.0625-3.2891-2.0625-5.3438 0-2.3828 0.84766-4.3945 2.5469-6.0312 1.4688-1.4453 3.207-2.1719 5.2188-2.1719 2.2578 0 4.1602 0.90234 5.7031 2.7031 1.3516 1.5625 2.0312 3.3984 2.0312 5.5zm-7.7344 7c1.5625 0 2.7969-0.65625 3.7031-1.9688l0.35938-0.625c0.50781-1.0312 0.76562-2.5938 0.76562-4.6875 0-2.2383-0.30469-3.8633-0.90625-4.875-1-1.4453-2.3203-2.2031-3.9531-2.2656-1.4492 0-2.6406 0.58594-3.5781 1.75-0.15625 0.1875-0.29688 0.38672-0.42188 0.59375-0.55469 1.0234-0.82812 2.6211-0.82812 4.7969 0 2.2617 0.28906 3.9062 0.875 4.9375 0.97656 1.5117 2.3047 2.293 3.9844 2.3438z"/>
201
+ </symbol>
202
+ <symbol id="aj" overflow="visible">
203
+ <path d="m3.8438-12.047c0-0.90625-0.17188-1.4609-0.51562-1.6719-0.28125-0.16406-0.78906-0.25781-1.5156-0.28125h-0.6875v-1.0781l4.9375-0.39062v3.6719c1.0938-2.4453 2.8164-3.6719 5.1719-3.6719 2.7266 0 4.2812 1.1406 4.6562 3.4219 0.69531-1.582 1.7969-2.6289 3.2969-3.1406 0.55078-0.1875 1.1445-0.28125 1.7812-0.28125 1.75 0 2.9727 0.43359 3.6719 1.2969 0.625 0.71875 0.97266 1.7109 1.0469 2.9688 0.019531 0.44922 0.03125 1.2461 0.03125 2.3906v6.6719c0.03125 0.5625 0.36719 0.89062 1.0156 0.98438 0.28125 0.054688 0.85156 0.078125 1.7188 0.078125v1.0781c-2.375-0.070312-3.6836-0.10938-3.9219-0.10938-0.1875 0-1.5078 0.039062-3.9531 0.10938v-1.0781c1.375 0 2.1797-0.10938 2.4219-0.32812l0.0625-0.0625c0.16406-0.1875 0.25-0.58203 0.25-1.1875v-8.1562c0-2.3125-0.66797-3.582-2-3.8125-0.1875-0.050781-0.38672-0.078125-0.59375-0.078125-1.4297 0-2.6172 0.62109-3.5625 1.8594-0.77344 1-1.1562 2.25-1.1562 3.75v6.4375c0 0.79297 0.1875 1.2578 0.5625 1.3906 0.25 0.125 0.96875 0.1875 2.1562 0.1875v1.0781c-2.375-0.070312-3.6797-0.10938-3.9062-0.10938-0.1875 0-1.5117 0.039062-3.9688 0.10938v-1.0781c1.3828 0 2.1914-0.10938 2.4219-0.32812l0.0625-0.0625c0.16406-0.1875 0.25-0.58203 0.25-1.1875v-8.1562c0-2.3125-0.66797-3.582-2-3.8125-0.17969-0.050781-0.375-0.078125-0.59375-0.078125-1.418 0-2.6055 0.62109-3.5625 1.8594-0.77344 1-1.1562 2.25-1.1562 3.75v6.4375c0 0.79297 0.1875 1.2578 0.5625 1.3906 0.25 0.125 0.97266 0.1875 2.1719 0.1875v1.0781c-2.3867-0.070312-3.6953-0.10938-3.9219-0.10938-0.1875 0-1.5078 0.039062-3.9531 0.10938v-1.0781c1.375 0 2.1758-0.10938 2.4062-0.32812l0.078125-0.0625c0.15625-0.1875 0.23438-0.58203 0.23438-1.1875z"/>
204
+ </symbol>
205
+ <symbol id="ai" overflow="visible">
206
+ <path d="m3.8438-12.047c0-0.90625-0.17188-1.4609-0.51562-1.6719-0.28125-0.16406-0.78906-0.25781-1.5156-0.28125h-0.6875v-1.0781l4.9375-0.39062v3.6719c1.0938-2.4453 2.8164-3.6719 5.1719-3.6719 1.75 0 2.9727 0.43359 3.6719 1.2969 0.63281 0.71875 0.98438 1.7109 1.0469 2.9688 0.03125 0.44922 0.046875 1.2461 0.046875 2.3906v6.6719c0.019531 0.5625 0.35938 0.89062 1.0156 0.98438 0.28125 0.054688 0.84766 0.078125 1.7031 0.078125v1.0781c-2.375-0.070312-3.6797-0.10938-3.9062-0.10938-0.1875 0-1.5117 0.039062-3.9688 0.10938v-1.0781c1.3828 0 2.1914-0.10938 2.4219-0.32812l0.0625-0.0625c0.16406-0.1875 0.25-0.58203 0.25-1.1875v-8.1562c0-2.3125-0.66797-3.582-2-3.8125-0.17969-0.050781-0.375-0.078125-0.59375-0.078125-1.418 0-2.6055 0.62109-3.5625 1.8594-0.77344 1-1.1562 2.25-1.1562 3.75v6.4375c0 0.79297 0.1875 1.2578 0.5625 1.3906 0.25 0.125 0.97266 0.1875 2.1719 0.1875v1.0781c-2.3867-0.070312-3.6953-0.10938-3.9219-0.10938-0.1875 0-1.5078 0.039062-3.9531 0.10938v-1.0781c1.375 0 2.1758-0.10938 2.4062-0.32812l0.078125-0.0625c0.15625-0.1875 0.23438-0.58203 0.23438-1.1875z"/>
207
+ </symbol>
208
+ <symbol id="ah" overflow="visible">
209
+ <path d="m7.2812-6.7969c-2.0117-0.39453-3.3281-0.77344-3.9531-1.1406-0.24219-0.125-0.46484-0.28125-0.67188-0.46875-1-0.8125-1.5-1.8008-1.5-2.9688 0-1.6328 0.72266-2.8203 2.1719-3.5625 0.90625-0.5 2.0469-0.75 3.4219-0.75 1.3125 0 2.4102 0.32812 3.2969 0.98438 0.25781-0.20703 0.45703-0.39453 0.59375-0.5625 0.30078-0.28125 0.53516-0.42188 0.70312-0.42188 0.22656 0.21875 0.35156 0.5 0.375 0.84375v3.5312c0 0.5-0.070312 0.77344-0.20312 0.8125h-0.03125l-0.046875 0.03125h-0.17188c-0.25 0-0.39062-0.10156-0.42188-0.3125-0.15625-2.3516-1.125-3.7266-2.9062-4.125-0.36719-0.070312-0.76172-0.10938-1.1875-0.10938-2.1875 0-3.4688 0.67969-3.8438 2.0312-0.054688 0.21094-0.078125 0.41797-0.078125 0.625 0 1.1992 0.89844 2.043 2.7031 2.5312 0.35156 0.09375 0.89062 0.21094 1.6094 0.34375 1.6758 0.32422 2.8789 0.77734 3.6094 1.3594 0.13281 0.09375 0.25781 0.19922 0.375 0.3125 0.97656 0.99219 1.4688 2.1016 1.4688 3.3281 0 1.9922-0.8125 3.3906-2.4375 4.2031-0.89844 0.44531-1.9609 0.67188-3.1875 0.67188-1.5234 0-2.8086-0.50391-3.8594-1.5156l-0.6875 0.8125c-0.46875 0.46875-0.76172 0.70312-0.875 0.70312-0.24219-0.21875-0.37109-0.5-0.39062-0.84375v-4.625c0-0.50781 0.082031-0.78906 0.25-0.84375l0.03125-0.03125h0.17188c0.22656 0 0.37891 0.13281 0.45312 0.39062 0 0.042969 0.007812 0.10938 0.03125 0.20312 0.61328 2.7109 1.7695 4.3086 3.4688 4.7969 0.41406 0.11719 0.88281 0.17188 1.4062 0.17188 2.0938 0 3.3633-0.73438 3.8125-2.2031 0.09375-0.30078 0.14062-0.625 0.14062-0.96875 0-1.707-1.2148-2.7852-3.6406-3.2344z"/>
210
+ </symbol>
211
+ </defs>
212
+ <rect width="476" height="128" fill="#fff"/>
213
+ <path transform="scale(14)" d="m0.71429 0.73438h32.562" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
214
+ <path transform="scale(14)" d="m0.71429 1.3167h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
215
+ <g>
216
+ <use x="50.019531" y="23.296875" xlink:href="#u"/>
217
+ </g>
218
+ <g>
219
+ <use x="62.851562" y="23.296875" xlink:href="#t"/>
220
+ </g>
221
+ <g>
222
+ <use x="69.851562" y="23.296875" xlink:href="#g"/>
223
+ </g>
224
+ <g>
225
+ <use x="75.296875" y="23.296875" xlink:href="#bm"/>
226
+ </g>
227
+ <g>
228
+ <use x="80.78125" y="23.296875" xlink:href="#f"/>
229
+ </g>
230
+ <g>
231
+ <use x="84.671875" y="23.296875" xlink:href="#bl"/>
232
+ </g>
233
+ <path transform="scale(14)" d="m9.3943 1.3167h0.0399" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
234
+ <g>
235
+ <use x="184.996094" y="23.296875" xlink:href="#u"/>
236
+ </g>
237
+ <g>
238
+ <use x="197.832031" y="23.296875" xlink:href="#s"/>
239
+ </g>
240
+ <g>
241
+ <use x="205.609375" y="23.296875" xlink:href="#r"/>
242
+ </g>
243
+ <g>
244
+ <use x="209.496094" y="23.296875" xlink:href="#g"/>
245
+ </g>
246
+ <g>
247
+ <use x="214.941406" y="23.296875" xlink:href="#f"/>
248
+ </g>
249
+ <g>
250
+ <use x="218.832031" y="23.296875" xlink:href="#q"/>
251
+ </g>
252
+ <g>
253
+ <use x="225.050781" y="23.296875" xlink:href="#j"/>
254
+ </g>
255
+ <g>
256
+ <use x="232.050781" y="23.296875" xlink:href="#r"/>
257
+ </g>
258
+ <g>
259
+ <use x="235.941406" y="23.296875" xlink:href="#s"/>
260
+ </g>
261
+ <g>
262
+ <use x="243.71875" y="23.296875" xlink:href="#i"/>
263
+ </g>
264
+ <g>
265
+ <use x="255.386719" y="23.296875" xlink:href="#h"/>
266
+ </g>
267
+ <g>
268
+ <use x="263.164062" y="23.296875" xlink:href="#b"/>
269
+ </g>
270
+ <path transform="scale(14)" d="m22.972 1.3167h0.0399" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
271
+ <g>
272
+ <use x="329.164062" y="23.296875" xlink:href="#bq"/>
273
+ </g>
274
+ <g>
275
+ <use x="337.136719" y="23.296875" xlink:href="#j"/>
276
+ </g>
277
+ <g>
278
+ <use x="344.136719" y="23.296875" xlink:href="#h"/>
279
+ </g>
280
+ <g>
281
+ <use x="351.523437" y="23.296875" xlink:href="#g"/>
282
+ </g>
283
+ <g>
284
+ <use x="361.636719" y="23.296875" xlink:href="#b"/>
285
+ </g>
286
+ <g>
287
+ <use x="367.160156" y="23.296875" xlink:href="#f"/>
288
+ </g>
289
+ <g>
290
+ <use x="371.046875" y="23.296875" xlink:href="#bp"/>
291
+ </g>
292
+ <g>
293
+ <use x="377.269531" y="23.296875" xlink:href="#bo"/>
294
+ </g>
295
+ <g>
296
+ <use x="383.492187" y="23.296875" xlink:href="#b"/>
297
+ </g>
298
+ <g>
299
+ <use x="393.679688" y="23.296875" xlink:href="#q"/>
300
+ </g>
301
+ <g>
302
+ <use x="399.902344" y="23.296875" xlink:href="#j"/>
303
+ </g>
304
+ <g>
305
+ <use x="406.902344" y="23.296875" xlink:href="#i"/>
306
+ </g>
307
+ <g>
308
+ <use x="418.570312" y="23.296875" xlink:href="#i"/>
309
+ </g>
310
+ <g>
311
+ <use x="430.238281" y="23.296875" xlink:href="#t"/>
312
+ </g>
313
+ <g>
314
+ <use x="437.238281" y="23.296875" xlink:href="#h"/>
315
+ </g>
316
+ <g>
317
+ <use x="445.015625" y="23.296875" xlink:href="#bn"/>
318
+ </g>
319
+ <g>
320
+ <use x="452.792969" y="23.296875" xlink:href="#b"/>
321
+ </g>
322
+ <path transform="scale(14)" d="m33.237 1.3167h0.0399" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
323
+ <path transform="scale(14)" d="m0.71429 1.8993h32.562" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
324
+ <path transform="scale(14)" d="m0.71429 3.7609h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
325
+ <g>
326
+ <use x="17.558594" y="32.214844" xlink:href="#bk"/>
327
+ </g>
328
+ <g>
329
+ <use x="29.132812" y="39.121094" xlink:href="#am"/>
330
+ </g>
331
+ <g>
332
+ <use x="38.089844" y="41.21875" xlink:href="#aa"/>
333
+ </g>
334
+ <g>
335
+ <use x="42.992188" y="41.21875" xlink:href="#z"/>
336
+ </g>
337
+ <g>
338
+ <use x="62.382813" y="39.121094" xlink:href="#c"/>
339
+ </g>
340
+ <g>
341
+ <use x="68.605469" y="39.121094" xlink:href="#c"/>
342
+ </g>
343
+ <g>
344
+ <use x="74.824219" y="39.121094" xlink:href="#c"/>
345
+ </g>
346
+ <g>
347
+ <use x="93.207031" y="39.121094" xlink:href="#y"/>
348
+ </g>
349
+ <g>
350
+ <use x="102.160156" y="41.21875" xlink:href="#x"/>
351
+ </g>
352
+ <g>
353
+ <use x="107.0625" y="41.21875" xlink:href="#w"/>
354
+ </g>
355
+ <g>
356
+ <use x="29.53125" y="53.390625" xlink:href="#a"/>
357
+ </g>
358
+ <g>
359
+ <use x="38.324219" y="53.390625" xlink:href="#a"/>
360
+ </g>
361
+ <g>
362
+ <use x="47.113281" y="53.390625" xlink:href="#a"/>
363
+ </g>
364
+ <g>
365
+ <use x="55.90625" y="53.390625" xlink:href="#a"/>
366
+ </g>
367
+ <g>
368
+ <use x="64.699219" y="53.390625" xlink:href="#a"/>
369
+ </g>
370
+ <g>
371
+ <use x="73.492188" y="53.390625" xlink:href="#a"/>
372
+ </g>
373
+ <g>
374
+ <use x="82.28125" y="53.390625" xlink:href="#a"/>
375
+ </g>
376
+ <g>
377
+ <use x="91.074219" y="53.390625" xlink:href="#a"/>
378
+ </g>
379
+ <g>
380
+ <use x="99.867188" y="53.390625" xlink:href="#a"/>
381
+ </g>
382
+ <g>
383
+ <use x="108.660156" y="53.390625" xlink:href="#a"/>
384
+ </g>
385
+ <g>
386
+ <use x="28.644531" y="70.308594" xlink:href="#v"/>
387
+ </g>
388
+ <g>
389
+ <use x="37.597656" y="72.410156" xlink:href="#bj"/>
390
+ </g>
391
+ <g>
392
+ <use x="43.480469" y="72.410156" xlink:href="#bi"/>
393
+ </g>
394
+ <g>
395
+ <use x="62.382812" y="70.308594" xlink:href="#e"/>
396
+ </g>
397
+ <g>
398
+ <use x="68.605469" y="70.308594" xlink:href="#e"/>
399
+ </g>
400
+ <g>
401
+ <use x="74.824219" y="70.308594" xlink:href="#e"/>
402
+ </g>
403
+ <g>
404
+ <use x="92.714844" y="70.308594" xlink:href="#bh"/>
405
+ </g>
406
+ <g>
407
+ <use x="101.671875" y="72.410156" xlink:href="#bg"/>
408
+ </g>
409
+ <g>
410
+ <use x="107.554688" y="72.410156" xlink:href="#bf"/>
411
+ </g>
412
+ <g>
413
+ <use x="113.433594" y="32.214844" xlink:href="#be"/>
414
+ </g>
415
+ <path transform="matrix(14 0 0 14 -3.9551e-6 -3.0961e-6)" d="m9.3943 3.7609h0.0399" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
416
+ <g>
417
+ <use x="139.078125" y="56.152344" xlink:href="#bd"/>
418
+ </g>
419
+ <g>
420
+ <use x="151.328125" y="56.152344" xlink:href="#bc"/>
421
+ </g>
422
+ <g>
423
+ <use x="161.128906" y="56.152344" xlink:href="#bb"/>
424
+ </g>
425
+ <g>
426
+ <use x="168.804688" y="56.152344" xlink:href="#p"/>
427
+ </g>
428
+ <g>
429
+ <use x="178.605469" y="56.152344" xlink:href="#ba"/>
430
+ </g>
431
+ <g>
432
+ <use x="193.851563" y="56.152344" xlink:href="#az"/>
433
+ </g>
434
+ <g>
435
+ <use x="208.277344" y="56.152344" xlink:href="#ay"/>
436
+ </g>
437
+ <g>
438
+ <use x="213.722656" y="56.152344" xlink:href="#p"/>
439
+ </g>
440
+ <g>
441
+ <use x="223.523438" y="56.152344" xlink:href="#ax"/>
442
+ </g>
443
+ <g>
444
+ <use x="233.867188" y="56.152344" xlink:href="#aw"/>
445
+ </g>
446
+ <path transform="matrix(14 0 0 14 -4.9025e-6 -3.4787e-6)" d="m17.749 3.7609h0.040179" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
447
+ <path transform="matrix(14 0 0 14 -4.9025e-6 -3.4787e-6)" d="m17.869 3.7609h0.040178" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
448
+ <path transform="matrix(14 0 0 14 -4.9025e-6 -3.4787e-6)" d="m17.989 3.7609h0.040178" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
449
+ <g>
450
+ <use x="259.410156" y="56.152344" xlink:href="#av"/>
451
+ </g>
452
+ <g>
453
+ <use x="264.378906" y="56.152344" xlink:href="#au"/>
454
+ </g>
455
+ <g>
456
+ <use x="274.878906" y="56.152344" xlink:href="#at"/>
457
+ </g>
458
+ <g>
459
+ <use x="281.179688" y="56.152344" xlink:href="#o"/>
460
+ </g>
461
+ <g>
462
+ <use x="284.679688" y="56.152344" xlink:href="#o"/>
463
+ </g>
464
+ <g>
465
+ <use x="292.378906" y="56.152344" xlink:href="#as"/>
466
+ </g>
467
+ <g>
468
+ <use x="300.253906" y="56.152344" xlink:href="#ar"/>
469
+ </g>
470
+ <g>
471
+ <use x="305.855469" y="56.152344" xlink:href="#aq"/>
472
+ </g>
473
+ <g>
474
+ <use x="309.703125" y="56.152344" xlink:href="#ap"/>
475
+ </g>
476
+ <path transform="matrix(14 0 0 14 -1.04e-5 -4.6687e-6)" d="m22.972 3.7609h0.0399" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
477
+ <g>
478
+ <use x="379.351563" y="56.152344" xlink:href="#ao"/>
479
+ </g>
480
+ <g>
481
+ <use x="382.074219" y="56.152344" xlink:href="#n"/>
482
+ </g>
483
+ <g>
484
+ <use x="384.015625" y="56.152344" xlink:href="#m"/>
485
+ </g>
486
+ <g>
487
+ <use x="387.710938" y="56.152344" xlink:href="#l"/>
488
+ </g>
489
+ <g>
490
+ <use x="393.738281" y="56.152344" xlink:href="#an"/>
491
+ </g>
492
+ <g>
493
+ <use x="398.792969" y="56.152344" xlink:href="#n"/>
494
+ </g>
495
+ <g>
496
+ <use x="400.738281" y="56.152344" xlink:href="#m"/>
497
+ </g>
498
+ <g>
499
+ <use x="404.433594" y="56.152344" xlink:href="#l"/>
500
+ </g>
501
+ <path transform="matrix(14 0 0 14 -1.04e-5 -4.6687e-6)" d="m33.237 3.7609h0.0399" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
502
+ <path transform="matrix(14 0 0 14 -1.04e-5 -4.6687e-6)" d="m0.71429 5.6225h32.562" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
503
+ <path transform="matrix(14 0 0 14 -1.04e-5 -4.6687e-6)" d="m0.71429 6.969h0.0399" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="2.6528"/>
504
+ <g>
505
+ <use x="88.117188" y="106.316406" xlink:href="#al"/>
506
+ </g>
507
+ <g>
508
+ <use x="114.367188" y="106.316406" xlink:href="#d"/>
509
+ </g>
510
+ <g>
511
+ <use x="133.8125" y="106.316406" xlink:href="#ag"/>
512
+ </g>
513
+ <g>
514
+ <use x="151.3125" y="106.316406" xlink:href="#af"/>
515
+ </g>
516
+ <g>
517
+ <use x="178.535156" y="106.316406" xlink:href="#ae"/>
518
+ </g>
519
+ <g>
520
+ <use x="210.617188" y="106.316406" xlink:href="#d"/>
521
+ </g>
522
+ <g>
523
+ <use x="230.0625" y="106.316406" xlink:href="#k"/>
524
+ </g>
525
+ <g>
526
+ <use x="239.785156" y="106.316406" xlink:href="#ad"/>
527
+ </g>
528
+ <g>
529
+ <use x="253.394531" y="106.316406" xlink:href="#ac"/>
530
+ </g>
531
+ <g>
532
+ <use x="263.117188" y="106.316406" xlink:href="#ab"/>
533
+ </g>
534
+ <g>
535
+ <use x="278.671875" y="106.316406" xlink:href="#ak"/>
536
+ </g>
537
+ <g>
538
+ <use x="296.171875" y="106.316406" xlink:href="#k"/>
539
+ </g>
540
+ <g>
541
+ <use x="305.894531" y="106.316406" xlink:href="#d"/>
542
+ </g>
543
+ <g>
544
+ <use x="325.339844" y="106.316406" xlink:href="#aj"/>
545
+ </g>
546
+ <g>
547
+ <use x="354.507813" y="106.316406" xlink:href="#ai"/>
548
+ </g>
549
+ <g>
550
+ <use x="373.953125" y="106.316406" xlink:href="#ah"/>
551
+ </g>
552
+ <path transform="matrix(14 0 0 14 -1.1713e-5 -6.2529e-6)" d="m33.237 6.969h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="2.6528"/>
553
+ <path transform="matrix(14 0 0 14 -1.1713e-5 -6.2529e-6)" d="m0.71429 8.3153h32.562" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
554
+ </svg>