@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.
- package/LICENSE +674 -0
- package/LICENSE-PROJECT +21 -0
- package/README.md +7 -0
- package/build.zig +112 -0
- package/build.zig.zon +12 -0
- package/native/lib.zig +280 -0
- package/native/nanosvg.c +4 -0
- package/native/vendor/.bootstrap-v5 +1 -0
- package/native/vendor/LICENSE-NANOSVG +18 -0
- package/native/vendor/microtex/.clang-format +26 -0
- package/native/vendor/microtex/.github/workflows/ubuntu.yml +92 -0
- package/native/vendor/microtex/.github/workflows/windows-gdi.yml +34 -0
- package/native/vendor/microtex/.github/workflows/windows-qt.yml +52 -0
- package/native/vendor/microtex/CMakeLists.txt +110 -0
- package/native/vendor/microtex/LICENSE +21 -0
- package/native/vendor/microtex/MicroTeXInstall.cmake +42 -0
- package/native/vendor/microtex/README.md +600 -0
- package/native/vendor/microtex/build.zig +209 -0
- package/native/vendor/microtex/clatexmath.wrap +6 -0
- package/native/vendor/microtex/doc/meson.build +38 -0
- package/native/vendor/microtex/doc/microtex-doc.toml.in +47 -0
- package/native/vendor/microtex/doc/microtex.svg +39 -0
- package/native/vendor/microtex/doc/urlmap.js +6 -0
- package/native/vendor/microtex/example/gtk/CMakeLists.txt +68 -0
- package/native/vendor/microtex/example/gtk/gtk_main.c +170 -0
- package/native/vendor/microtex/example/gtk/isamples.cpp +21 -0
- package/native/vendor/microtex/example/gtk/isamples.h +15 -0
- package/native/vendor/microtex/example/gtk/meson.build +27 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.gresource.xml +6 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.ui +117 -0
- package/native/vendor/microtex/example/gtkmm/CMakeLists.txt +19 -0
- package/native/vendor/microtex/example/gtkmm/gtkmm_main.cpp +531 -0
- package/native/vendor/microtex/example/gtkmm/meson.build +19 -0
- package/native/vendor/microtex/example/memcheck/CMakeLists.txt +12 -0
- package/native/vendor/microtex/example/memcheck/mem_check_main.cpp +154 -0
- package/native/vendor/microtex/example/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/example/qt/meson.build +25 -0
- package/native/vendor/microtex/example/qt/qt_main.cpp +70 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.cpp +107 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.h +40 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.cpp +149 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.h +48 -0
- package/native/vendor/microtex/example/qt/qt_tex_render.h +15 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.cpp +56 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.h +31 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.cpp +62 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.h +31 -0
- package/native/vendor/microtex/example/qtpng/CMakeLists.txt +11 -0
- package/native/vendor/microtex/example/qtpng/latex2png.cpp +115 -0
- package/native/vendor/microtex/example/samples/samples.cpp +52 -0
- package/native/vendor/microtex/example/samples/samples.h +32 -0
- package/native/vendor/microtex/example/win32/CMakeLists.txt +15 -0
- package/native/vendor/microtex/example/win32/meson.build +18 -0
- package/native/vendor/microtex/example/win32/win32_main.cpp +375 -0
- package/native/vendor/microtex/githooks/pre-commit +19 -0
- package/native/vendor/microtex/githooks/pre-push +103 -0
- package/native/vendor/microtex/lib/CMakeLists.txt +234 -0
- package/native/vendor/microtex/lib/atom/atom.cpp +14 -0
- package/native/vendor/microtex/lib/atom/atom.h +96 -0
- package/native/vendor/microtex/lib/atom/atom_accent.cpp +115 -0
- package/native/vendor/microtex/lib/atom/atom_accent.h +53 -0
- package/native/vendor/microtex/lib/atom/atom_basic.cpp +146 -0
- package/native/vendor/microtex/lib/atom/atom_basic.h +273 -0
- package/native/vendor/microtex/lib/atom/atom_box.cpp +41 -0
- package/native/vendor/microtex/lib/atom/atom_box.h +70 -0
- package/native/vendor/microtex/lib/atom/atom_char.cpp +99 -0
- package/native/vendor/microtex/lib/atom/atom_char.h +147 -0
- package/native/vendor/microtex/lib/atom/atom_delim.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_delim.h +58 -0
- package/native/vendor/microtex/lib/atom/atom_fence.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_fence.h +56 -0
- package/native/vendor/microtex/lib/atom/atom_font.cpp +20 -0
- package/native/vendor/microtex/lib/atom/atom_font.h +49 -0
- package/native/vendor/microtex/lib/atom/atom_frac.cpp +101 -0
- package/native/vendor/microtex/lib/atom/atom_frac.h +42 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.cpp +756 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.h +268 -0
- package/native/vendor/microtex/lib/atom/atom_misc.cpp +230 -0
- package/native/vendor/microtex/lib/atom/atom_misc.h +200 -0
- package/native/vendor/microtex/lib/atom/atom_operator.cpp +51 -0
- package/native/vendor/microtex/lib/atom/atom_operator.h +41 -0
- package/native/vendor/microtex/lib/atom/atom_root.cpp +61 -0
- package/native/vendor/microtex/lib/atom/atom_root.h +27 -0
- package/native/vendor/microtex/lib/atom/atom_row.cpp +334 -0
- package/native/vendor/microtex/lib/atom/atom_row.h +176 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.cpp +182 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.h +52 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.cpp +92 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.h +24 -0
- package/native/vendor/microtex/lib/atom/atom_space.cpp +22 -0
- package/native/vendor/microtex/lib/atom/atom_space.h +38 -0
- package/native/vendor/microtex/lib/atom/atom_stack.cpp +117 -0
- package/native/vendor/microtex/lib/atom/atom_stack.h +103 -0
- package/native/vendor/microtex/lib/atom/atom_text.cpp +17 -0
- package/native/vendor/microtex/lib/atom/atom_text.h +33 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.cpp +96 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.h +47 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.cpp +66 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.h +37 -0
- package/native/vendor/microtex/lib/atom/colors_def.cpp +157 -0
- package/native/vendor/microtex/lib/atom/meson.build +50 -0
- package/native/vendor/microtex/lib/box/box.cpp +49 -0
- package/native/vendor/microtex/lib/box/box.h +184 -0
- package/native/vendor/microtex/lib/box/box_factory.cpp +162 -0
- package/native/vendor/microtex/lib/box/box_factory.h +24 -0
- package/native/vendor/microtex/lib/box/box_group.cpp +503 -0
- package/native/vendor/microtex/lib/box/box_group.h +285 -0
- package/native/vendor/microtex/lib/box/box_single.cpp +179 -0
- package/native/vendor/microtex/lib/box/box_single.h +157 -0
- package/native/vendor/microtex/lib/box/meson.build +15 -0
- package/native/vendor/microtex/lib/core/debug_config.cpp +3 -0
- package/native/vendor/microtex/lib/core/debug_config.h +24 -0
- package/native/vendor/microtex/lib/core/formula.cpp +180 -0
- package/native/vendor/microtex/lib/core/formula.h +137 -0
- package/native/vendor/microtex/lib/core/formula_def.cpp +167 -0
- package/native/vendor/microtex/lib/core/glue.cpp +108 -0
- package/native/vendor/microtex/lib/core/glue.h +55 -0
- package/native/vendor/microtex/lib/core/localized_num.cpp +51 -0
- package/native/vendor/microtex/lib/core/meson.build +19 -0
- package/native/vendor/microtex/lib/core/parser.cpp +874 -0
- package/native/vendor/microtex/lib/core/parser.h +306 -0
- package/native/vendor/microtex/lib/core/split.cpp +185 -0
- package/native/vendor/microtex/lib/core/split.h +40 -0
- package/native/vendor/microtex/lib/env/env.cpp +141 -0
- package/native/vendor/microtex/lib/env/env.h +221 -0
- package/native/vendor/microtex/lib/env/meson.build +11 -0
- package/native/vendor/microtex/lib/env/units.cpp +109 -0
- package/native/vendor/microtex/lib/env/units.h +61 -0
- package/native/vendor/microtex/lib/graphic/font_style.cpp +63 -0
- package/native/vendor/microtex/lib/graphic/font_style.h +61 -0
- package/native/vendor/microtex/lib/graphic/graphic.cpp +38 -0
- package/native/vendor/microtex/lib/graphic/graphic.h +314 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.cpp +44 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.h +131 -0
- package/native/vendor/microtex/lib/graphic/meson.build +13 -0
- package/native/vendor/microtex/lib/macro/macro.cpp +143 -0
- package/native/vendor/microtex/lib/macro/macro.h +155 -0
- package/native/vendor/microtex/lib/macro/macro_accent.cpp +50 -0
- package/native/vendor/microtex/lib/macro/macro_accent.h +61 -0
- package/native/vendor/microtex/lib/macro/macro_boxes.h +68 -0
- package/native/vendor/microtex/lib/macro/macro_colors.cpp +42 -0
- package/native/vendor/microtex/lib/macro/macro_colors.h +42 -0
- package/native/vendor/microtex/lib/macro/macro_decl.h +16 -0
- package/native/vendor/microtex/lib/macro/macro_def.cpp +418 -0
- package/native/vendor/microtex/lib/macro/macro_delims.cpp +56 -0
- package/native/vendor/microtex/lib/macro/macro_delims.h +73 -0
- package/native/vendor/microtex/lib/macro/macro_env.h +212 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.cpp +53 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.h +78 -0
- package/native/vendor/microtex/lib/macro/macro_frac.cpp +138 -0
- package/native/vendor/microtex/lib/macro/macro_frac.h +50 -0
- package/native/vendor/microtex/lib/macro/macro_misc.cpp +211 -0
- package/native/vendor/microtex/lib/macro/macro_misc.h +217 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.cpp +32 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_sizes.h +110 -0
- package/native/vendor/microtex/lib/macro/macro_space.cpp +31 -0
- package/native/vendor/microtex/lib/macro/macro_space.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_styles.cpp +45 -0
- package/native/vendor/microtex/lib/macro/macro_styles.h +22 -0
- package/native/vendor/microtex/lib/macro/macro_types.h +48 -0
- package/native/vendor/microtex/lib/macro/meson.build +33 -0
- package/native/vendor/microtex/lib/meson.build +102 -0
- package/native/vendor/microtex/lib/microtex.cpp +208 -0
- package/native/vendor/microtex/lib/microtex.h +225 -0
- package/native/vendor/microtex/lib/microtexConfig.cmake.in +2 -0
- package/native/vendor/microtex/lib/microtexapi.h +22 -0
- package/native/vendor/microtex/lib/microtexconfig.h.in +7 -0
- package/native/vendor/microtex/lib/microtexexport.h +31 -0
- package/native/vendor/microtex/lib/otf/clm.cpp +405 -0
- package/native/vendor/microtex/lib/otf/clm.h +61 -0
- package/native/vendor/microtex/lib/otf/fontsense.cpp +191 -0
- package/native/vendor/microtex/lib/otf/fontsense.h +20 -0
- package/native/vendor/microtex/lib/otf/glyph.cpp +53 -0
- package/native/vendor/microtex/lib/otf/glyph.h +384 -0
- package/native/vendor/microtex/lib/otf/math_consts.h +154 -0
- package/native/vendor/microtex/lib/otf/meson.build +18 -0
- package/native/vendor/microtex/lib/otf/otf.cpp +84 -0
- package/native/vendor/microtex/lib/otf/otf.h +177 -0
- package/native/vendor/microtex/lib/otf/otfconfig.h +32 -0
- package/native/vendor/microtex/lib/otf/path.cpp +187 -0
- package/native/vendor/microtex/lib/otf/path.h +120 -0
- package/native/vendor/microtex/lib/render/builder.cpp +68 -0
- package/native/vendor/microtex/lib/render/builder.h +73 -0
- package/native/vendor/microtex/lib/render/meson.build +11 -0
- package/native/vendor/microtex/lib/render/render.cpp +136 -0
- package/native/vendor/microtex/lib/render/render.h +59 -0
- package/native/vendor/microtex/lib/unimath/font_meta.h +22 -0
- package/native/vendor/microtex/lib/unimath/font_src.cpp +21 -0
- package/native/vendor/microtex/lib/unimath/font_src.h +61 -0
- package/native/vendor/microtex/lib/unimath/math_type.cpp +318 -0
- package/native/vendor/microtex/lib/unimath/math_type.h +105 -0
- package/native/vendor/microtex/lib/unimath/meson.build +18 -0
- package/native/vendor/microtex/lib/unimath/uni_char.cpp +121 -0
- package/native/vendor/microtex/lib/unimath/uni_char.h +109 -0
- package/native/vendor/microtex/lib/unimath/uni_font.cpp +248 -0
- package/native/vendor/microtex/lib/unimath/uni_font.h +139 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.cpp +2929 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.h +31 -0
- package/native/vendor/microtex/lib/utils/dict_tree.h +68 -0
- package/native/vendor/microtex/lib/utils/exceptions.h +61 -0
- package/native/vendor/microtex/lib/utils/log.h +34 -0
- package/native/vendor/microtex/lib/utils/meson.build +18 -0
- package/native/vendor/microtex/lib/utils/nums.h +24 -0
- package/native/vendor/microtex/lib/utils/string_utils.cpp +85 -0
- package/native/vendor/microtex/lib/utils/string_utils.h +130 -0
- package/native/vendor/microtex/lib/utils/types.h +152 -0
- package/native/vendor/microtex/lib/utils/utf.cpp +115 -0
- package/native/vendor/microtex/lib/utils/utf.h +58 -0
- package/native/vendor/microtex/lib/utils/utils.cpp +40 -0
- package/native/vendor/microtex/lib/utils/utils.h +88 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.cpp +46 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.h +70 -0
- package/native/vendor/microtex/lib/wrapper/callback.cpp +10 -0
- package/native/vendor/microtex/lib/wrapper/callback.h +72 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.cpp +206 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.h +305 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.cpp +211 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.h +159 -0
- package/native/vendor/microtex/lib/wrapper/meson.build +22 -0
- package/native/vendor/microtex/meson.build +75 -0
- package/native/vendor/microtex/meson_options.txt +29 -0
- package/native/vendor/microtex/platform/cairo/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.cpp +384 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.h +119 -0
- package/native/vendor/microtex/platform/cairo/meson.build +47 -0
- package/native/vendor/microtex/platform/cairo/microtex-cairoConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/CHANGELOG.md +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/LICENSE +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/README.md +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/analysis_options.yaml +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/build.gradle +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/settings.gradle +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/AndroidManifest.xml +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/kotlin/io/nano/microtex/microtex/MicrotexPlugin.kt +35 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/README.md +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/analysis_options.yaml +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/build.gradle +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/debug/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/AndroidManifest.xml +34 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/kotlin/io/nano/microtex/microtex_example/MainActivity.kt +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values-night/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/profile/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/build.gradle +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle.properties +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/settings.gradle +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile +41 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/AppDelegate.swift +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/Main.storyboard +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Info.plist +49 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Runner-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.pbxproj +549 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/main.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_in_one.dart +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_screen.dart +208 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/convert_spans.dart +63 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/string_ext.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/cmp.dart +118 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/draggable.dart +75 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/rich.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/split.dart +72 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_highlight_controller.dart +66 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_input_controller.dart +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/CMakeLists.txt +116 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/CMakeLists.txt +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.cc +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/main.cc +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.cc +104 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.h +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/GeneratedPluginRegistrant.swift +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile +40 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/AppDelegate.swift +9 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/DebugProfile.entitlements +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Info.plist +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/MainFlutterWindow.swift +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Release.entitlements +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.pbxproj +633 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.lock +191 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.yaml +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/test/widget_test.dart +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/CMakeLists.txt +95 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/CMakeLists.txt +103 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.cc +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/CMakeLists.txt +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/Runner.rc +121 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.cpp +61 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.h +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/main.cpp +43 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resource.h +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resources/app_icon.ico +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/runner.exe.manifest +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.cpp +64 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.h +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.cpp +245 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.h +98 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Assets/.gitkeep +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.m +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/SwiftMicrotexPlugin.swift +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/microtex.podspec +27 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/microtex.dart +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bindings.dart +218 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bounds.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/context.dart +205 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontdesc.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontmeta.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/pathcache.dart +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/render.dart +291 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/texstyle.dart +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/textlayout.dart +93 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/widget.dart +163 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/CMakeLists.txt +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/include/microtex/microtex_plugin.h +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/microtex_plugin.cc +70 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/MicrotexPlugin.swift +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/microtex-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/microtex.podspec +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/CMakeLists.txt +44 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/builddarwin.sh +108 -0
- package/native/vendor/microtex/platform/flutter/microtex/pubspec.yaml +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/test/microtex_test.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/CMakeLists.txt +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/include/microtex/microtex_plugin.h +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/microtex_plugin.cpp +82 -0
- package/native/vendor/microtex/platform/gdi_win/CMakeLists.txt +20 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.cpp +352 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.h +137 -0
- package/native/vendor/microtex/platform/gdi_win/meson.build +39 -0
- package/native/vendor/microtex/platform/gtk/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/gtk/meson.build +65 -0
- package/native/vendor/microtex/platform/gtk/microtex-gtkConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.cpp +708 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.h +72 -0
- package/native/vendor/microtex/platform/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.cpp +355 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.h +116 -0
- package/native/vendor/microtex/platform/qt/meson.build +38 -0
- package/native/vendor/microtex/platform/qt/microtex-qtConfig.cmake.in +7 -0
- package/native/vendor/microtex/platform/skia/CMakeLists.txt +46 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.cpp +306 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.h +125 -0
- package/native/vendor/microtex/platform/skia/microtex-skiaConfig.cmake.in +6 -0
- package/native/vendor/microtex/platform/wasm/CMakeLists.txt +38 -0
- package/native/vendor/microtex/platform/wasm/emscripten.cross +31 -0
- package/native/vendor/microtex/platform/wasm/main.cpp +15 -0
- package/native/vendor/microtex/platform/wasm/meson.build +8 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example-meson.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib-meson.sh +28 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib.sh +31 -0
- package/native/vendor/microtex/platform/wasm/web/.babelrc +10 -0
- package/native/vendor/microtex/platform/wasm/web/example/examples.js +43 -0
- package/native/vendor/microtex/platform/wasm/web/example/hello.js +31 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.html +55 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.js +243 -0
- package/native/vendor/microtex/platform/wasm/web/example/styles.css +86 -0
- package/native/vendor/microtex/platform/wasm/web/example/utils.js +47 -0
- package/native/vendor/microtex/platform/wasm/web/lib/context.js +271 -0
- package/native/vendor/microtex/platform/wasm/web/lib/index.js +10 -0
- package/native/vendor/microtex/platform/wasm/web/lib/render.js +293 -0
- package/native/vendor/microtex/platform/wasm/web/lib/runtime.js +14 -0
- package/native/vendor/microtex/platform/wasm/web/lib/svg.js +237 -0
- package/native/vendor/microtex/platform/wasm/web/lib/textlayout.js +88 -0
- package/native/vendor/microtex/platform/wasm/web/package-lock.json +5931 -0
- package/native/vendor/microtex/platform/wasm/web/package.json +45 -0
- package/native/vendor/microtex/platform/wasm/web/publish-example.sh +17 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.example.js +24 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.lib.js +16 -0
- package/native/vendor/microtex/prebuilt/otf2clm.py +807 -0
- package/native/vendor/microtex/prebuilt/otf2clm.sh +9 -0
- package/native/vendor/microtex/prebuilt/preclms.sh +17 -0
- package/native/vendor/microtex/readme/example_bw_false.svg +680 -0
- package/native/vendor/microtex/readme/example_bw_true.svg +680 -0
- package/native/vendor/microtex/readme/example_cjk_trying.svg +54 -0
- package/native/vendor/microtex/readme/example_custom_symbols.svg +92 -0
- package/native/vendor/microtex/readme/example_debug.svg +764 -0
- package/native/vendor/microtex/readme/example_emoji.svg +199 -0
- package/native/vendor/microtex/readme/example_have_log.svg +79 -0
- package/native/vendor/microtex/readme/example_keep_trying.svg +101 -0
- package/native/vendor/microtex/readme/example_logos.svg +50 -0
- package/native/vendor/microtex/readme/example_ubuntu.png +0 -0
- package/native/vendor/microtex/readme/example_windows.png +0 -0
- package/native/vendor/microtex/readme/samples/sample_0.svg +665 -0
- package/native/vendor/microtex/readme/samples/sample_1.svg +1259 -0
- package/native/vendor/microtex/readme/samples/sample_10.svg +333 -0
- package/native/vendor/microtex/readme/samples/sample_11.svg +306 -0
- package/native/vendor/microtex/readme/samples/sample_2.svg +2461 -0
- package/native/vendor/microtex/readme/samples/sample_3.svg +2653 -0
- package/native/vendor/microtex/readme/samples/sample_4.svg +554 -0
- package/native/vendor/microtex/readme/samples/sample_5.svg +247 -0
- package/native/vendor/microtex/readme/samples/sample_6.svg +1082 -0
- package/native/vendor/microtex/readme/samples/sample_7.svg +518 -0
- package/native/vendor/microtex/readme/samples/sample_8.svg +529 -0
- package/native/vendor/microtex/readme/samples/sample_9.svg +1702 -0
- package/native/vendor/microtex/readme/samples.md +301 -0
- package/native/vendor/microtex/readme/tex_logo.svg +19 -0
- package/native/vendor/microtex/res/EXAMPLE.txt +25 -0
- package/native/vendor/microtex/res/SAMPLES.tex +946 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.otf +0 -0
- package/native/vendor/microtex/res/firamath/README.md +42 -0
- package/native/vendor/microtex/res/lm-math/README +92 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm1 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm2 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.otf +0 -0
- package/native/vendor/microtex/res/tex-gyre/README-TeX-Gyre-DejaVu-Math.txt +82 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm1 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm2 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.otf +0 -0
- package/native/vendor/microtex/res/xits/FONTLOG.txt +246 -0
- package/native/vendor/microtex/res/xits/OFL.txt +98 -0
- package/native/vendor/microtex/res/xits/README.txt +15 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.otf +0 -0
- package/native/vendor/microtex/test/clm/meson.build +10 -0
- package/native/vendor/microtex/test/clm/test_clm.cpp +140 -0
- package/native/vendor/microtex/test/env/meson.build +10 -0
- package/native/vendor/microtex/test/env/test_env.cpp +100 -0
- package/native/vendor/microtex/test/fuzzer/afl.native +20 -0
- package/native/vendor/microtex/test/fuzzer/fuzz.sh +135 -0
- package/native/vendor/microtex/test/fuzzer/fuzzer.cpp +61 -0
- package/native/vendor/microtex/test/fuzzer/generateSeed.java +33 -0
- package/native/vendor/microtex/test/fuzzer/meson.build +9 -0
- package/native/vendor/microtex/test/fuzzer/microtex.dict +3708 -0
- package/native/vendor/microtex/test/fuzzer/platform_none.cpp +100 -0
- package/native/vendor/microtex/test/has_filesystem.cpp +8 -0
- package/native/vendor/microtex/test/meson.build +6 -0
- package/native/vendor/nanosvg.h +3278 -0
- package/native/vendor/nanosvgrast.h +1472 -0
- package/native/vendor/zigtex/.github/assets/example.svg +27 -0
- package/native/vendor/zigtex/LICENSE +674 -0
- package/native/vendor/zigtex/README.md +52 -0
- package/native/vendor/zigtex/build.zig +52 -0
- package/native/vendor/zigtex/build.zig.zon +16 -0
- package/native/vendor/zigtex/fonts/latinmodern-math.clm2 +0 -0
- package/native/vendor/zigtex/src/main.zig +22 -0
- package/native/vendor/zigtex/src/root.zig +124 -0
- package/native/vendor/zigtex/src/svg.zig +273 -0
- package/native/vendor/zigtex/src/tex.zig +383 -0
- package/native/zigtex-0.16.patch +35 -0
- package/package.json +27 -0
- package/scripts/bootstrap-native +89 -0
|
@@ -0,0 +1,2653 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="460pt" height="494pt" version="1.1" viewBox="0 0 460 494" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="nf" overflow="visible">
|
|
5
|
+
<path d="m8.1406-3.6094-0.39062 3.6094h-7.2812v-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.375c0-0.28125-0.058594-0.45703-0.17188-0.53125-0.125-0.082031-0.4375-0.125-0.9375-0.125h-0.32812v-0.4375c0.32031 0.03125 1.0312 0.046875 2.125 0.046875 1.2266 0 2.0078-0.015625 2.3438-0.046875v0.4375h-0.45312c-0.75 0-1.1797 0.09375-1.2812 0.28125-0.03125 0.0625-0.046875 0.19531-0.046875 0.39062v7.4531c0 0.28125 0.046875 0.44922 0.14062 0.5h0.015625c0.082031 0.042969 0.25781 0.0625 0.53125 0.0625h1.1406c1.3125 0 2.1484-0.52344 2.5156-1.5781 0.125-0.34375 0.22266-0.875 0.29688-1.5938z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="ne" overflow="visible">
|
|
8
|
+
<path d="m3.9844-6.9531 2.1562 6.25c0.0625 0.1875 0.16406 0.30469 0.3125 0.34375 0.13281 0.03125 0.3125 0.046875 0.53125 0.046875h0.1875v0.3125c-0.41797-0.019531-0.85547-0.03125-1.3125-0.03125-0.71875 0-1.1992 0.011719-1.4375 0.03125v-0.3125c0.55078 0 0.82812-0.097656 0.82812-0.29688 0-0.007813-0.011719-0.054687-0.03125-0.14062l-0.53125-1.5312h-2.4688l-0.45312 1.3125c-0.023437 0.023438-0.03125 0.074219-0.03125 0.15625 0 0.21875 0.12891 0.37109 0.39062 0.45312h0.015625c0.10156 0.03125 0.21875 0.046875 0.34375 0.046875v0.3125c-0.63672-0.019531-1.0156-0.03125-1.1406-0.03125-0.21875 0-0.5625 0.011719-1.0312 0.03125v-0.3125c0.57031-0.007812 0.9375-0.20703 1.0938-0.59375 0.019531-0.03125 0.03125-0.054688 0.03125-0.078125l2.0781-5.9688c0.03125-0.11328 0.082031-0.17969 0.15625-0.20312h0.078125c0.10156 0 0.17188 0.046875 0.20312 0.14062v0.015625zm-0.53125 1.1094-1.125 3.25h2.25z"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="hu" overflow="visible">
|
|
11
|
+
<path d="m9.3281-9.4844 0.26562 3.1562h-0.35938c-0.09375-1.0625-0.24219-1.7539-0.4375-2.0781-0.24219-0.36328-0.72656-0.57031-1.4531-0.625-0.17969-0.007812-0.38672-0.015625-0.625-0.015625-0.42969 0-0.69531 0.011719-0.79688 0.03125-0.15625 0.125-0.24219 0.30469-0.25 0.53125v7.375c0 0.26172 0.054687 0.42969 0.17188 0.5 0.17578 0.11719 0.60938 0.17188 1.2969 0.17188h0.5625v0.4375c-0.38672-0.03125-1.2734-0.046875-2.6562-0.046875-1.3867 0-2.2734 0.015625-2.6562 0.046875v-0.4375h0.5625c0.82031 0 1.2891-0.085938 1.4062-0.26562 0.019531-0.039063 0.035156-0.097656 0.046875-0.17188 0.007812-0.039062 0.015625-0.11719 0.015625-0.23438v-7.375c0-0.25781-0.042969-0.41406-0.125-0.46875h-0.015625l-0.015625-0.015625h-0.015625c-0.023438-0.019531-0.0625-0.035156-0.125-0.046875-0.09375-0.019531-0.34375-0.03125-0.75-0.03125-0.94922 0-1.5781 0.14062-1.8906 0.42188l-0.078125 0.078125c-0.25 0.27344-0.42188 0.875-0.51562 1.8125-0.011719 0.11719-0.023437 0.25-0.03125 0.40625h-0.35938l0.26562-3.1562z"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="ht" overflow="visible">
|
|
14
|
+
<path d="m9.125-3.6094-0.57812 3.6094h-8.0781v-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.42188h7.875l0.39062 3.1406h-0.34375c-0.125-1.0195-0.34375-1.707-0.65625-2.0625-0.36719-0.4375-1.0625-0.65625-2.0938-0.65625h-1.7969c-0.36719 0-0.58594 0.058594-0.65625 0.17188v0.03125c-0.023438 0.054687-0.03125 0.17188-0.03125 0.35938v3.3594h1.25c0.71875 0 1.1641-0.15625 1.3438-0.46875 0.050781-0.082031 0.085938-0.1875 0.10938-0.3125 0.039063-0.1875 0.0625-0.46875 0.0625-0.84375h0.34375v3.7031h-0.34375c0-0.67578-0.10156-1.1133-0.29688-1.3125-0.21094-0.21875-0.61719-0.32812-1.2188-0.32812h-1.25v3.7344c0 0.28125 0.046875 0.44922 0.14062 0.5h0.015625c0.082031 0.042969 0.25781 0.0625 0.53125 0.0625h1.8594c1.1328 0 1.9102-0.26953 2.3281-0.8125 0.26953-0.35156 0.48828-0.96094 0.65625-1.8281l0.09375-0.53125z"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="hs" overflow="visible">
|
|
17
|
+
<path d="m5.625-5.4062 2.9531 4.4688c0.1875 0.28125 0.45312 0.4375 0.79688 0.46875 0.13281 0.023438 0.30469 0.03125 0.51562 0.03125h0.26562v0.4375c-0.58594-0.03125-1.1875-0.046875-1.8125-0.046875-1.0312 0-1.7148 0.015625-2.0469 0.046875v-0.4375c0.46875-0.007812 0.76562-0.11719 0.89062-0.32812 0.007812-0.03125 0.015625-0.0625 0.015625-0.09375 0-0.007813-0.023437-0.0625-0.0625-0.15625l-2.2188-3.3438-1.9844 2.9531c-0.09375 0.14844-0.14062 0.25781-0.14062 0.32812 0 0.25 0.14062 0.4375 0.42188 0.5625 0.13281 0.054687 0.28906 0.078125 0.46875 0.078125v0.4375c-0.34375-0.03125-0.94531-0.046875-1.7969-0.046875-0.03125 0-0.54688 0.015625-1.5469 0.046875v-0.4375c0.91406 0 1.582-0.28516 2-0.85938-0.011719 0-0.007812-0.019531 0.015625-0.0625l2.2969-3.3906-2.5625-3.8906c-0.1875-0.26953-0.45312-0.42188-0.79688-0.45312-0.125-0.019531-0.29688-0.03125-0.51562-0.03125h-0.26562v-0.4375c0.50781 0.03125 1.1172 0.046875 1.8281 0.046875 1.0312 0 1.707-0.015625 2.0312-0.046875v0.4375c-0.46094 0.011719-0.75 0.12109-0.875 0.32812-0.011719 0.011719-0.015625 0.023437-0.015625 0.03125-0.011719 0.023437-0.015625 0.042969-0.015625 0.0625 0 0.03125 0.03125 0.10156 0.09375 0.20312l1.8125 2.7031 1.5938-2.3594c0.082031-0.13281 0.125-0.24219 0.125-0.32812 0-0.26953-0.16406-0.46094-0.48438-0.57812-0.11719-0.039062-0.24219-0.0625-0.375-0.0625v-0.4375c0.375 0.03125 0.96875 0.046875 1.7812 0.046875-0.054687 0 0.46875-0.015625 1.5625-0.046875v0.4375c-0.91797 0.011719-1.5742 0.29297-1.9688 0.84375h-0.015625l-0.015625 0.015625v0.015625l-0.03125 0.03125z"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="al" overflow="visible">
|
|
20
|
+
<path d="m0.76562-9.5781h8.5781l0.015625 0.3125 0.046875 0.59375 0.125 1.5 0.046875 0.5 0.03125 0.26562h-0.35938c0-0.019531-0.007812-0.050781-0.015625-0.09375 0-0.050781-0.007813-0.085938-0.015625-0.10938 0-0.09375-0.007812-0.22266-0.015625-0.39062-0.0625-0.44531-0.12109-0.76953-0.17188-0.96875-0.09375-0.28906-0.20312-0.50781-0.32812-0.65625-0.03125-0.039062-0.085937-0.085938-0.15625-0.14062-0.29297-0.21875-0.74609-0.34375-1.3594-0.375h-0.25c-0.375 0-0.65625 0.007813-0.84375 0.015625-0.17969 0.023438-0.29297 0.0625-0.34375 0.125-0.042969 0.042969-0.0625 0.11719-0.0625 0.21875v7.5469c0 0.30469 0.023438 0.48438 0.078125 0.54688 0.09375 0.125 0.28516 0.19922 0.57812 0.21875 0.1875 0.011719 0.32812 0.015625 0.42188 0.015625h0.10938c0.1875 0.011719 0.46875 0.015625 0.84375 0.015625v0.4375l-0.46875-0.015625-0.67188-0.015625h-0.25l-0.40625-0.015625h-1.7344l-0.65625 0.015625-0.51562 0.015625h-0.15625l-0.46875 0.015625v-0.4375c0.375 0 0.65625-0.003906 0.84375-0.015625h0.10938c0.09375 0 0.23438-0.003906 0.42188-0.015625 0.28906-0.019531 0.48438-0.09375 0.57812-0.21875 0.050781-0.0625 0.078125-0.24219 0.078125-0.54688v-7.5469c0-0.10156-0.023437-0.17578-0.0625-0.21875-0.054687-0.0625-0.16797-0.10156-0.34375-0.125-0.1875-0.007812-0.47656-0.015625-0.85938-0.015625h-0.23438c-0.61719 0.03125-1.0703 0.15625-1.3594 0.375-0.074219 0.054687-0.125 0.10156-0.15625 0.14062-0.125 0.14844-0.23438 0.36719-0.32812 0.65625-0.054687 0.19922-0.10938 0.52344-0.17188 0.96875-0.023438 0.16797-0.03125 0.29688-0.03125 0.39062 0 0.023437-0.007812 0.058594-0.015625 0.10938v0.09375h-0.35938l0.03125-0.26562 0.046875-0.5 0.125-1.5 0.03125-0.59375z"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="ak" overflow="visible">
|
|
23
|
+
<path d="m1.5469-3.2344c0 0.96094 0.14062 1.6562 0.42188 2.0938 0.070312 0.11719 0.14453 0.21094 0.21875 0.28125 0.09375 0.11719 0.19141 0.21094 0.29688 0.28125 0.125 0.09375 0.26953 0.17969 0.4375 0.25 0.20703 0.085937 0.41016 0.125 0.60938 0.125 0.25 0 0.46875-0.039063 0.65625-0.125 0.47656-0.16406 0.84766-0.48438 1.1094-0.95312 0.050781-0.09375 0.09375-0.19141 0.125-0.29688 0.007813-0.019531 0.015625-0.039063 0.015625-0.0625 0.007812-0.019531 0.015625-0.035156 0.015625-0.046875 0-0.03125 0.007813-0.054688 0.03125-0.078125 0.03125-0.050781 0.078125-0.078125 0.14062-0.078125 0.0625-0.007812 0.11328 0.007812 0.15625 0.046875 0.050781 0.054687 0.050781 0.13672 0 0.25-0.054688 0.1875-0.13672 0.375-0.25 0.5625-0.33594 0.54297-0.80859 0.89062-1.4219 1.0469-0.21875 0.0625-0.43359 0.09375-0.64062 0.09375-0.35547 0-0.69922-0.070312-1.0312-0.20312-0.30469-0.10156-0.58984-0.25781-0.85938-0.46875-0.25-0.21875-0.46094-0.44531-0.625-0.6875-0.3125-0.4375-0.5-0.92969-0.5625-1.4844-0.054687-0.55078 0.015625-1.0703 0.20312-1.5625 0.13281-0.36328 0.30469-0.67578 0.51562-0.9375 0.22656-0.28125 0.48828-0.50781 0.78125-0.6875 0.64453-0.38281 1.3477-0.48828 2.1094-0.3125 0.42578 0.11719 0.76562 0.29297 1.0156 0.53125 0.17578 0.16797 0.33203 0.38281 0.46875 0.64062 0.14453 0.30469 0.23438 0.58594 0.26562 0.84375 0.019531 0.09375 0.039062 0.23438 0.0625 0.42188v0.15625c0.007812 0.0625 0.015625 0.11719 0.015625 0.15625 0 0.074219-0.015625 0.12109-0.046875 0.14062-0.03125 0.042969-0.089844 0.0625-0.17188 0.0625zm0-0.29688h3.3438c0-0.070312-0.011719-0.19141-0.03125-0.35938-0.042969-0.48828-0.14062-0.89062-0.29688-1.2031-0.042969-0.11328-0.10938-0.23438-0.20312-0.35938-0.15625-0.14453-0.27734-0.24219-0.35938-0.29688-0.125-0.070312-0.24609-0.125-0.35938-0.15625-0.13672-0.03125-0.26562-0.046875-0.39062-0.046875-0.53125 0.03125-0.96484 0.32031-1.2969 0.85938-0.16797 0.28125-0.28125 0.63672-0.34375 1.0625-0.023437 0.11719-0.042969 0.28125-0.0625 0.5z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="p" overflow="visible">
|
|
26
|
+
<path d="m0.35938-6.0312h7.0469v0.3125c-0.3125 0-0.55469 0.011719-0.71875 0.03125-0.14844 0.042969-0.24609 0.09375-0.29688 0.15625-0.054687 0.085938-0.078125 0.22656-0.078125 0.42188v4.1719c0 0.21094 0.023438 0.35156 0.078125 0.42188 0.0625 0.085937 0.17188 0.13672 0.32812 0.15625 0.14453 0.023437 0.375 0.03125 0.6875 0.03125v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.96875l-0.78125 0.03125-0.28125 0.015625v-0.32812c0.30078 0 0.52344-0.003906 0.67188-0.015625 0.16406-0.050781 0.26562-0.09375 0.29688-0.125 0.0625-0.070312 0.097656-0.1875 0.10938-0.34375v-4.3281c0-0.125-0.007813-0.22266-0.015625-0.29688-0.011719-0.082031-0.03125-0.13281-0.0625-0.15625-0.042969-0.070312-0.15625-0.11328-0.34375-0.125h-1.75-0.4375c-0.09375 0.023438-0.16797 0.058594-0.21875 0.10938-0.042969 0.0625-0.0625 0.17188-0.0625 0.32812-0.011719 0.0625-0.015625 0.16797-0.015625 0.3125v4.0312c0 0.19922 0.023437 0.33984 0.078125 0.42188 0.070312 0.085937 0.17969 0.13672 0.32812 0.15625 0.14453 0.023437 0.375 0.03125 0.6875 0.03125v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.98438l-0.35938 0.015625-0.40625 0.015625-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.15625-0.019531 0.26562-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.1719c0-0.19531-0.027344-0.33594-0.078125-0.42188-0.054688-0.0625-0.15625-0.11328-0.3125-0.15625-0.14844-0.019531-0.38281-0.03125-0.70312-0.03125z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
<symbol id="aj" overflow="visible">
|
|
29
|
+
<path d="m1.6562-6.0312h5.75v0.3125c-0.375 0-0.61719 0.011719-0.71875 0.03125-0.14844 0.042969-0.24609 0.10156-0.29688 0.17188-0.054687 0.074219-0.078125 0.21484-0.078125 0.42188v4.1562c0 0.21094 0.023438 0.35547 0.078125 0.4375 0.050781 0.0625 0.16016 0.11719 0.32812 0.15625 0.10156 0.011719 0.33203 0.015625 0.6875 0.015625v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625-0.96875 0.015625h-0.39062l-0.39062 0.015625-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.003906 0.6875-0.015625 0.16406-0.039062 0.26953-0.097656 0.3125-0.17188 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.3438c-0.011719-0.1875-0.039063-0.29688-0.078125-0.32812-0.054688-0.050781-0.11719-0.082031-0.1875-0.09375-0.0625-0.007813-0.16406-0.015625-0.29688-0.015625h-1.2656c-0.11719 0.023438-0.1875 0.046875-0.21875 0.078125-0.054688 0.03125-0.089844 0.089844-0.10938 0.17188-0.011719 0.074219-0.015625 0.17188-0.015625 0.29688 0 0.085937-0.007812 0.14062-0.015625 0.17188v0.23438c0 0.15625-0.007813 0.27344-0.015625 0.34375v0.32812c-0.011719 0.0625-0.015625 0.15625-0.015625 0.28125s-0.007813 0.21484-0.015625 0.26562c-0.074219 0.96094-0.16406 1.6641-0.26562 2.1094-0.085937 0.35547-0.17969 0.63672-0.28125 0.84375-0.0625 0.15625-0.15234 0.30469-0.26562 0.4375-0.125 0.13672-0.24609 0.22656-0.35938 0.28125-0.15625 0.082031-0.33984 0.11328-0.54688 0.09375-0.32422 0-0.58984-0.10156-0.79688-0.29688-0.17969-0.17578-0.28125-0.40625-0.3125-0.6875-0.023437-0.1875 0.003906-0.34375 0.078125-0.46875 0.082031-0.125 0.20312-0.20703 0.35938-0.25 0.16406-0.039063 0.3125-0.019531 0.4375 0.0625 0.16406 0.085937 0.26562 0.21875 0.29688 0.40625s-0.011719 0.35156-0.125 0.48438c-0.125 0.13672-0.28125 0.20312-0.46875 0.20312 0.019531 0.011719 0.046875 0.039063 0.078125 0.078125 0.082031 0.03125 0.13281 0.054688 0.15625 0.0625 0.10156 0.042969 0.21094 0.0625 0.32812 0.0625 0.14453 0 0.26562-0.023438 0.35938-0.078125 0.11328-0.0625 0.21875-0.14844 0.3125-0.26562 0.09375-0.15625 0.17578-0.32812 0.25-0.51562 0.0625-0.1875 0.12891-0.45703 0.20312-0.8125 0.082031-0.45703 0.14844-1.0156 0.20312-1.6719l0.03125-0.82812c0-0.15625 0.003906-0.26953 0.015625-0.34375v-0.39062c0.019531-0.23828-0.007812-0.40625-0.078125-0.5-0.054687-0.0625-0.15625-0.11328-0.3125-0.15625-0.03125 0-0.085937-0.003906-0.15625-0.015625-0.0625-0.007813-0.10938-0.015625-0.14062-0.015625h-0.4375z"/>
|
|
30
|
+
</symbol>
|
|
31
|
+
<symbol id="f" overflow="visible">
|
|
32
|
+
<path d="m3.375-6.2656h0.25c0.22656 0 0.45312 0.042969 0.67188 0.125 0.88281 0.25 1.5352 0.79297 1.9531 1.625 0.20703 0.44922 0.32031 0.92188 0.34375 1.4219v0.25c-0.03125 0.83594-0.35156 1.543-0.95312 2.125-0.5 0.48047-1.0898 0.75781-1.7656 0.84375-0.38672 0.050781-0.74609 0.03125-1.0781-0.0625-0.3125-0.0625-0.61719-0.17969-0.90625-0.35938-0.28125-0.16406-0.53125-0.36719-0.75-0.60938-0.17969-0.22656-0.32422-0.45312-0.4375-0.67188-0.21094-0.42578-0.32031-0.86328-0.32812-1.3125v-0.25c0.050781-0.8125 0.32031-1.4922 0.8125-2.0469 0.42578-0.48828 0.94141-0.81641 1.5469-0.98438 0.1875-0.039063 0.32812-0.066406 0.42188-0.078125 0.019531-0.007812 0.050781-0.015625 0.09375-0.015625h0.125zm-1.8281 3.4375v0.15625c0 0.085937 0.007813 0.21094 0.03125 0.375 0.050781 0.55469 0.1875 0.98047 0.40625 1.2812 0.11328 0.1875 0.26562 0.34375 0.45312 0.46875 0.34375 0.25 0.71875 0.36719 1.125 0.34375 0.36328-0.019531 0.6875-0.13281 0.96875-0.34375 0.16406-0.11328 0.30469-0.25391 0.42188-0.42188 0.25781-0.36328 0.41016-0.84375 0.45312-1.4375 0.007812-0.0625 0.015625-0.14844 0.015625-0.26562v-0.125c0.019531-0.21875 0.019531-0.42969 0-0.64062v-0.125c0-0.16406-0.015625-0.34375-0.046875-0.53125-0.042969-0.35156-0.125-0.64062-0.25-0.85938-0.10547-0.17578-0.21875-0.32812-0.34375-0.45312l-0.28125-0.25c-0.35547-0.20703-0.71484-0.30469-1.0781-0.29688-0.44922 0.023437-0.83594 0.18359-1.1562 0.48438-0.11719 0.09375-0.19922 0.1875-0.25 0.28125-0.29297 0.375-0.44922 0.96094-0.46875 1.75z"/>
|
|
33
|
+
</symbol>
|
|
34
|
+
<symbol id="ai" overflow="visible">
|
|
35
|
+
<path d="m0.375-6.0312h3.625c0.36328 0.023438 0.67578 0.074219 0.9375 0.15625l0.34375 0.125c0.039062 0.023438 0.10938 0.058594 0.20312 0.10938 0.44531 0.27344 0.6875 0.59375 0.71875 0.96875v0.15625c-0.023437 0.10547-0.042969 0.17969-0.0625 0.21875-0.03125 0.085937-0.085937 0.17188-0.15625 0.26562-0.11719 0.11719-0.25781 0.21875-0.42188 0.3125-0.17969 0.10547-0.42188 0.21094-0.73438 0.3125-0.011719 0-0.042969 0.011719-0.09375 0.03125-0.042969 0.011719-0.074219 0.023438-0.09375 0.03125-0.011719 0-0.03125 0.007812-0.0625 0.015625-0.03125 0-0.054687 0.007813-0.0625 0.015625 0.039063 0 0.085937 0.011719 0.14062 0.03125 0.0625 0.011719 0.097656 0.015625 0.10938 0.015625 0.21875 0.074219 0.37891 0.13672 0.48438 0.1875 0.33203 0.125 0.625 0.29688 0.875 0.51562 0.21875 0.21094 0.34766 0.43359 0.39062 0.67188 0.007813 0.10547 0.007813 0.21484 0 0.32812-0.023437 0.14844-0.0625 0.28125-0.125 0.40625-0.054687 0.11719-0.14844 0.25781-0.28125 0.42188-0.15625 0.17969-0.35547 0.32422-0.59375 0.4375-0.27344 0.15625-0.60156 0.25-0.98438 0.28125-0.09375 0.011719-0.23438 0.015625-0.42188 0.015625h-3.7344v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.14453-0.019531 0.25391-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.1562c0-0.20703-0.027344-0.35156-0.078125-0.4375-0.054687-0.0625-0.15625-0.11328-0.3125-0.15625-0.14844-0.019531-0.38281-0.03125-0.70312-0.03125zm2.0625 2.5625h0.76562c0.34375 0 0.55078-0.003906 0.625-0.015625 0.26953-0.050781 0.5-0.12891 0.6875-0.23438 0.23828-0.14453 0.41016-0.31641 0.51562-0.51562 0.039062-0.082031 0.066406-0.16406 0.078125-0.25 0.03125-0.19531-0.007813-0.39062-0.10938-0.57812-0.09375-0.1875-0.22656-0.33203-0.39062-0.4375-0.15625-0.11328-0.32812-0.1875-0.51562-0.21875h-0.34375-0.35938-0.5625c-0.14844 0-0.25 0.039062-0.3125 0.10938-0.023437 0.03125-0.042969 0.10156-0.0625 0.20312-0.011719 0.09375-0.015625 0.23438-0.015625 0.42188zm0 0.3125v1.9531c0 0.23047 0.003906 0.40234 0.015625 0.51562 0.019531 0.14844 0.039063 0.23047 0.0625 0.25 0.0625 0.0625 0.16406 0.10156 0.3125 0.10938h0.65625c0.34375 0 0.55078-0.003906 0.625-0.015625 0.42578-0.0625 0.75781-0.25391 1-0.57812 0.15625-0.21875 0.25-0.46094 0.28125-0.73438 0.019531-0.28125-0.042969-0.55078-0.1875-0.8125-0.13672-0.25781-0.32422-0.44531-0.5625-0.5625-0.125-0.070312-0.25-0.11328-0.375-0.125h-0.3125z"/>
|
|
36
|
+
</symbol>
|
|
37
|
+
<symbol id="ah" overflow="visible">
|
|
38
|
+
<path d="m5.0312-7.2188c-0.11719-0.050781-0.20312-0.10156-0.26562-0.15625-0.074219-0.0625-0.13281-0.14062-0.17188-0.23438-0.13672-0.35156-0.070312-0.62891 0.20312-0.82812 0.039063-0.039062 0.10938-0.078125 0.20312-0.10938 0.0625-0.03125 0.12891-0.046875 0.20312-0.046875 0.125 0 0.21094 0.011719 0.26562 0.03125 0.082031 0.023438 0.16016 0.0625 0.23438 0.125 0.0625 0.0625 0.10938 0.11719 0.14062 0.15625 0.16406 0.26172 0.16016 0.54688-0.015625 0.85938-0.054687 0.09375-0.15234 0.21094-0.29688 0.34375-0.19922 0.13672-0.44922 0.24219-0.75 0.3125-0.21094 0.054687-0.45312 0.089844-0.73438 0.10938-0.32422 0.011719-0.62109-0.007812-0.89062-0.0625-0.03125 0-0.074219-0.007812-0.125-0.03125-0.054688-0.019531-0.09375-0.03125-0.125-0.03125-0.011719-0.007812-0.042969-0.019531-0.09375-0.03125-0.042969-0.007812-0.078125-0.019531-0.10938-0.03125-0.46875-0.16406-0.75-0.41406-0.84375-0.75-0.0625-0.22656-0.058594-0.42578 0.015625-0.59375 0.039062-0.070312 0.078125-0.12891 0.10938-0.17188 0.25-0.28125 0.53906-0.33203 0.875-0.15625 0.070313 0.042969 0.14062 0.09375 0.20312 0.15625 0.125 0.14844 0.17578 0.32031 0.15625 0.51562-0.023438 0.1875-0.10156 0.35156-0.23438 0.48438-0.085937 0.074219-0.16797 0.12109-0.25 0.14062 0.019531 0.011719 0.050781 0.023438 0.09375 0.03125h0.09375c0.09375 0.023438 0.23438 0.042969 0.42188 0.0625 0.34375 0.023438 0.59766 0.027344 0.76562 0.015625 0.16406 0 0.28906-0.003906 0.375-0.015625 0.16406-0.019531 0.30078-0.039062 0.40625-0.0625 0.007813-0.007812 0.03125-0.015625 0.0625-0.015625 0.039063-0.007813 0.066406-0.015625 0.078125-0.015625zm-4.6719 1.1875 0.28125 0.015625 0.53125 0.015625 0.3125 0.015625 0.98438-0.015625h0.35938l0.40625-0.015625 0.28125-0.015625v0.3125h-0.42188c-0.054688 0-0.14844 0.011719-0.28125 0.03125-0.125 0.023438-0.21875 0.0625-0.28125 0.125-0.074219 0.085938-0.10938 0.23047-0.10938 0.4375v3.6562c0.0625-0.0625 0.14844-0.17188 0.26562-0.32812l0.46875-0.57812 1.3906-1.75 0.57812-0.70312 0.15625-0.20312c0-0.007812 0.003906-0.019531 0.015625-0.03125 0.019531-0.019531 0.03125-0.035156 0.03125-0.046875v-0.1875c-0.011719-0.125-0.046875-0.21875-0.10938-0.28125-0.0625-0.050781-0.16797-0.085937-0.3125-0.10938-0.13672-0.019531-0.35547-0.03125-0.65625-0.03125v-0.3125l0.28125 0.015625 0.53125 0.015625 0.3125 0.015625 0.96875-0.015625h0.375l0.40625-0.015625 0.28125-0.015625v0.3125c-0.3125 0-0.55469 0.011719-0.71875 0.03125-0.14844 0.042969-0.24609 0.09375-0.29688 0.15625-0.054687 0.085938-0.078125 0.22656-0.078125 0.42188v4.1719c0 0.21094 0.023438 0.35156 0.078125 0.42188 0.0625 0.085937 0.17188 0.13672 0.32812 0.15625 0.14453 0.023437 0.375 0.03125 0.6875 0.03125v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.96875l-0.78125 0.03125-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.13281-0.019531 0.23438-0.0625 0.29688-0.125 0.050781-0.0625 0.082031-0.17188 0.09375-0.32812v-3.75l-0.25 0.3125-0.46875 0.59375-1.4062 1.7344-0.5625 0.71875-0.15625 0.1875c-0.023437 0.011719-0.042969 0.042969-0.0625 0.09375 0 0.074219 0.003906 0.13281 0.015625 0.17188 0.019531 0.125 0.054688 0.21875 0.10938 0.28125 0.039063 0.03125 0.14062 0.074219 0.29688 0.125 0.14453 0.011719 0.36719 0.015625 0.67188 0.015625v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.98438l-0.35938 0.015625-0.40625 0.015625-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.15625-0.019531 0.26562-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.1719c0-0.19531-0.027344-0.33594-0.078125-0.42188-0.054688-0.0625-0.15625-0.11328-0.3125-0.15625-0.14844-0.019531-0.38281-0.03125-0.70312-0.03125z"/>
|
|
39
|
+
</symbol>
|
|
40
|
+
<symbol id="ag" overflow="visible">
|
|
41
|
+
<path d="m0.5-6.0312h6l0.015625 0.17188 0.015625 0.42188 0.078125 1.1406 0.03125 0.32812 0.015625 0.20312h-0.375c0-0.09375-0.007812-0.21094-0.015625-0.35938-0.023437-0.25781-0.058594-0.5-0.10938-0.71875-0.054688-0.23828-0.125-0.41016-0.21875-0.51562-0.0625-0.070313-0.15625-0.14062-0.28125-0.20312-0.21094-0.10156-0.48047-0.15625-0.8125-0.15625h-0.53125c-0.125 0.023438-0.20312 0.058594-0.23438 0.10938-0.042969 0.03125-0.074219 0.14062-0.09375 0.32812v4.25c0 0.25 0.039063 0.42188 0.125 0.51562 0.082031 0.085937 0.21875 0.13672 0.40625 0.15625 0.082031 0.011719 0.21875 0.015625 0.40625 0.015625 0.13281 0.011719 0.33594 0.015625 0.60938 0.015625v0.32812l-0.21875-0.015625h-0.26562l-0.40625-0.015625h-0.17188l-1.5781-0.015625h-0.0625l-0.53125 0.015625-0.48438 0.015625-0.34375 0.015625v-0.32812c0.25781 0 0.46094-0.003906 0.60938-0.015625 0.17578 0 0.3125-0.003906 0.40625-0.015625 0.1875-0.019531 0.32031-0.070313 0.40625-0.15625 0.082031-0.09375 0.125-0.26562 0.125-0.51562v-4.25c-0.023437-0.17578-0.054687-0.28516-0.09375-0.32812-0.03125-0.050781-0.10938-0.085937-0.23438-0.10938h-0.53125c-0.34375 0-0.62109 0.054688-0.82812 0.15625-0.10547 0.054688-0.19531 0.12109-0.26562 0.20312-0.10547 0.11719-0.18359 0.28906-0.23438 0.51562-0.03125 0.15625-0.0625 0.39844-0.09375 0.71875-0.011719 0.03125-0.023437 0.089844-0.03125 0.17188v0.1875h-0.35938l0.015625-0.20312 0.03125-0.32812 0.078125-1.1406 0.015625-0.42188z"/>
|
|
42
|
+
</symbol>
|
|
43
|
+
<symbol id="af" overflow="visible">
|
|
44
|
+
<path d="m0.35938-6.0312 0.28125 0.015625 0.39062 0.015625h0.375l0.95312 0.015625 0.078125-0.015625h0.35938l0.40625-0.015625 0.26562-0.015625v0.3125c-0.29297 0-0.51172 0.011719-0.65625 0.03125-0.13672 0.023438-0.24219 0.058594-0.3125 0.10938-0.074219 0.085937-0.10938 0.19922-0.10938 0.34375v2.2656c0.019531-0.019531 0.046875-0.039062 0.078125-0.0625 0.039062-0.03125 0.070312-0.054688 0.09375-0.078125l0.39062-0.3125 1.1562-0.90625 0.40625-0.3125c0.0625-0.039063 0.14844-0.10938 0.26562-0.20312 0.1875-0.19531 0.30469-0.38281 0.35938-0.5625 0.007813-0.070312-0.011719-0.14062-0.0625-0.20312-0.054687-0.070313-0.11719-0.10938-0.1875-0.10938v-0.3125l0.375 0.015625 0.39062 0.015625 0.28125 0.015625 0.8125-0.015625 0.3125-0.015625 0.15625-0.015625v0.3125c-0.28125 0-0.61719 0.10547-1 0.3125-0.33594 0.17969-0.83984 0.53906-1.5156 1.0781l-0.5625 0.4375c-0.011719 0-0.023437 0.011719-0.03125 0.03125-0.011719 0.011719-0.027344 0.015625-0.046875 0.015625 0.007812 0.023438 0.023438 0.046875 0.046875 0.078125 0.019531 0.03125 0.035156 0.054687 0.046875 0.0625 0.070312 0.09375 0.125 0.16406 0.15625 0.20312l0.5625 0.71875 1.1094 1.3906c0.21875 0.30469 0.39844 0.52734 0.54688 0.67188 0.11328 0.125 0.23438 0.21875 0.35938 0.28125 0.14453 0.074219 0.35938 0.10938 0.64062 0.10938v0.32812l-0.1875-0.015625-0.4375-0.03125h-0.98438l-0.3125 0.015625-0.54688 0.015625-0.28125 0.015625v-0.32812c0.10156 0 0.17969-0.003906 0.23438-0.015625 0.03125 0 0.070313-0.015625 0.125-0.046875 0.03125-0.019531 0.050781-0.035156 0.0625-0.046875 0.125-0.10156 0.11719-0.28125-0.015625-0.53125-0.023438-0.03125-0.042969-0.054688-0.0625-0.078125 0-0.007813-0.027344-0.046875-0.078125-0.10938-0.042969-0.070312-0.11719-0.16406-0.21875-0.28125-0.09375-0.125-0.15625-0.20703-0.1875-0.25l-0.75-0.95312-0.32812-0.42188c-0.085938-0.125-0.14062-0.20312-0.17188-0.23438-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.023437 0.023437-0.03125 0.039063-0.03125 0.046875-0.085937 0.054688-0.14062 0.10156-0.17188 0.14062-0.21094 0.14844-0.35938 0.26172-0.45312 0.34375-0.03125 0.011719-0.070313 0.039063-0.10938 0.078125-0.03125 0.03125-0.058594 0.054688-0.078125 0.0625l-0.0625 0.0625-0.03125 0.015625v1.5625c0 0.24219 0.039063 0.40234 0.125 0.48438 0.039063 0.042969 0.14062 0.085938 0.29688 0.125 0.14453 0.011719 0.36328 0.015625 0.65625 0.015625v0.32812l-0.26562-0.015625-0.40625-0.015625-0.35938-0.015625h-0.96875l-0.3125 0.015625-0.51562 0.015625-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.15625-0.019531 0.26562-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.1719c0-0.19531-0.027344-0.33594-0.078125-0.42188-0.054688-0.0625-0.15625-0.11328-0.3125-0.15625-0.14844-0.019531-0.38281-0.03125-0.70312-0.03125z"/>
|
|
45
|
+
</symbol>
|
|
46
|
+
<symbol id="ft" overflow="visible">
|
|
47
|
+
<path d="m1.3438-7.7031v0.95312c-0.023438 0.19922-0.125 0.32031-0.3125 0.35938h-0.29688c-0.09375 0-0.18359-0.035156-0.26562-0.10938-0.0625-0.070312-0.10156-0.14844-0.10938-0.23438v-1.2188c0-0.21875 0.03125-0.36719 0.09375-0.45312 0.007813-0.019531 0.03125-0.039062 0.0625-0.0625 0.0625-0.050781 0.22266-0.078125 0.48438-0.078125h5.5c0.10156 0 0.17578 0.007813 0.21875 0.015625 0.13281 0.042969 0.21875 0.15234 0.25 0.32812v1.1719c0 0.26172-0.027344 0.42969-0.078125 0.5-0.0625 0.085938-0.15234 0.13281-0.26562 0.14062h-0.3125c-0.13672-0.019531-0.23047-0.09375-0.28125-0.21875-0.03125-0.0625-0.046875-0.1875-0.046875-0.375v-0.71875h-1.8281v6.8281h0.70312c0.20703 0 0.34375 0.023438 0.40625 0.0625 0.09375 0.0625 0.15625 0.15234 0.1875 0.26562v0.21875c-0.03125 0.125-0.10156 0.21484-0.20312 0.26562-0.074219 0.042969-0.1875 0.0625-0.34375 0.0625h-2.5c-0.125 0-0.21875-0.0078125-0.28125-0.03125-0.085938-0.039062-0.14844-0.09375-0.1875-0.15625-0.03125-0.070312-0.046875-0.15625-0.046875-0.25v-0.10938c0.03125-0.125 0.097656-0.21094 0.20312-0.26562 0.0625-0.039062 0.19141-0.0625 0.39062-0.0625h0.6875v-6.8281z"/>
|
|
48
|
+
</symbol>
|
|
49
|
+
<symbol id="fs" overflow="visible">
|
|
50
|
+
<path d="m1.7812-2.6719c0 0.054687 0.015625 0.13672 0.046875 0.25 0.050781 0.17969 0.14062 0.37109 0.26562 0.57812 0.20703 0.3125 0.47656 0.57031 0.8125 0.76562 0.34375 0.1875 0.69531 0.28906 1.0625 0.29688 0.3125 0.023438 0.59766-0.023438 0.85938-0.14062 0.25781-0.11328 0.46875-0.28125 0.625-0.5l0.078125-0.17188v-0.046875c0.007812-0.03125 0.019531-0.046875 0.03125-0.046875 0.039062-0.082031 0.09375-0.14062 0.15625-0.17188 0.070312-0.050781 0.16406-0.078125 0.28125-0.078125 0.09375 0 0.16406 0.007812 0.21875 0.015625 0.17578 0.054687 0.27344 0.17188 0.29688 0.35938 0 0.074219-0.015625 0.14844-0.046875 0.21875-0.03125 0.074219-0.085938 0.17969-0.15625 0.3125-0.1875 0.3125-0.46875 0.57031-0.84375 0.76562-0.074219 0.042969-0.18359 0.09375-0.32812 0.15625-0.26172 0.09375-0.54297 0.14844-0.84375 0.17188-0.96094 0.09375-1.7891-0.17188-2.4844-0.79688-0.25-0.22656-0.44922-0.46094-0.59375-0.70312-0.27344-0.45703-0.42188-0.95312-0.45312-1.4844v-0.26562c0.03125-0.625 0.22266-1.1875 0.57812-1.6875 0.20703-0.28906 0.45703-0.53906 0.75-0.75 0.26953-0.17578 0.53906-0.30469 0.8125-0.39062 0.36328-0.11328 0.73438-0.15625 1.1094-0.125 0.34375 0.023437 0.67578 0.10547 1 0.25 0.19531 0.085937 0.38281 0.19922 0.5625 0.34375 0.5 0.44922 0.79688 1.0703 0.89062 1.8594 0.019531 0.15625 0.03125 0.27344 0.03125 0.34375v0.078125c0.019531 0.25-0.023438 0.41797-0.125 0.5-0.074219 0.042969-0.15234 0.074219-0.23438 0.09375zm0.015625-0.84375h3.7031c0-0.050781-0.007812-0.09375-0.015625-0.125 0-0.039063-0.007813-0.09375-0.015625-0.15625-0.011719-0.070313-0.015625-0.11328-0.015625-0.125-0.125-0.47656-0.33594-0.82812-0.625-1.0469-0.21094-0.14453-0.42969-0.23828-0.65625-0.28125-0.375-0.082031-0.74609-0.050781-1.1094 0.09375-0.49219 0.21875-0.85547 0.57812-1.0938 1.0781-0.023438 0.054687-0.070312 0.17188-0.14062 0.35938z"/>
|
|
51
|
+
</symbol>
|
|
52
|
+
<symbol id="ab" overflow="visible">
|
|
53
|
+
<path d="m1.4219-5.1875h-0.625c-0.1875 0-0.30859-0.015625-0.35938-0.046875-0.13672-0.070313-0.21094-0.19141-0.21875-0.35938 0-0.17578 0.066406-0.30469 0.20312-0.39062 0.019531 0 0.054687-0.007813 0.10938-0.03125 0.050781-0.007813 0.11719-0.015625 0.20312-0.015625h5.875c0.125 0 0.21094 0.015625 0.26562 0.046875 0.14453 0.074219 0.21875 0.20312 0.21875 0.39062 0 0.17969-0.070312 0.30469-0.20312 0.375-0.0625 0.023438-0.18359 0.03125-0.35938 0.03125h-0.64062v4.3125h0.65625c0.17578 0 0.30469 0.03125 0.39062 0.09375 0.09375 0.09375 0.14062 0.21094 0.14062 0.34375 0 0.09375-0.007813 0.16797-0.015625 0.21875-0.074219 0.09375-0.15234 0.15625-0.23438 0.1875-0.054687 0.023438-0.09375 0.03125-0.125 0.03125h-2.2188c-0.14844 0-0.25-0.0078125-0.3125-0.03125-0.09375-0.039062-0.16797-0.10156-0.21875-0.1875-0.023437-0.050781-0.03125-0.125-0.03125-0.21875 0-0.0625 0.003906-0.10938 0.015625-0.14062 0.019531-0.10156 0.078125-0.17969 0.17188-0.23438 0.0625-0.039062 0.17969-0.0625 0.35938-0.0625h0.64062v-4.3125h-2.8906v4.3125h0.65625c0.17578 0 0.30469 0.03125 0.39062 0.09375 0.10156 0.09375 0.15625 0.21094 0.15625 0.34375 0 0.0625-0.015625 0.13672-0.046875 0.21875-0.054688 0.085938-0.125 0.14844-0.21875 0.1875-0.042969 0.023438-0.085938 0.03125-0.125 0.03125h-2.2344c-0.13672 0-0.23438-0.0078125-0.29688-0.03125-0.10547-0.039062-0.17969-0.10156-0.21875-0.1875-0.03125-0.082031-0.046875-0.15625-0.046875-0.21875s0.003906-0.10938 0.015625-0.14062c0.03125-0.09375 0.09375-0.17188 0.1875-0.23438 0.050781-0.039062 0.17188-0.0625 0.35938-0.0625h0.625z"/>
|
|
54
|
+
</symbol>
|
|
55
|
+
<symbol id="fr" overflow="visible">
|
|
56
|
+
<path d="m2.3906-5.1719h-0.67188c-0.1875 0-0.3125-0.019531-0.375-0.0625-0.11719-0.0625-0.17969-0.14453-0.1875-0.25-0.011719-0.03125-0.015625-0.066406-0.015625-0.10938 0-0.09375 0.019531-0.17578 0.0625-0.25 0.050781-0.082031 0.13281-0.14062 0.25-0.17188 0.039063-0.007813 0.10156-0.015625 0.1875-0.015625h4.9844c0.10156 0 0.19141 0.015625 0.26562 0.046875 0.13281 0.085937 0.20312 0.21875 0.20312 0.40625 0 0.17969-0.070312 0.29688-0.20312 0.35938-0.0625 0.03125-0.18359 0.046875-0.35938 0.046875h-0.625v4.3125h0.64062c0.1875 0 0.31641 0.03125 0.39062 0.09375 0.10156 0.074219 0.15625 0.1875 0.15625 0.34375 0 0.0625-0.011719 0.13281-0.03125 0.20312-0.0625 0.10547-0.14062 0.16797-0.23438 0.1875-0.03125 0.023438-0.070313 0.03125-0.10938 0.03125h-2.2344c-0.16797 0-0.26562-0.0078125-0.29688-0.03125-0.10547-0.019531-0.17969-0.082031-0.21875-0.1875-0.03125-0.070312-0.046875-0.14062-0.046875-0.20312s0.003906-0.11328 0.015625-0.15625c0.019531-0.09375 0.078125-0.17188 0.17188-0.23438 0.0625-0.03125 0.1875-0.046875 0.375-0.046875h0.625v-4.3125h-1.8906c0 0.35547-0.011719 0.89062-0.03125 1.6094-0.054688 0.9375-0.13672 1.6797-0.25 2.2188-0.023438 0.09375-0.039062 0.16406-0.046875 0.20312-0.16797 0.5625-0.42969 0.93359-0.78125 1.1094l-0.15625 0.09375c-0.14844 0.03125-0.30469 0.046875-0.46875 0.046875-0.33594 0.019531-0.625-0.070312-0.875-0.26562-0.21094-0.17578-0.32812-0.41406-0.35938-0.71875v-0.14062c0.019531-0.17578 0.085938-0.31641 0.20312-0.42188 0.10156-0.10156 0.23828-0.15625 0.40625-0.15625 0.16406 0 0.30469 0.054688 0.42188 0.15625 0.14453 0.14844 0.20703 0.32422 0.1875 0.53125-0.023438 0.09375-0.042969 0.15625-0.0625 0.1875 0.16406 0 0.28516-0.015625 0.35938-0.046875 0.09375-0.070313 0.16016-0.17188 0.20312-0.29688 0.082031-0.16406 0.15625-0.39453 0.21875-0.6875 0.050781-0.3125 0.09375-0.61719 0.125-0.92188 0.019531-0.26953 0.035156-0.66016 0.046875-1.1719 0.019531-0.28906 0.03125-0.73438 0.03125-1.3281z"/>
|
|
57
|
+
</symbol>
|
|
58
|
+
<symbol id="n" overflow="visible">
|
|
59
|
+
<path d="m3.5625-6.1406h0.25c0.19531 0.011719 0.38281 0.042969 0.5625 0.09375 0.17578 0.042969 0.35938 0.10938 0.54688 0.20312 0.76953 0.41797 1.2734 1.0781 1.5156 1.9844 0.14453 0.5625 0.14062 1.1406-0.015625 1.7344-0.15625 0.58594-0.44922 1.0742-0.875 1.4688-0.24219 0.21094-0.5 0.375-0.78125 0.5-0.26172 0.11719-0.50781 0.1875-0.73438 0.21875-0.28125 0.03125-0.57422 0.019531-0.875-0.03125-0.29297-0.0625-0.54688-0.14844-0.76562-0.26562-0.25-0.15625-0.44922-0.30078-0.59375-0.4375-0.1875-0.1875-0.33594-0.35156-0.4375-0.5-0.28125-0.41406-0.46094-0.88281-0.53125-1.4062-0.0625-0.53125-0.015625-1.0352 0.14062-1.5156 0.13281-0.41406 0.35156-0.78906 0.65625-1.125 0.3125-0.33203 0.67188-0.58203 1.0781-0.75 0.19531-0.070312 0.39062-0.125 0.57812-0.15625h0.078125c0.050781 0 0.09375-0.003906 0.125-0.015625zm-1.7812 3.1094v0.14062c0.019531 0.17969 0.035156 0.29688 0.046875 0.35938 0.11328 0.48047 0.31641 0.87109 0.60938 1.1719 0.15625 0.16797 0.33203 0.30469 0.53125 0.40625 0.17578 0.09375 0.34766 0.14844 0.51562 0.15625 0.14453 0.03125 0.29688 0.03125 0.45312 0 0.42578-0.082031 0.78906-0.3125 1.0938-0.6875 0.33203-0.40625 0.51562-0.91016 0.54688-1.5156 0-0.19531-0.007813-0.34375-0.015625-0.4375-0.074219-0.38281-0.19922-0.71094-0.375-0.98438-0.17969-0.25781-0.36719-0.45312-0.5625-0.57812-0.16797-0.11328-0.35156-0.19531-0.54688-0.25-0.15625-0.03125-0.3125-0.046875-0.46875-0.046875-0.09375 0-0.19531 0.015625-0.29688 0.046875-0.36719 0.085938-0.68359 0.27734-0.95312 0.57812-0.27344 0.29297-0.44922 0.625-0.53125 1-0.011719 0.10547-0.027344 0.24219-0.046875 0.40625z"/>
|
|
60
|
+
</symbol>
|
|
61
|
+
<symbol id="fq" overflow="visible">
|
|
62
|
+
<path d="m1.4375-5.1875h-0.67188c-0.19922 0-0.32812-0.015625-0.39062-0.046875-0.09375-0.050781-0.15234-0.13281-0.17188-0.25v-0.23438c0.019531-0.11328 0.082031-0.20312 0.1875-0.26562 0.070313-0.03125 0.1875-0.046875 0.34375-0.046875h2.5312c0.46875 0 0.75 0.007812 0.84375 0.015625 0.35156 0.023437 0.6875 0.10156 1 0.23438 0.53906 0.24219 0.87891 0.57031 1.0156 0.98438 0.03125 0.085937 0.046875 0.16797 0.046875 0.25 0.019531 0.11719 0.015625 0.21875-0.015625 0.3125-0.023438 0.09375-0.0625 0.18359-0.125 0.26562-0.125 0.19922-0.32422 0.375-0.59375 0.53125-0.03125 0.011719-0.074219 0.027344-0.125 0.046875-0.054688 0.023437-0.089844 0.042969-0.10938 0.0625 0.019531 0 0.082031 0.027344 0.1875 0.078125 0.16406 0.09375 0.28906 0.16797 0.375 0.21875 0.20703 0.13672 0.37891 0.30469 0.51562 0.5 0.070312 0.10547 0.125 0.21094 0.15625 0.3125 0.0625 0.19922 0.070312 0.41797 0.03125 0.65625-0.0625 0.32422-0.21875 0.60938-0.46875 0.85938s-0.54297 0.43359-0.875 0.54688c-0.28125 0.085938-0.52734 0.13281-0.73438 0.14062-0.074219 0.011719-0.17969 0.015625-0.3125 0.015625h-3.4219c-0.10547 0-0.17969-0.015625-0.21875-0.046875-0.10547-0.039062-0.17969-0.10938-0.21875-0.20312-0.011719-0.039062-0.015625-0.10156-0.015625-0.1875v-0.10938c0.019531-0.125 0.082031-0.21094 0.1875-0.26562 0.0625-0.039062 0.19141-0.0625 0.39062-0.0625h0.65625zm0.79688 1.4531h0.95312c0.22656 0 0.39844-0.003906 0.51562-0.015625 0.3125-0.019531 0.59375-0.070312 0.84375-0.15625 0.019531-0.007812 0.046875-0.019531 0.078125-0.03125 0.03125-0.007812 0.050781-0.015625 0.0625-0.015625 0.0625-0.019531 0.09375-0.035156 0.09375-0.046875 0.28906-0.125 0.42969-0.28516 0.42188-0.48438 0-0.10156-0.054687-0.20312-0.15625-0.29688-0.11719-0.125-0.28906-0.21875-0.51562-0.28125-0.21875-0.082031-0.5625-0.125-1.0312-0.125h-1.2656zm0 2.8594h1.7812c0.25781-0.007812 0.50781-0.0625 0.75-0.15625 0.03125-0.007812 0.082031-0.035156 0.15625-0.078125 0.38281-0.19531 0.58203-0.44141 0.59375-0.73438 0.007813-0.20703-0.0625-0.39062-0.21875-0.54688-0.14844-0.15625-0.32031-0.28125-0.51562-0.375-0.21094-0.070313-0.43359-0.11328-0.67188-0.125h-1.875z"/>
|
|
63
|
+
</symbol>
|
|
64
|
+
<symbol id="fp" overflow="visible">
|
|
65
|
+
<path d="m4.7344-7.8906c-0.042969-0.019531-0.074219-0.039063-0.09375-0.0625-0.042969-0.03125-0.089844-0.09375-0.14062-0.1875-0.085938-0.13281-0.12109-0.28516-0.10938-0.45312 0.019531-0.16406 0.09375-0.30078 0.21875-0.40625 0.0625-0.0625 0.14844-0.11719 0.26562-0.17188 0.17578-0.050781 0.34766-0.035156 0.51562 0.046875 0.17578 0.074219 0.29688 0.19922 0.35938 0.375 0.03125 0.11719 0.046875 0.23047 0.046875 0.34375 0 0-0.007813 0.011719-0.015625 0.03125-0.011719 0.023438-0.015625 0.039062-0.015625 0.046875v0.046875h-0.015625v0.03125c0.007812 0.011719 0.015625 0.023438 0.015625 0.03125l0.015625 0.03125c0.007812 0.011719 0.015625 0.023438 0.015625 0.03125 0 0.11719-0.007813 0.20312-0.015625 0.26562-0.011719 0.054687-0.03125 0.125-0.0625 0.21875-0.16797 0.375-0.52734 0.60547-1.0781 0.6875-0.27344 0.042969-0.59375 0.0625-0.96875 0.0625s-0.65234-0.007813-0.82812-0.03125c-0.39844-0.0625-0.69531-0.16406-0.89062-0.3125-0.1875-0.13281-0.32031-0.3125-0.39062-0.53125-0.011719-0.050781-0.023438-0.14453-0.03125-0.28125 0-0.03125 0.003906-0.070313 0.015625-0.125v-0.03125c0.007813-0.019531 0.015625-0.03125 0.015625-0.03125v-0.046875l-0.015625-0.03125c-0.011719-0.070312-0.015625-0.12891-0.015625-0.17188 0.007812-0.3125 0.16016-0.52344 0.45312-0.64062 0.26953-0.10156 0.51953-0.050781 0.75 0.15625 0.082031 0.085938 0.13281 0.17969 0.15625 0.28125 0.050781 0.125 0.0625 0.25 0.03125 0.375-0.03125 0.11719-0.070313 0.19531-0.10938 0.23438-0.042969 0.085937-0.11719 0.15625-0.21875 0.21875 0.039062 0.011719 0.11719 0.027344 0.23438 0.046875 0.17578 0.03125 0.4375 0.046875 0.78125 0.046875 0.36328 0 0.63281-0.007813 0.8125-0.03125h0.09375c0.039063-0.007813 0.070313-0.019531 0.09375-0.03125zm-3.3125 2.7031h-0.64062c-0.19922 0-0.32812-0.023438-0.39062-0.078125-0.10547-0.070313-0.15625-0.1875-0.15625-0.34375 0-0.070313 0.015625-0.14062 0.046875-0.20312 0.039062-0.10156 0.10938-0.16406 0.20312-0.1875 0.0625-0.019531 0.10156-0.03125 0.125-0.03125h2.25c0.14453 0 0.24219 0.011719 0.29688 0.03125 0.09375 0.023438 0.16406 0.085938 0.21875 0.1875 0.03125 0.0625 0.046875 0.13281 0.046875 0.20312 0 0.0625-0.007813 0.11719-0.015625 0.15625-0.03125 0.09375-0.09375 0.17188-0.1875 0.23438-0.054688 0.023438-0.17188 0.03125-0.35938 0.03125h-0.64062v3.3594c0-0.019531 0.007812-0.050781 0.03125-0.09375 0.03125-0.050781 0.066406-0.10156 0.10938-0.15625 0.082031-0.11328 0.21875-0.28516 0.40625-0.51562 0.23828-0.28125 0.79688-0.89844 1.6719-1.8594 0.050781-0.050781 0.12891-0.13281 0.23438-0.25l0.17188-0.17188c0.039062-0.019531 0.097656-0.050781 0.17188-0.09375l0.078125-0.046875c0.007812-0.007813 0.015625-0.019531 0.015625-0.03125v-0.14062h-0.65625c-0.1875 0-0.3125-0.023438-0.375-0.078125-0.10547-0.070313-0.15625-0.1875-0.15625-0.34375 0-0.082031 0.007813-0.14844 0.03125-0.20312 0.070313-0.11328 0.14453-0.17578 0.21875-0.1875 0.050781-0.019531 0.09375-0.03125 0.125-0.03125h2.2344c0.15625 0 0.25391 0.011719 0.29688 0.03125 0.09375 0.023438 0.17188 0.085938 0.23438 0.1875 0.007812 0.054688 0.015625 0.12109 0.015625 0.20312 0 0.0625-0.007813 0.11719-0.015625 0.15625-0.023438 0.09375-0.078125 0.17188-0.17188 0.23438-0.0625 0.023438-0.18359 0.03125-0.35938 0.03125h-0.64062v4.3125h0.65625c0.17578 0 0.30469 0.03125 0.39062 0.09375 0.09375 0.09375 0.14062 0.21094 0.14062 0.34375 0 0.09375-0.007813 0.16797-0.015625 0.21875-0.074219 0.09375-0.15234 0.15625-0.23438 0.1875-0.054687 0.023438-0.09375 0.03125-0.125 0.03125h-2.2188c-0.14844 0-0.25-0.0078125-0.3125-0.03125-0.09375-0.039062-0.16797-0.10156-0.21875-0.1875-0.023437-0.050781-0.03125-0.125-0.03125-0.21875 0-0.0625 0.003906-0.10938 0.015625-0.14062 0.019531-0.10156 0.078125-0.17969 0.17188-0.23438 0.0625-0.039062 0.17969-0.0625 0.35938-0.0625h0.64062v-3.3281h-0.015625c0 0.03125-0.011719 0.058594-0.03125 0.078125-0.011719 0.011719-0.027344 0.039062-0.046875 0.078125-0.023437 0.042969-0.039063 0.070313-0.046875 0.078125-0.085938 0.125-0.22656 0.29688-0.42188 0.51562-0.15625 0.1875-0.32812 0.38672-0.51562 0.59375-0.17969 0.21094-0.38281 0.4375-0.60938 0.6875-0.23047 0.24219-0.40625 0.43359-0.53125 0.57812-0.0625 0.0625-0.14062 0.15234-0.23438 0.26562-0.074219 0.074219-0.13281 0.13281-0.17188 0.17188-0.023437 0.011719-0.078125 0.042969-0.17188 0.09375-0.011719 0-0.027344 0.007812-0.046875 0.015625-0.023437 0-0.039063 0.007813-0.046875 0.015625v0.15625h0.65625c0.17578 0 0.30469 0.03125 0.39062 0.09375 0.10156 0.09375 0.15625 0.21094 0.15625 0.34375 0 0.0625-0.015625 0.13672-0.046875 0.21875-0.054688 0.085938-0.125 0.14844-0.21875 0.1875-0.042969 0.023438-0.085938 0.03125-0.125 0.03125h-2.2344c-0.13672 0-0.23438-0.0078125-0.29688-0.03125-0.10547-0.039062-0.17969-0.10156-0.21875-0.1875-0.03125-0.082031-0.046875-0.15625-0.046875-0.21875s0.003906-0.10938 0.015625-0.14062c0.03125-0.09375 0.09375-0.17188 0.1875-0.23438 0.050781-0.039062 0.17188-0.0625 0.35938-0.0625h0.625z"/>
|
|
66
|
+
</symbol>
|
|
67
|
+
<symbol id="fo" overflow="visible">
|
|
68
|
+
<path d="m1.3438-5.1875v0.40625c0 0.09375-0.007812 0.16406-0.015625 0.20312-0.023437 0.17969-0.12109 0.29297-0.29688 0.34375h-0.20312-0.09375c-0.09375 0-0.18359-0.035156-0.26562-0.10938-0.0625-0.070312-0.10156-0.15625-0.10938-0.25v-0.90625c0-0.17578 0.03125-0.30078 0.09375-0.375 0.070313-0.082031 0.16406-0.13281 0.28125-0.15625h5.8906c0.13281 0.023438 0.23828 0.089844 0.3125 0.20312 0.019531 0.0625 0.03125 0.1875 0.03125 0.375v0.85938c-0.023438 0.10547-0.054688 0.17969-0.09375 0.21875-0.0625 0.085938-0.14844 0.13281-0.25 0.14062h-0.10938-0.21875c-0.14844-0.050781-0.24609-0.14844-0.29688-0.29688-0.011719-0.050781-0.015625-0.13281-0.015625-0.25v-0.40625h-1.8281v4.3125h1.3906c0.11328 0 0.19531 0.015625 0.25 0.046875 0.125 0.0625 0.19531 0.15234 0.21875 0.26562v0.14062c0 0.09375-0.011719 0.16797-0.03125 0.21875-0.054687 0.085937-0.11719 0.13672-0.1875 0.15625-0.011719 0.011719-0.058594 0.027344-0.14062 0.046875h-3.875c-0.10547 0-0.18359-0.0078125-0.23438-0.03125-0.11719-0.050781-0.1875-0.14453-0.21875-0.28125-0.011719-0.019531-0.015625-0.066406-0.015625-0.14062 0-0.070313 0.015625-0.14062 0.046875-0.20312 0.03125-0.070312 0.097656-0.13281 0.20312-0.1875 0.050781-0.019531 0.12891-0.03125 0.23438-0.03125h1.375v-4.3125z"/>
|
|
69
|
+
</symbol>
|
|
70
|
+
<symbol id="fn" overflow="visible">
|
|
71
|
+
<path d="m1.4219-5.1875h-0.64062c-0.19922 0-0.32812-0.023438-0.39062-0.078125-0.10547-0.070313-0.15625-0.1875-0.15625-0.34375 0-0.070313 0.015625-0.14062 0.046875-0.20312 0.039062-0.10156 0.10938-0.16406 0.20312-0.1875 0.0625-0.019531 0.10156-0.03125 0.125-0.03125h2.25c0.14453 0 0.24219 0.011719 0.29688 0.03125 0.09375 0.023438 0.16406 0.085938 0.21875 0.1875 0.03125 0.0625 0.046875 0.13281 0.046875 0.20312 0 0.0625-0.007813 0.11719-0.015625 0.15625-0.03125 0.09375-0.09375 0.17188-0.1875 0.23438-0.054688 0.023438-0.17188 0.03125-0.35938 0.03125h-0.64062v2.1406l0.14062-0.10938 0.21875-0.20312 0.75-0.6875 0.85938-0.75 0.40625-0.39062h-0.34375c-0.085938 0-0.15234-0.023438-0.20312-0.078125-0.10547-0.070313-0.15625-0.1875-0.15625-0.34375 0-0.09375 0.015625-0.16016 0.046875-0.20312 0.039062-0.10156 0.10938-0.16406 0.20312-0.1875 0.039063-0.019531 0.13281-0.03125 0.28125-0.03125h1.875c0.09375 0 0.16406 0.007812 0.21875 0.015625 0.14453 0.023437 0.23828 0.10938 0.28125 0.26562 0.007813 0.03125 0.015625 0.085938 0.015625 0.15625 0 0.125-0.027344 0.21875-0.078125 0.28125l-0.078125 0.0625c-0.0625 0.042969-0.1875 0.0625-0.375 0.0625h-0.42188c-0.03125 0-0.054687 0.007812-0.0625 0.015625-0.011719 0-0.039063 0.023437-0.078125 0.0625l-0.125 0.125c-0.125 0.10547-0.30469 0.26172-0.53125 0.46875l-0.75 0.67188c-0.054688 0.054688-0.125 0.11719-0.21875 0.1875-0.054688 0.054688-0.089844 0.085938-0.10938 0.09375 0.1875 0.24219 0.32812 0.41797 0.42188 0.53125l0.85938 1.0625c0.16406 0.21094 0.34375 0.42969 0.53125 0.65625 0.09375 0.125 0.16406 0.22656 0.21875 0.29688 0.007813 0 0.023437 0.023437 0.046875 0.0625 0.03125 0.042969 0.050781 0.070313 0.0625 0.078125h0.09375 0.42188c0.070313 0 0.125 0.007812 0.15625 0.015625 0.10156 0.023437 0.1875 0.074219 0.25 0.15625 0 0.011719 0.003906 0.027344 0.015625 0.046875 0.007812 0.023438 0.019531 0.039062 0.03125 0.046875 0.007812 0.042969 0.015625 0.10156 0.015625 0.17188 0 0.0625-0.007813 0.10938-0.015625 0.14062-0.023438 0.11719-0.09375 0.20312-0.21875 0.26562-0.054688 0.023438-0.13672 0.03125-0.25 0.03125h-1.7188c-0.125 0-0.21484-0.015625-0.26562-0.046875-0.0625-0.03125-0.10547-0.0625-0.125-0.09375-0.0625-0.0625-0.09375-0.15625-0.09375-0.28125 0-0.070313 0.003906-0.125 0.015625-0.15625 0.03125-0.10156 0.097656-0.1875 0.20312-0.25 0.050781-0.03125 0.14062-0.046875 0.26562-0.046875h0.21875l-0.17188-0.20312-0.3125-0.39062-0.78125-0.98438-0.32812-0.42188-0.09375-0.10938-0.03125-0.046875-0.046875 0.03125-0.078125 0.078125-0.35938 0.3125-0.46875 0.4375-0.15625 0.125-0.078125 0.078125v1.0938h0.65625c0.17578 0 0.30469 0.03125 0.39062 0.09375 0.10156 0.09375 0.15625 0.21094 0.15625 0.34375 0 0.0625-0.015625 0.13672-0.046875 0.21875-0.054688 0.085938-0.125 0.14844-0.21875 0.1875-0.042969 0.023438-0.085938 0.03125-0.125 0.03125h-2.2344c-0.13672 0-0.23438-0.0078125-0.29688-0.03125-0.10547-0.039062-0.17969-0.10156-0.21875-0.1875-0.03125-0.082031-0.046875-0.15625-0.046875-0.21875s0.003906-0.10938 0.015625-0.14062c0.03125-0.09375 0.09375-0.17188 0.1875-0.23438 0.050781-0.039062 0.17188-0.0625 0.35938-0.0625h0.625z"/>
|
|
72
|
+
</symbol>
|
|
73
|
+
<symbol id="fc" overflow="visible">
|
|
74
|
+
<path d="m0.875-9.625h9.4219l0.03125 0.40625 0.0625 0.57812 0.14062 1.5625 0.03125 0.51562 0.03125 0.34375h-0.65625c-0.011719-0.11328-0.03125-0.30469-0.0625-0.57812-0.03125-0.35156-0.09375-0.67578-0.1875-0.96875-0.09375-0.28125-0.23438-0.50781-0.42188-0.6875-0.3125-0.28906-0.8125-0.45703-1.5-0.5h-1.1875v8.2812h2.1406v0.67188l-0.59375-0.015625-0.9375-0.03125h-2.7812l-0.46875 0.015625h-0.29688l-0.35938 0.015625h-0.23438l-0.59375 0.015625v-0.67188h2.1406v-8.2812h-1.1875c-0.67969 0.042969-1.1797 0.21094-1.5 0.5-0.16797 0.15625-0.30469 0.38672-0.40625 0.6875-0.10547 0.28125-0.17188 0.60547-0.20312 0.96875-0.03125 0.27344-0.046875 0.46484-0.046875 0.57812h-0.67188l0.03125-0.34375 0.03125-0.51562 0.14062-1.5625 0.0625-0.57812z"/>
|
|
75
|
+
</symbol>
|
|
76
|
+
<symbol id="fb" overflow="visible">
|
|
77
|
+
<path d="m2.2188-3.0469c0 0.16797 0.003906 0.29297 0.015625 0.375 0.019531 0.57422 0.13281 1.0273 0.34375 1.3594 0.070313 0.11719 0.13281 0.19922 0.1875 0.25 0.082031 0.09375 0.17969 0.17969 0.29688 0.25 0.34375 0.23047 0.77344 0.33984 1.2969 0.32812 0.375-0.03125 0.71875-0.11719 1.0312-0.26562 0.3125-0.16406 0.55078-0.38281 0.71875-0.65625 0.050781-0.070312 0.09375-0.15625 0.125-0.25l0.078125-0.15625c0.050781-0.0625 0.13281-0.09375 0.25-0.09375 0.070312 0 0.12891 0.007812 0.17188 0.015625 0.10156 0.03125 0.16406 0.10547 0.1875 0.21875 0 0.074219-0.015625 0.13672-0.046875 0.1875-0.054688 0.125-0.10938 0.23438-0.17188 0.32812-0.27344 0.46094-0.6875 0.79297-1.25 1-0.48047 0.17578-0.99219 0.25-1.5312 0.21875-0.21094 0-0.44531-0.023438-0.70312-0.0625-0.55469-0.082031-1.043-0.26953-1.4688-0.5625-0.19922-0.13281-0.37109-0.28516-0.51562-0.45312-0.13672-0.14453-0.23047-0.25781-0.28125-0.34375-0.27344-0.41406-0.4375-0.87891-0.5-1.3906-0.0625-0.51953-0.011719-1.0156 0.15625-1.4844 0.15625-0.5 0.41016-0.90625 0.76562-1.2188 0.19531-0.1875 0.39844-0.33203 0.60938-0.4375 0.60156-0.33203 1.3125-0.48438 2.125-0.45312 0.53125 0.042969 0.97656 0.14062 1.3438 0.29688 0.26953 0.125 0.48438 0.27344 0.64062 0.4375 0.41406 0.375 0.67578 0.92188 0.78125 1.6406 0.03125 0.19922 0.046875 0.39844 0.046875 0.59375 0 0.13672-0.039063 0.22656-0.10938 0.26562-0.042969 0.042969-0.125 0.0625-0.25 0.0625zm0-0.46875h3.375c0-0.44531-0.058594-0.83594-0.17188-1.1719-0.10547-0.25781-0.21875-0.46875-0.34375-0.625-0.19922-0.23828-0.46875-0.39453-0.8125-0.46875-0.33594-0.082031-0.65234-0.0625-0.95312 0.0625-0.25 0.09375-0.46484 0.25-0.64062 0.46875-0.21875 0.27344-0.35938 0.69922-0.42188 1.2812-0.011719 0.054688-0.015625 0.13281-0.015625 0.23438 0 0.10547-0.007813 0.17969-0.015625 0.21875z"/>
|
|
78
|
+
</symbol>
|
|
79
|
+
<symbol id="aa" overflow="visible">
|
|
80
|
+
<path d="m0.46875-6.2344h8v0.51562h-0.21875-0.23438c-0.11719 0-0.20312 0.007812-0.26562 0.015625-0.125 0-0.20312 0.027344-0.23438 0.078125-0.011719 0.011719-0.015625 0.042969-0.015625 0.09375v4.8281c0 0.0625 0.003906 0.09375 0.015625 0.09375 0.019531 0.03125 0.097656 0.058594 0.23438 0.078125h0.125c0.0625 0 0.10938 0.007812 0.14062 0.015625h0.45312v0.51562l-0.34375-0.015625-0.53125-0.03125h-1.4844l-0.34375 0.015625-0.48438 0.015625-0.35938 0.015625v-0.51562h0.40625 0.125c0.0625-0.007813 0.10938-0.015625 0.14062-0.015625 0.070312 0 0.12891-0.003906 0.17188-0.015625 0.050781 0 0.085937-0.015625 0.10938-0.046875 0.019531-0.007812 0.03125-0.039062 0.03125-0.09375v-4.8281c0-0.050781-0.011719-0.09375-0.03125-0.125-0.023438-0.050781-0.09375-0.078125-0.21875-0.078125h-0.0625-0.625-1.2656-0.375-0.0625c-0.11719 0-0.1875 0.023438-0.21875 0.0625-0.011719 0.03125-0.015625 0.074219-0.015625 0.125v4.8281 0.09375c0.019531 0.023437 0.10156 0.046875 0.25 0.078125h0.125c0.0625 0 0.10938 0.007812 0.14062 0.015625h0.45312v0.51562l-0.34375-0.015625-0.5-0.015625-0.32812-0.015625h-1.4844l-0.53125 0.03125-0.34375 0.015625v-0.51562h0.45312c0.03125-0.007813 0.070313-0.015625 0.125-0.015625h0.125c0.14453-0.03125 0.22266-0.054688 0.23438-0.078125 0.007812 0 0.015625-0.03125 0.015625-0.09375v-4.8281c0-0.050781-0.007813-0.082031-0.015625-0.09375-0.023438-0.050781-0.10156-0.078125-0.23438-0.078125-0.054687-0.007813-0.13672-0.015625-0.25-0.015625h-0.23438-0.21875z"/>
|
|
81
|
+
</symbol>
|
|
82
|
+
<symbol id="fa" overflow="visible">
|
|
83
|
+
<path d="m2-6.2188h6.4688v0.5h-0.45312-0.14062c-0.054688 0-0.09375 0.007812-0.125 0.015625-0.13672 0.03125-0.21484 0.0625-0.23438 0.09375-0.011719 0.011719-0.015625 0.039063-0.015625 0.078125v4.8281c0 0.0625 0.003906 0.10156 0.015625 0.10938 0.03125 0.03125 0.10938 0.058594 0.23438 0.078125h0.71875v0.51562l-0.34375-0.015625-0.48438-0.015625h-1.8125l-0.54688 0.015625-0.35938 0.015625v-0.51562h0.67188 0.0625c0.039062-0.007813 0.078125-0.015625 0.10938-0.015625l0.10938-0.0625c0.019531-0.007812 0.03125-0.039062 0.03125-0.09375v-4.7969c0-0.050781-0.007812-0.085937-0.015625-0.10938 0-0.039062-0.023437-0.070312-0.0625-0.09375-0.023437-0.007812-0.054687-0.015625-0.09375-0.015625-0.042969-0.007813-0.070313-0.015625-0.078125-0.015625h-1.4375c-0.16797 0-0.28906 0.007812-0.35938 0.015625-0.074219 0-0.125 0.027344-0.15625 0.078125v0.125 0.71875l-0.015625 0.015625v0.32812c-0.023438 0.90625-0.042969 1.4492-0.0625 1.625-0.03125 0.53125-0.09375 1.0156-0.1875 1.4531-0.11719 0.51172-0.30469 0.88281-0.5625 1.1094-0.0625 0.054688-0.15625 0.11719-0.28125 0.1875-0.17969 0.09375-0.41406 0.14844-0.70312 0.17188-0.125 0.007813-0.24609 0.007813-0.35938 0-0.32422-0.023438-0.60547-0.125-0.84375-0.3125-0.074219-0.082031-0.125-0.14453-0.15625-0.1875-0.054688-0.070313-0.089844-0.13281-0.10938-0.1875-0.09375-0.17578-0.13281-0.38281-0.10938-0.625 0.019531-0.25 0.11719-0.44141 0.29688-0.57812 0.039063-0.03125 0.097656-0.0625 0.17188-0.09375 0.09375-0.050781 0.1875-0.078125 0.28125-0.078125s0.19531 0.011719 0.3125 0.03125c0.082031 0.03125 0.16406 0.074219 0.25 0.125 0.13281 0.10547 0.22266 0.25 0.26562 0.4375 0.050781 0.17969 0.050781 0.34375 0 0.5-0.042969 0.09375-0.10547 0.19531-0.1875 0.29688 0.25 0 0.4375-0.03125 0.5625-0.09375s0.23828-0.17969 0.34375-0.35938c0.050781-0.10156 0.11719-0.30469 0.20312-0.60938 0.039062-0.17578 0.078125-0.45312 0.10938-0.82812 0.03125-0.21875 0.046875-0.4375 0.046875-0.65625 0.03125-0.40625 0.046875-0.8125 0.046875-1.2188v-0.0625c0.007813-0.039063 0.015625-0.070313 0.015625-0.09375v-1.0312c0-0.0625-0.007812-0.097656-0.015625-0.10938-0.023437-0.019531-0.10547-0.046875-0.25-0.078125-0.03125-0.007813-0.078125-0.015625-0.14062-0.015625h-0.14062-0.48438z"/>
|
|
84
|
+
</symbol>
|
|
85
|
+
<symbol id="m" overflow="visible">
|
|
86
|
+
<path d="m3.8438-6.3438h0.20312c0.125 0 0.29688 0.011719 0.51562 0.03125 1.0391 0.11719 1.832 0.52734 2.375 1.2344 0.39453 0.51172 0.60938 1.1328 0.64062 1.8594 0.019531 0.60547-0.10156 1.1641-0.35938 1.6719-0.21094 0.38672-0.48438 0.70312-0.82812 0.95312-0.44922 0.33594-1.0312 0.54688-1.75 0.64062-0.30469 0.019531-0.57812 0.023438-0.82812 0.015625-0.33594-0.011719-0.625-0.042969-0.875-0.09375-0.60547-0.125-1.1328-0.38281-1.5781-0.78125-0.39844-0.35156-0.67188-0.83203-0.82812-1.4375-0.085938-0.30078-0.11719-0.625-0.09375-0.96875 0.039062-0.95703 0.37891-1.7109 1.0156-2.2656 0.45703-0.40625 1.0312-0.66406 1.7188-0.78125 0.09375-0.019531 0.25391-0.039063 0.48438-0.0625 0.082031 0 0.14453-0.003906 0.1875-0.015625zm-1.625 3.5469c0.007812 0.023437 0.015625 0.054687 0.015625 0.09375v0.078125 0.21875c0.039063 0.57422 0.16016 0.99609 0.35938 1.2656 0.16406 0.25 0.39844 0.42969 0.70312 0.53125 0.11328 0.042969 0.25 0.074219 0.40625 0.09375 0.33203 0.054687 0.66016 0.027344 0.98438-0.078125 0.32031-0.10156 0.57031-0.28516 0.75-0.54688 0.1875-0.25 0.29688-0.63281 0.32812-1.1562 0.019531-0.44531 0.03125-0.78125 0.03125-1 0-0.38281-0.023437-0.74219-0.0625-1.0781-0.0625-0.41406-0.19922-0.72656-0.40625-0.9375-0.1875-0.20703-0.44922-0.35938-0.78125-0.45312-0.73047-0.16406-1.3281-0.039063-1.7969 0.375-0.30469 0.28125-0.47656 0.79688-0.51562 1.5469-0.011719 0.09375-0.015625 0.23047-0.015625 0.40625z"/>
|
|
87
|
+
</symbol>
|
|
88
|
+
<symbol id="ez" overflow="visible">
|
|
89
|
+
<path d="m0.48438-6.2344h3.2188 0.73438c0.22656-0.007813 0.47266 0.007813 0.73438 0.046875 0.26953 0.03125 0.50781 0.085938 0.71875 0.15625 0.63281 0.21094 1.0234 0.52734 1.1719 0.95312 0.039062 0.125 0.066406 0.22656 0.078125 0.29688 0 0.13672-0.011719 0.23438-0.03125 0.29688-0.042969 0.13672-0.09375 0.23438-0.15625 0.29688-0.15625 0.24219-0.4375 0.44531-0.84375 0.60938-0.10547 0.054687-0.19531 0.085937-0.26562 0.09375-0.042969 0.023437-0.074219 0.03125-0.09375 0.03125-0.011719 0.011719-0.023438 0.015625-0.03125 0.015625h-0.03125l0.17188 0.046875c0.13281 0.042969 0.27344 0.10156 0.42188 0.17188 0.34375 0.13672 0.61719 0.30859 0.82812 0.51562 0.20703 0.21094 0.32812 0.42969 0.35938 0.65625 0.03125 0.14844 0.03125 0.29297 0 0.4375 0 0.125-0.039062 0.25781-0.10938 0.39062-0.074219 0.16797-0.16797 0.32031-0.28125 0.45312-0.15625 0.1875-0.36719 0.33984-0.625 0.45312-0.21875 0.11719-0.46875 0.19922-0.75 0.25-0.27344 0.054688-0.53125 0.070312-0.78125 0.0625h-0.78125-3.6562v-0.51562h0.46875c0.03125-0.007813 0.070313-0.015625 0.125-0.015625h0.125c0.13281-0.03125 0.21094-0.054688 0.23438-0.078125 0.007812 0 0.015625-0.03125 0.015625-0.09375v-4.8281c0-0.050781-0.007813-0.082031-0.015625-0.09375-0.023438-0.050781-0.10156-0.078125-0.23438-0.078125-0.054687-0.007813-0.13672-0.015625-0.25-0.015625h-0.23438-0.23438zm2.5625 2.5781h0.76562c0.23828 0 0.42188-0.007812 0.54688-0.03125 0.40625-0.050781 0.70703-0.19141 0.90625-0.42188 0.21875-0.23828 0.28125-0.53516 0.1875-0.89062-0.042969-0.20703-0.13281-0.35938-0.26562-0.45312-0.14844-0.14453-0.32812-0.23438-0.54688-0.26562h-0.3125-0.39062-0.64062c-0.11719 0-0.1875 0.023438-0.21875 0.0625-0.023437 0.03125-0.03125 0.089844-0.03125 0.17188zm0 0.46875v2.4062c0 0.11719 0.007813 0.18359 0.03125 0.20312 0.007813 0.011719 0.082031 0.03125 0.21875 0.0625h1.3281c0.28125-0.03125 0.51562-0.125 0.70312-0.28125 0.050781-0.039063 0.11328-0.10938 0.1875-0.20312 0.09375-0.11328 0.16016-0.25781 0.20312-0.4375 0.03125-0.10156 0.046875-0.20312 0.046875-0.29688 0.0625-0.57031-0.089844-0.98828-0.45312-1.25-0.074219-0.050781-0.13281-0.085937-0.17188-0.10938-0.085937-0.039062-0.16797-0.066406-0.25-0.078125-0.074219-0.007813-0.18359-0.015625-0.32812-0.015625z"/>
|
|
90
|
+
</symbol>
|
|
91
|
+
<symbol id="ey" overflow="visible">
|
|
92
|
+
<path d="m5.5781-7.7344c-0.14844-0.09375-0.23047-0.14453-0.25-0.15625-0.13672-0.13281-0.23047-0.28906-0.28125-0.46875-0.0625-0.22656-0.046875-0.45312 0.046875-0.67188 0.10156-0.22656 0.26562-0.39844 0.48438-0.51562 0.13281-0.0625 0.29688-0.09375 0.48438-0.09375 0.11328 0 0.22656 0.023437 0.34375 0.0625 0.09375 0.042969 0.19531 0.10938 0.3125 0.20312 0.070312 0.054688 0.12891 0.12109 0.17188 0.20312 0.25 0.41797 0.21875 0.85938-0.09375 1.3281-0.15625 0.21875-0.38281 0.41797-0.67188 0.59375-0.24219 0.125-0.54688 0.22656-0.92188 0.29688-0.58594 0.10547-1.1797 0.078125-1.7812-0.078125-0.35547-0.10156-0.64062-0.23438-0.85938-0.39062-0.25-0.17578-0.42969-0.375-0.53125-0.59375-0.074219-0.16406-0.12109-0.34375-0.14062-0.53125-0.023437-0.25 0.03125-0.45703 0.15625-0.625 0.10156-0.17578 0.25-0.30469 0.4375-0.39062 0.1875-0.082031 0.38281-0.10156 0.59375-0.0625 0.20703 0.042969 0.38281 0.13281 0.53125 0.26562 0.14453 0.13672 0.23828 0.30859 0.28125 0.51562 0.039063 0.19922 0.023437 0.39062-0.046875 0.57812-0.0625 0.16797-0.14844 0.29297-0.25 0.375-0.023438 0.011719-0.10156 0.0625-0.23438 0.15625 0.125 0.042969 0.31641 0.074219 0.57812 0.09375 0.33203 0.023437 0.58203 0.027344 0.75 0.015625 0.4375-0.019531 0.73438-0.054688 0.89062-0.10938zm-5.1094 1.5 0.34375 0.015625 0.46875 0.015625 0.34375 0.015625 1.4844-0.015625 0.54688-0.015625 0.34375-0.015625v0.51562h-0.40625-0.25c-0.03125 0-0.054688 0.007812-0.0625 0.015625-0.11719 0-0.19531 0.023437-0.23438 0.0625-0.011719 0.03125-0.015625 0.0625-0.015625 0.09375v3.9531c0.007812-0.050781 0.035156-0.085938 0.078125-0.10938 0.03125-0.050781 0.082031-0.125 0.15625-0.21875 0.050781-0.070313 0.19531-0.28516 0.4375-0.64062l1.5-2.0781 0.53125-0.71875c0.0625-0.070313 0.10156-0.13281 0.125-0.1875 0.03125-0.03125 0.039063-0.050781 0.03125-0.0625-0.023437-0.0625-0.10156-0.09375-0.23438-0.09375-0.0625-0.007813-0.15234-0.015625-0.26562-0.015625h-0.23438-0.23438v-0.51562l0.35938 0.015625 0.54688 0.015625 1.4844 0.015625 0.32812-0.015625 0.48438-0.015625 0.34375-0.015625v0.51562h-0.21875-0.23438c-0.11719 0-0.20312 0.007812-0.26562 0.015625-0.125 0-0.20312 0.027344-0.23438 0.078125-0.011719 0.011719-0.015625 0.042969-0.015625 0.09375v4.8281c0 0.0625 0.003906 0.09375 0.015625 0.09375 0.019531 0.03125 0.097656 0.058594 0.23438 0.078125h0.125c0.0625 0 0.10938 0.007812 0.14062 0.015625h0.45312v0.51562l-0.34375-0.015625-0.53125-0.03125h-1.4844l-0.34375 0.015625-0.48438 0.015625-0.35938 0.015625v-0.51562h0.40625 0.125c0.0625-0.007813 0.10938-0.015625 0.14062-0.015625h0.0625c0.10156 0 0.17578-0.023438 0.21875-0.078125 0.019531-0.007813 0.03125-0.039063 0.03125-0.09375v-3.9375h-0.015625c-0.011719 0.054687-0.03125 0.09375-0.0625 0.125-0.023437 0.023437-0.046875 0.054687-0.078125 0.09375-0.03125 0.042969-0.058594 0.078125-0.078125 0.10938l-0.46875 0.625-0.9375 1.3125c-0.10547 0.16797-0.28125 0.41797-0.53125 0.75l-0.54688 0.75c-0.011719 0.011719-0.03125 0.039062-0.0625 0.078125-0.023438 0.042969-0.042969 0.074219-0.0625 0.09375-0.023438 0.054687-0.03125 0.085937-0.03125 0.09375 0.007812 0.011719 0.035156 0.027344 0.078125 0.046875 0.050781 0.023438 0.10938 0.03125 0.17188 0.03125h0.125c0.0625 0 0.10938 0.007812 0.14062 0.015625h0.45312v0.51562l-0.34375-0.015625-0.5-0.015625-0.32812-0.015625h-1.4844l-0.53125 0.03125-0.34375 0.015625v-0.51562h0.45312c0.03125-0.007813 0.070313-0.015625 0.125-0.015625h0.125c0.14453-0.03125 0.22266-0.054688 0.23438-0.078125 0.007812 0 0.015625-0.03125 0.015625-0.09375v-4.8281c0-0.050781-0.007813-0.082031-0.015625-0.09375-0.023438-0.050781-0.10156-0.078125-0.23438-0.078125-0.054687-0.007813-0.13672-0.015625-0.25-0.015625h-0.23438-0.21875z"/>
|
|
93
|
+
</symbol>
|
|
94
|
+
<symbol id="ex" overflow="visible">
|
|
95
|
+
<path d="m0.5625-6.2344h6.4688l0.015625 0.21875 0.015625 0.51562 0.09375 1.2344 0.03125 0.35938 0.015625 0.14062h-0.67188c0-0.082031-0.011719-0.19141-0.03125-0.32812-0.023438-0.25-0.058594-0.47656-0.10938-0.6875-0.023437-0.1875-0.089844-0.35938-0.20312-0.51562-0.1875-0.20703-0.46875-0.34375-0.84375-0.40625-0.0625-0.007813-0.23438-0.015625-0.51562-0.015625-0.11719 0-0.18359 0.023438-0.20312 0.0625-0.023438 0.023438-0.03125 0.058594-0.03125 0.10938v4.8438c0 0.054687 0.003906 0.085937 0.015625 0.09375 0.019531 0.023437 0.054687 0.042969 0.10938 0.0625 0.10156 0 0.17578 0.007813 0.21875 0.015625h0.20312c0.082031 0 0.14062 0.007812 0.17188 0.015625h0.65625v0.51562l-0.42188-0.015625-0.60938-0.015625-0.32812-0.015625h-1.9062l-0.51562 0.03125h-0.14062l-0.42188 0.015625v-0.51562h0.64062c0.039063-0.007813 0.10156-0.015625 0.1875-0.015625h0.1875c0.050781-0.007812 0.12891-0.015625 0.23438-0.015625 0.050781-0.019531 0.085938-0.039063 0.10938-0.0625 0.007813-0.007813 0.015625-0.039063 0.015625-0.09375v-4.8438c0-0.050781-0.011719-0.085937-0.03125-0.10938-0.042969-0.039062-0.10938-0.0625-0.20312-0.0625-0.29297 0-0.46875 0.007812-0.53125 0.015625-0.36719 0.0625-0.64062 0.19922-0.82812 0.40625-0.10547 0.14844-0.18359 0.32031-0.23438 0.51562-0.042969 0.23047-0.070313 0.46094-0.078125 0.6875-0.023438 0.13672-0.03125 0.24609-0.03125 0.32812h-0.67188l0.015625-0.14062 0.03125-0.35938 0.078125-1.2344 0.03125-0.51562z"/>
|
|
96
|
+
</symbol>
|
|
97
|
+
<symbol id="ew" overflow="visible">
|
|
98
|
+
<path d="m0.46875-6.2344 0.32812 0.015625 0.48438 0.015625 0.32812 0.015625 1.4375-0.015625 0.53125-0.015625 0.34375-0.015625v0.51562h-0.39062-0.25c-0.042969 0-0.10938 0.011719-0.20312 0.03125-0.03125 0-0.0625 0.015625-0.09375 0.046875-0.023437 0.023437-0.03125 0.078125-0.03125 0.17188v2.1875c0.050781-0.03125 0.34375-0.23438 0.875-0.60938l1.5938-1.1406c0.16406-0.10156 0.28906-0.19141 0.375-0.26562 0.09375-0.050781 0.16016-0.10156 0.20312-0.15625 0.019531-0.019531 0.03125-0.039063 0.03125-0.0625 0.007812-0.007813 0.015625-0.023437 0.015625-0.046875 0-0.10156-0.089844-0.15625-0.26562-0.15625v-0.51562l0.3125 0.015625 0.42188 0.015625 0.28125 0.015625h0.51562l0.5-0.015625 0.29688-0.015625 0.1875-0.015625v0.51562c-0.34375 0-0.65625 0.058594-0.9375 0.17188-0.125 0.0625-0.26172 0.14844-0.40625 0.25l-0.35938 0.25-1.0938 0.79688c-0.03125 0.023438-0.089844 0.058594-0.17188 0.10938-0.074219 0.054687-0.125 0.09375-0.15625 0.125-0.023437 0.023437-0.058594 0.046875-0.10938 0.078125-0.042969 0.023438-0.078125 0.042969-0.10938 0.0625l0.09375 0.078125c0.019531 0.042969 0.066406 0.10156 0.14062 0.17188 0.21875 0.25 0.36719 0.42188 0.45312 0.51562l1.4062 1.5781 0.53125 0.59375c0.16406 0.1875 0.28516 0.29688 0.35938 0.32812 0.0625 0.03125 0.16016 0.058594 0.29688 0.078125 0.09375 0.011719 0.23828 0.015625 0.4375 0.015625v0.51562l-0.28125-0.015625-0.42188-0.03125h-1.3125l-0.35938 0.015625-0.46875 0.015625-0.375 0.015625v-0.51562c0.16406 0 0.28125-0.015625 0.34375-0.046875 0.0625-0.019531 0.097656-0.050781 0.10938-0.09375 0.007812-0.039062-0.015625-0.10156-0.078125-0.1875-0.011719-0.007812-0.10547-0.11328-0.28125-0.3125l-0.64062-0.71875c-0.24219-0.25781-0.41406-0.45312-0.51562-0.57812-0.1875-0.20703-0.32422-0.36328-0.40625-0.46875l-0.10938-0.10938c0-0.019531-0.011719-0.03125-0.03125-0.03125l-0.03125 0.015625-0.078125 0.046875-0.25 0.17188c-0.03125 0.03125-0.09375 0.078125-0.1875 0.14062-0.085937 0.054688-0.14844 0.09375-0.1875 0.125l-0.10938 0.078125c-0.011719 0-0.027344 0.011719-0.046875 0.03125v1.7656c0 0.042969 0.003906 0.070312 0.015625 0.078125 0.039062 0.054687 0.11328 0.078125 0.21875 0.078125h0.078125c0.019531 0 0.054687 0.007812 0.10938 0.015625h0.14062 0.40625v0.51562l-0.34375-0.015625-0.46875-0.015625-0.34375-0.015625h-1.4375l-0.53125 0.03125-0.32812 0.015625v-0.51562h0.45312c0.03125-0.007813 0.070313-0.015625 0.125-0.015625h0.125c0.14453-0.03125 0.22266-0.054688 0.23438-0.078125 0.007812 0 0.015625-0.03125 0.015625-0.09375v-4.8281c0-0.050781-0.007813-0.082031-0.015625-0.09375-0.023438-0.050781-0.10156-0.078125-0.23438-0.078125-0.054687-0.007813-0.13672-0.015625-0.25-0.015625h-0.23438-0.21875z"/>
|
|
99
|
+
</symbol>
|
|
100
|
+
<symbol id="el" overflow="visible">
|
|
101
|
+
<path d="m0.5-9.7344h8.5156v0.92188h-3.625v8.8125h-1.2656v-8.8125h-3.625z"/>
|
|
102
|
+
</symbol>
|
|
103
|
+
<symbol id="ek" overflow="visible">
|
|
104
|
+
<path d="m5.6562-1.4844c0 0.03125 0.003906 0.074219 0.015625 0.125 0.007813 0.054687 0.015625 0.09375 0.015625 0.125 0.007812 0.054687 0.015625 0.125 0.015625 0.21875 0.007813 0.085937 0.015625 0.14844 0.015625 0.1875v0.09375c0.007812 0.03125 0.015625 0.058594 0.015625 0.078125v0.078125c0 0.011719-0.007813 0.015625-0.015625 0.015625-0.011719 0.023438-0.023438 0.03125-0.03125 0.03125-0.023438 0.011719-0.058594 0.03125-0.10938 0.0625-0.1875 0.125-0.35547 0.21484-0.5 0.26562-0.44922 0.20703-0.92969 0.32031-1.4375 0.34375-0.32422 0.019531-0.625-0.011719-0.90625-0.09375-0.23047-0.070312-0.42188-0.14844-0.57812-0.23438-0.875-0.47656-1.418-1.25-1.625-2.3125-0.042969-0.25-0.0625-0.42969-0.0625-0.54688 0-0.33203 0.023438-0.61328 0.078125-0.84375 0.125-0.66406 0.41016-1.2344 0.85938-1.7031 0.48828-0.53906 1.0859-0.82812 1.7969-0.85938 0.23828-0.007813 0.50781 0.023437 0.8125 0.09375 0.1875 0.0625 0.35156 0.14062 0.5 0.23438 0.17578 0.09375 0.34375 0.22656 0.5 0.39062 0.13281 0.16797 0.26562 0.35938 0.39062 0.57812 0.25781 0.52344 0.39062 1.2148 0.39062 2.0781h-4.3438c0 0.30469 0.0625 0.61719 0.1875 0.9375 0.082031 0.25 0.21094 0.48047 0.39062 0.6875 0.13281 0.16797 0.27344 0.30469 0.42188 0.40625 0.20703 0.14844 0.42969 0.25 0.67188 0.3125 0.15625 0.03125 0.35156 0.039063 0.59375 0.015625 0.39453-0.019531 0.76953-0.11328 1.125-0.28125 0.19531-0.09375 0.375-0.1875 0.53125-0.28125 0.050781-0.03125 0.11328-0.070312 0.1875-0.125 0.007812-0.007812 0.023438-0.019531 0.046875-0.03125l0.046875-0.046875zm-4.125-2.375h3.4688c0-0.082031-0.03125-0.20703-0.09375-0.375-0.10547-0.41406-0.28125-0.73438-0.53125-0.95312-0.24219-0.21875-0.52344-0.34766-0.84375-0.39062-0.3125-0.050781-0.60938-0.007813-0.89062 0.125-0.16797 0.10547-0.32031 0.21875-0.45312 0.34375-0.19922 0.19922-0.37109 0.46094-0.51562 0.78125-0.042969 0.09375-0.078125 0.20312-0.10938 0.32812 0 0.023438-0.007812 0.046875-0.015625 0.078125 0 0.03125-0.007813 0.054687-0.015625 0.0625z"/>
|
|
105
|
+
</symbol>
|
|
106
|
+
<symbol id="y" overflow="visible">
|
|
107
|
+
<path d="m1.1406-6.2344h4.9375v6.2344h-1.0469v-5.3594h-2.8281v5.3594h-1.0625z"/>
|
|
108
|
+
</symbol>
|
|
109
|
+
<symbol id="ej" overflow="visible">
|
|
110
|
+
<path d="m2.2344-6.2344h4v6.2344h-1.0469v-5.3594h-2c0 0.54297-0.023438 1.1406-0.0625 1.7969-0.054688 0.73047-0.15625 1.3555-0.3125 1.875-0.21875 0.74219-0.55469 1.2344-1 1.4844-0.17969 0.09375-0.40234 0.15625-0.67188 0.1875-0.085937 0.011719-0.21094 0.015625-0.375 0.015625h-0.5v-0.90625h0.70312c0.15625-0.019531 0.28125-0.0625 0.375-0.125 0.14453-0.09375 0.28125-0.25391 0.40625-0.48438 0.11328-0.22656 0.21094-0.53906 0.29688-0.9375 0.070313-0.44531 0.12891-1.0156 0.17188-1.7031 0.007812-0.45703 0.015625-1.1484 0.015625-2.0781z"/>
|
|
111
|
+
</symbol>
|
|
112
|
+
<symbol id="l" overflow="visible">
|
|
113
|
+
<path d="m3.375-6.4531h0.25c0.22656 0.023437 0.42969 0.054687 0.60938 0.09375 0.125 0.042969 0.26953 0.09375 0.4375 0.15625 0.45703 0.21094 0.84375 0.51562 1.1562 0.92188s0.52344 0.85938 0.64062 1.3594c0.082031 0.32422 0.11328 0.67188 0.09375 1.0469-0.0625 0.90625-0.40625 1.6484-1.0312 2.2188-0.23047 0.21094-0.5 0.38672-0.8125 0.53125-0.26172 0.125-0.54297 0.20703-0.84375 0.25-0.30469 0.039062-0.62109 0.03125-0.95312-0.03125-0.29297-0.054688-0.57031-0.14844-0.82812-0.29688-0.25-0.13281-0.46484-0.28516-0.64062-0.45312-0.1875-0.16406-0.35156-0.35938-0.48438-0.57812-0.59375-0.875-0.71875-1.8516-0.375-2.9375 0.13281-0.46875 0.36719-0.89062 0.70312-1.2656 0.33203-0.375 0.72266-0.64844 1.1719-0.82812 0.19531-0.082031 0.39062-0.13281 0.57812-0.15625h0.09375c0.050781-0.007813 0.085937-0.019531 0.10938-0.03125zm-1.8594 3.3438v0.09375c0 0.03125 0.003906 0.058594 0.015625 0.078125 0 0.0625 0.003906 0.16406 0.015625 0.29688 0.082031 0.46094 0.23438 0.83594 0.45312 1.125 0.15625 0.19922 0.32031 0.35938 0.5 0.48438 0.33203 0.21094 0.6875 0.30859 1.0625 0.29688 0.30078-0.007813 0.59375-0.10156 0.875-0.28125 0.15625-0.09375 0.3125-0.22266 0.46875-0.39062 0.34375-0.42578 0.53125-0.98438 0.5625-1.6719 0-0.26953-0.007812-0.47656-0.015625-0.625-0.054687-0.35156-0.16797-0.67969-0.34375-0.98438-0.16797-0.26953-0.37109-0.47656-0.60938-0.625-0.33594-0.20703-0.69531-0.30078-1.0781-0.28125-0.41797 0.011719-0.78906 0.14844-1.1094 0.40625-0.4375 0.36719-0.69922 0.89844-0.78125 1.5938-0.011719 0.085938-0.015625 0.19922-0.015625 0.34375z"/>
|
|
114
|
+
</symbol>
|
|
115
|
+
<symbol id="ei" overflow="visible">
|
|
116
|
+
<path d="m1.1406-6.2344h2.25c0.76953 0 1.2969 0.054687 1.5781 0.15625 0.23828 0.085937 0.42969 0.20312 0.57812 0.35938 0.20703 0.21094 0.33203 0.51562 0.375 0.92188 0.007813 0.042969 0.015625 0.12109 0.015625 0.23438-0.011719 0.13672-0.0625 0.28125-0.15625 0.4375-0.15625 0.21094-0.40625 0.39844-0.75 0.5625-0.09375 0.03125-0.16797 0.0625-0.21875 0.09375l-0.125 0.03125c0.007812 0.011719 0.03125 0.027344 0.0625 0.046875 0.039062 0.011719 0.066406 0.015625 0.078125 0.015625 0.0625 0.03125 0.14844 0.074219 0.26562 0.125 0.32031 0.14844 0.58203 0.3125 0.78125 0.5 0.11328 0.13672 0.19531 0.24219 0.25 0.3125 0.070312 0.13672 0.11328 0.26562 0.125 0.39062 0.007812 0.085937 0.003906 0.21094-0.015625 0.375-0.03125 0.4375-0.16797 0.78906-0.40625 1.0469-0.11719 0.11719-0.24219 0.21094-0.375 0.28125-0.375 0.23047-1.0078 0.34375-1.8906 0.34375h-2.4219zm1.0469 2.4062h0.6875c0.61328-0.007813 1.1133-0.09375 1.5-0.25 0.20703-0.070313 0.35938-0.14453 0.45312-0.21875 0.082031-0.0625 0.14062-0.14453 0.17188-0.25v-0.125c-0.03125-0.21875-0.14844-0.39062-0.34375-0.51562-0.09375-0.0625-0.21484-0.10156-0.35938-0.125-0.21875-0.0625-0.55469-0.09375-1-0.09375h-1.1094zm0 2.9531h1.0469c0.44531 0 0.73438-0.003906 0.85938-0.015625 0.39453-0.0625 0.69531-0.17969 0.90625-0.35938 0.007812-0.007812 0.054688-0.066406 0.14062-0.17188 0.16406-0.28906 0.1875-0.55469 0.0625-0.79688-0.085937-0.16406-0.23047-0.3125-0.4375-0.4375-0.35547-0.21875-0.77344-0.34375-1.25-0.375h-0.59375-0.73438z"/>
|
|
117
|
+
</symbol>
|
|
118
|
+
<symbol id="eh" overflow="visible">
|
|
119
|
+
<path d="m1.3906-9.1406h0.85938c0 0.25 0.082031 0.46875 0.25 0.65625 0.11328 0.125 0.25391 0.23438 0.42188 0.32812 0.17578 0.085938 0.42188 0.14062 0.73438 0.17188 0.35156 0.023437 0.67188-0.039063 0.95312-0.1875 0.36328-0.17578 0.57812-0.4375 0.64062-0.78125 0.019531-0.09375 0.03125-0.15625 0.03125-0.1875h0.84375c0 0.21875-0.039062 0.4375-0.10938 0.65625-0.0625 0.16797-0.16406 0.35156-0.29688 0.54688-0.15625 0.16797-0.28125 0.28906-0.375 0.35938-0.4375 0.34375-0.96094 0.52344-1.5625 0.53125-0.59375 0.011719-1.1172-0.14844-1.5625-0.48438-0.13672-0.11328-0.24609-0.21875-0.32812-0.3125-0.15625-0.17578-0.27734-0.36328-0.35938-0.5625-0.09375-0.26953-0.14062-0.51562-0.14062-0.73438zm-0.25 2.9062h1.0625v5.25l0.0625-0.125 0.125-0.26562 0.42188-0.84375 1.3281-2.6406 0.5-1 0.14062-0.26562 0.03125-0.0625 0.03125-0.03125 0.03125-0.015625h1.5v6.2344h-1.0625v-5.25l-0.0625 0.125-0.125 0.26562-0.42188 0.84375-1.3281 2.6406-0.5 1-0.125 0.26562-0.046875 0.0625-0.015625 0.03125-0.046875 0.015625h-1.5z"/>
|
|
120
|
+
</symbol>
|
|
121
|
+
<symbol id="eg" overflow="visible">
|
|
122
|
+
<path d="m0.34375-6.2344h5.7188v0.89062l-2.3125-0.015625v5.3594h-1.0938v-5.3594l-2.3125 0.015625z"/>
|
|
123
|
+
</symbol>
|
|
124
|
+
<symbol id="ef" overflow="visible">
|
|
125
|
+
<path d="m1.1406-6.2344h1.0156v2.9375l1.1094-1.125 0.64062-0.65625 0.28125-0.28125 0.59375-0.625 0.17188-0.15625 0.09375-0.078125 0.10938-0.015625h1.1406l-0.078125 0.09375-0.14062 0.14062-0.39062 0.40625-1.125 1.125-0.45312 0.46875-0.14062 0.125-0.03125 0.046875 0.03125 0.078125 0.125 0.1875 0.51562 0.70312 1.375 1.9688 0.42188 0.60938 0.20312 0.28125h-1.0469l-0.10938-0.015625-0.046875-0.0625-0.125-0.1875-0.4375-0.60938-1.0625-1.5156-0.32812-0.46875-0.10938-0.17188-0.078125-0.10938h-0.015625l-0.10938 0.10938-0.15625 0.17188-0.75 0.75-0.0625 0.078125-0.015625 0.0625v1.9688h-1.0156z"/>
|
|
126
|
+
</symbol>
|
|
127
|
+
<symbol id="de" overflow="visible">
|
|
128
|
+
<path d="m2.2188-10.031v13.062c0 0.30078-0.089844 0.45703-0.26562 0.46875-0.1875 0-0.28125-0.15625-0.28125-0.46875v-13.062c0-0.30078 0.09375-0.45703 0.28125-0.46875 0.17578 0 0.26562 0.15625 0.26562 0.46875z"/>
|
|
129
|
+
</symbol>
|
|
130
|
+
<symbol id="cl" overflow="visible">
|
|
131
|
+
<path d="m5.2344-8.4844-1.875 7.4688c-0.042969 0.125-0.0625 0.23047-0.0625 0.3125 0 0.125 0.066406 0.20312 0.20312 0.23438h0.03125 0.125c0.1875 0.023438 0.38281 0.03125 0.59375 0.03125 0.25781 0 0.39453 0.03125 0.40625 0.09375 0.007812 0.023438 0.015625 0.046875 0.015625 0.078125 0 0.17969-0.09375 0.26562-0.28125 0.26562l-1.8594-0.046875h-0.015625l-1.8125 0.046875h-0.015625c-0.14844 0-0.21875-0.050781-0.21875-0.15625 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.039063-0.007813 0.125-0.015625 0.25-0.015625 0.625 0 1-0.078125 1.125-0.23438 0.039063-0.0625 0.09375-0.20312 0.15625-0.42188l1.8906-7.5469c0.007812-0.082031 0.015625-0.15625 0.015625-0.21875 0-0.16406-0.19531-0.25391-0.57812-0.26562h-0.375c-0.25 0-0.38281-0.050781-0.39062-0.15625 0-0.1875 0.085937-0.28125 0.26562-0.28125l1.8594 0.046875h0.015625l1.8281-0.046875h0.015625c0.13281 0 0.20312 0.058594 0.20312 0.17188 0 0.15625-0.0625 0.24219-0.1875 0.25-0.054687 0.011719-0.13672 0.015625-0.25 0.015625-0.625 0-1 0.074219-1.125 0.21875-0.054687 0.0625-0.10547 0.20312-0.15625 0.42188z"/>
|
|
132
|
+
</symbol>
|
|
133
|
+
<symbol id="ca" overflow="visible">
|
|
134
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
135
|
+
</symbol>
|
|
136
|
+
<symbol id="nd" overflow="visible">
|
|
137
|
+
<path d="m2.2188-10.031v13.062c0 0.30078-0.089844 0.45703-0.26562 0.46875-0.1875 0-0.28125-0.15625-0.28125-0.46875v-13.062c0-0.30078 0.09375-0.45703 0.28125-0.46875 0.17578 0 0.26562 0.15625 0.26562 0.46875z"/>
|
|
138
|
+
</symbol>
|
|
139
|
+
<symbol id="mj" overflow="visible">
|
|
140
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
141
|
+
</symbol>
|
|
142
|
+
<symbol id="q" overflow="visible">
|
|
143
|
+
<path d="m2.0312 8.4219v-8.4375c0.03125-0.19531 0.13281-0.29688 0.3125-0.29688 0.15625 0 0.25 0.10156 0.28125 0.29688v8.4375c-0.03125 0.1875-0.125 0.28125-0.28125 0.28125-0.17969 0-0.28125-0.09375-0.3125-0.28125z"/>
|
|
144
|
+
</symbol>
|
|
145
|
+
<symbol id="lz" overflow="visible">
|
|
146
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
147
|
+
</symbol>
|
|
148
|
+
<symbol id="lo" overflow="visible">
|
|
149
|
+
<path d="m4.2656-6.0625-1.3281 5.2969c-0.023438 0.10547-0.03125 0.17969-0.03125 0.21875 0 0.09375 0.050781 0.15625 0.15625 0.1875 0.050781 0.011719 0.11719 0.023437 0.20312 0.03125 0.17578 0.011719 0.39062 0.015625 0.64062 0.015625 0.20703 0 0.31641 0.023438 0.32812 0.0625 0.007813 0.011719 0.015625 0.027344 0.015625 0.046875-0.03125 0.125-0.10547 0.19531-0.21875 0.20312l-0.85938-0.015625h-0.015625l-0.8125-0.015625h-0.015625l-0.82812 0.015625h-0.015625l-0.8125 0.015625h-0.015625c-0.11719 0-0.17188-0.039062-0.17188-0.125 0-0.09375 0.035156-0.14844 0.10938-0.17188 0.050781-0.007813 0.15625-0.015625 0.3125-0.015625 0.59375 0 0.94531-0.054688 1.0625-0.17188 0.039062-0.039063 0.070312-0.097656 0.09375-0.17188 0-0.019531 0.003906-0.035156 0.015625-0.046875v-0.03125h0.015625v-0.0625l1.3438-5.3281c0.03125-0.082031 0.046875-0.15625 0.046875-0.21875s-0.03125-0.097656-0.09375-0.10938h-0.1875-0.39062c-0.6875 0-1.1562 0.074219-1.4062 0.21875-0.14844 0.085937-0.27344 0.21094-0.375 0.375l-0.015625 0.015625c-0.14844 0.21875-0.30859 0.58984-0.48438 1.1094-0.054688 0.125-0.09375 0.19531-0.125 0.20312-0.011719 0.011719-0.027344 0.015625-0.046875 0.015625-0.085937 0-0.125-0.035156-0.125-0.10938 0-0.039062 0.019531-0.10156 0.0625-0.1875l0.60938-1.75c0.03125-0.11328 0.078125-0.17969 0.14062-0.20312h0.17188 5.5469c0.16406 0 0.25781 0.039063 0.28125 0.10938 0 0.0625-0.011719 0.12109-0.03125 0.17188l-0.26562 1.7344c-0.023438 0.13672-0.074219 0.21484-0.15625 0.23438-0.074219 0-0.10938-0.046875-0.10938-0.14062 0-0.039062 0.007813-0.10156 0.03125-0.1875 0.050781-0.34375 0.078125-0.60938 0.078125-0.79688 0-0.38281-0.13672-0.62891-0.40625-0.73438-0.17969-0.050781-0.53125-0.078125-1.0625-0.078125-0.35547 0-0.5625 0.007813-0.625 0.015625-0.085938 0.023438-0.14844 0.09375-0.1875 0.21875v0.015625c-0.011719 0.03125-0.027344 0.078125-0.046875 0.14062z"/>
|
|
150
|
+
</symbol>
|
|
151
|
+
<symbol id="lb" overflow="visible">
|
|
152
|
+
<path d="m4.5938-3.2031c0 0.98047-0.12109 1.7344-0.35938 2.2656-0.39844 0.75-0.98047 1.1328-1.75 1.1562-0.60547 0-1.0898-0.23828-1.4531-0.71875-0.074219-0.082031-0.13672-0.17969-0.1875-0.29688-0.30469-0.55078-0.45312-1.3516-0.45312-2.4062 0-0.97656 0.125-1.7344 0.375-2.2656 0.33203-0.75 0.86719-1.1445 1.6094-1.1875h0.125c0.59375 0 1.0781 0.23438 1.4531 0.70312v0.015625c0.09375 0.11719 0.17578 0.24609 0.25 0.39062 0.25781 0.57422 0.39062 1.3555 0.39062 2.3438zm-2.1094 3.2031c0.42578 0 0.75-0.20312 0.96875-0.60938 0.09375-0.17578 0.16016-0.39062 0.20312-0.64062 0.070312-0.42578 0.10938-1.1133 0.10938-2.0625 0-0.92578-0.03125-1.5781-0.09375-1.9531-0.125-0.63281-0.43359-1.0156-0.92188-1.1406-0.085938-0.019531-0.17188-0.03125-0.26562-0.03125-0.46094 0-0.79688 0.23438-1.0156 0.70312-0.074219 0.15625-0.13281 0.35156-0.17188 0.57812-0.054687 0.35547-0.078125 0.96875-0.078125 1.8438 0 1 0.035156 1.7031 0.10938 2.1094 0.125 0.63672 0.41406 1.0234 0.875 1.1562 0.09375 0.03125 0.1875 0.046875 0.28125 0.046875z"/>
|
|
153
|
+
</symbol>
|
|
154
|
+
<symbol id="kq" overflow="visible">
|
|
155
|
+
<path d="m6.75-9.3594-2.3125 9.2031c0.67578 0 1.2852-0.1875 1.8281-0.5625 0.25781-0.1875 0.52344-0.41406 0.79688-0.6875 0.45703-0.45703 0.8125-1.0195 1.0625-1.6875 0.10156-0.3125 0.15625-0.59766 0.15625-0.85938 0-0.45703-0.16797-0.85156-0.5-1.1875-0.13672-0.11328-0.20312-0.23828-0.20312-0.375 0-0.22656 0.125-0.42188 0.375-0.57812 0.10156-0.0625 0.21094-0.09375 0.32812-0.09375 0.26953 0 0.45312 0.17969 0.54688 0.53125v0.015625c0.039063 0.125 0.0625 0.27344 0.0625 0.4375 0 0.52344-0.13281 1.2031-0.39062 2.0469v0.015625c-0.023438 0.054687-0.039062 0.089844-0.046875 0.10938-0.21875 0.61719-0.55859 1.1797-1.0156 1.6875-0.875 1-1.8984 1.5-3.0625 1.5l-0.53125 2.0781c-0.085938 0.35156-0.14062 0.54688-0.17188 0.57812-0.023437 0.039062-0.0625 0.0625-0.125 0.0625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.10547 0.10938-0.54688 0.32812-1.3281 0.09375-0.39844 0.19141-0.82422 0.29688-1.2812-1.2617-0.074219-2.0312-0.50781-2.3125-1.3125-0.085938-0.20703-0.125-0.42969-0.125-0.67188 0-0.40625 0.22266-1.1953 0.67188-2.375 0.21875-0.57031 0.32812-0.97266 0.32812-1.2031 0-0.28906-0.11719-0.4375-0.34375-0.4375-0.55469 0-0.99609 0.47656-1.3281 1.4219-0.03125 0.10547-0.0625 0.21094-0.09375 0.3125-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.097656-0.45703 0.29688-0.875 0.40625-0.85156 0.92188-1.2812 1.5469-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.33984 0.10938 0.51562 0 0.15625-0.054688 0.38672-0.15625 0.6875-0.51172 1.3125-0.76562 2.1836-0.76562 2.6094 0 0.92969 0.53516 1.4492 1.6094 1.5625l2.3125-9.25c0.082031-0.17578 0.15625-0.26953 0.21875-0.28125 0.11328 0 0.17188 0.054688 0.17188 0.15625 0 0.03125-0.015625 0.10156-0.046875 0.20312z"/>
|
|
156
|
+
</symbol>
|
|
157
|
+
<symbol id="ax" overflow="visible">
|
|
158
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
159
|
+
</symbol>
|
|
160
|
+
<symbol id="kp" overflow="visible">
|
|
161
|
+
<path d="m4.9062-0.78125c-0.49219 0.625-1.0469 0.9375-1.6719 0.9375-0.76172 0-1.2773-0.27344-1.5469-0.82812-0.11719-0.23828-0.17188-0.52344-0.17188-0.85938 0-0.5 0.24219-1.4102 0.73438-2.7344 0.019531-0.070313 0.046875-0.14062 0.078125-0.20312 0.15625-0.39453 0.23438-0.71094 0.23438-0.95312 0-0.30078-0.11719-0.45312-0.34375-0.45312-0.53125 0-0.96094 0.44531-1.2812 1.3281-0.011719 0-0.015625 0.007813-0.015625 0.015625v0.015625c-0.042969 0.11719-0.085937 0.24219-0.125 0.375-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.097656-0.45703 0.29688-0.875 0.40625-0.85156 0.92188-1.2812 1.5469-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.34375 0.10938 0.53125 0 0.17969-0.085938 0.46875-0.25 0.875-0.5 1.3359-0.75 2.2891-0.75 2.8594 0 0.76172 0.28906 1.1406 0.875 1.1406 0.58203 0 1.0781-0.32031 1.4844-0.96875 0.050781-0.082031 0.085937-0.14844 0.10938-0.20312 0.20703-0.92578 0.55469-2.332 1.0469-4.2188 0.070313-0.32031 0.25391-0.48438 0.54688-0.48438 0.22656 0.042969 0.36328 0.16797 0.40625 0.375 0-0.019531-0.074219 0.29297-0.21875 0.9375-0.125 0.48047-0.20312 0.79688-0.23438 0.95312l-0.39062 1.5156c-0.1875 0.8125-0.28125 1.2969-0.28125 1.4531 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.39453 0 0.71875-0.46094 0.96875-1.3906 0.03125-0.09375 0.054688-0.20703 0.078125-0.34375 0.070313-0.15625 0.14062-0.23828 0.20312-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.089844 0.46484-0.26562 0.98438-0.054688 0.15625-0.10547 0.29297-0.15625 0.40625-0.26172 0.51172-0.60938 0.76562-1.0469 0.76562-0.53125 0-0.90625-0.22266-1.125-0.67188-0.054687-0.082031-0.089844-0.17188-0.10938-0.26562z"/>
|
|
162
|
+
</symbol>
|
|
163
|
+
<symbol id="ko" overflow="visible">
|
|
164
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
165
|
+
</symbol>
|
|
166
|
+
<symbol id="kn" overflow="visible">
|
|
167
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
168
|
+
</symbol>
|
|
169
|
+
<symbol id="aw" overflow="visible">
|
|
170
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
171
|
+
</symbol>
|
|
172
|
+
<symbol id="av" overflow="visible">
|
|
173
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
174
|
+
</symbol>
|
|
175
|
+
<symbol id="jf" overflow="visible">
|
|
176
|
+
<path d="m5.8594 31.562c-0.36719-0.375-0.66406-0.80859-0.89062-1.2969-0.21875-0.49219-0.32812-0.98438-0.32812-1.4844v-8.25c0-0.5625-0.12109-1.1055-0.35938-1.625-0.23047-0.51172-0.54688-0.96875-0.95312-1.375s-0.86719-0.74219-1.375-1c-0.085937-0.03125-0.125-0.070312-0.125-0.10938v-0.35938c0-0.054688 0.039063-0.09375 0.125-0.125 0.39453-0.21094 0.75391-0.45312 1.0781-0.73438 0.32031-0.28125 0.59766-0.58984 0.82812-0.92188 0.23828-0.33594 0.42578-0.71094 0.5625-1.125 0.14453-0.40625 0.21875-0.82031 0.21875-1.2344v-8.2344c0-0.51172 0.10938-1.0117 0.32812-1.5 0.22656-0.48047 0.52344-0.90625 0.89062-1.2812 0.28906-0.28125 0.67188-0.57812 1.1406-0.89062 0.47656-0.3125 0.86719-0.50391 1.1719-0.57812h0.35938c0.03125 0 0.054688 0.011719 0.078125 0.03125 0.03125 0.023438 0.046875 0.046875 0.046875 0.078125v0.375c0 0.054688-0.03125 0.09375-0.09375 0.125-0.78125 0.34375-1.4297 0.83594-1.9375 1.4844-0.51172 0.65625-0.76562 1.3828-0.76562 2.1875v8.2344c0 0.625-0.15234 1.2188-0.45312 1.7812-0.29297 0.5625-0.67969 1.0469-1.1562 1.4531-0.48047 0.41406-1.0234 0.76953-1.625 1.0625 0.45703 0.19531 0.875 0.4375 1.25 0.71875 0.38281 0.28125 0.72266 0.59766 1.0156 0.95312 0.28906 0.35156 0.52344 0.75 0.70312 1.1875 0.17578 0.44531 0.26562 0.91406 0.26562 1.4062v8.25c0 0.38281 0.066406 0.76562 0.20312 1.1406 0.14453 0.38281 0.33594 0.73438 0.57812 1.0469 0.25 0.3125 0.54688 0.59766 0.89062 0.85938 0.34375 0.25781 0.6875 0.46875 1.0312 0.625 0.0625 0.019531 0.09375 0.054688 0.09375 0.10938v0.375c0 0.019531-0.015625 0.039063-0.046875 0.0625-0.023437 0.03125-0.046875 0.046875-0.078125 0.046875h-0.35938c-0.29297-0.074219-0.68359-0.27344-1.1719-0.59375-0.48047-0.3125-0.85938-0.60547-1.1406-0.875z"/>
|
|
177
|
+
</symbol>
|
|
178
|
+
<symbol id="je" overflow="visible">
|
|
179
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
180
|
+
</symbol>
|
|
181
|
+
<symbol id="io" overflow="visible">
|
|
182
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
183
|
+
</symbol>
|
|
184
|
+
<symbol id="ie" overflow="visible">
|
|
185
|
+
<path d="m3.7344-3.7812c0.03125-0.22656 0.13281-0.36719 0.3125-0.42188 0.03125-0.007813 0.066406-0.015625 0.10938-0.015625 0.16406 0 0.25781 0.089844 0.28125 0.26562 0 0.042969-0.023438 0.15625-0.0625 0.34375l-0.35938 1.4062c-0.10547 0.41797-0.17969 0.71484-0.21875 0.89062-0.09375 0.34375-0.14062 0.59375-0.14062 0.75 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47266-0.26562 0.64062-0.79688 0.039062-0.11328 0.082031-0.25781 0.125-0.4375 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.078125 0.21484-0.10938 0.29688-0.1875 0.36719-0.4375 0.54688-0.75 0.54688-0.375 0-0.64844-0.16016-0.8125-0.48438-0.042969-0.070312-0.074219-0.16016-0.09375-0.26562-0.41797 0.5-0.85156 0.75-1.2969 0.75-0.5 0-0.87109-0.22266-1.1094-0.67188-0.14844-0.26953-0.21875-0.57812-0.21875-0.92188 0-0.71875 0.25-1.3828 0.75-2 0.45703-0.5625 0.96094-0.86719 1.5156-0.92188 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.40625 0 0.71094 0.21484 0.92188 0.64062zm-0.65625 2.5938 0.5-1.9688c0.019531-0.09375 0.03125-0.14453 0.03125-0.15625 0-0.14453-0.058594-0.31641-0.17188-0.51562-0.15625-0.25-0.36719-0.375-0.625-0.375-0.34375 0-0.67188 0.23047-0.98438 0.6875-0.0625 0.085937-0.12109 0.17969-0.17188 0.28125-0.1875 0.38672-0.35156 0.93359-0.48438 1.6406-0.042969 0.23047-0.0625 0.41406-0.0625 0.54688 0 0.44922 0.125 0.74219 0.375 0.875 0.070313 0.042969 0.16016 0.0625 0.26562 0.0625 0.375 0 0.75-0.23438 1.125-0.70312 0.09375-0.11328 0.15625-0.22656 0.1875-0.34375 0.007812-0.019531 0.015625-0.03125 0.015625-0.03125z"/>
|
|
186
|
+
</symbol>
|
|
187
|
+
<symbol id="hr" overflow="visible">
|
|
188
|
+
<path d="m0.40625-2.5469-0.03125 0.0625c-0.125 0-0.1875-0.035156-0.1875-0.10938 0-0.1875 0.10938-0.45312 0.32812-0.79688 0.46875-0.67578 1.0039-1.0195 1.6094-1.0312 0.60156 0 1.0469 0.37109 1.3281 1.1094 0.25 0.61719 0.39062 1.293 0.42188 2.0312 0.51953-1.3203 0.95703-2.3047 1.3125-2.9531 0.019531-0.050781 0.0625-0.078125 0.125-0.078125 0.082031 0 0.125 0.039062 0.125 0.10938 0 0.03125-0.070312 0.15625-0.20312 0.375-0.49219 0.98047-0.91797 1.9961-1.2812 3.0469-0.03125 0.085938-0.058594 0.15625-0.078125 0.21875-0.023438 0.085938-0.046875 0.21484-0.078125 0.39062-0.0625 0.46875-0.18359 1.0391-0.35938 1.7188-0.11719 0.38281-0.22656 0.58594-0.32812 0.60938-0.085937 0-0.125-0.0625-0.125-0.1875 0-0.27344 0.16406-0.96875 0.5-2.0938 0-0.019531 0.003906-0.039062 0.015625-0.0625 0.082031-0.21875 0.125-0.53906 0.125-0.96875 0-1.5703-0.46875-2.4141-1.4062-2.5312-0.074219-0.007812-0.14844-0.015625-0.21875-0.015625-0.46875 0-0.86719 0.16797-1.1875 0.5h-0.015625c-0.16797 0.17969-0.29688 0.39844-0.39062 0.65625z"/>
|
|
189
|
+
</symbol>
|
|
190
|
+
<symbol id="hg" overflow="visible">
|
|
191
|
+
<path d="m3.3125 2.4062c0 0.0625-0.039062 0.09375-0.10938 0.09375-0.074219 0-0.24609-0.13672-0.51562-0.40625-0.41797-0.41797-0.76172-0.90625-1.0312-1.4688-0.44922-0.90625-0.67188-1.9453-0.67188-3.125 0-1.125 0.21094-2.1406 0.64062-3.0469 0.34375-0.73828 0.78125-1.332 1.3125-1.7812 0.14453-0.11328 0.23438-0.17188 0.26562-0.17188 0.070313 0 0.10938 0.03125 0.10938 0.09375 0 0.042969-0.042969 0.10156-0.125 0.17188-1.0859 1.0938-1.625 2.6719-1.625 4.7344 0 2.0547 0.52344 3.6133 1.5781 4.6875 0.11328 0.10156 0.17188 0.17578 0.17188 0.21875z"/>
|
|
192
|
+
</symbol>
|
|
193
|
+
<symbol id="gv" overflow="visible">
|
|
194
|
+
<path d="m2.0625-4-0.75 2.9531c-0.03125 0.16797-0.046875 0.32812-0.046875 0.48438 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.44531 0 0.83594-0.32031 1.1719-0.96875l0.14062-0.3125c0.039062-0.082031 0.085938-0.12891 0.14062-0.14062 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.09375-0.089844 0.28906-0.26562 0.57812-0.38672 0.64844-0.82812 0.96875-1.3281 0.96875-0.38672 0-0.65625-0.16016-0.8125-0.48438-0.074219-0.125-0.10938-0.26953-0.10938-0.4375 0-0.125 0.20312-0.98828 0.60938-2.5938l0.15625-0.59375h-0.875c-0.16797 0-0.26172-0.023438-0.28125-0.078125v-0.046875c0-0.11328 0.050781-0.17578 0.15625-0.1875h1.0781l0.39062-1.5938c0.0625-0.22656 0.19531-0.34766 0.40625-0.35938 0.16406 0 0.25781 0.09375 0.28125 0.28125 0 0.03125-0.13672 0.58984-0.40625 1.6719h0.875c0.17578 0 0.26953 0.039062 0.28125 0.10938 0 0.125-0.054687 0.19531-0.15625 0.20312z"/>
|
|
195
|
+
</symbol>
|
|
196
|
+
<symbol id="gt" overflow="visible">
|
|
197
|
+
<path d="m2.8906-2.5c0 1.125-0.21094 2.1406-0.625 3.0469-0.35547 0.73828-0.79688 1.332-1.3281 1.7812-0.13672 0.11328-0.22656 0.17188-0.26562 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.042969 0.046875-0.10156 0.14062-0.17188 1.0703-1.0938 1.6094-2.6719 1.6094-4.7344 0-2.0312-0.5-3.5703-1.5-4.625l-0.046875-0.046875c-0.13672-0.11328-0.20312-0.19141-0.20312-0.23438 0-0.0625 0.035156-0.09375 0.10938-0.09375 0.082031 0 0.25781 0.13672 0.53125 0.40625 0.40625 0.41797 0.75 0.90625 1.0312 1.4688 0.4375 0.90625 0.65625 1.9492 0.65625 3.125z"/>
|
|
198
|
+
</symbol>
|
|
199
|
+
<symbol id="gs" overflow="visible">
|
|
200
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
201
|
+
</symbol>
|
|
202
|
+
<symbol id="am" overflow="visible">
|
|
203
|
+
<path d="m6.375-7c0 1.4297-0.36719 2.875-1.0938 4.3438-0.65625 1.3047-1.3828 2.168-2.1719 2.5938-0.29297 0.14453-0.57422 0.21875-0.84375 0.21875-0.76172 0-1.2734-0.51953-1.5312-1.5625-0.09375-0.39453-0.14062-0.83203-0.14062-1.3125 0-1.457 0.36719-2.9258 1.1094-4.4062 0.65625-1.2812 1.3789-2.125 2.1719-2.5312 0.28125-0.14453 0.55078-0.21875 0.8125-0.21875 0.8125 0 1.3359 0.59375 1.5781 1.7812 0.070313 0.35547 0.10938 0.71875 0.10938 1.0938zm-4.2969 1.9219h2.9219c0.30078-1.2383 0.45312-2.1719 0.45312-2.7969 0-1.0508-0.22656-1.6094-0.67188-1.6719-0.03125-0.007813-0.070312-0.015625-0.10938-0.015625-0.46875 0-0.97656 0.49219-1.5156 1.4688-0.35547 0.625-0.71094 1.6055-1.0625 2.9375 0 0.03125-0.007812 0.058594-0.015625 0.078125zm2.7969 0.4375h-2.9219c-0.29297 1.1367-0.4375 2.0625-0.4375 2.7812 0 1.1172 0.25 1.6836 0.75 1.7031 0.51953 0 1.0625-0.54688 1.625-1.6406 0.36328-0.6875 0.69141-1.6328 0.98438-2.8438z"/>
|
|
204
|
+
</symbol>
|
|
205
|
+
<symbol id="gr" overflow="visible">
|
|
206
|
+
<path d="m4.0156-9.5625-1.4531 5.9062c0.39453-0.15625 0.91016-0.58594 1.5469-1.2969 0.73828-0.82031 1.4219-1.2344 2.0469-1.2344 0.44531 0 0.75 0.1875 0.90625 0.5625 0.03125 0.10547 0.046875 0.21094 0.046875 0.3125 0 0.38672-0.15625 0.65234-0.46875 0.79688-0.10547 0.042969-0.20312 0.0625-0.29688 0.0625-0.29297 0-0.46484-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.25781 0.11328-0.46875 0.34375-0.625l0.015625-0.015625c0.125-0.070313 0.26953-0.11328 0.4375-0.125l-0.0625-0.046875c-0.074219-0.0625-0.16797-0.097656-0.28125-0.10938-0.023437-0.007813-0.070313-0.015625-0.14062-0.015625-0.49219 0-1.0898 0.375-1.7969 1.125-0.042969 0.042969-0.078125 0.085938-0.10938 0.125l-0.09375 0.09375c-0.48047 0.5-0.88281 0.84375-1.2031 1.0312 1.3828 0.17969 2.0781 0.66797 2.0781 1.4688 0 0.13672-0.023438 0.28125-0.0625 0.4375-0.074219 0.30469-0.10938 0.5625-0.10938 0.78125 0 0.4375 0.14844 0.65625 0.45312 0.65625 0.42578 0 0.76953-0.38281 1.0312-1.1562 0.0625-0.15625 0.125-0.34766 0.1875-0.57812 0.070312-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.14844-0.089844 0.44922-0.26562 0.90625-0.074219 0.1875-0.15234 0.35547-0.23438 0.5-0.30469 0.5-0.67188 0.75-1.1094 0.75-0.51172 0-0.88672-0.22266-1.125-0.67188-0.10547-0.21875-0.15625-0.45703-0.15625-0.71875 0-0.10156 0.015625-0.26562 0.046875-0.48438 0.03125-0.09375 0.046875-0.19141 0.046875-0.29688 0-0.58203-0.42188-0.96094-1.2656-1.1406-0.11719-0.019531-0.23438-0.035156-0.35938-0.046875-0.46875 1.9375-0.73047 2.9609-0.78125 3.0625-0.09375 0.17578-0.25781 0.27344-0.48438 0.29688-0.21875 0-0.35156-0.10156-0.39062-0.29688-0.011719-0.039063-0.015625-0.070313-0.015625-0.09375 0-0.070313 0.019531-0.17578 0.0625-0.3125l2.0312-8.0625 0.03125-0.28125c0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.085937-0.25 0.26562-0.28125l1.7188-0.14062c0.11328 0 0.17188 0.054688 0.17188 0.15625z"/>
|
|
207
|
+
</symbol>
|
|
208
|
+
<symbol id="gq" overflow="visible">
|
|
209
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
210
|
+
</symbol>
|
|
211
|
+
<symbol id="gp" overflow="visible">
|
|
212
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
213
|
+
</symbol>
|
|
214
|
+
<symbol id="go" overflow="visible">
|
|
215
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
216
|
+
</symbol>
|
|
217
|
+
<symbol id="gn" overflow="visible">
|
|
218
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
219
|
+
</symbol>
|
|
220
|
+
<symbol id="gm" overflow="visible">
|
|
221
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
222
|
+
</symbol>
|
|
223
|
+
<symbol id="gl" overflow="visible">
|
|
224
|
+
<path d="m4.5469-5c0 1.0234-0.26172 2.0547-0.78125 3.0938-0.46875 0.9375-0.98438 1.5586-1.5469 1.8594-0.21094 0.10156-0.40625 0.15625-0.59375 0.15625-0.55469 0-0.92188-0.375-1.1094-1.125-0.0625-0.28125-0.09375-0.58594-0.09375-0.92188 0-1.0508 0.26562-2.1016 0.79688-3.1562 0.46875-0.90625 0.98438-1.5078 1.5469-1.8125 0.19531-0.09375 0.39062-0.14062 0.57812-0.14062 0.58203 0 0.95703 0.42188 1.125 1.2656 0.050781 0.25 0.078125 0.51172 0.078125 0.78125zm-3.0625 1.375h2.0781c0.21875-0.88281 0.32812-1.5508 0.32812-2 0-0.75-0.15625-1.1445-0.46875-1.1875-0.03125-0.007812-0.058594-0.015625-0.078125-0.015625-0.34375 0-0.71094 0.35156-1.0938 1.0469-0.25 0.44922-0.50781 1.1484-0.76562 2.0938v0.0625zm2 0.3125h-2.0781c-0.21875 0.8125-0.32812 1.4766-0.32812 1.9844 0 0.80469 0.17969 1.2109 0.54688 1.2188 0.375 0 0.75781-0.39062 1.1562-1.1719 0.25781-0.48828 0.49219-1.1641 0.70312-2.0312z"/>
|
|
225
|
+
</symbol>
|
|
226
|
+
<symbol id="gk" overflow="visible">
|
|
227
|
+
<path d="m3.7344-3.7812c0.03125-0.22656 0.13281-0.36719 0.3125-0.42188 0.03125-0.007813 0.066406-0.015625 0.10938-0.015625 0.16406 0 0.25781 0.089844 0.28125 0.26562 0 0.042969-0.023438 0.15625-0.0625 0.34375l-0.35938 1.4062c-0.10547 0.41797-0.17969 0.71484-0.21875 0.89062-0.09375 0.34375-0.14062 0.59375-0.14062 0.75 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47266-0.26562 0.64062-0.79688 0.039062-0.11328 0.082031-0.25781 0.125-0.4375 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.078125 0.21484-0.10938 0.29688-0.1875 0.36719-0.4375 0.54688-0.75 0.54688-0.375 0-0.64844-0.16016-0.8125-0.48438-0.042969-0.070312-0.074219-0.16016-0.09375-0.26562-0.41797 0.5-0.85156 0.75-1.2969 0.75-0.5 0-0.87109-0.22266-1.1094-0.67188-0.14844-0.26953-0.21875-0.57812-0.21875-0.92188 0-0.71875 0.25-1.3828 0.75-2 0.45703-0.5625 0.96094-0.86719 1.5156-0.92188 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.40625 0 0.71094 0.21484 0.92188 0.64062zm-0.65625 2.5938 0.5-1.9688c0.019531-0.09375 0.03125-0.14453 0.03125-0.15625 0-0.14453-0.058594-0.31641-0.17188-0.51562-0.15625-0.25-0.36719-0.375-0.625-0.375-0.34375 0-0.67188 0.23047-0.98438 0.6875-0.0625 0.085937-0.12109 0.17969-0.17188 0.28125-0.1875 0.38672-0.35156 0.93359-0.48438 1.6406-0.042969 0.23047-0.0625 0.41406-0.0625 0.54688 0 0.44922 0.125 0.74219 0.375 0.875 0.070313 0.042969 0.16016 0.0625 0.26562 0.0625 0.375 0 0.75-0.23438 1.125-0.70312 0.09375-0.11328 0.15625-0.22656 0.1875-0.34375 0.007812-0.019531 0.015625-0.03125 0.015625-0.03125z"/>
|
|
228
|
+
</symbol>
|
|
229
|
+
<symbol id="gj" overflow="visible">
|
|
230
|
+
<path d="m5.5469-5.3125c-0.26172-0.34375-0.66406-0.53125-1.2031-0.5625-0.60547 0-1.1562 0.30859-1.6562 0.92188-0.125 0.14844-0.23438 0.30469-0.32812 0.46875-0.36719 0.6875-0.60547 1.4922-0.71875 2.4062-0.023437 0.15625-0.03125 0.28906-0.03125 0.39062 0 0.77344 0.25781 1.2578 0.78125 1.4531 0.13281 0.054687 0.29688 0.078125 0.48438 0.078125 0.83203 0 1.5859-0.28125 2.2656-0.84375 0.19531-0.15625 0.375-0.33594 0.53125-0.54688 0.0625-0.09375 0.125-0.14062 0.1875-0.14062 0.082031 0 0.13281 0.0625 0.15625 0.1875 0 0.10547-0.15625 0.30859-0.46875 0.60938-0.78125 0.69922-1.6836 1.0469-2.7031 1.0469-0.88672 0-1.5312-0.35156-1.9375-1.0625-0.21875-0.38281-0.32812-0.82031-0.32812-1.3125 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5195-1.2383 2.4062-1.3125 0.082031-0.007813 0.16406-0.015625 0.25-0.015625 0.71875 0 1.2188 0.21875 1.5 0.65625 0.10156 0.16797 0.15625 0.35156 0.15625 0.54688 0 0.40625-0.16797 0.6875-0.5 0.84375-0.09375 0.03125-0.19531 0.046875-0.29688 0.046875-0.27344 0-0.4375-0.11719-0.5-0.35938-0.011719-0.039063-0.015625-0.082031-0.015625-0.125 0-0.20703 0.082031-0.39062 0.25-0.54688 0.13281-0.125 0.34375-0.1875 0.625-0.1875z"/>
|
|
231
|
+
</symbol>
|
|
232
|
+
<symbol id="gi" overflow="visible">
|
|
233
|
+
<path d="m2.1562-4.2812 0.1875-0.14062c-0.60547-0.34375-0.91406-0.83594-0.92188-1.4844 0-0.70703 0.34375-1.3359 1.0312-1.8906 0.39453-0.33203 0.86719-0.57812 1.4219-0.73438-0.0625-0.25781-0.09375-0.44141-0.09375-0.54688 0-0.45703 0.082031-0.6875 0.25-0.6875 0.11328 0 0.17188 0.0625 0.17188 0.1875l-0.078125 0.5v0.015625c0 0.16797 0.023438 0.32422 0.078125 0.46875 0.23828-0.050781 0.53125-0.078125 0.875-0.078125 0.69531 0 1.082 0.09375 1.1562 0.28125v0.03125c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125 0 0.28125-0.41797 0.42188-1.25 0.42188-0.40625 0-0.69531-0.082031-0.85938-0.25-0.011719-0.019531-0.023437-0.035156-0.03125-0.046875-0.69922 0.34375-1.1797 0.88672-1.4375 1.625-0.085937 0.26172-0.125 0.51172-0.125 0.75 0 0.44922 0.14062 0.8125 0.42188 1.0938 0.34375-0.11328 0.73438-0.17188 1.1719-0.17188 0.75 0 1.1328 0.125 1.1562 0.375 0 0.29297-0.4375 0.4375-1.3125 0.4375-0.46875 0-0.875-0.0625-1.2188-0.1875-0.71875 0.35547-1.2344 0.90625-1.5469 1.6562-0.125 0.28125-0.1875 0.52734-0.1875 0.73438 0 0.55469 0.35156 0.96484 1.0625 1.2344l0.82812 0.34375c0.19531 0.0625 0.48438 0.17188 0.85938 0.32812 0.40625 0.15625 0.69141 0.25781 0.85938 0.3125 0.44531 0.20703 0.67188 0.53906 0.67188 1 0 0.45703-0.1875 0.84375-0.5625 1.1562-0.17969 0.15625-0.375 0.25391-0.59375 0.29688-0.10547 0.03125-0.21094 0.046875-0.3125 0.046875-0.5 0-0.94922-0.15234-1.3438-0.45312-0.11719-0.09375-0.17188-0.16797-0.17188-0.21875 0-0.10547 0.046875-0.15625 0.14062-0.15625 0.03125 0 0.082031 0.019531 0.15625 0.0625 0.40625 0.30078 0.8125 0.45312 1.2188 0.45312 0.30078 0 0.51562-0.15625 0.64062-0.46875 0.03125-0.09375 0.046875-0.1875 0.046875-0.28125 0-0.24219-0.125-0.41797-0.375-0.53125 0.039062 0.007812 0.003906-0.011719-0.10938-0.0625l-1.6875-0.65625c-0.6875-0.25-1.125-0.45312-1.3125-0.60938-0.085937-0.0625-0.1875-0.16016-0.3125-0.29688-0.15625-0.22656-0.24219-0.34766-0.25-0.35938-0.10547-0.22656-0.15625-0.47656-0.15625-0.75 0-0.58203 0.22656-1.1758 0.6875-1.7812 0.30078-0.40625 0.67969-0.75391 1.1406-1.0469zm2.2656-4c0.10156 0.085938 0.30078 0.125 0.59375 0.125 0.38281 0 0.67188-0.039062 0.85938-0.125-0.19922-0.050781-0.46094-0.078125-0.78125-0.078125-0.30469 0-0.52734 0.027344-0.67188 0.078125zm-1.0938 3.8125c0.16406 0.074219 0.39844 0.10938 0.70312 0.10938 0.44531 0 0.74219-0.035156 0.89062-0.10938-0.19922-0.050781-0.46484-0.078125-0.79688-0.078125-0.3125 0-0.57812 0.027344-0.79688 0.078125z"/>
|
|
234
|
+
</symbol>
|
|
235
|
+
<symbol id="gh" overflow="visible">
|
|
236
|
+
<path d="m4.9062-0.78125c-0.49219 0.625-1.0469 0.9375-1.6719 0.9375-0.76172 0-1.2773-0.27344-1.5469-0.82812-0.11719-0.23828-0.17188-0.52344-0.17188-0.85938 0-0.5 0.24219-1.4102 0.73438-2.7344 0.019531-0.070313 0.046875-0.14062 0.078125-0.20312 0.15625-0.39453 0.23438-0.71094 0.23438-0.95312 0-0.30078-0.11719-0.45312-0.34375-0.45312-0.53125 0-0.96094 0.44531-1.2812 1.3281-0.011719 0-0.015625 0.007813-0.015625 0.015625v0.015625c-0.042969 0.11719-0.085937 0.24219-0.125 0.375-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.097656-0.45703 0.29688-0.875 0.40625-0.85156 0.92188-1.2812 1.5469-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.34375 0.10938 0.53125 0 0.17969-0.085938 0.46875-0.25 0.875-0.5 1.3359-0.75 2.2891-0.75 2.8594 0 0.76172 0.28906 1.1406 0.875 1.1406 0.58203 0 1.0781-0.32031 1.4844-0.96875 0.050781-0.082031 0.085937-0.14844 0.10938-0.20312 0.20703-0.92578 0.55469-2.332 1.0469-4.2188 0.070313-0.32031 0.25391-0.48438 0.54688-0.48438 0.22656 0.042969 0.36328 0.16797 0.40625 0.375 0-0.019531-0.074219 0.29297-0.21875 0.9375-0.125 0.48047-0.20312 0.79688-0.23438 0.95312l-0.39062 1.5156c-0.1875 0.8125-0.28125 1.2969-0.28125 1.4531 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.39453 0 0.71875-0.46094 0.96875-1.3906 0.03125-0.09375 0.054688-0.20703 0.078125-0.34375 0.070313-0.15625 0.14062-0.23828 0.20312-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.089844 0.46484-0.26562 0.98438-0.054688 0.15625-0.10547 0.29297-0.15625 0.40625-0.26172 0.51172-0.60938 0.76562-1.0469 0.76562-0.53125 0-0.90625-0.22266-1.125-0.67188-0.054687-0.082031-0.089844-0.17188-0.10938-0.26562z"/>
|
|
237
|
+
</symbol>
|
|
238
|
+
<symbol id="gg" overflow="visible">
|
|
239
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
240
|
+
</symbol>
|
|
241
|
+
<symbol id="gf" overflow="visible">
|
|
242
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
243
|
+
</symbol>
|
|
244
|
+
<symbol id="ge" overflow="visible">
|
|
245
|
+
<path d="m2.0625-4-0.75 2.9531c-0.03125 0.16797-0.046875 0.32812-0.046875 0.48438 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.44531 0 0.83594-0.32031 1.1719-0.96875l0.14062-0.3125c0.039062-0.082031 0.085938-0.12891 0.14062-0.14062 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.09375-0.089844 0.28906-0.26562 0.57812-0.38672 0.64844-0.82812 0.96875-1.3281 0.96875-0.38672 0-0.65625-0.16016-0.8125-0.48438-0.074219-0.125-0.10938-0.26953-0.10938-0.4375 0-0.125 0.20312-0.98828 0.60938-2.5938l0.15625-0.59375h-0.875c-0.16797 0-0.26172-0.023438-0.28125-0.078125v-0.046875c0-0.11328 0.050781-0.17578 0.15625-0.1875h1.0781l0.39062-1.5938c0.0625-0.22656 0.19531-0.34766 0.40625-0.35938 0.16406 0 0.25781 0.09375 0.28125 0.28125 0 0.03125-0.13672 0.58984-0.40625 1.6719h0.875c0.17578 0 0.26953 0.039062 0.28125 0.10938 0 0.125-0.054687 0.19531-0.15625 0.20312z"/>
|
|
246
|
+
</symbol>
|
|
247
|
+
<symbol id="gd" overflow="visible">
|
|
248
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
249
|
+
</symbol>
|
|
250
|
+
<symbol id="gc" overflow="visible">
|
|
251
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
252
|
+
</symbol>
|
|
253
|
+
<symbol id="ae" overflow="visible">
|
|
254
|
+
<path d="m2.1562-4.2812 0.1875-0.14062c-0.60547-0.34375-0.91406-0.83594-0.92188-1.4844 0-0.70703 0.34375-1.3359 1.0312-1.8906 0.39453-0.33203 0.86719-0.57812 1.4219-0.73438-0.0625-0.25781-0.09375-0.44141-0.09375-0.54688 0-0.45703 0.082031-0.6875 0.25-0.6875 0.11328 0 0.17188 0.0625 0.17188 0.1875l-0.078125 0.5v0.015625c0 0.16797 0.023438 0.32422 0.078125 0.46875 0.23828-0.050781 0.53125-0.078125 0.875-0.078125 0.69531 0 1.082 0.09375 1.1562 0.28125v0.03125c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125 0 0.28125-0.41797 0.42188-1.25 0.42188-0.40625 0-0.69531-0.082031-0.85938-0.25-0.011719-0.019531-0.023437-0.035156-0.03125-0.046875-0.69922 0.34375-1.1797 0.88672-1.4375 1.625-0.085937 0.26172-0.125 0.51172-0.125 0.75 0 0.44922 0.14062 0.8125 0.42188 1.0938 0.34375-0.11328 0.73438-0.17188 1.1719-0.17188 0.75 0 1.1328 0.125 1.1562 0.375 0 0.29297-0.4375 0.4375-1.3125 0.4375-0.46875 0-0.875-0.0625-1.2188-0.1875-0.71875 0.35547-1.2344 0.90625-1.5469 1.6562-0.125 0.28125-0.1875 0.52734-0.1875 0.73438 0 0.55469 0.35156 0.96484 1.0625 1.2344l0.82812 0.34375c0.19531 0.0625 0.48438 0.17188 0.85938 0.32812 0.40625 0.15625 0.69141 0.25781 0.85938 0.3125 0.44531 0.20703 0.67188 0.53906 0.67188 1 0 0.45703-0.1875 0.84375-0.5625 1.1562-0.17969 0.15625-0.375 0.25391-0.59375 0.29688-0.10547 0.03125-0.21094 0.046875-0.3125 0.046875-0.5 0-0.94922-0.15234-1.3438-0.45312-0.11719-0.09375-0.17188-0.16797-0.17188-0.21875 0-0.10547 0.046875-0.15625 0.14062-0.15625 0.03125 0 0.082031 0.019531 0.15625 0.0625 0.40625 0.30078 0.8125 0.45312 1.2188 0.45312 0.30078 0 0.51562-0.15625 0.64062-0.46875 0.03125-0.09375 0.046875-0.1875 0.046875-0.28125 0-0.24219-0.125-0.41797-0.375-0.53125 0.039062 0.007812 0.003906-0.011719-0.10938-0.0625l-1.6875-0.65625c-0.6875-0.25-1.125-0.45312-1.3125-0.60938-0.085937-0.0625-0.1875-0.16016-0.3125-0.29688-0.15625-0.22656-0.24219-0.34766-0.25-0.35938-0.10547-0.22656-0.15625-0.47656-0.15625-0.75 0-0.58203 0.22656-1.1758 0.6875-1.7812 0.30078-0.40625 0.67969-0.75391 1.1406-1.0469zm2.2656-4c0.10156 0.085938 0.30078 0.125 0.59375 0.125 0.38281 0 0.67188-0.039062 0.85938-0.125-0.19922-0.050781-0.46094-0.078125-0.78125-0.078125-0.30469 0-0.52734 0.027344-0.67188 0.078125zm-1.0938 3.8125c0.16406 0.074219 0.39844 0.10938 0.70312 0.10938 0.44531 0 0.74219-0.035156 0.89062-0.10938-0.19922-0.050781-0.46484-0.078125-0.79688-0.078125-0.3125 0-0.57812 0.027344-0.79688 0.078125z"/>
|
|
255
|
+
</symbol>
|
|
256
|
+
<symbol id="gb" overflow="visible">
|
|
257
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
258
|
+
</symbol>
|
|
259
|
+
<symbol id="ad" overflow="visible">
|
|
260
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
261
|
+
</symbol>
|
|
262
|
+
<symbol id="ac" overflow="visible">
|
|
263
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
264
|
+
</symbol>
|
|
265
|
+
<symbol id="ga" overflow="visible">
|
|
266
|
+
<path d="m10.641-9.7344-0.875 3.5781c-0.054687 0.16797-0.10156 0.25781-0.14062 0.26562l-0.015625 0.015625h-0.10938c-0.13672 0-0.20312-0.046875-0.20312-0.14062l0.046875-0.6875v-0.03125c0-1.1562-0.36719-1.9531-1.0938-2.3906l-0.015625-0.015625c-0.33594-0.19531-0.71875-0.29688-1.1562-0.29688-0.99219 0-1.9297 0.37109-2.8125 1.1094-0.21875 0.17969-0.41797 0.375-0.59375 0.59375-0.88672 1.0312-1.4336 2.3438-1.6406 3.9375-0.042969 0.29297-0.0625 0.54688-0.0625 0.76562 0 1.3047 0.49219 2.1836 1.4844 2.6406 0.38281 0.17969 0.80469 0.26562 1.2656 0.26562 0.875 0 1.7344-0.33594 2.5781-1.0156 0.65625-0.55078 1.125-1.2891 1.4062-2.2188 0.019531-0.09375 0.082031-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.16797-0.10938 0.46484-0.32812 0.89062-0.29297 0.59375-0.69922 1.1211-1.2188 1.5781-0.92969 0.80469-1.9336 1.2031-3.0156 1.2031-1.1992 0-2.1562-0.41016-2.875-1.2344-0.61719-0.69531-0.92188-1.5664-0.92188-2.6094 0-1.3828 0.50391-2.6875 1.5156-3.9062 0.94531-1.125 2.0664-1.8672 3.3594-2.2344 0.46875-0.13281 0.92969-0.20312 1.3906-0.20312 1.0195 0 1.7969 0.41797 2.3281 1.25l0.98438-1.0781c0.10156-0.11328 0.17188-0.17188 0.20312-0.17188 0.10156 0 0.15625 0.046875 0.15625 0.14062z"/>
|
|
267
|
+
</symbol>
|
|
268
|
+
<symbol id="fz" overflow="visible">
|
|
269
|
+
<path d="m1.8281 32.922v-0.375c0-0.0625 0.035156-0.10156 0.10938-0.10938 0.5-0.23047 0.95312-0.53125 1.3594-0.90625 0.40625-0.36719 0.72656-0.78906 0.96875-1.2656 0.25-0.46875 0.375-0.96875 0.375-1.5v-8.25c0-0.49219 0.082031-0.95312 0.25-1.3906 0.17578-0.4375 0.41016-0.83984 0.70312-1.2031 0.30078-0.35547 0.64453-0.67969 1.0312-0.96875 0.38281-0.28125 0.79688-0.51562 1.2344-0.70312-0.9375-0.44922-1.7109-1.0469-2.3125-1.7969-0.60547-0.74219-0.90625-1.5742-0.90625-2.5v-8.2344c0-0.54297-0.125-1.0547-0.375-1.5312-0.24219-0.46875-0.57031-0.89062-0.98438-1.2656-0.40625-0.36719-0.85547-0.65625-1.3438-0.875-0.074219-0.03125-0.10938-0.070312-0.10938-0.125v-0.375c0-0.070313 0.046875-0.10938 0.14062-0.10938h0.35938c0.30078 0.085938 0.6875 0.27734 1.1562 0.57812 0.47656 0.3125 0.85938 0.60938 1.1406 0.89062 0.25781 0.26953 0.47656 0.54688 0.65625 0.82812 0.17578 0.28125 0.31641 0.58594 0.42188 0.92188 0.10156 0.34375 0.15625 0.6875 0.15625 1.0312v8.2344c0 0.84375 0.24219 1.6172 0.73438 2.3281 0.5 0.70703 1.1445 1.2695 1.9375 1.6875 0.082031 0.039062 0.125 0.082031 0.125 0.125v0.35938c0 0.03125-0.042969 0.066406-0.125 0.10938-0.51172 0.25781-0.96875 0.59375-1.375 1s-0.72656 0.86328-0.95312 1.375c-0.23047 0.51953-0.34375 1.0625-0.34375 1.625v8.25c0 0.35156-0.054687 0.69141-0.15625 1.0156-0.10547 0.33203-0.25 0.64453-0.4375 0.9375-0.1875 0.30078-0.40234 0.57812-0.64062 0.82812-0.17969 0.16406-0.40625 0.35156-0.6875 0.5625-0.27344 0.20703-0.55469 0.39453-0.84375 0.5625-0.29297 0.16406-0.54688 0.28125-0.76562 0.34375h-0.35938c-0.09375 0-0.14062-0.039062-0.14062-0.10938z"/>
|
|
270
|
+
</symbol>
|
|
271
|
+
<symbol id="o" overflow="visible">
|
|
272
|
+
<path d="m2.0312 8.4219v-8.4375c0.03125-0.19531 0.13281-0.29688 0.3125-0.29688 0.15625 0 0.25 0.10156 0.28125 0.29688v8.4375c-0.03125 0.1875-0.125 0.28125-0.28125 0.28125-0.17969 0-0.28125-0.09375-0.3125-0.28125z"/>
|
|
273
|
+
</symbol>
|
|
274
|
+
<symbol id="fy" overflow="visible">
|
|
275
|
+
<path d="m9.4688-8.3281-7.375 3.4844 7.3594 3.4688c0.15625 0.125 0.24219 0.22656 0.26562 0.29688 0 0.14844-0.074219 0.23438-0.21875 0.26562-0.023438 0.011719-0.042969 0.015625-0.0625 0.015625-0.054688 0-0.13281-0.023437-0.23438-0.078125l-7.7812-3.6719c-0.17969-0.070313-0.26562-0.17188-0.26562-0.29688s0.085938-0.22656 0.26562-0.3125l7.7969-3.6562c0.09375-0.0625 0.16406-0.09375 0.21875-0.09375 0.14453 0 0.23438 0.074219 0.26562 0.21875 0.007813 0.023438 0.015625 0.042969 0.015625 0.0625 0 0.13672-0.085938 0.23438-0.25 0.29688zm-0.21875 10.25h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h7.5938c0.30078 0 0.46094 0.09375 0.48438 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
276
|
+
</symbol>
|
|
277
|
+
<symbol id="fx" overflow="visible">
|
|
278
|
+
<path d="m1.3125-3.2812c0.28125-0.65625 0.69531-0.98438 1.25-0.98438 0.61328 0 1.1172 0.25 1.5156 0.75 0.21875 0.28125 0.36328 0.60547 0.4375 0.96875 0.03125 0.16797 0.046875 0.33594 0.046875 0.5 0 0.74219-0.25781 1.3359-0.76562 1.7812-0.375 0.32031-0.80469 0.48438-1.2812 0.48438-0.6875 0-1.2188-0.32031-1.5938-0.96875-0.33594-0.58203-0.5-1.3828-0.5-2.4062 0-1.1562 0.32812-2.0703 0.98438-2.75 0.47656-0.5 1.0234-0.75 1.6406-0.75 0.58203 0 0.97266 0.20312 1.1719 0.60938 0.0625 0.13672 0.09375 0.29297 0.09375 0.46875 0 0.26172-0.12109 0.41797-0.35938 0.46875-0.03125 0.011719-0.0625 0.015625-0.09375 0.015625-0.21094 0-0.35156-0.09375-0.42188-0.28125-0.023438-0.050781-0.03125-0.11328-0.03125-0.1875 0-0.30078 0.17969-0.45312 0.54688-0.45312-0.17969-0.25781-0.47656-0.39062-0.89062-0.39062-0.46094 0-0.85156 0.21094-1.1719 0.625-0.38672 0.5-0.57812 1.2578-0.57812 2.2656zm1.2031 3.2188c0.44531 0 0.77344-0.21094 0.98438-0.64062 0.11328-0.23828 0.17188-0.6875 0.17188-1.3438 0-0.66406-0.0625-1.125-0.1875-1.375-0.19922-0.41406-0.50781-0.625-0.92188-0.625-0.53125 0-0.89844 0.32031-1.0938 0.95312-0.085938 0.26172-0.125 0.53906-0.125 0.82812 0 0.65625 0.054688 1.1406 0.17188 1.4531 0.125 0.3125 0.32031 0.53125 0.59375 0.65625 0.125 0.0625 0.25781 0.09375 0.40625 0.09375z"/>
|
|
279
|
+
</symbol>
|
|
280
|
+
<symbol id="d" overflow="visible">
|
|
281
|
+
<path d="m2.0312 8.4219v-8.4375c0.03125-0.19531 0.13281-0.29688 0.3125-0.29688 0.15625 0 0.25 0.10156 0.28125 0.29688v8.4375c-0.03125 0.1875-0.125 0.28125-0.28125 0.28125-0.17969 0-0.28125-0.09375-0.3125-0.28125z"/>
|
|
282
|
+
</symbol>
|
|
283
|
+
<symbol id="fw" overflow="visible">
|
|
284
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
285
|
+
</symbol>
|
|
286
|
+
<symbol id="fv" overflow="visible">
|
|
287
|
+
<path d="m5.1406-5.5938-0.84375 4.4375c-0.085937 0.57422-0.25 1.2344-0.5 1.9844-0.09375 0.26953-0.1875 0.5-0.28125 0.6875-0.32422 0.6875-0.73047 1.1133-1.2188 1.2812-0.125 0.050781-0.24609 0.078125-0.35938 0.078125-0.46875 0-0.82031-0.16406-1.0469-0.48438-0.10547-0.13672-0.15625-0.29688-0.15625-0.48438 0-0.375 0.16016-0.63281 0.48438-0.76562 0.09375-0.054687 0.19141-0.078125 0.29688-0.078125 0.26953 0 0.4375 0.11328 0.5 0.34375 0.007813 0.050781 0.015625 0.097656 0.015625 0.14062 0 0.32031-0.14062 0.54688-0.42188 0.67188-0.10547 0.050781-0.21875 0.082031-0.34375 0.09375 0.17578 0.16406 0.39844 0.25 0.67188 0.25 0.40625 0 0.72266-0.46094 0.95312-1.375 0.050781-0.21094 0.10938-0.49219 0.17188-0.84375l0.09375-0.40625 1.0469-5.5312h-0.92188c-0.24219 0-0.37109-0.039062-0.39062-0.125v-0.046875c0-0.15625 0.078125-0.24219 0.23438-0.26562h1.1406c0.22656-1.1641 0.38281-1.8984 0.46875-2.2031 0.28125-0.92578 0.77344-1.4609 1.4844-1.6094 0.10156-0.019531 0.20312-0.03125 0.29688-0.03125 0.47656 0 0.83203 0.16406 1.0625 0.48438 0.10156 0.13672 0.15625 0.29688 0.15625 0.48438 0 0.375-0.16406 0.63281-0.48438 0.76562-0.09375 0.054687-0.19531 0.078125-0.29688 0.078125-0.27344 0-0.4375-0.11328-0.5-0.34375-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28906 0.12891-0.50781 0.39062-0.65625 0.10156-0.0625 0.22656-0.097656 0.375-0.10938-0.17969-0.16406-0.40625-0.25-0.6875-0.25-0.29297 0-0.51172 0.15625-0.65625 0.46875-0.074219 0.13672-0.1875 0.625-0.34375 1.4688l-0.29688 1.5938h1.1719c0.22656 0 0.35156 0.054688 0.375 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
288
|
+
</symbol>
|
|
289
|
+
<symbol id="fu" overflow="visible">
|
|
290
|
+
<path d="m6.7656-1.625-0.32812 1.625h-1.5938c-0.14844 0-0.23047-0.019531-0.25-0.0625v-0.14062c0-0.46875 0.15625-1.1406 0.46875-2.0156 0.32031-0.91406 0.50391-1.5938 0.54688-2.0312 0.007813-0.10156 0.015625-0.20312 0.015625-0.29688 0-0.88281-0.30859-1.5312-0.92188-1.9375-0.33594-0.22656-0.70312-0.34375-1.1094-0.34375-0.5625 0-1.043 0.21094-1.4375 0.625v0.015625c-0.375 0.41797-0.5625 0.96484-0.5625 1.6406 0 0.51172 0.16016 1.2148 0.48438 2.1094 0.36328 1 0.54688 1.7461 0.54688 2.2344 0 0.10547-0.027344 0.16797-0.078125 0.1875-0.03125 0.011719-0.089844 0.015625-0.17188 0.015625h-1.6094l-0.32812-1.625h0.25c0.070312 0.35547 0.13281 0.60547 0.1875 0.75 0.03125 0.09375 0.085938 0.15625 0.17188 0.1875 0.09375 0.023438 0.25391 0.03125 0.48438 0.03125h0.79688c-0.085937-0.36328-0.32812-0.85156-0.73438-1.4688l-0.0625-0.09375c-0.023438-0.03125-0.054688-0.070312-0.09375-0.125-0.48047-0.72656-0.76172-1.3203-0.84375-1.7812-0.023438-0.13281-0.03125-0.27344-0.03125-0.42188 0-0.6875 0.29688-1.2734 0.89062-1.7656 0.58203-0.48828 1.3008-0.73438 2.1562-0.73438 0.89453 0 1.6445 0.27344 2.25 0.8125 0.53125 0.48047 0.79688 1.043 0.79688 1.6875 0 0.54297-0.23438 1.1836-0.70312 1.9219l-0.015625 0.015625v0.015625l-0.17188 0.25c-0.44922 0.66797-0.72656 1.1719-0.82812 1.5156-0.023438 0.0625-0.042969 0.12109-0.0625 0.17188h0.8125c0.36328 0 0.57031-0.046875 0.625-0.14062l0.03125-0.09375c0.050781-0.14453 0.10938-0.39062 0.17188-0.73438z"/>
|
|
291
|
+
</symbol>
|
|
292
|
+
<symbol id="r" overflow="visible">
|
|
293
|
+
<path d="m2.0312 8.4219v-8.4375c0.03125-0.19531 0.13281-0.29688 0.3125-0.29688 0.15625 0 0.25 0.10156 0.28125 0.29688v8.4375c-0.03125 0.1875-0.125 0.28125-0.28125 0.28125-0.17969 0-0.28125-0.09375-0.3125-0.28125z"/>
|
|
294
|
+
</symbol>
|
|
295
|
+
<symbol id="fm" overflow="visible">
|
|
296
|
+
<path d="m0.23438-8.4688-0.23438-0.28125 0.5-0.40625c0.75781-0.63281 1.4453-0.95312 2.0625-0.95312 0.32031 0 0.64453 0.085937 0.96875 0.25 0.32031 0.15625 0.64453 0.3125 0.96875 0.46875 0.32031 0.15625 0.64453 0.23438 0.96875 0.23438 0.60156 0 1.2891-0.31641 2.0625-0.95312l0.23438 0.28125-0.48438 0.40625c-0.77344 0.63672-1.4648 0.95312-2.0781 0.95312-0.3125 0-0.63281-0.078125-0.95312-0.23438-0.32422-0.16406-0.64844-0.32812-0.96875-0.48438-0.32422-0.15625-0.64844-0.23438-0.96875-0.23438-0.60547 0-1.2969 0.32031-2.0781 0.95312z"/>
|
|
297
|
+
</symbol>
|
|
298
|
+
<symbol id="fl" overflow="visible">
|
|
299
|
+
<path d="m9.0312-9.7344-0.75 3.0781c-0.09375 0.17969-0.16797 0.26562-0.21875 0.26562-0.11719 0-0.17188-0.046875-0.17188-0.14062l0.0625-0.75v-0.03125c0-1.2812-0.54297-1.9922-1.625-2.1406-0.125-0.019531-0.25781-0.03125-0.39062-0.03125-0.73047 0-1.3516 0.29688-1.8594 0.89062-0.39844 0.44922-0.59375 0.92969-0.59375 1.4375 0 0.5625 0.22656 0.96484 0.6875 1.2031 0.050781 0.03125 0.10938 0.058594 0.17188 0.078125 0.039062 0.011719 0.35156 0.09375 0.9375 0.25 0.85156 0.21875 1.3633 0.38672 1.5312 0.5 0.082031 0.054688 0.16406 0.12109 0.25 0.20312 0.44531 0.42969 0.67188 0.96875 0.67188 1.625 0 0.86719-0.33594 1.668-1 2.4062-0.76172 0.77344-1.6094 1.1719-2.5469 1.2031-1.0859 0-1.875-0.33594-2.375-1.0156l-0.67188 0.79688c-0.125 0.14453-0.21484 0.21875-0.26562 0.21875-0.09375 0-0.14062-0.046875-0.14062-0.14062l0.79688-3.1562v-0.03125c0.007812-0.0625 0.019531-0.097656 0.03125-0.10938 0.039062-0.03125 0.085938-0.046875 0.14062-0.046875 0.11328 0 0.17188 0.046875 0.17188 0.14062l-0.03125 0.10938c-0.054688 0.33594-0.078125 0.58594-0.078125 0.75 0 1.0547 0.53516 1.7031 1.6094 1.9531 0.25781 0.0625 0.53906 0.09375 0.84375 0.09375 0.72656 0 1.3594-0.31641 1.8906-0.95312 0.41406-0.48828 0.625-1.0312 0.625-1.625 0-0.72656-0.33984-1.1953-1.0156-1.4062l-0.26562-0.078125-1.5-0.39062c-0.61719-0.17578-1.0469-0.55078-1.2969-1.125-0.11719-0.26953-0.17188-0.55469-0.17188-0.85938 0-0.85156 0.35938-1.6172 1.0781-2.2969 0.70703-0.67578 1.5039-1.0156 2.3906-1.0156 0.94531 0 1.6133 0.33984 2 1.0156l0.67188-0.79688c0.125-0.14453 0.20703-0.21875 0.25-0.21875 0.10156 0 0.15625 0.046875 0.15625 0.14062z"/>
|
|
300
|
+
</symbol>
|
|
301
|
+
<symbol id="fk" overflow="visible">
|
|
302
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
303
|
+
</symbol>
|
|
304
|
+
<symbol id="fj" overflow="visible">
|
|
305
|
+
<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"/>
|
|
306
|
+
</symbol>
|
|
307
|
+
<symbol id="fi" overflow="visible">
|
|
308
|
+
<path d="m2.0312-0.015625c0 0.64453-0.21094 1.2109-0.625 1.7031-0.11719 0.13281-0.21094 0.21875-0.28125 0.25-0.074219 0-0.10938-0.042969-0.10938-0.125 0-0.03125 0.035156-0.085938 0.10938-0.15625 0.40625-0.39844 0.62891-0.88672 0.67188-1.4688 0.007813-0.0625 0.015625-0.13281 0.015625-0.20312 0-0.09375-0.007812-0.14062-0.015625-0.14062-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.09375 0.085938-0.21094 0.125-0.34375 0.125-0.25 0-0.41406-0.11328-0.48438-0.34375-0.03125-0.0625-0.046875-0.125-0.046875-0.1875 0-0.23828 0.10156-0.39844 0.3125-0.48438 0.0625-0.03125 0.13281-0.046875 0.21875-0.046875 0.28906 0 0.48828 0.19531 0.59375 0.57812 0.03125 0.14844 0.046875 0.30469 0.046875 0.46875z"/>
|
|
309
|
+
</symbol>
|
|
310
|
+
<symbol id="fh" overflow="visible">
|
|
311
|
+
<path d="m4.5938-3.2031c0 0.98047-0.12109 1.7344-0.35938 2.2656-0.39844 0.75-0.98047 1.1328-1.75 1.1562-0.60547 0-1.0898-0.23828-1.4531-0.71875-0.074219-0.082031-0.13672-0.17969-0.1875-0.29688-0.30469-0.55078-0.45312-1.3516-0.45312-2.4062 0-0.97656 0.125-1.7344 0.375-2.2656 0.33203-0.75 0.86719-1.1445 1.6094-1.1875h0.125c0.59375 0 1.0781 0.23438 1.4531 0.70312v0.015625c0.09375 0.11719 0.17578 0.24609 0.25 0.39062 0.25781 0.57422 0.39062 1.3555 0.39062 2.3438zm-2.1094 3.2031c0.42578 0 0.75-0.20312 0.96875-0.60938 0.09375-0.17578 0.16016-0.39062 0.20312-0.64062 0.070312-0.42578 0.10938-1.1133 0.10938-2.0625 0-0.92578-0.03125-1.5781-0.09375-1.9531-0.125-0.63281-0.43359-1.0156-0.92188-1.1406-0.085938-0.019531-0.17188-0.03125-0.26562-0.03125-0.46094 0-0.79688 0.23438-1.0156 0.70312-0.074219 0.15625-0.13281 0.35156-0.17188 0.57812-0.054687 0.35547-0.078125 0.96875-0.078125 1.8438 0 1 0.035156 1.7031 0.10938 2.1094 0.125 0.63672 0.41406 1.0234 0.875 1.1562 0.09375 0.03125 0.1875 0.046875 0.28125 0.046875z"/>
|
|
312
|
+
</symbol>
|
|
313
|
+
<symbol id="fg" overflow="visible">
|
|
314
|
+
<path d="m3.7344-3.7812c0.03125-0.22656 0.13281-0.36719 0.3125-0.42188 0.03125-0.007813 0.066406-0.015625 0.10938-0.015625 0.16406 0 0.25781 0.089844 0.28125 0.26562 0 0.042969-0.023438 0.15625-0.0625 0.34375l-0.35938 1.4062c-0.10547 0.41797-0.17969 0.71484-0.21875 0.89062-0.09375 0.34375-0.14062 0.59375-0.14062 0.75 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47266-0.26562 0.64062-0.79688 0.039062-0.11328 0.082031-0.25781 0.125-0.4375 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.078125 0.21484-0.10938 0.29688-0.1875 0.36719-0.4375 0.54688-0.75 0.54688-0.375 0-0.64844-0.16016-0.8125-0.48438-0.042969-0.070312-0.074219-0.16016-0.09375-0.26562-0.41797 0.5-0.85156 0.75-1.2969 0.75-0.5 0-0.87109-0.22266-1.1094-0.67188-0.14844-0.26953-0.21875-0.57812-0.21875-0.92188 0-0.71875 0.25-1.3828 0.75-2 0.45703-0.5625 0.96094-0.86719 1.5156-0.92188 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.40625 0 0.71094 0.21484 0.92188 0.64062zm-0.65625 2.5938 0.5-1.9688c0.019531-0.09375 0.03125-0.14453 0.03125-0.15625 0-0.14453-0.058594-0.31641-0.17188-0.51562-0.15625-0.25-0.36719-0.375-0.625-0.375-0.34375 0-0.67188 0.23047-0.98438 0.6875-0.0625 0.085937-0.12109 0.17969-0.17188 0.28125-0.1875 0.38672-0.35156 0.93359-0.48438 1.6406-0.042969 0.23047-0.0625 0.41406-0.0625 0.54688 0 0.44922 0.125 0.74219 0.375 0.875 0.070313 0.042969 0.16016 0.0625 0.26562 0.0625 0.375 0 0.75-0.23438 1.125-0.70312 0.09375-0.11328 0.15625-0.22656 0.1875-0.34375 0.007812-0.019531 0.015625-0.03125 0.015625-0.03125z"/>
|
|
315
|
+
</symbol>
|
|
316
|
+
<symbol id="ff" overflow="visible">
|
|
317
|
+
<path d="m2.0312-0.015625c0 0.64453-0.21094 1.2109-0.625 1.7031-0.11719 0.13281-0.21094 0.21875-0.28125 0.25-0.074219 0-0.10938-0.042969-0.10938-0.125 0-0.03125 0.035156-0.085938 0.10938-0.15625 0.40625-0.39844 0.62891-0.88672 0.67188-1.4688 0.007813-0.0625 0.015625-0.13281 0.015625-0.20312 0-0.09375-0.007812-0.14062-0.015625-0.14062-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.09375 0.085938-0.21094 0.125-0.34375 0.125-0.25 0-0.41406-0.11328-0.48438-0.34375-0.03125-0.0625-0.046875-0.125-0.046875-0.1875 0-0.23828 0.10156-0.39844 0.3125-0.48438 0.0625-0.03125 0.13281-0.046875 0.21875-0.046875 0.28906 0 0.48828 0.19531 0.59375 0.57812 0.03125 0.14844 0.046875 0.30469 0.046875 0.46875z"/>
|
|
318
|
+
</symbol>
|
|
319
|
+
<symbol id="fe" overflow="visible">
|
|
320
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
321
|
+
</symbol>
|
|
322
|
+
<symbol id="fd" overflow="visible">
|
|
323
|
+
<path d="m12.844-7.9375-4.5938 7.9844c-0.10547 0.17578-0.21875 0.26562-0.34375 0.26562-0.11719 0-0.17969-0.058594-0.1875-0.17188-0.011719-0.054688-0.023438-0.12109-0.03125-0.20312l-0.51562-7.0625-4.125 7.1406c-0.10547 0.17578-0.19531 0.26953-0.26562 0.28125l-0.015625 0.015625h-0.046875c-0.125 0-0.19922-0.074219-0.21875-0.21875-0.011719-0.03125-0.015625-0.085938-0.015625-0.15625l-0.625-8.5469c-0.023437-0.23828-0.078125-0.39062-0.17188-0.45312h-0.015625c-0.09375-0.039062-0.27734-0.0625-0.54688-0.0625-0.21875 0-0.33984-0.054688-0.35938-0.17188 0-0.17578 0.082031-0.26562 0.25-0.26562l1.4688 0.046875 1.7031-0.046875h0.03125c0.125 0 0.1875 0.054688 0.1875 0.15625-0.03125 0.17969-0.13281 0.27344-0.29688 0.28125-0.69922 0.011719-1.0547 0.17969-1.0625 0.5l0.53125 7.0938 3.5469-6.1719-0.078125-1.0781c-0.023437-0.17578-0.11719-0.28125-0.28125-0.3125-0.10547-0.019531-0.26172-0.03125-0.46875-0.03125-0.21094 0-0.32031-0.050781-0.32812-0.15625 0-0.1875 0.085938-0.28125 0.26562-0.28125l1.4531 0.046875h0.015625l1.625-0.046875h0.078125c0.14453 0 0.21875 0.054688 0.21875 0.15625 0 0.16797-0.074219 0.26172-0.21875 0.28125h-0.17188c-0.63672 0.011719-0.96094 0.17188-0.96875 0.48438v0.17188l0.51562 6.9375 3.7812-6.5938c0.11328-0.20703 0.17188-0.35938 0.17188-0.45312 0-0.34375-0.27734-0.52344-0.82812-0.54688-0.13672 0-0.20312-0.054688-0.20312-0.17188 0-0.17578 0.085937-0.26562 0.26562-0.26562l1.4375 0.046875h0.015625l1.0469-0.046875h0.03125c0.09375 0 0.14844 0.054688 0.17188 0.15625 0 0.16797-0.070313 0.26172-0.20312 0.28125h-0.0625c-0.5625 0.042969-1.0078 0.30859-1.3281 0.79688l-0.015625 0.015625v0.015625c-0.0625 0.09375-0.13672 0.21484-0.21875 0.35938z"/>
|
|
324
|
+
</symbol>
|
|
325
|
+
<symbol id="ev" overflow="visible">
|
|
326
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
327
|
+
</symbol>
|
|
328
|
+
<symbol id="eu" overflow="visible">
|
|
329
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
330
|
+
</symbol>
|
|
331
|
+
<symbol id="et" overflow="visible">
|
|
332
|
+
<path d="m9.4844-2.2656-0.46875 2.2656h-2.2188c-0.21094 0-0.32812-0.03125-0.35938-0.09375-0.011719-0.039062-0.015625-0.10938-0.015625-0.20312 0-0.64453 0.21875-1.582 0.65625-2.8125 0.45703-1.2891 0.71875-2.2383 0.78125-2.8438 0.007813-0.13281 0.015625-0.27344 0.015625-0.42188 0-1.2266-0.43359-2.1328-1.2969-2.7188-0.46875-0.3125-0.98047-0.46875-1.5312-0.46875-0.80469 0-1.4766 0.29297-2.0156 0.875v0.015625c-0.54297 0.58594-0.8125 1.3516-0.8125 2.2969 0 0.71875 0.22656 1.7109 0.6875 2.9688 0.50781 1.4062 0.76562 2.4453 0.76562 3.1094 0 0.15625-0.039063 0.25-0.10938 0.28125-0.042969 0.011719-0.125 0.015625-0.25 0.015625h-2.2344l-0.46875-2.2656h0.35938c0.09375 0.48047 0.17578 0.82422 0.25 1.0312 0.039062 0.14844 0.125 0.23438 0.25 0.26562 0.125 0.042969 0.34766 0.0625 0.67188 0.0625h1.125c-0.125-0.51953-0.47656-1.207-1.0469-2.0625l-0.078125-0.14062c-0.03125-0.03125-0.074219-0.09375-0.125-0.1875-0.66797-1-1.0586-1.8203-1.1719-2.4688-0.042969-0.19531-0.0625-0.39453-0.0625-0.59375 0-0.96875 0.41406-1.7891 1.25-2.4688 0.82031-0.69531 1.8281-1.0469 3.0156-1.0469 1.2578 0 2.3125 0.38672 3.1562 1.1562 0.73828 0.65625 1.1094 1.4453 1.1094 2.3594 0 0.76172-0.32812 1.6562-0.98438 2.6875l-0.03125 0.03125-0.21875 0.34375c-0.63672 0.9375-1.0273 1.6523-1.1719 2.1406-0.03125 0.085938-0.058594 0.16797-0.078125 0.25h1.125c0.50781 0 0.80078-0.070312 0.875-0.21875l0.046875-0.125c0.070312-0.19531 0.15625-0.53516 0.25-1.0156z"/>
|
|
333
|
+
</symbol>
|
|
334
|
+
<symbol id="es" overflow="visible">
|
|
335
|
+
<path d="m7.75-9.5156 0.39062 3.1406h-0.34375c-0.125-1.0195-0.32422-1.7031-0.59375-2.0469-0.33594-0.44531-0.97656-0.67188-1.9219-0.67188h-1.4375c-0.36719 0-0.58594 0.058594-0.65625 0.17188v0.03125c-0.023438 0.054687-0.03125 0.17188-0.03125 0.35938v7.4219c0 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"/>
|
|
336
|
+
</symbol>
|
|
337
|
+
<symbol id="er" overflow="visible">
|
|
338
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
339
|
+
</symbol>
|
|
340
|
+
<symbol id="eq" overflow="visible">
|
|
341
|
+
<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"/>
|
|
342
|
+
</symbol>
|
|
343
|
+
<symbol id="ep" overflow="visible">
|
|
344
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
345
|
+
</symbol>
|
|
346
|
+
<symbol id="c" overflow="visible">
|
|
347
|
+
<path d="m2.0312 8.4219v-8.4375c0.03125-0.19531 0.13281-0.29688 0.3125-0.29688 0.15625 0 0.25 0.10156 0.28125 0.29688v8.4375c-0.03125 0.1875-0.125 0.28125-0.28125 0.28125-0.17969 0-0.28125-0.09375-0.3125-0.28125z"/>
|
|
348
|
+
</symbol>
|
|
349
|
+
<symbol id="z" overflow="visible">
|
|
350
|
+
<path d="m2.2188-10.031v13.062c0 0.30078-0.089844 0.45703-0.26562 0.46875-0.1875 0-0.28125-0.15625-0.28125-0.46875v-13.062c0-0.30078 0.09375-0.45703 0.28125-0.46875 0.17578 0 0.26562 0.15625 0.26562 0.46875z"/>
|
|
351
|
+
</symbol>
|
|
352
|
+
<symbol id="eo" overflow="visible">
|
|
353
|
+
<path d="m4.9062-0.78125c-0.49219 0.625-1.0469 0.9375-1.6719 0.9375-0.76172 0-1.2773-0.27344-1.5469-0.82812-0.11719-0.23828-0.17188-0.52344-0.17188-0.85938 0-0.5 0.24219-1.4102 0.73438-2.7344 0.019531-0.070313 0.046875-0.14062 0.078125-0.20312 0.15625-0.39453 0.23438-0.71094 0.23438-0.95312 0-0.30078-0.11719-0.45312-0.34375-0.45312-0.53125 0-0.96094 0.44531-1.2812 1.3281-0.011719 0-0.015625 0.007813-0.015625 0.015625v0.015625c-0.042969 0.11719-0.085937 0.24219-0.125 0.375-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.097656-0.45703 0.29688-0.875 0.40625-0.85156 0.92188-1.2812 1.5469-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.34375 0.10938 0.53125 0 0.17969-0.085938 0.46875-0.25 0.875-0.5 1.3359-0.75 2.2891-0.75 2.8594 0 0.76172 0.28906 1.1406 0.875 1.1406 0.58203 0 1.0781-0.32031 1.4844-0.96875 0.050781-0.082031 0.085937-0.14844 0.10938-0.20312 0.20703-0.92578 0.55469-2.332 1.0469-4.2188 0.070313-0.32031 0.25391-0.48438 0.54688-0.48438 0.22656 0.042969 0.36328 0.16797 0.40625 0.375 0-0.019531-0.074219 0.29297-0.21875 0.9375-0.125 0.48047-0.20312 0.79688-0.23438 0.95312l-0.39062 1.5156c-0.1875 0.8125-0.28125 1.2969-0.28125 1.4531 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.39453 0 0.71875-0.46094 0.96875-1.3906 0.03125-0.09375 0.054688-0.20703 0.078125-0.34375 0.070313-0.15625 0.14062-0.23828 0.20312-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.089844 0.46484-0.26562 0.98438-0.054688 0.15625-0.10547 0.29297-0.15625 0.40625-0.26172 0.51172-0.60938 0.76562-1.0469 0.76562-0.53125 0-0.90625-0.22266-1.125-0.67188-0.054687-0.082031-0.089844-0.17188-0.10938-0.26562z"/>
|
|
354
|
+
</symbol>
|
|
355
|
+
<symbol id="en" overflow="visible">
|
|
356
|
+
<path d="m4.4375-2.5c0 0.59375-0.22656 1.0859-0.67188 1.4688-0.375 0.3125-0.80469 0.46875-1.2812 0.46875-0.58594 0-1.0703-0.22266-1.4531-0.67188-0.3125-0.375-0.46875-0.79688-0.46875-1.2656 0-0.59375 0.22266-1.082 0.67188-1.4688 0.36328-0.3125 0.78516-0.46875 1.2656-0.46875 0.58203 0 1.0664 0.22656 1.4531 0.67188 0.32031 0.375 0.48438 0.79688 0.48438 1.2656zm-1.9375 1.5469c0.5 0 0.89844-0.20312 1.2031-0.60938 0.21875-0.28125 0.32812-0.59375 0.32812-0.9375 0-0.50781-0.19922-0.91406-0.59375-1.2188-0.28125-0.21875-0.59375-0.32812-0.9375-0.32812-0.51172 0-0.92188 0.21094-1.2344 0.625-0.21094 0.27344-0.3125 0.57812-0.3125 0.92188 0 0.5 0.19531 0.90234 0.59375 1.2031 0.28125 0.23047 0.59766 0.34375 0.95312 0.34375z"/>
|
|
357
|
+
</symbol>
|
|
358
|
+
<symbol id="em" overflow="visible">
|
|
359
|
+
<path d="m12.016-3.2188h-10.766c-0.28125-0.050781-0.4375-0.14453-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h10.766c-0.63672-0.46875-1.1172-1.0703-1.4375-1.8125h-0.015625c-0.042969-0.125-0.0625-0.20312-0.0625-0.23438 0-0.10156 0.066406-0.15625 0.20312-0.15625 0.10156 0 0.1875 0.0625 0.25 0.1875 0.40625 0.92969 1.0391 1.6094 1.9062 2.0469l0.015625 0.015625h0.015625c0.0625 0.03125 0.12891 0.0625 0.20312 0.09375 0.03125 0 0.0625 0.046875 0.09375 0.14062 0 0.0625-0.042969 0.12109-0.125 0.17188-0.023438 0-0.046875 0.011719-0.078125 0.03125-0.91797 0.4375-1.5898 1.1367-2.0156 2.0938-0.011719 0.011719-0.023438 0.03125-0.03125 0.0625-0.054688 0.085937-0.13281 0.125-0.23438 0.125-0.13672 0-0.20312-0.050781-0.20312-0.15625 0-0.14453 0.13281-0.42578 0.40625-0.84375 0.3125-0.48828 0.67969-0.89062 1.1094-1.2031z"/>
|
|
360
|
+
</symbol>
|
|
361
|
+
<symbol id="ee" overflow="visible">
|
|
362
|
+
<path d="m12.844-7.9375-4.5938 7.9844c-0.10547 0.17578-0.21875 0.26562-0.34375 0.26562-0.11719 0-0.17969-0.058594-0.1875-0.17188-0.011719-0.054688-0.023438-0.12109-0.03125-0.20312l-0.51562-7.0625-4.125 7.1406c-0.10547 0.17578-0.19531 0.26953-0.26562 0.28125l-0.015625 0.015625h-0.046875c-0.125 0-0.19922-0.074219-0.21875-0.21875-0.011719-0.03125-0.015625-0.085938-0.015625-0.15625l-0.625-8.5469c-0.023437-0.23828-0.078125-0.39062-0.17188-0.45312h-0.015625c-0.09375-0.039062-0.27734-0.0625-0.54688-0.0625-0.21875 0-0.33984-0.054688-0.35938-0.17188 0-0.17578 0.082031-0.26562 0.25-0.26562l1.4688 0.046875 1.7031-0.046875h0.03125c0.125 0 0.1875 0.054688 0.1875 0.15625-0.03125 0.17969-0.13281 0.27344-0.29688 0.28125-0.69922 0.011719-1.0547 0.17969-1.0625 0.5l0.53125 7.0938 3.5469-6.1719-0.078125-1.0781c-0.023437-0.17578-0.11719-0.28125-0.28125-0.3125-0.10547-0.019531-0.26172-0.03125-0.46875-0.03125-0.21094 0-0.32031-0.050781-0.32812-0.15625 0-0.1875 0.085938-0.28125 0.26562-0.28125l1.4531 0.046875h0.015625l1.625-0.046875h0.078125c0.14453 0 0.21875 0.054688 0.21875 0.15625 0 0.16797-0.074219 0.26172-0.21875 0.28125h-0.17188c-0.63672 0.011719-0.96094 0.17188-0.96875 0.48438v0.17188l0.51562 6.9375 3.7812-6.5938c0.11328-0.20703 0.17188-0.35938 0.17188-0.45312 0-0.34375-0.27734-0.52344-0.82812-0.54688-0.13672 0-0.20312-0.054688-0.20312-0.17188 0-0.17578 0.085937-0.26562 0.26562-0.26562l1.4375 0.046875h0.015625l1.0469-0.046875h0.03125c0.09375 0 0.14844 0.054688 0.17188 0.15625 0 0.16797-0.070313 0.26172-0.20312 0.28125h-0.0625c-0.5625 0.042969-1.0078 0.30859-1.3281 0.79688l-0.015625 0.015625v0.015625c-0.0625 0.09375-0.13672 0.21484-0.21875 0.35938z"/>
|
|
363
|
+
</symbol>
|
|
364
|
+
<symbol id="ed" overflow="visible">
|
|
365
|
+
<path d="m0.17188-6.0469-0.17188-0.20312 0.35938-0.28125c0.53906-0.45703 1.0312-0.6875 1.4688-0.6875 0.22656 0 0.45703 0.058594 0.6875 0.17188 0.22656 0.11719 0.45703 0.23047 0.6875 0.34375 0.23828 0.11719 0.47266 0.17188 0.70312 0.17188 0.4375 0 0.92578-0.22656 1.4688-0.6875l0.17188 0.20312-0.34375 0.28125c-0.55469 0.46094-1.0469 0.6875-1.4844 0.6875-0.23047 0-0.46094-0.054687-0.6875-0.17188-0.23047-0.11328-0.46094-0.22656-0.6875-0.34375-0.23047-0.11328-0.46094-0.17188-0.6875-0.17188-0.4375 0-0.93359 0.23047-1.4844 0.6875z"/>
|
|
366
|
+
</symbol>
|
|
367
|
+
<symbol id="ec" overflow="visible">
|
|
368
|
+
<path d="m1.7969-1.1562 3.4688-5.8281c0.070313-0.11328 0.16016-0.17188 0.26562-0.17188 0.10156 0 0.16016 0.03125 0.17188 0.09375 0 0.023438 0.003906 0.070312 0.015625 0.14062l0.60938 6.25c0.019531 0.16797 0.0625 0.26562 0.125 0.29688v0.015625c0.082031 0.03125 0.25781 0.046875 0.53125 0.046875 0.14453 0 0.21875 0.039062 0.21875 0.10938 0 0.13672-0.058594 0.20312-0.17188 0.20312l-1.125-0.03125-1.25 0.03125c-0.09375 0-0.14062-0.035156-0.14062-0.10938 0.050781-0.125 0.12891-0.19141 0.23438-0.20312 0.47656 0 0.71875-0.10938 0.71875-0.32812 0 0.011719-0.054688-0.54688-0.15625-1.6719h-2.5156l-0.75 1.2812c-0.09375 0.16797-0.14062 0.29297-0.14062 0.375 0 0.21094 0.15625 0.32422 0.46875 0.34375 0.10156 0 0.15625 0.042969 0.15625 0.125 0 0.125-0.0625 0.1875-0.1875 0.1875l-0.96875-0.03125h-0.03125l-0.84375 0.03125h-0.015625c-0.09375 0-0.14062-0.035156-0.14062-0.10938 0-0.125 0.050781-0.1875 0.15625-0.1875v-0.015625h0.0625c0.41406-0.019531 0.75781-0.19531 1.0312-0.53125 0.0625-0.09375 0.12891-0.19531 0.20312-0.3125zm1.1875-1.4688h2.2969l-0.32812-3.2969z"/>
|
|
369
|
+
</symbol>
|
|
370
|
+
<symbol id="eb" overflow="visible">
|
|
371
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
372
|
+
</symbol>
|
|
373
|
+
<symbol id="ea" overflow="visible">
|
|
374
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
375
|
+
</symbol>
|
|
376
|
+
<symbol id="dz" overflow="visible">
|
|
377
|
+
<path d="m9.4844-2.2656-0.46875 2.2656h-2.2188c-0.21094 0-0.32812-0.03125-0.35938-0.09375-0.011719-0.039062-0.015625-0.10938-0.015625-0.20312 0-0.64453 0.21875-1.582 0.65625-2.8125 0.45703-1.2891 0.71875-2.2383 0.78125-2.8438 0.007813-0.13281 0.015625-0.27344 0.015625-0.42188 0-1.2266-0.43359-2.1328-1.2969-2.7188-0.46875-0.3125-0.98047-0.46875-1.5312-0.46875-0.80469 0-1.4766 0.29297-2.0156 0.875v0.015625c-0.54297 0.58594-0.8125 1.3516-0.8125 2.2969 0 0.71875 0.22656 1.7109 0.6875 2.9688 0.50781 1.4062 0.76562 2.4453 0.76562 3.1094 0 0.15625-0.039063 0.25-0.10938 0.28125-0.042969 0.011719-0.125 0.015625-0.25 0.015625h-2.2344l-0.46875-2.2656h0.35938c0.09375 0.48047 0.17578 0.82422 0.25 1.0312 0.039062 0.14844 0.125 0.23438 0.25 0.26562 0.125 0.042969 0.34766 0.0625 0.67188 0.0625h1.125c-0.125-0.51953-0.47656-1.207-1.0469-2.0625l-0.078125-0.14062c-0.03125-0.03125-0.074219-0.09375-0.125-0.1875-0.66797-1-1.0586-1.8203-1.1719-2.4688-0.042969-0.19531-0.0625-0.39453-0.0625-0.59375 0-0.96875 0.41406-1.7891 1.25-2.4688 0.82031-0.69531 1.8281-1.0469 3.0156-1.0469 1.2578 0 2.3125 0.38672 3.1562 1.1562 0.73828 0.65625 1.1094 1.4453 1.1094 2.3594 0 0.76172-0.32812 1.6562-0.98438 2.6875l-0.03125 0.03125-0.21875 0.34375c-0.63672 0.9375-1.0273 1.6523-1.1719 2.1406-0.03125 0.085938-0.058594 0.16797-0.078125 0.25h1.125c0.50781 0 0.80078-0.070312 0.875-0.21875l0.046875-0.125c0.070312-0.19531 0.15625-0.53516 0.25-1.0156z"/>
|
|
378
|
+
</symbol>
|
|
379
|
+
<symbol id="dy" overflow="visible">
|
|
380
|
+
<path d="m7.75-9.5156 0.39062 3.1406h-0.34375c-0.125-1.0195-0.32422-1.7031-0.59375-2.0469-0.33594-0.44531-0.97656-0.67188-1.9219-0.67188h-1.4375c-0.36719 0-0.58594 0.058594-0.65625 0.17188v0.03125c-0.023438 0.054687-0.03125 0.17188-0.03125 0.35938v7.4219c0 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"/>
|
|
381
|
+
</symbol>
|
|
382
|
+
<symbol id="dx" overflow="visible">
|
|
383
|
+
<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.054687-0.33594 0.17188-0.67188 0.050781-0.125 0.09375-0.22266 0.125-0.29688 0.16406-0.33203 0.36719-0.51953 0.60938-0.5625 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.375 0 0.64453 0.16406 0.8125 0.48438 0.03125 0.074219 0.054688 0.15234 0.078125 0.23438 0.007813 0.011719 0.015625 0.027344 0.015625 0.046875 0.38281-0.47656 0.8125-0.73438 1.2812-0.76562 0.375 0 0.62891 0.13281 0.76562 0.39062 0.039063 0.085938 0.0625 0.17188 0.0625 0.26562 0 0.26172-0.10938 0.4375-0.32812 0.53125-0.074219 0.03125-0.14844 0.046875-0.21875 0.046875-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.21875 0.10938-0.37891 0.32812-0.48438l0.015625-0.015625c0.050781-0.019531 0.10938-0.035156 0.17188-0.046875l-0.20312-0.09375c-0.085938-0.007813-0.15625-0.019531-0.21875-0.03125-0.28125 0-0.54688 0.10938-0.79688 0.32812-0.21094 0.1875-0.38672 0.4375-0.53125 0.75-0.011719 0.03125-0.023437 0.058594-0.03125 0.078125l-0.32812 1.2969-0.39062 1.5781c-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"/>
|
|
384
|
+
</symbol>
|
|
385
|
+
<symbol id="dw" overflow="visible">
|
|
386
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
387
|
+
</symbol>
|
|
388
|
+
<symbol id="dv" overflow="visible">
|
|
389
|
+
<path d="m5.9844-8.5-1.875 7.4375c-0.03125 0.13672-0.046875 0.23438-0.046875 0.29688 0 0.13672 0.070312 0.22656 0.21875 0.26562h0.015625c0.0625 0.023438 0.15625 0.03125 0.28125 0.03125 0.23828 0.023438 0.53516 0.03125 0.89062 0.03125 0.28906 0 0.44531 0.03125 0.46875 0.09375 0.007812 0.011719 0.015625 0.03125 0.015625 0.0625-0.042969 0.17969-0.14844 0.27344-0.3125 0.28125l-1.2031-0.03125h-0.015625l-1.125-0.015625h-0.03125l-1.1719 0.015625h-0.015625l-1.1406 0.03125h-0.015625c-0.15625 0-0.23438-0.054688-0.23438-0.17188 0-0.13281 0.050781-0.21875 0.15625-0.25 0.0625-0.007813 0.20703-0.015625 0.4375-0.015625 0.82031 0 1.3164-0.078125 1.4844-0.23438 0.050781-0.050781 0.09375-0.13281 0.125-0.25 0-0.019531 0.003906-0.046875 0.015625-0.078125v-0.015625h0.015625v-0.015625c0-0.007812 0.003906-0.035156 0.015625-0.078125l1.875-7.4688c0.039062-0.11328 0.0625-0.21094 0.0625-0.29688 0-0.082031-0.042969-0.13281-0.125-0.15625-0.0625-0.007812-0.15234-0.015625-0.26562-0.015625h-0.54688c-0.96875 0-1.6328 0.10938-1.9844 0.32812-0.1875 0.11719-0.35938 0.28906-0.51562 0.51562l-0.015625 0.015625v0.015625h-0.015625c-0.1875 0.30469-0.41406 0.82031-0.67188 1.5469-0.0625 0.17969-0.11719 0.27344-0.15625 0.28125-0.023437 0.011719-0.046875 0.015625-0.078125 0.015625-0.10547 0-0.15625-0.050781-0.15625-0.15625 0-0.050781 0.023438-0.13281 0.078125-0.25l0.84375-2.4688c0.050781-0.15625 0.11328-0.24219 0.1875-0.26562 0.050781-0.007812 0.13281-0.015625 0.25-0.015625h7.7812c0.22656 0 0.35156 0.054687 0.375 0.15625 0 0.085937-0.011719 0.16406-0.03125 0.23438l-0.375 2.4375c-0.03125 0.19922-0.10547 0.30859-0.21875 0.32812-0.10547 0-0.15625-0.0625-0.15625-0.1875 0-0.0625 0.007813-0.14844 0.03125-0.26562 0.070313-0.47656 0.10938-0.84766 0.10938-1.1094 0-0.53906-0.1875-0.88281-0.5625-1.0312-0.25-0.082031-0.74219-0.125-1.4688-0.125-0.51172 0-0.80859 0.011719-0.89062 0.03125-0.11719 0.03125-0.20312 0.13672-0.26562 0.3125v0.015625c-0.023438 0.042969-0.039062 0.10547-0.046875 0.1875z"/>
|
|
390
|
+
</symbol>
|
|
391
|
+
<symbol id="du" overflow="visible">
|
|
392
|
+
<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"/>
|
|
393
|
+
</symbol>
|
|
394
|
+
<symbol id="dt" overflow="visible">
|
|
395
|
+
<path d="m0.39062 2.3594 2.125-8.4844c0.26953-1.0625 0.79688-1.9609 1.5781-2.7031 0.72656-0.69531 1.4922-1.0469 2.2969-1.0469 0.76953 0 1.3203 0.30859 1.6562 0.92188 0.14453 0.27344 0.21875 0.5625 0.21875 0.875 0 0.69922-0.29297 1.3438-0.875 1.9375-0.19922 0.1875-0.41406 0.35547-0.64062 0.5 0.625 0.42969 0.9375 1.0742 0.9375 1.9375 0 0.96875-0.375 1.8516-1.125 2.6406-0.71875 0.75-1.5273 1.1602-2.4219 1.2344h-0.17188c-0.90625 0-1.5742-0.34766-2-1.0469-0.10547-0.1875-0.1875-0.38281-0.25-0.59375l-1.0469 4.0938-0.015625 0.03125c-0.03125 0.039062-0.078125 0.0625-0.14062 0.0625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.03125 0.015625-0.10547 0.046875-0.21875zm4.2031-7.9688c0.15625 0.054687 0.35156 0.078125 0.59375 0.078125 0.28125 0 0.50391-0.035156 0.67188-0.10938-0.11719-0.050781-0.29688-0.078125-0.54688-0.078125-0.33594 0-0.57422 0.039062-0.71875 0.10938zm1.7031-0.28125c0.57031-0.42578 0.92188-1.1562 1.0469-2.1875v-0.046875c0.019531-0.125 0.03125-0.22266 0.03125-0.29688 0-0.66406-0.27344-1.0391-0.8125-1.125-0.0625-0.007813-0.125-0.015625-0.1875-0.015625-0.78125 0-1.5117 0.35938-2.1875 1.0781-0.64844 0.67969-1.1094 1.5625-1.3906 2.6562l-0.64062 2.5938c-0.125 0.49219-0.1875 0.83984-0.1875 1.0469 0 0.77344 0.27344 1.3438 0.82812 1.7188 0.32031 0.21875 0.70312 0.32812 1.1406 0.32812 0.72656 0 1.3516-0.39062 1.875-1.1719 0.0625-0.082031 0.11719-0.17188 0.17188-0.26562 0.32031-0.61328 0.53906-1.3672 0.65625-2.2656 0.007813-0.15625 0.015625-0.28516 0.015625-0.39062 0-0.48828-0.13672-0.87891-0.40625-1.1719-0.30469 0.125-0.65625 0.1875-1.0625 0.1875-0.63672 0-0.95312-0.125-0.95312-0.375 0-0.28906 0.36328-0.4375 1.0938-0.4375 0.38281 0 0.70703 0.046875 0.96875 0.14062z"/>
|
|
396
|
+
</symbol>
|
|
397
|
+
<symbol id="ds" overflow="visible">
|
|
398
|
+
<path d="m0.57812-3.5625-0.0625 0.078125c-0.17969 0-0.26562-0.046875-0.26562-0.14062 0-0.25781 0.16016-0.63281 0.48438-1.125 0.64453-0.9375 1.3945-1.4141 2.25-1.4375 0.83203 0 1.4531 0.51562 1.8594 1.5469 0.34375 0.86719 0.53516 1.8125 0.57812 2.8438 0.73828-1.8438 1.3516-3.2227 1.8438-4.1406 0.03125-0.0625 0.085937-0.09375 0.17188-0.09375 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.042969-0.089844 0.21875-0.26562 0.53125-0.69922 1.375-1.3047 2.7969-1.8125 4.2656-0.042969 0.11719-0.074219 0.21875-0.09375 0.3125-0.042969 0.11719-0.085938 0.29688-0.125 0.54688-0.085938 0.64453-0.25781 1.4453-0.51562 2.4062-0.15625 0.53125-0.30469 0.8125-0.4375 0.84375-0.125 0-0.1875-0.085937-0.1875-0.25 0-0.38672 0.23438-1.3711 0.70312-2.9531 0.007812-0.007812 0.019531-0.03125 0.03125-0.0625 0.10156-0.32031 0.15625-0.78125 0.15625-1.375 0-2.1875-0.65234-3.3672-1.9531-3.5469-0.10547-0.007813-0.21094-0.015625-0.3125-0.015625-0.65625 0-1.2109 0.23047-1.6562 0.6875l-0.015625 0.015625c-0.25 0.25-0.43359 0.55859-0.54688 0.92188z"/>
|
|
399
|
+
</symbol>
|
|
400
|
+
<symbol id="dr" overflow="visible">
|
|
401
|
+
<path d="m3.7031-6.125c-0.48047-0.92578-0.75-1.5977-0.8125-2.0156-0.023437-0.125-0.03125-0.25-0.03125-0.375 0-0.73828 0.33203-1.1953 1-1.375 0.17578-0.039063 0.375-0.0625 0.59375-0.0625 0.28125 0 0.66016 0.054687 1.1406 0.15625 0.39453 0.085937 0.61719 0.17188 0.67188 0.26562 0.039063 0.042969 0.0625 0.10547 0.0625 0.1875 0 0.21875-0.10547 0.38672-0.3125 0.5-0.074219 0.042969-0.15625 0.0625-0.25 0.0625-0.11719 0-0.37109-0.11328-0.76562-0.34375-0.38672-0.25-0.71875-0.375-1-0.375-0.36719 0-0.60547 0.13672-0.71875 0.40625-0.03125 0.085938-0.046875 0.16406-0.046875 0.23438 0 0.41797 0.44141 1.1836 1.3281 2.2969 0.44531 0.58594 0.73828 1.0742 0.875 1.4688 0.10156 0.35547 0.15625 0.73047 0.15625 1.125 0 1.0742-0.27734 2.0312-0.82812 2.875-0.55469 0.84375-1.2109 1.2656-1.9688 1.2656-0.8125 0-1.4219-0.32812-1.8281-0.98438-0.25-0.39453-0.375-0.85156-0.375-1.375 0-0.9375 0.34766-1.8125 1.0469-2.625 0.58203-0.6875 1.2695-1.125 2.0625-1.3125zm0.15625 0.3125c-0.96875 0.26172-1.6719 1.0547-2.1094 2.375-0.19922 0.61719-0.29688 1.1641-0.29688 1.6406 0 0.79297 0.26562 1.3086 0.79688 1.5469 0.16406 0.074219 0.34766 0.10938 0.54688 0.10938 0.63281 0 1.1328-0.50781 1.5-1.5312 0.22656-0.625 0.34375-1.2031 0.34375-1.7344 0-0.64453-0.22656-1.3906-0.67188-2.2344-0.023438-0.03125-0.058594-0.085937-0.10938-0.17188z"/>
|
|
402
|
+
</symbol>
|
|
403
|
+
<symbol id="dq" overflow="visible">
|
|
404
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
405
|
+
</symbol>
|
|
406
|
+
<symbol id="dp" overflow="visible">
|
|
407
|
+
<path d="m3.3438-9.5625-1.0312 4.2188c0.53906-0.5625 1.0859-0.84375 1.6406-0.84375 0.69531 0 1.2188 0.32422 1.5625 0.96875 0.19531 0.375 0.29688 0.79688 0.29688 1.2656 0 0.99219-0.34375 1.918-1.0312 2.7812-0.64844 0.79297-1.3594 1.2266-2.1406 1.3125-0.074219 0.007813-0.14062 0.015625-0.20312 0.015625-0.67969 0-1.1797-0.3125-1.5-0.9375-0.1875-0.35156-0.28125-0.77344-0.28125-1.2656 0-0.3125 0.070312-0.78125 0.21875-1.4062l1.1562-4.5625c0.125-0.55078 0.1875-0.84375 0.1875-0.875 0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.085938-0.25 0.26562-0.28125l1.7031-0.14062c0.125 0 0.1875 0.054688 0.1875 0.15625zm-1.3125 5.2969-0.3125 1.2812c-0.14844 0.59375-0.21875 1.0703-0.21875 1.4219 0 0.80469 0.23828 1.2617 0.71875 1.375 0.070312 0.023438 0.14453 0.03125 0.21875 0.03125 0.48828 0 0.95312-0.32812 1.3906-0.98438 0.09375-0.13281 0.17969-0.28516 0.26562-0.45312 0.25-0.53125 0.45703-1.25 0.625-2.1562 0.050781-0.32031 0.078125-0.59375 0.078125-0.8125 0-0.75-0.23047-1.1797-0.6875-1.2969-0.0625-0.007813-0.125-0.015625-0.1875-0.015625-0.5625 0-1.125 0.37109-1.6875 1.1094-0.074219 0.09375-0.14062 0.26172-0.20312 0.5z"/>
|
|
408
|
+
</symbol>
|
|
409
|
+
<symbol id="x" overflow="visible">
|
|
410
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
411
|
+
</symbol>
|
|
412
|
+
<symbol id="do" overflow="visible">
|
|
413
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
414
|
+
</symbol>
|
|
415
|
+
<symbol id="dn" overflow="visible">
|
|
416
|
+
<path d="m5.7188-3.2188v3.9219c0 0.28906-0.089844 0.44141-0.26562 0.45312-0.1875 0-0.28125-0.15234-0.28125-0.45312v-3.9219h-3.9219c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h3.9219v-3.9219c0-0.28906 0.09375-0.44141 0.28125-0.45312 0.17578 0 0.26562 0.15234 0.26562 0.45312v3.9219h3.9062c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
417
|
+
</symbol>
|
|
418
|
+
<symbol id="dm" overflow="visible">
|
|
419
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
420
|
+
</symbol>
|
|
421
|
+
<symbol id="e" overflow="visible">
|
|
422
|
+
<path d="m2.0312 8.4219v-8.4375c0.03125-0.19531 0.13281-0.29688 0.3125-0.29688 0.15625 0 0.25 0.10156 0.28125 0.29688v8.4375c-0.03125 0.1875-0.125 0.28125-0.28125 0.28125-0.17969 0-0.28125-0.09375-0.3125-0.28125z"/>
|
|
423
|
+
</symbol>
|
|
424
|
+
<symbol id="dk" overflow="visible">
|
|
425
|
+
<path d="m4.2031 24.781c-0.085937 0-0.125-0.054688-0.125-0.15625 0-2.4062 0.10156-4.7148 0.3125-6.9219 0.20703-2.2109 0.56641-4.3867 1.0781-6.5312 0.50781-2.1367 1.2266-4.1992 2.1562-6.1875 0.9375-1.9805 2.1133-3.8086 3.5312-5.4844 0.050781-0.03125 0.085938-0.046875 0.10938-0.046875h0.42188c0.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.2617 1.7188-2.2969 3.5664-3.1094 5.5469-0.80469 1.9883-1.4219 4.0391-1.8594 6.1562-0.42969 2.125-0.71875 4.2695-0.875 6.4375-0.15625 2.1641-0.23438 4.4453-0.23438 6.8438 0 0.019531-0.015625 0.046875-0.046875 0.078125-0.023437 0.03125-0.042969 0.046875-0.0625 0.046875z"/>
|
|
426
|
+
</symbol>
|
|
427
|
+
<symbol id="w" overflow="visible">
|
|
428
|
+
<path d="m4.0781 8.4219v-8.4375c0-0.03125 0.007813-0.054688 0.03125-0.078125 0.03125-0.03125 0.0625-0.046875 0.09375-0.046875h1.375c0.019531 0 0.039063 0.015625 0.0625 0.046875 0.03125 0.023438 0.046875 0.046875 0.046875 0.078125v8.4375c0 0.019531-0.015625 0.039063-0.046875 0.0625-0.023437 0.03125-0.042969 0.046875-0.0625 0.046875h-1.375c-0.085937 0-0.125-0.039062-0.125-0.10938z"/>
|
|
429
|
+
</symbol>
|
|
430
|
+
<symbol id="dj" overflow="visible">
|
|
431
|
+
<path d="m11.156 24.578c-1.4062-1.668-2.5781-3.5-3.5156-5.5-0.9375-1.9922-1.6641-4.0547-2.1719-6.1875-0.51172-2.1367-0.87109-4.3086-1.0781-6.5156-0.21094-2.2109-0.3125-4.5156-0.3125-6.9219 0-0.10156 0.039063-0.15625 0.125-0.15625h1.375c0.019531 0 0.039063 0.015625 0.0625 0.046875 0.03125 0.023438 0.046875 0.046875 0.046875 0.078125 0 2.3945 0.078125 4.6758 0.23438 6.8438 0.15625 2.1641 0.44531 4.3047 0.875 6.4219 0.4375 2.125 1.0547 4.1758 1.8594 6.1562 0.8125 1.9883 1.8477 3.8477 3.1094 5.5781 0.019531 0.019531 0.03125 0.046875 0.03125 0.078125 0 0.019531-0.015625 0.046875-0.046875 0.078125-0.023438 0.03125-0.042969 0.046875-0.0625 0.046875h-0.42188c-0.023437 0-0.042969-0.007812-0.0625-0.015625-0.011719-0.011719-0.027344-0.023437-0.046875-0.03125z"/>
|
|
432
|
+
</symbol>
|
|
433
|
+
<symbol id="di" overflow="visible">
|
|
434
|
+
<path d="m6.5469 24.656c0-2.4688-0.078125-4.7656-0.23438-6.8906s-0.44922-4.25-0.875-6.375c-0.42969-2.1172-1.0469-4.168-1.8594-6.1562-0.8125-1.9922-1.8516-3.8438-3.1094-5.5625-0.023438-0.03125-0.03125-0.0625-0.03125-0.09375 0-0.082031 0.039062-0.125 0.125-0.125h0.42188c0.039063 0 0.070313 0.015625 0.09375 0.046875 1.4141 1.6758 2.5859 3.5039 3.5156 5.4844 0.9375 1.9883 1.6602 4.0547 2.1719 6.2031 0.51953 2.1562 0.87891 4.3281 1.0781 6.5156 0.20703 2.1875 0.3125 4.4922 0.3125 6.9219 0 0.10156-0.039062 0.15625-0.10938 0.15625h-1.375c-0.085937 0-0.125-0.042969-0.125-0.125z"/>
|
|
435
|
+
</symbol>
|
|
436
|
+
<symbol id="v" overflow="visible">
|
|
437
|
+
<path d="m6.5469 8.4219v-8.4375c0-0.03125 0.007813-0.054688 0.03125-0.078125 0.03125-0.03125 0.0625-0.046875 0.09375-0.046875h1.375c0.03125 0 0.054687 0.015625 0.078125 0.046875 0.019531 0.023438 0.03125 0.046875 0.03125 0.078125v8.4375c0 0.019531-0.011719 0.039063-0.03125 0.0625-0.023438 0.03125-0.046875 0.046875-0.078125 0.046875h-1.375c-0.085937 0-0.125-0.039062-0.125-0.10938z"/>
|
|
438
|
+
</symbol>
|
|
439
|
+
<symbol id="dh" overflow="visible">
|
|
440
|
+
<path d="m0.5625 24.625c-0.085938 0-0.125-0.042969-0.125-0.125 0-0.03125 0.007812-0.058594 0.03125-0.078125 1.2578-1.7305 2.2969-3.5898 3.1094-5.5781 0.8125-1.9922 1.4297-4.0469 1.8594-6.1719 0.42578-2.1172 0.71875-4.2344 0.875-6.3594s0.23438-4.4219 0.23438-6.8906c0-0.03125 0.007813-0.054687 0.03125-0.078125 0.03125-0.03125 0.0625-0.046875 0.09375-0.046875h1.375c0.03125 0 0.054687 0.015625 0.078125 0.046875 0.019531 0.03125 0.03125 0.070312 0.03125 0.10938 0 2.4258-0.10547 4.7344-0.3125 6.9219-0.19922 2.1875-0.55859 4.3516-1.0781 6.5-0.51172 2.1445-1.2344 4.2109-2.1719 6.2031-0.9375 2-2.1094 3.832-3.5156 5.5-0.023437 0.03125-0.054687 0.046875-0.09375 0.046875z"/>
|
|
441
|
+
</symbol>
|
|
442
|
+
<symbol id="dg" overflow="visible">
|
|
443
|
+
<path d="m9.8281 7.875v-8.1875c0-0.050781 0.023437-0.10156 0.078125-0.15625 0.0625-0.0625 0.125-0.09375 0.1875-0.09375h4.7188c0.070312 0 0.12891 0.03125 0.17188 0.09375 0.050781 0.054688 0.078125 0.11719 0.078125 0.1875 0 0.074219-0.027344 0.14062-0.078125 0.20312-0.042969 0.054688-0.10156 0.078125-0.17188 0.078125h-4.4219v7.875c0 0.0625-0.03125 0.11719-0.09375 0.17188-0.054687 0.050781-0.11719 0.078125-0.1875 0.078125-0.074219 0-0.14062-0.027344-0.20312-0.078125-0.054688-0.054687-0.078125-0.10938-0.078125-0.17188z"/>
|
|
444
|
+
</symbol>
|
|
445
|
+
<symbol id="u" overflow="visible">
|
|
446
|
+
<path d="m9.8281 8.4219v-8.4531c0-0.070312 0.023437-0.12891 0.078125-0.17188 0.0625-0.050781 0.12891-0.078125 0.20312-0.078125 0.070313 0 0.13281 0.027344 0.1875 0.078125 0.0625 0.042969 0.09375 0.10156 0.09375 0.17188v8.4531c0 0.070313-0.03125 0.13281-0.09375 0.1875-0.054687 0.050781-0.11719 0.078125-0.1875 0.078125-0.074219 0-0.14062-0.027344-0.20312-0.078125-0.054688-0.054687-0.078125-0.11719-0.078125-0.1875z"/>
|
|
447
|
+
</symbol>
|
|
448
|
+
<symbol id="dl" overflow="visible">
|
|
449
|
+
<path d="m9.8281 25.203-6.8594-20.797-1.1562 2.3125-0.26562-0.26562 2.0156-3.9531 6.2656 19v-21.531c0-0.070312 0.023437-0.12891 0.078125-0.17188 0.0625-0.050781 0.12891-0.078125 0.20312-0.078125 0.070313 0 0.13281 0.027344 0.1875 0.078125 0.0625 0.042969 0.09375 0.10156 0.09375 0.17188v24.969c0 0.11328-0.089844 0.20312-0.26562 0.26562z"/>
|
|
450
|
+
</symbol>
|
|
451
|
+
<symbol id="df" overflow="visible">
|
|
452
|
+
<path d="m1.9219-8.2188 3.9219 4.5156c0.019531-0.30078 0.097656-0.82031 0.23438-1.5625 0.15625-0.80078 0.25391-1.4844 0.29688-2.0469-0.61719-0.64453-0.92969-1.1445-0.9375-1.5 0-0.48828 0.11719-0.78516 0.35938-0.89062 0.050781 0 0.09375 0.027344 0.125 0.078125 0.0625 0.19922 0.25781 0.55859 0.59375 1.0781 0.1875 0.30469 0.375 0.54297 0.5625 0.71875l0.015625 0.015625c0.03125 0.03125 0.082031 0.078125 0.15625 0.14062 0.33203 0.3125 0.5 0.65625 0.5 1.0312 0 0.52344-0.12109 0.82422-0.35938 0.90625-0.074219 0-0.12109-0.054687-0.14062-0.17188-0.023438-0.32031-0.17969-0.65625-0.46875-1 0-0.019531-0.09375 0.57031-0.28125 1.7656-0.16797 0.90625-0.25 1.5078-0.25 1.7969 0 0.085938 0.066406 0.20312 0.20312 0.35938 0.78906 0.89844 1.2188 1.5 1.2812 1.8125 0.007813 0.13672 0.015625 0.23047 0.015625 0.28125 0 0.48047-0.12109 0.77344-0.35938 0.875-0.09375 0-0.14062-0.0625-0.14062-0.1875-0.03125-0.42578-0.24219-0.85938-0.625-1.2969l-4-4.6094c-0.35547 0.71875-0.53125 1.6016-0.53125 2.6406 0 0.3125 0.085938 0.59375 0.26562 0.84375 0.082031 0.125 0.21094 0.29688 0.39062 0.51562 0.40625 0.49219 0.60938 0.91406 0.60938 1.2656 0 0.5625-0.46484 0.84375-1.3906 0.84375h-0.82812c-0.21875 0-0.33984-0.050781-0.35938-0.15625 0-0.10156 0.078125-0.15625 0.23438-0.15625 0.65625-0.019531 0.98438-0.20312 0.98438-0.54688 0-0.26953-0.13281-0.64453-0.39062-1.125-0.30469-0.55078-0.45312-1.0156-0.45312-1.3906 0-0.9375 0.37891-1.9609 1.1406-3.0781l-0.85938-1.0156c-0.42969-0.625-0.64844-1.0703-0.65625-1.3438 0-0.48828 0.11719-0.78516 0.35938-0.89062 0.09375 0 0.14062 0.0625 0.14062 0.1875 0.039062 0.42969 0.25391 0.85938 0.64062 1.2969z"/>
|
|
453
|
+
</symbol>
|
|
454
|
+
<symbol id="dd" overflow="visible">
|
|
455
|
+
<path d="m8.5469-8.4531v7h0.54688c0.20703 0.023437 0.3125 0.11719 0.3125 0.28125 0 0.09375-0.070312 0.20312-0.20312 0.32812l-0.95312 0.95312c-0.10547 0.10156-0.21875 0.16016-0.34375 0.17188h-7.5c-0.29297 0-0.44531-0.070312-0.46875-0.20312-0.0078125-0.023438-0.015625-0.046875-0.015625-0.078125 0-0.070312 0.054688-0.16406 0.15625-0.28125l0.078125-0.0625 0.9375-0.95312c0.11328-0.10156 0.23438-0.15625 0.35938-0.15625h6.5312v-6.2812c0-0.22656-0.046875-0.37891-0.14062-0.45312-0.125-0.10156-0.32422-0.15625-0.59375-0.15625h-4.7969c-0.61719 0-1.0156-0.0625-1.2031-0.1875-0.085938-0.050781-0.15625-0.11719-0.21875-0.20312l-0.015625-0.015625v-0.015625c-0.15625-0.23828-0.23438-0.66016-0.23438-1.2656 0-0.35156 0.035156-0.55469 0.10938-0.60938 0.039063-0.03125 0.097656-0.046875 0.17188-0.046875 0.125 0 0.21094 0.078125 0.26562 0.23438 0.1875 0.29297 0.45312 0.44531 0.79688 0.45312h5.1406c0.57031 0 0.94141 0.18359 1.1094 0.54688 0.11328 0.24219 0.17188 0.57422 0.17188 1z"/>
|
|
456
|
+
</symbol>
|
|
457
|
+
<symbol id="dc" overflow="visible">
|
|
458
|
+
<path d="m2.125-10h2.3906c0.64453 0 1.0039 0.23438 1.0781 0.70312 0.007812 0.042969 0.015625 0.085937 0.015625 0.125 0 0.30469-0.14062 0.53125-0.42188 0.6875-0.074219 0.054687-0.16406 0.089844-0.26562 0.10938l0.0625 1.375c0.26953 3.2617 0.40625 5.1797 0.40625 5.75v0.20312c0 0.54297-0.027344 0.89062-0.078125 1.0469-0.085938 0.34375-0.22656 0.53516-0.42188 0.57812-0.023437 0.007813-0.042969 0.015625-0.0625 0.015625-0.15625 0-0.26172-0.125-0.3125-0.375v-0.0625l-0.10938-0.6875c-0.46875 0.48047-0.71484 0.72266-0.73438 0.73438-0.074219 0.050781-0.21094 0.078125-0.40625 0.078125h-2.8594c-0.29297 0-0.44531-0.070312-0.46875-0.20312-0.0078125-0.023438-0.015625-0.046875-0.015625-0.078125 0-0.070312 0.054688-0.16406 0.15625-0.28125l0.078125-0.0625 0.9375-0.95312c0.11328-0.10156 0.23438-0.15625 0.35938-0.15625h2.9219v-6.8906h-2.3125c-0.63672 0-1.0312-0.23438-1.1875-0.70312-0.0625-0.21875-0.09375-0.54688-0.09375-0.98438 0-0.35156 0.035156-0.55469 0.10938-0.60938 0.039063-0.03125 0.097656-0.046875 0.17188-0.046875 0.125 0 0.21094 0.078125 0.26562 0.23438 0.1875 0.29297 0.45312 0.44531 0.79688 0.45312z"/>
|
|
459
|
+
</symbol>
|
|
460
|
+
<symbol id="db" overflow="visible">
|
|
461
|
+
<path d="m7.4844-8.3438h-5.4219c-0.63672 0-1.0312-0.23438-1.1875-0.70312-0.0625-0.21875-0.09375-0.54688-0.09375-0.98438 0-0.35156 0.035156-0.55469 0.10938-0.60938 0.039063-0.03125 0.097656-0.046875 0.17188-0.046875 0.125 0 0.21094 0.078125 0.26562 0.23438 0.1875 0.29297 0.45312 0.44531 0.79688 0.45312h5.5c0.65625 0 1.0195 0.23438 1.0938 0.70312 0.007812 0.042969 0.015625 0.085937 0.015625 0.125 0 0.30469-0.14062 0.53125-0.42188 0.6875l-0.015625 0.015625h-0.015625c-0.074219 0.042969-0.15234 0.074219-0.23438 0.09375l0.0625 1.375c0.26953 3.2617 0.40625 5.1797 0.40625 5.75v0.20312c0 0.54297-0.027344 0.89062-0.078125 1.0469-0.09375 0.34375-0.23438 0.53516-0.42188 0.57812-0.023437 0.007813-0.042969 0.015625-0.0625 0.015625-0.14844 0-0.24609-0.10547-0.29688-0.3125-0.011719-0.054688-0.039062-0.20312-0.078125-0.45312-0.0625-0.375-0.09375-0.73828-0.09375-1.0938z"/>
|
|
462
|
+
</symbol>
|
|
463
|
+
<symbol id="da" overflow="visible">
|
|
464
|
+
<path d="m0.67188-0.51562-0.21875-0.15625c0.72656-0.5625 1.2422-0.95703 1.5469-1.1875 0.36328-0.25781 0.70312-0.51953 1.0156-0.78125 0.3125-0.25781 0.60938-0.53125 0.89062-0.8125 0.32031-0.32031 0.57031-0.61328 0.75-0.875 0.17578-0.26953 0.30078-0.55469 0.375-0.85938 0.082031-0.3125 0.125-0.69141 0.125-1.1406 0-0.45703-0.10547-0.87891-0.3125-1.2656-0.19922-0.38281-0.48047-0.69141-0.84375-0.92188-0.36719-0.22656-0.77344-0.34375-1.2188-0.34375-0.25 0-0.5 0.0625-0.75 0.1875-0.24219 0.11719-0.4375 0.27734-0.59375 0.48438-0.15625 0.21094-0.23438 0.43359-0.23438 0.67188 0 0.125 0.046875 0.25781 0.14062 0.39062 0.10156 0.125 0.25391 0.29297 0.45312 0.5 0.48828 0.5 0.73438 0.89844 0.73438 1.1875 0 0.375-0.16797 0.73047-0.5 1.0625-0.32422 0.32422-0.70312 0.59375-1.1406 0.8125l-0.21875-0.15625c0.59375-0.34375 0.89062-0.71875 0.89062-1.125 0-0.19531-0.19531-0.49219-0.57812-0.89062-0.21875-0.22656-0.38672-0.44531-0.5-0.65625-0.11719-0.20703-0.17188-0.42969-0.17188-0.67188 0-0.45703 0.24219-0.92969 0.73438-1.4219 0.36328-0.36328 0.78125-0.64062 1.25-0.82812 0.47656-0.19531 0.98438-0.29688 1.5156-0.29688 0.5 0 0.92969 0.09375 1.2969 0.28125 0.375 0.17969 0.65625 0.44922 0.84375 0.8125 0.19531 0.35547 0.29688 0.78906 0.29688 1.2969 0 0.30469-0.027344 0.61719-0.078125 0.9375-0.042969 0.32422-0.11719 0.63672-0.21875 0.9375-0.09375 0.29297-0.21875 0.58594-0.375 0.875l-2.375 2.3125c0.34375 0 0.71094 0.19922 1.1094 0.59375l0.67188 0.67188 2.0156-1.2656v-4.4688c0-0.51953-0.023438-1.1172-0.0625-1.7969l1.7812-1.3281 0.23438 0.14062c-0.13672 0.125-0.26172 0.23438-0.375 0.32812-0.10547 0.09375-0.19531 0.19922-0.26562 0.3125-0.0625 0.10547-0.10547 0.24219-0.125 0.40625-0.023438 0.26172-0.039062 0.67969-0.046875 1.25-0.011719 0.5625-0.015625 1.2344-0.015625 2.0156 0 0.28125 0.003906 0.67188 0.015625 1.1719 0.019531 0.49219 0.035156 0.94922 0.046875 1.375 0 0.17969 0.097656 0.50781 0.29688 0.98438 0.19531 0.46875 0.36328 0.70312 0.5 0.70312 0.050781 0 0.11328-0.019531 0.1875-0.0625 0.14453-0.0625 0.25781-0.10938 0.34375-0.14062 0.09375-0.03125 0.20312-0.082031 0.32812-0.15625l0.0625 0.23438-2.0156 1.5625-0.89062-2.0781-2.8281 2.0781c-0.60547-1-1.2266-1.5-1.8594-1.5-0.26172 0-0.52344 0.054688-0.78125 0.15625-0.26172 0.10547-0.54688 0.25781-0.85938 0.45312z"/>
|
|
465
|
+
</symbol>
|
|
466
|
+
<symbol id="cz" overflow="visible">
|
|
467
|
+
<path d="m1.5625 0.078125-0.21875-0.375c0.76953-0.45703 1.3359-0.80469 1.7031-1.0469 0.84375-0.48828 1.4453-1.0078 1.8125-1.5625 0.125-0.1875 0.20312-0.46875 0.23438-0.84375 0.039062-0.375 0.0625-0.78516 0.0625-1.2344 0-0.59375-0.0625-1.1641-0.1875-1.7188-0.125-0.5625-0.36719-1.0352-0.71875-1.4219-0.35547-0.38281-0.82812-0.57812-1.4219-0.57812-0.1875 0-0.375 0.046875-0.5625 0.14062-0.17969 0.085938-0.32812 0.20312-0.45312 0.35938-0.11719 0.15625-0.17188 0.33594-0.17188 0.53125 0 0.25 0.20312 0.60156 0.60938 1.0469 0.4375 0.52344 0.65625 0.91797 0.65625 1.1875 0 0.39844-0.17969 0.76172-0.53125 1.0938-0.34375 0.32422-0.73438 0.58594-1.1719 0.78125l-0.21875-0.15625c0.59375-0.34375 0.89062-0.71875 0.89062-1.125 0-0.10156-0.078125-0.25781-0.23438-0.46875-0.14844-0.21875-0.29297-0.40625-0.4375-0.5625-0.17969-0.22656-0.3125-0.42969-0.40625-0.60938-0.085937-0.17578-0.125-0.36719-0.125-0.57812 0-0.32031 0.097656-0.64062 0.29688-0.95312 0.19531-0.3125 0.45312-0.59375 0.76562-0.84375 0.32031-0.25781 0.66016-0.45703 1.0156-0.59375 0.35156-0.14453 0.67578-0.21875 0.96875-0.21875 0.47656 0 0.91406 0.14062 1.3125 0.42188 0.40625 0.27344 0.73828 0.625 1 1.0625 0.39453-0.39453 0.83594-0.72656 1.3281-1 0.5-0.28125 0.97656-0.42188 1.4375-0.42188 0.33203 0 0.57812 0.0625 0.73438 0.1875 0.16406 0.11719 0.26953 0.24609 0.3125 0.39062 0.050781 0.14844 0.125 0.45312 0.21875 0.92188 0.039062 0.1875 0.078125 0.35547 0.10938 0.5 0.039063 0.13672 0.10156 0.26172 0.1875 0.375 0.082031 0.11719 0.19141 0.17188 0.32812 0.17188 0.19531 0 0.4375-0.050781 0.71875-0.15625l0.078125 0.29688c-0.6875 0.27344-1.1875 0.52344-1.5 0.75-0.125 0.09375-0.22656 0.16797-0.29688 0.21875-0.074219 0.042969-0.17188 0.10547-0.29688 0.1875-0.125 0.074219-0.22656 0.13281-0.29688 0.17188-0.0625 0.042969-0.1875 0.12109-0.375 0.23438 0.34375 0 0.66406 0.054687 0.96875 0.15625 0.30078 0.09375 0.5625 0.24219 0.78125 0.4375 0.21875 0.1875 0.39062 0.42188 0.51562 0.70312 0.125 0.27344 0.1875 0.58594 0.1875 0.9375 0 0.54297-0.15234 1.1172-0.45312 1.7188-0.52344 0.42969-0.98438 0.78906-1.3906 1.0781-0.39844 0.29297-0.69922 0.47266-0.90625 0.54688-0.26172 0.10156-0.5625 0.15625-0.90625 0.15625-0.55469 0-1.1992-0.14844-1.9375-0.4375-0.94922-0.40625-1.6406-0.60938-2.0781-0.60938-0.5625 0-1.2109 0.25-1.9375 0.75zm2.7031-1.7188c0.35156 0 0.71875 0.054687 1.0938 0.15625 0.38281 0.10547 0.8125 0.25 1.2812 0.4375 0.28906 0.11719 0.53125 0.21094 0.71875 0.28125 0.1875 0.074219 0.375 0.13672 0.5625 0.1875 0.19531 0.042969 0.36328 0.0625 0.5 0.0625 0.33203 0 0.61328-0.085937 0.84375-0.26562 0.23828-0.1875 0.41406-0.42578 0.53125-0.71875 0.125-0.30078 0.1875-0.61719 0.1875-0.95312 0-0.45703-0.11719-0.86328-0.34375-1.2188-0.23047-0.35156-0.53906-0.625-0.92188-0.8125-0.38672-0.1875-0.80859-0.28125-1.2656-0.28125-0.42969 0-0.79297 0.074219-1.0938 0.21875-0.074219 0.61719-0.23047 1.1641-0.46875 1.6406zm2.1406-3.3594c0.80078-0.26953 1.3281-0.46094 1.5781-0.57812l1.4844-0.75c-0.21094-0.050781-0.38281-0.44531-0.51562-1.1875-0.074219-0.45703-0.16797-0.79688-0.28125-1.0156-0.10547-0.21875-0.33594-0.32812-0.6875-0.32812-0.41797 0-0.76172 0.14062-1.0312 0.42188-0.27344 0.28125-0.47656 0.64062-0.60938 1.0781 0.039062 0.25 0.0625 0.84375 0.0625 1.7812v0.57812z"/>
|
|
468
|
+
</symbol>
|
|
469
|
+
<symbol id="cy" overflow="visible">
|
|
470
|
+
<path d="m3.1719-3.3906-0.1875-0.21875c0.375-0.082031 0.72266-0.28125 1.0469-0.59375 0.15625-0.15625 0.23438-0.47656 0.23438-0.96875 0-0.11328-0.015625-0.23828-0.046875-0.375-0.023438-0.13281-0.042969-0.25-0.0625-0.34375-0.023438-0.09375-0.046875-0.20312-0.078125-0.32812s-0.070313-0.26562-0.10938-0.42188c-0.09375-0.28125-0.14062-0.55469-0.14062-0.82812 0-0.16406 0.015625-0.30469 0.046875-0.42188-0.46094 0-0.83594 0.14844-1.125 0.4375-0.28125 0.28125-0.48438 0.64062-0.60938 1.0781s-0.1875 0.875-0.1875 1.3125c0 0.88672 0.16406 1.6641 0.5 2.3281 0.33203 0.66797 0.82031 1.1836 1.4688 1.5469 0.64453 0.36719 1.4141 0.54688 2.3125 0.54688 0.11328 0 0.29688-0.007813 0.54688-0.03125l1.6406-0.8125v0.35938c-0.21875 0.14844-0.48047 0.32031-0.78125 0.51562-0.29297 0.1875-0.51562 0.33594-0.67188 0.4375-0.15625 0.10547-0.34375 0.23438-0.5625 0.39062-0.34375 0.070312-0.73438 0.10938-1.1719 0.10938-0.71875 0-1.3594-0.11719-1.9219-0.34375-0.55469-0.22656-1.0156-0.55469-1.3906-0.98438-0.36719-0.42578-0.64062-0.92969-0.82812-1.5156-0.17969-0.58203-0.26562-1.2344-0.26562-1.9531 0-0.875 0.19531-1.7188 0.59375-2.5312 0.38281-0.28906 0.76562-0.55078 1.1406-0.78125 0.38281-0.23828 0.77344-0.45312 1.1719-0.64062l0.4375 0.23438c0.71875-0.48828 1.6875-0.95703 2.9062-1.4062 0.10156 0.30469 0.21875 0.63672 0.34375 1 0.13281 0.36719 0.28516 0.54688 0.45312 0.54688 0.082031 0 0.28906-0.046875 0.625-0.14062v0.29688c-0.61719 0.28125-1.1328 0.45312-1.5469 0.51562-0.10547-0.0625-0.20312-0.14062-0.29688-0.23438-0.09375-0.10156-0.19531-0.22266-0.29688-0.35938-0.10547-0.14453-0.21094-0.29688-0.3125-0.45312-0.09375-0.16406-0.16797-0.28906-0.21875-0.375-0.23047 0.074219-0.39062 0.19531-0.48438 0.35938-0.085938 0.16797-0.125 0.375-0.125 0.625 0 0.14844 0.019531 0.33984 0.0625 0.57812 0.050781 0.24219 0.097656 0.44922 0.14062 0.625 0.050781 0.16797 0.09375 0.33594 0.125 0.5 0.03125 0.15625 0.046875 0.32812 0.046875 0.51562 0 1.2305-0.80859 1.9648-2.4219 2.2031z"/>
|
|
471
|
+
</symbol>
|
|
472
|
+
<symbol id="cx" overflow="visible">
|
|
473
|
+
<path d="m0.70312 0.21875-0.20312-0.21875c0.34375-0.69531 0.83203-1.3164 1.4688-1.8594 0.28906 0 0.60938-0.046875 0.95312-0.14062 0.35156-0.09375 0.64844-0.23828 0.89062-0.4375 0.25-0.20703 0.375-0.46094 0.375-0.76562 0-0.1875-0.042969-0.375-0.125-0.5625-0.085938-0.1875-0.19531-0.35156-0.32812-0.5-0.085937-0.09375-0.19531-0.21875-0.32812-0.375-0.13672-0.15625-0.25781-0.30469-0.35938-0.45312-0.09375-0.14453-0.14062-0.26953-0.14062-0.375 0-0.30078 0.125-0.60938 0.375-0.92188 0.25-0.32031 0.54688-0.60938 0.89062-0.85938 0.35156-0.25 0.67969-0.45312 0.98438-0.60938l0.21875 0.15625c-0.23047 0.14844-0.49219 0.38281-0.78125 0.70312-0.28125 0.32422-0.42188 0.58984-0.42188 0.79688 0 0.0625 0.03125 0.15234 0.09375 0.26562 0.0625 0.11719 0.14062 0.24609 0.23438 0.39062 0.10156 0.14844 0.19141 0.27734 0.26562 0.39062 0.19531 0.28125 0.35938 0.53125 0.48438 0.75 0.13281 0.21875 0.20312 0.39844 0.20312 0.53125 0 0.40625-0.19922 0.79688-0.59375 1.1719-0.39844 0.36719-0.83984 0.67188-1.3281 0.92188 0.5625 0.10547 1.1562 0.27734 1.7812 0.51562 0.47656 0.1875 0.87891 0.33984 1.2031 0.45312 0.33203 0.10547 0.55078 0.15625 0.65625 0.15625 0.53906 0 1.082-0.39844 1.625-1.2031 0.22656-0.34375 0.38281-0.73828 0.46875-1.1875 0.082031-0.45703 0.125-0.95703 0.125-1.5 0-0.66406-0.11719-1.2539-0.34375-1.7656-0.21875-0.51953-0.53125-0.94141-0.9375-1.2656-0.40625-0.33203-0.88672-0.57812-1.4375-0.73438-0.54297-0.16406-1.1523-0.25-1.8281-0.25-1.1875 0-2.1484 0.28125-2.875 0.84375-0.73047 0.5625-1.1641 1.4219-1.2969 2.5781l-0.29688-0.15625c0-0.95703 0.20312-1.7578 0.60938-2.4062 0.41406-0.64453 0.98438-1.125 1.7031-1.4375 0.72656-0.3125 1.5703-0.46875 2.5312-0.46875 0.67578 0 1.3164 0.070313 1.9219 0.20312 0.61328 0.125 1.1641 0.33984 1.6562 0.64062 0.5 0.29297 0.89453 0.69531 1.1875 1.2031 0.30078 0.5 0.45312 1.1094 0.45312 1.8281 0 1.3047-0.27344 2.5938-0.8125 3.875l-0.60938 0.60938c-0.29297 0.29297-0.57812 0.55859-0.85938 0.79688-0.27344 0.23047-0.55469 0.42188-0.84375 0.57812-0.28125 0.16406-0.53125 0.25-0.75 0.25-0.125 0-0.28906-0.039062-0.48438-0.10938-0.1875-0.0625-0.49219-0.17188-0.90625-0.32812-0.48047-0.19531-1.0156-0.38281-1.6094-0.5625-0.59375-0.17578-1.0547-0.26562-1.375-0.26562-0.21094 0-0.40625 0.058594-0.59375 0.17188-0.17969 0.10547-0.34375 0.24609-0.5 0.42188-0.15625 0.16797-0.28906 0.33594-0.39062 0.51562z"/>
|
|
474
|
+
</symbol>
|
|
475
|
+
<symbol id="cw" overflow="visible">
|
|
476
|
+
<path d="m2.5469 0.45312c-0.46094-0.38672-0.93359-0.87891-1.4219-1.4844-0.023438-0.36328-0.03125-0.63281-0.03125-0.8125 0-1 0.09375-2.0977 0.28125-3.2969 0.45703-0.19531 0.92578-0.42578 1.4062-0.6875 0.48828-0.26953 0.94141-0.53125 1.3594-0.78125 0.46875 0.1875 1.0547 0.33984 1.7656 0.45312l0.92188-0.39062 0.125 0.09375c-0.11719 0.40625-0.1875 0.82031-0.21875 1.2344-0.023437 0.41797-0.03125 0.9375-0.03125 1.5625 0 0.61719 0.019531 1.168 0.0625 1.6562l0.71875 0.875 0.65625-0.28125 0.078125 0.25-2.0469 1.5625c-0.32422-0.47656-0.65234-0.86719-0.98438-1.1719l-0.015625-0.35938zm0.20312-2.3906 0.375 0.375c0.13281 0.125 0.25781 0.23438 0.375 0.32812 0.11328 0.09375 0.25 0.19922 0.40625 0.3125l1.25-0.60938-0.046875-3.5938c-0.5625 0-1.2422-0.10156-2.0312-0.3125-0.15625 0.25-0.26172 0.5625-0.3125 0.9375-0.042969 0.375-0.0625 0.79297-0.0625 1.25 0 0.30469 0.015625 0.74219 0.046875 1.3125z"/>
|
|
477
|
+
</symbol>
|
|
478
|
+
<symbol id="cv" overflow="visible">
|
|
479
|
+
<path d="m1.1875-0.98438c0.0625-0.48828 0.10156-0.99219 0.125-1.5156 0.03125-0.51953 0.046875-1.0156 0.046875-1.4844 0.007813-0.47656 0.015625-1.0664 0.015625-1.7656 0-0.25781-0.007812-0.625-0.015625-1.0938-0.011719-0.46875-0.03125-0.90625-0.0625-1.3125s-0.070313-0.78906-0.10938-1.1562c0.007812 0 0.046875-0.019531 0.10938-0.0625 0.070313-0.039062 0.12891-0.0625 0.17188-0.0625l0.34375 1.0938c1.1562-0.69531 1.9375-1.1406 2.3438-1.3281l0.28125 0.15625c-0.60547 0.33594-1.0117 0.73438-1.2188 1.2031-0.19922 0.46875-0.29688 1.0898-0.29688 1.8594 0.007813 0.1875 0.015625 0.36719 0.015625 0.53125v0.625l2.1094-1.3281c0.30078 0.14844 0.95312 0.42188 1.9531 0.82812 0.03125 0.48047 0.046875 0.95312 0.046875 1.4219 0 1.1172-0.089844 2.125-0.26562 3.0312-0.44922 0.25-0.87109 0.48047-1.2656 0.6875-0.39844 0.19922-0.8125 0.39844-1.25 0.59375-0.42969 0.1875-0.85547 0.35938-1.2812 0.51562-0.75-0.51953-1.3516-1-1.7969-1.4375zm1.7969-0.85938c0.34375 0.27344 0.66406 0.5 0.96875 0.6875 0.30078 0.17969 0.60938 0.30859 0.92188 0.39062 0.13281-0.26953 0.23828-0.55469 0.3125-0.85938 0.082031-0.30078 0.13281-0.60938 0.15625-0.92188 0.03125-0.32031 0.046875-0.64062 0.046875-0.95312 0-0.46875-0.027344-0.9375-0.078125-1.4062l-1.375-0.4375-0.96875 0.46875v1.125 1.1719c0 0.41797 0.003906 0.66406 0.015625 0.73438z"/>
|
|
480
|
+
</symbol>
|
|
481
|
+
<symbol id="cu" overflow="visible">
|
|
482
|
+
<path d="m1.2656-1.2344c-0.042969-0.78125-0.0625-1.3906-0.0625-1.8281 0-0.83203 0.054687-1.5156 0.17188-2.0469l2.7344-1.5156c0.69531 0.125 1.3047 0.32812 1.8281 0.60938l-1.1094 1.3594h-0.14062c-0.46094-0.41406-0.9375-0.69531-1.4375-0.84375h-0.14062l-0.09375 0.125c-0.10547 0.46094-0.15625 0.99219-0.15625 1.5938 0 0.375 0.023437 0.91797 0.078125 1.625 0.57031 0.51172 1.0469 0.89844 1.4219 1.1562l1.4844-0.57812v0.28125c-0.33594 0.19922-0.5625 0.33984-0.6875 0.42188-0.11719 0.074219-0.38672 0.24219-0.8125 0.5-0.42969 0.25-0.74219 0.42969-0.9375 0.54688-0.19922 0.11328-0.30859 0.17578-0.32812 0.1875-0.5625-0.40625-1.168-0.9375-1.8125-1.5938z"/>
|
|
483
|
+
</symbol>
|
|
484
|
+
<symbol id="ct" overflow="visible">
|
|
485
|
+
<path d="m1.2344-1.1875c0-0.17578-0.007813-0.31641-0.015625-0.42188v-0.35938c0-1.0312 0.066406-1.9688 0.20312-2.8125 0.33203-0.3125 0.67188-0.59375 1.0156-0.84375 0.35156-0.25781 0.73438-0.52344 1.1406-0.79688l0.3125 0.125c-0.23047 0.1875-0.51172 0.44922-0.84375 0.78125-0.14844 0.58594-0.21875 1.2461-0.21875 1.9844 0 0.4375 0.023437 0.92969 0.078125 1.4688 0.55078 0.48047 1.1758 0.85938 1.875 1.1406 0.46875-0.76953 0.70312-1.8945 0.70312-3.375 0-0.42578-0.023437-0.91016-0.0625-1.4531-1.7188-1.375-3.0547-2.0625-4-2.0625-0.375 0-0.77344 0.074219-1.1875 0.21875l-0.26562-0.1875c0.23828-0.13281 0.48438-0.25391 0.73438-0.35938 0.25781-0.11328 0.54688-0.23438 0.85938-0.35938 0.32031-0.125 0.625-0.23828 0.90625-0.34375 0.50781 0.11719 1.0312 0.28906 1.5625 0.51562 0.53906 0.23047 1.0391 0.48047 1.5 0.75 0.46875 0.26172 0.97266 0.57031 1.5156 0.92188 0.0625 0.49219 0.09375 1 0.09375 1.5312 0 1.2617-0.20312 2.4648-0.60938 3.6094-0.19922 0.16797-0.46094 0.35547-0.78125 0.5625-0.3125 0.21094-0.70312 0.45312-1.1719 0.73438-0.46094 0.28125-0.80469 0.48828-1.0312 0.625-0.46875-0.26172-0.88672-0.51562-1.25-0.76562-0.35547-0.25-0.71094-0.52344-1.0625-0.82812z"/>
|
|
486
|
+
</symbol>
|
|
487
|
+
<symbol id="cs" overflow="visible">
|
|
488
|
+
<path d="m0.60938-0.40625 0.40625-1.625c0.082031-0.30078 0.125-0.5 0.125-0.59375 0-0.20703-0.074219-0.3125-0.21875-0.3125-0.19922 0-0.35547 0.21875-0.46875 0.65625-0.023437 0.054688-0.039063 0.10938-0.046875 0.17188-0.054688 0.10547-0.09375 0.15625-0.125 0.15625-0.054688 0-0.078125-0.019531-0.078125-0.0625 0-0.070313 0.046875-0.23828 0.14062-0.5v-0.03125l0.0625-0.14062c0.10156-0.1875 0.21094-0.30469 0.32812-0.35938 0.0625-0.03125 0.12891-0.046875 0.20312-0.046875 0.25781 0 0.44531 0.10938 0.5625 0.32812 0.039062 0.085937 0.066406 0.17969 0.078125 0.28125 0.30078-0.40625 0.66406-0.60938 1.0938-0.60938 0.40625 0 0.66016 0.15625 0.76562 0.46875 0.03125 0.085938 0.046875 0.17969 0.046875 0.28125 0 0.24219-0.14844 0.75-0.4375 1.5312-0.085937 0.21094-0.125 0.375-0.125 0.5 0 0.15625 0.054687 0.23438 0.17188 0.23438 0.3125 0 0.55078-0.28516 0.71875-0.85938 0.019531-0.082031 0.039062-0.125 0.0625-0.125v-0.015625h0.03125c0.0625 0 0.09375 0.027344 0.09375 0.078125 0 0.085938-0.054688 0.23047-0.15625 0.4375-0.19922 0.42969-0.45312 0.64062-0.76562 0.64062-0.24219 0-0.41406-0.097656-0.51562-0.29688-0.042969-0.082031-0.0625-0.17578-0.0625-0.28125 0-0.09375 0.023438-0.19531 0.078125-0.3125 0.30078-0.82031 0.45312-1.3672 0.45312-1.6406 0-0.32031-0.125-0.48438-0.375-0.48438-0.42969 0-0.78125 0.23438-1.0625 0.70312-0.03125 0.054687-0.058594 0.10156-0.078125 0.14062l-0.09375 0.35938c-0.023437 0.10547-0.0625 0.26172-0.125 0.46875l-0.15625 0.625c-0.074219 0.32422-0.11719 0.49609-0.125 0.51562-0.042969 0.125-0.13281 0.19141-0.26562 0.20312-0.11719-0.023438-0.18359-0.082031-0.20312-0.1875 0 0.011719 0.019531-0.085937 0.0625-0.29688z"/>
|
|
489
|
+
</symbol>
|
|
490
|
+
<symbol id="cr" overflow="visible">
|
|
491
|
+
<path d="m3.1406-1.2188-0.1875 1.2188h-2.6094c0-0.11328 0.015625-0.1875 0.046875-0.21875l0.03125-0.046875 1.3438-1.4844c0.48828-0.55078 0.73438-1.0664 0.73438-1.5469 0-0.41406-0.125-0.73438-0.375-0.95312h-0.015625c-0.14844-0.125-0.32812-0.1875-0.54688-0.1875-0.33594 0-0.60156 0.14062-0.79688 0.42188-0.0625 0.085937-0.10938 0.17969-0.14062 0.28125h0.09375c0.1875 0 0.30469 0.085937 0.35938 0.25v0.10938c0 0.1875-0.089844 0.30859-0.26562 0.35938-0.03125 0.011719-0.0625 0.015625-0.09375 0.015625-0.16797 0-0.28125-0.070312-0.34375-0.21875-0.023438-0.050781-0.03125-0.10938-0.03125-0.17188 0-0.36328 0.14062-0.67188 0.42188-0.92188 0.25-0.22656 0.54688-0.34375 0.89062-0.34375 0.50781 0 0.91016 0.17188 1.2031 0.51562 0.15625 0.19922 0.25 0.43359 0.28125 0.70312v0.14062c0 0.33594-0.125 0.65625-0.375 0.96875-0.13672 0.15625-0.35156 0.36719-0.64062 0.625l-0.42188 0.375-0.078125 0.0625-0.73438 0.73438h1.2656c0.40625 0 0.625-0.019531 0.65625-0.0625 0.050781-0.0625 0.10156-0.26953 0.15625-0.625z"/>
|
|
492
|
+
</symbol>
|
|
493
|
+
<symbol id="cq" overflow="visible">
|
|
494
|
+
<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"/>
|
|
495
|
+
</symbol>
|
|
496
|
+
<symbol id="cp" overflow="visible">
|
|
497
|
+
<path d="m0.92188 19.594c-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.015625-0.078125 0.046875-0.10938l7.3906-8.6094-7.3906-10.125c-0.03125-0.023437-0.046875-0.042969-0.046875-0.0625v-0.42188c0-0.03125 0.015625-0.0625 0.046875-0.09375 0.03125-0.023438 0.0625-0.03125 0.09375-0.03125h16.797l1.7031 3.9375h-0.40625c-0.4375-1-1.168-1.7422-2.1875-2.2188-1.0117-0.48047-2.0703-0.77734-3.1719-0.89062-1.1055-0.10547-2.3906-0.15625-3.8594-0.15625h-6.4688l6.6094 9.0312c0.019531 0.03125 0.03125 0.0625 0.03125 0.09375s-0.011719 0.066406-0.03125 0.10938l-7.2656 8.4531h7.2656c1.4375 0 2.707-0.058594 3.8125-0.17188 1.1133-0.11719 2.1719-0.41406 3.1719-0.89062 1.0078-0.48047 1.707-1.2148 2.0938-2.2031h0.40625l-1.7031 4.5z"/>
|
|
498
|
+
</symbol>
|
|
499
|
+
<symbol id="co" overflow="visible">
|
|
500
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
501
|
+
</symbol>
|
|
502
|
+
<symbol id="cn" overflow="visible">
|
|
503
|
+
<path d="m6.875-3.2656h-5.9688c-0.21875 0-0.33594-0.066406-0.34375-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.9844c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312zm0 1.9375h-5.9844c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.11328-0.20312 0.34375-0.20312h5.9688c0.20703 0 0.31641 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
504
|
+
</symbol>
|
|
505
|
+
<symbol id="cm" overflow="visible">
|
|
506
|
+
<path d="m4.5938-3.2031c0 0.98047-0.12109 1.7344-0.35938 2.2656-0.39844 0.75-0.98047 1.1328-1.75 1.1562-0.60547 0-1.0898-0.23828-1.4531-0.71875-0.074219-0.082031-0.13672-0.17969-0.1875-0.29688-0.30469-0.55078-0.45312-1.3516-0.45312-2.4062 0-0.97656 0.125-1.7344 0.375-2.2656 0.33203-0.75 0.86719-1.1445 1.6094-1.1875h0.125c0.59375 0 1.0781 0.23438 1.4531 0.70312v0.015625c0.09375 0.11719 0.17578 0.24609 0.25 0.39062 0.25781 0.57422 0.39062 1.3555 0.39062 2.3438zm-2.1094 3.2031c0.42578 0 0.75-0.20312 0.96875-0.60938 0.09375-0.17578 0.16016-0.39062 0.20312-0.64062 0.070312-0.42578 0.10938-1.1133 0.10938-2.0625 0-0.92578-0.03125-1.5781-0.09375-1.9531-0.125-0.63281-0.43359-1.0156-0.92188-1.1406-0.085938-0.019531-0.17188-0.03125-0.26562-0.03125-0.46094 0-0.79688 0.23438-1.0156 0.70312-0.074219 0.15625-0.13281 0.35156-0.17188 0.57812-0.054687 0.35547-0.078125 0.96875-0.078125 1.8438 0 1 0.035156 1.7031 0.10938 2.1094 0.125 0.63672 0.41406 1.0234 0.875 1.1562 0.09375 0.03125 0.1875 0.046875 0.28125 0.046875z"/>
|
|
507
|
+
</symbol>
|
|
508
|
+
<symbol id="ck" overflow="visible">
|
|
509
|
+
<path d="m5.4688 16.203c-1.1484-0.96875-1.9922-2.1875-2.5312-3.6562-0.54297-1.4688-0.8125-3.0391-0.8125-4.7031 0-1.6797 0.26953-3.2578 0.8125-4.7344 0.53906-1.4688 1.3828-2.6836 2.5312-3.6406 0-0.019531 0.023438-0.03125 0.078125-0.03125h0.17188c0.019531 0 0.039062 0.015625 0.0625 0.046875 0.03125 0.03125 0.046875 0.058594 0.046875 0.078125 0 0.042969-0.011719 0.074219-0.03125 0.09375-0.51172 0.51953-0.9375 1.0977-1.2812 1.7344-0.34375 0.64453-0.61719 1.3125-0.8125 2-0.19922 0.69531-0.33984 1.4219-0.42188 2.1719-0.085938 0.75-0.125 1.5156-0.125 2.2969 0 3.6133 0.87891 6.332 2.6406 8.1562 0.019531 0.019531 0.03125 0.046875 0.03125 0.078125s-0.015625 0.0625-0.046875 0.09375c-0.023438 0.03125-0.042969 0.046875-0.0625 0.046875h-0.17188c-0.054687 0-0.078125-0.011719-0.078125-0.03125z"/>
|
|
510
|
+
</symbol>
|
|
511
|
+
<symbol id="cj" overflow="visible">
|
|
512
|
+
<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"/>
|
|
513
|
+
</symbol>
|
|
514
|
+
<symbol id="ci" overflow="visible">
|
|
515
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
516
|
+
</symbol>
|
|
517
|
+
<symbol id="ch" overflow="visible">
|
|
518
|
+
<path d="m0.70312 16.234c-0.085937 0-0.125-0.046875-0.125-0.14062 0-0.03125 0.007813-0.058594 0.03125-0.078125 0.66406-0.69922 1.1914-1.4922 1.5781-2.375 0.39453-0.88672 0.67188-1.8203 0.82812-2.7969 0.15625-0.96875 0.23438-1.9766 0.23438-3.0156 0-3.625-0.88281-6.3516-2.6406-8.1719-0.023437-0.019531-0.03125-0.050781-0.03125-0.09375 0-0.082031 0.039063-0.125 0.125-0.125h0.17188c0.019531 0 0.039062 0.011719 0.0625 0.03125 1.1445 0.95703 1.9844 2.1719 2.5156 3.6406 0.53906 1.4766 0.8125 3.0547 0.8125 4.7344 0 1.6641-0.26562 3.2344-0.79688 4.7031s-1.375 2.6875-2.5312 3.6562c-0.023438 0.019531-0.042969 0.03125-0.0625 0.03125z"/>
|
|
519
|
+
</symbol>
|
|
520
|
+
<symbol id="cg" overflow="visible">
|
|
521
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
522
|
+
</symbol>
|
|
523
|
+
<symbol id="cf" overflow="visible">
|
|
524
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
525
|
+
</symbol>
|
|
526
|
+
<symbol id="ce" overflow="visible">
|
|
527
|
+
<path d="m3.3438-9.5625-1.0312 4.2188c0.53906-0.5625 1.0859-0.84375 1.6406-0.84375 0.69531 0 1.2188 0.32422 1.5625 0.96875 0.19531 0.375 0.29688 0.79688 0.29688 1.2656 0 0.99219-0.34375 1.918-1.0312 2.7812-0.64844 0.79297-1.3594 1.2266-2.1406 1.3125-0.074219 0.007813-0.14062 0.015625-0.20312 0.015625-0.67969 0-1.1797-0.3125-1.5-0.9375-0.1875-0.35156-0.28125-0.77344-0.28125-1.2656 0-0.3125 0.070312-0.78125 0.21875-1.4062l1.1562-4.5625c0.125-0.55078 0.1875-0.84375 0.1875-0.875 0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.085938-0.25 0.26562-0.28125l1.7031-0.14062c0.125 0 0.1875 0.054688 0.1875 0.15625zm-1.3125 5.2969-0.3125 1.2812c-0.14844 0.59375-0.21875 1.0703-0.21875 1.4219 0 0.80469 0.23828 1.2617 0.71875 1.375 0.070312 0.023438 0.14453 0.03125 0.21875 0.03125 0.48828 0 0.95312-0.32812 1.3906-0.98438 0.09375-0.13281 0.17969-0.28516 0.26562-0.45312 0.25-0.53125 0.45703-1.25 0.625-2.1562 0.050781-0.32031 0.078125-0.59375 0.078125-0.8125 0-0.75-0.23047-1.1797-0.6875-1.2969-0.0625-0.007813-0.125-0.015625-0.1875-0.015625-0.5625 0-1.125 0.37109-1.6875 1.1094-0.074219 0.09375-0.14062 0.26172-0.20312 0.5z"/>
|
|
528
|
+
</symbol>
|
|
529
|
+
<symbol id="cd" overflow="visible">
|
|
530
|
+
<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"/>
|
|
531
|
+
</symbol>
|
|
532
|
+
<symbol id="cc" overflow="visible">
|
|
533
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
534
|
+
</symbol>
|
|
535
|
+
<symbol id="cb" overflow="visible">
|
|
536
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
537
|
+
</symbol>
|
|
538
|
+
<symbol id="bz" overflow="visible">
|
|
539
|
+
<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"/>
|
|
540
|
+
</symbol>
|
|
541
|
+
<symbol id="by" overflow="visible">
|
|
542
|
+
<path d="m9.2656 33c-1.1484-1.0234-2.1328-2.1836-2.9531-3.4844-0.8125-1.293-1.4688-2.6641-1.9688-4.1094-0.5-1.4375-0.86719-2.9336-1.0938-4.4844-0.23047-1.543-0.34375-3.1016-0.34375-4.6719 0-1.5938 0.11328-3.168 0.34375-4.7188 0.22656-1.543 0.58594-3.0391 1.0781-4.4844 0.5-1.4375 1.1602-2.8086 1.9844-4.1094 0.82031-1.3047 1.8047-2.4609 2.9531-3.4688 0-0.019531 0.023437-0.03125 0.078125-0.03125h0.35938c0.019531 0 0.039063 0.015625 0.0625 0.046875 0.03125 0.023437 0.046875 0.046875 0.046875 0.078125 0 0.042969-0.007812 0.074219-0.015625 0.09375-1.0742 1.0508-1.9805 2.2188-2.7188 3.5-0.73047 1.2891-1.3125 2.6484-1.75 4.0781-0.42969 1.4258-0.73438 2.8906-0.92188 4.3906-0.1875 1.5078-0.28125 3.0508-0.28125 4.625 0 1.5625 0.085938 3.082 0.26562 4.5625 0.1875 1.4766 0.5 2.9414 0.9375 4.3906 0.4375 1.4453 1.0234 2.8125 1.7656 4.0938 0.73828 1.2891 1.6406 2.4609 2.7031 3.5156 0.007813 0.019531 0.015625 0.050781 0.015625 0.09375 0 0.019531-0.015625 0.046875-0.046875 0.078125-0.023437 0.03125-0.042969 0.046875-0.0625 0.046875h-0.35938c-0.054688 0-0.078125-0.011719-0.078125-0.03125z"/>
|
|
543
|
+
</symbol>
|
|
544
|
+
<symbol id="bx" overflow="visible">
|
|
545
|
+
<path d="m7.3438 24.594c-0.86719-0.75-1.6094-1.6094-2.2344-2.5781-0.61719-0.96094-1.1172-1.9844-1.5-3.0781-0.375-1.0938-0.65234-2.2188-0.82812-3.375-0.17969-1.1484-0.26562-2.3242-0.26562-3.5312 0-1.1992 0.085937-2.375 0.26562-3.5312 0.17578-1.1562 0.45312-2.2812 0.82812-3.375 0.38281-1.0938 0.88281-2.1211 1.5-3.0781 0.625-0.96094 1.3672-1.8203 2.2344-2.5781 0-0.019531 0.023438-0.03125 0.078125-0.03125h0.32812c0.019531 0 0.039062 0.015625 0.0625 0.046875 0.03125 0.03125 0.046875 0.058594 0.046875 0.078125 0 0.042969-0.011719 0.074219-0.03125 0.09375-0.80469 0.78906-1.4766 1.6602-2.0156 2.6094-0.53125 0.95703-0.96094 1.9766-1.2812 3.0625-0.32422 1.0938-0.55469 2.1953-0.6875 3.3125-0.13672 1.1133-0.20312 2.25-0.20312 3.4062s0.066406 2.2891 0.20312 3.4062c0.13281 1.125 0.36328 2.2227 0.6875 3.2969 0.32031 1.082 0.75391 2.1016 1.2969 3.0625 0.55078 0.95703 1.2188 1.8281 2 2.6094 0.019531 0.019531 0.03125 0.046875 0.03125 0.078125 0 0.019531-0.015625 0.046875-0.046875 0.078125-0.023438 0.03125-0.042969 0.046875-0.0625 0.046875h-0.32812c-0.054687 0-0.078125-0.011719-0.078125-0.03125z"/>
|
|
546
|
+
</symbol>
|
|
547
|
+
<symbol id="bw" overflow="visible">
|
|
548
|
+
<path d="m5.4688 16.203c-1.1484-0.96875-1.9922-2.1875-2.5312-3.6562-0.54297-1.4688-0.8125-3.0391-0.8125-4.7031 0-1.6797 0.26953-3.2578 0.8125-4.7344 0.53906-1.4688 1.3828-2.6836 2.5312-3.6406 0-0.019531 0.023438-0.03125 0.078125-0.03125h0.17188c0.019531 0 0.039062 0.015625 0.0625 0.046875 0.03125 0.03125 0.046875 0.058594 0.046875 0.078125 0 0.042969-0.011719 0.074219-0.03125 0.09375-0.51172 0.51953-0.9375 1.0977-1.2812 1.7344-0.34375 0.64453-0.61719 1.3125-0.8125 2-0.19922 0.69531-0.33984 1.4219-0.42188 2.1719-0.085938 0.75-0.125 1.5156-0.125 2.2969 0 3.6133 0.87891 6.332 2.6406 8.1562 0.019531 0.019531 0.03125 0.046875 0.03125 0.078125s-0.015625 0.0625-0.046875 0.09375c-0.023438 0.03125-0.042969 0.046875-0.0625 0.046875h-0.17188c-0.054687 0-0.078125-0.011719-0.078125-0.03125z"/>
|
|
549
|
+
</symbol>
|
|
550
|
+
<symbol id="bv" overflow="visible">
|
|
551
|
+
<path d="m0.70312 16.234c-0.085937 0-0.125-0.046875-0.125-0.14062 0-0.03125 0.007813-0.058594 0.03125-0.078125 0.66406-0.69922 1.1914-1.4922 1.5781-2.375 0.39453-0.88672 0.67188-1.8203 0.82812-2.7969 0.15625-0.96875 0.23438-1.9766 0.23438-3.0156 0-3.625-0.88281-6.3516-2.6406-8.1719-0.023437-0.019531-0.03125-0.050781-0.03125-0.09375 0-0.082031 0.039063-0.125 0.125-0.125h0.17188c0.019531 0 0.039062 0.011719 0.0625 0.03125 1.1445 0.95703 1.9844 2.1719 2.5156 3.6406 0.53906 1.4766 0.8125 3.0547 0.8125 4.7344 0 1.6641-0.26562 3.2344-0.79688 4.7031s-1.375 2.6875-2.5312 3.6562c-0.023438 0.019531-0.042969 0.03125-0.0625 0.03125z"/>
|
|
552
|
+
</symbol>
|
|
553
|
+
<symbol id="bu" overflow="visible">
|
|
554
|
+
<path d="m0.60938 24.625c-0.074219 0-0.10938-0.042969-0.10938-0.125 0-0.03125 0.003906-0.058594 0.015625-0.078125 0.78906-0.79297 1.457-1.6719 2-2.6406 0.55078-0.96875 0.98438-1.9844 1.2969-3.0469 0.32031-1.0547 0.55078-2.1406 0.6875-3.2656 0.13281-1.1172 0.20312-2.2617 0.20312-3.4375 0-1.2188-0.074219-2.3828-0.21875-3.4844-0.13672-1.1055-0.35938-2.1875-0.67188-3.25-0.3125-1.0547-0.74609-2.0625-1.2969-3.0312-0.54297-0.96094-1.2109-1.8281-2-2.6094-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375 0-0.082031 0.035156-0.125 0.10938-0.125h0.32812c0.03125 0 0.050781 0.011719 0.0625 0.03125 0.86328 0.73828 1.6094 1.5938 2.2344 2.5625 0.625 0.97656 1.125 2.0156 1.5 3.1094 0.38281 1.0938 0.66016 2.2109 0.82812 3.3594 0.17578 1.1562 0.26562 2.332 0.26562 3.5312 0 1.207-0.089844 2.3828-0.26562 3.5312-0.16797 1.1445-0.44531 2.2656-0.82812 3.3594-0.375 1.0938-0.875 2.125-1.5 3.0938-0.625 0.97656-1.3711 1.8359-2.2344 2.5781-0.011719 0.019531-0.03125 0.03125-0.0625 0.03125z"/>
|
|
555
|
+
</symbol>
|
|
556
|
+
<symbol id="bt" overflow="visible">
|
|
557
|
+
<path d="m0.60938 33.031c-0.085937 0-0.125-0.042969-0.125-0.125 0-0.042969 0.003906-0.074219 0.015625-0.09375 1.0703-1.0547 1.9727-2.2266 2.7031-3.5156 0.73828-1.293 1.3203-2.6523 1.75-4.0781 0.4375-1.418 0.74219-2.8711 0.92188-4.3594 0.1875-1.4922 0.28125-3.0312 0.28125-4.625 0-1.625-0.09375-3.1797-0.28125-4.6562-0.17969-1.4688-0.48047-2.9141-0.90625-4.3281-0.42969-1.418-1.0156-2.7773-1.7656-4.0781-0.74219-1.3047-1.6406-2.4766-2.7031-3.5156-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375 0-0.082031 0.039063-0.125 0.125-0.125h0.35938c0.03125 0 0.054688 0.011719 0.078125 0.03125 1.1445 1.0195 2.1289 2.1797 2.9531 3.4844 0.82031 1.3008 1.4766 2.6719 1.9688 4.1094 0.48828 1.4453 0.84375 2.9414 1.0625 4.4844 0.22656 1.5391 0.34375 3.1094 0.34375 4.7031 0 1.5703-0.11719 3.125-0.34375 4.6562-0.21875 1.5391-0.57422 3.0352-1.0625 4.4844-0.49219 1.4453-1.1484 2.8203-1.9688 4.125-0.82422 1.3008-1.8086 2.4609-2.9531 3.4844-0.023437 0.019531-0.046875 0.03125-0.078125 0.03125z"/>
|
|
558
|
+
</symbol>
|
|
559
|
+
<symbol id="bs" overflow="visible">
|
|
560
|
+
<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"/>
|
|
561
|
+
</symbol>
|
|
562
|
+
<symbol id="br" overflow="visible">
|
|
563
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
564
|
+
</symbol>
|
|
565
|
+
<symbol id="bq" overflow="visible">
|
|
566
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
567
|
+
</symbol>
|
|
568
|
+
<symbol id="bp" overflow="visible">
|
|
569
|
+
<path d="m7.7188-9.1875-3.5312 9.2188c-0.0625 0.17578-0.16406 0.26953-0.29688 0.28125-0.125 0-0.21484-0.074219-0.26562-0.21875-0.011719-0.023438-0.027344-0.054688-0.046875-0.09375l-3.5156-9.2031c-0.042969-0.10156-0.0625-0.17969-0.0625-0.23438 0-0.13281 0.070312-0.22266 0.21875-0.26562 0.019531-0.007813 0.039062-0.015625 0.0625-0.015625 0.125 0 0.21094 0.074219 0.26562 0.21875 0.007813 0.011719 0.023437 0.042969 0.046875 0.09375l1.1719 3.0938h4.25l1.1875-3.125c0.082031-0.17578 0.17969-0.26953 0.29688-0.28125 0.15625 0 0.25 0.09375 0.28125 0.28125 0 0.054688-0.023438 0.13672-0.0625 0.25zm-5.7344 3.4375 1.9062 4.9844 1.9062-4.9844z"/>
|
|
570
|
+
</symbol>
|
|
571
|
+
<symbol id="bo" overflow="visible">
|
|
572
|
+
<path d="m7.7031-3.2188h-5.9688c0.09375 1.043 0.56641 1.8711 1.4219 2.4844 0.66406 0.49219 1.4375 0.73438 2.3125 0.73438h2.2344c0.28906 0 0.44141 0.09375 0.45312 0.28125 0 0.1875-0.15234 0.28125-0.45312 0.28125h-2.2656c-1.1797 0-2.1836-0.39062-3.0156-1.1719-0.84375-0.80078-1.2656-1.7656-1.2656-2.8906 0-1.1875 0.44531-2.1758 1.3438-2.9688 0.83203-0.72656 1.8047-1.0938 2.9219-1.0938h2.2812c0.28906 0 0.44141 0.09375 0.45312 0.28125 0 0.1875-0.15234 0.28125-0.45312 0.28125h-2.25c-1.0859 0-1.9922 0.36719-2.7188 1.0938-0.59375 0.58594-0.92969 1.293-1 2.125h5.9688c0.28906 0 0.44141 0.09375 0.45312 0.28125 0 0.1875-0.15234 0.28125-0.45312 0.28125z"/>
|
|
573
|
+
</symbol>
|
|
574
|
+
<symbol id="bn" overflow="visible">
|
|
575
|
+
<path d="m1.9688-3.1719c-0.60547 0.29297-0.99609 0.71094-1.1719 1.25-0.042969 0.13672-0.0625 0.26172-0.0625 0.375 0 0.69922 0.53125 1.1016 1.5938 1.2031h0.4375c1.1016 0 1.8164-0.24219 2.1406-0.73438 0.019531-0.019531 0.046875-0.050781 0.078125-0.09375 0.039063-0.070313 0.085937-0.10938 0.14062-0.10938 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.14062 0.37109-0.42188 0.64062-0.57422 0.53906-1.3125 0.8125-2.2188 0.8125-0.94922 0-1.625-0.30859-2.0312-0.92188-0.16797-0.25781-0.25-0.53906-0.25-0.84375 0-0.5625 0.25781-1.0703 0.78125-1.5312 0.14453-0.13281 0.3125-0.25391 0.5-0.35938-0.375-0.28125-0.5625-0.61328-0.5625-1 0-0.55078 0.33594-1.0312 1.0156-1.4375 0.625-0.375 1.3281-0.5625 2.1094-0.5625 0.60156 0 1.1172 0.16406 1.5469 0.48438 0.16406 0.11719 0.25 0.21875 0.25 0.3125 0 0.16797-0.085938 0.28906-0.25 0.35938-0.042969 0.011719-0.085938 0.015625-0.125 0.015625-0.054688 0-0.14844-0.046875-0.28125-0.14062-0.375-0.25781-0.80469-0.39062-1.2812-0.39062-0.90625 0-1.625 0.1875-2.1562 0.5625-0.32422 0.24219-0.48438 0.50781-0.48438 0.79688 0 0.34375 0.1875 0.61719 0.5625 0.8125 0.38281-0.17578 0.82031-0.26562 1.3125-0.26562 0.65625 0 0.99219 0.125 1.0156 0.375 0 0.29297-0.38281 0.4375-1.1406 0.4375-0.49219 0-0.89062-0.0625-1.2031-0.1875zm0.46875-0.1875c0.17578 0.042969 0.42188 0.0625 0.73438 0.0625 0.35156 0 0.61328-0.035156 0.78125-0.10938-0.21094-0.050781-0.42969-0.078125-0.65625-0.078125-0.33594 0-0.62109 0.042969-0.85938 0.125z"/>
|
|
576
|
+
</symbol>
|
|
577
|
+
<symbol id="bm" overflow="visible">
|
|
578
|
+
<path d="m3.75-4.3906v3.1094c0 0.375 0.054688 0.60156 0.17188 0.67188 0.10156 0.085937 0.33203 0.125 0.6875 0.125 0.25781 0 0.39062 0.078125 0.39062 0.23438-0.085938 0.15625-0.24219 0.24219-0.46875 0.25h-3.8281c-0.28125 0-0.4375-0.054688-0.46875-0.17188-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0-0.15625 0.12891-0.23438 0.39062-0.23438 0.4375 0 0.69531-0.066406 0.78125-0.20312 0.039063-0.070312 0.066406-0.20312 0.078125-0.39062v-7.2188c0-0.39453-0.0625-0.62891-0.1875-0.70312-0.09375-0.0625-0.32031-0.09375-0.67188-0.09375-0.26172 0-0.39062-0.082031-0.39062-0.25 0.082031-0.15625 0.24219-0.23828 0.48438-0.25h4.3906c1.2188 0 2.1758 0.28125 2.875 0.84375l0.015625 0.015625c0.375 0.3125 0.625 0.69922 0.75 1.1562 0.050781 0.1875 0.078125 0.39062 0.078125 0.60938 0 1.1992-0.65625 1.9688-1.9688 2.3125-0.14844 0.042969-0.30859 0.078125-0.48438 0.10938 0.38281 0.61719 0.96094 1.4766 1.7344 2.5781 0.6875 0.90625 1.1953 1.4023 1.5312 1.4844 0.14453 0.023437 0.21875 0.10156 0.21875 0.23438-0.085938 0.15625-0.24219 0.24219-0.46875 0.25h-1.9219c-0.23047 0-0.36719-0.03125-0.40625-0.09375-0.023437-0.019531-0.042969-0.046875-0.0625-0.078125l-0.625-0.96875-2.1094-3.25zm2.7031-0.6875c1.1328-0.20703 1.75-0.74219 1.8438-1.6094 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.90625-0.52344-1.5234-1.5625-1.8594-0.13672-0.050781-0.26562-0.09375-0.39062-0.125 0.35156 0.46094 0.53125 1.125 0.53125 2 0 0.86719-0.14844 1.4922-0.4375 1.875zm-2.7031-3.2656v3.4531c1.0938 0 1.8008-0.10938 2.125-0.32812 0.082031-0.0625 0.16016-0.14062 0.23438-0.23438 0.1875-0.26953 0.28125-0.76953 0.28125-1.5 0-1.082-0.28906-1.75-0.85938-2-0.23047-0.09375-0.53125-0.14062-0.90625-0.14062-0.55469 0-0.84375 0.19922-0.875 0.59375zm-1.9062 7.8594h1.5312c-0.074219-0.16406-0.10938-0.42578-0.10938-0.78125v-7.125c0-0.32031 0.054687-0.55469 0.17188-0.70312h-1.5938c0.070312 0.16797 0.10938 0.42188 0.10938 0.76562v7.0625c0 0.35547-0.039063 0.61719-0.10938 0.78125zm2.9844-3.9062 2.5156 3.9062h1.3594c-0.6875-0.69531-1.6484-2.0312-2.875-4-0.28125 0.042969-0.52734 0.0625-0.73438 0.0625-0.042969 0-0.13281 0.011719-0.26562 0.03125z"/>
|
|
579
|
+
</symbol>
|
|
580
|
+
<symbol id="bl" overflow="visible">
|
|
581
|
+
<path d="m2.6094-2.2969 0.14062 1.5938c0.019531 0.24219-0.070312 0.35938-0.26562 0.35938-0.11719 0-0.19531-0.050781-0.23438-0.15625-0.011719-0.03125-0.015625-0.066406-0.015625-0.10938v-0.046875l0.14062-1.6406-1.25 0.92188c-0.085938 0.0625-0.15234 0.09375-0.20312 0.09375-0.125 0-0.21094-0.054688-0.25-0.17188-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.11328 0.066406-0.19531 0.20312-0.25l1.4062-0.6875-1.4062-0.67188c-0.13672-0.0625-0.20312-0.14844-0.20312-0.26562 0-0.125 0.0625-0.20703 0.1875-0.25 0.019531-0.007812 0.046875-0.015625 0.078125-0.015625 0.039063 0 0.10938 0.03125 0.20312 0.09375l1.25 0.92188-0.14062-1.5938v-0.10938c-0.023437-0.10156 0.023437-0.17969 0.14062-0.23438h0.03125c0.03125-0.019531 0.0625-0.03125 0.09375-0.03125 0.1875 0 0.26953 0.12109 0.25 0.35938l-0.14062 1.6094 1.2656-0.9375c0.070312-0.050781 0.13281-0.078125 0.1875-0.078125 0.125 0 0.20703 0.058594 0.25 0.17188 0.019531 0.03125 0.03125 0.0625 0.03125 0.09375 0 0.11719-0.074219 0.20312-0.21875 0.26562l-1.4219 0.6875 1.4531 0.67188c0.125 0.0625 0.1875 0.14844 0.1875 0.25 0 0.125-0.0625 0.21484-0.1875 0.26562-0.03125 0.011719-0.0625 0.015625-0.09375 0.015625-0.054688 0-0.17188-0.070312-0.35938-0.21875z"/>
|
|
582
|
+
</symbol>
|
|
583
|
+
<symbol id="bk" overflow="visible">
|
|
584
|
+
<path d="m4.0938-2.2969v2.7969c0 0.20703-0.070312 0.31641-0.20312 0.32812-0.13672 0-0.20312-0.10938-0.20312-0.32812v-2.7969h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7969c0-0.20703 0.066406-0.31641 0.20312-0.32812 0.13281 0 0.20312 0.10938 0.20312 0.32812v2.7969h2.7812c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
585
|
+
</symbol>
|
|
586
|
+
<symbol id="bj" overflow="visible">
|
|
587
|
+
<path d="m6.9844-9.25v8.7812c0 0.26172-0.058594 0.40625-0.17188 0.4375-0.054688 0.023438-0.14844 0.03125-0.28125 0.03125h-5.2812c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h5.1719v-4.0156h-4.9844c-0.29297 0-0.44531-0.09375-0.45312-0.28125 0-0.1875 0.14844-0.28125 0.45312-0.28125h4.9844v-4.0156h-5.1719c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h5.2812c0.25 0 0.39062 0.058594 0.42188 0.17188 0.019531 0.054687 0.03125 0.15234 0.03125 0.29688z"/>
|
|
588
|
+
</symbol>
|
|
589
|
+
<symbol id="bi" overflow="visible">
|
|
590
|
+
<path d="m2.2188-10.031v13.062c0 0.30078-0.089844 0.45703-0.26562 0.46875-0.1875 0-0.28125-0.15625-0.28125-0.46875v-13.062c0-0.30078 0.09375-0.45703 0.28125-0.46875 0.17578 0 0.26562 0.15625 0.26562 0.46875z"/>
|
|
591
|
+
</symbol>
|
|
592
|
+
<symbol id="bh" overflow="visible">
|
|
593
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
594
|
+
</symbol>
|
|
595
|
+
<symbol id="bg" overflow="visible">
|
|
596
|
+
<path d="m6.8281-3.875-1.5938 6.3438c-0.10547 0.36328-0.29688 0.55078-0.57812 0.5625-0.21094 0-0.33594-0.10156-0.375-0.29688-0.011719-0.03125-0.015625-0.0625-0.015625-0.09375s0.015625-0.10547 0.046875-0.21875l1.5938-6.4375c0.09375-0.375 0.14062-0.67188 0.14062-0.89062 0-0.64453-0.25-0.96875-0.75-0.96875-0.44922 0-0.89844 0.16406-1.3438 0.48438-0.34375 0.27344-0.65234 0.67188-0.92188 1.2031l-0.03125 0.078125c-0.042969 0.23047-0.09375 0.44531-0.15625 0.64062-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938l0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.5 0 0.875 0.21094 1.125 0.625 0.09375 0.17969 0.14453 0.375 0.15625 0.59375 0.47656-0.6875 1.0859-1.082 1.8281-1.1875 0.11328-0.019531 0.22656-0.03125 0.34375-0.03125 0.83203 0 1.3477 0.32422 1.5469 0.96875v0.015625c0.039062 0.15625 0.0625 0.32812 0.0625 0.51562 0 0.27344-0.039062 0.54297-0.10938 0.8125z"/>
|
|
597
|
+
</symbol>
|
|
598
|
+
<symbol id="bf" overflow="visible">
|
|
599
|
+
<path d="m9.4531-3.1875-7.7656 3.6562c-0.11719 0.0625-0.19922 0.09375-0.25 0.09375-0.14844 0-0.23438-0.074219-0.26562-0.21875-0.011719-0.023438-0.015625-0.042969-0.015625-0.0625 0-0.11719 0.085938-0.21875 0.26562-0.3125l7.3594-3.4688-7.3594-3.4688c-0.17969-0.09375-0.26562-0.19531-0.26562-0.3125 0-0.14453 0.070312-0.23438 0.21875-0.26562 0.019531-0.007813 0.039062-0.015625 0.0625-0.015625 0.050781 0 0.13281 0.03125 0.25 0.09375l7.7656 3.6562c0.17578 0.085938 0.26562 0.1875 0.26562 0.3125s-0.089844 0.23047-0.26562 0.3125z"/>
|
|
600
|
+
</symbol>
|
|
601
|
+
<symbol id="t" overflow="visible">
|
|
602
|
+
<path d="m4.6719-4.2344-0.46875 1.9219c-0.15625 0.63672-0.23438 1.0469-0.23438 1.2344 0 0.49219 0.17188 0.78125 0.51562 0.875 0.070313 0.03125 0.15625 0.046875 0.25 0.046875 0.46875 0 0.89062-0.23438 1.2656-0.70312 0.25781-0.28906 0.45703-0.66406 0.59375-1.125 0.03125-0.10156 0.09375-0.15625 0.1875-0.15625 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.23047-0.14062 0.5625-0.42188 1-0.51172 0.77344-1.1172 1.1562-1.8125 1.1562-0.63672 0-1.1016-0.26562-1.3906-0.79688-0.054688-0.082031-0.09375-0.17188-0.125-0.26562-0.21875 0.44922-0.52734 0.76172-0.92188 0.9375-0.17969 0.082031-0.35938 0.125-0.54688 0.125-0.5625 0-0.95312-0.16406-1.1719-0.5-0.09375-0.11328-0.14062-0.25391-0.14062-0.42188 0-0.34375 0.14844-0.58594 0.45312-0.73438 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.11719 0.51562 0.34375v0.14062c0 0.32422-0.15625 0.55859-0.46875 0.70312-0.054688 0.03125-0.11719 0.046875-0.1875 0.046875 0.19531 0.125 0.42969 0.1875 0.70312 0.1875 0.5 0 0.89062-0.32812 1.1719-0.98438 0.0625-0.14453 0.11328-0.30078 0.15625-0.46875 0.50781-1.9062 0.76562-3.0156 0.76562-3.3281-0.0625-0.58203-0.32031-0.89453-0.76562-0.9375-0.48047 0-0.92188 0.24609-1.3281 0.73438v0.015625c0 0.011719-0.007813 0.015625-0.015625 0.015625-0.13672 0.1875-0.26172 0.40234-0.375 0.64062-0.042969 0.11719-0.085938 0.23047-0.125 0.34375l-0.03125 0.078125c-0.023438 0.10547-0.078125 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.22656 0.14453-0.56641 0.4375-1.0156 0.50781-0.75781 1.1133-1.1406 1.8125-1.1406 0.71875 0 1.2227 0.35547 1.5156 1.0625 0.28906-0.57031 0.6875-0.91406 1.1875-1.0312 0.09375-0.019531 0.1875-0.03125 0.28125-0.03125 0.55078 0 0.9375 0.15625 1.1562 0.46875 0.09375 0.125 0.14062 0.27734 0.14062 0.45312 0 0.38672-0.17188 0.64062-0.51562 0.76562-0.085937 0.03125-0.16406 0.046875-0.23438 0.046875-0.29297 0-0.46484-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.28125 0.13281-0.5 0.40625-0.65625 0.082031-0.050781 0.17188-0.085938 0.26562-0.10938-0.19922-0.11328-0.43359-0.17188-0.70312-0.17188-0.63672 0-1.0859 0.49609-1.3438 1.4844-0.023438 0.054687-0.039062 0.10547-0.046875 0.15625z"/>
|
|
603
|
+
</symbol>
|
|
604
|
+
<symbol id="be" overflow="visible">
|
|
605
|
+
<path d="m6.4375-4.4844c0 1.3672-0.17188 2.4219-0.51562 3.1719-0.55469 1.043-1.3672 1.582-2.4375 1.625-0.84375 0-1.5273-0.33594-2.0469-1.0156-0.10547-0.11328-0.19531-0.25-0.26562-0.40625-0.41797-0.76953-0.625-1.8945-0.625-3.375 0-1.3633 0.17188-2.4219 0.51562-3.1719 0.46875-1.0391 1.2227-1.5977 2.2656-1.6719h0.17188c0.83203 0 1.5078 0.33594 2.0312 1v0.015625c0.125 0.16797 0.23828 0.35547 0.34375 0.5625 0.375 0.79297 0.5625 1.8828 0.5625 3.2656zm-2.9531 4.4844c0.59375 0 1.0469-0.28516 1.3594-0.85938 0.13281-0.25 0.22656-0.54688 0.28125-0.89062 0.10156-0.59375 0.15625-1.5547 0.15625-2.8906 0-1.3008-0.046875-2.2109-0.14062-2.7344-0.16797-0.88281-0.60156-1.4141-1.2969-1.5938-0.11719-0.03125-0.23438-0.046875-0.35938-0.046875-0.65625 0-1.1328 0.32812-1.4219 0.98438-0.10547 0.21875-0.1875 0.49219-0.25 0.8125-0.074219 0.5-0.10938 1.3594-0.10938 2.5781 0 1.4062 0.050781 2.3906 0.15625 2.9531 0.16406 0.89844 0.57812 1.4375 1.2344 1.625 0.13281 0.042969 0.26562 0.0625 0.39062 0.0625z"/>
|
|
606
|
+
</symbol>
|
|
607
|
+
<symbol id="nc" overflow="visible">
|
|
608
|
+
<path d="m4.5938-3.2031c0 0.98047-0.12109 1.7344-0.35938 2.2656-0.39844 0.75-0.98047 1.1328-1.75 1.1562-0.60547 0-1.0898-0.23828-1.4531-0.71875-0.074219-0.082031-0.13672-0.17969-0.1875-0.29688-0.30469-0.55078-0.45312-1.3516-0.45312-2.4062 0-0.97656 0.125-1.7344 0.375-2.2656 0.33203-0.75 0.86719-1.1445 1.6094-1.1875h0.125c0.59375 0 1.0781 0.23438 1.4531 0.70312v0.015625c0.09375 0.11719 0.17578 0.24609 0.25 0.39062 0.25781 0.57422 0.39062 1.3555 0.39062 2.3438zm-2.1094 3.2031c0.42578 0 0.75-0.20312 0.96875-0.60938 0.09375-0.17578 0.16016-0.39062 0.20312-0.64062 0.070312-0.42578 0.10938-1.1133 0.10938-2.0625 0-0.92578-0.03125-1.5781-0.09375-1.9531-0.125-0.63281-0.43359-1.0156-0.92188-1.1406-0.085938-0.019531-0.17188-0.03125-0.26562-0.03125-0.46094 0-0.79688 0.23438-1.0156 0.70312-0.074219 0.15625-0.13281 0.35156-0.17188 0.57812-0.054687 0.35547-0.078125 0.96875-0.078125 1.8438 0 1 0.035156 1.7031 0.10938 2.1094 0.125 0.63672 0.41406 1.0234 0.875 1.1562 0.09375 0.03125 0.1875 0.046875 0.28125 0.046875z"/>
|
|
609
|
+
</symbol>
|
|
610
|
+
<symbol id="bd" overflow="visible">
|
|
611
|
+
<path d="m2.2188-10.031v13.062c0 0.30078-0.089844 0.45703-0.26562 0.46875-0.1875 0-0.28125-0.15625-0.28125-0.46875v-13.062c0-0.30078 0.09375-0.45703 0.28125-0.46875 0.17578 0 0.26562 0.15625 0.26562 0.46875z"/>
|
|
612
|
+
</symbol>
|
|
613
|
+
<symbol id="nb" overflow="visible">
|
|
614
|
+
<path d="m9.4688-8.3281-7.375 3.4844 7.3594 3.4688c0.15625 0.125 0.24219 0.22656 0.26562 0.29688 0 0.14844-0.074219 0.23438-0.21875 0.26562-0.023438 0.011719-0.042969 0.015625-0.0625 0.015625-0.054688 0-0.13281-0.023437-0.23438-0.078125l-7.7812-3.6719c-0.17969-0.070313-0.26562-0.17188-0.26562-0.29688s0.085938-0.22656 0.26562-0.3125l7.7969-3.6562c0.09375-0.0625 0.16406-0.09375 0.21875-0.09375 0.14453 0 0.23438 0.074219 0.26562 0.21875 0.007813 0.023438 0.015625 0.042969 0.015625 0.0625 0 0.13672-0.085938 0.23438-0.25 0.29688zm-0.21875 10.25h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h7.5938c0.30078 0 0.46094 0.09375 0.48438 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
615
|
+
</symbol>
|
|
616
|
+
<symbol id="na" overflow="visible">
|
|
617
|
+
<path d="m9.8906-4.5781h-8.625c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.25c-0.74219-0.82031-1.2031-1.5039-1.3906-2.0469 0-0.10156 0.09375-0.15625 0.28125-0.15625 0.10156 0 0.17188 0.011719 0.20312 0.03125l0.1875 0.3125c0.90625 1.6797 2.3008 2.7812 4.1875 3.3125 0.13281 0.042969 0.20703 0.10547 0.21875 0.1875 0 0.085938-0.078125 0.14844-0.23438 0.1875-1.9062 0.54297-3.3125 1.6719-4.2188 3.3906-0.09375 0.16406-0.16406 0.25391-0.20312 0.26562h-0.14062c-0.1875 0-0.28125-0.054688-0.28125-0.15625 0-0.125 0.14453-0.40625 0.4375-0.84375 0.25781-0.38281 0.57812-0.78516 0.95312-1.2031h-8.25c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.625c0.15625 0 0.28125-0.03125 0.375-0.09375l0.015625-0.015625 0.015625-0.03125c0.55078-0.39453 1.0859-0.70703 1.6094-0.9375-0.5625-0.25-1.0938-0.5625-1.5938-0.9375-0.11719-0.09375-0.25781-0.14062-0.42188-0.14062z"/>
|
|
618
|
+
</symbol>
|
|
619
|
+
<symbol id="mz" overflow="visible">
|
|
620
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
621
|
+
</symbol>
|
|
622
|
+
<symbol id="my" overflow="visible">
|
|
623
|
+
<path d="m6.8281-3.875-1.5938 6.3438c-0.10547 0.36328-0.29688 0.55078-0.57812 0.5625-0.21094 0-0.33594-0.10156-0.375-0.29688-0.011719-0.03125-0.015625-0.0625-0.015625-0.09375s0.015625-0.10547 0.046875-0.21875l1.5938-6.4375c0.09375-0.375 0.14062-0.67188 0.14062-0.89062 0-0.64453-0.25-0.96875-0.75-0.96875-0.44922 0-0.89844 0.16406-1.3438 0.48438-0.34375 0.27344-0.65234 0.67188-0.92188 1.2031l-0.03125 0.078125c-0.042969 0.23047-0.09375 0.44531-0.15625 0.64062-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938l0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.5 0 0.875 0.21094 1.125 0.625 0.09375 0.17969 0.14453 0.375 0.15625 0.59375 0.47656-0.6875 1.0859-1.082 1.8281-1.1875 0.11328-0.019531 0.22656-0.03125 0.34375-0.03125 0.83203 0 1.3477 0.32422 1.5469 0.96875v0.015625c0.039062 0.15625 0.0625 0.32812 0.0625 0.51562 0 0.27344-0.039062 0.54297-0.10938 0.8125z"/>
|
|
624
|
+
</symbol>
|
|
625
|
+
<symbol id="bc" overflow="visible">
|
|
626
|
+
<path d="m5.1406-5.5938-0.84375 4.4375c-0.085937 0.57422-0.25 1.2344-0.5 1.9844-0.09375 0.26953-0.1875 0.5-0.28125 0.6875-0.32422 0.6875-0.73047 1.1133-1.2188 1.2812-0.125 0.050781-0.24609 0.078125-0.35938 0.078125-0.46875 0-0.82031-0.16406-1.0469-0.48438-0.10547-0.13672-0.15625-0.29688-0.15625-0.48438 0-0.375 0.16016-0.63281 0.48438-0.76562 0.09375-0.054687 0.19141-0.078125 0.29688-0.078125 0.26953 0 0.4375 0.11328 0.5 0.34375 0.007813 0.050781 0.015625 0.097656 0.015625 0.14062 0 0.32031-0.14062 0.54688-0.42188 0.67188-0.10547 0.050781-0.21875 0.082031-0.34375 0.09375 0.17578 0.16406 0.39844 0.25 0.67188 0.25 0.40625 0 0.72266-0.46094 0.95312-1.375 0.050781-0.21094 0.10938-0.49219 0.17188-0.84375l0.09375-0.40625 1.0469-5.5312h-0.92188c-0.24219 0-0.37109-0.039062-0.39062-0.125v-0.046875c0-0.15625 0.078125-0.24219 0.23438-0.26562h1.1406c0.22656-1.1641 0.38281-1.8984 0.46875-2.2031 0.28125-0.92578 0.77344-1.4609 1.4844-1.6094 0.10156-0.019531 0.20312-0.03125 0.29688-0.03125 0.47656 0 0.83203 0.16406 1.0625 0.48438 0.10156 0.13672 0.15625 0.29688 0.15625 0.48438 0 0.375-0.16406 0.63281-0.48438 0.76562-0.09375 0.054687-0.19531 0.078125-0.29688 0.078125-0.27344 0-0.4375-0.11328-0.5-0.34375-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28906 0.12891-0.50781 0.39062-0.65625 0.10156-0.0625 0.22656-0.097656 0.375-0.10938-0.17969-0.16406-0.40625-0.25-0.6875-0.25-0.29297 0-0.51172 0.15625-0.65625 0.46875-0.074219 0.13672-0.1875 0.625-0.34375 1.4688l-0.29688 1.5938h1.1719c0.22656 0 0.35156 0.054688 0.375 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
627
|
+
</symbol>
|
|
628
|
+
<symbol id="bb" overflow="visible">
|
|
629
|
+
<path d="m4.6719-4.2344-0.46875 1.9219c-0.15625 0.63672-0.23438 1.0469-0.23438 1.2344 0 0.49219 0.17188 0.78125 0.51562 0.875 0.070313 0.03125 0.15625 0.046875 0.25 0.046875 0.46875 0 0.89062-0.23438 1.2656-0.70312 0.25781-0.28906 0.45703-0.66406 0.59375-1.125 0.03125-0.10156 0.09375-0.15625 0.1875-0.15625 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.23047-0.14062 0.5625-0.42188 1-0.51172 0.77344-1.1172 1.1562-1.8125 1.1562-0.63672 0-1.1016-0.26562-1.3906-0.79688-0.054688-0.082031-0.09375-0.17188-0.125-0.26562-0.21875 0.44922-0.52734 0.76172-0.92188 0.9375-0.17969 0.082031-0.35938 0.125-0.54688 0.125-0.5625 0-0.95312-0.16406-1.1719-0.5-0.09375-0.11328-0.14062-0.25391-0.14062-0.42188 0-0.34375 0.14844-0.58594 0.45312-0.73438 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.11719 0.51562 0.34375v0.14062c0 0.32422-0.15625 0.55859-0.46875 0.70312-0.054688 0.03125-0.11719 0.046875-0.1875 0.046875 0.19531 0.125 0.42969 0.1875 0.70312 0.1875 0.5 0 0.89062-0.32812 1.1719-0.98438 0.0625-0.14453 0.11328-0.30078 0.15625-0.46875 0.50781-1.9062 0.76562-3.0156 0.76562-3.3281-0.0625-0.58203-0.32031-0.89453-0.76562-0.9375-0.48047 0-0.92188 0.24609-1.3281 0.73438v0.015625c0 0.011719-0.007813 0.015625-0.015625 0.015625-0.13672 0.1875-0.26172 0.40234-0.375 0.64062-0.042969 0.11719-0.085938 0.23047-0.125 0.34375l-0.03125 0.078125c-0.023438 0.10547-0.078125 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.22656 0.14453-0.56641 0.4375-1.0156 0.50781-0.75781 1.1133-1.1406 1.8125-1.1406 0.71875 0 1.2227 0.35547 1.5156 1.0625 0.28906-0.57031 0.6875-0.91406 1.1875-1.0312 0.09375-0.019531 0.1875-0.03125 0.28125-0.03125 0.55078 0 0.9375 0.15625 1.1562 0.46875 0.09375 0.125 0.14062 0.27734 0.14062 0.45312 0 0.38672-0.17188 0.64062-0.51562 0.76562-0.085937 0.03125-0.16406 0.046875-0.23438 0.046875-0.29297 0-0.46484-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.28125 0.13281-0.5 0.40625-0.65625 0.082031-0.050781 0.17188-0.085938 0.26562-0.10938-0.19922-0.11328-0.43359-0.17188-0.70312-0.17188-0.63672 0-1.0859 0.49609-1.3438 1.4844-0.023438 0.054687-0.039062 0.10547-0.046875 0.15625z"/>
|
|
630
|
+
</symbol>
|
|
631
|
+
<symbol id="mx" overflow="visible">
|
|
632
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
633
|
+
</symbol>
|
|
634
|
+
<symbol id="ba" overflow="visible">
|
|
635
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
636
|
+
</symbol>
|
|
637
|
+
<symbol id="mw" overflow="visible">
|
|
638
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
639
|
+
</symbol>
|
|
640
|
+
<symbol id="mv" overflow="visible">
|
|
641
|
+
<path d="m4.5938-3.2031c0 0.98047-0.12109 1.7344-0.35938 2.2656-0.39844 0.75-0.98047 1.1328-1.75 1.1562-0.60547 0-1.0898-0.23828-1.4531-0.71875-0.074219-0.082031-0.13672-0.17969-0.1875-0.29688-0.30469-0.55078-0.45312-1.3516-0.45312-2.4062 0-0.97656 0.125-1.7344 0.375-2.2656 0.33203-0.75 0.86719-1.1445 1.6094-1.1875h0.125c0.59375 0 1.0781 0.23438 1.4531 0.70312v0.015625c0.09375 0.11719 0.17578 0.24609 0.25 0.39062 0.25781 0.57422 0.39062 1.3555 0.39062 2.3438zm-2.1094 3.2031c0.42578 0 0.75-0.20312 0.96875-0.60938 0.09375-0.17578 0.16016-0.39062 0.20312-0.64062 0.070312-0.42578 0.10938-1.1133 0.10938-2.0625 0-0.92578-0.03125-1.5781-0.09375-1.9531-0.125-0.63281-0.43359-1.0156-0.92188-1.1406-0.085938-0.019531-0.17188-0.03125-0.26562-0.03125-0.46094 0-0.79688 0.23438-1.0156 0.70312-0.074219 0.15625-0.13281 0.35156-0.17188 0.57812-0.054687 0.35547-0.078125 0.96875-0.078125 1.8438 0 1 0.035156 1.7031 0.10938 2.1094 0.125 0.63672 0.41406 1.0234 0.875 1.1562 0.09375 0.03125 0.1875 0.046875 0.28125 0.046875z"/>
|
|
642
|
+
</symbol>
|
|
643
|
+
<symbol id="mu" overflow="visible">
|
|
644
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
645
|
+
</symbol>
|
|
646
|
+
<symbol id="mt" overflow="visible">
|
|
647
|
+
<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"/>
|
|
648
|
+
</symbol>
|
|
649
|
+
<symbol id="ms" overflow="visible">
|
|
650
|
+
<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"/>
|
|
651
|
+
</symbol>
|
|
652
|
+
<symbol id="mr" overflow="visible">
|
|
653
|
+
<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"/>
|
|
654
|
+
</symbol>
|
|
655
|
+
<symbol id="mq" overflow="visible">
|
|
656
|
+
<path d="m2.2188-10.031v13.062c0 0.30078-0.089844 0.45703-0.26562 0.46875-0.1875 0-0.28125-0.15625-0.28125-0.46875v-13.062c0-0.30078 0.09375-0.45703 0.28125-0.46875 0.17578 0 0.26562 0.15625 0.26562 0.46875z"/>
|
|
657
|
+
</symbol>
|
|
658
|
+
<symbol id="mp" overflow="visible">
|
|
659
|
+
<path d="m9.4688-8.3281-7.375 3.4844 7.3594 3.4688c0.15625 0.125 0.24219 0.22656 0.26562 0.29688 0 0.14844-0.074219 0.23438-0.21875 0.26562-0.023438 0.011719-0.042969 0.015625-0.0625 0.015625-0.054688 0-0.13281-0.023437-0.23438-0.078125l-7.7812-3.6719c-0.17969-0.070313-0.26562-0.17188-0.26562-0.29688s0.085938-0.22656 0.26562-0.3125l7.7969-3.6562c0.09375-0.0625 0.16406-0.09375 0.21875-0.09375 0.14453 0 0.23438 0.074219 0.26562 0.21875 0.007813 0.023438 0.015625 0.042969 0.015625 0.0625 0 0.13672-0.085938 0.23438-0.25 0.29688zm-0.21875 10.25h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h7.5938c0.30078 0 0.46094 0.09375 0.48438 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
660
|
+
</symbol>
|
|
661
|
+
<symbol id="mo" overflow="visible">
|
|
662
|
+
<path d="m1.9688-3.1719c-0.60547 0.29297-0.99609 0.71094-1.1719 1.25-0.042969 0.13672-0.0625 0.26172-0.0625 0.375 0 0.69922 0.53125 1.1016 1.5938 1.2031h0.4375c1.1016 0 1.8164-0.24219 2.1406-0.73438 0.019531-0.019531 0.046875-0.050781 0.078125-0.09375 0.039063-0.070313 0.085937-0.10938 0.14062-0.10938 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.14062 0.37109-0.42188 0.64062-0.57422 0.53906-1.3125 0.8125-2.2188 0.8125-0.94922 0-1.625-0.30859-2.0312-0.92188-0.16797-0.25781-0.25-0.53906-0.25-0.84375 0-0.5625 0.25781-1.0703 0.78125-1.5312 0.14453-0.13281 0.3125-0.25391 0.5-0.35938-0.375-0.28125-0.5625-0.61328-0.5625-1 0-0.55078 0.33594-1.0312 1.0156-1.4375 0.625-0.375 1.3281-0.5625 2.1094-0.5625 0.60156 0 1.1172 0.16406 1.5469 0.48438 0.16406 0.11719 0.25 0.21875 0.25 0.3125 0 0.16797-0.085938 0.28906-0.25 0.35938-0.042969 0.011719-0.085938 0.015625-0.125 0.015625-0.054688 0-0.14844-0.046875-0.28125-0.14062-0.375-0.25781-0.80469-0.39062-1.2812-0.39062-0.90625 0-1.625 0.1875-2.1562 0.5625-0.32422 0.24219-0.48438 0.50781-0.48438 0.79688 0 0.34375 0.1875 0.61719 0.5625 0.8125 0.38281-0.17578 0.82031-0.26562 1.3125-0.26562 0.65625 0 0.99219 0.125 1.0156 0.375 0 0.29297-0.38281 0.4375-1.1406 0.4375-0.49219 0-0.89062-0.0625-1.2031-0.1875zm0.46875-0.1875c0.17578 0.042969 0.42188 0.0625 0.73438 0.0625 0.35156 0 0.61328-0.035156 0.78125-0.10938-0.21094-0.050781-0.42969-0.078125-0.65625-0.078125-0.33594 0-0.62109 0.042969-0.85938 0.125z"/>
|
|
663
|
+
</symbol>
|
|
664
|
+
<symbol id="mn" overflow="visible">
|
|
665
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
666
|
+
</symbol>
|
|
667
|
+
<symbol id="mm" overflow="visible">
|
|
668
|
+
<path d="m4.5469 24.641v-25.188h4.7031v1.0312h-3.6875v24.156z"/>
|
|
669
|
+
</symbol>
|
|
670
|
+
<symbol id="az" overflow="visible">
|
|
671
|
+
<path d="m4.5469 8.4219v-8.4375h1.0156v8.4375z"/>
|
|
672
|
+
</symbol>
|
|
673
|
+
<symbol id="ml" overflow="visible">
|
|
674
|
+
<path d="m4.5469 24.625v-25.188h1.0156v24.172h3.6875v1.0156z"/>
|
|
675
|
+
</symbol>
|
|
676
|
+
<symbol id="mk" overflow="visible">
|
|
677
|
+
<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"/>
|
|
678
|
+
</symbol>
|
|
679
|
+
<symbol id="mi" overflow="visible">
|
|
680
|
+
<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"/>
|
|
681
|
+
</symbol>
|
|
682
|
+
<symbol id="mh" overflow="visible">
|
|
683
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
684
|
+
</symbol>
|
|
685
|
+
<symbol id="mg" overflow="visible">
|
|
686
|
+
<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"/>
|
|
687
|
+
</symbol>
|
|
688
|
+
<symbol id="mf" overflow="visible">
|
|
689
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
690
|
+
</symbol>
|
|
691
|
+
<symbol id="s" overflow="visible">
|
|
692
|
+
<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"/>
|
|
693
|
+
</symbol>
|
|
694
|
+
<symbol id="me" overflow="visible">
|
|
695
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
696
|
+
</symbol>
|
|
697
|
+
<symbol id="md" overflow="visible">
|
|
698
|
+
<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"/>
|
|
699
|
+
</symbol>
|
|
700
|
+
<symbol id="mc" overflow="visible">
|
|
701
|
+
<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"/>
|
|
702
|
+
</symbol>
|
|
703
|
+
<symbol id="mb" overflow="visible">
|
|
704
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
705
|
+
</symbol>
|
|
706
|
+
<symbol id="ma" overflow="visible">
|
|
707
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
708
|
+
</symbol>
|
|
709
|
+
<symbol id="ly" overflow="visible">
|
|
710
|
+
<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"/>
|
|
711
|
+
</symbol>
|
|
712
|
+
<symbol id="a" overflow="visible">
|
|
713
|
+
<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"/>
|
|
714
|
+
</symbol>
|
|
715
|
+
<symbol id="lx" overflow="visible">
|
|
716
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
717
|
+
</symbol>
|
|
718
|
+
<symbol id="lw" overflow="visible">
|
|
719
|
+
<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"/>
|
|
720
|
+
</symbol>
|
|
721
|
+
<symbol id="lv" overflow="visible">
|
|
722
|
+
<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"/>
|
|
723
|
+
</symbol>
|
|
724
|
+
<symbol id="j" overflow="visible">
|
|
725
|
+
<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"/>
|
|
726
|
+
</symbol>
|
|
727
|
+
<symbol id="lu" overflow="visible">
|
|
728
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
729
|
+
</symbol>
|
|
730
|
+
<symbol id="lt" overflow="visible">
|
|
731
|
+
<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"/>
|
|
732
|
+
</symbol>
|
|
733
|
+
<symbol id="ls" overflow="visible">
|
|
734
|
+
<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"/>
|
|
735
|
+
</symbol>
|
|
736
|
+
<symbol id="lr" overflow="visible">
|
|
737
|
+
<path d="m3.7656 24.641v-24.156h-3.7031v-1.0312h4.7188v25.188z"/>
|
|
738
|
+
</symbol>
|
|
739
|
+
<symbol id="ay" overflow="visible">
|
|
740
|
+
<path d="m3.7656 8.4219v-8.4375h1.0156v8.4375z"/>
|
|
741
|
+
</symbol>
|
|
742
|
+
<symbol id="lq" overflow="visible">
|
|
743
|
+
<path d="m0.0625 24.625v-1.0156h3.7031v-24.172h1.0156v25.188z"/>
|
|
744
|
+
</symbol>
|
|
745
|
+
<symbol id="lp" overflow="visible">
|
|
746
|
+
<path d="m3.7969-0.54688c-0.34375 0.4375-0.79297 0.65625-1.3438 0.65625-0.60547 0-1.1211-0.24219-1.5469-0.73438-0.375-0.42578-0.5625-0.9375-0.5625-1.5312 0-0.6875 0.25781-1.2578 0.78125-1.7188 0.41406-0.36328 0.89453-0.54688 1.4375-0.54688 0.50781 0 0.92969 0.21094 1.2656 0.625v-2.1562c0-0.25781-0.046875-0.42188-0.14062-0.48438-0.09375-0.050781-0.30859-0.078125-0.64062-0.078125v-0.3125l1.4375-0.10938v6.0625c0 0.26172 0.050781 0.42188 0.15625 0.48438h0.015625c0.09375 0.054687 0.29688 0.078125 0.60938 0.078125v0.3125l-1.4688 0.10938zm0-2.6875c0-0.13281-0.03125-0.24219-0.09375-0.32812l-0.015625-0.03125c-0.27344-0.40625-0.63281-0.60938-1.0781-0.60938-0.46875 0-0.84375 0.21484-1.125 0.64062-0.21094 0.32422-0.3125 0.79688-0.3125 1.4219s0.09375 1.0898 0.28125 1.3906c0.26953 0.42969 0.625 0.64062 1.0625 0.64062 0.47656 0 0.86328-0.21875 1.1562-0.65625l0.015625-0.046875c0.070312-0.13281 0.10938-0.25781 0.10938-0.375z"/>
|
|
747
|
+
</symbol>
|
|
748
|
+
<symbol id="ln" overflow="visible">
|
|
749
|
+
<path d="m3.9062-2.3125h-2.7969c0 0.67969 0.097656 1.1797 0.29688 1.5 0.32031 0.41797 0.70312 0.64062 1.1406 0.67188 0.45703 0 0.82812-0.1875 1.1094-0.5625 0.09375-0.13281 0.17188-0.28906 0.23438-0.46875 0.019531-0.09375 0.0625-0.14062 0.125-0.14062 0.09375 0 0.14062 0.042969 0.14062 0.125 0 0.14844-0.09375 0.34375-0.28125 0.59375-0.28125 0.375-0.64062 0.59766-1.0781 0.67188-0.10547 0.019531-0.21094 0.03125-0.3125 0.03125-0.625 0-1.1641-0.23828-1.6094-0.71875-0.39844-0.4375-0.59375-0.96875-0.59375-1.5938 0-0.6875 0.23828-1.2578 0.71875-1.7188 0.38281-0.375 0.83594-0.5625 1.3594-0.5625 0.75 0 1.2734 0.32422 1.5781 0.96875 0.14453 0.30469 0.21875 0.63672 0.21875 1 0 0.11719-0.027344 0.18359-0.078125 0.20312h-0.17188zm-2.7812-0.20312h2.3594c0-0.63281-0.14062-1.1133-0.42188-1.4375-0.17969-0.20703-0.41406-0.3125-0.70312-0.3125-0.34375 0-0.63281 0.15625-0.85938 0.46875-0.23047 0.30469-0.35547 0.73047-0.375 1.2812z"/>
|
|
750
|
+
</symbol>
|
|
751
|
+
<symbol id="lm" overflow="visible">
|
|
752
|
+
<path d="m1.7812-4v3.2188c0 0.21094 0.039062 0.33594 0.125 0.375v0.015625c0.09375 0.054687 0.30469 0.078125 0.64062 0.078125h0.20312v0.3125c-0.27344-0.019531-0.69531-0.03125-1.2656-0.03125 0.019531 0-0.35938 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.625-0.03125 0.6875-0.09375l0.015625-0.015625c0.050781-0.050781 0.078125-0.16406 0.078125-0.34375v-3.2344h-0.79688v-0.3125h0.79688v-1.1406c0-0.61328 0.25-1.0664 0.75-1.3594 0.25-0.15625 0.51562-0.23438 0.79688-0.23438 0.375 0 0.64453 0.13281 0.8125 0.39062 0.050781 0.09375 0.078125 0.19922 0.078125 0.3125 0 0.23047-0.10156 0.37109-0.29688 0.42188-0.042969 0.011719-0.089844 0.015625-0.14062 0.015625-0.21875 0-0.35547-0.10156-0.40625-0.3125l-0.015625-0.015625v-0.10938c0-0.19531 0.097656-0.33594 0.29688-0.42188-0.10547-0.039063-0.21484-0.0625-0.32812-0.0625-0.29297 0-0.53125 0.16406-0.71875 0.48438-0.13672 0.24219-0.20312 0.53125-0.20312 0.875v1.1562h1.1719v0.3125z"/>
|
|
753
|
+
</symbol>
|
|
754
|
+
<symbol id="ll" overflow="visible">
|
|
755
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
756
|
+
</symbol>
|
|
757
|
+
<symbol id="lk" overflow="visible">
|
|
758
|
+
<path d="m0.92188 19.594c-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.015625-0.078125 0.046875-0.10938l7.3906-8.6094-7.3906-10.125c-0.03125-0.023437-0.046875-0.042969-0.046875-0.0625v-0.42188c0-0.03125 0.015625-0.0625 0.046875-0.09375 0.03125-0.023438 0.0625-0.03125 0.09375-0.03125h16.797l1.7031 3.9375h-0.40625c-0.4375-1-1.168-1.7422-2.1875-2.2188-1.0117-0.48047-2.0703-0.77734-3.1719-0.89062-1.1055-0.10547-2.3906-0.15625-3.8594-0.15625h-6.4688l6.6094 9.0312c0.019531 0.03125 0.03125 0.0625 0.03125 0.09375s-0.011719 0.066406-0.03125 0.10938l-7.2656 8.4531h7.2656c1.4375 0 2.707-0.058594 3.8125-0.17188 1.1133-0.11719 2.1719-0.41406 3.1719-0.89062 1.0078-0.48047 1.707-1.2148 2.0938-2.2031h0.40625l-1.7031 4.5z"/>
|
|
759
|
+
</symbol>
|
|
760
|
+
<symbol id="lj" overflow="visible">
|
|
761
|
+
<path d="m5.1875-3.7344h-1.1094c0.20703 0.29297 0.3125 0.65625 0.3125 1.0938 0 0.76172-0.28125 1.4219-0.84375 1.9844-0.52344 0.5-1.0781 0.75391-1.6719 0.76562-0.55469 0-0.96875-0.22266-1.25-0.67188-0.16797-0.26953-0.25-0.57031-0.25-0.90625 0-0.59375 0.21875-1.1758 0.65625-1.75 0.5-0.65625 1.0938-1.0156 1.7812-1.0781 0.0625-0.007813 0.125-0.015625 0.1875-0.015625h2.2812c0.22656 0 0.35156 0.054688 0.375 0.15625 0.007812 0.03125 0.015625 0.0625 0.015625 0.09375 0 0.21875-0.16406 0.32812-0.48438 0.32812zm-3.2969 3.625c0.38281 0 0.75-0.1875 1.0938-0.5625 0.082031-0.082031 0.15625-0.17578 0.21875-0.28125 0.28125-0.41406 0.45703-0.92578 0.53125-1.5312 0.007813-0.10156 0.015625-0.19531 0.015625-0.28125 0-0.59375-0.26562-0.91016-0.79688-0.95312l-0.015625-0.015625h-0.10938c-0.51172 0-0.92969 0.22656-1.25 0.67188-0.042969 0.054688-0.078125 0.10547-0.10938 0.15625-0.27344 0.44922-0.42188 0.98047-0.45312 1.5938-0.011719 0.042969-0.015625 0.085938-0.015625 0.125 0 0.52344 0.1875 0.85938 0.5625 1.0156 0.09375 0.042969 0.20312 0.0625 0.32812 0.0625z"/>
|
|
762
|
+
</symbol>
|
|
763
|
+
<symbol id="li" overflow="visible">
|
|
764
|
+
<path d="m5.5-2.2969h-4.2656c0.070313 0.74219 0.41406 1.3359 1.0312 1.7812 0.46875 0.34375 1.0156 0.51562 1.6406 0.51562h1.5938c0.20703 0 0.31641 0.066406 0.32812 0.20312 0 0.13281-0.10938 0.20312-0.32812 0.20312h-1.625c-0.83594 0-1.5469-0.28125-2.1406-0.84375-0.60547-0.57031-0.90625-1.2578-0.90625-2.0625 0-0.84375 0.32031-1.5508 0.96875-2.125 0.59375-0.51953 1.2852-0.78125 2.0781-0.78125h1.625c0.20703 0 0.31641 0.070312 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312h-1.5938c-0.78125 0-1.4336 0.26172-1.9531 0.78125-0.42969 0.41797-0.66797 0.92188-0.71875 1.5156h4.2656c0.20703 0 0.31641 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
765
|
+
</symbol>
|
|
766
|
+
<symbol id="lh" overflow="visible">
|
|
767
|
+
<path d="m3.7344 0.26562c-0.65625 0-1.2188-0.14062-1.6875-0.42188-0.46094-0.28906-0.80859-0.69141-1.0469-1.2031-0.23047-0.50781-0.34375-1.0859-0.34375-1.7344 0-0.6875 0.14844-1.2969 0.45312-1.8281 0.3125-0.53125 0.73438-0.96094 1.2656-1.2969 0.53125-0.33203 1.1406-0.56641 1.8281-0.70312 0.09375 0.054687 0.25391 0.14062 0.48438 0.26562 0.23828 0.125 0.48438 0.25 0.73438 0.375 0.25 0.11719 0.46875 0.21094 0.65625 0.28125 0.19531 0.0625 0.35156 0.09375 0.46875 0.09375 0.42578 0 0.71875-0.25 0.875-0.75l0.14062 0.125c-0.074219 0.25-0.17969 0.46484-0.3125 0.64062-0.13672 0.17969-0.30469 0.32812-0.5 0.45312-0.1875 0.125-0.41797 0.24219-0.6875 0.34375-0.21094-0.019531-0.63281-0.21875-1.2656-0.59375-0.67969-0.39453-1.1562-0.59375-1.4375-0.59375-0.42969 0-0.85547 0.21484-1.2812 0.64062-0.23047 0.24219-0.40234 0.52344-0.51562 0.84375-0.11719 0.32422-0.17188 0.66406-0.17188 1.0156 0 0.625 0.125 1.2109 0.375 1.75 0.25 0.54297 0.60938 0.97656 1.0781 1.2969 0.47656 0.3125 1.0391 0.46875 1.6875 0.46875 0.39453 0 0.76562-0.0625 1.1094-0.1875s0.61328-0.32031 0.8125-0.59375c0.20703-0.28125 0.3125-0.62891 0.3125-1.0469 0-0.25-0.054687-0.47266-0.15625-0.67188-0.09375-0.19531-0.23438-0.35156-0.42188-0.46875-0.1875-0.11328-0.40234-0.17188-0.64062-0.17188-0.21875 0-0.59375 0.054688-1.125 0.15625-0.51172 0.10547-0.90234 0.15625-1.1719 0.15625-0.27344 0-0.5-0.0625-0.6875-0.1875-0.17969-0.13281-0.26562-0.33203-0.26562-0.59375 0-0.28906 0.10156-0.53906 0.3125-0.75 0.21875-0.21875 0.47656-0.36328 0.78125-0.4375l0.125 0.10938c-0.14844 0.042969-0.26562 0.13281-0.35938 0.26562-0.085938 0.125-0.125 0.26562-0.125 0.42188 0 0.1875 0.054688 0.33594 0.17188 0.4375 0.11328 0.10547 0.26953 0.15625 0.46875 0.15625 0.1875 0 0.57812-0.066406 1.1719-0.20312 0.66406-0.14453 1.0938-0.21875 1.2812-0.21875 0.19531 0 0.37891 0.03125 0.54688 0.09375 0.16406 0.054688 0.3125 0.14062 0.4375 0.26562 0.125 0.11719 0.21875 0.25781 0.28125 0.42188 0.070313 0.15625 0.10938 0.33984 0.10938 0.54688 0 0.51172-0.10938 0.96094-0.32812 1.3438-0.21094 0.38672-0.49219 0.70312-0.84375 0.95312-0.34375 0.24219-0.74609 0.42188-1.2031 0.54688-0.44922 0.125-0.91406 0.1875-1.3906 0.1875z"/>
|
|
768
|
+
</symbol>
|
|
769
|
+
<symbol id="lg" overflow="visible">
|
|
770
|
+
<path d="m0.60938-0.40625 0.40625-1.625c0.082031-0.30078 0.125-0.5 0.125-0.59375 0-0.20703-0.074219-0.3125-0.21875-0.3125-0.19922 0-0.35547 0.21875-0.46875 0.65625-0.023437 0.054688-0.039063 0.10938-0.046875 0.17188-0.054688 0.10547-0.09375 0.15625-0.125 0.15625-0.054688 0-0.078125-0.019531-0.078125-0.0625 0-0.070313 0.046875-0.23828 0.14062-0.5v-0.03125l0.0625-0.14062c0.10156-0.1875 0.21094-0.30469 0.32812-0.35938 0.0625-0.03125 0.12891-0.046875 0.20312-0.046875 0.25781 0 0.44531 0.10938 0.5625 0.32812 0.039062 0.085937 0.066406 0.17969 0.078125 0.28125 0.30078-0.40625 0.66406-0.60938 1.0938-0.60938 0.40625 0 0.66016 0.15625 0.76562 0.46875 0.03125 0.085938 0.046875 0.17969 0.046875 0.28125 0 0.24219-0.14844 0.75-0.4375 1.5312-0.085937 0.21094-0.125 0.375-0.125 0.5 0 0.15625 0.054687 0.23438 0.17188 0.23438 0.3125 0 0.55078-0.28516 0.71875-0.85938 0.019531-0.082031 0.039062-0.125 0.0625-0.125v-0.015625h0.03125c0.0625 0 0.09375 0.027344 0.09375 0.078125 0 0.085938-0.054688 0.23047-0.15625 0.4375-0.19922 0.42969-0.45312 0.64062-0.76562 0.64062-0.24219 0-0.41406-0.097656-0.51562-0.29688-0.042969-0.082031-0.0625-0.17578-0.0625-0.28125 0-0.09375 0.023438-0.19531 0.078125-0.3125 0.30078-0.82031 0.45312-1.3672 0.45312-1.6406 0-0.32031-0.125-0.48438-0.375-0.48438-0.42969 0-0.78125 0.23438-1.0625 0.70312-0.03125 0.054687-0.058594 0.10156-0.078125 0.14062l-0.09375 0.35938c-0.023437 0.10547-0.0625 0.26172-0.125 0.46875l-0.15625 0.625c-0.074219 0.32422-0.11719 0.49609-0.125 0.51562-0.042969 0.125-0.13281 0.19141-0.26562 0.20312-0.11719-0.023438-0.18359-0.082031-0.20312-0.1875 0 0.011719 0.019531-0.085937 0.0625-0.29688z"/>
|
|
771
|
+
</symbol>
|
|
772
|
+
<symbol id="lf" overflow="visible">
|
|
773
|
+
<path d="m1.9688-3.1719c-0.60547 0.29297-0.99609 0.71094-1.1719 1.25-0.042969 0.13672-0.0625 0.26172-0.0625 0.375 0 0.69922 0.53125 1.1016 1.5938 1.2031h0.4375c1.1016 0 1.8164-0.24219 2.1406-0.73438 0.019531-0.019531 0.046875-0.050781 0.078125-0.09375 0.039063-0.070313 0.085937-0.10938 0.14062-0.10938 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.14062 0.37109-0.42188 0.64062-0.57422 0.53906-1.3125 0.8125-2.2188 0.8125-0.94922 0-1.625-0.30859-2.0312-0.92188-0.16797-0.25781-0.25-0.53906-0.25-0.84375 0-0.5625 0.25781-1.0703 0.78125-1.5312 0.14453-0.13281 0.3125-0.25391 0.5-0.35938-0.375-0.28125-0.5625-0.61328-0.5625-1 0-0.55078 0.33594-1.0312 1.0156-1.4375 0.625-0.375 1.3281-0.5625 2.1094-0.5625 0.60156 0 1.1172 0.16406 1.5469 0.48438 0.16406 0.11719 0.25 0.21875 0.25 0.3125 0 0.16797-0.085938 0.28906-0.25 0.35938-0.042969 0.011719-0.085938 0.015625-0.125 0.015625-0.054688 0-0.14844-0.046875-0.28125-0.14062-0.375-0.25781-0.80469-0.39062-1.2812-0.39062-0.90625 0-1.625 0.1875-2.1562 0.5625-0.32422 0.24219-0.48438 0.50781-0.48438 0.79688 0 0.34375 0.1875 0.61719 0.5625 0.8125 0.38281-0.17578 0.82031-0.26562 1.3125-0.26562 0.65625 0 0.99219 0.125 1.0156 0.375 0 0.29297-0.38281 0.4375-1.1406 0.4375-0.49219 0-0.89062-0.0625-1.2031-0.1875zm0.46875-0.1875c0.17578 0.042969 0.42188 0.0625 0.73438 0.0625 0.35156 0 0.61328-0.035156 0.78125-0.10938-0.21094-0.050781-0.42969-0.078125-0.65625-0.078125-0.33594 0-0.62109 0.042969-0.85938 0.125z"/>
|
|
774
|
+
</symbol>
|
|
775
|
+
<symbol id="le" overflow="visible">
|
|
776
|
+
<path d="m7.25-5.2188h-1.5312c0.28125 0.40625 0.42188 0.91406 0.42188 1.5156 0 1.0742-0.39844 2.0078-1.1875 2.7969-0.73047 0.6875-1.5078 1.0391-2.3281 1.0625-0.78125 0-1.3672-0.31641-1.75-0.95312-0.23047-0.375-0.34375-0.79688-0.34375-1.2656 0-0.82031 0.30078-1.6406 0.90625-2.4531 0.69531-0.91406 1.5352-1.4141 2.5156-1.5 0.082031-0.007813 0.16406-0.015625 0.25-0.015625h3.1875c0.32031 0 0.5 0.074219 0.53125 0.21875 0.007813 0.042969 0.015625 0.078125 0.015625 0.10938 0 0.32422-0.23047 0.48438-0.6875 0.48438zm-4.6094 5.0625c0.53906 0 1.0508-0.25781 1.5312-0.78125 0.125-0.125 0.23438-0.25781 0.32812-0.40625 0.38281-0.58203 0.625-1.2969 0.71875-2.1406 0.019531-0.14453 0.03125-0.26953 0.03125-0.375 0-0.84375-0.375-1.2891-1.125-1.3438l-0.015625-0.015625h-0.14062c-0.71875 0-1.3047 0.3125-1.75 0.9375-0.0625 0.074219-0.11719 0.14844-0.15625 0.21875-0.375 0.625-0.59375 1.3672-0.65625 2.2188v0.17188c0 0.74219 0.25781 1.2188 0.78125 1.4375 0.13281 0.054687 0.28516 0.078125 0.45312 0.078125z"/>
|
|
777
|
+
</symbol>
|
|
778
|
+
<symbol id="ld" overflow="visible">
|
|
779
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
780
|
+
</symbol>
|
|
781
|
+
<symbol id="lc" overflow="visible">
|
|
782
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
783
|
+
</symbol>
|
|
784
|
+
<symbol id="la" overflow="visible">
|
|
785
|
+
<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"/>
|
|
786
|
+
</symbol>
|
|
787
|
+
<symbol id="kz" overflow="visible">
|
|
788
|
+
<path d="m0.78125 19.594v-0.75c1.5312 0 2.2969-0.46484 2.2969-1.3906v-15.297c0-0.92969-0.76562-1.3906-2.2969-1.3906v-0.76562h16.312v0.76562c-1.5312 0-2.2969 0.46094-2.2969 1.3906v15.297c0 0.92578 0.76562 1.3906 2.2969 1.3906v0.75h-6.7969v-0.75c1.5312 0 2.2969-0.46484 2.2969-1.3906v-16.688h-7.3125v16.688c0 0.92578 0.76562 1.3906 2.2969 1.3906v0.75z"/>
|
|
789
|
+
</symbol>
|
|
790
|
+
<symbol id="ky" overflow="visible">
|
|
791
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
792
|
+
</symbol>
|
|
793
|
+
<symbol id="kx" overflow="visible">
|
|
794
|
+
<path d="m6.875-3.2656h-5.9688c-0.21875 0-0.33594-0.066406-0.34375-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.9844c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312zm0 1.9375h-5.9844c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.11328-0.20312 0.34375-0.20312h5.9688c0.20703 0 0.31641 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
795
|
+
</symbol>
|
|
796
|
+
<symbol id="kw" overflow="visible">
|
|
797
|
+
<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"/>
|
|
798
|
+
</symbol>
|
|
799
|
+
<symbol id="kv" overflow="visible">
|
|
800
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
801
|
+
</symbol>
|
|
802
|
+
<symbol id="ku" overflow="visible">
|
|
803
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
804
|
+
</symbol>
|
|
805
|
+
<symbol id="kt" overflow="visible">
|
|
806
|
+
<path d="m5.1875-3.7344h-1.1094c0.20703 0.29297 0.3125 0.65625 0.3125 1.0938 0 0.76172-0.28125 1.4219-0.84375 1.9844-0.52344 0.5-1.0781 0.75391-1.6719 0.76562-0.55469 0-0.96875-0.22266-1.25-0.67188-0.16797-0.26953-0.25-0.57031-0.25-0.90625 0-0.59375 0.21875-1.1758 0.65625-1.75 0.5-0.65625 1.0938-1.0156 1.7812-1.0781 0.0625-0.007813 0.125-0.015625 0.1875-0.015625h2.2812c0.22656 0 0.35156 0.054688 0.375 0.15625 0.007812 0.03125 0.015625 0.0625 0.015625 0.09375 0 0.21875-0.16406 0.32812-0.48438 0.32812zm-3.2969 3.625c0.38281 0 0.75-0.1875 1.0938-0.5625 0.082031-0.082031 0.15625-0.17578 0.21875-0.28125 0.28125-0.41406 0.45703-0.92578 0.53125-1.5312 0.007813-0.10156 0.015625-0.19531 0.015625-0.28125 0-0.59375-0.26562-0.91016-0.79688-0.95312l-0.015625-0.015625h-0.10938c-0.51172 0-0.92969 0.22656-1.25 0.67188-0.042969 0.054688-0.078125 0.10547-0.10938 0.15625-0.27344 0.44922-0.42188 0.98047-0.45312 1.5938-0.011719 0.042969-0.015625 0.085938-0.015625 0.125 0 0.52344 0.1875 0.85938 0.5625 1.0156 0.09375 0.042969 0.20312 0.0625 0.32812 0.0625z"/>
|
|
807
|
+
</symbol>
|
|
808
|
+
<symbol id="ks" overflow="visible">
|
|
809
|
+
<path d="m3.3125 2.4062c0 0.0625-0.039062 0.09375-0.10938 0.09375-0.074219 0-0.24609-0.13672-0.51562-0.40625-0.41797-0.41797-0.76172-0.90625-1.0312-1.4688-0.44922-0.90625-0.67188-1.9453-0.67188-3.125 0-1.125 0.21094-2.1406 0.64062-3.0469 0.34375-0.73828 0.78125-1.332 1.3125-1.7812 0.14453-0.11328 0.23438-0.17188 0.26562-0.17188 0.070313 0 0.10938 0.03125 0.10938 0.09375 0 0.042969-0.042969 0.10156-0.125 0.17188-1.0859 1.0938-1.625 2.6719-1.625 4.7344 0 2.0547 0.52344 3.6133 1.5781 4.6875 0.11328 0.10156 0.17188 0.17578 0.17188 0.21875z"/>
|
|
810
|
+
</symbol>
|
|
811
|
+
<symbol id="kr" overflow="visible">
|
|
812
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
813
|
+
</symbol>
|
|
814
|
+
<symbol id="km" overflow="visible">
|
|
815
|
+
<path d="m2.8906-2.5c0 1.125-0.21094 2.1406-0.625 3.0469-0.35547 0.73828-0.79688 1.332-1.3281 1.7812-0.13672 0.11328-0.22656 0.17188-0.26562 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.042969 0.046875-0.10156 0.14062-0.17188 1.0703-1.0938 1.6094-2.6719 1.6094-4.7344 0-2.0312-0.5-3.5703-1.5-4.625l-0.046875-0.046875c-0.13672-0.11328-0.20312-0.19141-0.20312-0.23438 0-0.0625 0.035156-0.09375 0.10938-0.09375 0.082031 0 0.25781 0.13672 0.53125 0.40625 0.40625 0.41797 0.75 0.90625 1.0312 1.4688 0.4375 0.90625 0.65625 1.9492 0.65625 3.125z"/>
|
|
816
|
+
</symbol>
|
|
817
|
+
<symbol id="kl" overflow="visible">
|
|
818
|
+
<path d="m6.1875-9.7656 4.7344 9.4844c0.039063 0.085938 0.0625 0.14062 0.0625 0.17188-0.054687 0.074219-0.15234 0.10938-0.29688 0.10938h-9.7188c-0.19922 0-0.30469-0.035156-0.3125-0.10938 0-0.03125 0.023438-0.085937 0.078125-0.17188l4.7188-9.4844c0.082031-0.14453 0.16016-0.22656 0.23438-0.25 0.03125-0.007813 0.078125-0.015625 0.14062-0.015625 0.14453 0 0.24219 0.054688 0.29688 0.15625 0.007812 0.023438 0.03125 0.058594 0.0625 0.10938zm-0.8125 1.1406-3.7812 7.5625h7.5469z"/>
|
|
819
|
+
</symbol>
|
|
820
|
+
<symbol id="kk" overflow="visible">
|
|
821
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
822
|
+
</symbol>
|
|
823
|
+
<symbol id="kj" overflow="visible">
|
|
824
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
825
|
+
</symbol>
|
|
826
|
+
<symbol id="ki" overflow="visible">
|
|
827
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
828
|
+
</symbol>
|
|
829
|
+
<symbol id="kh" overflow="visible">
|
|
830
|
+
<path d="m5.1406-5.5938-0.84375 4.4375c-0.085937 0.57422-0.25 1.2344-0.5 1.9844-0.09375 0.26953-0.1875 0.5-0.28125 0.6875-0.32422 0.6875-0.73047 1.1133-1.2188 1.2812-0.125 0.050781-0.24609 0.078125-0.35938 0.078125-0.46875 0-0.82031-0.16406-1.0469-0.48438-0.10547-0.13672-0.15625-0.29688-0.15625-0.48438 0-0.375 0.16016-0.63281 0.48438-0.76562 0.09375-0.054687 0.19141-0.078125 0.29688-0.078125 0.26953 0 0.4375 0.11328 0.5 0.34375 0.007813 0.050781 0.015625 0.097656 0.015625 0.14062 0 0.32031-0.14062 0.54688-0.42188 0.67188-0.10547 0.050781-0.21875 0.082031-0.34375 0.09375 0.17578 0.16406 0.39844 0.25 0.67188 0.25 0.40625 0 0.72266-0.46094 0.95312-1.375 0.050781-0.21094 0.10938-0.49219 0.17188-0.84375l0.09375-0.40625 1.0469-5.5312h-0.92188c-0.24219 0-0.37109-0.039062-0.39062-0.125v-0.046875c0-0.15625 0.078125-0.24219 0.23438-0.26562h1.1406c0.22656-1.1641 0.38281-1.8984 0.46875-2.2031 0.28125-0.92578 0.77344-1.4609 1.4844-1.6094 0.10156-0.019531 0.20312-0.03125 0.29688-0.03125 0.47656 0 0.83203 0.16406 1.0625 0.48438 0.10156 0.13672 0.15625 0.29688 0.15625 0.48438 0 0.375-0.16406 0.63281-0.48438 0.76562-0.09375 0.054687-0.19531 0.078125-0.29688 0.078125-0.27344 0-0.4375-0.11328-0.5-0.34375-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28906 0.12891-0.50781 0.39062-0.65625 0.10156-0.0625 0.22656-0.097656 0.375-0.10938-0.17969-0.16406-0.40625-0.25-0.6875-0.25-0.29297 0-0.51172 0.15625-0.65625 0.46875-0.074219 0.13672-0.1875 0.625-0.34375 1.4688l-0.29688 1.5938h1.1719c0.22656 0 0.35156 0.054688 0.375 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
831
|
+
</symbol>
|
|
832
|
+
<symbol id="kg" overflow="visible">
|
|
833
|
+
<path d="m4.6719-4.2344-0.46875 1.9219c-0.15625 0.63672-0.23438 1.0469-0.23438 1.2344 0 0.49219 0.17188 0.78125 0.51562 0.875 0.070313 0.03125 0.15625 0.046875 0.25 0.046875 0.46875 0 0.89062-0.23438 1.2656-0.70312 0.25781-0.28906 0.45703-0.66406 0.59375-1.125 0.03125-0.10156 0.09375-0.15625 0.1875-0.15625 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.23047-0.14062 0.5625-0.42188 1-0.51172 0.77344-1.1172 1.1562-1.8125 1.1562-0.63672 0-1.1016-0.26562-1.3906-0.79688-0.054688-0.082031-0.09375-0.17188-0.125-0.26562-0.21875 0.44922-0.52734 0.76172-0.92188 0.9375-0.17969 0.082031-0.35938 0.125-0.54688 0.125-0.5625 0-0.95312-0.16406-1.1719-0.5-0.09375-0.11328-0.14062-0.25391-0.14062-0.42188 0-0.34375 0.14844-0.58594 0.45312-0.73438 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.11719 0.51562 0.34375v0.14062c0 0.32422-0.15625 0.55859-0.46875 0.70312-0.054688 0.03125-0.11719 0.046875-0.1875 0.046875 0.19531 0.125 0.42969 0.1875 0.70312 0.1875 0.5 0 0.89062-0.32812 1.1719-0.98438 0.0625-0.14453 0.11328-0.30078 0.15625-0.46875 0.50781-1.9062 0.76562-3.0156 0.76562-3.3281-0.0625-0.58203-0.32031-0.89453-0.76562-0.9375-0.48047 0-0.92188 0.24609-1.3281 0.73438v0.015625c0 0.011719-0.007813 0.015625-0.015625 0.015625-0.13672 0.1875-0.26172 0.40234-0.375 0.64062-0.042969 0.11719-0.085938 0.23047-0.125 0.34375l-0.03125 0.078125c-0.023438 0.10547-0.078125 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.22656 0.14453-0.56641 0.4375-1.0156 0.50781-0.75781 1.1133-1.1406 1.8125-1.1406 0.71875 0 1.2227 0.35547 1.5156 1.0625 0.28906-0.57031 0.6875-0.91406 1.1875-1.0312 0.09375-0.019531 0.1875-0.03125 0.28125-0.03125 0.55078 0 0.9375 0.15625 1.1562 0.46875 0.09375 0.125 0.14062 0.27734 0.14062 0.45312 0 0.38672-0.17188 0.64062-0.51562 0.76562-0.085937 0.03125-0.16406 0.046875-0.23438 0.046875-0.29297 0-0.46484-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.28125 0.13281-0.5 0.40625-0.65625 0.082031-0.050781 0.17188-0.085938 0.26562-0.10938-0.19922-0.11328-0.43359-0.17188-0.70312-0.17188-0.63672 0-1.0859 0.49609-1.3438 1.4844-0.023438 0.054687-0.039062 0.10547-0.046875 0.15625z"/>
|
|
834
|
+
</symbol>
|
|
835
|
+
<symbol id="kf" overflow="visible">
|
|
836
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
837
|
+
</symbol>
|
|
838
|
+
<symbol id="ke" overflow="visible">
|
|
839
|
+
<path d="m6.7969-5.3281-1.3438 5.3438c-0.21875 0.91406-0.71484 1.6562-1.4844 2.2188-0.57422 0.42578-1.168 0.64062-1.7812 0.64062-0.625 0-1.0703-0.21875-1.3281-0.65625-0.10547-0.17969-0.15625-0.36719-0.15625-0.5625 0-0.48047 0.19141-0.77734 0.57812-0.89062 0.070312-0.023437 0.14062-0.03125 0.20312-0.03125 0.30078 0 0.46875 0.13281 0.5 0.40625 0.007813 0.019531 0.015625 0.050781 0.015625 0.09375 0 0.20703-0.09375 0.39844-0.28125 0.57812-0.125 0.10156-0.32422 0.15625-0.59375 0.15625 0.16406 0.39453 0.51953 0.59375 1.0625 0.59375 0.57031 0 1.082-0.29297 1.5312-0.875 0.36328-0.49219 0.65625-1.1523 0.875-1.9844 0.007812-0.03125 0.023438-0.085937 0.046875-0.17188-0.42969 0.41797-0.90234 0.625-1.4219 0.625-0.75 0-1.2617-0.27344-1.5312-0.82812-0.11719-0.23828-0.17188-0.51953-0.17188-0.84375 0-0.50781 0.24219-1.4258 0.73438-2.75 0.019531-0.0625 0.046875-0.125 0.078125-0.1875 0.15625-0.42578 0.23438-0.75391 0.23438-0.98438 0-0.28906-0.11719-0.4375-0.34375-0.4375-0.52344 0-0.94531 0.42188-1.2656 1.2656v0.015625c-0.054687 0.14844-0.10547 0.29688-0.15625 0.45312-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.097656-0.45703 0.29688-0.875 0.40625-0.85156 0.92188-1.2812 1.5469-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.33984 0.10938 0.51562 0 0.19922-0.09375 0.53906-0.28125 1.0156-0.48047 1.2305-0.71875 2.1484-0.71875 2.75 0 0.75 0.28906 1.125 0.875 1.125 0.53906 0 1.0078-0.28516 1.4062-0.85938 0.09375-0.14453 0.14844-0.25391 0.17188-0.32812l0.625-2.5156c0.070313-0.3125 0.16406-0.6875 0.28125-1.125 0.09375-0.40625 0.16016-0.65625 0.20312-0.75 0.11328-0.19531 0.27344-0.29688 0.48438-0.29688 0.22656 0.042969 0.36328 0.16797 0.40625 0.375 0 0.085938-0.023437 0.19531-0.0625 0.32812z"/>
|
|
840
|
+
</symbol>
|
|
841
|
+
<symbol id="kd" overflow="visible">
|
|
842
|
+
<path d="m6.4844-4.75h0.015625c0.25-0.96875 0.375-1.7656 0.375-2.3906 0-1.1875-0.38672-1.9688-1.1562-2.3438-0.26172-0.125-0.54297-0.1875-0.84375-0.1875-0.89844 0-1.5703 0.375-2.0156 1.125 0.42578 0 0.64453 0.16406 0.65625 0.48438 0 0.27344-0.125 0.48047-0.375 0.625-0.11719 0.074219-0.24219 0.10938-0.375 0.10938-0.32422-0.039063-0.50781-0.20312-0.54688-0.48438 0-0.28906 0.14062-0.64062 0.42188-1.0469 0.53125-0.78125 1.2852-1.1719 2.2656-1.1719 0.98828 0 1.7695 0.41406 2.3438 1.2344l0.015625 0.015625c0.4375 0.64844 0.65625 1.4453 0.65625 2.3906 0 0.99219-0.24609 2.0781-0.73438 3.2656-0.71094 1.6562-1.6406 2.7188-2.7969 3.1875-0.39844 0.16406-0.8125 0.25-1.25 0.25-1.0742 0-1.8359-0.44531-2.2812-1.3438-0.19922-0.38281-0.29688-0.76953-0.29688-1.1562 0-0.98828 0.34766-1.8789 1.0469-2.6719 0.0625-0.070313 0.12891-0.14453 0.20312-0.21875 0.92578-0.85156 1.8789-1.2891 2.8594-1.3125 0.78906 0 1.3359 0.35938 1.6406 1.0781 0.082031 0.17969 0.14062 0.36719 0.17188 0.5625zm-3.3125 4.6719c1 0 1.8125-0.62891 2.4375-1.8906 0.38281-0.84375 0.59375-1.5977 0.625-2.2656 0-0.83203-0.26562-1.3945-0.79688-1.6875-0.21875-0.11328-0.47656-0.17188-0.76562-0.17188-0.82422 0-1.5273 0.41797-2.1094 1.25-0.375 0.55469-0.66797 1.4375-0.875 2.6562-0.03125 0.25-0.046875 0.42188-0.046875 0.51562 0 0.63672 0.21875 1.0898 0.65625 1.3594 0.22656 0.15625 0.51953 0.23438 0.875 0.23438z"/>
|
|
843
|
+
</symbol>
|
|
844
|
+
<symbol id="kc" overflow="visible">
|
|
845
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
846
|
+
</symbol>
|
|
847
|
+
<symbol id="kb" overflow="visible">
|
|
848
|
+
<path d="m5.1406-5.5938-0.84375 4.4375c-0.085937 0.57422-0.25 1.2344-0.5 1.9844-0.09375 0.26953-0.1875 0.5-0.28125 0.6875-0.32422 0.6875-0.73047 1.1133-1.2188 1.2812-0.125 0.050781-0.24609 0.078125-0.35938 0.078125-0.46875 0-0.82031-0.16406-1.0469-0.48438-0.10547-0.13672-0.15625-0.29688-0.15625-0.48438 0-0.375 0.16016-0.63281 0.48438-0.76562 0.09375-0.054687 0.19141-0.078125 0.29688-0.078125 0.26953 0 0.4375 0.11328 0.5 0.34375 0.007813 0.050781 0.015625 0.097656 0.015625 0.14062 0 0.32031-0.14062 0.54688-0.42188 0.67188-0.10547 0.050781-0.21875 0.082031-0.34375 0.09375 0.17578 0.16406 0.39844 0.25 0.67188 0.25 0.40625 0 0.72266-0.46094 0.95312-1.375 0.050781-0.21094 0.10938-0.49219 0.17188-0.84375l0.09375-0.40625 1.0469-5.5312h-0.92188c-0.24219 0-0.37109-0.039062-0.39062-0.125v-0.046875c0-0.15625 0.078125-0.24219 0.23438-0.26562h1.1406c0.22656-1.1641 0.38281-1.8984 0.46875-2.2031 0.28125-0.92578 0.77344-1.4609 1.4844-1.6094 0.10156-0.019531 0.20312-0.03125 0.29688-0.03125 0.47656 0 0.83203 0.16406 1.0625 0.48438 0.10156 0.13672 0.15625 0.29688 0.15625 0.48438 0 0.375-0.16406 0.63281-0.48438 0.76562-0.09375 0.054687-0.19531 0.078125-0.29688 0.078125-0.27344 0-0.4375-0.11328-0.5-0.34375-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28906 0.12891-0.50781 0.39062-0.65625 0.10156-0.0625 0.22656-0.097656 0.375-0.10938-0.17969-0.16406-0.40625-0.25-0.6875-0.25-0.29297 0-0.51172 0.15625-0.65625 0.46875-0.074219 0.13672-0.1875 0.625-0.34375 1.4688l-0.29688 1.5938h1.1719c0.22656 0 0.35156 0.054688 0.375 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
849
|
+
</symbol>
|
|
850
|
+
<symbol id="ka" overflow="visible">
|
|
851
|
+
<path d="m6.4844-4.75h0.015625c0.25-0.96875 0.375-1.7656 0.375-2.3906 0-1.1875-0.38672-1.9688-1.1562-2.3438-0.26172-0.125-0.54297-0.1875-0.84375-0.1875-0.89844 0-1.5703 0.375-2.0156 1.125 0.42578 0 0.64453 0.16406 0.65625 0.48438 0 0.27344-0.125 0.48047-0.375 0.625-0.11719 0.074219-0.24219 0.10938-0.375 0.10938-0.32422-0.039063-0.50781-0.20312-0.54688-0.48438 0-0.28906 0.14062-0.64062 0.42188-1.0469 0.53125-0.78125 1.2852-1.1719 2.2656-1.1719 0.98828 0 1.7695 0.41406 2.3438 1.2344l0.015625 0.015625c0.4375 0.64844 0.65625 1.4453 0.65625 2.3906 0 0.99219-0.24609 2.0781-0.73438 3.2656-0.71094 1.6562-1.6406 2.7188-2.7969 3.1875-0.39844 0.16406-0.8125 0.25-1.25 0.25-1.0742 0-1.8359-0.44531-2.2812-1.3438-0.19922-0.38281-0.29688-0.76953-0.29688-1.1562 0-0.98828 0.34766-1.8789 1.0469-2.6719 0.0625-0.070313 0.12891-0.14453 0.20312-0.21875 0.92578-0.85156 1.8789-1.2891 2.8594-1.3125 0.78906 0 1.3359 0.35938 1.6406 1.0781 0.082031 0.17969 0.14062 0.36719 0.17188 0.5625zm-3.3125 4.6719c1 0 1.8125-0.62891 2.4375-1.8906 0.38281-0.84375 0.59375-1.5977 0.625-2.2656 0-0.83203-0.26562-1.3945-0.79688-1.6875-0.21875-0.11328-0.47656-0.17188-0.76562-0.17188-0.82422 0-1.5273 0.41797-2.1094 1.25-0.375 0.55469-0.66797 1.4375-0.875 2.6562-0.03125 0.25-0.046875 0.42188-0.046875 0.51562 0 0.63672 0.21875 1.0898 0.65625 1.3594 0.22656 0.15625 0.51953 0.23438 0.875 0.23438z"/>
|
|
852
|
+
</symbol>
|
|
853
|
+
<symbol id="jz" overflow="visible">
|
|
854
|
+
<path d="m4.6719-4.2344-0.46875 1.9219c-0.15625 0.63672-0.23438 1.0469-0.23438 1.2344 0 0.49219 0.17188 0.78125 0.51562 0.875 0.070313 0.03125 0.15625 0.046875 0.25 0.046875 0.46875 0 0.89062-0.23438 1.2656-0.70312 0.25781-0.28906 0.45703-0.66406 0.59375-1.125 0.03125-0.10156 0.09375-0.15625 0.1875-0.15625 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.23047-0.14062 0.5625-0.42188 1-0.51172 0.77344-1.1172 1.1562-1.8125 1.1562-0.63672 0-1.1016-0.26562-1.3906-0.79688-0.054688-0.082031-0.09375-0.17188-0.125-0.26562-0.21875 0.44922-0.52734 0.76172-0.92188 0.9375-0.17969 0.082031-0.35938 0.125-0.54688 0.125-0.5625 0-0.95312-0.16406-1.1719-0.5-0.09375-0.11328-0.14062-0.25391-0.14062-0.42188 0-0.34375 0.14844-0.58594 0.45312-0.73438 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.11719 0.51562 0.34375v0.14062c0 0.32422-0.15625 0.55859-0.46875 0.70312-0.054688 0.03125-0.11719 0.046875-0.1875 0.046875 0.19531 0.125 0.42969 0.1875 0.70312 0.1875 0.5 0 0.89062-0.32812 1.1719-0.98438 0.0625-0.14453 0.11328-0.30078 0.15625-0.46875 0.50781-1.9062 0.76562-3.0156 0.76562-3.3281-0.0625-0.58203-0.32031-0.89453-0.76562-0.9375-0.48047 0-0.92188 0.24609-1.3281 0.73438v0.015625c0 0.011719-0.007813 0.015625-0.015625 0.015625-0.13672 0.1875-0.26172 0.40234-0.375 0.64062-0.042969 0.11719-0.085938 0.23047-0.125 0.34375l-0.03125 0.078125c-0.023438 0.10547-0.078125 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.22656 0.14453-0.56641 0.4375-1.0156 0.50781-0.75781 1.1133-1.1406 1.8125-1.1406 0.71875 0 1.2227 0.35547 1.5156 1.0625 0.28906-0.57031 0.6875-0.91406 1.1875-1.0312 0.09375-0.019531 0.1875-0.03125 0.28125-0.03125 0.55078 0 0.9375 0.15625 1.1562 0.46875 0.09375 0.125 0.14062 0.27734 0.14062 0.45312 0 0.38672-0.17188 0.64062-0.51562 0.76562-0.085937 0.03125-0.16406 0.046875-0.23438 0.046875-0.29297 0-0.46484-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.28125 0.13281-0.5 0.40625-0.65625 0.082031-0.050781 0.17188-0.085938 0.26562-0.10938-0.19922-0.11328-0.43359-0.17188-0.70312-0.17188-0.63672 0-1.0859 0.49609-1.3438 1.4844-0.023438 0.054687-0.039062 0.10547-0.046875 0.15625z"/>
|
|
855
|
+
</symbol>
|
|
856
|
+
<symbol id="jy" overflow="visible">
|
|
857
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
858
|
+
</symbol>
|
|
859
|
+
<symbol id="jx" overflow="visible">
|
|
860
|
+
<path d="m5.7188-3.2188v3.9219c0 0.28906-0.089844 0.44141-0.26562 0.45312-0.1875 0-0.28125-0.15234-0.28125-0.45312v-3.9219h-3.9219c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h3.9219v-3.9219c0-0.28906 0.09375-0.44141 0.28125-0.45312 0.17578 0 0.26562 0.15234 0.26562 0.45312v3.9219h3.9062c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
861
|
+
</symbol>
|
|
862
|
+
<symbol id="jw" overflow="visible">
|
|
863
|
+
<path d="m6.4844-4.75h0.015625c0.25-0.96875 0.375-1.7656 0.375-2.3906 0-1.1875-0.38672-1.9688-1.1562-2.3438-0.26172-0.125-0.54297-0.1875-0.84375-0.1875-0.89844 0-1.5703 0.375-2.0156 1.125 0.42578 0 0.64453 0.16406 0.65625 0.48438 0 0.27344-0.125 0.48047-0.375 0.625-0.11719 0.074219-0.24219 0.10938-0.375 0.10938-0.32422-0.039063-0.50781-0.20312-0.54688-0.48438 0-0.28906 0.14062-0.64062 0.42188-1.0469 0.53125-0.78125 1.2852-1.1719 2.2656-1.1719 0.98828 0 1.7695 0.41406 2.3438 1.2344l0.015625 0.015625c0.4375 0.64844 0.65625 1.4453 0.65625 2.3906 0 0.99219-0.24609 2.0781-0.73438 3.2656-0.71094 1.6562-1.6406 2.7188-2.7969 3.1875-0.39844 0.16406-0.8125 0.25-1.25 0.25-1.0742 0-1.8359-0.44531-2.2812-1.3438-0.19922-0.38281-0.29688-0.76953-0.29688-1.1562 0-0.98828 0.34766-1.8789 1.0469-2.6719 0.0625-0.070313 0.12891-0.14453 0.20312-0.21875 0.92578-0.85156 1.8789-1.2891 2.8594-1.3125 0.78906 0 1.3359 0.35938 1.6406 1.0781 0.082031 0.17969 0.14062 0.36719 0.17188 0.5625zm-3.3125 4.6719c1 0 1.8125-0.62891 2.4375-1.8906 0.38281-0.84375 0.59375-1.5977 0.625-2.2656 0-0.83203-0.26562-1.3945-0.79688-1.6875-0.21875-0.11328-0.47656-0.17188-0.76562-0.17188-0.82422 0-1.5273 0.41797-2.1094 1.25-0.375 0.55469-0.66797 1.4375-0.875 2.6562-0.03125 0.25-0.046875 0.42188-0.046875 0.51562 0 0.63672 0.21875 1.0898 0.65625 1.3594 0.22656 0.15625 0.51953 0.23438 0.875 0.23438z"/>
|
|
864
|
+
</symbol>
|
|
865
|
+
<symbol id="jv" overflow="visible">
|
|
866
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
867
|
+
</symbol>
|
|
868
|
+
<symbol id="ju" overflow="visible">
|
|
869
|
+
<path d="m5.1406-5.5938-0.84375 4.4375c-0.085937 0.57422-0.25 1.2344-0.5 1.9844-0.09375 0.26953-0.1875 0.5-0.28125 0.6875-0.32422 0.6875-0.73047 1.1133-1.2188 1.2812-0.125 0.050781-0.24609 0.078125-0.35938 0.078125-0.46875 0-0.82031-0.16406-1.0469-0.48438-0.10547-0.13672-0.15625-0.29688-0.15625-0.48438 0-0.375 0.16016-0.63281 0.48438-0.76562 0.09375-0.054687 0.19141-0.078125 0.29688-0.078125 0.26953 0 0.4375 0.11328 0.5 0.34375 0.007813 0.050781 0.015625 0.097656 0.015625 0.14062 0 0.32031-0.14062 0.54688-0.42188 0.67188-0.10547 0.050781-0.21875 0.082031-0.34375 0.09375 0.17578 0.16406 0.39844 0.25 0.67188 0.25 0.40625 0 0.72266-0.46094 0.95312-1.375 0.050781-0.21094 0.10938-0.49219 0.17188-0.84375l0.09375-0.40625 1.0469-5.5312h-0.92188c-0.24219 0-0.37109-0.039062-0.39062-0.125v-0.046875c0-0.15625 0.078125-0.24219 0.23438-0.26562h1.1406c0.22656-1.1641 0.38281-1.8984 0.46875-2.2031 0.28125-0.92578 0.77344-1.4609 1.4844-1.6094 0.10156-0.019531 0.20312-0.03125 0.29688-0.03125 0.47656 0 0.83203 0.16406 1.0625 0.48438 0.10156 0.13672 0.15625 0.29688 0.15625 0.48438 0 0.375-0.16406 0.63281-0.48438 0.76562-0.09375 0.054687-0.19531 0.078125-0.29688 0.078125-0.27344 0-0.4375-0.11328-0.5-0.34375-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28906 0.12891-0.50781 0.39062-0.65625 0.10156-0.0625 0.22656-0.097656 0.375-0.10938-0.17969-0.16406-0.40625-0.25-0.6875-0.25-0.29297 0-0.51172 0.15625-0.65625 0.46875-0.074219 0.13672-0.1875 0.625-0.34375 1.4688l-0.29688 1.5938h1.1719c0.22656 0 0.35156 0.054688 0.375 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
870
|
+
</symbol>
|
|
871
|
+
<symbol id="jt" overflow="visible">
|
|
872
|
+
<path d="m6.4844-4.75h0.015625c0.25-0.96875 0.375-1.7656 0.375-2.3906 0-1.1875-0.38672-1.9688-1.1562-2.3438-0.26172-0.125-0.54297-0.1875-0.84375-0.1875-0.89844 0-1.5703 0.375-2.0156 1.125 0.42578 0 0.64453 0.16406 0.65625 0.48438 0 0.27344-0.125 0.48047-0.375 0.625-0.11719 0.074219-0.24219 0.10938-0.375 0.10938-0.32422-0.039063-0.50781-0.20312-0.54688-0.48438 0-0.28906 0.14062-0.64062 0.42188-1.0469 0.53125-0.78125 1.2852-1.1719 2.2656-1.1719 0.98828 0 1.7695 0.41406 2.3438 1.2344l0.015625 0.015625c0.4375 0.64844 0.65625 1.4453 0.65625 2.3906 0 0.99219-0.24609 2.0781-0.73438 3.2656-0.71094 1.6562-1.6406 2.7188-2.7969 3.1875-0.39844 0.16406-0.8125 0.25-1.25 0.25-1.0742 0-1.8359-0.44531-2.2812-1.3438-0.19922-0.38281-0.29688-0.76953-0.29688-1.1562 0-0.98828 0.34766-1.8789 1.0469-2.6719 0.0625-0.070313 0.12891-0.14453 0.20312-0.21875 0.92578-0.85156 1.8789-1.2891 2.8594-1.3125 0.78906 0 1.3359 0.35938 1.6406 1.0781 0.082031 0.17969 0.14062 0.36719 0.17188 0.5625zm-3.3125 4.6719c1 0 1.8125-0.62891 2.4375-1.8906 0.38281-0.84375 0.59375-1.5977 0.625-2.2656 0-0.83203-0.26562-1.3945-0.79688-1.6875-0.21875-0.11328-0.47656-0.17188-0.76562-0.17188-0.82422 0-1.5273 0.41797-2.1094 1.25-0.375 0.55469-0.66797 1.4375-0.875 2.6562-0.03125 0.25-0.046875 0.42188-0.046875 0.51562 0 0.63672 0.21875 1.0898 0.65625 1.3594 0.22656 0.15625 0.51953 0.23438 0.875 0.23438z"/>
|
|
873
|
+
</symbol>
|
|
874
|
+
<symbol id="js" overflow="visible">
|
|
875
|
+
<path d="m6.7969-5.3281-1.3438 5.3438c-0.21875 0.91406-0.71484 1.6562-1.4844 2.2188-0.57422 0.42578-1.168 0.64062-1.7812 0.64062-0.625 0-1.0703-0.21875-1.3281-0.65625-0.10547-0.17969-0.15625-0.36719-0.15625-0.5625 0-0.48047 0.19141-0.77734 0.57812-0.89062 0.070312-0.023437 0.14062-0.03125 0.20312-0.03125 0.30078 0 0.46875 0.13281 0.5 0.40625 0.007813 0.019531 0.015625 0.050781 0.015625 0.09375 0 0.20703-0.09375 0.39844-0.28125 0.57812-0.125 0.10156-0.32422 0.15625-0.59375 0.15625 0.16406 0.39453 0.51953 0.59375 1.0625 0.59375 0.57031 0 1.082-0.29297 1.5312-0.875 0.36328-0.49219 0.65625-1.1523 0.875-1.9844 0.007812-0.03125 0.023438-0.085937 0.046875-0.17188-0.42969 0.41797-0.90234 0.625-1.4219 0.625-0.75 0-1.2617-0.27344-1.5312-0.82812-0.11719-0.23828-0.17188-0.51953-0.17188-0.84375 0-0.50781 0.24219-1.4258 0.73438-2.75 0.019531-0.0625 0.046875-0.125 0.078125-0.1875 0.15625-0.42578 0.23438-0.75391 0.23438-0.98438 0-0.28906-0.11719-0.4375-0.34375-0.4375-0.52344 0-0.94531 0.42188-1.2656 1.2656v0.015625c-0.054687 0.14844-0.10547 0.29688-0.15625 0.45312-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.097656-0.45703 0.29688-0.875 0.40625-0.85156 0.92188-1.2812 1.5469-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.33984 0.10938 0.51562 0 0.19922-0.09375 0.53906-0.28125 1.0156-0.48047 1.2305-0.71875 2.1484-0.71875 2.75 0 0.75 0.28906 1.125 0.875 1.125 0.53906 0 1.0078-0.28516 1.4062-0.85938 0.09375-0.14453 0.14844-0.25391 0.17188-0.32812l0.625-2.5156c0.070313-0.3125 0.16406-0.6875 0.28125-1.125 0.09375-0.40625 0.16016-0.65625 0.20312-0.75 0.11328-0.19531 0.27344-0.29688 0.48438-0.29688 0.22656 0.042969 0.36328 0.16797 0.40625 0.375 0 0.085938-0.023437 0.19531-0.0625 0.32812z"/>
|
|
876
|
+
</symbol>
|
|
877
|
+
<symbol id="jr" overflow="visible">
|
|
878
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
879
|
+
</symbol>
|
|
880
|
+
<symbol id="jq" overflow="visible">
|
|
881
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
882
|
+
</symbol>
|
|
883
|
+
<symbol id="jp" overflow="visible">
|
|
884
|
+
<path d="m2.6875-9.3125-0.54688 6.3906c-0.011719 0.19922-0.074219 0.29688-0.1875 0.29688-0.11719 0-0.17969-0.070312-0.1875-0.21875-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375l-0.54688-6.375c0-0.33203 0.16016-0.55469 0.48438-0.67188 0.082031-0.03125 0.17188-0.046875 0.26562-0.046875 0.32031 0 0.54688 0.13672 0.67188 0.40625 0.039062 0.09375 0.0625 0.19922 0.0625 0.3125zm0 8.5781c0 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"/>
|
|
885
|
+
</symbol>
|
|
886
|
+
<symbol id="jo" overflow="visible">
|
|
887
|
+
<path d="m10.094-4.6719c0 0.82422-0.25 1.5156-0.75 2.0781-0.4375 0.49219-0.96484 0.73438-1.5781 0.73438-0.625 0-1.3047-0.3125-2.0312-0.9375-0.042969-0.050781-0.089844-0.09375-0.14062-0.125-0.74219-0.66406-1.2734-1.0703-1.5938-1.2188-0.29297-0.14453-0.58984-0.21875-0.89062-0.21875-0.58594 0-1.0586 0.23047-1.4219 0.6875-0.3125 0.38672-0.48438 0.875-0.51562 1.4688 0 0.14844-0.042969 0.24609-0.125 0.29688-0.023437 0.023438-0.042969 0.03125-0.0625 0.03125-0.13672 0-0.20312-0.14844-0.20312-0.45312 0-0.82031 0.25391-1.5156 0.76562-2.0781 0.4375-0.48828 0.95703-0.73438 1.5625-0.73438 0.625 0 1.3008 0.3125 2.0312 0.9375 0.039063 0.054687 0.085937 0.09375 0.14062 0.125 0.73828 0.66797 1.2695 1.0742 1.5938 1.2188 0.28906 0.14844 0.58594 0.21875 0.89062 0.21875 0.59375 0 1.0781-0.25 1.4531-0.75 0.28906-0.36328 0.45312-0.82031 0.48438-1.375 0.03125-0.23828 0.09375-0.35938 0.1875-0.35938 0.13281 0 0.20312 0.15234 0.20312 0.45312z"/>
|
|
888
|
+
</symbol>
|
|
889
|
+
<symbol id="jn" overflow="visible">
|
|
890
|
+
<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"/>
|
|
891
|
+
</symbol>
|
|
892
|
+
<symbol id="jm" overflow="visible">
|
|
893
|
+
<path d="m8.5781-2.2969h-7.6875c-0.19922-0.03125-0.30859-0.097656-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h7.6875c-0.44922-0.33203-0.78906-0.75781-1.0156-1.2812l-0.015625-0.015625c-0.03125-0.082031-0.046875-0.13281-0.046875-0.15625 0-0.082031 0.050781-0.125 0.15625-0.125 0.070312 0 0.125 0.046875 0.15625 0.14062 0.30078 0.65625 0.75781 1.1406 1.375 1.4531l0.015625 0.015625c0.050781 0.03125 0.097656 0.058594 0.14062 0.078125 0.03125 0 0.054688 0.03125 0.078125 0.09375 0 0.042969-0.03125 0.085938-0.09375 0.125-0.011719 0-0.027344 0.007812-0.046875 0.015625-0.65625 0.3125-1.1406 0.8125-1.4531 1.5-0.011719 0.011719-0.015625 0.027344-0.015625 0.046875-0.03125 0.0625-0.085938 0.09375-0.15625 0.09375-0.10547 0-0.15625-0.039062-0.15625-0.125 0-0.09375 0.097656-0.28906 0.29688-0.59375 0.21875-0.34375 0.47656-0.62891 0.78125-0.85938z"/>
|
|
894
|
+
</symbol>
|
|
895
|
+
<symbol id="jl" overflow="visible">
|
|
896
|
+
<path d="m4.0938-2.2969v2.7969c0 0.20703-0.070312 0.31641-0.20312 0.32812-0.13672 0-0.20312-0.10938-0.20312-0.32812v-2.7969h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7969c0-0.20703 0.066406-0.31641 0.20312-0.32812 0.13281 0 0.20312 0.10938 0.20312 0.32812v2.7969h2.7812c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
897
|
+
</symbol>
|
|
898
|
+
<symbol id="jk" overflow="visible">
|
|
899
|
+
<path d="m5.0781-2.7188c0.39453-0.66406 0.875-1.1445 1.4375-1.4375 0.33203-0.17578 0.67578-0.26562 1.0312-0.26562 0.63281 0 1.1328 0.29688 1.5 0.89062 0.25781 0.40625 0.39062 0.86719 0.39062 1.375 0 0.6875-0.21484 1.2578-0.64062 1.7031-0.35547 0.375-0.78125 0.5625-1.2812 0.5625-0.59375 0-1.1641-0.22656-1.7031-0.6875-0.14844-0.125-0.37109-0.36719-0.67188-0.73438l-0.23438-0.28125c-0.39844 0.66797-0.875 1.1484-1.4375 1.4375-0.33594 0.17578-0.67188 0.26562-1.0156 0.26562-0.64844 0-1.1523-0.29688-1.5156-0.89062-0.25-0.40625-0.375-0.86328-0.375-1.375 0-0.6875 0.21094-1.2539 0.64062-1.7031 0.35156-0.375 0.78125-0.5625 1.2812-0.5625 0.58203 0 1.1484 0.23047 1.7031 0.6875 0.14453 0.125 0.36328 0.37109 0.65625 0.73438l0.046875 0.046875c0.039063 0.054687 0.10156 0.13281 0.1875 0.23438zm0.26562 0.34375 0.95312 1.2344c0.007813 0 0.015625 0.007813 0.015625 0.015625l0.03125 0.03125c0.44531 0.48047 0.89062 0.71875 1.3281 0.71875 0.47656 0 0.875-0.21094 1.1875-0.64062 0.22656-0.33203 0.34375-0.71094 0.34375-1.1406 0-0.59375-0.17188-1.082-0.51562-1.4688-0.26172-0.28125-0.57812-0.4375-0.95312-0.46875h-0.125c-0.84375 0-1.5859 0.54688-2.2188 1.6406-0.011719 0.023437-0.027344 0.046875-0.046875 0.078125zm-0.6875 0.4375-0.96875-1.2344v-0.015625l-0.046875-0.03125c-0.4375-0.47656-0.88281-0.71875-1.3281-0.71875-0.48047 0-0.875 0.21484-1.1875 0.64062-0.23047 0.33594-0.34375 0.71484-0.34375 1.1406 0 0.59375 0.17578 1.0859 0.53125 1.4688 0.28125 0.32422 0.63281 0.48438 1.0625 0.48438 0.84375 0 1.582-0.54688 2.2188-1.6406 0.019531-0.03125 0.039062-0.0625 0.0625-0.09375z"/>
|
|
900
|
+
</symbol>
|
|
901
|
+
<symbol id="jj" overflow="visible">
|
|
902
|
+
<path d="m7.3438 24.594c-0.86719-0.75-1.6094-1.6094-2.2344-2.5781-0.61719-0.96094-1.1172-1.9844-1.5-3.0781-0.375-1.0938-0.65234-2.2188-0.82812-3.375-0.17969-1.1484-0.26562-2.3242-0.26562-3.5312 0-1.1992 0.085937-2.375 0.26562-3.5312 0.17578-1.1562 0.45312-2.2812 0.82812-3.375 0.38281-1.0938 0.88281-2.1211 1.5-3.0781 0.625-0.96094 1.3672-1.8203 2.2344-2.5781 0-0.019531 0.023438-0.03125 0.078125-0.03125h0.32812c0.019531 0 0.039062 0.015625 0.0625 0.046875 0.03125 0.03125 0.046875 0.058594 0.046875 0.078125 0 0.042969-0.011719 0.074219-0.03125 0.09375-0.80469 0.78906-1.4766 1.6602-2.0156 2.6094-0.53125 0.95703-0.96094 1.9766-1.2812 3.0625-0.32422 1.0938-0.55469 2.1953-0.6875 3.3125-0.13672 1.1133-0.20312 2.25-0.20312 3.4062s0.066406 2.2891 0.20312 3.4062c0.13281 1.125 0.36328 2.2227 0.6875 3.2969 0.32031 1.082 0.75391 2.1016 1.2969 3.0625 0.55078 0.95703 1.2188 1.8281 2 2.6094 0.019531 0.019531 0.03125 0.046875 0.03125 0.078125 0 0.019531-0.015625 0.046875-0.046875 0.078125-0.023438 0.03125-0.042969 0.046875-0.0625 0.046875h-0.32812c-0.054687 0-0.078125-0.011719-0.078125-0.03125z"/>
|
|
903
|
+
</symbol>
|
|
904
|
+
<symbol id="ji" overflow="visible">
|
|
905
|
+
<path d="m0.60938 24.625c-0.074219 0-0.10938-0.042969-0.10938-0.125 0-0.03125 0.003906-0.058594 0.015625-0.078125 0.78906-0.79297 1.457-1.6719 2-2.6406 0.55078-0.96875 0.98438-1.9844 1.2969-3.0469 0.32031-1.0547 0.55078-2.1406 0.6875-3.2656 0.13281-1.1172 0.20312-2.2617 0.20312-3.4375 0-1.2188-0.074219-2.3828-0.21875-3.4844-0.13672-1.1055-0.35938-2.1875-0.67188-3.25-0.3125-1.0547-0.74609-2.0625-1.2969-3.0312-0.54297-0.96094-1.2109-1.8281-2-2.6094-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375 0-0.082031 0.035156-0.125 0.10938-0.125h0.32812c0.03125 0 0.050781 0.011719 0.0625 0.03125 0.86328 0.73828 1.6094 1.5938 2.2344 2.5625 0.625 0.97656 1.125 2.0156 1.5 3.1094 0.38281 1.0938 0.66016 2.2109 0.82812 3.3594 0.17578 1.1562 0.26562 2.332 0.26562 3.5312 0 1.207-0.089844 2.3828-0.26562 3.5312-0.16797 1.1445-0.44531 2.2656-0.82812 3.3594-0.375 1.0938-0.875 2.125-1.5 3.0938-0.625 0.97656-1.3711 1.8359-2.2344 2.5781-0.011719 0.019531-0.03125 0.03125-0.0625 0.03125z"/>
|
|
906
|
+
</symbol>
|
|
907
|
+
<symbol id="jh" overflow="visible">
|
|
908
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
909
|
+
</symbol>
|
|
910
|
+
<symbol id="jg" overflow="visible">
|
|
911
|
+
<path d="m2.625-3.2344h-0.75c-0.14844 0.60547-0.21875 1.0898-0.21875 1.4531 0 0.74219 0.21094 1.2344 0.64062 1.4844 0.15625 0.09375 0.34766 0.14062 0.57812 0.14062 0.83203 0 1.5859-0.28125 2.2656-0.84375 0.19531-0.15625 0.375-0.33594 0.53125-0.54688 0.0625-0.09375 0.125-0.14062 0.1875-0.14062 0.082031 0 0.13281 0.0625 0.15625 0.1875 0 0.10547-0.15625 0.30859-0.46875 0.60938-0.78125 0.69922-1.6836 1.0469-2.7031 1.0469-0.84375 0-1.4609-0.35938-1.8438-1.0781-0.24219-0.41406-0.35938-0.89844-0.35938-1.4531 0-1.2266 0.47656-2.2188 1.4375-2.9688 0.69531-0.5625 1.4414-0.84375 2.2344-0.84375 0.66406 0 1.125 0.23438 1.375 0.70312 0.082031 0.14844 0.125 0.30859 0.125 0.48438 0 0.49219-0.21094 0.89062-0.625 1.2031l-0.015625 0.015625c-0.125 0.085938-0.26172 0.15625-0.40625 0.21875-0.52344 0.21875-1.2344 0.32812-2.1406 0.32812zm-0.67188-0.3125h0.57812c1.875 0 2.8125-0.48438 2.8125-1.4531 0-0.375-0.18359-0.64062-0.54688-0.79688-0.125-0.039063-0.28906-0.066406-0.48438-0.078125-0.52344 0-1 0.21484-1.4375 0.64062-0.42969 0.40625-0.73438 0.96875-0.92188 1.6875z"/>
|
|
912
|
+
</symbol>
|
|
913
|
+
<symbol id="jd" overflow="visible">
|
|
914
|
+
<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"/>
|
|
915
|
+
</symbol>
|
|
916
|
+
<symbol id="jc" overflow="visible">
|
|
917
|
+
<path d="m5.4531 11.969 5.9219-12.266c0.11328-0.15625 0.20703-0.24219 0.28125-0.26562 0.16406 0 0.25781 0.09375 0.28125 0.28125 0 0.042969-0.027344 0.12109-0.078125 0.23438l-6.3906 13.219c-0.074219 0.14453-0.14844 0.22656-0.21875 0.25-0.03125 0.007813-0.074219 0.015625-0.125 0.015625-0.11719 0-0.1875-0.042969-0.21875-0.125l-0.046875-0.078125-2.7656-6.0938-0.73438 0.54688c-0.085937 0.070312-0.15234 0.10938-0.20312 0.10938-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.03125 0.054687-0.09375 0.17188-0.1875l1.3906-1.0625c0.082031-0.074219 0.14453-0.10938 0.1875-0.10938 0.0625 0 0.125 0.066406 0.1875 0.20312z"/>
|
|
918
|
+
</symbol>
|
|
919
|
+
<symbol id="jb" overflow="visible">
|
|
920
|
+
<path d="m6.2812-2.4375-0.39062 2.4375h-5.1875c0-0.22656 0.023437-0.37891 0.078125-0.45312l0.078125-0.0625 2.6875-3c0.97656-1.1016 1.4688-2.1328 1.4688-3.0938 0-0.83203-0.25781-1.4609-0.76562-1.8906l-0.015625-0.015625c-0.30469-0.25-0.66797-0.375-1.0938-0.375-0.67969 0-1.2148 0.29297-1.6094 0.875-0.11719 0.16797-0.21094 0.35156-0.28125 0.54688h0.17188c0.375 0 0.61328 0.16797 0.71875 0.5v0.015625c0.019531 0.0625 0.03125 0.13281 0.03125 0.20312 0 0.375-0.17969 0.61719-0.53125 0.71875-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.34375 0-0.57422-0.14453-0.6875-0.4375-0.03125-0.10156-0.046875-0.22266-0.046875-0.35938 0-0.71875 0.27344-1.332 0.82812-1.8438 0.48828-0.45703 1.082-0.6875 1.7812-0.6875 1.0312 0 1.832 0.35156 2.4062 1.0469 0.32031 0.39844 0.50391 0.87109 0.54688 1.4219 0.007813 0.085937 0.015625 0.16797 0.015625 0.25 0 0.67969-0.25781 1.3281-0.76562 1.9531-0.27344 0.3125-0.69531 0.73047-1.2656 1.25l-0.84375 0.76562-0.14062 0.125-1.4844 1.4375h2.5156c0.82031 0 1.2656-0.035156 1.3281-0.10938 0.09375-0.13281 0.19531-0.55078 0.3125-1.25z"/>
|
|
921
|
+
</symbol>
|
|
922
|
+
<symbol id="ja" overflow="visible">
|
|
923
|
+
<path d="m3.7031-5.2188-0.78125 3.0938c-0.15625 0.59375-0.28125 1.0547-0.375 1.375-0.14844 0.46094-0.28906 0.73047-0.42188 0.8125v0.015625c-0.085938 0.050781-0.17969 0.078125-0.28125 0.078125-0.21094 0-0.33984-0.09375-0.39062-0.28125-0.011719-0.03125-0.015625-0.0625-0.015625-0.09375 0-0.082031 0.035156-0.19531 0.10938-0.34375 0.88281-1.8945 1.4844-3.4453 1.7969-4.6562h-0.79688c-0.73047 0-1.3242 0.35938-1.7812 1.0781-0.085937 0.11719-0.15625 0.17188-0.21875 0.17188-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.10156 0.16406-0.38281 0.5-0.84375 0.070312-0.070313 0.13281-0.14844 0.1875-0.23438 0.03125-0.03125 0.0625-0.066406 0.09375-0.10938l0.078125-0.078125c0.40625-0.4375 0.89062-0.65625 1.4531-0.65625h4.6875c0.32031 0 0.50391 0.070312 0.54688 0.20312v0.015625c0.007813 0.03125 0.015625 0.070312 0.015625 0.10938 0 0.32422-0.23047 0.48438-0.6875 0.48438h-1.5938c-0.16797 0.79297-0.25 1.5312-0.25 2.2188 0 0.875 0.13281 1.6484 0.40625 2.3125 0.050781 0.13672 0.078125 0.24219 0.078125 0.3125 0 0.21094-0.11719 0.36719-0.34375 0.46875-0.074219 0.039062-0.15234 0.0625-0.23438 0.0625-0.17969 0-0.3125-0.13281-0.40625-0.39062-0.03125-0.082031-0.0625-0.1875-0.09375-0.3125-0.074219-0.3125-0.10938-0.66406-0.10938-1.0625 0-0.61328 0.125-1.5039 0.375-2.6719l0.21875-0.9375z"/>
|
|
924
|
+
</symbol>
|
|
925
|
+
<symbol id="iz" overflow="visible">
|
|
926
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
927
|
+
</symbol>
|
|
928
|
+
<symbol id="iy" overflow="visible">
|
|
929
|
+
<path d="m0.28125 1.6875 1.5156-6.0625c0.19531-0.75781 0.57031-1.4062 1.125-1.9375 0.51953-0.48828 1.0664-0.73438 1.6406-0.73438 0.55078 0 0.94531 0.21875 1.1875 0.65625 0.10156 0.1875 0.15625 0.39844 0.15625 0.625 0 0.5-0.21094 0.96094-0.625 1.375-0.14844 0.13672-0.30469 0.25781-0.46875 0.35938 0.44531 0.3125 0.67188 0.77734 0.67188 1.3906 0 0.6875-0.26562 1.3125-0.79688 1.875-0.51172 0.54297-1.0898 0.83594-1.7344 0.89062h-0.125c-0.64844 0-1.1211-0.25-1.4219-0.75-0.074219-0.13281-0.13281-0.27344-0.17188-0.42188l-0.75 2.9219-0.015625 0.03125c-0.023438 0.019531-0.054688 0.03125-0.09375 0.03125-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.023438 0.007812-0.074219 0.03125-0.15625zm3-5.7031c0.11328 0.042969 0.25391 0.0625 0.42188 0.0625 0.20703 0 0.36719-0.023437 0.48438-0.078125-0.085938-0.039062-0.21484-0.0625-0.39062-0.0625-0.24219 0-0.41406 0.027344-0.51562 0.078125zm1.2188-0.1875c0.40625-0.3125 0.65625-0.83203 0.75-1.5625v-0.03125c0.007812-0.09375 0.015625-0.16406 0.015625-0.21875 0-0.47656-0.19531-0.74219-0.57812-0.79688-0.042969-0.007812-0.089844-0.015625-0.14062-0.015625-0.55469 0-1.0742 0.25781-1.5625 0.76562-0.46094 0.48047-0.78906 1.1172-0.98438 1.9062l-0.45312 1.8438c-0.09375 0.34375-0.14062 0.59375-0.14062 0.75 0 0.55469 0.19531 0.96094 0.59375 1.2188 0.22656 0.16797 0.5 0.25 0.8125 0.25 0.51953 0 0.96875-0.28125 1.3438-0.84375 0.039062-0.0625 0.078125-0.125 0.10938-0.1875 0.23828-0.44531 0.39453-0.98438 0.46875-1.6094 0.019531-0.11328 0.03125-0.20703 0.03125-0.28125 0-0.35156-0.10547-0.63281-0.3125-0.84375-0.21094 0.085937-0.46094 0.125-0.75 0.125-0.44922 0-0.67188-0.082031-0.67188-0.25 0-0.21875 0.25781-0.32812 0.78125-0.32812 0.26953 0 0.5 0.039062 0.6875 0.10938z"/>
|
|
930
|
+
</symbol>
|
|
931
|
+
<symbol id="ix" overflow="visible">
|
|
932
|
+
<path d="m4.7656-2.3594v0.625c0.4375-0.53906 0.76562-1.2031 0.98438-1.9844 0.0625-0.13281 0.11328-0.20703 0.15625-0.21875 0.070312 0 0.10938 0.039062 0.10938 0.10938 0 0.11719-0.074219 0.37109-0.21875 0.76562-0.23047 0.57422-0.53906 1.1016-0.92188 1.5781-0.074219 0.13672-0.10938 0.25781-0.10938 0.35938 0 0.67969 0.10156 1.0156 0.3125 1.0156 0.20703 0 0.375-0.11328 0.5-0.34375 0.019531-0.039063 0.039063-0.085937 0.0625-0.14062 0.03125-0.070312 0.070313-0.10938 0.125-0.10938 0.082031 0 0.125 0.039063 0.125 0.10938 0 0.125-0.085937 0.27344-0.25 0.4375-0.17969 0.17578-0.375 0.26562-0.59375 0.26562-0.41797 0-0.70312-0.22656-0.85938-0.6875-0.023438-0.050781-0.039062-0.10156-0.046875-0.15625-0.69922 0.5625-1.4023 0.84375-2.1094 0.84375-0.625 0-1.0859-0.25-1.375-0.75-0.16797-0.26953-0.25-0.58203-0.25-0.9375 0-0.67578 0.25781-1.3047 0.78125-1.8906 0.50781-0.57031 1.0938-0.88281 1.75-0.9375 0.050781-0.007812 0.10156-0.015625 0.15625-0.015625 0.5625 0 1 0.21875 1.3125 0.65625v0.015625c0.23828 0.35547 0.35938 0.82031 0.35938 1.3906zm-0.67188 1.375c-0.011719-0.11328-0.015625-0.48828-0.015625-1.125 0-0.82031-0.089844-1.3828-0.26562-1.6875-0.085938-0.125-0.18359-0.22266-0.29688-0.29688h-0.015625c-0.125-0.070312-0.26172-0.10938-0.40625-0.10938-0.48047 0-0.90625 0.26562-1.2812 0.79688l-0.078125 0.125c-0.24219 0.38672-0.41797 0.92969-0.53125 1.625-0.03125 0.1875-0.046875 0.33984-0.046875 0.45312 0 0.5625 0.19141 0.91406 0.57812 1.0469 0.09375 0.03125 0.19531 0.046875 0.3125 0.046875 0.69531 0 1.3789-0.28906 2.0469-0.875z"/>
|
|
933
|
+
</symbol>
|
|
934
|
+
<symbol id="iw" overflow="visible">
|
|
935
|
+
<path d="m9.2656 33c-1.1484-1.0234-2.1328-2.1836-2.9531-3.4844-0.8125-1.293-1.4688-2.6641-1.9688-4.1094-0.5-1.4375-0.86719-2.9336-1.0938-4.4844-0.23047-1.543-0.34375-3.1016-0.34375-4.6719 0-1.5938 0.11328-3.168 0.34375-4.7188 0.22656-1.543 0.58594-3.0391 1.0781-4.4844 0.5-1.4375 1.1602-2.8086 1.9844-4.1094 0.82031-1.3047 1.8047-2.4609 2.9531-3.4688 0-0.019531 0.023437-0.03125 0.078125-0.03125h0.35938c0.019531 0 0.039063 0.015625 0.0625 0.046875 0.03125 0.023437 0.046875 0.046875 0.046875 0.078125 0 0.042969-0.007812 0.074219-0.015625 0.09375-1.0742 1.0508-1.9805 2.2188-2.7188 3.5-0.73047 1.2891-1.3125 2.6484-1.75 4.0781-0.42969 1.4258-0.73438 2.8906-0.92188 4.3906-0.1875 1.5078-0.28125 3.0508-0.28125 4.625 0 1.5625 0.085938 3.082 0.26562 4.5625 0.1875 1.4766 0.5 2.9414 0.9375 4.3906 0.4375 1.4453 1.0234 2.8125 1.7656 4.0938 0.73828 1.2891 1.6406 2.4609 2.7031 3.5156 0.007813 0.019531 0.015625 0.050781 0.015625 0.09375 0 0.019531-0.015625 0.046875-0.046875 0.078125-0.023437 0.03125-0.042969 0.046875-0.0625 0.046875h-0.35938c-0.054688 0-0.078125-0.011719-0.078125-0.03125z"/>
|
|
936
|
+
</symbol>
|
|
937
|
+
<symbol id="iv" overflow="visible">
|
|
938
|
+
<path d="m0.60938 33.031c-0.085937 0-0.125-0.042969-0.125-0.125 0-0.042969 0.003906-0.074219 0.015625-0.09375 1.0703-1.0547 1.9727-2.2266 2.7031-3.5156 0.73828-1.293 1.3203-2.6523 1.75-4.0781 0.4375-1.418 0.74219-2.8711 0.92188-4.3594 0.1875-1.4922 0.28125-3.0312 0.28125-4.625 0-1.625-0.09375-3.1797-0.28125-4.6562-0.17969-1.4688-0.48047-2.9141-0.90625-4.3281-0.42969-1.418-1.0156-2.7773-1.7656-4.0781-0.74219-1.3047-1.6406-2.4766-2.7031-3.5156-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375 0-0.082031 0.039063-0.125 0.125-0.125h0.35938c0.03125 0 0.054688 0.011719 0.078125 0.03125 1.1445 1.0195 2.1289 2.1797 2.9531 3.4844 0.82031 1.3008 1.4766 2.6719 1.9688 4.1094 0.48828 1.4453 0.84375 2.9414 1.0625 4.4844 0.22656 1.5391 0.34375 3.1094 0.34375 4.7031 0 1.5703-0.11719 3.125-0.34375 4.6562-0.21875 1.5391-0.57422 3.0352-1.0625 4.4844-0.49219 1.4453-1.1484 2.8203-1.9688 4.125-0.82422 1.3008-1.8086 2.4609-2.9531 3.4844-0.023437 0.019531-0.046875 0.03125-0.078125 0.03125z"/>
|
|
939
|
+
</symbol>
|
|
940
|
+
<symbol id="iu" overflow="visible">
|
|
941
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
942
|
+
</symbol>
|
|
943
|
+
<symbol id="it" overflow="visible">
|
|
944
|
+
<path d="m3.3438-9.5625-1.0312 4.2188c0.53906-0.5625 1.0859-0.84375 1.6406-0.84375 0.69531 0 1.2188 0.32422 1.5625 0.96875 0.19531 0.375 0.29688 0.79688 0.29688 1.2656 0 0.99219-0.34375 1.918-1.0312 2.7812-0.64844 0.79297-1.3594 1.2266-2.1406 1.3125-0.074219 0.007813-0.14062 0.015625-0.20312 0.015625-0.67969 0-1.1797-0.3125-1.5-0.9375-0.1875-0.35156-0.28125-0.77344-0.28125-1.2656 0-0.3125 0.070312-0.78125 0.21875-1.4062l1.1562-4.5625c0.125-0.55078 0.1875-0.84375 0.1875-0.875 0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.085938-0.25 0.26562-0.28125l1.7031-0.14062c0.125 0 0.1875 0.054688 0.1875 0.15625zm-1.3125 5.2969-0.3125 1.2812c-0.14844 0.59375-0.21875 1.0703-0.21875 1.4219 0 0.80469 0.23828 1.2617 0.71875 1.375 0.070312 0.023438 0.14453 0.03125 0.21875 0.03125 0.48828 0 0.95312-0.32812 1.3906-0.98438 0.09375-0.13281 0.17969-0.28516 0.26562-0.45312 0.25-0.53125 0.45703-1.25 0.625-2.1562 0.050781-0.32031 0.078125-0.59375 0.078125-0.8125 0-0.75-0.23047-1.1797-0.6875-1.2969-0.0625-0.007813-0.125-0.015625-0.1875-0.015625-0.5625 0-1.125 0.37109-1.6875 1.1094-0.074219 0.09375-0.14062 0.26172-0.20312 0.5z"/>
|
|
945
|
+
</symbol>
|
|
946
|
+
<symbol id="is" overflow="visible">
|
|
947
|
+
<path d="m5.5469-5.3125c-0.26172-0.34375-0.66406-0.53125-1.2031-0.5625-0.60547 0-1.1562 0.30859-1.6562 0.92188-0.125 0.14844-0.23438 0.30469-0.32812 0.46875-0.36719 0.6875-0.60547 1.4922-0.71875 2.4062-0.023437 0.15625-0.03125 0.28906-0.03125 0.39062 0 0.77344 0.25781 1.2578 0.78125 1.4531 0.13281 0.054687 0.29688 0.078125 0.48438 0.078125 0.83203 0 1.5859-0.28125 2.2656-0.84375 0.19531-0.15625 0.375-0.33594 0.53125-0.54688 0.0625-0.09375 0.125-0.14062 0.1875-0.14062 0.082031 0 0.13281 0.0625 0.15625 0.1875 0 0.10547-0.15625 0.30859-0.46875 0.60938-0.78125 0.69922-1.6836 1.0469-2.7031 1.0469-0.88672 0-1.5312-0.35156-1.9375-1.0625-0.21875-0.38281-0.32812-0.82031-0.32812-1.3125 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5195-1.2383 2.4062-1.3125 0.082031-0.007813 0.16406-0.015625 0.25-0.015625 0.71875 0 1.2188 0.21875 1.5 0.65625 0.10156 0.16797 0.15625 0.35156 0.15625 0.54688 0 0.40625-0.16797 0.6875-0.5 0.84375-0.09375 0.03125-0.19531 0.046875-0.29688 0.046875-0.27344 0-0.4375-0.11719-0.5-0.35938-0.011719-0.039063-0.015625-0.082031-0.015625-0.125 0-0.20703 0.082031-0.39062 0.25-0.54688 0.13281-0.125 0.34375-0.1875 0.625-0.1875z"/>
|
|
948
|
+
</symbol>
|
|
949
|
+
<symbol id="ir" overflow="visible">
|
|
950
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
951
|
+
</symbol>
|
|
952
|
+
<symbol id="iq" overflow="visible">
|
|
953
|
+
<path d="m2.6406-4.375c-0.34375-0.66406-0.53906-1.1445-0.57812-1.4375-0.011719-0.09375-0.015625-0.17969-0.015625-0.26562 0-0.53125 0.23828-0.85938 0.71875-0.98438 0.125-0.03125 0.26562-0.046875 0.42188-0.046875 0.19531 0 0.46875 0.039063 0.8125 0.10938 0.28125 0.0625 0.44141 0.125 0.48438 0.1875 0.019531 0.03125 0.03125 0.078125 0.03125 0.14062 0 0.15625-0.074219 0.27734-0.21875 0.35938-0.054687 0.03125-0.10938 0.046875-0.17188 0.046875-0.09375 0-0.28125-0.082031-0.5625-0.25-0.27344-0.1875-0.50781-0.28125-0.70312-0.28125-0.26172 0-0.43359 0.10547-0.51562 0.3125-0.023438 0.054687-0.03125 0.10547-0.03125 0.15625 0 0.30469 0.31641 0.85156 0.95312 1.6406 0.3125 0.41797 0.51562 0.76562 0.60938 1.0469 0.082031 0.25 0.125 0.52344 0.125 0.8125 0 0.76172-0.19922 1.4453-0.59375 2.0469-0.39844 0.60547-0.86719 0.90625-1.4062 0.90625-0.58594 0-1.0234-0.23438-1.3125-0.70312-0.17969-0.28125-0.26562-0.60938-0.26562-0.98438 0-0.66406 0.25-1.2891 0.75-1.875 0.41406-0.48828 0.90625-0.80078 1.4688-0.9375zm0.125 0.21875c-0.69922 0.1875-1.2031 0.75781-1.5156 1.7031-0.13672 0.4375-0.20312 0.82812-0.20312 1.1719 0 0.5625 0.1875 0.92969 0.5625 1.0938 0.125 0.0625 0.25391 0.09375 0.39062 0.09375 0.45703 0 0.8125-0.36328 1.0625-1.0938 0.16406-0.44531 0.25-0.86328 0.25-1.25 0-0.45703-0.16406-0.98828-0.48438-1.5938-0.011719-0.019531-0.03125-0.0625-0.0625-0.125z"/>
|
|
954
|
+
</symbol>
|
|
955
|
+
<symbol id="ip" overflow="visible">
|
|
956
|
+
<path d="m0.40625-2.5469-0.03125 0.0625c-0.125 0-0.1875-0.035156-0.1875-0.10938 0-0.1875 0.10938-0.45312 0.32812-0.79688 0.46875-0.67578 1.0039-1.0195 1.6094-1.0312 0.60156 0 1.0469 0.37109 1.3281 1.1094 0.25 0.61719 0.39062 1.293 0.42188 2.0312 0.51953-1.3203 0.95703-2.3047 1.3125-2.9531 0.019531-0.050781 0.0625-0.078125 0.125-0.078125 0.082031 0 0.125 0.039062 0.125 0.10938 0 0.03125-0.070312 0.15625-0.20312 0.375-0.49219 0.98047-0.91797 1.9961-1.2812 3.0469-0.03125 0.085938-0.058594 0.15625-0.078125 0.21875-0.023438 0.085938-0.046875 0.21484-0.078125 0.39062-0.0625 0.46875-0.18359 1.0391-0.35938 1.7188-0.11719 0.38281-0.22656 0.58594-0.32812 0.60938-0.085937 0-0.125-0.0625-0.125-0.1875 0-0.27344 0.16406-0.96875 0.5-2.0938 0-0.019531 0.003906-0.039062 0.015625-0.0625 0.082031-0.21875 0.125-0.53906 0.125-0.96875 0-1.5703-0.46875-2.4141-1.4062-2.5312-0.074219-0.007812-0.14844-0.015625-0.21875-0.015625-0.46875 0-0.86719 0.16797-1.1875 0.5h-0.015625c-0.16797 0.17969-0.29688 0.39844-0.39062 0.65625z"/>
|
|
957
|
+
</symbol>
|
|
958
|
+
<symbol id="in" overflow="visible">
|
|
959
|
+
<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"/>
|
|
960
|
+
</symbol>
|
|
961
|
+
<symbol id="im" overflow="visible">
|
|
962
|
+
<path d="m4.0938-3.125v2.7188h2.7812c0.21875 0 0.32812 0.070312 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312h-5.9844c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7188h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.8125c0-0.19531 0.066406-0.30078 0.20312-0.3125 0.13281 0 0.20312 0.12109 0.20312 0.35938v2.7656h2.7812c0.21875 0 0.32812 0.070312 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
963
|
+
</symbol>
|
|
964
|
+
<symbol id="il" overflow="visible">
|
|
965
|
+
<path d="m2.8438-6.25c0 0.21094-0.10547 0.36719-0.3125 0.46875-0.074219 0.042969-0.14844 0.0625-0.21875 0.0625-0.19922 0-0.32422-0.085938-0.375-0.26562v-0.09375c0-0.1875 0.085938-0.33594 0.26562-0.45312 0.09375-0.050781 0.17969-0.078125 0.26562-0.078125 0.19531 0 0.31641 0.089844 0.35938 0.26562v0.015625c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125zm-0.76562 3.7656-0.39062 1.0469c-0.1875 0.54297-0.28125 0.875-0.28125 1 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.41406 0 0.74219-0.375 0.98438-1.125l0.03125-0.10938c0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.125-0.078125 0.33984-0.23438 0.64062-0.28125 0.60547-0.64062 0.90625-1.0781 0.90625-0.35547 0-0.60547-0.14453-0.75-0.4375-0.054688-0.125-0.078125-0.25-0.078125-0.375 0-0.13281 0.078125-0.40625 0.23438-0.8125 0.46875-1.25 0.69531-1.8633 0.6875-1.8438 0.070312-0.1875 0.10938-0.35938 0.10938-0.51562 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.046875 0.30469-0.14062 0.53125-0.11719 0.30469-0.1875 0.49609-0.21875 0.57812z"/>
|
|
966
|
+
</symbol>
|
|
967
|
+
<symbol id="ik" overflow="visible">
|
|
968
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
969
|
+
</symbol>
|
|
970
|
+
<symbol id="ij" overflow="visible">
|
|
971
|
+
<path d="m3.9688-6.25c0 0.1875-0.09375 0.33984-0.28125 0.45312-0.085938 0.054687-0.16797 0.078125-0.25 0.078125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.015625-0.078125c0-0.20703 0.10156-0.36328 0.3125-0.46875 0.070312-0.039063 0.14453-0.0625 0.21875-0.0625 0.19531 0 0.31641 0.089844 0.35938 0.26562 0.007813 0.03125 0.015625 0.0625 0.015625 0.09375zm-2.0156 6.75 0.95312-3.7344c0.039062-0.19531 0.0625-0.36328 0.0625-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.40625 0-0.77734 0.29688-1.1094 0.89062-0.0625 0.10547-0.11719 0.21484-0.15625 0.32812-0.085937 0.125-0.14844 0.19531-0.1875 0.20312-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.09375 0.082031-0.28516 0.25-0.57812 0.39453-0.64453 0.84375-0.96875 1.3438-0.96875 0.36328 0 0.62891 0.15234 0.79688 0.45312 0.070313 0.13672 0.10938 0.29297 0.10938 0.46875 0 0.11719-0.015625 0.24219-0.046875 0.375l-0.92188 3.6562c-0.14844 0.58203-0.49219 1.0156-1.0312 1.2969-0.28125 0.14453-0.5625 0.21875-0.84375 0.21875-0.41797 0-0.6875-0.125-0.8125-0.375-0.039062-0.074219-0.0625-0.15234-0.0625-0.23438 0-0.26172 0.10938-0.4375 0.32812-0.53125 0.070313-0.03125 0.14062-0.046875 0.20312-0.046875 0.20703 0 0.33203 0.085937 0.375 0.26562 0.007812 0.03125 0.015625 0.054688 0.015625 0.078125 0 0.20703-0.09375 0.36328-0.28125 0.46875-0.054687 0.03125-0.10938 0.050781-0.17188 0.0625 0.11328 0.0625 0.24219 0.09375 0.39062 0.09375 0.38281 0 0.71094-0.24219 0.98438-0.71875 0.10156-0.1875 0.17969-0.39062 0.23438-0.60938z"/>
|
|
972
|
+
</symbol>
|
|
973
|
+
<symbol id="i" overflow="visible">
|
|
974
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
975
|
+
</symbol>
|
|
976
|
+
<symbol id="ii" overflow="visible">
|
|
977
|
+
<path d="m0.65625-3.2188h-0.54688c-0.023438 0-0.03125-0.09375-0.03125-0.28125s0.0078125-0.28125 0.03125-0.28125h0.54688c0.019531 0 0.03125 0.09375 0.03125 0.28125s-0.011719 0.28125-0.03125 0.28125z"/>
|
|
978
|
+
</symbol>
|
|
979
|
+
<symbol id="ih" overflow="visible">
|
|
980
|
+
<path d="m12.016-3.2188h-10.766c-0.28125-0.050781-0.4375-0.14453-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h10.766c-0.63672-0.46875-1.1172-1.0703-1.4375-1.8125h-0.015625c-0.042969-0.125-0.0625-0.20312-0.0625-0.23438 0-0.10156 0.066406-0.15625 0.20312-0.15625 0.10156 0 0.1875 0.0625 0.25 0.1875 0.40625 0.92969 1.0391 1.6094 1.9062 2.0469l0.015625 0.015625h0.015625c0.0625 0.03125 0.12891 0.0625 0.20312 0.09375 0.03125 0 0.0625 0.046875 0.09375 0.14062 0 0.0625-0.042969 0.12109-0.125 0.17188-0.023438 0-0.046875 0.011719-0.078125 0.03125-0.91797 0.4375-1.5898 1.1367-2.0156 2.0938-0.011719 0.011719-0.023438 0.03125-0.03125 0.0625-0.054688 0.085937-0.13281 0.125-0.23438 0.125-0.13672 0-0.20312-0.050781-0.20312-0.15625 0-0.14453 0.13281-0.42578 0.40625-0.84375 0.3125-0.48828 0.67969-0.89062 1.1094-1.2031z"/>
|
|
981
|
+
</symbol>
|
|
982
|
+
<symbol id="ig" overflow="visible">
|
|
983
|
+
<path d="m4.2656-6.0625-1.3281 5.2969c-0.023438 0.10547-0.03125 0.17969-0.03125 0.21875 0 0.09375 0.050781 0.15625 0.15625 0.1875 0.050781 0.011719 0.11719 0.023437 0.20312 0.03125 0.17578 0.011719 0.39062 0.015625 0.64062 0.015625 0.20703 0 0.31641 0.023438 0.32812 0.0625 0.007813 0.011719 0.015625 0.027344 0.015625 0.046875-0.03125 0.125-0.10547 0.19531-0.21875 0.20312l-0.85938-0.015625h-0.015625l-0.8125-0.015625h-0.015625l-0.82812 0.015625h-0.015625l-0.8125 0.015625h-0.015625c-0.11719 0-0.17188-0.039062-0.17188-0.125 0-0.09375 0.035156-0.14844 0.10938-0.17188 0.050781-0.007813 0.15625-0.015625 0.3125-0.015625 0.59375 0 0.94531-0.054688 1.0625-0.17188 0.039062-0.039063 0.070312-0.097656 0.09375-0.17188 0-0.019531 0.003906-0.035156 0.015625-0.046875v-0.03125h0.015625v-0.0625l1.3438-5.3281c0.03125-0.082031 0.046875-0.15625 0.046875-0.21875s-0.03125-0.097656-0.09375-0.10938h-0.1875-0.39062c-0.6875 0-1.1562 0.074219-1.4062 0.21875-0.14844 0.085937-0.27344 0.21094-0.375 0.375l-0.015625 0.015625c-0.14844 0.21875-0.30859 0.58984-0.48438 1.1094-0.054688 0.125-0.09375 0.19531-0.125 0.20312-0.011719 0.011719-0.027344 0.015625-0.046875 0.015625-0.085937 0-0.125-0.035156-0.125-0.10938 0-0.039062 0.019531-0.10156 0.0625-0.1875l0.60938-1.75c0.03125-0.11328 0.078125-0.17969 0.14062-0.20312h0.17188 5.5469c0.16406 0 0.25781 0.039063 0.28125 0.10938 0 0.0625-0.011719 0.12109-0.03125 0.17188l-0.26562 1.7344c-0.023438 0.13672-0.074219 0.21484-0.15625 0.23438-0.074219 0-0.10938-0.046875-0.10938-0.14062 0-0.039062 0.007813-0.10156 0.03125-0.1875 0.050781-0.34375 0.078125-0.60938 0.078125-0.79688 0-0.38281-0.13672-0.62891-0.40625-0.73438-0.17969-0.050781-0.53125-0.078125-1.0625-0.078125-0.35547 0-0.5625 0.007813-0.625 0.015625-0.085938 0.023438-0.14844 0.09375-0.1875 0.21875v0.015625c-0.011719 0.03125-0.027344 0.078125-0.046875 0.14062z"/>
|
|
984
|
+
</symbol>
|
|
985
|
+
<symbol id="if" overflow="visible">
|
|
986
|
+
<path d="m2.0625-4-0.75 2.9531c-0.03125 0.16797-0.046875 0.32812-0.046875 0.48438 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.44531 0 0.83594-0.32031 1.1719-0.96875l0.14062-0.3125c0.039062-0.082031 0.085938-0.12891 0.14062-0.14062 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.09375-0.089844 0.28906-0.26562 0.57812-0.38672 0.64844-0.82812 0.96875-1.3281 0.96875-0.38672 0-0.65625-0.16016-0.8125-0.48438-0.074219-0.125-0.10938-0.26953-0.10938-0.4375 0-0.125 0.20312-0.98828 0.60938-2.5938l0.15625-0.59375h-0.875c-0.16797 0-0.26172-0.023438-0.28125-0.078125v-0.046875c0-0.11328 0.050781-0.17578 0.15625-0.1875h1.0781l0.39062-1.5938c0.0625-0.22656 0.19531-0.34766 0.40625-0.35938 0.16406 0 0.25781 0.09375 0.28125 0.28125 0 0.03125-0.13672 0.58984-0.40625 1.6719h0.875c0.17578 0 0.26953 0.039062 0.28125 0.10938 0 0.125-0.054687 0.19531-0.15625 0.20312z"/>
|
|
987
|
+
</symbol>
|
|
988
|
+
<symbol id="id" overflow="visible">
|
|
989
|
+
<path d="m2.5-1.6094 4.875-8.1719c0.09375-0.15625 0.21094-0.23828 0.35938-0.25 0.14453 0 0.22656 0.046875 0.25 0.14062 0.007813 0.03125 0.019531 0.10156 0.03125 0.20312l0.84375 8.75c0.03125 0.23047 0.085937 0.37109 0.17188 0.42188h0.015625v0.015625c0.11328 0.042969 0.35156 0.0625 0.71875 0.0625 0.20703 0 0.31641 0.054688 0.32812 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.5625-0.046875h-0.015625l-1.7344 0.046875h-0.015625c-0.13672 0-0.20312-0.050781-0.20312-0.15625 0.070312-0.17578 0.1875-0.26953 0.34375-0.28125 0.66406 0 1-0.14844 1-0.45312 0 0.011719-0.074219-0.76953-0.21875-2.3438h-3.5156l-1.0625 1.7969c-0.13672 0.23047-0.20312 0.40234-0.20312 0.51562 0 0.29297 0.21875 0.45312 0.65625 0.48438 0.15625 0 0.23438 0.058594 0.23438 0.17188 0 0.17969-0.089844 0.26562-0.26562 0.26562l-1.3438-0.046875h-0.0625l-1.1719 0.046875h-0.03125c-0.125 0-0.1875-0.050781-0.1875-0.15625 0-0.16406 0.070313-0.25391 0.21875-0.26562v-0.015625h0.078125c0.59375-0.03125 1.0703-0.28125 1.4375-0.75 0.09375-0.125 0.1875-0.26562 0.28125-0.42188zm1.6875-2.0625h3.2031l-0.45312-4.6094z"/>
|
|
990
|
+
</symbol>
|
|
991
|
+
<symbol id="ic" overflow="visible">
|
|
992
|
+
<path d="m8.5781-2.2969h-7.6875c-0.19922-0.03125-0.30859-0.097656-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h7.6875c-0.44922-0.33203-0.78906-0.75781-1.0156-1.2812l-0.015625-0.015625c-0.03125-0.082031-0.046875-0.13281-0.046875-0.15625 0-0.082031 0.050781-0.125 0.15625-0.125 0.070312 0 0.125 0.046875 0.15625 0.14062 0.30078 0.65625 0.75781 1.1406 1.375 1.4531l0.015625 0.015625c0.050781 0.03125 0.097656 0.058594 0.14062 0.078125 0.03125 0 0.054688 0.03125 0.078125 0.09375 0 0.042969-0.03125 0.085938-0.09375 0.125-0.011719 0-0.027344 0.007812-0.046875 0.015625-0.65625 0.3125-1.1406 0.8125-1.4531 1.5-0.011719 0.011719-0.015625 0.027344-0.015625 0.046875-0.03125 0.0625-0.085938 0.09375-0.15625 0.09375-0.10547 0-0.15625-0.039062-0.15625-0.125 0-0.09375 0.097656-0.28906 0.29688-0.59375 0.21875-0.34375 0.47656-0.62891 0.78125-0.85938z"/>
|
|
993
|
+
</symbol>
|
|
994
|
+
<symbol id="ib" overflow="visible">
|
|
995
|
+
<path d="m3.5-0.5625c-0.34375 0.44922-0.74219 0.67188-1.1875 0.67188-0.54297 0-0.91406-0.19531-1.1094-0.59375-0.085937-0.16406-0.125-0.36719-0.125-0.60938 0-0.35156 0.17578-1.0039 0.53125-1.9531 0.007813-0.050781 0.023437-0.097656 0.046875-0.14062 0.11328-0.28906 0.17188-0.51953 0.17188-0.6875 0-0.21875-0.085937-0.32812-0.25-0.32812-0.375 0-0.67969 0.32031-0.90625 0.95312-0.011719 0-0.015625 0.007812-0.015625 0.015625l-0.09375 0.28125c-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.066406-0.33594 0.20312-0.64062 0.28906-0.60156 0.66016-0.90625 1.1094-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.058594 0.33594-0.17188 0.625-0.36719 0.94922-0.54688 1.625-0.54688 2.0312 0 0.55469 0.20703 0.82812 0.625 0.82812 0.41406 0 0.76953-0.22656 1.0625-0.6875 0.03125-0.0625 0.054688-0.11328 0.078125-0.15625 0.14453-0.65625 0.39453-1.6562 0.75-3 0.050781-0.23828 0.17969-0.35938 0.39062-0.35938 0.16406 0.03125 0.25781 0.12109 0.28125 0.26562 0-0.007813-0.046875 0.21484-0.14062 0.67188-0.09375 0.34375-0.15234 0.57422-0.17188 0.6875l-0.28125 1.0781c-0.13672 0.58594-0.20312 0.93359-0.20312 1.0469 0 0.30469 0.10156 0.45312 0.3125 0.45312 0.28125 0 0.50781-0.33203 0.6875-1 0.019531-0.0625 0.039063-0.14062 0.0625-0.23438 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.085938 0.21484-0.125 0.29688-0.17969 0.36719-0.42188 0.54688-0.73438 0.54688-0.38672 0-0.65625-0.16016-0.8125-0.48438-0.03125-0.050781-0.058594-0.11328-0.078125-0.1875z"/>
|
|
996
|
+
</symbol>
|
|
997
|
+
<symbol id="ia" overflow="visible">
|
|
998
|
+
<path d="m3.5469-5.7812 2.5 5.625c0.03125 0.085938 0.046875 0.14062 0.046875 0.17188 0 0.11328-0.046875 0.17578-0.14062 0.1875-0.023437 0.007813-0.039063 0.015625-0.046875 0.015625-0.09375 0-0.16797-0.070312-0.21875-0.20312l-2.3594-5.3125-2.3438 5.3281c-0.054687 0.125-0.125 0.1875-0.21875 0.1875-0.11719 0-0.18359-0.054688-0.20312-0.15625v-0.046875c0-0.03125 0.019531-0.085938 0.0625-0.17188l2.4844-5.6406c0.050781-0.125 0.125-0.1875 0.21875-0.1875s0.16406 0.070313 0.21875 0.20312z"/>
|
|
999
|
+
</symbol>
|
|
1000
|
+
<symbol id="hz" overflow="visible">
|
|
1001
|
+
<path d="m8.5781-2.2969h-7.6875c-0.19922-0.03125-0.30859-0.097656-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h7.6875c-0.44922-0.33203-0.78906-0.75781-1.0156-1.2812l-0.015625-0.015625c-0.03125-0.082031-0.046875-0.13281-0.046875-0.15625 0-0.082031 0.050781-0.125 0.15625-0.125 0.070312 0 0.125 0.046875 0.15625 0.14062 0.30078 0.65625 0.75781 1.1406 1.375 1.4531l0.015625 0.015625c0.050781 0.03125 0.097656 0.058594 0.14062 0.078125 0.03125 0 0.054688 0.03125 0.078125 0.09375 0 0.042969-0.03125 0.085938-0.09375 0.125-0.011719 0-0.027344 0.007812-0.046875 0.015625-0.65625 0.3125-1.1406 0.8125-1.4531 1.5-0.011719 0.011719-0.015625 0.027344-0.015625 0.046875-0.03125 0.0625-0.085938 0.09375-0.15625 0.09375-0.10547 0-0.15625-0.039062-0.15625-0.125 0-0.09375 0.097656-0.28906 0.29688-0.59375 0.21875-0.34375 0.47656-0.62891 0.78125-0.85938z"/>
|
|
1002
|
+
</symbol>
|
|
1003
|
+
<symbol id="hy" overflow="visible">
|
|
1004
|
+
<path d="m4.6875-3.7188c0 0.36719-0.10547 0.875-0.3125 1.5312-0.38672 1.3047-0.92188 2.0547-1.6094 2.25-0.10547 0.03125-0.21484 0.046875-0.32812 0.046875-0.61719 0-1.0234-0.20703-1.2188-0.625-0.085938-0.17578-0.125-0.37891-0.125-0.60938 0-0.35156 0.14844-0.94141 0.45312-1.7656l0.10938-0.29688c0.11328-0.28906 0.17188-0.51953 0.17188-0.6875 0-0.21875-0.085937-0.32812-0.25-0.32812-0.35547 0-0.65234 0.29688-0.89062 0.89062-0.042969 0.10547-0.085938 0.22656-0.125 0.35938-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.13672-0.042969 0.30469-0.125 0.5-0.36719 0.96094-0.55859 1.6211-0.57812 1.9844v0.125c0 0.53125 0.21094 0.82422 0.64062 0.875h0.09375c0.53906 0 1.0078-0.45312 1.4062-1.3594 0.22656-0.53125 0.35156-0.97656 0.375-1.3438 0-0.33203-0.11719-0.60938-0.34375-0.82812-0.10547-0.10156-0.15625-0.20312-0.15625-0.29688 0-0.16406 0.085938-0.30078 0.26562-0.40625 0.070313-0.050781 0.14453-0.078125 0.21875-0.078125 0.19531 0 0.33203 0.125 0.40625 0.375 0.03125 0.09375 0.046875 0.20312 0.046875 0.32812z"/>
|
|
1005
|
+
</symbol>
|
|
1006
|
+
<symbol id="hx" overflow="visible">
|
|
1007
|
+
<path d="m12.734-3.2188h-10.766c0.63281 0.46875 1.1133 1.0742 1.4375 1.8125 0.050781 0.11719 0.078125 0.19531 0.078125 0.23438 0 0.10547-0.070313 0.15625-0.20312 0.15625-0.10547 0-0.1875-0.0625-0.25-0.1875-0.39844-0.86328-0.98047-1.5156-1.75-1.9531l-0.3125-0.15625c-0.11719-0.070312-0.17188-0.13281-0.17188-0.1875 0-0.050781 0.046875-0.10938 0.14062-0.17188l0.0625-0.03125c0.9375-0.44531 1.6172-1.1641 2.0469-2.1562 0.050781-0.082031 0.12891-0.125 0.23438-0.125 0.13281 0 0.20312 0.054687 0.20312 0.15625 0 0.14844-0.13672 0.42969-0.40625 0.84375-0.30469 0.49219-0.67188 0.89062-1.1094 1.2031h10.766c0.28125 0.054688 0.4375 0.14844 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
1008
|
+
</symbol>
|
|
1009
|
+
<symbol id="k" overflow="visible">
|
|
1010
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
1011
|
+
</symbol>
|
|
1012
|
+
<symbol id="hw" overflow="visible">
|
|
1013
|
+
<path d="m4.625-3.2188h-3.8125c-0.14844 0-0.22656-0.09375-0.23438-0.28125 0-0.1875 0.078125-0.28125 0.23438-0.28125h3.8125c0.14453 0 0.22266 0.09375 0.23438 0.28125 0 0.1875-0.078125 0.28125-0.23438 0.28125z"/>
|
|
1014
|
+
</symbol>
|
|
1015
|
+
<symbol id="au" overflow="visible">
|
|
1016
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
1017
|
+
</symbol>
|
|
1018
|
+
<symbol id="hv" overflow="visible">
|
|
1019
|
+
<path d="m0.34375-6.8438h3.5938c0.67578 0.03125 1.2422 0.17969 1.7031 0.4375 0.30078 0.14844 0.53516 0.33594 0.70312 0.5625 0.10156 0.125 0.17969 0.25781 0.23438 0.39062 0.03125 0.09375 0.054687 0.19531 0.078125 0.29688 0.0625 0.57422-0.28125 1.0547-1.0312 1.4375-0.09375 0.054688-0.1875 0.09375-0.28125 0.125-0.26172 0.09375-0.45312 0.14844-0.57812 0.15625v0.03125c0.125 0.023438 0.30469 0.089844 0.54688 0.20312 0.33203 0.17969 0.56641 0.40234 0.70312 0.67188 0.070313 0.14844 0.12891 0.375 0.17188 0.6875l0.125 0.73438c0.082031 0.46875 0.17578 0.77734 0.28125 0.92188 0.09375 0.11719 0.21094 0.17188 0.35938 0.17188 0.15625 0 0.28516-0.046875 0.39062-0.14062 0.13281-0.13281 0.22266-0.31641 0.26562-0.54688 0.007813-0.019531 0.015625-0.046875 0.015625-0.078125v-0.09375c0-0.050781 0.003906-0.085938 0.015625-0.10938 0.03125-0.070313 0.085937-0.09375 0.17188-0.0625 0.039062 0.023437 0.0625 0.074219 0.0625 0.15625 0 0.125-0.023438 0.26172-0.0625 0.40625-0.125 0.35547-0.32422 0.57031-0.59375 0.65625-0.085938 0.019531-0.21094 0.03125-0.375 0.03125-0.24219-0.011719-0.44922-0.046875-0.625-0.10938-0.15625-0.042969-0.30859-0.11328-0.45312-0.21875-0.074219-0.050781-0.14844-0.125-0.21875-0.21875-0.15625-0.1875-0.24609-0.39062-0.26562-0.60938-0.011719-0.09375-0.015625-0.36328-0.015625-0.8125 0-0.38281-0.042969-0.66016-0.125-0.82812-0.21094-0.39453-0.59375-0.62891-1.1562-0.70312-0.09375-0.007813-0.30859-0.015625-0.64062-0.015625v2.5469c0 0.16797 0.03125 0.27734 0.09375 0.32812 0.050781 0.054688 0.14453 0.085938 0.28125 0.09375 0.14453 0.023438 0.36328 0.03125 0.65625 0.03125v0.29688h-4.0312v-0.29688c0.30078 0 0.52344-0.007812 0.67188-0.03125 0.15625-0.019531 0.25391-0.066406 0.29688-0.14062 0.039062-0.0625 0.0625-0.20312 0.0625-0.42188v-5.0312c0-0.22656-0.023438-0.375-0.0625-0.4375-0.042969-0.0625-0.14062-0.10938-0.29688-0.14062-0.14844-0.007813-0.37109-0.015625-0.67188-0.015625zm2.6875 0.3125h-0.79688v6.2188h0.79688zm0.3125 2.9844c0.78125 0 1.3516-0.10938 1.7188-0.32812 0.13281-0.09375 0.21094-0.15625 0.23438-0.1875 0.25781-0.28125 0.36719-0.66406 0.32812-1.1562-0.042969-0.3125-0.14062-0.56641-0.29688-0.76562-0.085937-0.10156-0.21484-0.20312-0.39062-0.29688-0.30469-0.14453-0.64844-0.22266-1.0312-0.23438-0.11719-0.019531-0.22656-0.019531-0.32812 0-0.085937 0.011719-0.14062 0.039063-0.17188 0.078125-0.042969 0.054688-0.0625 0.14062-0.0625 0.26562z"/>
|
|
1020
|
+
</symbol>
|
|
1021
|
+
<symbol id="hq" overflow="visible">
|
|
1022
|
+
<path d="m3.1406-1.2188-0.1875 1.2188h-2.6094c0-0.11328 0.015625-0.1875 0.046875-0.21875l0.03125-0.046875 1.3438-1.4844c0.48828-0.55078 0.73438-1.0664 0.73438-1.5469 0-0.41406-0.125-0.73438-0.375-0.95312h-0.015625c-0.14844-0.125-0.32812-0.1875-0.54688-0.1875-0.33594 0-0.60156 0.14062-0.79688 0.42188-0.0625 0.085937-0.10938 0.17969-0.14062 0.28125h0.09375c0.1875 0 0.30469 0.085937 0.35938 0.25v0.10938c0 0.1875-0.089844 0.30859-0.26562 0.35938-0.03125 0.011719-0.0625 0.015625-0.09375 0.015625-0.16797 0-0.28125-0.070312-0.34375-0.21875-0.023438-0.050781-0.03125-0.10938-0.03125-0.17188 0-0.36328 0.14062-0.67188 0.42188-0.92188 0.25-0.22656 0.54688-0.34375 0.89062-0.34375 0.50781 0 0.91016 0.17188 1.2031 0.51562 0.15625 0.19922 0.25 0.43359 0.28125 0.70312v0.14062c0 0.33594-0.125 0.65625-0.375 0.96875-0.13672 0.15625-0.35156 0.36719-0.64062 0.625l-0.42188 0.375-0.078125 0.0625-0.73438 0.73438h1.2656c0.40625 0 0.625-0.019531 0.65625-0.0625 0.050781-0.0625 0.10156-0.26953 0.15625-0.625z"/>
|
|
1023
|
+
</symbol>
|
|
1024
|
+
<symbol id="hp" overflow="visible">
|
|
1025
|
+
<path d="m2.625-3.2344h-0.75c-0.14844 0.60547-0.21875 1.0898-0.21875 1.4531 0 0.74219 0.21094 1.2344 0.64062 1.4844 0.15625 0.09375 0.34766 0.14062 0.57812 0.14062 0.83203 0 1.5859-0.28125 2.2656-0.84375 0.19531-0.15625 0.375-0.33594 0.53125-0.54688 0.0625-0.09375 0.125-0.14062 0.1875-0.14062 0.082031 0 0.13281 0.0625 0.15625 0.1875 0 0.10547-0.15625 0.30859-0.46875 0.60938-0.78125 0.69922-1.6836 1.0469-2.7031 1.0469-0.84375 0-1.4609-0.35938-1.8438-1.0781-0.24219-0.41406-0.35938-0.89844-0.35938-1.4531 0-1.2266 0.47656-2.2188 1.4375-2.9688 0.69531-0.5625 1.4414-0.84375 2.2344-0.84375 0.66406 0 1.125 0.23438 1.375 0.70312 0.082031 0.14844 0.125 0.30859 0.125 0.48438 0 0.49219-0.21094 0.89062-0.625 1.2031l-0.015625 0.015625c-0.125 0.085938-0.26172 0.15625-0.40625 0.21875-0.52344 0.21875-1.2344 0.32812-2.1406 0.32812zm-0.67188-0.3125h0.57812c1.875 0 2.8125-0.48438 2.8125-1.4531 0-0.375-0.18359-0.64062-0.54688-0.79688-0.125-0.039063-0.28906-0.066406-0.48438-0.078125-0.52344 0-1 0.21484-1.4375 0.64062-0.42969 0.40625-0.73438 0.96875-0.92188 1.6875z"/>
|
|
1026
|
+
</symbol>
|
|
1027
|
+
<symbol id="ho" overflow="visible">
|
|
1028
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
1029
|
+
</symbol>
|
|
1030
|
+
<symbol id="hn" overflow="visible">
|
|
1031
|
+
<path d="m3.9062 11.578c-0.82422-0.69922-1.4297-1.5742-1.8125-2.625-0.38672-1.043-0.57812-2.1641-0.57812-3.3594 0-1.1992 0.19141-2.3242 0.57812-3.375 0.38281-1.0547 0.98828-1.918 1.8125-2.5938 0-0.019531 0.015625-0.03125 0.046875-0.03125h0.125c0.019531 0 0.035156 0.011719 0.046875 0.03125 0.019531 0.023438 0.03125 0.042969 0.03125 0.0625 0 0.03125-0.007812 0.054688-0.015625 0.0625-0.36719 0.375-0.67188 0.78906-0.92188 1.25-0.24219 0.45703-0.43359 0.92969-0.57812 1.4219-0.13672 0.5-0.23438 1.0156-0.29688 1.5469-0.0625 0.53906-0.09375 1.0859-0.09375 1.6406 0 2.582 0.62891 4.5234 1.8906 5.8281 0.007813 0.007812 0.015625 0.03125 0.015625 0.0625 0 0.019531-0.011719 0.039062-0.03125 0.0625-0.011719 0.019531-0.027344 0.03125-0.046875 0.03125h-0.125c-0.03125 0-0.046875-0.007812-0.046875-0.015625z"/>
|
|
1032
|
+
</symbol>
|
|
1033
|
+
<symbol id="hm" overflow="visible">
|
|
1034
|
+
<path d="m3.3438-3.0156-0.34375 1.3594c-0.11719 0.46094-0.17188 0.75781-0.17188 0.89062 0 0.34375 0.125 0.55469 0.375 0.625 0.050781 0.023437 0.10938 0.03125 0.17188 0.03125 0.33203 0 0.64062-0.16406 0.92188-0.5 0.17578-0.21875 0.3125-0.48828 0.40625-0.8125 0.019531-0.070313 0.066406-0.10938 0.14062-0.10938 0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.16797-0.10156 0.41406-0.29688 0.73438-0.36719 0.54297-0.79688 0.8125-1.2969 0.8125-0.44922 0-0.77734-0.1875-0.98438-0.5625-0.042969-0.0625-0.074219-0.12891-0.09375-0.20312-0.15625 0.32422-0.375 0.54688-0.65625 0.67188-0.125 0.0625-0.25781 0.09375-0.39062 0.09375-0.40625 0-0.6875-0.11328-0.84375-0.34375-0.0625-0.09375-0.09375-0.19531-0.09375-0.3125 0-0.25 0.10156-0.42188 0.3125-0.51562 0.070313-0.039062 0.14844-0.0625 0.23438-0.0625 0.19531 0 0.31641 0.085938 0.35938 0.25v0.09375c0 0.23047-0.10938 0.39844-0.32812 0.5-0.042969 0.023438-0.089844 0.039062-0.14062 0.046875 0.14453 0.085937 0.3125 0.125 0.5 0.125 0.35156 0 0.63281-0.23438 0.84375-0.70312 0.039063-0.10156 0.078125-0.21875 0.10938-0.34375 0.36328-1.3516 0.54688-2.1445 0.54688-2.375-0.042969-0.41406-0.22656-0.64062-0.54688-0.67188-0.34375 0-0.66406 0.17969-0.95312 0.53125v0.015625c-0.10547 0.13672-0.19922 0.29297-0.28125 0.46875-0.03125 0.085938-0.058594 0.16406-0.078125 0.23438l-0.03125 0.0625c-0.011719 0.074219-0.054688 0.10938-0.125 0.10938-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.16406 0.10938-0.40625 0.32812-0.71875 0.35156-0.55078 0.78125-0.82812 1.2812-0.82812 0.51953 0 0.88281 0.25781 1.0938 0.76562 0.20703-0.41406 0.48828-0.66406 0.84375-0.75 0.0625-0.007812 0.12891-0.015625 0.20312-0.015625 0.39453 0 0.67188 0.10938 0.82812 0.32812 0.0625 0.09375 0.09375 0.20312 0.09375 0.32812 0 0.28125-0.12109 0.46875-0.35938 0.5625-0.0625 0.011719-0.12109 0.015625-0.17188 0.015625-0.21094 0-0.33594-0.085938-0.375-0.26562-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0-0.19531 0.097656-0.35156 0.29688-0.46875 0.0625-0.03125 0.125-0.050781 0.1875-0.0625-0.13672-0.09375-0.30469-0.14062-0.5-0.14062-0.44922 0-0.76562 0.35547-0.95312 1.0625-0.023438 0.042969-0.03125 0.085937-0.03125 0.125z"/>
|
|
1035
|
+
</symbol>
|
|
1036
|
+
<symbol id="hl" overflow="visible">
|
|
1037
|
+
<path d="m3.1406-1.2188-0.1875 1.2188h-2.6094c0-0.11328 0.015625-0.1875 0.046875-0.21875l0.03125-0.046875 1.3438-1.4844c0.48828-0.55078 0.73438-1.0664 0.73438-1.5469 0-0.41406-0.125-0.73438-0.375-0.95312h-0.015625c-0.14844-0.125-0.32812-0.1875-0.54688-0.1875-0.33594 0-0.60156 0.14062-0.79688 0.42188-0.0625 0.085937-0.10938 0.17969-0.14062 0.28125h0.09375c0.1875 0 0.30469 0.085937 0.35938 0.25v0.10938c0 0.1875-0.089844 0.30859-0.26562 0.35938-0.03125 0.011719-0.0625 0.015625-0.09375 0.015625-0.16797 0-0.28125-0.070312-0.34375-0.21875-0.023438-0.050781-0.03125-0.10938-0.03125-0.17188 0-0.36328 0.14062-0.67188 0.42188-0.92188 0.25-0.22656 0.54688-0.34375 0.89062-0.34375 0.50781 0 0.91016 0.17188 1.2031 0.51562 0.15625 0.19922 0.25 0.43359 0.28125 0.70312v0.14062c0 0.33594-0.125 0.65625-0.375 0.96875-0.13672 0.15625-0.35156 0.36719-0.64062 0.625l-0.42188 0.375-0.078125 0.0625-0.73438 0.73438h1.2656c0.40625 0 0.625-0.019531 0.65625-0.0625 0.050781-0.0625 0.10156-0.26953 0.15625-0.625z"/>
|
|
1038
|
+
</symbol>
|
|
1039
|
+
<symbol id="hk" overflow="visible">
|
|
1040
|
+
<path d="m4.0938-2.2969v2.7969c0 0.20703-0.070312 0.31641-0.20312 0.32812-0.13672 0-0.20312-0.10938-0.20312-0.32812v-2.7969h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7969c0-0.20703 0.066406-0.31641 0.20312-0.32812 0.13281 0 0.20312 0.10938 0.20312 0.32812v2.7969h2.7812c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
1041
|
+
</symbol>
|
|
1042
|
+
<symbol id="hj" overflow="visible">
|
|
1043
|
+
<path d="m4.8594-3.8125-0.95312 3.8281c-0.16797 0.64453-0.52734 1.1719-1.0781 1.5781-0.40625 0.30078-0.82812 0.45312-1.2656 0.45312-0.44922 0-0.76562-0.15234-0.95312-0.45312-0.074219-0.125-0.10938-0.26172-0.10938-0.40625 0-0.34375 0.13281-0.55859 0.40625-0.64062 0.050781-0.011719 0.10156-0.015625 0.15625-0.015625 0.20703 0 0.32812 0.09375 0.35938 0.28125 0.007813 0.019531 0.015625 0.039062 0.015625 0.0625 0 0.15625-0.070312 0.29688-0.20312 0.42188-0.09375 0.070313-0.24219 0.10938-0.4375 0.10938 0.125 0.28125 0.37891 0.42188 0.76562 0.42188 0.41406 0 0.78125-0.21094 1.0938-0.625 0.25781-0.34375 0.46875-0.8125 0.625-1.4062 0.007812-0.03125 0.019531-0.078125 0.03125-0.14062-0.30469 0.30469-0.64062 0.45312-1.0156 0.45312-0.53125 0-0.89844-0.19531-1.0938-0.59375-0.085937-0.16406-0.125-0.36328-0.125-0.59375 0-0.36328 0.17578-1.0195 0.53125-1.9688 0.007813-0.039063 0.023437-0.085937 0.046875-0.14062 0.11328-0.30078 0.17188-0.53125 0.17188-0.6875 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.066406-0.33594 0.20312-0.64062 0.28906-0.60156 0.66016-0.90625 1.1094-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.13672-0.070312 0.375-0.20312 0.71875-0.34375 0.875-0.51562 1.5273-0.51562 1.9531 0 0.54297 0.20703 0.8125 0.625 0.8125 0.38281 0 0.71875-0.20703 1-0.625 0.070312-0.09375 0.11328-0.16406 0.125-0.21875l0.45312-1.8125c0.039063-0.21875 0.10938-0.48438 0.20312-0.79688 0.0625-0.28125 0.10938-0.45703 0.14062-0.53125 0.082031-0.14453 0.19531-0.21875 0.34375-0.21875 0.16406 0.03125 0.26562 0.12109 0.29688 0.26562 0 0.0625-0.015625 0.14062-0.046875 0.23438z"/>
|
|
1044
|
+
</symbol>
|
|
1045
|
+
<symbol id="hi" overflow="visible">
|
|
1046
|
+
<path d="m3.1406-1.2188-0.1875 1.2188h-2.6094c0-0.11328 0.015625-0.1875 0.046875-0.21875l0.03125-0.046875 1.3438-1.4844c0.48828-0.55078 0.73438-1.0664 0.73438-1.5469 0-0.41406-0.125-0.73438-0.375-0.95312h-0.015625c-0.14844-0.125-0.32812-0.1875-0.54688-0.1875-0.33594 0-0.60156 0.14062-0.79688 0.42188-0.0625 0.085937-0.10938 0.17969-0.14062 0.28125h0.09375c0.1875 0 0.30469 0.085937 0.35938 0.25v0.10938c0 0.1875-0.089844 0.30859-0.26562 0.35938-0.03125 0.011719-0.0625 0.015625-0.09375 0.015625-0.16797 0-0.28125-0.070312-0.34375-0.21875-0.023438-0.050781-0.03125-0.10938-0.03125-0.17188 0-0.36328 0.14062-0.67188 0.42188-0.92188 0.25-0.22656 0.54688-0.34375 0.89062-0.34375 0.50781 0 0.91016 0.17188 1.2031 0.51562 0.15625 0.19922 0.25 0.43359 0.28125 0.70312v0.14062c0 0.33594-0.125 0.65625-0.375 0.96875-0.13672 0.15625-0.35156 0.36719-0.64062 0.625l-0.42188 0.375-0.078125 0.0625-0.73438 0.73438h1.2656c0.40625 0 0.625-0.019531 0.65625-0.0625 0.050781-0.0625 0.10156-0.26953 0.15625-0.625z"/>
|
|
1047
|
+
</symbol>
|
|
1048
|
+
<symbol id="hh" overflow="visible">
|
|
1049
|
+
<path d="m0.5 11.594c-0.0625 0-0.09375-0.03125-0.09375-0.09375 0-0.03125 0.007812-0.054688 0.03125-0.0625 0.46875-0.5 0.84375-1.0703 1.125-1.7031 0.28125-0.625 0.47266-1.2891 0.57812-1.9844 0.11328-0.69922 0.17188-1.418 0.17188-2.1562 0-2.5938-0.625-4.543-1.875-5.8438-0.023438-0.007812-0.03125-0.03125-0.03125-0.0625 0-0.0625 0.03125-0.09375 0.09375-0.09375h0.125c0.019531 0 0.035156 0.011719 0.046875 0.03125 0.82031 0.67578 1.4219 1.5391 1.7969 2.5938 0.38281 1.0508 0.57812 2.1758 0.57812 3.375 0 1.1953-0.19531 2.3164-0.57812 3.3594-0.375 1.0508-0.97656 1.9258-1.7969 2.625-0.011719 0.007813-0.027344 0.015625-0.046875 0.015625z"/>
|
|
1050
|
+
</symbol>
|
|
1051
|
+
<symbol id="at" overflow="visible">
|
|
1052
|
+
<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"/>
|
|
1053
|
+
</symbol>
|
|
1054
|
+
<symbol id="hf" overflow="visible">
|
|
1055
|
+
<path d="m4.6719-4.2344-0.46875 1.9219c-0.15625 0.63672-0.23438 1.0469-0.23438 1.2344 0 0.49219 0.17188 0.78125 0.51562 0.875 0.070313 0.03125 0.15625 0.046875 0.25 0.046875 0.46875 0 0.89062-0.23438 1.2656-0.70312 0.25781-0.28906 0.45703-0.66406 0.59375-1.125 0.03125-0.10156 0.09375-0.15625 0.1875-0.15625 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.23047-0.14062 0.5625-0.42188 1-0.51172 0.77344-1.1172 1.1562-1.8125 1.1562-0.63672 0-1.1016-0.26562-1.3906-0.79688-0.054688-0.082031-0.09375-0.17188-0.125-0.26562-0.21875 0.44922-0.52734 0.76172-0.92188 0.9375-0.17969 0.082031-0.35938 0.125-0.54688 0.125-0.5625 0-0.95312-0.16406-1.1719-0.5-0.09375-0.11328-0.14062-0.25391-0.14062-0.42188 0-0.34375 0.14844-0.58594 0.45312-0.73438 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.11719 0.51562 0.34375v0.14062c0 0.32422-0.15625 0.55859-0.46875 0.70312-0.054688 0.03125-0.11719 0.046875-0.1875 0.046875 0.19531 0.125 0.42969 0.1875 0.70312 0.1875 0.5 0 0.89062-0.32812 1.1719-0.98438 0.0625-0.14453 0.11328-0.30078 0.15625-0.46875 0.50781-1.9062 0.76562-3.0156 0.76562-3.3281-0.0625-0.58203-0.32031-0.89453-0.76562-0.9375-0.48047 0-0.92188 0.24609-1.3281 0.73438v0.015625c0 0.011719-0.007813 0.015625-0.015625 0.015625-0.13672 0.1875-0.26172 0.40234-0.375 0.64062-0.042969 0.11719-0.085938 0.23047-0.125 0.34375l-0.03125 0.078125c-0.023438 0.10547-0.078125 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.22656 0.14453-0.56641 0.4375-1.0156 0.50781-0.75781 1.1133-1.1406 1.8125-1.1406 0.71875 0 1.2227 0.35547 1.5156 1.0625 0.28906-0.57031 0.6875-0.91406 1.1875-1.0312 0.09375-0.019531 0.1875-0.03125 0.28125-0.03125 0.55078 0 0.9375 0.15625 1.1562 0.46875 0.09375 0.125 0.14062 0.27734 0.14062 0.45312 0 0.38672-0.17188 0.64062-0.51562 0.76562-0.085937 0.03125-0.16406 0.046875-0.23438 0.046875-0.29297 0-0.46484-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.28125 0.13281-0.5 0.40625-0.65625 0.082031-0.050781 0.17188-0.085938 0.26562-0.10938-0.19922-0.11328-0.43359-0.17188-0.70312-0.17188-0.63672 0-1.0859 0.49609-1.3438 1.4844-0.023438 0.054687-0.039062 0.10547-0.046875 0.15625z"/>
|
|
1056
|
+
</symbol>
|
|
1057
|
+
<symbol id="he" overflow="visible">
|
|
1058
|
+
<path d="m6.7969-5.3281-1.3438 5.3438c-0.21875 0.91406-0.71484 1.6562-1.4844 2.2188-0.57422 0.42578-1.168 0.64062-1.7812 0.64062-0.625 0-1.0703-0.21875-1.3281-0.65625-0.10547-0.17969-0.15625-0.36719-0.15625-0.5625 0-0.48047 0.19141-0.77734 0.57812-0.89062 0.070312-0.023437 0.14062-0.03125 0.20312-0.03125 0.30078 0 0.46875 0.13281 0.5 0.40625 0.007813 0.019531 0.015625 0.050781 0.015625 0.09375 0 0.20703-0.09375 0.39844-0.28125 0.57812-0.125 0.10156-0.32422 0.15625-0.59375 0.15625 0.16406 0.39453 0.51953 0.59375 1.0625 0.59375 0.57031 0 1.082-0.29297 1.5312-0.875 0.36328-0.49219 0.65625-1.1523 0.875-1.9844 0.007812-0.03125 0.023438-0.085937 0.046875-0.17188-0.42969 0.41797-0.90234 0.625-1.4219 0.625-0.75 0-1.2617-0.27344-1.5312-0.82812-0.11719-0.23828-0.17188-0.51953-0.17188-0.84375 0-0.50781 0.24219-1.4258 0.73438-2.75 0.019531-0.0625 0.046875-0.125 0.078125-0.1875 0.15625-0.42578 0.23438-0.75391 0.23438-0.98438 0-0.28906-0.11719-0.4375-0.34375-0.4375-0.52344 0-0.94531 0.42188-1.2656 1.2656v0.015625c-0.054687 0.14844-0.10547 0.29688-0.15625 0.45312-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.097656-0.45703 0.29688-0.875 0.40625-0.85156 0.92188-1.2812 1.5469-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.33984 0.10938 0.51562 0 0.19922-0.09375 0.53906-0.28125 1.0156-0.48047 1.2305-0.71875 2.1484-0.71875 2.75 0 0.75 0.28906 1.125 0.875 1.125 0.53906 0 1.0078-0.28516 1.4062-0.85938 0.09375-0.14453 0.14844-0.25391 0.17188-0.32812l0.625-2.5156c0.070313-0.3125 0.16406-0.6875 0.28125-1.125 0.09375-0.40625 0.16016-0.65625 0.20312-0.75 0.11328-0.19531 0.27344-0.29688 0.48438-0.29688 0.22656 0.042969 0.36328 0.16797 0.40625 0.375 0 0.085938-0.023437 0.19531-0.0625 0.32812z"/>
|
|
1059
|
+
</symbol>
|
|
1060
|
+
<symbol id="hd" overflow="visible">
|
|
1061
|
+
<path d="m12.734-3.2188h-10.766c0.63281 0.46875 1.1133 1.0742 1.4375 1.8125 0.050781 0.11719 0.078125 0.19531 0.078125 0.23438 0 0.10547-0.070313 0.15625-0.20312 0.15625-0.10547 0-0.1875-0.0625-0.25-0.1875-0.39844-0.86328-0.98047-1.5156-1.75-1.9531l-0.3125-0.15625c-0.11719-0.070312-0.17188-0.13281-0.17188-0.1875 0-0.050781 0.046875-0.10938 0.14062-0.17188l0.0625-0.03125c0.9375-0.44531 1.6172-1.1641 2.0469-2.1562 0.050781-0.082031 0.12891-0.125 0.23438-0.125 0.13281 0 0.20312 0.054687 0.20312 0.15625 0 0.14844-0.13672 0.42969-0.40625 0.84375-0.30469 0.49219-0.67188 0.89062-1.1094 1.2031h10.766c0.28125 0.054688 0.4375 0.14844 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
1062
|
+
</symbol>
|
|
1063
|
+
<symbol id="b" overflow="visible">
|
|
1064
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
1065
|
+
</symbol>
|
|
1066
|
+
<symbol id="hc" overflow="visible">
|
|
1067
|
+
<path d="m3.9688-3.2188h-3.2656c-0.13672 0-0.20312-0.09375-0.20312-0.28125s0.066406-0.28125 0.20312-0.28125h3.2656c0.125 0 0.1875 0.09375 0.1875 0.28125s-0.0625 0.28125-0.1875 0.28125z"/>
|
|
1068
|
+
</symbol>
|
|
1069
|
+
<symbol id="hb" overflow="visible">
|
|
1070
|
+
<path d="m12.016-3.2188h-10.766c-0.28125-0.050781-0.4375-0.14453-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h10.766c-0.63672-0.46875-1.1172-1.0703-1.4375-1.8125h-0.015625c-0.042969-0.125-0.0625-0.20312-0.0625-0.23438 0-0.10156 0.066406-0.15625 0.20312-0.15625 0.10156 0 0.1875 0.0625 0.25 0.1875 0.40625 0.92969 1.0391 1.6094 1.9062 2.0469l0.015625 0.015625h0.015625c0.0625 0.03125 0.12891 0.0625 0.20312 0.09375 0.03125 0 0.0625 0.046875 0.09375 0.14062 0 0.0625-0.042969 0.12109-0.125 0.17188-0.023438 0-0.046875 0.011719-0.078125 0.03125-0.91797 0.4375-1.5898 1.1367-2.0156 2.0938-0.011719 0.011719-0.023438 0.03125-0.03125 0.0625-0.054688 0.085937-0.13281 0.125-0.23438 0.125-0.13672 0-0.20312-0.050781-0.20312-0.15625 0-0.14453 0.13281-0.42578 0.40625-0.84375 0.3125-0.48828 0.67969-0.89062 1.1094-1.2031z"/>
|
|
1071
|
+
</symbol>
|
|
1072
|
+
<symbol id="ha" overflow="visible">
|
|
1073
|
+
<path d="m2.3906-4.0312 1.4062 2.4219c0.10156 0.17969 0.10156 0.30469 0 0.375-0.125 0.074219-0.24609 0.015625-0.35938-0.17188l-1.4062-2.4219-2.4219 1.3906c-0.1875 0.11719-0.3125 0.10938-0.375-0.015625-0.070313-0.11328-0.015625-0.22656 0.17188-0.34375l2.4219-1.3906-1.3906-2.4219c-0.10547-0.17578-0.10156-0.30469 0.015625-0.39062 0.11328-0.0625 0.22656 0 0.34375 0.1875l1.3906 2.4219 2.4062-1.3906c0.1875-0.11328 0.31641-0.11328 0.39062 0 0.0625 0.125 0 0.24609-0.1875 0.35938z"/>
|
|
1074
|
+
</symbol>
|
|
1075
|
+
<symbol id="gz" overflow="visible">
|
|
1076
|
+
<path d="m3.0312-4.9062c0.007812-0.76953 0.1875-1.4219 0.53125-1.9531 0.19531-0.32031 0.44531-0.57031 0.75-0.75 0.55078-0.3125 1.1328-0.30469 1.75 0.015625 0.42578 0.23047 0.76953 0.5625 1.0312 1 0.34375 0.60547 0.44141 1.2031 0.29688 1.7969-0.11719 0.5-0.38672 0.875-0.8125 1.125-0.52344 0.30469-1.1367 0.39062-1.8438 0.26562-0.1875-0.03125-0.5-0.13281-0.9375-0.3125l-0.34375-0.10938c-0.011719 0.77344-0.1875 1.4219-0.53125 1.9531-0.1875 0.32422-0.43359 0.57031-0.73438 0.73438-0.5625 0.32422-1.1523 0.32422-1.7656 0-0.42578-0.22656-0.76562-0.56641-1.0156-1.0156-0.34375-0.59375-0.44141-1.1914-0.29688-1.7969 0.11719-0.5 0.39062-0.875 0.82812-1.125 0.5-0.28906 1.1016-0.375 1.8125-0.25 0.1875 0.03125 0.5 0.13672 0.9375 0.3125h0.0625c0.070312 0.03125 0.16406 0.070313 0.28125 0.10938zm0.40625 0.17188 1.4375 0.59375c0.007812 0 0.019531 0.007813 0.03125 0.015625h0.046875c0.625 0.1875 1.125 0.17188 1.5-0.046875 0.41406-0.23828 0.64844-0.61719 0.70312-1.1406 0.03125-0.40625-0.058594-0.79688-0.26562-1.1719-0.30469-0.50781-0.69531-0.84375-1.1719-1-0.375-0.11328-0.73047-0.09375-1.0625 0.0625l-0.10938 0.0625c-0.73047 0.42969-1.1016 1.2734-1.1094 2.5312v0.09375zm-0.375 0.73438-1.4688-0.59375v-0.015625h-0.046875c-0.625-0.19531-1.1328-0.17969-1.5156 0.046875-0.41406 0.24219-0.65625 0.62109-0.71875 1.1406-0.03125 0.40625 0.0625 0.79297 0.28125 1.1562 0.29297 0.52344 0.69141 0.85938 1.2031 1.0156 0.39453 0.13672 0.78125 0.10156 1.1562-0.10938 0.72656-0.42578 1.0977-1.2695 1.1094-2.5312-0.011719-0.039063-0.011719-0.078125 0-0.10938z"/>
|
|
1077
|
+
</symbol>
|
|
1078
|
+
<symbol id="gy" overflow="visible">
|
|
1079
|
+
<path d="m10.594 16.5c-0.085938 0.050781-0.14844 0.035156-0.1875-0.046875-0.023438-0.03125-0.027344-0.074219-0.015625-0.125l2.1094-11.141-11.469-5.0781c-0.042969 0-0.070312-0.011719-0.078125-0.03125l-0.21875-0.35938c-0.011719-0.03125-0.011719-0.0625 0-0.09375 0.007813-0.039062 0.03125-0.070312 0.0625-0.09375l14.547-8.3906 3.4375 2.5469-0.34375 0.20312c-0.875-0.64453-1.875-0.92188-3-0.82812-1.1172 0.09375-2.1797 0.37109-3.1875 0.82812-1.0117 0.46094-2.1523 1.0547-3.4219 1.7812l-5.6094 3.2344 10.25 4.5312c0.03125 0.007812 0.054688 0.03125 0.078125 0.0625 0.007813 0.03125 0.015625 0.066406 0.015625 0.10938l-2.0625 10.953 6.2969-3.625c1.2383-0.71875 2.3125-1.4062 3.2188-2.0625s1.6719-1.4453 2.2969-2.3594c0.63281-0.91797 0.86719-1.9023 0.70312-2.9531l0.34375-0.20312 0.78125 4.75z"/>
|
|
1080
|
+
</symbol>
|
|
1081
|
+
<symbol id="gx" overflow="visible">
|
|
1082
|
+
<path d="m0.45312-0.95312-0.64062-2.2969c-0.125-0.42578-0.21875-0.69141-0.28125-0.79688-0.15625-0.26953-0.32031-0.35156-0.5-0.25-0.23828 0.13672-0.26953 0.52344-0.09375 1.1562 0.011719 0.074219 0.027344 0.15234 0.046875 0.23438 0.011719 0.16797 0.007813 0.26562-0.015625 0.29688-0.070312 0.03125-0.125 0.023437-0.15625-0.03125-0.0625-0.10156-0.125-0.34375-0.1875-0.71875l-0.015625-0.015625c0-0.007812 0.007813-0.015625 0.015625-0.015625l-0.015625-0.015625-0.015625-0.21875c-0.007812-0.3125 0.039062-0.53516 0.14062-0.67188 0.054687-0.082031 0.12109-0.14844 0.20312-0.20312 0.33594-0.1875 0.65234-0.1875 0.95312 0 0.10547 0.074219 0.20312 0.16797 0.29688 0.28125 0.070312-0.70703 0.36719-1.2109 0.89062-1.5156 0.50781-0.28906 0.9375-0.28516 1.2812 0.015625 0.09375 0.09375 0.17969 0.21094 0.26562 0.34375 0.16406 0.28125 0.35938 1.0117 0.57812 2.1875 0.039063 0.32422 0.10938 0.5625 0.20312 0.71875 0.10156 0.1875 0.22266 0.24219 0.35938 0.15625 0.375-0.21875 0.46094-0.73828 0.26562-1.5625-0.03125-0.125-0.03125-0.19531 0-0.21875v-0.015625l0.046875-0.015625c0.0625-0.039062 0.10938-0.035156 0.14062 0.015625 0.050781 0.10547 0.097656 0.32812 0.14062 0.67188 0.0625 0.66797-0.10156 1.1094-0.48438 1.3281-0.29297 0.16797-0.57422 0.16797-0.84375 0-0.125-0.082031-0.22656-0.17969-0.29688-0.29688-0.0625-0.11328-0.10938-0.26562-0.14062-0.45312-0.21094-1.2266-0.40625-2.0078-0.59375-2.3438-0.24219-0.40625-0.51562-0.51953-0.82812-0.34375-0.52344 0.30469-0.79297 0.84375-0.8125 1.625 0 0.09375 0.003906 0.18359 0.015625 0.26562l0.14062 0.48438c0.050781 0.14844 0.11328 0.37109 0.1875 0.67188l0.26562 0.89062c0.125 0.46094 0.19141 0.69922 0.20312 0.71875 0.03125 0.1875-0.027344 0.33594-0.17188 0.4375-0.16797 0.054687-0.29688 0.023437-0.39062-0.09375 0 0.011719-0.054687-0.125-0.15625-0.40625z"/>
|
|
1083
|
+
</symbol>
|
|
1084
|
+
<symbol id="gw" overflow="visible">
|
|
1085
|
+
<path d="m4.3125-6.2656-5.1719 2.9844c-0.1875 0.10547-0.31641 0.10547-0.39062 0-0.070312-0.125-0.015625-0.24219 0.17188-0.35938l5.1875-2.9844c0.1875-0.11328 0.31641-0.10938 0.39062 0.015625 0.0625 0.11719 0 0.23047-0.1875 0.34375zm0.96875 1.6719-5.1875 2.9844c-0.1875 0.11719-0.3125 0.11719-0.375 0-0.070312-0.11328-0.007812-0.22656 0.1875-0.34375l5.1719-2.9844c0.17578-0.10156 0.30469-0.10156 0.39062 0 0.0625 0.11719 0 0.23047-0.1875 0.34375z"/>
|
|
1086
|
+
</symbol>
|
|
1087
|
+
<symbol id="gu" overflow="visible">
|
|
1088
|
+
<path d="m-0.65625-7.0156 2.7969 4.8594c0.10156 0.17969 0.20703 0.26562 0.3125 0.26562 0.125 0 0.375-0.10156 0.75-0.3125l0.26562-0.15625 0.15625 0.26562c-0.21094 0.09375-0.68359 0.35547-1.4219 0.78125-0.73047 0.41797-1.1875 0.69531-1.375 0.82812l-0.15625-0.26562 0.26562-0.15625c0.44531-0.25781 0.67578-0.45703 0.6875-0.59375v-0.015625c-0.011719-0.0625-0.054688-0.15625-0.125-0.28125l-2.5781-4.4844c-0.20703 0.33594-0.54688 0.63281-1.0156 0.89062l-0.15625-0.26562c0.69922-0.39453 1.1211-0.88281 1.2656-1.4688 0.11719-0.0625 0.19531-0.078125 0.23438-0.046875 0.011719 0.023437 0.042969 0.074219 0.09375 0.15625z"/>
|
|
1089
|
+
</symbol>
|
|
1090
|
+
<symbol id="as" overflow="visible">
|
|
1091
|
+
<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"/>
|
|
1092
|
+
</symbol>
|
|
1093
|
+
<symbol id="ar" overflow="visible">
|
|
1094
|
+
<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"/>
|
|
1095
|
+
</symbol>
|
|
1096
|
+
<symbol id="h" overflow="visible">
|
|
1097
|
+
<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"/>
|
|
1098
|
+
</symbol>
|
|
1099
|
+
<symbol id="aq" overflow="visible">
|
|
1100
|
+
<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"/>
|
|
1101
|
+
</symbol>
|
|
1102
|
+
<symbol id="ap" overflow="visible">
|
|
1103
|
+
<path d="m-3.375-9.25-3.0312 7.8438-3.0781-7.8906c-0.050781-0.14453-0.10938-0.22656-0.17188-0.25-0.050781-0.007813-0.14453-0.015625-0.28125-0.015625h-2.375v0.4375h0.34375c0.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.125h-0.34375v0.4375c0.35547-0.03125 1.0273-0.046875 2.0156-0.046875 0.99219 0 1.6641 0.015625 2.0156 0.046875v-0.4375h-0.34375c-0.60156 0-0.95312-0.078125-1.0469-0.23438-0.039063-0.0625-0.0625-0.20312-0.0625-0.42188v-8.0312h0.015625l3.4531 8.8594c0.0625 0.16797 0.14844 0.25781 0.25 0.26562 0.10547 0 0.19922-0.10156 0.28125-0.3125l3.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.4375c0.98047-0.03125 1.5273-0.046875 1.6406-0.046875 0.11719 0 0.66406 0.015625 1.6406 0.046875v-0.4375c-0.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.125h0.34375v-0.4375h-2.375c-0.20703 0-0.33594 0.039062-0.39062 0.10938l-0.015625 0.015625v0.03125c-0.019531 0.03125-0.046875 0.085938-0.078125 0.15625z"/>
|
|
1104
|
+
</symbol>
|
|
1105
|
+
<symbol id="ao" overflow="visible">
|
|
1106
|
+
<path d="m-2.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.4375c0.94922-0.03125 1.4336-0.046875 1.4531-0.046875 0.125 0 0.63672 0.015625 1.5312 0.046875v-0.4375c-0.53906 0-0.85938-0.039062-0.95312-0.125l-0.03125-0.03125c-0.0625-0.070312-0.09375-0.22656-0.09375-0.46875v-3.7656c0-0.375 0.074219-0.59766 0.21875-0.67188h0.015625l0.015625-0.015625c0.11719-0.050781 0.375-0.078125 0.78125-0.078125v-0.4375zm-0.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.015625c0.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"/>
|
|
1107
|
+
</symbol>
|
|
1108
|
+
<symbol id="g" overflow="visible">
|
|
1109
|
+
<path d="m-2.4062-1.0938c0 0.29297-0.054688 0.46875-0.17188 0.53125l-0.015625 0.015625c-0.125 0.074219-0.41406 0.10938-0.875 0.10938h-0.29688v0.4375c0.375-0.03125 0.96875-0.046875 1.7812-0.046875-0.03125 0 0.5 0.015625 1.5938 0.046875v-0.4375c-0.55078 0-0.875-0.039062-0.96875-0.125l-0.03125-0.03125c-0.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.10938h0.28125v-0.4375l-1.9531-0.15625v1.5469c-0.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"/>
|
|
1110
|
+
</symbol>
|
|
1111
|
+
<symbol id="an" overflow="visible">
|
|
1112
|
+
<path d="m-6.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.1875zm3.0938 2.7969c-0.625 0-1.1172-0.25781-1.4844-0.78125l-0.14062-0.25c-0.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"/>
|
|
1113
|
+
</symbol>
|
|
1114
|
+
<clipPath id="ng">
|
|
1115
|
+
<path d="m154 124h14v10h-14z"/>
|
|
1116
|
+
</clipPath>
|
|
1117
|
+
</defs>
|
|
1118
|
+
<rect width="460" height="494" fill="#fff"/>
|
|
1119
|
+
<g>
|
|
1120
|
+
<use x="212.058594" y="22.582031" xlink:href="#nf"/>
|
|
1121
|
+
</g>
|
|
1122
|
+
<g>
|
|
1123
|
+
<use x="215.910156" y="19.867188" xlink:href="#ne"/>
|
|
1124
|
+
</g>
|
|
1125
|
+
<g>
|
|
1126
|
+
<use x="221.160156" y="22.582031" xlink:href="#hu"/>
|
|
1127
|
+
</g>
|
|
1128
|
+
<g>
|
|
1129
|
+
<use x="229.171875" y="25.59375" xlink:href="#ht"/>
|
|
1130
|
+
</g>
|
|
1131
|
+
<g>
|
|
1132
|
+
<use x="236.597656" y="22.582031" xlink:href="#hs"/>
|
|
1133
|
+
</g>
|
|
1134
|
+
<g>
|
|
1135
|
+
<use x="46.722656" y="44.203125" xlink:href="#al"/>
|
|
1136
|
+
</g>
|
|
1137
|
+
<g>
|
|
1138
|
+
<use x="55.664062" y="44.203125" xlink:href="#ak"/>
|
|
1139
|
+
</g>
|
|
1140
|
+
<g>
|
|
1141
|
+
<use x="61.886719" y="44.203125" xlink:href="#p"/>
|
|
1142
|
+
</g>
|
|
1143
|
+
<g>
|
|
1144
|
+
<use x="69.664062" y="44.203125" xlink:href="#aj"/>
|
|
1145
|
+
</g>
|
|
1146
|
+
<g>
|
|
1147
|
+
<use x="77.441406" y="44.203125" xlink:href="#f"/>
|
|
1148
|
+
</g>
|
|
1149
|
+
<g>
|
|
1150
|
+
<use x="84.441406" y="44.203125" xlink:href="#ai"/>
|
|
1151
|
+
</g>
|
|
1152
|
+
<g>
|
|
1153
|
+
<use x="91.441406" y="44.203125" xlink:href="#f"/>
|
|
1154
|
+
</g>
|
|
1155
|
+
<g>
|
|
1156
|
+
<use x="98.441406" y="44.203125" xlink:href="#ah"/>
|
|
1157
|
+
</g>
|
|
1158
|
+
<g>
|
|
1159
|
+
<use x="110.886719" y="44.203125" xlink:href="#p"/>
|
|
1160
|
+
</g>
|
|
1161
|
+
<g>
|
|
1162
|
+
<use x="118.664062" y="44.203125" xlink:href="#f"/>
|
|
1163
|
+
</g>
|
|
1164
|
+
<g>
|
|
1165
|
+
<use x="125.664062" y="44.203125" xlink:href="#ag"/>
|
|
1166
|
+
</g>
|
|
1167
|
+
<g>
|
|
1168
|
+
<use x="132.664062" y="44.203125" xlink:href="#f"/>
|
|
1169
|
+
</g>
|
|
1170
|
+
<g>
|
|
1171
|
+
<use x="139.664062" y="44.203125" xlink:href="#af"/>
|
|
1172
|
+
</g>
|
|
1173
|
+
<g>
|
|
1174
|
+
<use x="152.109375" y="44.203125" xlink:href="#al"/>
|
|
1175
|
+
</g>
|
|
1176
|
+
<g>
|
|
1177
|
+
<use x="161.054687" y="44.203125" xlink:href="#ak"/>
|
|
1178
|
+
</g>
|
|
1179
|
+
<g>
|
|
1180
|
+
<use x="167.277344" y="44.203125" xlink:href="#p"/>
|
|
1181
|
+
</g>
|
|
1182
|
+
<g>
|
|
1183
|
+
<use x="175.054687" y="44.203125" xlink:href="#aj"/>
|
|
1184
|
+
</g>
|
|
1185
|
+
<g>
|
|
1186
|
+
<use x="182.832031" y="44.203125" xlink:href="#f"/>
|
|
1187
|
+
</g>
|
|
1188
|
+
<g>
|
|
1189
|
+
<use x="189.832031" y="44.203125" xlink:href="#ai"/>
|
|
1190
|
+
</g>
|
|
1191
|
+
<g>
|
|
1192
|
+
<use x="196.832031" y="44.203125" xlink:href="#f"/>
|
|
1193
|
+
</g>
|
|
1194
|
+
<g>
|
|
1195
|
+
<use x="203.832031" y="44.203125" xlink:href="#ah"/>
|
|
1196
|
+
</g>
|
|
1197
|
+
<g>
|
|
1198
|
+
<use x="216.277344" y="44.203125" xlink:href="#p"/>
|
|
1199
|
+
</g>
|
|
1200
|
+
<g>
|
|
1201
|
+
<use x="224.054687" y="44.203125" xlink:href="#f"/>
|
|
1202
|
+
</g>
|
|
1203
|
+
<g>
|
|
1204
|
+
<use x="231.054687" y="44.203125" xlink:href="#ag"/>
|
|
1205
|
+
</g>
|
|
1206
|
+
<g>
|
|
1207
|
+
<use x="238.054687" y="44.203125" xlink:href="#f"/>
|
|
1208
|
+
</g>
|
|
1209
|
+
<g>
|
|
1210
|
+
<use x="245.054687" y="44.203125" xlink:href="#af"/>
|
|
1211
|
+
</g>
|
|
1212
|
+
<g>
|
|
1213
|
+
<use x="257.5" y="44.203125" xlink:href="#ft"/>
|
|
1214
|
+
</g>
|
|
1215
|
+
<g>
|
|
1216
|
+
<use x="264.847656" y="44.203125" xlink:href="#fs"/>
|
|
1217
|
+
</g>
|
|
1218
|
+
<g>
|
|
1219
|
+
<use x="272.199219" y="44.203125" xlink:href="#ab"/>
|
|
1220
|
+
</g>
|
|
1221
|
+
<g>
|
|
1222
|
+
<use x="279.550781" y="44.203125" xlink:href="#fr"/>
|
|
1223
|
+
</g>
|
|
1224
|
+
<g>
|
|
1225
|
+
<use x="286.898437" y="44.203125" xlink:href="#n"/>
|
|
1226
|
+
</g>
|
|
1227
|
+
<g>
|
|
1228
|
+
<use x="294.25" y="44.203125" xlink:href="#fq"/>
|
|
1229
|
+
</g>
|
|
1230
|
+
<g>
|
|
1231
|
+
<use x="301.597656" y="44.203125" xlink:href="#n"/>
|
|
1232
|
+
</g>
|
|
1233
|
+
<g>
|
|
1234
|
+
<use x="308.949219" y="44.203125" xlink:href="#fp"/>
|
|
1235
|
+
</g>
|
|
1236
|
+
<g>
|
|
1237
|
+
<use x="320.964844" y="44.203125" xlink:href="#ab"/>
|
|
1238
|
+
</g>
|
|
1239
|
+
<g>
|
|
1240
|
+
<use x="328.316406" y="44.203125" xlink:href="#n"/>
|
|
1241
|
+
</g>
|
|
1242
|
+
<g>
|
|
1243
|
+
<use x="335.664062" y="44.203125" xlink:href="#fo"/>
|
|
1244
|
+
</g>
|
|
1245
|
+
<g>
|
|
1246
|
+
<use x="343.015625" y="44.203125" xlink:href="#n"/>
|
|
1247
|
+
</g>
|
|
1248
|
+
<g>
|
|
1249
|
+
<use x="350.367187" y="44.203125" xlink:href="#fn"/>
|
|
1250
|
+
</g>
|
|
1251
|
+
<g>
|
|
1252
|
+
<use x="46.722656" y="59.953125" xlink:href="#fc"/>
|
|
1253
|
+
</g>
|
|
1254
|
+
<g>
|
|
1255
|
+
<use x="56.578125" y="59.953125" xlink:href="#fb"/>
|
|
1256
|
+
</g>
|
|
1257
|
+
<g>
|
|
1258
|
+
<use x="63.957031" y="59.953125" xlink:href="#aa"/>
|
|
1259
|
+
</g>
|
|
1260
|
+
<g>
|
|
1261
|
+
<use x="72.902344" y="59.953125" xlink:href="#fa"/>
|
|
1262
|
+
</g>
|
|
1263
|
+
<g>
|
|
1264
|
+
<use x="81.847656" y="59.953125" xlink:href="#m"/>
|
|
1265
|
+
</g>
|
|
1266
|
+
<g>
|
|
1267
|
+
<use x="89.898437" y="59.953125" xlink:href="#ez"/>
|
|
1268
|
+
</g>
|
|
1269
|
+
<g>
|
|
1270
|
+
<use x="97.945312" y="59.953125" xlink:href="#m"/>
|
|
1271
|
+
</g>
|
|
1272
|
+
<g>
|
|
1273
|
+
<use x="105.996094" y="59.953125" xlink:href="#ey"/>
|
|
1274
|
+
</g>
|
|
1275
|
+
<g>
|
|
1276
|
+
<use x="119.609375" y="59.953125" xlink:href="#aa"/>
|
|
1277
|
+
</g>
|
|
1278
|
+
<g>
|
|
1279
|
+
<use x="128.550781" y="59.953125" xlink:href="#m"/>
|
|
1280
|
+
</g>
|
|
1281
|
+
<g>
|
|
1282
|
+
<use x="136.601562" y="59.953125" xlink:href="#ex"/>
|
|
1283
|
+
</g>
|
|
1284
|
+
<g>
|
|
1285
|
+
<use x="144.222656" y="59.953125" xlink:href="#m"/>
|
|
1286
|
+
</g>
|
|
1287
|
+
<g>
|
|
1288
|
+
<use x="152.273437" y="59.953125" xlink:href="#ew"/>
|
|
1289
|
+
</g>
|
|
1290
|
+
<g>
|
|
1291
|
+
<use x="165.886719" y="59.953125" xlink:href="#el"/>
|
|
1292
|
+
</g>
|
|
1293
|
+
<g>
|
|
1294
|
+
<use x="174.246094" y="59.953125" xlink:href="#ek"/>
|
|
1295
|
+
</g>
|
|
1296
|
+
<g>
|
|
1297
|
+
<use x="180.46875" y="59.953125" xlink:href="#y"/>
|
|
1298
|
+
</g>
|
|
1299
|
+
<g>
|
|
1300
|
+
<use x="187.703125" y="59.953125" xlink:href="#ej"/>
|
|
1301
|
+
</g>
|
|
1302
|
+
<g>
|
|
1303
|
+
<use x="195.089844" y="59.953125" xlink:href="#l"/>
|
|
1304
|
+
</g>
|
|
1305
|
+
<g>
|
|
1306
|
+
<use x="202.089844" y="59.953125" xlink:href="#ei"/>
|
|
1307
|
+
</g>
|
|
1308
|
+
<g>
|
|
1309
|
+
<use x="208.820312" y="59.953125" xlink:href="#l"/>
|
|
1310
|
+
</g>
|
|
1311
|
+
<g>
|
|
1312
|
+
<use x="215.820312" y="59.953125" xlink:href="#eh"/>
|
|
1313
|
+
</g>
|
|
1314
|
+
<g>
|
|
1315
|
+
<use x="228.011719" y="59.953125" xlink:href="#y"/>
|
|
1316
|
+
</g>
|
|
1317
|
+
<g>
|
|
1318
|
+
<use x="235.246094" y="59.953125" xlink:href="#l"/>
|
|
1319
|
+
</g>
|
|
1320
|
+
<g>
|
|
1321
|
+
<use x="242.246094" y="59.953125" xlink:href="#eg"/>
|
|
1322
|
+
</g>
|
|
1323
|
+
<g>
|
|
1324
|
+
<use x="248.660156" y="59.953125" xlink:href="#l"/>
|
|
1325
|
+
</g>
|
|
1326
|
+
<g>
|
|
1327
|
+
<use x="255.660156" y="59.953125" xlink:href="#ef"/>
|
|
1328
|
+
</g>
|
|
1329
|
+
<g>
|
|
1330
|
+
<use x="24" y="88.058594" xlink:href="#de"/>
|
|
1331
|
+
</g>
|
|
1332
|
+
<g>
|
|
1333
|
+
<use x="27.890625" y="88.058594" xlink:href="#cl"/>
|
|
1334
|
+
</g>
|
|
1335
|
+
<g>
|
|
1336
|
+
<use x="34.042969" y="90.15625" xlink:href="#ca"/>
|
|
1337
|
+
</g>
|
|
1338
|
+
<g>
|
|
1339
|
+
<use x="38.941406" y="88.058594" xlink:href="#nd"/>
|
|
1340
|
+
</g>
|
|
1341
|
+
<g>
|
|
1342
|
+
<use x="46.722656" y="88.058594" xlink:href="#mj"/>
|
|
1343
|
+
</g>
|
|
1344
|
+
<g>
|
|
1345
|
+
<use x="61.5" y="67.757813" xlink:href="#q"/>
|
|
1346
|
+
</g>
|
|
1347
|
+
<g>
|
|
1348
|
+
<use x="61.5" y="76.15625" xlink:href="#q"/>
|
|
1349
|
+
</g>
|
|
1350
|
+
<g>
|
|
1351
|
+
<use x="61.5" y="84.558594" xlink:href="#q"/>
|
|
1352
|
+
</g>
|
|
1353
|
+
<g>
|
|
1354
|
+
<use x="61.5" y="92.957031" xlink:href="#q"/>
|
|
1355
|
+
</g>
|
|
1356
|
+
<g>
|
|
1357
|
+
<use x="66.164062" y="69.003906" xlink:href="#lz"/>
|
|
1358
|
+
</g>
|
|
1359
|
+
<g>
|
|
1360
|
+
<use x="80.164062" y="72.785156" xlink:href="#lo"/>
|
|
1361
|
+
</g>
|
|
1362
|
+
<g>
|
|
1363
|
+
<use x="73.941406" y="100.605469" xlink:href="#lb"/>
|
|
1364
|
+
</g>
|
|
1365
|
+
<g>
|
|
1366
|
+
<use x="91.835937" y="88.058594" xlink:href="#kq"/>
|
|
1367
|
+
</g>
|
|
1368
|
+
<g>
|
|
1369
|
+
<use x="100.957031" y="88.058594" xlink:href="#aw"/>
|
|
1370
|
+
</g>
|
|
1371
|
+
<g>
|
|
1372
|
+
<use x="106.402344" y="88.058594" xlink:href="#ax"/>
|
|
1373
|
+
</g>
|
|
1374
|
+
<g>
|
|
1375
|
+
<use x="111.457031" y="88.058594" xlink:href="#av"/>
|
|
1376
|
+
</g>
|
|
1377
|
+
<g>
|
|
1378
|
+
<use x="119.234375" y="68.316406" xlink:href="#jf"/>
|
|
1379
|
+
</g>
|
|
1380
|
+
<g>
|
|
1381
|
+
<use x="129.734375" y="88.058594" xlink:href="#kp"/>
|
|
1382
|
+
</g>
|
|
1383
|
+
<g>
|
|
1384
|
+
<use x="137.75" y="88.058594" xlink:href="#aw"/>
|
|
1385
|
+
</g>
|
|
1386
|
+
<g>
|
|
1387
|
+
<use x="143.191406" y="88.058594" xlink:href="#ko"/>
|
|
1388
|
+
</g>
|
|
1389
|
+
<g>
|
|
1390
|
+
<use x="150.59375" y="88.058594" xlink:href="#kn"/>
|
|
1391
|
+
</g>
|
|
1392
|
+
<g>
|
|
1393
|
+
<use x="156.816406" y="88.058594" xlink:href="#ax"/>
|
|
1394
|
+
</g>
|
|
1395
|
+
<g>
|
|
1396
|
+
<use x="161.871094" y="88.058594" xlink:href="#av"/>
|
|
1397
|
+
</g>
|
|
1398
|
+
<g>
|
|
1399
|
+
<use x="170.425781" y="88.058594" xlink:href="#io"/>
|
|
1400
|
+
</g>
|
|
1401
|
+
<g>
|
|
1402
|
+
<use x="184.425781" y="69.003906" xlink:href="#je"/>
|
|
1403
|
+
</g>
|
|
1404
|
+
<g>
|
|
1405
|
+
<use x="198.425781" y="72.785156" xlink:href="#ie"/>
|
|
1406
|
+
</g>
|
|
1407
|
+
<g>
|
|
1408
|
+
<use x="192.203125" y="100.605469" xlink:href="#hr"/>
|
|
1409
|
+
</g>
|
|
1410
|
+
<g>
|
|
1411
|
+
<use x="197.277344" y="100.605469" xlink:href="#hg"/>
|
|
1412
|
+
</g>
|
|
1413
|
+
<g>
|
|
1414
|
+
<use x="201.089844" y="100.605469" xlink:href="#gv"/>
|
|
1415
|
+
</g>
|
|
1416
|
+
<g>
|
|
1417
|
+
<use x="204.628906" y="100.605469" xlink:href="#gt"/>
|
|
1418
|
+
</g>
|
|
1419
|
+
<g>
|
|
1420
|
+
<use x="216.0625" y="78.585938" xlink:href="#gs"/>
|
|
1421
|
+
</g>
|
|
1422
|
+
<g>
|
|
1423
|
+
<use x="223.351563" y="78.585938" xlink:href="#am"/>
|
|
1424
|
+
</g>
|
|
1425
|
+
<path transform="matrix(14 0 0 14 -9.521e-6 -5.1677e-6)" d="m15.433 6.0399h0.98996" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
1426
|
+
<g>
|
|
1427
|
+
<use x="219.347656" y="97.660156" xlink:href="#gr"/>
|
|
1428
|
+
</g>
|
|
1429
|
+
<g>
|
|
1430
|
+
<use x="231.601563" y="88.058594" xlink:href="#go"/>
|
|
1431
|
+
</g>
|
|
1432
|
+
<g>
|
|
1433
|
+
<use x="237.046875" y="88.058594" xlink:href="#am"/>
|
|
1434
|
+
</g>
|
|
1435
|
+
<g>
|
|
1436
|
+
<use x="243.621094" y="88.058594" xlink:href="#gq"/>
|
|
1437
|
+
</g>
|
|
1438
|
+
<g>
|
|
1439
|
+
<use x="249.84375" y="88.058594" xlink:href="#gp"/>
|
|
1440
|
+
</g>
|
|
1441
|
+
<g>
|
|
1442
|
+
<use x="254.898438" y="88.058594" xlink:href="#gn"/>
|
|
1443
|
+
</g>
|
|
1444
|
+
<g>
|
|
1445
|
+
<use x="262.675781" y="69.003906" xlink:href="#gm"/>
|
|
1446
|
+
</g>
|
|
1447
|
+
<g>
|
|
1448
|
+
<use x="276.675781" y="72.785156" xlink:href="#gl"/>
|
|
1449
|
+
</g>
|
|
1450
|
+
<g>
|
|
1451
|
+
<use x="270.453125" y="100.605469" xlink:href="#gk"/>
|
|
1452
|
+
</g>
|
|
1453
|
+
<g>
|
|
1454
|
+
<use x="287.21875" y="88.058594" xlink:href="#gj"/>
|
|
1455
|
+
</g>
|
|
1456
|
+
<g>
|
|
1457
|
+
<use x="293.277344" y="88.058594" xlink:href="#gg"/>
|
|
1458
|
+
</g>
|
|
1459
|
+
<g>
|
|
1460
|
+
<use x="298.722656" y="88.058594" xlink:href="#gi"/>
|
|
1461
|
+
</g>
|
|
1462
|
+
<g>
|
|
1463
|
+
<use x="304.847656" y="88.058594" xlink:href="#gf"/>
|
|
1464
|
+
</g>
|
|
1465
|
+
<g>
|
|
1466
|
+
<use x="310.292969" y="88.058594" xlink:href="#gh"/>
|
|
1467
|
+
</g>
|
|
1468
|
+
<g>
|
|
1469
|
+
<use x="318.308594" y="90.15625" xlink:href="#ge"/>
|
|
1470
|
+
</g>
|
|
1471
|
+
<g>
|
|
1472
|
+
<use x="321.847656" y="88.058594" xlink:href="#gd"/>
|
|
1473
|
+
</g>
|
|
1474
|
+
<g>
|
|
1475
|
+
<use x="327.289063" y="88.058594" xlink:href="#ae"/>
|
|
1476
|
+
</g>
|
|
1477
|
+
<g>
|
|
1478
|
+
<use x="333.414063" y="88.058594" xlink:href="#gb"/>
|
|
1479
|
+
</g>
|
|
1480
|
+
<g>
|
|
1481
|
+
<use x="339.636719" y="88.058594" xlink:href="#ad"/>
|
|
1482
|
+
</g>
|
|
1483
|
+
<g>
|
|
1484
|
+
<use x="344.695313" y="88.058594" xlink:href="#gc"/>
|
|
1485
|
+
</g>
|
|
1486
|
+
<g>
|
|
1487
|
+
<use x="352.472656" y="88.058594" xlink:href="#ac"/>
|
|
1488
|
+
</g>
|
|
1489
|
+
<g>
|
|
1490
|
+
<use x="359.757813" y="88.058594" xlink:href="#ae"/>
|
|
1491
|
+
</g>
|
|
1492
|
+
<g>
|
|
1493
|
+
<use x="365.882813" y="68.316406" xlink:href="#fz"/>
|
|
1494
|
+
</g>
|
|
1495
|
+
<g>
|
|
1496
|
+
<use x="378.714844" y="88.058594" xlink:href="#ac"/>
|
|
1497
|
+
</g>
|
|
1498
|
+
<g>
|
|
1499
|
+
<use x="386.003906" y="88.058594" xlink:href="#ad"/>
|
|
1500
|
+
</g>
|
|
1501
|
+
<g>
|
|
1502
|
+
<use x="391.058594" y="67.757813" xlink:href="#o"/>
|
|
1503
|
+
</g>
|
|
1504
|
+
<g>
|
|
1505
|
+
<use x="391.058594" y="76.15625" xlink:href="#o"/>
|
|
1506
|
+
</g>
|
|
1507
|
+
<g>
|
|
1508
|
+
<use x="391.058594" y="84.558594" xlink:href="#o"/>
|
|
1509
|
+
</g>
|
|
1510
|
+
<g>
|
|
1511
|
+
<use x="391.058594" y="92.957031" xlink:href="#o"/>
|
|
1512
|
+
</g>
|
|
1513
|
+
<g>
|
|
1514
|
+
<use x="46.722656" y="133.582031" xlink:href="#fy"/>
|
|
1515
|
+
</g>
|
|
1516
|
+
<g>
|
|
1517
|
+
<use x="61.5" y="133.582031" xlink:href="#ga"/>
|
|
1518
|
+
</g>
|
|
1519
|
+
<g>
|
|
1520
|
+
<use x="71.503906" y="135.679688" xlink:href="#fx"/>
|
|
1521
|
+
</g>
|
|
1522
|
+
<g>
|
|
1523
|
+
<use x="76.40625" y="109.082031" xlink:href="#d"/>
|
|
1524
|
+
</g>
|
|
1525
|
+
<g>
|
|
1526
|
+
<use x="76.40625" y="117.480469" xlink:href="#d"/>
|
|
1527
|
+
</g>
|
|
1528
|
+
<g>
|
|
1529
|
+
<use x="76.40625" y="125.882813" xlink:href="#d"/>
|
|
1530
|
+
</g>
|
|
1531
|
+
<g>
|
|
1532
|
+
<use x="76.40625" y="134.28125" xlink:href="#d"/>
|
|
1533
|
+
</g>
|
|
1534
|
+
<g>
|
|
1535
|
+
<use x="76.40625" y="142.683594" xlink:href="#d"/>
|
|
1536
|
+
</g>
|
|
1537
|
+
<g>
|
|
1538
|
+
<use x="83.40625" y="113.28125" xlink:href="#d"/>
|
|
1539
|
+
</g>
|
|
1540
|
+
<g>
|
|
1541
|
+
<use x="83.40625" y="121.679688" xlink:href="#d"/>
|
|
1542
|
+
</g>
|
|
1543
|
+
<g>
|
|
1544
|
+
<use x="83.40625" y="130.082031" xlink:href="#d"/>
|
|
1545
|
+
</g>
|
|
1546
|
+
<g>
|
|
1547
|
+
<use x="83.40625" y="138.480469" xlink:href="#d"/>
|
|
1548
|
+
</g>
|
|
1549
|
+
<g>
|
|
1550
|
+
<use x="88.070312" y="133.582031" xlink:href="#fv"/>
|
|
1551
|
+
</g>
|
|
1552
|
+
<g>
|
|
1553
|
+
<use x="98.765625" y="114.527344" xlink:href="#fw"/>
|
|
1554
|
+
</g>
|
|
1555
|
+
<g>
|
|
1556
|
+
<use x="106.542969" y="146.128906" xlink:href="#fu"/>
|
|
1557
|
+
</g>
|
|
1558
|
+
<g>
|
|
1559
|
+
<use x="119.066406" y="117.480469" xlink:href="#r"/>
|
|
1560
|
+
</g>
|
|
1561
|
+
<g>
|
|
1562
|
+
<use x="119.066406" y="125.882813" xlink:href="#r"/>
|
|
1563
|
+
</g>
|
|
1564
|
+
<g>
|
|
1565
|
+
<use x="119.066406" y="134.28125" xlink:href="#r"/>
|
|
1566
|
+
</g>
|
|
1567
|
+
<g>
|
|
1568
|
+
<use x="125.304688" y="130.042969" xlink:href="#fm"/>
|
|
1569
|
+
</g>
|
|
1570
|
+
<g>
|
|
1571
|
+
<use x="123.734375" y="133.582031" xlink:href="#fl"/>
|
|
1572
|
+
</g>
|
|
1573
|
+
<g>
|
|
1574
|
+
<use x="133.082031" y="126.855469" xlink:href="#fk"/>
|
|
1575
|
+
</g>
|
|
1576
|
+
<g>
|
|
1577
|
+
<use x="140.703125" y="126.855469" xlink:href="#fj"/>
|
|
1578
|
+
</g>
|
|
1579
|
+
<g>
|
|
1580
|
+
<use x="145.601563" y="126.855469" xlink:href="#fi"/>
|
|
1581
|
+
</g>
|
|
1582
|
+
<g>
|
|
1583
|
+
<use x="148.324219" y="126.855469" xlink:href="#fh"/>
|
|
1584
|
+
</g>
|
|
1585
|
+
<g>
|
|
1586
|
+
<use x="133.082031" y="136.714844" xlink:href="#fg"/>
|
|
1587
|
+
</g>
|
|
1588
|
+
<g>
|
|
1589
|
+
<use x="138.261719" y="136.714844" xlink:href="#ff"/>
|
|
1590
|
+
</g>
|
|
1591
|
+
<g>
|
|
1592
|
+
<use x="140.984375" y="136.714844" xlink:href="#fe"/>
|
|
1593
|
+
</g>
|
|
1594
|
+
<g clip-path="url(#ng)">
|
|
1595
|
+
<g>
|
|
1596
|
+
<use x="153.726563" y="133.582031" xlink:href="#fd"/>
|
|
1597
|
+
</g>
|
|
1598
|
+
</g>
|
|
1599
|
+
<g>
|
|
1600
|
+
<use x="166.949219" y="135.679688" xlink:href="#ev"/>
|
|
1601
|
+
</g>
|
|
1602
|
+
<g>
|
|
1603
|
+
<use x="171.847656" y="133.582031" xlink:href="#eu"/>
|
|
1604
|
+
</g>
|
|
1605
|
+
<g>
|
|
1606
|
+
<use x="177.292969" y="133.582031" xlink:href="#et"/>
|
|
1607
|
+
</g>
|
|
1608
|
+
<g>
|
|
1609
|
+
<use x="187.402344" y="133.582031" xlink:href="#er"/>
|
|
1610
|
+
</g>
|
|
1611
|
+
<g>
|
|
1612
|
+
<use x="193.625" y="133.582031" xlink:href="#es"/>
|
|
1613
|
+
</g>
|
|
1614
|
+
<g>
|
|
1615
|
+
<use x="202.375" y="135.679688" xlink:href="#eq"/>
|
|
1616
|
+
</g>
|
|
1617
|
+
<g>
|
|
1618
|
+
<use x="207.277344" y="133.582031" xlink:href="#ep"/>
|
|
1619
|
+
</g>
|
|
1620
|
+
<g>
|
|
1621
|
+
<use x="212.71875" y="117.480469" xlink:href="#c"/>
|
|
1622
|
+
</g>
|
|
1623
|
+
<g>
|
|
1624
|
+
<use x="212.71875" y="125.882813" xlink:href="#c"/>
|
|
1625
|
+
</g>
|
|
1626
|
+
<g>
|
|
1627
|
+
<use x="212.71875" y="134.28125" xlink:href="#c"/>
|
|
1628
|
+
</g>
|
|
1629
|
+
<g>
|
|
1630
|
+
<use x="222.054688" y="113.28125" xlink:href="#c"/>
|
|
1631
|
+
</g>
|
|
1632
|
+
<g>
|
|
1633
|
+
<use x="222.054688" y="121.679688" xlink:href="#c"/>
|
|
1634
|
+
</g>
|
|
1635
|
+
<g>
|
|
1636
|
+
<use x="222.054688" y="130.082031" xlink:href="#c"/>
|
|
1637
|
+
</g>
|
|
1638
|
+
<g>
|
|
1639
|
+
<use x="222.054688" y="138.480469" xlink:href="#c"/>
|
|
1640
|
+
</g>
|
|
1641
|
+
<g>
|
|
1642
|
+
<use x="229.054688" y="117.480469" xlink:href="#c"/>
|
|
1643
|
+
</g>
|
|
1644
|
+
<g>
|
|
1645
|
+
<use x="229.054688" y="125.882813" xlink:href="#c"/>
|
|
1646
|
+
</g>
|
|
1647
|
+
<g>
|
|
1648
|
+
<use x="229.054688" y="134.28125" xlink:href="#c"/>
|
|
1649
|
+
</g>
|
|
1650
|
+
<g>
|
|
1651
|
+
<use x="233.71875" y="133.582031" xlink:href="#z"/>
|
|
1652
|
+
</g>
|
|
1653
|
+
<g>
|
|
1654
|
+
<use x="237.609375" y="133.582031" xlink:href="#eo"/>
|
|
1655
|
+
</g>
|
|
1656
|
+
<g>
|
|
1657
|
+
<use x="245.625" y="133.582031" xlink:href="#z"/>
|
|
1658
|
+
</g>
|
|
1659
|
+
<g>
|
|
1660
|
+
<use x="257.949219" y="126.5" xlink:href="#en"/>
|
|
1661
|
+
</g>
|
|
1662
|
+
<g>
|
|
1663
|
+
<use x="253.402344" y="133.582031" xlink:href="#em"/>
|
|
1664
|
+
</g>
|
|
1665
|
+
<g>
|
|
1666
|
+
<use x="271.289063" y="133.582031" xlink:href="#ee"/>
|
|
1667
|
+
</g>
|
|
1668
|
+
<g>
|
|
1669
|
+
<use x="288.769531" y="125.324219" xlink:href="#ed"/>
|
|
1670
|
+
</g>
|
|
1671
|
+
<g>
|
|
1672
|
+
<use x="286.457031" y="127.800781" xlink:href="#ec"/>
|
|
1673
|
+
</g>
|
|
1674
|
+
<g>
|
|
1675
|
+
<use x="284.511719" y="137.042969" xlink:href="#eb"/>
|
|
1676
|
+
</g>
|
|
1677
|
+
<g>
|
|
1678
|
+
<use x="294.714844" y="133.582031" xlink:href="#ea"/>
|
|
1679
|
+
</g>
|
|
1680
|
+
<g>
|
|
1681
|
+
<use x="300.160156" y="133.582031" xlink:href="#dz"/>
|
|
1682
|
+
</g>
|
|
1683
|
+
<g>
|
|
1684
|
+
<use x="310.269531" y="133.582031" xlink:href="#dy"/>
|
|
1685
|
+
</g>
|
|
1686
|
+
<g>
|
|
1687
|
+
<use x="319.019531" y="135.679688" xlink:href="#dx"/>
|
|
1688
|
+
</g>
|
|
1689
|
+
<g>
|
|
1690
|
+
<use x="323.441406" y="133.582031" xlink:href="#dw"/>
|
|
1691
|
+
</g>
|
|
1692
|
+
<g>
|
|
1693
|
+
<use x="329.664063" y="133.582031" xlink:href="#dv"/>
|
|
1694
|
+
</g>
|
|
1695
|
+
<g>
|
|
1696
|
+
<use x="339.789063" y="133.582031" xlink:href="#x"/>
|
|
1697
|
+
</g>
|
|
1698
|
+
<g>
|
|
1699
|
+
<use x="345.234375" y="117.480469" xlink:href="#e"/>
|
|
1700
|
+
</g>
|
|
1701
|
+
<g>
|
|
1702
|
+
<use x="345.234375" y="125.882813" xlink:href="#e"/>
|
|
1703
|
+
</g>
|
|
1704
|
+
<g>
|
|
1705
|
+
<use x="345.234375" y="134.28125" xlink:href="#e"/>
|
|
1706
|
+
</g>
|
|
1707
|
+
<g>
|
|
1708
|
+
<use x="352.234375" y="109.082031" xlink:href="#e"/>
|
|
1709
|
+
</g>
|
|
1710
|
+
<g>
|
|
1711
|
+
<use x="352.234375" y="117.480469" xlink:href="#e"/>
|
|
1712
|
+
</g>
|
|
1713
|
+
<g>
|
|
1714
|
+
<use x="352.234375" y="125.882813" xlink:href="#e"/>
|
|
1715
|
+
</g>
|
|
1716
|
+
<g>
|
|
1717
|
+
<use x="352.234375" y="134.28125" xlink:href="#e"/>
|
|
1718
|
+
</g>
|
|
1719
|
+
<g>
|
|
1720
|
+
<use x="352.234375" y="142.683594" xlink:href="#e"/>
|
|
1721
|
+
</g>
|
|
1722
|
+
<g>
|
|
1723
|
+
<use x="46.722656" y="163.699219" xlink:href="#dk"/>
|
|
1724
|
+
</g>
|
|
1725
|
+
<g>
|
|
1726
|
+
<use x="46.722656" y="188.335938" xlink:href="#w"/>
|
|
1727
|
+
</g>
|
|
1728
|
+
<g>
|
|
1729
|
+
<use x="46.722656" y="196.738281" xlink:href="#w"/>
|
|
1730
|
+
</g>
|
|
1731
|
+
<g>
|
|
1732
|
+
<use x="46.722656" y="205.699219" xlink:href="#dj"/>
|
|
1733
|
+
</g>
|
|
1734
|
+
<g>
|
|
1735
|
+
<use x="59.515625" y="176.65625" xlink:href="#du"/>
|
|
1736
|
+
</g>
|
|
1737
|
+
<g>
|
|
1738
|
+
<use x="85.246094" y="176.65625" xlink:href="#dt"/>
|
|
1739
|
+
</g>
|
|
1740
|
+
<g>
|
|
1741
|
+
<use x="110.058594" y="176.65625" xlink:href="#ds"/>
|
|
1742
|
+
</g>
|
|
1743
|
+
<g>
|
|
1744
|
+
<use x="134.679688" y="176.65625" xlink:href="#dr"/>
|
|
1745
|
+
</g>
|
|
1746
|
+
<g>
|
|
1747
|
+
<use x="59.714844" y="195.128906" xlink:href="#df"/>
|
|
1748
|
+
</g>
|
|
1749
|
+
<g>
|
|
1750
|
+
<use x="84.539062" y="195.128906" xlink:href="#dd"/>
|
|
1751
|
+
</g>
|
|
1752
|
+
<g>
|
|
1753
|
+
<use x="110.570313" y="195.128906" xlink:href="#dc"/>
|
|
1754
|
+
</g>
|
|
1755
|
+
<g>
|
|
1756
|
+
<use x="133.121094" y="195.128906" xlink:href="#db"/>
|
|
1757
|
+
</g>
|
|
1758
|
+
<g>
|
|
1759
|
+
<use x="58.972656" y="210.835938" xlink:href="#da"/>
|
|
1760
|
+
</g>
|
|
1761
|
+
<g>
|
|
1762
|
+
<use x="83.015625" y="210.835938" xlink:href="#cz"/>
|
|
1763
|
+
</g>
|
|
1764
|
+
<g>
|
|
1765
|
+
<use x="109.394531" y="210.835938" xlink:href="#cy"/>
|
|
1766
|
+
</g>
|
|
1767
|
+
<g>
|
|
1768
|
+
<use x="131.96875" y="210.835938" xlink:href="#cx"/>
|
|
1769
|
+
</g>
|
|
1770
|
+
<g>
|
|
1771
|
+
<use x="59.773437" y="226.542969" xlink:href="#cw"/>
|
|
1772
|
+
</g>
|
|
1773
|
+
<g>
|
|
1774
|
+
<use x="85.074219" y="226.542969" xlink:href="#cv"/>
|
|
1775
|
+
</g>
|
|
1776
|
+
<g>
|
|
1777
|
+
<use x="110.433594" y="226.542969" xlink:href="#cu"/>
|
|
1778
|
+
</g>
|
|
1779
|
+
<g>
|
|
1780
|
+
<use x="133.667969" y="226.542969" xlink:href="#ct"/>
|
|
1781
|
+
</g>
|
|
1782
|
+
<g>
|
|
1783
|
+
<use x="143.609375" y="163.699219" xlink:href="#di"/>
|
|
1784
|
+
</g>
|
|
1785
|
+
<g>
|
|
1786
|
+
<use x="143.609375" y="188.335938" xlink:href="#v"/>
|
|
1787
|
+
</g>
|
|
1788
|
+
<g>
|
|
1789
|
+
<use x="143.609375" y="196.738281" xlink:href="#v"/>
|
|
1790
|
+
</g>
|
|
1791
|
+
<g>
|
|
1792
|
+
<use x="143.609375" y="205.699219" xlink:href="#dh"/>
|
|
1793
|
+
</g>
|
|
1794
|
+
<g>
|
|
1795
|
+
<use x="172.195313" y="200.238281" xlink:href="#do"/>
|
|
1796
|
+
</g>
|
|
1797
|
+
<g>
|
|
1798
|
+
<use x="177.636719" y="200.238281" xlink:href="#dq"/>
|
|
1799
|
+
</g>
|
|
1800
|
+
<g>
|
|
1801
|
+
<use x="188.148438" y="200.238281" xlink:href="#dn"/>
|
|
1802
|
+
</g>
|
|
1803
|
+
<g>
|
|
1804
|
+
<use x="202.148438" y="200.238281" xlink:href="#dp"/>
|
|
1805
|
+
</g>
|
|
1806
|
+
<g>
|
|
1807
|
+
<use x="208.160156" y="200.238281" xlink:href="#x"/>
|
|
1808
|
+
</g>
|
|
1809
|
+
<g>
|
|
1810
|
+
<use x="214.777344" y="189.664063" xlink:href="#cs"/>
|
|
1811
|
+
</g>
|
|
1812
|
+
<path transform="matrix(14 0 0 14 -3.5608e-5 -2.1425e-5)" d="m15.341 13.648h0.30022" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".027999"/>
|
|
1813
|
+
<g>
|
|
1814
|
+
<use x="215.128906" y="196.902344" xlink:href="#cr"/>
|
|
1815
|
+
</g>
|
|
1816
|
+
<g>
|
|
1817
|
+
<use x="224.546875" y="200.238281" xlink:href="#dm"/>
|
|
1818
|
+
</g>
|
|
1819
|
+
<g>
|
|
1820
|
+
<use x="239.324219" y="170.722656" xlink:href="#dg"/>
|
|
1821
|
+
</g>
|
|
1822
|
+
<g>
|
|
1823
|
+
<use x="239.324219" y="178.421875" xlink:href="#u"/>
|
|
1824
|
+
</g>
|
|
1825
|
+
<g>
|
|
1826
|
+
<use x="239.324219" y="186.613281" xlink:href="#u"/>
|
|
1827
|
+
</g>
|
|
1828
|
+
<g>
|
|
1829
|
+
<use x="239.324219" y="194.804688" xlink:href="#dl"/>
|
|
1830
|
+
</g>
|
|
1831
|
+
<path transform="matrix(14 0 0 14 -3.5608e-5 -2.1425e-5)" d="m18.15 12.175h5.9883" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
1832
|
+
<g>
|
|
1833
|
+
<use x="261.269531" y="181.335938" xlink:href="#cq"/>
|
|
1834
|
+
</g>
|
|
1835
|
+
<g>
|
|
1836
|
+
<use x="254.101563" y="185.539063" xlink:href="#cp"/>
|
|
1837
|
+
</g>
|
|
1838
|
+
<g>
|
|
1839
|
+
<use x="255.246094" y="215.675781" xlink:href="#co"/>
|
|
1840
|
+
</g>
|
|
1841
|
+
<g>
|
|
1842
|
+
<use x="260.65625" y="215.675781" xlink:href="#cn"/>
|
|
1843
|
+
</g>
|
|
1844
|
+
<g>
|
|
1845
|
+
<use x="268.277344" y="215.675781" xlink:href="#cm"/>
|
|
1846
|
+
</g>
|
|
1847
|
+
<g>
|
|
1848
|
+
<use x="276.65625" y="188.898438" xlink:href="#ck"/>
|
|
1849
|
+
</g>
|
|
1850
|
+
<g>
|
|
1851
|
+
<use x="284.753906" y="194.027344" xlink:href="#cj"/>
|
|
1852
|
+
</g>
|
|
1853
|
+
<g>
|
|
1854
|
+
<use x="285.144531" y="205.066406" xlink:href="#ci"/>
|
|
1855
|
+
</g>
|
|
1856
|
+
<g>
|
|
1857
|
+
<use x="292.316406" y="188.898438" xlink:href="#ch"/>
|
|
1858
|
+
</g>
|
|
1859
|
+
<g>
|
|
1860
|
+
<use x="298.730469" y="200.238281" xlink:href="#cg"/>
|
|
1861
|
+
</g>
|
|
1862
|
+
<g>
|
|
1863
|
+
<use x="306.132813" y="196.191406" xlink:href="#cf"/>
|
|
1864
|
+
</g>
|
|
1865
|
+
<g>
|
|
1866
|
+
<use x="311.734375" y="200.238281" xlink:href="#ce"/>
|
|
1867
|
+
</g>
|
|
1868
|
+
<g>
|
|
1869
|
+
<use x="317.742188" y="196.191406" xlink:href="#cd"/>
|
|
1870
|
+
</g>
|
|
1871
|
+
<g>
|
|
1872
|
+
<use x="323.625" y="196.191406" xlink:href="#cc"/>
|
|
1873
|
+
</g>
|
|
1874
|
+
<g>
|
|
1875
|
+
<use x="331.246094" y="196.191406" xlink:href="#cb"/>
|
|
1876
|
+
</g>
|
|
1877
|
+
<g>
|
|
1878
|
+
<use x="351.9375" y="176.296875" xlink:href="#bz"/>
|
|
1879
|
+
</g>
|
|
1880
|
+
<g>
|
|
1881
|
+
<use x="363.019531" y="180.496094" xlink:href="#by"/>
|
|
1882
|
+
</g>
|
|
1883
|
+
<g>
|
|
1884
|
+
<use x="373.324219" y="184.699219" xlink:href="#bx"/>
|
|
1885
|
+
</g>
|
|
1886
|
+
<g>
|
|
1887
|
+
<use x="381.6875" y="188.898438" xlink:href="#bw"/>
|
|
1888
|
+
</g>
|
|
1889
|
+
<g>
|
|
1890
|
+
<use x="388.101563" y="200.238281" xlink:href="#br"/>
|
|
1891
|
+
</g>
|
|
1892
|
+
<g>
|
|
1893
|
+
<use x="393.546875" y="200.238281" xlink:href="#bq"/>
|
|
1894
|
+
</g>
|
|
1895
|
+
<g>
|
|
1896
|
+
<use x="398.992188" y="188.898438" xlink:href="#bv"/>
|
|
1897
|
+
</g>
|
|
1898
|
+
<g>
|
|
1899
|
+
<use x="405.40625" y="184.699219" xlink:href="#bu"/>
|
|
1900
|
+
</g>
|
|
1901
|
+
<g>
|
|
1902
|
+
<use x="413.769531" y="180.496094" xlink:href="#bt"/>
|
|
1903
|
+
</g>
|
|
1904
|
+
<g>
|
|
1905
|
+
<use x="424.074219" y="176.296875" xlink:href="#bs"/>
|
|
1906
|
+
</g>
|
|
1907
|
+
<g>
|
|
1908
|
+
<use x="46.722656" y="246.867188" xlink:href="#bp"/>
|
|
1909
|
+
</g>
|
|
1910
|
+
<g>
|
|
1911
|
+
<use x="54.5" y="246.867188" xlink:href="#bn"/>
|
|
1912
|
+
</g>
|
|
1913
|
+
<g>
|
|
1914
|
+
<use x="64.917969" y="246.867188" xlink:href="#bo"/>
|
|
1915
|
+
</g>
|
|
1916
|
+
<g>
|
|
1917
|
+
<use x="78.136719" y="246.867188" xlink:href="#bm"/>
|
|
1918
|
+
</g>
|
|
1919
|
+
<g>
|
|
1920
|
+
<use x="88.25" y="241.003906" xlink:href="#bl"/>
|
|
1921
|
+
</g>
|
|
1922
|
+
<g>
|
|
1923
|
+
<use x="88.25" y="250.667969" xlink:href="#bk"/>
|
|
1924
|
+
</g>
|
|
1925
|
+
<g>
|
|
1926
|
+
<use x="101.039062" y="246.867188" xlink:href="#bj"/>
|
|
1927
|
+
</g>
|
|
1928
|
+
<g>
|
|
1929
|
+
<use x="108.816406" y="246.867188" xlink:href="#bg"/>
|
|
1930
|
+
</g>
|
|
1931
|
+
<g>
|
|
1932
|
+
<use x="119.65625" y="246.867188" xlink:href="#bf"/>
|
|
1933
|
+
</g>
|
|
1934
|
+
<g>
|
|
1935
|
+
<use x="134.433594" y="246.867188" xlink:href="#be"/>
|
|
1936
|
+
</g>
|
|
1937
|
+
<g>
|
|
1938
|
+
<use x="146.101562" y="246.867188" xlink:href="#bi"/>
|
|
1939
|
+
</g>
|
|
1940
|
+
<g>
|
|
1941
|
+
<use x="149.988281" y="246.867188" xlink:href="#t"/>
|
|
1942
|
+
</g>
|
|
1943
|
+
<g>
|
|
1944
|
+
<use x="161.101563" y="246.867188" xlink:href="#bh"/>
|
|
1945
|
+
</g>
|
|
1946
|
+
<g>
|
|
1947
|
+
<use x="175.101563" y="246.867188" xlink:href="#t"/>
|
|
1948
|
+
</g>
|
|
1949
|
+
<g>
|
|
1950
|
+
<use x="183.105469" y="248.964844" xlink:href="#nc"/>
|
|
1951
|
+
</g>
|
|
1952
|
+
<g>
|
|
1953
|
+
<use x="188.003906" y="246.867188" xlink:href="#bd"/>
|
|
1954
|
+
</g>
|
|
1955
|
+
<g>
|
|
1956
|
+
<use x="195.78125" y="246.867188" xlink:href="#nb"/>
|
|
1957
|
+
</g>
|
|
1958
|
+
<g>
|
|
1959
|
+
<use x="210.558594" y="246.867188" xlink:href="#my"/>
|
|
1960
|
+
</g>
|
|
1961
|
+
<g>
|
|
1962
|
+
<use x="221.398438" y="246.867188" xlink:href="#mx"/>
|
|
1963
|
+
</g>
|
|
1964
|
+
<g>
|
|
1965
|
+
<use x="230.265625" y="246.867188" xlink:href="#na"/>
|
|
1966
|
+
</g>
|
|
1967
|
+
<g>
|
|
1968
|
+
<use x="248.15625" y="246.867188" xlink:href="#bd"/>
|
|
1969
|
+
</g>
|
|
1970
|
+
<g>
|
|
1971
|
+
<use x="252.042969" y="246.867188" xlink:href="#bc"/>
|
|
1972
|
+
</g>
|
|
1973
|
+
<g>
|
|
1974
|
+
<use x="260.40625" y="246.867188" xlink:href="#ba"/>
|
|
1975
|
+
</g>
|
|
1976
|
+
<g>
|
|
1977
|
+
<use x="265.851563" y="246.867188" xlink:href="#bb"/>
|
|
1978
|
+
</g>
|
|
1979
|
+
<g>
|
|
1980
|
+
<use x="273.851563" y="246.867188" xlink:href="#mw"/>
|
|
1981
|
+
</g>
|
|
1982
|
+
<g>
|
|
1983
|
+
<use x="282.40625" y="246.867188" xlink:href="#mz"/>
|
|
1984
|
+
</g>
|
|
1985
|
+
<g>
|
|
1986
|
+
<use x="296.40625" y="246.867188" xlink:href="#bc"/>
|
|
1987
|
+
</g>
|
|
1988
|
+
<g>
|
|
1989
|
+
<use x="304.769531" y="246.867188" xlink:href="#ba"/>
|
|
1990
|
+
</g>
|
|
1991
|
+
<g>
|
|
1992
|
+
<use x="310.210938" y="246.867188" xlink:href="#bb"/>
|
|
1993
|
+
</g>
|
|
1994
|
+
<g>
|
|
1995
|
+
<use x="318.214844" y="248.964844" xlink:href="#mv"/>
|
|
1996
|
+
</g>
|
|
1997
|
+
<g>
|
|
1998
|
+
<use x="323.113281" y="246.867188" xlink:href="#mu"/>
|
|
1999
|
+
</g>
|
|
2000
|
+
<g>
|
|
2001
|
+
<use x="328.558594" y="246.867188" xlink:href="#mq"/>
|
|
2002
|
+
</g>
|
|
2003
|
+
<g>
|
|
2004
|
+
<use x="336.335938" y="246.867188" xlink:href="#mp"/>
|
|
2005
|
+
</g>
|
|
2006
|
+
<g>
|
|
2007
|
+
<use x="351.113281" y="246.867188" xlink:href="#mo"/>
|
|
2008
|
+
</g>
|
|
2009
|
+
<g>
|
|
2010
|
+
<use x="46.722656" y="294.273438" xlink:href="#mt"/>
|
|
2011
|
+
</g>
|
|
2012
|
+
<g>
|
|
2013
|
+
<use x="54.5" y="294.273438" xlink:href="#ms"/>
|
|
2014
|
+
</g>
|
|
2015
|
+
<g>
|
|
2016
|
+
<use x="60.722656" y="294.273438" xlink:href="#mr"/>
|
|
2017
|
+
</g>
|
|
2018
|
+
<g>
|
|
2019
|
+
<use x="68.5" y="257.730469" xlink:href="#mm"/>
|
|
2020
|
+
</g>
|
|
2021
|
+
<g>
|
|
2022
|
+
<use x="68.5" y="282.371094" xlink:href="#az"/>
|
|
2023
|
+
</g>
|
|
2024
|
+
<g>
|
|
2025
|
+
<use x="68.5" y="290.773438" xlink:href="#az"/>
|
|
2026
|
+
</g>
|
|
2027
|
+
<g>
|
|
2028
|
+
<use x="68.5" y="299.730469" xlink:href="#ml"/>
|
|
2029
|
+
</g>
|
|
2030
|
+
<g>
|
|
2031
|
+
<use x="78.324219" y="267.925781" xlink:href="#mn"/>
|
|
2032
|
+
</g>
|
|
2033
|
+
<g>
|
|
2034
|
+
<use x="85.722656" y="270.023438" xlink:href="#mk"/>
|
|
2035
|
+
</g>
|
|
2036
|
+
<g>
|
|
2037
|
+
<use x="90.625" y="270.023438" xlink:href="#mi"/>
|
|
2038
|
+
</g>
|
|
2039
|
+
<g>
|
|
2040
|
+
<use x="110.015625" y="267.925781" xlink:href="#mh"/>
|
|
2041
|
+
</g>
|
|
2042
|
+
<g>
|
|
2043
|
+
<use x="117.414062" y="270.023438" xlink:href="#mg"/>
|
|
2044
|
+
</g>
|
|
2045
|
+
<g>
|
|
2046
|
+
<use x="122.316406" y="270.023438" xlink:href="#mf"/>
|
|
2047
|
+
</g>
|
|
2048
|
+
<g>
|
|
2049
|
+
<use x="141.214844" y="267.925781" xlink:href="#s"/>
|
|
2050
|
+
</g>
|
|
2051
|
+
<g>
|
|
2052
|
+
<use x="147.4375" y="267.925781" xlink:href="#s"/>
|
|
2053
|
+
</g>
|
|
2054
|
+
<g>
|
|
2055
|
+
<use x="153.660156" y="267.925781" xlink:href="#s"/>
|
|
2056
|
+
</g>
|
|
2057
|
+
<g>
|
|
2058
|
+
<use x="172.039063" y="267.925781" xlink:href="#me"/>
|
|
2059
|
+
</g>
|
|
2060
|
+
<g>
|
|
2061
|
+
<use x="179.441406" y="270.023438" xlink:href="#md"/>
|
|
2062
|
+
</g>
|
|
2063
|
+
<g>
|
|
2064
|
+
<use x="184.339844" y="270.023438" xlink:href="#mc"/>
|
|
2065
|
+
</g>
|
|
2066
|
+
<g>
|
|
2067
|
+
<use x="78.324219" y="286.707031" xlink:href="#mb"/>
|
|
2068
|
+
</g>
|
|
2069
|
+
<g>
|
|
2070
|
+
<use x="85.722656" y="288.808594" xlink:href="#ma"/>
|
|
2071
|
+
</g>
|
|
2072
|
+
<g>
|
|
2073
|
+
<use x="90.625" y="288.808594" xlink:href="#ly"/>
|
|
2074
|
+
</g>
|
|
2075
|
+
<g>
|
|
2076
|
+
<use x="110.449219" y="277.53125" xlink:href="#a"/>
|
|
2077
|
+
</g>
|
|
2078
|
+
<g>
|
|
2079
|
+
<use x="116.671875" y="282.117188" xlink:href="#a"/>
|
|
2080
|
+
</g>
|
|
2081
|
+
<g>
|
|
2082
|
+
<use x="122.894531" y="286.707031" xlink:href="#a"/>
|
|
2083
|
+
</g>
|
|
2084
|
+
<g>
|
|
2085
|
+
<use x="179.1875" y="277.53125" xlink:href="#a"/>
|
|
2086
|
+
</g>
|
|
2087
|
+
<g>
|
|
2088
|
+
<use x="179.1875" y="282.117188" xlink:href="#a"/>
|
|
2089
|
+
</g>
|
|
2090
|
+
<g>
|
|
2091
|
+
<use x="179.1875" y="286.707031" xlink:href="#a"/>
|
|
2092
|
+
</g>
|
|
2093
|
+
<g>
|
|
2094
|
+
<use x="84.980469" y="296.3125" xlink:href="#a"/>
|
|
2095
|
+
</g>
|
|
2096
|
+
<g>
|
|
2097
|
+
<use x="84.980469" y="300.902344" xlink:href="#a"/>
|
|
2098
|
+
</g>
|
|
2099
|
+
<g>
|
|
2100
|
+
<use x="84.980469" y="305.492188" xlink:href="#a"/>
|
|
2101
|
+
</g>
|
|
2102
|
+
<g>
|
|
2103
|
+
<use x="141.214844" y="296.3125" xlink:href="#a"/>
|
|
2104
|
+
</g>
|
|
2105
|
+
<g>
|
|
2106
|
+
<use x="147.4375" y="300.902344" xlink:href="#a"/>
|
|
2107
|
+
</g>
|
|
2108
|
+
<g>
|
|
2109
|
+
<use x="153.660156" y="305.492188" xlink:href="#a"/>
|
|
2110
|
+
</g>
|
|
2111
|
+
<g>
|
|
2112
|
+
<use x="179.1875" y="296.3125" xlink:href="#a"/>
|
|
2113
|
+
</g>
|
|
2114
|
+
<g>
|
|
2115
|
+
<use x="179.1875" y="300.902344" xlink:href="#a"/>
|
|
2116
|
+
</g>
|
|
2117
|
+
<g>
|
|
2118
|
+
<use x="179.1875" y="305.492188" xlink:href="#a"/>
|
|
2119
|
+
</g>
|
|
2120
|
+
<g>
|
|
2121
|
+
<use x="77.832031" y="317.742188" xlink:href="#lx"/>
|
|
2122
|
+
</g>
|
|
2123
|
+
<g>
|
|
2124
|
+
<use x="85.230469" y="319.839844" xlink:href="#lw"/>
|
|
2125
|
+
</g>
|
|
2126
|
+
<g>
|
|
2127
|
+
<use x="91.113281" y="319.839844" xlink:href="#lv"/>
|
|
2128
|
+
</g>
|
|
2129
|
+
<g>
|
|
2130
|
+
<use x="110.449219" y="317.742188" xlink:href="#j"/>
|
|
2131
|
+
</g>
|
|
2132
|
+
<g>
|
|
2133
|
+
<use x="116.671875" y="317.742188" xlink:href="#j"/>
|
|
2134
|
+
</g>
|
|
2135
|
+
<g>
|
|
2136
|
+
<use x="122.894531" y="317.742188" xlink:href="#j"/>
|
|
2137
|
+
</g>
|
|
2138
|
+
<g>
|
|
2139
|
+
<use x="141.214844" y="317.742188" xlink:href="#j"/>
|
|
2140
|
+
</g>
|
|
2141
|
+
<g>
|
|
2142
|
+
<use x="147.4375" y="317.742188" xlink:href="#j"/>
|
|
2143
|
+
</g>
|
|
2144
|
+
<g>
|
|
2145
|
+
<use x="153.660156" y="317.742188" xlink:href="#j"/>
|
|
2146
|
+
</g>
|
|
2147
|
+
<g>
|
|
2148
|
+
<use x="171.546875" y="317.742188" xlink:href="#lu"/>
|
|
2149
|
+
</g>
|
|
2150
|
+
<g>
|
|
2151
|
+
<use x="178.949219" y="319.839844" xlink:href="#lt"/>
|
|
2152
|
+
</g>
|
|
2153
|
+
<g>
|
|
2154
|
+
<use x="184.832031" y="319.839844" xlink:href="#ls"/>
|
|
2155
|
+
</g>
|
|
2156
|
+
<g>
|
|
2157
|
+
<use x="190.714844" y="257.730469" xlink:href="#lr"/>
|
|
2158
|
+
</g>
|
|
2159
|
+
<g>
|
|
2160
|
+
<use x="190.714844" y="282.371094" xlink:href="#ay"/>
|
|
2161
|
+
</g>
|
|
2162
|
+
<g>
|
|
2163
|
+
<use x="190.714844" y="290.773438" xlink:href="#ay"/>
|
|
2164
|
+
</g>
|
|
2165
|
+
<g>
|
|
2166
|
+
<use x="190.714844" y="299.730469" xlink:href="#lq"/>
|
|
2167
|
+
</g>
|
|
2168
|
+
<g>
|
|
2169
|
+
<use x="203.933594" y="287.191406" xlink:href="#lp"/>
|
|
2170
|
+
</g>
|
|
2171
|
+
<g>
|
|
2172
|
+
<use x="209.378906" y="287.191406" xlink:href="#ln"/>
|
|
2173
|
+
</g>
|
|
2174
|
+
<g>
|
|
2175
|
+
<use x="213.734375" y="287.191406" xlink:href="#lm"/>
|
|
2176
|
+
</g>
|
|
2177
|
+
<g>
|
|
2178
|
+
<use x="205.269531" y="294.273438" xlink:href="#ll"/>
|
|
2179
|
+
</g>
|
|
2180
|
+
<g>
|
|
2181
|
+
<use x="223.496094" y="279.570313" xlink:href="#lk"/>
|
|
2182
|
+
</g>
|
|
2183
|
+
<g>
|
|
2184
|
+
<use x="221.382813" y="309.679688" xlink:href="#lj"/>
|
|
2185
|
+
</g>
|
|
2186
|
+
<g>
|
|
2187
|
+
<use x="226.980469" y="309.679688" xlink:href="#li"/>
|
|
2188
|
+
</g>
|
|
2189
|
+
<g>
|
|
2190
|
+
<use x="233.515625" y="309.679688" xlink:href="#lh"/>
|
|
2191
|
+
</g>
|
|
2192
|
+
<g>
|
|
2193
|
+
<use x="241.632813" y="311.152344" xlink:href="#lg"/>
|
|
2194
|
+
</g>
|
|
2195
|
+
<g>
|
|
2196
|
+
<use x="248.167969" y="294.273438" xlink:href="#lf"/>
|
|
2197
|
+
</g>
|
|
2198
|
+
<g>
|
|
2199
|
+
<use x="254.699219" y="294.273438" xlink:href="#ld"/>
|
|
2200
|
+
</g>
|
|
2201
|
+
<g>
|
|
2202
|
+
<use x="260.144531" y="294.273438" xlink:href="#le"/>
|
|
2203
|
+
</g>
|
|
2204
|
+
<g>
|
|
2205
|
+
<use x="268.140625" y="294.273438" xlink:href="#lc"/>
|
|
2206
|
+
</g>
|
|
2207
|
+
<g>
|
|
2208
|
+
<use x="281.945313" y="275.371094" xlink:href="#la"/>
|
|
2209
|
+
</g>
|
|
2210
|
+
<g>
|
|
2211
|
+
<use x="275.941406" y="279.570313" xlink:href="#kz"/>
|
|
2212
|
+
</g>
|
|
2213
|
+
<g>
|
|
2214
|
+
<use x="275.921875" y="309.710938" xlink:href="#ky"/>
|
|
2215
|
+
</g>
|
|
2216
|
+
<g>
|
|
2217
|
+
<use x="281.332031" y="309.710938" xlink:href="#kx"/>
|
|
2218
|
+
</g>
|
|
2219
|
+
<g>
|
|
2220
|
+
<use x="288.953125" y="309.710938" xlink:href="#kw"/>
|
|
2221
|
+
</g>
|
|
2222
|
+
<g>
|
|
2223
|
+
<use x="296.1875" y="294.273438" xlink:href="#kv"/>
|
|
2224
|
+
</g>
|
|
2225
|
+
<g>
|
|
2226
|
+
<use x="303.585938" y="296.800781" xlink:href="#ku"/>
|
|
2227
|
+
</g>
|
|
2228
|
+
<g>
|
|
2229
|
+
<use x="308.996094" y="296.800781" xlink:href="#kt"/>
|
|
2230
|
+
</g>
|
|
2231
|
+
<g>
|
|
2232
|
+
<use x="314.597656" y="296.800781" xlink:href="#ks"/>
|
|
2233
|
+
</g>
|
|
2234
|
+
<g>
|
|
2235
|
+
<use x="318.40625" y="296.800781" xlink:href="#kr"/>
|
|
2236
|
+
</g>
|
|
2237
|
+
<g>
|
|
2238
|
+
<use x="323.820313" y="296.800781" xlink:href="#km"/>
|
|
2239
|
+
</g>
|
|
2240
|
+
<g>
|
|
2241
|
+
<use x="46.722656" y="356.59375" xlink:href="#kl"/>
|
|
2242
|
+
</g>
|
|
2243
|
+
<g>
|
|
2244
|
+
<use x="58.386719" y="356.59375" xlink:href="#kh"/>
|
|
2245
|
+
</g>
|
|
2246
|
+
<g>
|
|
2247
|
+
<use x="66.75" y="356.59375" xlink:href="#kk"/>
|
|
2248
|
+
</g>
|
|
2249
|
+
<g>
|
|
2250
|
+
<use x="72.191406" y="356.59375" xlink:href="#kg"/>
|
|
2251
|
+
</g>
|
|
2252
|
+
<g>
|
|
2253
|
+
<use x="80.195312" y="356.59375" xlink:href="#kf"/>
|
|
2254
|
+
</g>
|
|
2255
|
+
<g>
|
|
2256
|
+
<use x="86.417969" y="356.59375" xlink:href="#ke"/>
|
|
2257
|
+
</g>
|
|
2258
|
+
<g>
|
|
2259
|
+
<use x="93.78125" y="356.59375" xlink:href="#kj"/>
|
|
2260
|
+
</g>
|
|
2261
|
+
<g>
|
|
2262
|
+
<use x="103.117187" y="356.59375" xlink:href="#ki"/>
|
|
2263
|
+
</g>
|
|
2264
|
+
<g>
|
|
2265
|
+
<use x="119.574219" y="347.125" xlink:href="#kd"/>
|
|
2266
|
+
</g>
|
|
2267
|
+
<g>
|
|
2268
|
+
<use x="127.785156" y="342.042969" xlink:href="#kc"/>
|
|
2269
|
+
</g>
|
|
2270
|
+
<g>
|
|
2271
|
+
<use x="133.183594" y="347.125" xlink:href="#kb"/>
|
|
2272
|
+
</g>
|
|
2273
|
+
<path transform="matrix(14 0 0 14 -9.8295e-5 -9.8401e-5)" d="m8.541 25.221h1.5695" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
2274
|
+
<g>
|
|
2275
|
+
<use x="120.144531" y="366.199219" xlink:href="#ka"/>
|
|
2276
|
+
</g>
|
|
2277
|
+
<g>
|
|
2278
|
+
<use x="127.574219" y="366.199219" xlink:href="#jz"/>
|
|
2279
|
+
</g>
|
|
2280
|
+
<g>
|
|
2281
|
+
<use x="135.578125" y="362.15625" xlink:href="#jy"/>
|
|
2282
|
+
</g>
|
|
2283
|
+
<g>
|
|
2284
|
+
<use x="146.335938" y="356.59375" xlink:href="#jx"/>
|
|
2285
|
+
</g>
|
|
2286
|
+
<g>
|
|
2287
|
+
<use x="162.015625" y="347.125" xlink:href="#jw"/>
|
|
2288
|
+
</g>
|
|
2289
|
+
<g>
|
|
2290
|
+
<use x="170.226563" y="342.042969" xlink:href="#jv"/>
|
|
2291
|
+
</g>
|
|
2292
|
+
<g>
|
|
2293
|
+
<use x="175.628906" y="347.125" xlink:href="#ju"/>
|
|
2294
|
+
</g>
|
|
2295
|
+
<path transform="matrix(14 0 0 14 -.00010038 -.0001032)" d="m11.573 25.221h1.5695" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
2296
|
+
<g>
|
|
2297
|
+
<use x="162.902344" y="366.199219" xlink:href="#jt"/>
|
|
2298
|
+
</g>
|
|
2299
|
+
<g>
|
|
2300
|
+
<use x="170.335938" y="366.199219" xlink:href="#js"/>
|
|
2301
|
+
</g>
|
|
2302
|
+
<g>
|
|
2303
|
+
<use x="177.703125" y="362.15625" xlink:href="#jr"/>
|
|
2304
|
+
</g>
|
|
2305
|
+
<path transform="matrix(14 0 0 14 -.00010159 -.00010566)" d="m17.282 23.62h10.355v3.207h-10.355z" fill="#e5e5e5" stroke="#000" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
2306
|
+
<g>
|
|
2307
|
+
<use x="251.328125" y="356.59375" xlink:href="#jq"/>
|
|
2308
|
+
</g>
|
|
2309
|
+
<g>
|
|
2310
|
+
<use x="259.730469" y="356.59375" xlink:href="#jp"/>
|
|
2311
|
+
</g>
|
|
2312
|
+
<g>
|
|
2313
|
+
<use x="278.617188" y="356.59375" xlink:href="#jo"/>
|
|
2314
|
+
</g>
|
|
2315
|
+
<g>
|
|
2316
|
+
<use x="267.511719" y="362.699219" xlink:href="#jn"/>
|
|
2317
|
+
</g>
|
|
2318
|
+
<g>
|
|
2319
|
+
<use x="273.390625" y="362.699219" xlink:href="#jm"/>
|
|
2320
|
+
</g>
|
|
2321
|
+
<g>
|
|
2322
|
+
<use x="283.191406" y="362.699219" xlink:href="#jl"/>
|
|
2323
|
+
</g>
|
|
2324
|
+
<g>
|
|
2325
|
+
<use x="290.8125" y="362.699219" xlink:href="#jk"/>
|
|
2326
|
+
</g>
|
|
2327
|
+
<g>
|
|
2328
|
+
<use x="304.503906" y="341.054688" xlink:href="#jj"/>
|
|
2329
|
+
</g>
|
|
2330
|
+
<g>
|
|
2331
|
+
<use x="314.542969" y="347.125" xlink:href="#jh"/>
|
|
2332
|
+
</g>
|
|
2333
|
+
<path transform="matrix(14 0 0 14 -.00010918 -.00011555)" d="m22.467 25.221h0.60045" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
2334
|
+
<g>
|
|
2335
|
+
<use x="315.488281" y="366.199219" xlink:href="#jg"/>
|
|
2336
|
+
</g>
|
|
2337
|
+
<g>
|
|
2338
|
+
<use x="324.628906" y="341.054688" xlink:href="#ji"/>
|
|
2339
|
+
</g>
|
|
2340
|
+
<g>
|
|
2341
|
+
<use x="332.988281" y="344.277344" xlink:href="#jd"/>
|
|
2342
|
+
</g>
|
|
2343
|
+
<g>
|
|
2344
|
+
<use x="341.703125" y="344.332031" xlink:href="#jc"/>
|
|
2345
|
+
</g>
|
|
2346
|
+
<path transform="matrix(14 0 0 14 -.00011145 -.00011789)" d="m25.241 24.575h1.7257" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
2347
|
+
<g>
|
|
2348
|
+
<use x="353.371094" y="356.59375" xlink:href="#jb"/>
|
|
2349
|
+
</g>
|
|
2350
|
+
<g>
|
|
2351
|
+
<use x="360.371094" y="356.59375" xlink:href="#ja"/>
|
|
2352
|
+
</g>
|
|
2353
|
+
<g>
|
|
2354
|
+
<use x="368.351563" y="356.59375" xlink:href="#iz"/>
|
|
2355
|
+
</g>
|
|
2356
|
+
<g>
|
|
2357
|
+
<use x="47.445312" y="388.691406" xlink:href="#iy"/>
|
|
2358
|
+
</g>
|
|
2359
|
+
<g>
|
|
2360
|
+
<use x="46.722656" y="419" xlink:href="#ix"/>
|
|
2361
|
+
</g>
|
|
2362
|
+
<g>
|
|
2363
|
+
<use x="53.488281" y="385.46875" xlink:href="#iw"/>
|
|
2364
|
+
</g>
|
|
2365
|
+
<g>
|
|
2366
|
+
<use x="63.796875" y="398.695313" xlink:href="#iu"/>
|
|
2367
|
+
</g>
|
|
2368
|
+
<g>
|
|
2369
|
+
<use x="85.835937" y="398.695313" xlink:href="#it"/>
|
|
2370
|
+
</g>
|
|
2371
|
+
<g>
|
|
2372
|
+
<use x="64.464844" y="414.445313" xlink:href="#is"/>
|
|
2373
|
+
</g>
|
|
2374
|
+
<g>
|
|
2375
|
+
<use x="85.195312" y="414.445313" xlink:href="#ir"/>
|
|
2376
|
+
</g>
|
|
2377
|
+
<g>
|
|
2378
|
+
<use x="92.484375" y="385.46875" xlink:href="#iv"/>
|
|
2379
|
+
</g>
|
|
2380
|
+
<g>
|
|
2381
|
+
<use x="102.789062" y="388.691406" xlink:href="#iq"/>
|
|
2382
|
+
</g>
|
|
2383
|
+
<g>
|
|
2384
|
+
<use x="102.789062" y="419" xlink:href="#ip"/>
|
|
2385
|
+
</g>
|
|
2386
|
+
<g>
|
|
2387
|
+
<use x="126.949219" y="397.542969" xlink:href="#in"/>
|
|
2388
|
+
</g>
|
|
2389
|
+
<g>
|
|
2390
|
+
<use x="132.832031" y="397.542969" xlink:href="#im"/>
|
|
2391
|
+
</g>
|
|
2392
|
+
<g>
|
|
2393
|
+
<use x="140.457031" y="397.542969" xlink:href="#il"/>
|
|
2394
|
+
</g>
|
|
2395
|
+
<g>
|
|
2396
|
+
<use x="143.832031" y="397.542969" xlink:href="#ik"/>
|
|
2397
|
+
</g>
|
|
2398
|
+
<g>
|
|
2399
|
+
<use x="151.453125" y="397.542969" xlink:href="#ij"/>
|
|
2400
|
+
</g>
|
|
2401
|
+
<g>
|
|
2402
|
+
<use x="112.25" y="406.140625" xlink:href="#i"/>
|
|
2403
|
+
</g>
|
|
2404
|
+
<g>
|
|
2405
|
+
<use x="120.027344" y="406.140625" xlink:href="#i"/>
|
|
2406
|
+
</g>
|
|
2407
|
+
<g>
|
|
2408
|
+
<use x="127.804687" y="406.140625" xlink:href="#i"/>
|
|
2409
|
+
</g>
|
|
2410
|
+
<g>
|
|
2411
|
+
<use x="135.585937" y="406.140625" xlink:href="#i"/>
|
|
2412
|
+
</g>
|
|
2413
|
+
<g>
|
|
2414
|
+
<use x="143.363281" y="406.140625" xlink:href="#i"/>
|
|
2415
|
+
</g>
|
|
2416
|
+
<g>
|
|
2417
|
+
<use x="151.140625" y="406.140625" xlink:href="#i"/>
|
|
2418
|
+
</g>
|
|
2419
|
+
<g>
|
|
2420
|
+
<use x="158.78125" y="406.140625" xlink:href="#ii"/>
|
|
2421
|
+
</g>
|
|
2422
|
+
<g>
|
|
2423
|
+
<use x="158.035156" y="406.140625" xlink:href="#ih"/>
|
|
2424
|
+
</g>
|
|
2425
|
+
<g>
|
|
2426
|
+
<use x="138.636719" y="413.460938" xlink:href="#ig"/>
|
|
2427
|
+
</g>
|
|
2428
|
+
<g>
|
|
2429
|
+
<use x="175.925781" y="399.425781" xlink:href="#if"/>
|
|
2430
|
+
</g>
|
|
2431
|
+
<g>
|
|
2432
|
+
<use x="179.964844" y="405.207031" xlink:href="#id"/>
|
|
2433
|
+
</g>
|
|
2434
|
+
<g>
|
|
2435
|
+
<use x="209.054688" y="395.882813" xlink:href="#ic"/>
|
|
2436
|
+
</g>
|
|
2437
|
+
<g>
|
|
2438
|
+
<use x="211.148438" y="399.449219" xlink:href="#ib"/>
|
|
2439
|
+
</g>
|
|
2440
|
+
<g>
|
|
2441
|
+
<use x="218.851563" y="399.449219" xlink:href="#ia"/>
|
|
2442
|
+
</g>
|
|
2443
|
+
<g>
|
|
2444
|
+
<use x="225.386719" y="395.882813" xlink:href="#hz"/>
|
|
2445
|
+
</g>
|
|
2446
|
+
<g>
|
|
2447
|
+
<use x="227.910156" y="399.449219" xlink:href="#hy"/>
|
|
2448
|
+
</g>
|
|
2449
|
+
<g>
|
|
2450
|
+
<use x="194.351563" y="406.140625" xlink:href="#hx"/>
|
|
2451
|
+
</g>
|
|
2452
|
+
<g>
|
|
2453
|
+
<use x="205.632813" y="406.140625" xlink:href="#k"/>
|
|
2454
|
+
</g>
|
|
2455
|
+
<g>
|
|
2456
|
+
<use x="213.410156" y="406.140625" xlink:href="#k"/>
|
|
2457
|
+
</g>
|
|
2458
|
+
<g>
|
|
2459
|
+
<use x="221.1875" y="406.140625" xlink:href="#k"/>
|
|
2460
|
+
</g>
|
|
2461
|
+
<g>
|
|
2462
|
+
<use x="228.964844" y="406.140625" xlink:href="#k"/>
|
|
2463
|
+
</g>
|
|
2464
|
+
<g>
|
|
2465
|
+
<use x="236.742188" y="406.140625" xlink:href="#k"/>
|
|
2466
|
+
</g>
|
|
2467
|
+
<g>
|
|
2468
|
+
<use x="243.699219" y="406.140625" xlink:href="#hw"/>
|
|
2469
|
+
</g>
|
|
2470
|
+
<g>
|
|
2471
|
+
<use x="251.441406" y="386.152344" xlink:href="#au"/>
|
|
2472
|
+
</g>
|
|
2473
|
+
<g>
|
|
2474
|
+
<use x="261.554688" y="386.152344" xlink:href="#au"/>
|
|
2475
|
+
</g>
|
|
2476
|
+
<g>
|
|
2477
|
+
<use x="269.332031" y="417.753906" xlink:href="#hv"/>
|
|
2478
|
+
</g>
|
|
2479
|
+
<g>
|
|
2480
|
+
<use x="277.089844" y="413.761719" xlink:href="#hq"/>
|
|
2481
|
+
</g>
|
|
2482
|
+
<g>
|
|
2483
|
+
<use x="286.535156" y="405.207031" xlink:href="#hp"/>
|
|
2484
|
+
</g>
|
|
2485
|
+
<g>
|
|
2486
|
+
<use x="293.054688" y="399.429688" xlink:href="#ho"/>
|
|
2487
|
+
</g>
|
|
2488
|
+
<g>
|
|
2489
|
+
<use x="300.675781" y="391.488281" xlink:href="#hn"/>
|
|
2490
|
+
</g>
|
|
2491
|
+
<g>
|
|
2492
|
+
<use x="305.167969" y="399.429688" xlink:href="#hm"/>
|
|
2493
|
+
</g>
|
|
2494
|
+
<g>
|
|
2495
|
+
<use x="310.769531" y="395.871094" xlink:href="#hl"/>
|
|
2496
|
+
</g>
|
|
2497
|
+
<g>
|
|
2498
|
+
<use x="314.769531" y="399.429688" xlink:href="#hk"/>
|
|
2499
|
+
</g>
|
|
2500
|
+
<g>
|
|
2501
|
+
<use x="322.390625" y="399.429688" xlink:href="#hj"/>
|
|
2502
|
+
</g>
|
|
2503
|
+
<g>
|
|
2504
|
+
<use x="327.546875" y="395.871094" xlink:href="#hi"/>
|
|
2505
|
+
</g>
|
|
2506
|
+
<g>
|
|
2507
|
+
<use x="331.546875" y="391.488281" xlink:href="#hh"/>
|
|
2508
|
+
</g>
|
|
2509
|
+
<g>
|
|
2510
|
+
<use x="338.871094" y="405.207031" xlink:href="#at"/>
|
|
2511
|
+
</g>
|
|
2512
|
+
<g>
|
|
2513
|
+
<use x="346.648438" y="405.207031" xlink:href="#hf"/>
|
|
2514
|
+
</g>
|
|
2515
|
+
<g>
|
|
2516
|
+
<use x="354.652344" y="405.207031" xlink:href="#at"/>
|
|
2517
|
+
</g>
|
|
2518
|
+
<g>
|
|
2519
|
+
<use x="362.429688" y="405.207031" xlink:href="#he"/>
|
|
2520
|
+
</g>
|
|
2521
|
+
<g>
|
|
2522
|
+
<use x="251.441406" y="423.667969" xlink:href="#hd"/>
|
|
2523
|
+
</g>
|
|
2524
|
+
<g>
|
|
2525
|
+
<use x="262.796875" y="423.667969" xlink:href="#b"/>
|
|
2526
|
+
</g>
|
|
2527
|
+
<g>
|
|
2528
|
+
<use x="271.042969" y="423.667969" xlink:href="#b"/>
|
|
2529
|
+
</g>
|
|
2530
|
+
<g>
|
|
2531
|
+
<use x="279.285156" y="423.667969" xlink:href="#b"/>
|
|
2532
|
+
</g>
|
|
2533
|
+
<g>
|
|
2534
|
+
<use x="287.53125" y="423.667969" xlink:href="#b"/>
|
|
2535
|
+
</g>
|
|
2536
|
+
<g>
|
|
2537
|
+
<use x="295.777344" y="423.667969" xlink:href="#b"/>
|
|
2538
|
+
</g>
|
|
2539
|
+
<g>
|
|
2540
|
+
<use x="304.019531" y="423.667969" xlink:href="#b"/>
|
|
2541
|
+
</g>
|
|
2542
|
+
<g>
|
|
2543
|
+
<use x="312.265625" y="423.667969" xlink:href="#b"/>
|
|
2544
|
+
</g>
|
|
2545
|
+
<g>
|
|
2546
|
+
<use x="320.507813" y="423.667969" xlink:href="#b"/>
|
|
2547
|
+
</g>
|
|
2548
|
+
<g>
|
|
2549
|
+
<use x="328.753906" y="423.667969" xlink:href="#b"/>
|
|
2550
|
+
</g>
|
|
2551
|
+
<g>
|
|
2552
|
+
<use x="337" y="423.667969" xlink:href="#b"/>
|
|
2553
|
+
</g>
|
|
2554
|
+
<g>
|
|
2555
|
+
<use x="345.242188" y="423.667969" xlink:href="#b"/>
|
|
2556
|
+
</g>
|
|
2557
|
+
<g>
|
|
2558
|
+
<use x="353.488281" y="423.667969" xlink:href="#hc"/>
|
|
2559
|
+
</g>
|
|
2560
|
+
<g>
|
|
2561
|
+
<use x="355.792969" y="423.667969" xlink:href="#hb"/>
|
|
2562
|
+
</g>
|
|
2563
|
+
<g>
|
|
2564
|
+
<use x="121.824219" y="448.285156" xlink:href="#ha"/>
|
|
2565
|
+
</g>
|
|
2566
|
+
<g>
|
|
2567
|
+
<use x="128.425781" y="444.472656" xlink:href="#gz"/>
|
|
2568
|
+
</g>
|
|
2569
|
+
<g>
|
|
2570
|
+
<use x="122.710937" y="452.621094" xlink:href="#gy"/>
|
|
2571
|
+
</g>
|
|
2572
|
+
<g>
|
|
2573
|
+
<use x="138.324219" y="477.84375" xlink:href="#gx"/>
|
|
2574
|
+
</g>
|
|
2575
|
+
<g>
|
|
2576
|
+
<use x="143.417969" y="474.902344" xlink:href="#gw"/>
|
|
2577
|
+
</g>
|
|
2578
|
+
<g>
|
|
2579
|
+
<use x="150.019531" y="471.089844" xlink:href="#gu"/>
|
|
2580
|
+
</g>
|
|
2581
|
+
<g>
|
|
2582
|
+
<use x="172.082031" y="465.351563" xlink:href="#as"/>
|
|
2583
|
+
</g>
|
|
2584
|
+
<g>
|
|
2585
|
+
<use x="184.914063" y="465.351563" xlink:href="#ar"/>
|
|
2586
|
+
</g>
|
|
2587
|
+
<g>
|
|
2588
|
+
<use x="188.804688" y="465.351563" xlink:href="#h"/>
|
|
2589
|
+
</g>
|
|
2590
|
+
<g>
|
|
2591
|
+
<use x="194.289063" y="465.351563" xlink:href="#h"/>
|
|
2592
|
+
</g>
|
|
2593
|
+
<g>
|
|
2594
|
+
<use x="199.769531" y="465.351563" xlink:href="#aq"/>
|
|
2595
|
+
</g>
|
|
2596
|
+
<g>
|
|
2597
|
+
<use x="206.769531" y="465.351563" xlink:href="#h"/>
|
|
2598
|
+
</g>
|
|
2599
|
+
<g>
|
|
2600
|
+
<use x="216.921875" y="465.351563" xlink:href="#h"/>
|
|
2601
|
+
</g>
|
|
2602
|
+
<g>
|
|
2603
|
+
<use x="222.40625" y="465.351563" xlink:href="#aq"/>
|
|
2604
|
+
</g>
|
|
2605
|
+
<g>
|
|
2606
|
+
<use x="229.40625" y="465.351563" xlink:href="#h"/>
|
|
2607
|
+
</g>
|
|
2608
|
+
<g>
|
|
2609
|
+
<use x="234.886719" y="465.351563" xlink:href="#h"/>
|
|
2610
|
+
</g>
|
|
2611
|
+
<g>
|
|
2612
|
+
<use x="240.371094" y="465.351563" xlink:href="#ar"/>
|
|
2613
|
+
</g>
|
|
2614
|
+
<g>
|
|
2615
|
+
<use x="244.261719" y="465.351563" xlink:href="#as"/>
|
|
2616
|
+
</g>
|
|
2617
|
+
<g>
|
|
2618
|
+
<use x="342.105469" y="465.351563" xlink:href="#ap"/>
|
|
2619
|
+
</g>
|
|
2620
|
+
<g>
|
|
2621
|
+
<use x="329.273438" y="465.351563" xlink:href="#ao"/>
|
|
2622
|
+
</g>
|
|
2623
|
+
<g>
|
|
2624
|
+
<use x="325.382813" y="465.351563" xlink:href="#g"/>
|
|
2625
|
+
</g>
|
|
2626
|
+
<g>
|
|
2627
|
+
<use x="319.898438" y="465.351563" xlink:href="#g"/>
|
|
2628
|
+
</g>
|
|
2629
|
+
<g>
|
|
2630
|
+
<use x="314.417969" y="465.351563" xlink:href="#an"/>
|
|
2631
|
+
</g>
|
|
2632
|
+
<g>
|
|
2633
|
+
<use x="307.417969" y="465.351563" xlink:href="#g"/>
|
|
2634
|
+
</g>
|
|
2635
|
+
<g>
|
|
2636
|
+
<use x="297.265625" y="465.351563" xlink:href="#g"/>
|
|
2637
|
+
</g>
|
|
2638
|
+
<g>
|
|
2639
|
+
<use x="291.78125" y="465.351563" xlink:href="#an"/>
|
|
2640
|
+
</g>
|
|
2641
|
+
<g>
|
|
2642
|
+
<use x="284.78125" y="465.351563" xlink:href="#g"/>
|
|
2643
|
+
</g>
|
|
2644
|
+
<g>
|
|
2645
|
+
<use x="279.300781" y="465.351563" xlink:href="#g"/>
|
|
2646
|
+
</g>
|
|
2647
|
+
<g>
|
|
2648
|
+
<use x="273.816406" y="465.351563" xlink:href="#ao"/>
|
|
2649
|
+
</g>
|
|
2650
|
+
<g>
|
|
2651
|
+
<use x="269.925781" y="465.351563" xlink:href="#ap"/>
|
|
2652
|
+
</g>
|
|
2653
|
+
</svg>
|