@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,3708 @@
|
|
|
1
|
+
# modified version of AFL++ tex dictionary
|
|
2
|
+
|
|
3
|
+
# main keywords
|
|
4
|
+
|
|
5
|
+
"@article{"
|
|
6
|
+
"@conference{"
|
|
7
|
+
"@misc{"
|
|
8
|
+
"\\@."
|
|
9
|
+
"\\Huge"
|
|
10
|
+
"\\LARGE"
|
|
11
|
+
"\\LaTeX\\"
|
|
12
|
+
"\\Large"
|
|
13
|
+
"\\author{"
|
|
14
|
+
"\\begin{"
|
|
15
|
+
"\\caption"
|
|
16
|
+
"\\centering"
|
|
17
|
+
"\\chapter{"
|
|
18
|
+
"\\citeA{"
|
|
19
|
+
"\\citeNP"
|
|
20
|
+
"\\citeN{"
|
|
21
|
+
"\\citeyear{"
|
|
22
|
+
"\\cite{"
|
|
23
|
+
"\\cline{"
|
|
24
|
+
"\\date{"
|
|
25
|
+
"\\documentclass{"
|
|
26
|
+
"\\emph{"
|
|
27
|
+
"\\end{"
|
|
28
|
+
"\\footnotesize"
|
|
29
|
+
"\\footnote{"
|
|
30
|
+
"\\frac{"
|
|
31
|
+
"\\hline"
|
|
32
|
+
"\\hspace{"
|
|
33
|
+
"\\huge"
|
|
34
|
+
"\\includegraphics"
|
|
35
|
+
"\\item{"
|
|
36
|
+
"\\kill"
|
|
37
|
+
"\\label{"
|
|
38
|
+
"\\large"
|
|
39
|
+
"\\ldots"
|
|
40
|
+
"\\leq"
|
|
41
|
+
"\\linespread"
|
|
42
|
+
"\\maketitle{}"
|
|
43
|
+
"\\multicolumn{"
|
|
44
|
+
"\\newcommand{"
|
|
45
|
+
"\\noindent"
|
|
46
|
+
"\\normalfont{"
|
|
47
|
+
"\\normalsize"
|
|
48
|
+
"\\pagebreak"
|
|
49
|
+
"\\pageref{"
|
|
50
|
+
"\\pagestyle{"
|
|
51
|
+
"\\part{"
|
|
52
|
+
"\\prod_{"
|
|
53
|
+
"\\raggedleft"
|
|
54
|
+
"\\raggedright"
|
|
55
|
+
"\\ref{"
|
|
56
|
+
"\\rule{"
|
|
57
|
+
"\\scriptsize"
|
|
58
|
+
"\\section{"
|
|
59
|
+
"\\setcounter{"
|
|
60
|
+
"\\shortciteA{"
|
|
61
|
+
"\\shortciteNP"
|
|
62
|
+
"\\shortciteN{"
|
|
63
|
+
"\\shortcite{"
|
|
64
|
+
"\\small"
|
|
65
|
+
"\\sqrt{"
|
|
66
|
+
"\\subsection{"
|
|
67
|
+
"\\sum_{"
|
|
68
|
+
"\\tableofcontents"
|
|
69
|
+
"\\textbackslash"
|
|
70
|
+
"\\textbar"
|
|
71
|
+
"\\textbf{"
|
|
72
|
+
"\\textgreater"
|
|
73
|
+
"\\textit{"
|
|
74
|
+
"\\textless"
|
|
75
|
+
"\\textmd{"
|
|
76
|
+
"\\textnormal{"
|
|
77
|
+
"\\textrm{"
|
|
78
|
+
"\\textsc{"
|
|
79
|
+
"\\textsf{"
|
|
80
|
+
"\\textsl{"
|
|
81
|
+
"\\texttt{"
|
|
82
|
+
"\\textup{"
|
|
83
|
+
"\\tiny"
|
|
84
|
+
"\\title{"
|
|
85
|
+
"\\today"
|
|
86
|
+
"\\underline{"
|
|
87
|
+
"\\usepackage"
|
|
88
|
+
"\\vspace{"
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
# misc
|
|
92
|
+
|
|
93
|
+
"abbrv"
|
|
94
|
+
"addres"
|
|
95
|
+
"article"
|
|
96
|
+
"book"
|
|
97
|
+
"center"
|
|
98
|
+
"description"
|
|
99
|
+
"document"
|
|
100
|
+
"draft"
|
|
101
|
+
"em"
|
|
102
|
+
"enumerate"
|
|
103
|
+
"equation"
|
|
104
|
+
"figure"
|
|
105
|
+
"flushleft"
|
|
106
|
+
"flushright"
|
|
107
|
+
"hyperref"
|
|
108
|
+
"itemize"
|
|
109
|
+
"landscape"
|
|
110
|
+
"letter"
|
|
111
|
+
"letterpaper"
|
|
112
|
+
"plain"
|
|
113
|
+
"publisher"
|
|
114
|
+
"quotation"
|
|
115
|
+
"quote"
|
|
116
|
+
"report"
|
|
117
|
+
"slides"
|
|
118
|
+
"tabular*"
|
|
119
|
+
"twocolumn"
|
|
120
|
+
"twoside"
|
|
121
|
+
"unsrt"
|
|
122
|
+
"verbatim*"
|
|
123
|
+
"verse"
|
|
124
|
+
"year"
|
|
125
|
+
|
|
126
|
+
## begin MicroTeX
|
|
127
|
+
"$"
|
|
128
|
+
|
|
129
|
+
### atom/atom_fence.cpp
|
|
130
|
+
"."
|
|
131
|
+
|
|
132
|
+
### atom/atom_misc.cpp
|
|
133
|
+
"origin"
|
|
134
|
+
"x"
|
|
135
|
+
"y"
|
|
136
|
+
"rparen"
|
|
137
|
+
|
|
138
|
+
### atom/atom_root.cpp
|
|
139
|
+
"sqrt"
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
### atom/colors_def.cpp
|
|
143
|
+
"black"
|
|
144
|
+
"white"
|
|
145
|
+
"red"
|
|
146
|
+
"green"
|
|
147
|
+
"blue"
|
|
148
|
+
"cyan"
|
|
149
|
+
"magenta"
|
|
150
|
+
"yellow"
|
|
151
|
+
"greenyellow"
|
|
152
|
+
"goldenrod"
|
|
153
|
+
"dandelion"
|
|
154
|
+
"apricot"
|
|
155
|
+
"peach"
|
|
156
|
+
"melon"
|
|
157
|
+
"yelloworange"
|
|
158
|
+
"orange"
|
|
159
|
+
"burntorange"
|
|
160
|
+
"bittersweet"
|
|
161
|
+
"redorange"
|
|
162
|
+
"mahogany"
|
|
163
|
+
"maroon"
|
|
164
|
+
"brickred"
|
|
165
|
+
"orangered"
|
|
166
|
+
"rubinered"
|
|
167
|
+
"wildstrawberry"
|
|
168
|
+
"salmon"
|
|
169
|
+
"carnationpink"
|
|
170
|
+
"magenta"
|
|
171
|
+
"violetred"
|
|
172
|
+
"rhodamine"
|
|
173
|
+
"mulberry"
|
|
174
|
+
"redviolet"
|
|
175
|
+
"fuchsia"
|
|
176
|
+
"lavender"
|
|
177
|
+
"thistle"
|
|
178
|
+
"orchid"
|
|
179
|
+
"darkorchid"
|
|
180
|
+
"purple"
|
|
181
|
+
"plum"
|
|
182
|
+
"violet"
|
|
183
|
+
"royalpurple"
|
|
184
|
+
"blueviolet"
|
|
185
|
+
"periwinkle"
|
|
186
|
+
"cadetblue"
|
|
187
|
+
"cornflowerblue"
|
|
188
|
+
"midnightblue"
|
|
189
|
+
"navyblue"
|
|
190
|
+
"royalblue"
|
|
191
|
+
"cerulean"
|
|
192
|
+
"processblue"
|
|
193
|
+
"skyblue"
|
|
194
|
+
"turquoise"
|
|
195
|
+
"tealblue"
|
|
196
|
+
"aquamarine"
|
|
197
|
+
"bluegreen"
|
|
198
|
+
"emerald"
|
|
199
|
+
"junglegreen"
|
|
200
|
+
"seagreen"
|
|
201
|
+
"forestgreen"
|
|
202
|
+
"pinegreen"
|
|
203
|
+
"limegreen"
|
|
204
|
+
"yellowgreen"
|
|
205
|
+
"springgreen"
|
|
206
|
+
"olivegreen"
|
|
207
|
+
"rawsienna"
|
|
208
|
+
"sepia"
|
|
209
|
+
"brown"
|
|
210
|
+
"tan"
|
|
211
|
+
"gray"
|
|
212
|
+
|
|
213
|
+
### atom/atom_basic.cpp
|
|
214
|
+
"dnomstyle"
|
|
215
|
+
"numstyle"
|
|
216
|
+
"substyle"
|
|
217
|
+
"supstyle"
|
|
218
|
+
"this style"
|
|
219
|
+
|
|
220
|
+
### box/box_group.cpp
|
|
221
|
+
"c"
|
|
222
|
+
"bl"
|
|
223
|
+
"lb"
|
|
224
|
+
"bc"
|
|
225
|
+
"cb"
|
|
226
|
+
"br"
|
|
227
|
+
"rb"
|
|
228
|
+
"cl"
|
|
229
|
+
"lc"
|
|
230
|
+
"cc"
|
|
231
|
+
"cr"
|
|
232
|
+
"rc"
|
|
233
|
+
"tl"
|
|
234
|
+
"lt"
|
|
235
|
+
"tc"
|
|
236
|
+
"ct"
|
|
237
|
+
"tr"
|
|
238
|
+
"rt"
|
|
239
|
+
"Bl"
|
|
240
|
+
"lB"
|
|
241
|
+
"Bc"
|
|
242
|
+
"cB"
|
|
243
|
+
"Br"
|
|
244
|
+
"rB"
|
|
245
|
+
|
|
246
|
+
### core/formula_def.cpp
|
|
247
|
+
"plus"
|
|
248
|
+
"minus"
|
|
249
|
+
"ast"
|
|
250
|
+
"slash"
|
|
251
|
+
"vert"
|
|
252
|
+
"lparen"
|
|
253
|
+
"rparen"
|
|
254
|
+
"lbrack"
|
|
255
|
+
"rbrack"
|
|
256
|
+
"lbrace"
|
|
257
|
+
"rbrace"
|
|
258
|
+
"comma"
|
|
259
|
+
"semicolon"
|
|
260
|
+
"exclam"
|
|
261
|
+
"question"
|
|
262
|
+
"vert"
|
|
263
|
+
"colon"
|
|
264
|
+
"equal"
|
|
265
|
+
"greater"
|
|
266
|
+
"less"
|
|
267
|
+
"qquad"
|
|
268
|
+
" "
|
|
269
|
+
"dotsc"
|
|
270
|
+
"dots"
|
|
271
|
+
"dotsb"
|
|
272
|
+
"dotso"
|
|
273
|
+
"dotsi"
|
|
274
|
+
"hdots"
|
|
275
|
+
"relbar"
|
|
276
|
+
"log"
|
|
277
|
+
"lg"
|
|
278
|
+
"ln"
|
|
279
|
+
"lim"
|
|
280
|
+
"limsup"
|
|
281
|
+
"liminf"
|
|
282
|
+
"injlim"
|
|
283
|
+
"projlim"
|
|
284
|
+
"varinjlim"
|
|
285
|
+
"varprojlim"
|
|
286
|
+
"varliminf"
|
|
287
|
+
"varlimsup"
|
|
288
|
+
"sin"
|
|
289
|
+
"arcsin"
|
|
290
|
+
"sinh"
|
|
291
|
+
"cos"
|
|
292
|
+
"arccos"
|
|
293
|
+
"cot"
|
|
294
|
+
"arccot"
|
|
295
|
+
"cosh"
|
|
296
|
+
"tan"
|
|
297
|
+
"arctan"
|
|
298
|
+
"tanh"
|
|
299
|
+
"coth"
|
|
300
|
+
"sec"
|
|
301
|
+
"arcsec"
|
|
302
|
+
"arccsc"
|
|
303
|
+
"sech"
|
|
304
|
+
"csc"
|
|
305
|
+
"csch"
|
|
306
|
+
"max"
|
|
307
|
+
"min"
|
|
308
|
+
"sup"
|
|
309
|
+
"inf"
|
|
310
|
+
"arg"
|
|
311
|
+
"ker"
|
|
312
|
+
"dim"
|
|
313
|
+
"hom"
|
|
314
|
+
"det"
|
|
315
|
+
"exp"
|
|
316
|
+
"Pr"
|
|
317
|
+
"gcd"
|
|
318
|
+
"deg"
|
|
319
|
+
"bmod"
|
|
320
|
+
"arrowvert"
|
|
321
|
+
"Arrowvert"
|
|
322
|
+
"aa"
|
|
323
|
+
"AA"
|
|
324
|
+
"ddag"
|
|
325
|
+
"dag"
|
|
326
|
+
"Doteq"
|
|
327
|
+
"doublecup"
|
|
328
|
+
"doublecap"
|
|
329
|
+
"llless"
|
|
330
|
+
"gggtr"
|
|
331
|
+
"copyright"
|
|
332
|
+
"micro"
|
|
333
|
+
"rVert"
|
|
334
|
+
"lVert"
|
|
335
|
+
"lvert"
|
|
336
|
+
"rvert"
|
|
337
|
+
"Alpha"
|
|
338
|
+
"Beta"
|
|
339
|
+
"Epsilon"
|
|
340
|
+
"Zeta"
|
|
341
|
+
"Eta"
|
|
342
|
+
"Iota"
|
|
343
|
+
"Kappa"
|
|
344
|
+
"Mu"
|
|
345
|
+
"Nu"
|
|
346
|
+
"Omicron"
|
|
347
|
+
"Rho"
|
|
348
|
+
"Tau"
|
|
349
|
+
"Chi"
|
|
350
|
+
"Nabla"
|
|
351
|
+
"Nabla"
|
|
352
|
+
"omicron"
|
|
353
|
+
"ratio"
|
|
354
|
+
"minuscolon"
|
|
355
|
+
"minuscoloncolon"
|
|
356
|
+
"simcolon"
|
|
357
|
+
"simcoloncolon"
|
|
358
|
+
"approxcolon"
|
|
359
|
+
"approxcoloncolon"
|
|
360
|
+
"coloncolon"
|
|
361
|
+
"equalscolon"
|
|
362
|
+
"equalscoloncolon"
|
|
363
|
+
"colonminus"
|
|
364
|
+
"coloncolonminus"
|
|
365
|
+
"colonequals"
|
|
366
|
+
"coloncolonequals"
|
|
367
|
+
"colonsim"
|
|
368
|
+
"coloncolonsim"
|
|
369
|
+
"colonapprox"
|
|
370
|
+
"coloncolonapprox"
|
|
371
|
+
"celsius"
|
|
372
|
+
"marker"
|
|
373
|
+
"hybull"
|
|
374
|
+
"block"
|
|
375
|
+
"uhblk"
|
|
376
|
+
"lhblk"
|
|
377
|
+
"Android"
|
|
378
|
+
"AndroidTeX"
|
|
379
|
+
"IJ"
|
|
380
|
+
"ij"
|
|
381
|
+
"idotsint"
|
|
382
|
+
"MicroTeX"
|
|
383
|
+
|
|
384
|
+
### core/parser.cpp
|
|
385
|
+
"cr"
|
|
386
|
+
"args"
|
|
387
|
+
"newcommand"
|
|
388
|
+
"renewcommand"
|
|
389
|
+
"renewenvironment"
|
|
390
|
+
"renewenvironment"
|
|
391
|
+
"begin"
|
|
392
|
+
"makeatletter"
|
|
393
|
+
"makeatother"
|
|
394
|
+
"@env"
|
|
395
|
+
|
|
396
|
+
### env/units.cpp
|
|
397
|
+
"bp"
|
|
398
|
+
"cc"
|
|
399
|
+
"cm"
|
|
400
|
+
"dd"
|
|
401
|
+
"em"
|
|
402
|
+
"ex"
|
|
403
|
+
"in"
|
|
404
|
+
"mm"
|
|
405
|
+
"mu"
|
|
406
|
+
"pc"
|
|
407
|
+
"pica"
|
|
408
|
+
"pix"
|
|
409
|
+
"pixel"
|
|
410
|
+
"pt"
|
|
411
|
+
"px"
|
|
412
|
+
"sp"
|
|
413
|
+
|
|
414
|
+
### macro/macro_accent.cpp
|
|
415
|
+
"tilde"
|
|
416
|
+
"acute"
|
|
417
|
+
"hat"
|
|
418
|
+
"ddot"
|
|
419
|
+
"grave"
|
|
420
|
+
"bar"
|
|
421
|
+
"dot"
|
|
422
|
+
"breve"
|
|
423
|
+
"check"
|
|
424
|
+
"tie"
|
|
425
|
+
"mathring"
|
|
426
|
+
"widehat"
|
|
427
|
+
"widetilde"
|
|
428
|
+
"tilde"
|
|
429
|
+
|
|
430
|
+
### macro/macro_colors.cpp
|
|
431
|
+
"gray"
|
|
432
|
+
"rgb"
|
|
433
|
+
"cmyk"
|
|
434
|
+
|
|
435
|
+
### macro/macro_delims.cpp
|
|
436
|
+
"\\left"
|
|
437
|
+
"\\right"
|
|
438
|
+
|
|
439
|
+
### macro/macro_fonts.cpp
|
|
440
|
+
"math-style"
|
|
441
|
+
"TeX"
|
|
442
|
+
"ISO"
|
|
443
|
+
"French"
|
|
444
|
+
"upright"
|
|
445
|
+
"lparen"
|
|
446
|
+
"rparen"
|
|
447
|
+
|
|
448
|
+
### macro/macro_frac.cpp
|
|
449
|
+
"r"
|
|
450
|
+
"l"
|
|
451
|
+
|
|
452
|
+
### macro/macro_misc.cpp
|
|
453
|
+
"'"
|
|
454
|
+
"\""
|
|
455
|
+
"showonlychar"
|
|
456
|
+
"boundcolor"
|
|
457
|
+
"baselinecolor"
|
|
458
|
+
"c"
|
|
459
|
+
"r"
|
|
460
|
+
"c"
|
|
461
|
+
"b"
|
|
462
|
+
"B"
|
|
463
|
+
|
|
464
|
+
### macro/macro_space.cpp
|
|
465
|
+
","
|
|
466
|
+
":"
|
|
467
|
+
";"
|
|
468
|
+
"thinspace"
|
|
469
|
+
"medspace"
|
|
470
|
+
"thickspace"
|
|
471
|
+
"!"
|
|
472
|
+
"negthinspace"
|
|
473
|
+
"negmedspace"
|
|
474
|
+
"negthickspace"
|
|
475
|
+
|
|
476
|
+
### macro/macro_styles.cpp
|
|
477
|
+
"displaystyle"
|
|
478
|
+
"textstyle"
|
|
479
|
+
"scriptstyle"
|
|
480
|
+
"scriptscriptstyle"
|
|
481
|
+
|
|
482
|
+
### macro/macro_def.cpp
|
|
483
|
+
"newcommand"
|
|
484
|
+
"renewcommand"
|
|
485
|
+
"rule"
|
|
486
|
+
"includegraphics"
|
|
487
|
+
"cfrac"
|
|
488
|
+
"xleftarrow"
|
|
489
|
+
"xrightarrow"
|
|
490
|
+
"xleftrightarrow"
|
|
491
|
+
"xRightarrow"
|
|
492
|
+
"xLeftarrow"
|
|
493
|
+
"xLeftrightarrow"
|
|
494
|
+
"xhookleftarrow"
|
|
495
|
+
"xhookrightarrow"
|
|
496
|
+
"xmapsto"
|
|
497
|
+
"xrightharpoondown"
|
|
498
|
+
"xrightharpoonup"
|
|
499
|
+
"xleftharpoondown"
|
|
500
|
+
"xleftharpoonup"
|
|
501
|
+
"xrightleftharpoons"
|
|
502
|
+
"xleftrightharpoons"
|
|
503
|
+
"sqrt"
|
|
504
|
+
"smash"
|
|
505
|
+
"hdotsfor"
|
|
506
|
+
"stackbin"
|
|
507
|
+
"stackrel"
|
|
508
|
+
"rotatebox"
|
|
509
|
+
"scalebox"
|
|
510
|
+
"raisebox"
|
|
511
|
+
"mathversion"
|
|
512
|
+
"fatalIfCmdConflict"
|
|
513
|
+
"breakEverywhere"
|
|
514
|
+
"newenvironment"
|
|
515
|
+
"renewenvironment"
|
|
516
|
+
"makeatletter"
|
|
517
|
+
"makeatother"
|
|
518
|
+
"smallmatrix@@env"
|
|
519
|
+
"matrix@@env"
|
|
520
|
+
"array@@env"
|
|
521
|
+
"align@@env"
|
|
522
|
+
"aligned@@env"
|
|
523
|
+
"flalign@@env"
|
|
524
|
+
"alignat@@env"
|
|
525
|
+
"alignedat@@env"
|
|
526
|
+
"multline@@env"
|
|
527
|
+
"gather@@env"
|
|
528
|
+
"gathered@@env"
|
|
529
|
+
"multicolumn"
|
|
530
|
+
"hline"
|
|
531
|
+
"multirow"
|
|
532
|
+
"rowcolor"
|
|
533
|
+
"columncolor"
|
|
534
|
+
"arrayrulecolor"
|
|
535
|
+
"newcolumntype"
|
|
536
|
+
"color"
|
|
537
|
+
"cellcolor"
|
|
538
|
+
"shoveright"
|
|
539
|
+
"shoveleft"
|
|
540
|
+
"DeclareMathSizes"
|
|
541
|
+
"magnification"
|
|
542
|
+
"tiny"
|
|
543
|
+
"scriptsize"
|
|
544
|
+
"footnotesize"
|
|
545
|
+
"small"
|
|
546
|
+
"normalsize"
|
|
547
|
+
"large"
|
|
548
|
+
"Large"
|
|
549
|
+
"LARGE"
|
|
550
|
+
"huge"
|
|
551
|
+
"Huge"
|
|
552
|
+
"big"
|
|
553
|
+
"Big"
|
|
554
|
+
"bigg"
|
|
555
|
+
"Bigg"
|
|
556
|
+
"bigl"
|
|
557
|
+
"Bigl"
|
|
558
|
+
"biggl"
|
|
559
|
+
"Biggl"
|
|
560
|
+
"bigr"
|
|
561
|
+
"Bigr"
|
|
562
|
+
"biggr"
|
|
563
|
+
"Biggr"
|
|
564
|
+
"frac"
|
|
565
|
+
"genfrac"
|
|
566
|
+
"above"
|
|
567
|
+
"over"
|
|
568
|
+
"atop"
|
|
569
|
+
"overwithdelims"
|
|
570
|
+
"atopwithdelims"
|
|
571
|
+
"abovewithdelims"
|
|
572
|
+
"sideset"
|
|
573
|
+
"prescript"
|
|
574
|
+
"overrightarrow"
|
|
575
|
+
"overleftarrow"
|
|
576
|
+
"overleftrightarrow"
|
|
577
|
+
"underrightarrow"
|
|
578
|
+
"underleftarrow"
|
|
579
|
+
"underleftrightarrow"
|
|
580
|
+
"overbrace"
|
|
581
|
+
"overbracket"
|
|
582
|
+
"overparen"
|
|
583
|
+
"underbrace"
|
|
584
|
+
"underbracket"
|
|
585
|
+
"underparen"
|
|
586
|
+
"overline"
|
|
587
|
+
"underline"
|
|
588
|
+
"Braket"
|
|
589
|
+
"Set"
|
|
590
|
+
"("
|
|
591
|
+
"["
|
|
592
|
+
"choose"
|
|
593
|
+
"brace"
|
|
594
|
+
"brack"
|
|
595
|
+
"bangle"
|
|
596
|
+
"left"
|
|
597
|
+
"middle"
|
|
598
|
+
"mathop"
|
|
599
|
+
"mathpunct"
|
|
600
|
+
"mathord"
|
|
601
|
+
"mathrel"
|
|
602
|
+
"mathinner"
|
|
603
|
+
"mathbin"
|
|
604
|
+
"mathopen"
|
|
605
|
+
"mathclose"
|
|
606
|
+
"bf"
|
|
607
|
+
"it"
|
|
608
|
+
"rm"
|
|
609
|
+
"sf"
|
|
610
|
+
"tt"
|
|
611
|
+
"cal"
|
|
612
|
+
"frak"
|
|
613
|
+
"oldstylenums"
|
|
614
|
+
"mathnormal"
|
|
615
|
+
"mathrm"
|
|
616
|
+
"mathbf"
|
|
617
|
+
"mathit"
|
|
618
|
+
"mathcal"
|
|
619
|
+
"mathscr"
|
|
620
|
+
"mathfrak"
|
|
621
|
+
"mathbb"
|
|
622
|
+
"mathsf"
|
|
623
|
+
"mathtt"
|
|
624
|
+
"mathbfit"
|
|
625
|
+
"mathbfcal"
|
|
626
|
+
"mathbffrak"
|
|
627
|
+
"mathsfbf"
|
|
628
|
+
"mathbfsf"
|
|
629
|
+
"mathsfit"
|
|
630
|
+
"mathsfbfit"
|
|
631
|
+
"mathbfsfit"
|
|
632
|
+
"Bbb"
|
|
633
|
+
"mathds"
|
|
634
|
+
"bold"
|
|
635
|
+
"boldsymbol"
|
|
636
|
+
"addfont"
|
|
637
|
+
"mbox"
|
|
638
|
+
"text"
|
|
639
|
+
"intertext"
|
|
640
|
+
"textit"
|
|
641
|
+
"textbf"
|
|
642
|
+
"textsf"
|
|
643
|
+
"texttt"
|
|
644
|
+
"textrm"
|
|
645
|
+
"^"
|
|
646
|
+
"\'"
|
|
647
|
+
"\""
|
|
648
|
+
"`"
|
|
649
|
+
"="
|
|
650
|
+
"."
|
|
651
|
+
"~"
|
|
652
|
+
"t"
|
|
653
|
+
"u"
|
|
654
|
+
"v"
|
|
655
|
+
"r"
|
|
656
|
+
"not"
|
|
657
|
+
"hat"
|
|
658
|
+
"widehat"
|
|
659
|
+
"check"
|
|
660
|
+
"tilde"
|
|
661
|
+
"widetilde"
|
|
662
|
+
"acute"
|
|
663
|
+
"grave"
|
|
664
|
+
"dot"
|
|
665
|
+
"ddot"
|
|
666
|
+
"dddot"
|
|
667
|
+
"ddddot"
|
|
668
|
+
"breve"
|
|
669
|
+
"bar"
|
|
670
|
+
"vec"
|
|
671
|
+
"mathring"
|
|
672
|
+
"accentset"
|
|
673
|
+
"overset"
|
|
674
|
+
"underset"
|
|
675
|
+
"underaccent"
|
|
676
|
+
"undertilde"
|
|
677
|
+
"displaystyle"
|
|
678
|
+
"textstyle"
|
|
679
|
+
"scriptstyle"
|
|
680
|
+
"scriptscriptstyle"
|
|
681
|
+
"everymath"
|
|
682
|
+
"dnomstyle"
|
|
683
|
+
"numstyle"
|
|
684
|
+
"substyle"
|
|
685
|
+
"supstyle"
|
|
686
|
+
"definecolor"
|
|
687
|
+
"fgcolor"
|
|
688
|
+
"bgcolor"
|
|
689
|
+
"textcolor"
|
|
690
|
+
"colorbox"
|
|
691
|
+
"fcolorbox"
|
|
692
|
+
","
|
|
693
|
+
":"
|
|
694
|
+
";"
|
|
695
|
+
"thinspace"
|
|
696
|
+
"medspace"
|
|
697
|
+
"thickspace"
|
|
698
|
+
"!"
|
|
699
|
+
"negthinspace"
|
|
700
|
+
"negmedspace"
|
|
701
|
+
"negthickspace"
|
|
702
|
+
"quad"
|
|
703
|
+
"reflectbox"
|
|
704
|
+
"resizebox"
|
|
705
|
+
"shadowbox"
|
|
706
|
+
"ovalbox"
|
|
707
|
+
"cornersize"
|
|
708
|
+
"doublebox"
|
|
709
|
+
"fbox"
|
|
710
|
+
"boxed"
|
|
711
|
+
"llap"
|
|
712
|
+
"rlap"
|
|
713
|
+
"clap"
|
|
714
|
+
"mathllap"
|
|
715
|
+
"mathrlap"
|
|
716
|
+
"mathclap"
|
|
717
|
+
"nolimits"
|
|
718
|
+
"limits"
|
|
719
|
+
"normal"
|
|
720
|
+
"kern"
|
|
721
|
+
"char"
|
|
722
|
+
"roman"
|
|
723
|
+
"Roman"
|
|
724
|
+
"surd"
|
|
725
|
+
"lmoustache"
|
|
726
|
+
"rmoustache"
|
|
727
|
+
"-"
|
|
728
|
+
"st"
|
|
729
|
+
"longdiv"
|
|
730
|
+
"cancel"
|
|
731
|
+
"bcancel"
|
|
732
|
+
"xcancel"
|
|
733
|
+
"stackinset"
|
|
734
|
+
"nbsp"
|
|
735
|
+
"sqrtsign"
|
|
736
|
+
"joinrel"
|
|
737
|
+
"cr"
|
|
738
|
+
"\\"
|
|
739
|
+
"hspace"
|
|
740
|
+
"vspace"
|
|
741
|
+
"underscore"
|
|
742
|
+
"binom"
|
|
743
|
+
"phantom"
|
|
744
|
+
"hphantom"
|
|
745
|
+
"vphantom"
|
|
746
|
+
"sp@breve"
|
|
747
|
+
"nokern"
|
|
748
|
+
"debug"
|
|
749
|
+
"undebug"
|
|
750
|
+
"array"
|
|
751
|
+
"tabular"
|
|
752
|
+
"matrix"
|
|
753
|
+
"smallmatrix"
|
|
754
|
+
"pmatrix"
|
|
755
|
+
"bmatrix"
|
|
756
|
+
"Bmatrix"
|
|
757
|
+
"vmatrix"
|
|
758
|
+
"Vmatrix"
|
|
759
|
+
"eqnarray"
|
|
760
|
+
"align"
|
|
761
|
+
"flalign"
|
|
762
|
+
"alignat"
|
|
763
|
+
"aligned"
|
|
764
|
+
"alignedat"
|
|
765
|
+
"multline"
|
|
766
|
+
"cases"
|
|
767
|
+
"split"
|
|
768
|
+
"gather"
|
|
769
|
+
"gathered"
|
|
770
|
+
"math"
|
|
771
|
+
"displaymath"
|
|
772
|
+
"equation"
|
|
773
|
+
"operatorname"
|
|
774
|
+
"DeclareMathOperator"
|
|
775
|
+
"substack"
|
|
776
|
+
"dfrac"
|
|
777
|
+
"tfrac"
|
|
778
|
+
"dbinom"
|
|
779
|
+
"tbinom"
|
|
780
|
+
"pmod"
|
|
781
|
+
"mod"
|
|
782
|
+
"pod"
|
|
783
|
+
"spbreve"
|
|
784
|
+
"spcheck"
|
|
785
|
+
"spdot"
|
|
786
|
+
"d"
|
|
787
|
+
"b"
|
|
788
|
+
"Bra"
|
|
789
|
+
"Ket"
|
|
790
|
+
"textsuperscript"
|
|
791
|
+
"textsubscript"
|
|
792
|
+
"overbrack"
|
|
793
|
+
"underbrack"
|
|
794
|
+
"degree"
|
|
795
|
+
"with"
|
|
796
|
+
"parr"
|
|
797
|
+
"sfrac"
|
|
798
|
+
|
|
799
|
+
### unimath/uni_font.cpp
|
|
800
|
+
"rm"
|
|
801
|
+
"bf"
|
|
802
|
+
"it"
|
|
803
|
+
"sf"
|
|
804
|
+
"tt"
|
|
805
|
+
"cal"
|
|
806
|
+
"frak"
|
|
807
|
+
"bfit"
|
|
808
|
+
"mathnormal"
|
|
809
|
+
"mathrm"
|
|
810
|
+
"mathbf"
|
|
811
|
+
"mathit"
|
|
812
|
+
"mathcal"
|
|
813
|
+
"mathscr"
|
|
814
|
+
"mathfrak"
|
|
815
|
+
"mathbb"
|
|
816
|
+
"mathsf"
|
|
817
|
+
"mathtt"
|
|
818
|
+
"mathbfit"
|
|
819
|
+
"mathbfcal"
|
|
820
|
+
"mathbffrak"
|
|
821
|
+
"mathsfbf"
|
|
822
|
+
"mathbfsf"
|
|
823
|
+
"mathsfit"
|
|
824
|
+
"mathsfbfit"
|
|
825
|
+
"mathbfsfit"
|
|
826
|
+
|
|
827
|
+
### unimath/uni_symbol.cpp
|
|
828
|
+
"#"
|
|
829
|
+
"$"
|
|
830
|
+
"%"
|
|
831
|
+
"&"
|
|
832
|
+
"AC"
|
|
833
|
+
"APLboxquestion"
|
|
834
|
+
"APLboxupcaret"
|
|
835
|
+
"APLcomment"
|
|
836
|
+
"APLdownarrowbox"
|
|
837
|
+
"APLinput"
|
|
838
|
+
"APLinv"
|
|
839
|
+
"APLleftarrowbox"
|
|
840
|
+
"APLlog"
|
|
841
|
+
"APLnotbackslash"
|
|
842
|
+
"APLnotslash"
|
|
843
|
+
"APLrightarrowbox"
|
|
844
|
+
"APLuparrowbox"
|
|
845
|
+
"Angstroem"
|
|
846
|
+
"Angstrom"
|
|
847
|
+
"Aries"
|
|
848
|
+
"Barv"
|
|
849
|
+
"BbbA"
|
|
850
|
+
"BbbB"
|
|
851
|
+
"BbbC"
|
|
852
|
+
"BbbD"
|
|
853
|
+
"BbbE"
|
|
854
|
+
"BbbF"
|
|
855
|
+
"BbbG"
|
|
856
|
+
"BbbGamma"
|
|
857
|
+
"BbbH"
|
|
858
|
+
"BbbI"
|
|
859
|
+
"BbbJ"
|
|
860
|
+
"BbbK"
|
|
861
|
+
"BbbL"
|
|
862
|
+
"BbbM"
|
|
863
|
+
"BbbN"
|
|
864
|
+
"BbbO"
|
|
865
|
+
"BbbP"
|
|
866
|
+
"BbbPi"
|
|
867
|
+
"BbbQ"
|
|
868
|
+
"BbbR"
|
|
869
|
+
"BbbS"
|
|
870
|
+
"BbbT"
|
|
871
|
+
"BbbU"
|
|
872
|
+
"BbbV"
|
|
873
|
+
"BbbW"
|
|
874
|
+
"BbbX"
|
|
875
|
+
"BbbY"
|
|
876
|
+
"BbbZ"
|
|
877
|
+
"Bbba"
|
|
878
|
+
"Bbbb"
|
|
879
|
+
"Bbbc"
|
|
880
|
+
"Bbbd"
|
|
881
|
+
"Bbbe"
|
|
882
|
+
"Bbbeight"
|
|
883
|
+
"Bbbf"
|
|
884
|
+
"Bbbfive"
|
|
885
|
+
"Bbbfour"
|
|
886
|
+
"Bbbg"
|
|
887
|
+
"Bbbgamma"
|
|
888
|
+
"Bbbh"
|
|
889
|
+
"Bbbi"
|
|
890
|
+
"Bbbj"
|
|
891
|
+
"Bbbk"
|
|
892
|
+
"Bbbl"
|
|
893
|
+
"Bbbm"
|
|
894
|
+
"Bbbn"
|
|
895
|
+
"Bbbnine"
|
|
896
|
+
"Bbbo"
|
|
897
|
+
"Bbbone"
|
|
898
|
+
"Bbbp"
|
|
899
|
+
"Bbbpi"
|
|
900
|
+
"Bbbq"
|
|
901
|
+
"Bbbr"
|
|
902
|
+
"Bbbs"
|
|
903
|
+
"Bbbseven"
|
|
904
|
+
"Bbbsix"
|
|
905
|
+
"Bbbsum"
|
|
906
|
+
"Bbbt"
|
|
907
|
+
"Bbbthree"
|
|
908
|
+
"Bbbtwo"
|
|
909
|
+
"Bbbu"
|
|
910
|
+
"Bbbv"
|
|
911
|
+
"Bbbw"
|
|
912
|
+
"Bbbx"
|
|
913
|
+
"Bbby"
|
|
914
|
+
"Bbbz"
|
|
915
|
+
"Bbbzero"
|
|
916
|
+
"Bot"
|
|
917
|
+
"Bumpeq"
|
|
918
|
+
"CIRCLE"
|
|
919
|
+
"Cap"
|
|
920
|
+
"CapitalDifferentialD"
|
|
921
|
+
"CheckedBox"
|
|
922
|
+
"Circle"
|
|
923
|
+
"Colon"
|
|
924
|
+
"Coloneq"
|
|
925
|
+
"Coloneqq"
|
|
926
|
+
"ComplexI"
|
|
927
|
+
"ComplexJ"
|
|
928
|
+
"Cup"
|
|
929
|
+
"DD"
|
|
930
|
+
"DDDot"
|
|
931
|
+
"DDot"
|
|
932
|
+
"DDownarrow"
|
|
933
|
+
"DashV"
|
|
934
|
+
"DashVDash"
|
|
935
|
+
"Dashv"
|
|
936
|
+
"Ddownarrow"
|
|
937
|
+
"Delta"
|
|
938
|
+
"Diamond"
|
|
939
|
+
"Diamondblack"
|
|
940
|
+
"Diamonddot"
|
|
941
|
+
"DifferentialD"
|
|
942
|
+
"Digamma"
|
|
943
|
+
"Dot"
|
|
944
|
+
"Doteq"
|
|
945
|
+
"DownArrowBar"
|
|
946
|
+
"DownLeftTeeVector"
|
|
947
|
+
"DownLeftVectorBar"
|
|
948
|
+
"DownRightTeeVector"
|
|
949
|
+
"DownRightVectorBar"
|
|
950
|
+
"Downarrow"
|
|
951
|
+
"Equal"
|
|
952
|
+
"Equiv"
|
|
953
|
+
"Euler"
|
|
954
|
+
"Eulerconst"
|
|
955
|
+
"Exclam"
|
|
956
|
+
"ExponetialE"
|
|
957
|
+
"Finv"
|
|
958
|
+
"Game"
|
|
959
|
+
"Gamma"
|
|
960
|
+
"Gemini"
|
|
961
|
+
"GreaterLess"
|
|
962
|
+
"GreaterTilde"
|
|
963
|
+
"Gt"
|
|
964
|
+
"HBar"
|
|
965
|
+
"Hermaphrodite"
|
|
966
|
+
"Im"
|
|
967
|
+
"Join"
|
|
968
|
+
"Jupiter"
|
|
969
|
+
"Koppa"
|
|
970
|
+
"LEFTCIRCLE"
|
|
971
|
+
"LEFTcircle"
|
|
972
|
+
"LHD"
|
|
973
|
+
"LLeftarrow"
|
|
974
|
+
"LVec"
|
|
975
|
+
"Lambda"
|
|
976
|
+
"Lbag"
|
|
977
|
+
"Lbrack"
|
|
978
|
+
"Lbrbrak"
|
|
979
|
+
"Ldsh"
|
|
980
|
+
"LeftArrowBar"
|
|
981
|
+
"LeftDownTeeVector"
|
|
982
|
+
"LeftDownVectorBar"
|
|
983
|
+
"LeftTeeVector"
|
|
984
|
+
"LeftTriangle"
|
|
985
|
+
"LeftTriangleBar"
|
|
986
|
+
"LeftUpTeeVector"
|
|
987
|
+
"LeftUpVectorBar"
|
|
988
|
+
"LeftVectorBar"
|
|
989
|
+
"Leftarrow"
|
|
990
|
+
"Leftrightarrow"
|
|
991
|
+
"Leo"
|
|
992
|
+
"LessTilde"
|
|
993
|
+
"Libra"
|
|
994
|
+
"Lleftarrow"
|
|
995
|
+
"Longleftarrow"
|
|
996
|
+
"Longleftrightarrow"
|
|
997
|
+
"Longmappedfrom"
|
|
998
|
+
"Longmapsfrom"
|
|
999
|
+
"Longmapsto"
|
|
1000
|
+
"Longrightarrow"
|
|
1001
|
+
"Lparen"
|
|
1002
|
+
"Lparengtr"
|
|
1003
|
+
"Lsh"
|
|
1004
|
+
"Lt"
|
|
1005
|
+
"Lvzigzag"
|
|
1006
|
+
"Mappedfrom"
|
|
1007
|
+
"MapsDown"
|
|
1008
|
+
"MapsUp"
|
|
1009
|
+
"Mapsfrom"
|
|
1010
|
+
"Mapsto"
|
|
1011
|
+
"Mars"
|
|
1012
|
+
"Mercury"
|
|
1013
|
+
"Mho"
|
|
1014
|
+
"Micro"
|
|
1015
|
+
"Nearrow"
|
|
1016
|
+
"Neptune"
|
|
1017
|
+
"NestedGreaterGreater"
|
|
1018
|
+
"NestedLessLess"
|
|
1019
|
+
"Not"
|
|
1020
|
+
"NotGreaterLess"
|
|
1021
|
+
"NotGreaterTilde"
|
|
1022
|
+
"NotLeftTriangle"
|
|
1023
|
+
"NotLessTilde"
|
|
1024
|
+
"NotRightTriangle"
|
|
1025
|
+
"Nwarrow"
|
|
1026
|
+
"Omega"
|
|
1027
|
+
"Otimes"
|
|
1028
|
+
"Perp"
|
|
1029
|
+
"Phi"
|
|
1030
|
+
"Pi"
|
|
1031
|
+
"Planckconst"
|
|
1032
|
+
"Pluto"
|
|
1033
|
+
"Prec"
|
|
1034
|
+
"PrecedesSlantEqual"
|
|
1035
|
+
"PrecedesTilde"
|
|
1036
|
+
"PropertyLine"
|
|
1037
|
+
"Proportion"
|
|
1038
|
+
"Psi"
|
|
1039
|
+
"QED"
|
|
1040
|
+
"Qoppa"
|
|
1041
|
+
"Question"
|
|
1042
|
+
"RHD"
|
|
1043
|
+
"RIGHTCIRCLE"
|
|
1044
|
+
"RIGHTcircle"
|
|
1045
|
+
"RRightarrow"
|
|
1046
|
+
"Rbag"
|
|
1047
|
+
"Rbrack"
|
|
1048
|
+
"Rbrbrak"
|
|
1049
|
+
"Rdsh"
|
|
1050
|
+
"Re"
|
|
1051
|
+
"RightArrowBar"
|
|
1052
|
+
"RightDownTeeVector"
|
|
1053
|
+
"RightDownVectorBar"
|
|
1054
|
+
"RightTeeVector"
|
|
1055
|
+
"RightTriangle"
|
|
1056
|
+
"RightTriangleBar"
|
|
1057
|
+
"RightUpTeeVector"
|
|
1058
|
+
"RightUpVectorBar"
|
|
1059
|
+
"RightVectorBar"
|
|
1060
|
+
"Rightarrow"
|
|
1061
|
+
"Rparen"
|
|
1062
|
+
"Rparenless"
|
|
1063
|
+
"Rrightarrow"
|
|
1064
|
+
"Rsh"
|
|
1065
|
+
"Rvzigzag"
|
|
1066
|
+
"Same"
|
|
1067
|
+
"Sampi"
|
|
1068
|
+
"Saturn"
|
|
1069
|
+
"Scorpio"
|
|
1070
|
+
"Searrow"
|
|
1071
|
+
"SetDelayed"
|
|
1072
|
+
"Sigma"
|
|
1073
|
+
"Sqcap"
|
|
1074
|
+
"Sqcup"
|
|
1075
|
+
"Square"
|
|
1076
|
+
"Stigma"
|
|
1077
|
+
"Subset"
|
|
1078
|
+
"Succ"
|
|
1079
|
+
"SucceedsSlantEqual"
|
|
1080
|
+
"SucceedsTilde"
|
|
1081
|
+
"Sun"
|
|
1082
|
+
"Supset"
|
|
1083
|
+
"Swarrow"
|
|
1084
|
+
"Taurus"
|
|
1085
|
+
"Theta"
|
|
1086
|
+
"Top"
|
|
1087
|
+
"UUparrow"
|
|
1088
|
+
"UpArrowBar"
|
|
1089
|
+
"Uparrow"
|
|
1090
|
+
"Updownarrow"
|
|
1091
|
+
"Upsilon"
|
|
1092
|
+
"Uranus"
|
|
1093
|
+
"Uuparrow"
|
|
1094
|
+
"VDash"
|
|
1095
|
+
"VERT"
|
|
1096
|
+
"Vbar"
|
|
1097
|
+
"Vdash"
|
|
1098
|
+
"Vec"
|
|
1099
|
+
"Vee"
|
|
1100
|
+
"Venus"
|
|
1101
|
+
"Vert"
|
|
1102
|
+
"Vvdash"
|
|
1103
|
+
"Vvert"
|
|
1104
|
+
"Wedge"
|
|
1105
|
+
"XBox"
|
|
1106
|
+
"Xi"
|
|
1107
|
+
"Yup"
|
|
1108
|
+
"Zbar"
|
|
1109
|
+
"_"
|
|
1110
|
+
"accurrent"
|
|
1111
|
+
"acidfree"
|
|
1112
|
+
"acute"
|
|
1113
|
+
"acwcirclearrow"
|
|
1114
|
+
"acwgapcirclearrow"
|
|
1115
|
+
"acwleftarcarrow"
|
|
1116
|
+
"acwopencirclearrow"
|
|
1117
|
+
"acwoverarcarrow"
|
|
1118
|
+
"acwunderarcarrow"
|
|
1119
|
+
"adots"
|
|
1120
|
+
"aleph"
|
|
1121
|
+
"alpha"
|
|
1122
|
+
"alphaup"
|
|
1123
|
+
"amalg"
|
|
1124
|
+
"ampersand"
|
|
1125
|
+
"anchor"
|
|
1126
|
+
"angdnr"
|
|
1127
|
+
"angle"
|
|
1128
|
+
"angles"
|
|
1129
|
+
"angleubar"
|
|
1130
|
+
"annuity"
|
|
1131
|
+
"apprge"
|
|
1132
|
+
"apprle"
|
|
1133
|
+
"approx"
|
|
1134
|
+
"approxeq"
|
|
1135
|
+
"approxeqq"
|
|
1136
|
+
"approxident"
|
|
1137
|
+
"aquarius"
|
|
1138
|
+
"arceq"
|
|
1139
|
+
"aries"
|
|
1140
|
+
"arrowbullet"
|
|
1141
|
+
"assert"
|
|
1142
|
+
"ast"
|
|
1143
|
+
"asteq"
|
|
1144
|
+
"asteraccent"
|
|
1145
|
+
"astrosun"
|
|
1146
|
+
"asymp"
|
|
1147
|
+
"atsign"
|
|
1148
|
+
"awint"
|
|
1149
|
+
"bNot"
|
|
1150
|
+
"backcong"
|
|
1151
|
+
"backdprime"
|
|
1152
|
+
"backepsilon"
|
|
1153
|
+
"backprime"
|
|
1154
|
+
"backsim"
|
|
1155
|
+
"backsimeq"
|
|
1156
|
+
"backslash"
|
|
1157
|
+
"backtrprime"
|
|
1158
|
+
"bagmember"
|
|
1159
|
+
"ballotcheck"
|
|
1160
|
+
"ballotx"
|
|
1161
|
+
"bar"
|
|
1162
|
+
"barV"
|
|
1163
|
+
"barcap"
|
|
1164
|
+
"barcup"
|
|
1165
|
+
"bardownharpoonleft"
|
|
1166
|
+
"bardownharpoonright"
|
|
1167
|
+
"barin"
|
|
1168
|
+
"barleftarrow"
|
|
1169
|
+
"barleftarrowrightarrowba"
|
|
1170
|
+
"barleftharpoon"
|
|
1171
|
+
"barleftharpoondown"
|
|
1172
|
+
"barleftharpoonup"
|
|
1173
|
+
"barovernorthwestarrow"
|
|
1174
|
+
"barrightarrowdiamond"
|
|
1175
|
+
"barrightharpoon"
|
|
1176
|
+
"barrightharpoondown"
|
|
1177
|
+
"barrightharpoonup"
|
|
1178
|
+
"baruparrow"
|
|
1179
|
+
"barupharpoonleft"
|
|
1180
|
+
"barupharpoonright"
|
|
1181
|
+
"barvee"
|
|
1182
|
+
"barwedge"
|
|
1183
|
+
"bbrktbrk"
|
|
1184
|
+
"bdtriplevdash"
|
|
1185
|
+
"because"
|
|
1186
|
+
"benzenr"
|
|
1187
|
+
"beta"
|
|
1188
|
+
"betaup"
|
|
1189
|
+
"beth"
|
|
1190
|
+
"between"
|
|
1191
|
+
"bigblacktriangledown"
|
|
1192
|
+
"bigblacktriangleup"
|
|
1193
|
+
"bigbot"
|
|
1194
|
+
"bigcap"
|
|
1195
|
+
"bigcup"
|
|
1196
|
+
"bigcupdot"
|
|
1197
|
+
"biginterleave"
|
|
1198
|
+
"bigodot"
|
|
1199
|
+
"bigoplus"
|
|
1200
|
+
"bigotimes"
|
|
1201
|
+
"bigslopedvee"
|
|
1202
|
+
"bigslopedwedge"
|
|
1203
|
+
"bigsqcap"
|
|
1204
|
+
"bigsqcup"
|
|
1205
|
+
"bigstar"
|
|
1206
|
+
"bigtalloblong"
|
|
1207
|
+
"bigtimes"
|
|
1208
|
+
"bigtop"
|
|
1209
|
+
"bigtriangledown"
|
|
1210
|
+
"bigtriangleleft"
|
|
1211
|
+
"bigtriangleup"
|
|
1212
|
+
"biguplus"
|
|
1213
|
+
"bigvee"
|
|
1214
|
+
"bigwedge"
|
|
1215
|
+
"bigwhitestar"
|
|
1216
|
+
"bij"
|
|
1217
|
+
"biohazard"
|
|
1218
|
+
"blackcircledownarrow"
|
|
1219
|
+
"blackcircledrightdot"
|
|
1220
|
+
"blackcircledtwodots"
|
|
1221
|
+
"blackcircleulquadwhite"
|
|
1222
|
+
"blackdiamonddownarrow"
|
|
1223
|
+
"blackhourglass"
|
|
1224
|
+
"blackinwhitediamond"
|
|
1225
|
+
"blackinwhitesquare"
|
|
1226
|
+
"blacklefthalfcircle"
|
|
1227
|
+
"blacklozenge"
|
|
1228
|
+
"blackpointerleft"
|
|
1229
|
+
"blackpointerright"
|
|
1230
|
+
"blackrighthalfcircle"
|
|
1231
|
+
"blacksmiley"
|
|
1232
|
+
"blacksquare"
|
|
1233
|
+
"blacktriangle"
|
|
1234
|
+
"blacktriangledown"
|
|
1235
|
+
"blacktriangleleft"
|
|
1236
|
+
"blacktriangleright"
|
|
1237
|
+
"blacktriangleup"
|
|
1238
|
+
"blkhorzoval"
|
|
1239
|
+
"blkvertoval"
|
|
1240
|
+
"blockfull"
|
|
1241
|
+
"blockhalfshaded"
|
|
1242
|
+
"blocklefthalf"
|
|
1243
|
+
"blocklowhalf"
|
|
1244
|
+
"blockqtrshaded"
|
|
1245
|
+
"blockrighthalf"
|
|
1246
|
+
"blockthreeqtrshaded"
|
|
1247
|
+
"blockuphalf"
|
|
1248
|
+
"bot"
|
|
1249
|
+
"botsemicircle"
|
|
1250
|
+
"bowtie"
|
|
1251
|
+
"boxast"
|
|
1252
|
+
"boxbar"
|
|
1253
|
+
"boxbox"
|
|
1254
|
+
"boxbslash"
|
|
1255
|
+
"boxcircle"
|
|
1256
|
+
"boxdiag"
|
|
1257
|
+
"boxdot"
|
|
1258
|
+
"boxminus"
|
|
1259
|
+
"boxonbox"
|
|
1260
|
+
"boxplus"
|
|
1261
|
+
"boxslash"
|
|
1262
|
+
"boxtimes"
|
|
1263
|
+
"boy"
|
|
1264
|
+
"breve"
|
|
1265
|
+
"bsimilarleftarrow"
|
|
1266
|
+
"bsimilarrightarrow"
|
|
1267
|
+
"bsolhsub"
|
|
1268
|
+
"btimes"
|
|
1269
|
+
"bullet"
|
|
1270
|
+
"bullseye"
|
|
1271
|
+
"bumpeq"
|
|
1272
|
+
"bumpeqq"
|
|
1273
|
+
"buni"
|
|
1274
|
+
"cancer"
|
|
1275
|
+
"candra"
|
|
1276
|
+
"cap"
|
|
1277
|
+
"capbarcup"
|
|
1278
|
+
"capdot"
|
|
1279
|
+
"capovercup"
|
|
1280
|
+
"capricornus"
|
|
1281
|
+
"capwedge"
|
|
1282
|
+
"caretinsert"
|
|
1283
|
+
"carriagereturn"
|
|
1284
|
+
"cat"
|
|
1285
|
+
"ccwundercurvearrow"
|
|
1286
|
+
"cdot"
|
|
1287
|
+
"cdotp"
|
|
1288
|
+
"cdots"
|
|
1289
|
+
"cent"
|
|
1290
|
+
"check"
|
|
1291
|
+
"checkmark"
|
|
1292
|
+
"chi"
|
|
1293
|
+
"chiup"
|
|
1294
|
+
"cirE"
|
|
1295
|
+
"cirbot"
|
|
1296
|
+
"circ"
|
|
1297
|
+
"circeq"
|
|
1298
|
+
"circlearrowleft"
|
|
1299
|
+
"circlearrowright"
|
|
1300
|
+
"circlebottomhalfblack"
|
|
1301
|
+
"circledR"
|
|
1302
|
+
"circledast"
|
|
1303
|
+
"circledbslash"
|
|
1304
|
+
"circledbullet"
|
|
1305
|
+
"circledcirc"
|
|
1306
|
+
"circleddash"
|
|
1307
|
+
"circledequal"
|
|
1308
|
+
"circledgtr"
|
|
1309
|
+
"circledless"
|
|
1310
|
+
"circledownarrow"
|
|
1311
|
+
"circledparallel"
|
|
1312
|
+
"circledrightdot"
|
|
1313
|
+
"circledstar"
|
|
1314
|
+
"circledtwodots"
|
|
1315
|
+
"circledvert"
|
|
1316
|
+
"circledwhitebullet"
|
|
1317
|
+
"circlehbar"
|
|
1318
|
+
"circlelefthalfblack"
|
|
1319
|
+
"circlellquad"
|
|
1320
|
+
"circlelrquad"
|
|
1321
|
+
"circleonleftarrow"
|
|
1322
|
+
"circleonrightarrow"
|
|
1323
|
+
"circlerighthalfblack"
|
|
1324
|
+
"circletophalfblack"
|
|
1325
|
+
"circleulquad"
|
|
1326
|
+
"circleurquad"
|
|
1327
|
+
"circleurquadblack"
|
|
1328
|
+
"circlevertfill"
|
|
1329
|
+
"cirfnint"
|
|
1330
|
+
"cirmid"
|
|
1331
|
+
"cirscir"
|
|
1332
|
+
"clockoint"
|
|
1333
|
+
"closedvarcap"
|
|
1334
|
+
"closedvarcup"
|
|
1335
|
+
"closedvarcupsmashprod"
|
|
1336
|
+
"closure"
|
|
1337
|
+
"clubsuit"
|
|
1338
|
+
"cntclockoint"
|
|
1339
|
+
"colon"
|
|
1340
|
+
"coloneq"
|
|
1341
|
+
"coloneqq"
|
|
1342
|
+
"comma"
|
|
1343
|
+
"commaminus"
|
|
1344
|
+
"comp"
|
|
1345
|
+
"complement"
|
|
1346
|
+
"concavediamond"
|
|
1347
|
+
"concavediamondtickleft"
|
|
1348
|
+
"concavediamondtickright"
|
|
1349
|
+
"cong"
|
|
1350
|
+
"congdot"
|
|
1351
|
+
"conictaper"
|
|
1352
|
+
"conjquant"
|
|
1353
|
+
"coprod"
|
|
1354
|
+
"corresponds"
|
|
1355
|
+
"csub"
|
|
1356
|
+
"csube"
|
|
1357
|
+
"csup"
|
|
1358
|
+
"csupe"
|
|
1359
|
+
"cuberoot"
|
|
1360
|
+
"cup"
|
|
1361
|
+
"cupbarcap"
|
|
1362
|
+
"cupdot"
|
|
1363
|
+
"cupleftarrow"
|
|
1364
|
+
"cupovercap"
|
|
1365
|
+
"cupvee"
|
|
1366
|
+
"curlyeqprec"
|
|
1367
|
+
"curlyeqsucc"
|
|
1368
|
+
"curlyvee"
|
|
1369
|
+
"curlywedge"
|
|
1370
|
+
"curvearrowleft"
|
|
1371
|
+
"curvearrowleftplus"
|
|
1372
|
+
"curvearrowright"
|
|
1373
|
+
"curvearrowrightminus"
|
|
1374
|
+
"cwcirclearrow"
|
|
1375
|
+
"cwgapcirclearrow"
|
|
1376
|
+
"cwopencirclearrow"
|
|
1377
|
+
"cwrightarcarrow"
|
|
1378
|
+
"cwundercurvearrow"
|
|
1379
|
+
"dagger"
|
|
1380
|
+
"daleth"
|
|
1381
|
+
"danger"
|
|
1382
|
+
"dashV"
|
|
1383
|
+
"dashVdash"
|
|
1384
|
+
"dasharrow"
|
|
1385
|
+
"dashcolon"
|
|
1386
|
+
"dashleftarrow"
|
|
1387
|
+
"dashleftharpoondown"
|
|
1388
|
+
"dashrightarrow"
|
|
1389
|
+
"dashrightharpoondown"
|
|
1390
|
+
"dashv"
|
|
1391
|
+
"dbkarow"
|
|
1392
|
+
"dbloint"
|
|
1393
|
+
"dd"
|
|
1394
|
+
"ddagger"
|
|
1395
|
+
"ddddot"
|
|
1396
|
+
"dddot"
|
|
1397
|
+
"ddot"
|
|
1398
|
+
"ddots"
|
|
1399
|
+
"ddotseq"
|
|
1400
|
+
"delta"
|
|
1401
|
+
"deltaup"
|
|
1402
|
+
"diameter"
|
|
1403
|
+
"diamond"
|
|
1404
|
+
"diamondbotblack"
|
|
1405
|
+
"diamondcdot"
|
|
1406
|
+
"diamondleftarrow"
|
|
1407
|
+
"diamondleftarrowbar"
|
|
1408
|
+
"diamondleftblack"
|
|
1409
|
+
"diamondrightblack"
|
|
1410
|
+
"diamondsuit"
|
|
1411
|
+
"diamondtopblack"
|
|
1412
|
+
"dicei"
|
|
1413
|
+
"diceii"
|
|
1414
|
+
"diceiii"
|
|
1415
|
+
"diceiv"
|
|
1416
|
+
"dicev"
|
|
1417
|
+
"dicevi"
|
|
1418
|
+
"digamma"
|
|
1419
|
+
"dingasterisk"
|
|
1420
|
+
"dint"
|
|
1421
|
+
"disin"
|
|
1422
|
+
"disjquant"
|
|
1423
|
+
"div"
|
|
1424
|
+
"divideontimes"
|
|
1425
|
+
"divslash"
|
|
1426
|
+
"dlsh"
|
|
1427
|
+
"dot"
|
|
1428
|
+
"doteq"
|
|
1429
|
+
"doteqdot"
|
|
1430
|
+
"dotequal"
|
|
1431
|
+
"dotequiv"
|
|
1432
|
+
"dotminus"
|
|
1433
|
+
"dotplus"
|
|
1434
|
+
"dotsim"
|
|
1435
|
+
"dotsminusdots"
|
|
1436
|
+
"dottedcircle"
|
|
1437
|
+
"dottedsquare"
|
|
1438
|
+
"dottimes"
|
|
1439
|
+
"doublebarvee"
|
|
1440
|
+
"doublebarwedge"
|
|
1441
|
+
"doubleplus"
|
|
1442
|
+
"downarrow"
|
|
1443
|
+
"downarrowbar"
|
|
1444
|
+
"downarrowbarred"
|
|
1445
|
+
"downarrowuparrow"
|
|
1446
|
+
"downdasharrow"
|
|
1447
|
+
"downdownarrows"
|
|
1448
|
+
"downdownharpoons"
|
|
1449
|
+
"downfishtail"
|
|
1450
|
+
"downharpoonleft"
|
|
1451
|
+
"downharpoonleftbar"
|
|
1452
|
+
"downharpoonright"
|
|
1453
|
+
"downharpoonrightbar"
|
|
1454
|
+
"downharpoonsleftright"
|
|
1455
|
+
"downrightcurvedarrow"
|
|
1456
|
+
"downtriangleleftblack"
|
|
1457
|
+
"downtrianglerightblack"
|
|
1458
|
+
"downuparrows"
|
|
1459
|
+
"downupharpoons"
|
|
1460
|
+
"downupharpoonsleftright"
|
|
1461
|
+
"downwhitearrow"
|
|
1462
|
+
"downzigzagarrow"
|
|
1463
|
+
"dprime"
|
|
1464
|
+
"draftingarrow"
|
|
1465
|
+
"drbkarow"
|
|
1466
|
+
"dres"
|
|
1467
|
+
"droang"
|
|
1468
|
+
"drsh"
|
|
1469
|
+
"dsol"
|
|
1470
|
+
"dsub"
|
|
1471
|
+
"dualmap"
|
|
1472
|
+
"duni"
|
|
1473
|
+
"earth"
|
|
1474
|
+
"ee"
|
|
1475
|
+
"egsdot"
|
|
1476
|
+
"eighthnote"
|
|
1477
|
+
"elinters"
|
|
1478
|
+
"ell"
|
|
1479
|
+
"elsdot"
|
|
1480
|
+
"emptyset"
|
|
1481
|
+
"emptysetoarr"
|
|
1482
|
+
"emptysetoarrl"
|
|
1483
|
+
"emptysetobar"
|
|
1484
|
+
"emptysetocirc"
|
|
1485
|
+
"enclosecircle"
|
|
1486
|
+
"enclosediamond"
|
|
1487
|
+
"enclosesquare"
|
|
1488
|
+
"enclosetriangle"
|
|
1489
|
+
"enleadertwodots"
|
|
1490
|
+
"eparsl"
|
|
1491
|
+
"epsilon"
|
|
1492
|
+
"epsilonup"
|
|
1493
|
+
"eqcirc"
|
|
1494
|
+
"eqcolon"
|
|
1495
|
+
"eqdef"
|
|
1496
|
+
"eqdot"
|
|
1497
|
+
"eqeq"
|
|
1498
|
+
"eqeqeq"
|
|
1499
|
+
"eqgtr"
|
|
1500
|
+
"eqless"
|
|
1501
|
+
"eqqcolon"
|
|
1502
|
+
"eqqgtr"
|
|
1503
|
+
"eqqless"
|
|
1504
|
+
"eqqplus"
|
|
1505
|
+
"eqqsim"
|
|
1506
|
+
"eqqslantgtr"
|
|
1507
|
+
"eqqslantless"
|
|
1508
|
+
"eqsim"
|
|
1509
|
+
"eqslantgtr"
|
|
1510
|
+
"eqslantless"
|
|
1511
|
+
"equal"
|
|
1512
|
+
"equalleftarrow"
|
|
1513
|
+
"equalparallel"
|
|
1514
|
+
"equalrightarrow"
|
|
1515
|
+
"equilibrium"
|
|
1516
|
+
"equiv"
|
|
1517
|
+
"equivDD"
|
|
1518
|
+
"equivVert"
|
|
1519
|
+
"equivVvert"
|
|
1520
|
+
"eqvparsl"
|
|
1521
|
+
"errbarblackcircle"
|
|
1522
|
+
"errbarblackdiamond"
|
|
1523
|
+
"errbarblacksquare"
|
|
1524
|
+
"errbarcircle"
|
|
1525
|
+
"errbardiamond"
|
|
1526
|
+
"errbarsquare"
|
|
1527
|
+
"eta"
|
|
1528
|
+
"etaup"
|
|
1529
|
+
"eth"
|
|
1530
|
+
"euro"
|
|
1531
|
+
"exclam"
|
|
1532
|
+
"exi"
|
|
1533
|
+
"exists"
|
|
1534
|
+
"fallingdotseq"
|
|
1535
|
+
"fatsemi"
|
|
1536
|
+
"fbowtie"
|
|
1537
|
+
"fcmp"
|
|
1538
|
+
"fdiagovnearrow"
|
|
1539
|
+
"fdiagovrdiag"
|
|
1540
|
+
"female"
|
|
1541
|
+
"ffun"
|
|
1542
|
+
"finj"
|
|
1543
|
+
"fint"
|
|
1544
|
+
"fisheye"
|
|
1545
|
+
"flat"
|
|
1546
|
+
"fltns"
|
|
1547
|
+
"forall"
|
|
1548
|
+
"forks"
|
|
1549
|
+
"forksnot"
|
|
1550
|
+
"forkv"
|
|
1551
|
+
"fourth"
|
|
1552
|
+
"fourthroot"
|
|
1553
|
+
"fourvdots"
|
|
1554
|
+
"fracslash"
|
|
1555
|
+
"frown"
|
|
1556
|
+
"frownie"
|
|
1557
|
+
"fullouterjoin"
|
|
1558
|
+
"fun"
|
|
1559
|
+
"gamma"
|
|
1560
|
+
"gammaup"
|
|
1561
|
+
"ge"
|
|
1562
|
+
"gemini"
|
|
1563
|
+
"geq"
|
|
1564
|
+
"geqq"
|
|
1565
|
+
"geqqslant"
|
|
1566
|
+
"geqslant"
|
|
1567
|
+
"gescc"
|
|
1568
|
+
"gesdot"
|
|
1569
|
+
"gesdoto"
|
|
1570
|
+
"gesdotol"
|
|
1571
|
+
"gesles"
|
|
1572
|
+
"gets"
|
|
1573
|
+
"gg"
|
|
1574
|
+
"ggcurly"
|
|
1575
|
+
"ggg"
|
|
1576
|
+
"gggnest"
|
|
1577
|
+
"gimel"
|
|
1578
|
+
"girl"
|
|
1579
|
+
"glE"
|
|
1580
|
+
"gla"
|
|
1581
|
+
"gleichstark"
|
|
1582
|
+
"glj"
|
|
1583
|
+
"gnapprox"
|
|
1584
|
+
"gneq"
|
|
1585
|
+
"gneqq"
|
|
1586
|
+
"gnsim"
|
|
1587
|
+
"grave"
|
|
1588
|
+
"greater"
|
|
1589
|
+
"gsime"
|
|
1590
|
+
"gsiml"
|
|
1591
|
+
"gt"
|
|
1592
|
+
"gtcc"
|
|
1593
|
+
"gtcir"
|
|
1594
|
+
"gtlpar"
|
|
1595
|
+
"gtquest"
|
|
1596
|
+
"gtrapprox"
|
|
1597
|
+
"gtrarr"
|
|
1598
|
+
"gtrdot"
|
|
1599
|
+
"gtreqless"
|
|
1600
|
+
"gtreqqless"
|
|
1601
|
+
"gtrless"
|
|
1602
|
+
"gtrsim"
|
|
1603
|
+
"harrowextender"
|
|
1604
|
+
"hash"
|
|
1605
|
+
"hat"
|
|
1606
|
+
"hatapprox"
|
|
1607
|
+
"heartsuit"
|
|
1608
|
+
"hermitmatrix"
|
|
1609
|
+
"hexagon"
|
|
1610
|
+
"hexagonblack"
|
|
1611
|
+
"hide"
|
|
1612
|
+
"hknearrow"
|
|
1613
|
+
"hknwarrow"
|
|
1614
|
+
"hksearow"
|
|
1615
|
+
"hkswarow"
|
|
1616
|
+
"hookleftarrow"
|
|
1617
|
+
"hookrightarrow"
|
|
1618
|
+
"horizbar"
|
|
1619
|
+
"hourglass"
|
|
1620
|
+
"house"
|
|
1621
|
+
"hrectangle"
|
|
1622
|
+
"hrectangleblack"
|
|
1623
|
+
"hslash"
|
|
1624
|
+
"hyphenbullet"
|
|
1625
|
+
"hzigzag"
|
|
1626
|
+
"iddots"
|
|
1627
|
+
"iff"
|
|
1628
|
+
"ii"
|
|
1629
|
+
"iiiint"
|
|
1630
|
+
"iiint"
|
|
1631
|
+
"iinfin"
|
|
1632
|
+
"iint"
|
|
1633
|
+
"imageof"
|
|
1634
|
+
"imath"
|
|
1635
|
+
"impliedby"
|
|
1636
|
+
"implies"
|
|
1637
|
+
"in"
|
|
1638
|
+
"increment"
|
|
1639
|
+
"infty"
|
|
1640
|
+
"inj"
|
|
1641
|
+
"int"
|
|
1642
|
+
"intBar"
|
|
1643
|
+
"intbar"
|
|
1644
|
+
"intbottom"
|
|
1645
|
+
"intcap"
|
|
1646
|
+
"intclockwise"
|
|
1647
|
+
"intcup"
|
|
1648
|
+
"intercal"
|
|
1649
|
+
"interleave"
|
|
1650
|
+
"intextender"
|
|
1651
|
+
"intlarhk"
|
|
1652
|
+
"intprod"
|
|
1653
|
+
"intprodr"
|
|
1654
|
+
"inttop"
|
|
1655
|
+
"intx"
|
|
1656
|
+
"invamp"
|
|
1657
|
+
"invdiameter"
|
|
1658
|
+
"inversebullet"
|
|
1659
|
+
"inversewhitecircle"
|
|
1660
|
+
"invlazys"
|
|
1661
|
+
"invneg"
|
|
1662
|
+
"invnot"
|
|
1663
|
+
"invsmileface"
|
|
1664
|
+
"invwhitelowerhalfcircle"
|
|
1665
|
+
"invwhiteupperhalfcircle"
|
|
1666
|
+
"iota"
|
|
1667
|
+
"iotaup"
|
|
1668
|
+
"isinE"
|
|
1669
|
+
"isindot"
|
|
1670
|
+
"isinobar"
|
|
1671
|
+
"isins"
|
|
1672
|
+
"isinvb"
|
|
1673
|
+
"jj"
|
|
1674
|
+
"jmath"
|
|
1675
|
+
"jupiter"
|
|
1676
|
+
"kappa"
|
|
1677
|
+
"kappaup"
|
|
1678
|
+
"kernelcontraction"
|
|
1679
|
+
"koppa"
|
|
1680
|
+
"lAngle"
|
|
1681
|
+
"lBrace"
|
|
1682
|
+
"lBrack"
|
|
1683
|
+
"lParen"
|
|
1684
|
+
"lambda"
|
|
1685
|
+
"lambdaup"
|
|
1686
|
+
"land"
|
|
1687
|
+
"lang"
|
|
1688
|
+
"langle"
|
|
1689
|
+
"langledot"
|
|
1690
|
+
"laplac"
|
|
1691
|
+
"lat"
|
|
1692
|
+
"late"
|
|
1693
|
+
"lbag"
|
|
1694
|
+
"lblkbrbrak"
|
|
1695
|
+
"lblot"
|
|
1696
|
+
"lbrace"
|
|
1697
|
+
"lbracelend"
|
|
1698
|
+
"lbracemid"
|
|
1699
|
+
"lbraceuend"
|
|
1700
|
+
"lbrack"
|
|
1701
|
+
"lbrackextender"
|
|
1702
|
+
"lbracklend"
|
|
1703
|
+
"lbracklltick"
|
|
1704
|
+
"lbrackubar"
|
|
1705
|
+
"lbrackuend"
|
|
1706
|
+
"lbrackultick"
|
|
1707
|
+
"lbrbrak"
|
|
1708
|
+
"lceil"
|
|
1709
|
+
"lcurvyangle"
|
|
1710
|
+
"ldots"
|
|
1711
|
+
"le"
|
|
1712
|
+
"leadsto"
|
|
1713
|
+
"leftarrow"
|
|
1714
|
+
"leftarrowapprox"
|
|
1715
|
+
"leftarrowbackapprox"
|
|
1716
|
+
"leftarrowbsimilar"
|
|
1717
|
+
"leftarrowless"
|
|
1718
|
+
"leftarrowonoplus"
|
|
1719
|
+
"leftarrowplus"
|
|
1720
|
+
"leftarrowshortrightarrow"
|
|
1721
|
+
"leftarrowsimilar"
|
|
1722
|
+
"leftarrowsubset"
|
|
1723
|
+
"leftarrowtail"
|
|
1724
|
+
"leftarrowtriangle"
|
|
1725
|
+
"leftarrowx"
|
|
1726
|
+
"leftbarharpoon"
|
|
1727
|
+
"leftbkarrow"
|
|
1728
|
+
"leftcurvedarrow"
|
|
1729
|
+
"leftdasharrow"
|
|
1730
|
+
"leftdbkarrow"
|
|
1731
|
+
"leftdbltail"
|
|
1732
|
+
"leftdotarrow"
|
|
1733
|
+
"leftdowncurvedarrow"
|
|
1734
|
+
"leftfishtail"
|
|
1735
|
+
"leftharpoonaccent"
|
|
1736
|
+
"leftharpoondown"
|
|
1737
|
+
"leftharpoondownbar"
|
|
1738
|
+
"leftharpoonsupdown"
|
|
1739
|
+
"leftharpoonup"
|
|
1740
|
+
"leftharpoonupbar"
|
|
1741
|
+
"leftharpoonupdash"
|
|
1742
|
+
"leftleftarrows"
|
|
1743
|
+
"leftleftharpoons"
|
|
1744
|
+
"leftmoon"
|
|
1745
|
+
"leftouterjoin"
|
|
1746
|
+
"leftrightarrow"
|
|
1747
|
+
"leftrightarrowcircle"
|
|
1748
|
+
"leftrightarrows"
|
|
1749
|
+
"leftrightarrowtriangle"
|
|
1750
|
+
"leftrightharpoon"
|
|
1751
|
+
"leftrightharpoondown"
|
|
1752
|
+
"leftrightharpoondowndown"
|
|
1753
|
+
"leftrightharpoondownup"
|
|
1754
|
+
"leftrightharpoons"
|
|
1755
|
+
"leftrightharpoonsdown"
|
|
1756
|
+
"leftrightharpoonsup"
|
|
1757
|
+
"leftrightharpoonup"
|
|
1758
|
+
"leftrightharpoonupdown"
|
|
1759
|
+
"leftrightharpoonupup"
|
|
1760
|
+
"leftrightsquigarrow"
|
|
1761
|
+
"leftslice"
|
|
1762
|
+
"leftsquigarrow"
|
|
1763
|
+
"lefttail"
|
|
1764
|
+
"leftthreearrows"
|
|
1765
|
+
"leftthreetimes"
|
|
1766
|
+
"leftturn"
|
|
1767
|
+
"leftupdownharpoon"
|
|
1768
|
+
"leftwavearrow"
|
|
1769
|
+
"leftwhitearrow"
|
|
1770
|
+
"leo"
|
|
1771
|
+
"leq"
|
|
1772
|
+
"leqq"
|
|
1773
|
+
"leqqslant"
|
|
1774
|
+
"leqslant"
|
|
1775
|
+
"lescc"
|
|
1776
|
+
"lesdot"
|
|
1777
|
+
"lesdoto"
|
|
1778
|
+
"lesdotor"
|
|
1779
|
+
"lesges"
|
|
1780
|
+
"less"
|
|
1781
|
+
"lessapprox"
|
|
1782
|
+
"lessdot"
|
|
1783
|
+
"lesseqgtr"
|
|
1784
|
+
"lesseqqgtr"
|
|
1785
|
+
"lessgtr"
|
|
1786
|
+
"lesssim"
|
|
1787
|
+
"lfbowtie"
|
|
1788
|
+
"lfloor"
|
|
1789
|
+
"lftimes"
|
|
1790
|
+
"lgE"
|
|
1791
|
+
"lgblkcircle"
|
|
1792
|
+
"lgblksquare"
|
|
1793
|
+
"lgroup"
|
|
1794
|
+
"lgwhtcircle"
|
|
1795
|
+
"lgwhtsquare"
|
|
1796
|
+
"lhd"
|
|
1797
|
+
"libra"
|
|
1798
|
+
"lightning"
|
|
1799
|
+
"limg"
|
|
1800
|
+
"linefeed"
|
|
1801
|
+
"ll"
|
|
1802
|
+
"llangle"
|
|
1803
|
+
"llarc"
|
|
1804
|
+
"llblacktriangle"
|
|
1805
|
+
"llbracket"
|
|
1806
|
+
"llcorner"
|
|
1807
|
+
"llcurly"
|
|
1808
|
+
"lll"
|
|
1809
|
+
"lllnest"
|
|
1810
|
+
"llparenthesis"
|
|
1811
|
+
"lltriangle"
|
|
1812
|
+
"lmoustache"
|
|
1813
|
+
"lnapprox"
|
|
1814
|
+
"lneq"
|
|
1815
|
+
"lneqq"
|
|
1816
|
+
"lnot"
|
|
1817
|
+
"lnsim"
|
|
1818
|
+
"longdashv"
|
|
1819
|
+
"longdivision"
|
|
1820
|
+
"longleftarrow"
|
|
1821
|
+
"longleftrightarrow"
|
|
1822
|
+
"longleftsquigarrow"
|
|
1823
|
+
"longmappedfrom"
|
|
1824
|
+
"longmapsfrom"
|
|
1825
|
+
"longmapsto"
|
|
1826
|
+
"longrightarrow"
|
|
1827
|
+
"longrightsquigarrow"
|
|
1828
|
+
"looparrowleft"
|
|
1829
|
+
"looparrowright"
|
|
1830
|
+
"lor"
|
|
1831
|
+
"lowint"
|
|
1832
|
+
"lozenge"
|
|
1833
|
+
"lozengeminus"
|
|
1834
|
+
"lparen"
|
|
1835
|
+
"lparenextender"
|
|
1836
|
+
"lparenlend"
|
|
1837
|
+
"lparenless"
|
|
1838
|
+
"lparenuend"
|
|
1839
|
+
"lrarc"
|
|
1840
|
+
"lrblacktriangle"
|
|
1841
|
+
"lrcorner"
|
|
1842
|
+
"lrtimes"
|
|
1843
|
+
"lrtriangle"
|
|
1844
|
+
"lrtriangleeq"
|
|
1845
|
+
"lsime"
|
|
1846
|
+
"lsimg"
|
|
1847
|
+
"lsqhook"
|
|
1848
|
+
"lt"
|
|
1849
|
+
"ltcc"
|
|
1850
|
+
"ltcir"
|
|
1851
|
+
"ltimes"
|
|
1852
|
+
"ltlarr"
|
|
1853
|
+
"ltquest"
|
|
1854
|
+
"ltrivb"
|
|
1855
|
+
"lvboxline"
|
|
1856
|
+
"lvec"
|
|
1857
|
+
"lvzigzag"
|
|
1858
|
+
"male"
|
|
1859
|
+
"maltese"
|
|
1860
|
+
"mappedfrom"
|
|
1861
|
+
"mapsdown"
|
|
1862
|
+
"mapsfrom"
|
|
1863
|
+
"mapsto"
|
|
1864
|
+
"mapsup"
|
|
1865
|
+
"mathcent"
|
|
1866
|
+
"mathcolon"
|
|
1867
|
+
"mathdollar"
|
|
1868
|
+
"matheth"
|
|
1869
|
+
"mathratio"
|
|
1870
|
+
"mathring"
|
|
1871
|
+
"mathslash"
|
|
1872
|
+
"mathsterling"
|
|
1873
|
+
"mbfA"
|
|
1874
|
+
"mbfAlpha"
|
|
1875
|
+
"mbfB"
|
|
1876
|
+
"mbfBeta"
|
|
1877
|
+
"mbfC"
|
|
1878
|
+
"mbfChi"
|
|
1879
|
+
"mbfD"
|
|
1880
|
+
"mbfDelta"
|
|
1881
|
+
"mbfDigamma"
|
|
1882
|
+
"mbfE"
|
|
1883
|
+
"mbfEpsilon"
|
|
1884
|
+
"mbfEta"
|
|
1885
|
+
"mbfF"
|
|
1886
|
+
"mbfG"
|
|
1887
|
+
"mbfGamma"
|
|
1888
|
+
"mbfH"
|
|
1889
|
+
"mbfI"
|
|
1890
|
+
"mbfIota"
|
|
1891
|
+
"mbfJ"
|
|
1892
|
+
"mbfK"
|
|
1893
|
+
"mbfKappa"
|
|
1894
|
+
"mbfL"
|
|
1895
|
+
"mbfLambda"
|
|
1896
|
+
"mbfM"
|
|
1897
|
+
"mbfMu"
|
|
1898
|
+
"mbfN"
|
|
1899
|
+
"mbfNu"
|
|
1900
|
+
"mbfO"
|
|
1901
|
+
"mbfOmega"
|
|
1902
|
+
"mbfOmicron"
|
|
1903
|
+
"mbfP"
|
|
1904
|
+
"mbfPhi"
|
|
1905
|
+
"mbfPi"
|
|
1906
|
+
"mbfPsi"
|
|
1907
|
+
"mbfQ"
|
|
1908
|
+
"mbfR"
|
|
1909
|
+
"mbfRho"
|
|
1910
|
+
"mbfS"
|
|
1911
|
+
"mbfSigma"
|
|
1912
|
+
"mbfT"
|
|
1913
|
+
"mbfTau"
|
|
1914
|
+
"mbfTheta"
|
|
1915
|
+
"mbfU"
|
|
1916
|
+
"mbfUpsilon"
|
|
1917
|
+
"mbfV"
|
|
1918
|
+
"mbfW"
|
|
1919
|
+
"mbfX"
|
|
1920
|
+
"mbfXi"
|
|
1921
|
+
"mbfY"
|
|
1922
|
+
"mbfZ"
|
|
1923
|
+
"mbfZeta"
|
|
1924
|
+
"mbfa"
|
|
1925
|
+
"mbfalpha"
|
|
1926
|
+
"mbfb"
|
|
1927
|
+
"mbfbeta"
|
|
1928
|
+
"mbfc"
|
|
1929
|
+
"mbfchi"
|
|
1930
|
+
"mbfd"
|
|
1931
|
+
"mbfdelta"
|
|
1932
|
+
"mbfdigamma"
|
|
1933
|
+
"mbfe"
|
|
1934
|
+
"mbfepsilon"
|
|
1935
|
+
"mbfeta"
|
|
1936
|
+
"mbff"
|
|
1937
|
+
"mbffrakA"
|
|
1938
|
+
"mbffrakB"
|
|
1939
|
+
"mbffrakC"
|
|
1940
|
+
"mbffrakD"
|
|
1941
|
+
"mbffrakE"
|
|
1942
|
+
"mbffrakF"
|
|
1943
|
+
"mbffrakG"
|
|
1944
|
+
"mbffrakH"
|
|
1945
|
+
"mbffrakI"
|
|
1946
|
+
"mbffrakJ"
|
|
1947
|
+
"mbffrakK"
|
|
1948
|
+
"mbffrakL"
|
|
1949
|
+
"mbffrakM"
|
|
1950
|
+
"mbffrakN"
|
|
1951
|
+
"mbffrakO"
|
|
1952
|
+
"mbffrakP"
|
|
1953
|
+
"mbffrakQ"
|
|
1954
|
+
"mbffrakR"
|
|
1955
|
+
"mbffrakS"
|
|
1956
|
+
"mbffrakT"
|
|
1957
|
+
"mbffrakU"
|
|
1958
|
+
"mbffrakV"
|
|
1959
|
+
"mbffrakW"
|
|
1960
|
+
"mbffrakX"
|
|
1961
|
+
"mbffrakY"
|
|
1962
|
+
"mbffrakZ"
|
|
1963
|
+
"mbffraka"
|
|
1964
|
+
"mbffrakb"
|
|
1965
|
+
"mbffrakc"
|
|
1966
|
+
"mbffrakd"
|
|
1967
|
+
"mbffrake"
|
|
1968
|
+
"mbffrakf"
|
|
1969
|
+
"mbffrakg"
|
|
1970
|
+
"mbffrakh"
|
|
1971
|
+
"mbffraki"
|
|
1972
|
+
"mbffrakj"
|
|
1973
|
+
"mbffrakk"
|
|
1974
|
+
"mbffrakl"
|
|
1975
|
+
"mbffrakm"
|
|
1976
|
+
"mbffrakn"
|
|
1977
|
+
"mbffrako"
|
|
1978
|
+
"mbffrakp"
|
|
1979
|
+
"mbffrakq"
|
|
1980
|
+
"mbffrakr"
|
|
1981
|
+
"mbffraks"
|
|
1982
|
+
"mbffrakt"
|
|
1983
|
+
"mbffraku"
|
|
1984
|
+
"mbffrakv"
|
|
1985
|
+
"mbffrakw"
|
|
1986
|
+
"mbffrakx"
|
|
1987
|
+
"mbffraky"
|
|
1988
|
+
"mbffrakz"
|
|
1989
|
+
"mbfg"
|
|
1990
|
+
"mbfgamma"
|
|
1991
|
+
"mbfh"
|
|
1992
|
+
"mbfi"
|
|
1993
|
+
"mbfiota"
|
|
1994
|
+
"mbfitA"
|
|
1995
|
+
"mbfitAlpha"
|
|
1996
|
+
"mbfitB"
|
|
1997
|
+
"mbfitBeta"
|
|
1998
|
+
"mbfitC"
|
|
1999
|
+
"mbfitChi"
|
|
2000
|
+
"mbfitD"
|
|
2001
|
+
"mbfitDelta"
|
|
2002
|
+
"mbfitE"
|
|
2003
|
+
"mbfitEpsilon"
|
|
2004
|
+
"mbfitEta"
|
|
2005
|
+
"mbfitF"
|
|
2006
|
+
"mbfitG"
|
|
2007
|
+
"mbfitGamma"
|
|
2008
|
+
"mbfitH"
|
|
2009
|
+
"mbfitI"
|
|
2010
|
+
"mbfitIota"
|
|
2011
|
+
"mbfitJ"
|
|
2012
|
+
"mbfitK"
|
|
2013
|
+
"mbfitKappa"
|
|
2014
|
+
"mbfitL"
|
|
2015
|
+
"mbfitLambda"
|
|
2016
|
+
"mbfitM"
|
|
2017
|
+
"mbfitMu"
|
|
2018
|
+
"mbfitN"
|
|
2019
|
+
"mbfitNu"
|
|
2020
|
+
"mbfitO"
|
|
2021
|
+
"mbfitOmega"
|
|
2022
|
+
"mbfitOmicron"
|
|
2023
|
+
"mbfitP"
|
|
2024
|
+
"mbfitPhi"
|
|
2025
|
+
"mbfitPi"
|
|
2026
|
+
"mbfitPsi"
|
|
2027
|
+
"mbfitQ"
|
|
2028
|
+
"mbfitR"
|
|
2029
|
+
"mbfitRho"
|
|
2030
|
+
"mbfitS"
|
|
2031
|
+
"mbfitSigma"
|
|
2032
|
+
"mbfitT"
|
|
2033
|
+
"mbfitTau"
|
|
2034
|
+
"mbfitTheta"
|
|
2035
|
+
"mbfitU"
|
|
2036
|
+
"mbfitUpsilon"
|
|
2037
|
+
"mbfitV"
|
|
2038
|
+
"mbfitW"
|
|
2039
|
+
"mbfitX"
|
|
2040
|
+
"mbfitXi"
|
|
2041
|
+
"mbfitY"
|
|
2042
|
+
"mbfitZ"
|
|
2043
|
+
"mbfitZeta"
|
|
2044
|
+
"mbfita"
|
|
2045
|
+
"mbfitalpha"
|
|
2046
|
+
"mbfitb"
|
|
2047
|
+
"mbfitbeta"
|
|
2048
|
+
"mbfitc"
|
|
2049
|
+
"mbfitchi"
|
|
2050
|
+
"mbfitd"
|
|
2051
|
+
"mbfitdelta"
|
|
2052
|
+
"mbfite"
|
|
2053
|
+
"mbfitepsilon"
|
|
2054
|
+
"mbfiteta"
|
|
2055
|
+
"mbfitf"
|
|
2056
|
+
"mbfitg"
|
|
2057
|
+
"mbfitgamma"
|
|
2058
|
+
"mbfith"
|
|
2059
|
+
"mbfiti"
|
|
2060
|
+
"mbfitiota"
|
|
2061
|
+
"mbfitj"
|
|
2062
|
+
"mbfitk"
|
|
2063
|
+
"mbfitkappa"
|
|
2064
|
+
"mbfitl"
|
|
2065
|
+
"mbfitlambda"
|
|
2066
|
+
"mbfitm"
|
|
2067
|
+
"mbfitmu"
|
|
2068
|
+
"mbfitn"
|
|
2069
|
+
"mbfitnabla"
|
|
2070
|
+
"mbfitnu"
|
|
2071
|
+
"mbfito"
|
|
2072
|
+
"mbfitomega"
|
|
2073
|
+
"mbfitomicron"
|
|
2074
|
+
"mbfitp"
|
|
2075
|
+
"mbfitpartial"
|
|
2076
|
+
"mbfitphi"
|
|
2077
|
+
"mbfitpi"
|
|
2078
|
+
"mbfitpsi"
|
|
2079
|
+
"mbfitq"
|
|
2080
|
+
"mbfitr"
|
|
2081
|
+
"mbfitrho"
|
|
2082
|
+
"mbfits"
|
|
2083
|
+
"mbfitsansA"
|
|
2084
|
+
"mbfitsansAlpha"
|
|
2085
|
+
"mbfitsansB"
|
|
2086
|
+
"mbfitsansBeta"
|
|
2087
|
+
"mbfitsansC"
|
|
2088
|
+
"mbfitsansChi"
|
|
2089
|
+
"mbfitsansD"
|
|
2090
|
+
"mbfitsansDelta"
|
|
2091
|
+
"mbfitsansE"
|
|
2092
|
+
"mbfitsansEpsilon"
|
|
2093
|
+
"mbfitsansEta"
|
|
2094
|
+
"mbfitsansF"
|
|
2095
|
+
"mbfitsansG"
|
|
2096
|
+
"mbfitsansGamma"
|
|
2097
|
+
"mbfitsansH"
|
|
2098
|
+
"mbfitsansI"
|
|
2099
|
+
"mbfitsansIota"
|
|
2100
|
+
"mbfitsansJ"
|
|
2101
|
+
"mbfitsansK"
|
|
2102
|
+
"mbfitsansKappa"
|
|
2103
|
+
"mbfitsansL"
|
|
2104
|
+
"mbfitsansLambda"
|
|
2105
|
+
"mbfitsansM"
|
|
2106
|
+
"mbfitsansMu"
|
|
2107
|
+
"mbfitsansN"
|
|
2108
|
+
"mbfitsansNu"
|
|
2109
|
+
"mbfitsansO"
|
|
2110
|
+
"mbfitsansOmega"
|
|
2111
|
+
"mbfitsansOmicron"
|
|
2112
|
+
"mbfitsansP"
|
|
2113
|
+
"mbfitsansPhi"
|
|
2114
|
+
"mbfitsansPi"
|
|
2115
|
+
"mbfitsansPsi"
|
|
2116
|
+
"mbfitsansQ"
|
|
2117
|
+
"mbfitsansR"
|
|
2118
|
+
"mbfitsansRho"
|
|
2119
|
+
"mbfitsansS"
|
|
2120
|
+
"mbfitsansSigma"
|
|
2121
|
+
"mbfitsansT"
|
|
2122
|
+
"mbfitsansTau"
|
|
2123
|
+
"mbfitsansTheta"
|
|
2124
|
+
"mbfitsansU"
|
|
2125
|
+
"mbfitsansUpsilon"
|
|
2126
|
+
"mbfitsansV"
|
|
2127
|
+
"mbfitsansW"
|
|
2128
|
+
"mbfitsansX"
|
|
2129
|
+
"mbfitsansXi"
|
|
2130
|
+
"mbfitsansY"
|
|
2131
|
+
"mbfitsansZ"
|
|
2132
|
+
"mbfitsansZeta"
|
|
2133
|
+
"mbfitsansa"
|
|
2134
|
+
"mbfitsansalpha"
|
|
2135
|
+
"mbfitsansb"
|
|
2136
|
+
"mbfitsansbeta"
|
|
2137
|
+
"mbfitsansc"
|
|
2138
|
+
"mbfitsanschi"
|
|
2139
|
+
"mbfitsansd"
|
|
2140
|
+
"mbfitsansdelta"
|
|
2141
|
+
"mbfitsanse"
|
|
2142
|
+
"mbfitsansepsilon"
|
|
2143
|
+
"mbfitsanseta"
|
|
2144
|
+
"mbfitsansf"
|
|
2145
|
+
"mbfitsansg"
|
|
2146
|
+
"mbfitsansgamma"
|
|
2147
|
+
"mbfitsansh"
|
|
2148
|
+
"mbfitsansi"
|
|
2149
|
+
"mbfitsansiota"
|
|
2150
|
+
"mbfitsansj"
|
|
2151
|
+
"mbfitsansk"
|
|
2152
|
+
"mbfitsanskappa"
|
|
2153
|
+
"mbfitsansl"
|
|
2154
|
+
"mbfitsanslambda"
|
|
2155
|
+
"mbfitsansm"
|
|
2156
|
+
"mbfitsansmu"
|
|
2157
|
+
"mbfitsansn"
|
|
2158
|
+
"mbfitsansnabla"
|
|
2159
|
+
"mbfitsansnu"
|
|
2160
|
+
"mbfitsanso"
|
|
2161
|
+
"mbfitsansomega"
|
|
2162
|
+
"mbfitsansomicron"
|
|
2163
|
+
"mbfitsansp"
|
|
2164
|
+
"mbfitsanspartial"
|
|
2165
|
+
"mbfitsansphi"
|
|
2166
|
+
"mbfitsanspi"
|
|
2167
|
+
"mbfitsanspsi"
|
|
2168
|
+
"mbfitsansq"
|
|
2169
|
+
"mbfitsansr"
|
|
2170
|
+
"mbfitsansrho"
|
|
2171
|
+
"mbfitsanss"
|
|
2172
|
+
"mbfitsanssigma"
|
|
2173
|
+
"mbfitsanst"
|
|
2174
|
+
"mbfitsanstau"
|
|
2175
|
+
"mbfitsanstheta"
|
|
2176
|
+
"mbfitsansu"
|
|
2177
|
+
"mbfitsansupsilon"
|
|
2178
|
+
"mbfitsansv"
|
|
2179
|
+
"mbfitsansvarTheta"
|
|
2180
|
+
"mbfitsansvarepsilon"
|
|
2181
|
+
"mbfitsansvarkappa"
|
|
2182
|
+
"mbfitsansvarphi"
|
|
2183
|
+
"mbfitsansvarpi"
|
|
2184
|
+
"mbfitsansvarrho"
|
|
2185
|
+
"mbfitsansvarsigma"
|
|
2186
|
+
"mbfitsansvartheta"
|
|
2187
|
+
"mbfitsansw"
|
|
2188
|
+
"mbfitsansx"
|
|
2189
|
+
"mbfitsansxi"
|
|
2190
|
+
"mbfitsansy"
|
|
2191
|
+
"mbfitsansz"
|
|
2192
|
+
"mbfitsanszeta"
|
|
2193
|
+
"mbfitsigma"
|
|
2194
|
+
"mbfitt"
|
|
2195
|
+
"mbfittau"
|
|
2196
|
+
"mbfittheta"
|
|
2197
|
+
"mbfitu"
|
|
2198
|
+
"mbfitupsilon"
|
|
2199
|
+
"mbfitv"
|
|
2200
|
+
"mbfitvarTheta"
|
|
2201
|
+
"mbfitvarepsilon"
|
|
2202
|
+
"mbfitvarkappa"
|
|
2203
|
+
"mbfitvarphi"
|
|
2204
|
+
"mbfitvarpi"
|
|
2205
|
+
"mbfitvarrho"
|
|
2206
|
+
"mbfitvarsigma"
|
|
2207
|
+
"mbfitvartheta"
|
|
2208
|
+
"mbfitw"
|
|
2209
|
+
"mbfitx"
|
|
2210
|
+
"mbfitxi"
|
|
2211
|
+
"mbfity"
|
|
2212
|
+
"mbfitz"
|
|
2213
|
+
"mbfitzeta"
|
|
2214
|
+
"mbfj"
|
|
2215
|
+
"mbfk"
|
|
2216
|
+
"mbfkappa"
|
|
2217
|
+
"mbfl"
|
|
2218
|
+
"mbflambda"
|
|
2219
|
+
"mbfm"
|
|
2220
|
+
"mbfmu"
|
|
2221
|
+
"mbfn"
|
|
2222
|
+
"mbfnabla"
|
|
2223
|
+
"mbfnu"
|
|
2224
|
+
"mbfo"
|
|
2225
|
+
"mbfomega"
|
|
2226
|
+
"mbfomicron"
|
|
2227
|
+
"mbfp"
|
|
2228
|
+
"mbfpartial"
|
|
2229
|
+
"mbfphi"
|
|
2230
|
+
"mbfpi"
|
|
2231
|
+
"mbfpsi"
|
|
2232
|
+
"mbfq"
|
|
2233
|
+
"mbfr"
|
|
2234
|
+
"mbfrho"
|
|
2235
|
+
"mbfs"
|
|
2236
|
+
"mbfsansA"
|
|
2237
|
+
"mbfsansAlpha"
|
|
2238
|
+
"mbfsansB"
|
|
2239
|
+
"mbfsansBeta"
|
|
2240
|
+
"mbfsansC"
|
|
2241
|
+
"mbfsansChi"
|
|
2242
|
+
"mbfsansD"
|
|
2243
|
+
"mbfsansDelta"
|
|
2244
|
+
"mbfsansE"
|
|
2245
|
+
"mbfsansEpsilon"
|
|
2246
|
+
"mbfsansEta"
|
|
2247
|
+
"mbfsansF"
|
|
2248
|
+
"mbfsansG"
|
|
2249
|
+
"mbfsansGamma"
|
|
2250
|
+
"mbfsansH"
|
|
2251
|
+
"mbfsansI"
|
|
2252
|
+
"mbfsansIota"
|
|
2253
|
+
"mbfsansJ"
|
|
2254
|
+
"mbfsansK"
|
|
2255
|
+
"mbfsansKappa"
|
|
2256
|
+
"mbfsansL"
|
|
2257
|
+
"mbfsansLambda"
|
|
2258
|
+
"mbfsansM"
|
|
2259
|
+
"mbfsansMu"
|
|
2260
|
+
"mbfsansN"
|
|
2261
|
+
"mbfsansNu"
|
|
2262
|
+
"mbfsansO"
|
|
2263
|
+
"mbfsansOmega"
|
|
2264
|
+
"mbfsansOmicron"
|
|
2265
|
+
"mbfsansP"
|
|
2266
|
+
"mbfsansPhi"
|
|
2267
|
+
"mbfsansPi"
|
|
2268
|
+
"mbfsansPsi"
|
|
2269
|
+
"mbfsansQ"
|
|
2270
|
+
"mbfsansR"
|
|
2271
|
+
"mbfsansRho"
|
|
2272
|
+
"mbfsansS"
|
|
2273
|
+
"mbfsansSigma"
|
|
2274
|
+
"mbfsansT"
|
|
2275
|
+
"mbfsansTau"
|
|
2276
|
+
"mbfsansTheta"
|
|
2277
|
+
"mbfsansU"
|
|
2278
|
+
"mbfsansUpsilon"
|
|
2279
|
+
"mbfsansV"
|
|
2280
|
+
"mbfsansW"
|
|
2281
|
+
"mbfsansX"
|
|
2282
|
+
"mbfsansXi"
|
|
2283
|
+
"mbfsansY"
|
|
2284
|
+
"mbfsansZ"
|
|
2285
|
+
"mbfsansZeta"
|
|
2286
|
+
"mbfsansa"
|
|
2287
|
+
"mbfsansalpha"
|
|
2288
|
+
"mbfsansb"
|
|
2289
|
+
"mbfsansbeta"
|
|
2290
|
+
"mbfsansc"
|
|
2291
|
+
"mbfsanschi"
|
|
2292
|
+
"mbfsansd"
|
|
2293
|
+
"mbfsansdelta"
|
|
2294
|
+
"mbfsanse"
|
|
2295
|
+
"mbfsanseight"
|
|
2296
|
+
"mbfsansepsilon"
|
|
2297
|
+
"mbfsanseta"
|
|
2298
|
+
"mbfsansf"
|
|
2299
|
+
"mbfsansfive"
|
|
2300
|
+
"mbfsansfour"
|
|
2301
|
+
"mbfsansg"
|
|
2302
|
+
"mbfsansgamma"
|
|
2303
|
+
"mbfsansh"
|
|
2304
|
+
"mbfsansi"
|
|
2305
|
+
"mbfsansiota"
|
|
2306
|
+
"mbfsansj"
|
|
2307
|
+
"mbfsansk"
|
|
2308
|
+
"mbfsanskappa"
|
|
2309
|
+
"mbfsansl"
|
|
2310
|
+
"mbfsanslambda"
|
|
2311
|
+
"mbfsansm"
|
|
2312
|
+
"mbfsansmu"
|
|
2313
|
+
"mbfsansn"
|
|
2314
|
+
"mbfsansnabla"
|
|
2315
|
+
"mbfsansnine"
|
|
2316
|
+
"mbfsansnu"
|
|
2317
|
+
"mbfsanso"
|
|
2318
|
+
"mbfsansomega"
|
|
2319
|
+
"mbfsansomicron"
|
|
2320
|
+
"mbfsansone"
|
|
2321
|
+
"mbfsansp"
|
|
2322
|
+
"mbfsanspartial"
|
|
2323
|
+
"mbfsansphi"
|
|
2324
|
+
"mbfsanspi"
|
|
2325
|
+
"mbfsanspsi"
|
|
2326
|
+
"mbfsansq"
|
|
2327
|
+
"mbfsansr"
|
|
2328
|
+
"mbfsansrho"
|
|
2329
|
+
"mbfsanss"
|
|
2330
|
+
"mbfsansseven"
|
|
2331
|
+
"mbfsanssigma"
|
|
2332
|
+
"mbfsanssix"
|
|
2333
|
+
"mbfsanst"
|
|
2334
|
+
"mbfsanstau"
|
|
2335
|
+
"mbfsanstheta"
|
|
2336
|
+
"mbfsansthree"
|
|
2337
|
+
"mbfsanstwo"
|
|
2338
|
+
"mbfsansu"
|
|
2339
|
+
"mbfsansupsilon"
|
|
2340
|
+
"mbfsansv"
|
|
2341
|
+
"mbfsansvarTheta"
|
|
2342
|
+
"mbfsansvarepsilon"
|
|
2343
|
+
"mbfsansvarkappa"
|
|
2344
|
+
"mbfsansvarphi"
|
|
2345
|
+
"mbfsansvarpi"
|
|
2346
|
+
"mbfsansvarrho"
|
|
2347
|
+
"mbfsansvarsigma"
|
|
2348
|
+
"mbfsansvartheta"
|
|
2349
|
+
"mbfsansw"
|
|
2350
|
+
"mbfsansx"
|
|
2351
|
+
"mbfsansxi"
|
|
2352
|
+
"mbfsansy"
|
|
2353
|
+
"mbfsansz"
|
|
2354
|
+
"mbfsanszero"
|
|
2355
|
+
"mbfsanszeta"
|
|
2356
|
+
"mbfscrA"
|
|
2357
|
+
"mbfscrB"
|
|
2358
|
+
"mbfscrC"
|
|
2359
|
+
"mbfscrD"
|
|
2360
|
+
"mbfscrE"
|
|
2361
|
+
"mbfscrF"
|
|
2362
|
+
"mbfscrG"
|
|
2363
|
+
"mbfscrH"
|
|
2364
|
+
"mbfscrI"
|
|
2365
|
+
"mbfscrJ"
|
|
2366
|
+
"mbfscrK"
|
|
2367
|
+
"mbfscrL"
|
|
2368
|
+
"mbfscrM"
|
|
2369
|
+
"mbfscrN"
|
|
2370
|
+
"mbfscrO"
|
|
2371
|
+
"mbfscrP"
|
|
2372
|
+
"mbfscrQ"
|
|
2373
|
+
"mbfscrR"
|
|
2374
|
+
"mbfscrS"
|
|
2375
|
+
"mbfscrT"
|
|
2376
|
+
"mbfscrU"
|
|
2377
|
+
"mbfscrV"
|
|
2378
|
+
"mbfscrW"
|
|
2379
|
+
"mbfscrX"
|
|
2380
|
+
"mbfscrY"
|
|
2381
|
+
"mbfscrZ"
|
|
2382
|
+
"mbfscra"
|
|
2383
|
+
"mbfscrb"
|
|
2384
|
+
"mbfscrc"
|
|
2385
|
+
"mbfscrd"
|
|
2386
|
+
"mbfscre"
|
|
2387
|
+
"mbfscrf"
|
|
2388
|
+
"mbfscrg"
|
|
2389
|
+
"mbfscrh"
|
|
2390
|
+
"mbfscri"
|
|
2391
|
+
"mbfscrj"
|
|
2392
|
+
"mbfscrk"
|
|
2393
|
+
"mbfscrl"
|
|
2394
|
+
"mbfscrm"
|
|
2395
|
+
"mbfscrn"
|
|
2396
|
+
"mbfscro"
|
|
2397
|
+
"mbfscrp"
|
|
2398
|
+
"mbfscrq"
|
|
2399
|
+
"mbfscrr"
|
|
2400
|
+
"mbfscrs"
|
|
2401
|
+
"mbfscrt"
|
|
2402
|
+
"mbfscru"
|
|
2403
|
+
"mbfscrv"
|
|
2404
|
+
"mbfscrw"
|
|
2405
|
+
"mbfscrx"
|
|
2406
|
+
"mbfscry"
|
|
2407
|
+
"mbfscrz"
|
|
2408
|
+
"mbfsigma"
|
|
2409
|
+
"mbft"
|
|
2410
|
+
"mbftau"
|
|
2411
|
+
"mbftheta"
|
|
2412
|
+
"mbfu"
|
|
2413
|
+
"mbfupsilon"
|
|
2414
|
+
"mbfv"
|
|
2415
|
+
"mbfvarTheta"
|
|
2416
|
+
"mbfvarepsilon"
|
|
2417
|
+
"mbfvarkappa"
|
|
2418
|
+
"mbfvarphi"
|
|
2419
|
+
"mbfvarpi"
|
|
2420
|
+
"mbfvarrho"
|
|
2421
|
+
"mbfvarsigma"
|
|
2422
|
+
"mbfvartheta"
|
|
2423
|
+
"mbfw"
|
|
2424
|
+
"mbfx"
|
|
2425
|
+
"mbfxi"
|
|
2426
|
+
"mbfy"
|
|
2427
|
+
"mbfz"
|
|
2428
|
+
"mbfzeta"
|
|
2429
|
+
"mdblkcircle"
|
|
2430
|
+
"mdblkdiamond"
|
|
2431
|
+
"mdblklozenge"
|
|
2432
|
+
"mdblksquare"
|
|
2433
|
+
"mdlgblkcircle"
|
|
2434
|
+
"mdlgblkdiamond"
|
|
2435
|
+
"mdlgblklozenge"
|
|
2436
|
+
"mdlgblksquare"
|
|
2437
|
+
"mdlgwhtcircle"
|
|
2438
|
+
"mdlgwhtdiamond"
|
|
2439
|
+
"mdlgwhtlozenge"
|
|
2440
|
+
"mdlgwhtsquare"
|
|
2441
|
+
"mdsmblkcircle"
|
|
2442
|
+
"mdsmblksquare"
|
|
2443
|
+
"mdsmwhtcircle"
|
|
2444
|
+
"mdsmwhtsquare"
|
|
2445
|
+
"mdwhtcircle"
|
|
2446
|
+
"mdwhtdiamond"
|
|
2447
|
+
"mdwhtlozenge"
|
|
2448
|
+
"mdwhtsquare"
|
|
2449
|
+
"measangledltosw"
|
|
2450
|
+
"measangledrtose"
|
|
2451
|
+
"measangleldtosw"
|
|
2452
|
+
"measanglelutonw"
|
|
2453
|
+
"measanglerdtose"
|
|
2454
|
+
"measanglerutone"
|
|
2455
|
+
"measangleultonw"
|
|
2456
|
+
"measangleurtone"
|
|
2457
|
+
"measeq"
|
|
2458
|
+
"measuredangle"
|
|
2459
|
+
"measuredangleleft"
|
|
2460
|
+
"measuredrightangle"
|
|
2461
|
+
"medblackstar"
|
|
2462
|
+
"medbullet"
|
|
2463
|
+
"medcirc"
|
|
2464
|
+
"medspace"
|
|
2465
|
+
"medwhitestar"
|
|
2466
|
+
"mercury"
|
|
2467
|
+
"mfrakA"
|
|
2468
|
+
"mfrakB"
|
|
2469
|
+
"mfrakC"
|
|
2470
|
+
"mfrakD"
|
|
2471
|
+
"mfrakE"
|
|
2472
|
+
"mfrakF"
|
|
2473
|
+
"mfrakG"
|
|
2474
|
+
"mfrakH"
|
|
2475
|
+
"mfrakJ"
|
|
2476
|
+
"mfrakK"
|
|
2477
|
+
"mfrakL"
|
|
2478
|
+
"mfrakM"
|
|
2479
|
+
"mfrakN"
|
|
2480
|
+
"mfrakO"
|
|
2481
|
+
"mfrakP"
|
|
2482
|
+
"mfrakQ"
|
|
2483
|
+
"mfrakS"
|
|
2484
|
+
"mfrakT"
|
|
2485
|
+
"mfrakU"
|
|
2486
|
+
"mfrakV"
|
|
2487
|
+
"mfrakW"
|
|
2488
|
+
"mfrakX"
|
|
2489
|
+
"mfrakY"
|
|
2490
|
+
"mfrakZ"
|
|
2491
|
+
"mfraka"
|
|
2492
|
+
"mfrakb"
|
|
2493
|
+
"mfrakc"
|
|
2494
|
+
"mfrakd"
|
|
2495
|
+
"mfrake"
|
|
2496
|
+
"mfrakf"
|
|
2497
|
+
"mfrakg"
|
|
2498
|
+
"mfrakh"
|
|
2499
|
+
"mfraki"
|
|
2500
|
+
"mfrakj"
|
|
2501
|
+
"mfrakk"
|
|
2502
|
+
"mfrakl"
|
|
2503
|
+
"mfrakm"
|
|
2504
|
+
"mfrakn"
|
|
2505
|
+
"mfrako"
|
|
2506
|
+
"mfrakp"
|
|
2507
|
+
"mfrakq"
|
|
2508
|
+
"mfrakr"
|
|
2509
|
+
"mfraks"
|
|
2510
|
+
"mfrakt"
|
|
2511
|
+
"mfraku"
|
|
2512
|
+
"mfrakv"
|
|
2513
|
+
"mfrakw"
|
|
2514
|
+
"mfrakx"
|
|
2515
|
+
"mfraky"
|
|
2516
|
+
"mfrakz"
|
|
2517
|
+
"mho"
|
|
2518
|
+
"mid"
|
|
2519
|
+
"midbarvee"
|
|
2520
|
+
"midbarwedge"
|
|
2521
|
+
"midcir"
|
|
2522
|
+
"minus"
|
|
2523
|
+
"minusdot"
|
|
2524
|
+
"minusfdots"
|
|
2525
|
+
"minusrdots"
|
|
2526
|
+
"mitA"
|
|
2527
|
+
"mitAlpha"
|
|
2528
|
+
"mitB"
|
|
2529
|
+
"mitBbbD"
|
|
2530
|
+
"mitBbbd"
|
|
2531
|
+
"mitBbbe"
|
|
2532
|
+
"mitBbbi"
|
|
2533
|
+
"mitBbbj"
|
|
2534
|
+
"mitBeta"
|
|
2535
|
+
"mitC"
|
|
2536
|
+
"mitChi"
|
|
2537
|
+
"mitD"
|
|
2538
|
+
"mitDelta"
|
|
2539
|
+
"mitE"
|
|
2540
|
+
"mitEpsilon"
|
|
2541
|
+
"mitEta"
|
|
2542
|
+
"mitF"
|
|
2543
|
+
"mitG"
|
|
2544
|
+
"mitGamma"
|
|
2545
|
+
"mitH"
|
|
2546
|
+
"mitI"
|
|
2547
|
+
"mitIota"
|
|
2548
|
+
"mitJ"
|
|
2549
|
+
"mitK"
|
|
2550
|
+
"mitKappa"
|
|
2551
|
+
"mitL"
|
|
2552
|
+
"mitLambda"
|
|
2553
|
+
"mitM"
|
|
2554
|
+
"mitMu"
|
|
2555
|
+
"mitN"
|
|
2556
|
+
"mitNu"
|
|
2557
|
+
"mitO"
|
|
2558
|
+
"mitOmega"
|
|
2559
|
+
"mitOmicron"
|
|
2560
|
+
"mitP"
|
|
2561
|
+
"mitPhi"
|
|
2562
|
+
"mitPi"
|
|
2563
|
+
"mitPsi"
|
|
2564
|
+
"mitQ"
|
|
2565
|
+
"mitR"
|
|
2566
|
+
"mitRho"
|
|
2567
|
+
"mitS"
|
|
2568
|
+
"mitSigma"
|
|
2569
|
+
"mitT"
|
|
2570
|
+
"mitTau"
|
|
2571
|
+
"mitTheta"
|
|
2572
|
+
"mitU"
|
|
2573
|
+
"mitUpsilon"
|
|
2574
|
+
"mitV"
|
|
2575
|
+
"mitW"
|
|
2576
|
+
"mitX"
|
|
2577
|
+
"mitXi"
|
|
2578
|
+
"mitY"
|
|
2579
|
+
"mitZ"
|
|
2580
|
+
"mitZeta"
|
|
2581
|
+
"mita"
|
|
2582
|
+
"mitalpha"
|
|
2583
|
+
"mitb"
|
|
2584
|
+
"mitbeta"
|
|
2585
|
+
"mitc"
|
|
2586
|
+
"mitchi"
|
|
2587
|
+
"mitd"
|
|
2588
|
+
"mitdelta"
|
|
2589
|
+
"mite"
|
|
2590
|
+
"mitepsilon"
|
|
2591
|
+
"miteta"
|
|
2592
|
+
"mitf"
|
|
2593
|
+
"mitg"
|
|
2594
|
+
"mitgamma"
|
|
2595
|
+
"miti"
|
|
2596
|
+
"mitiota"
|
|
2597
|
+
"mitj"
|
|
2598
|
+
"mitk"
|
|
2599
|
+
"mitkappa"
|
|
2600
|
+
"mitl"
|
|
2601
|
+
"mitlambda"
|
|
2602
|
+
"mitm"
|
|
2603
|
+
"mitmu"
|
|
2604
|
+
"mitn"
|
|
2605
|
+
"mitnabla"
|
|
2606
|
+
"mitnu"
|
|
2607
|
+
"mito"
|
|
2608
|
+
"mitomega"
|
|
2609
|
+
"mitomicron"
|
|
2610
|
+
"mitp"
|
|
2611
|
+
"mitpartial"
|
|
2612
|
+
"mitphi"
|
|
2613
|
+
"mitpi"
|
|
2614
|
+
"mitpsi"
|
|
2615
|
+
"mitq"
|
|
2616
|
+
"mitr"
|
|
2617
|
+
"mitrho"
|
|
2618
|
+
"mits"
|
|
2619
|
+
"mitsansA"
|
|
2620
|
+
"mitsansB"
|
|
2621
|
+
"mitsansC"
|
|
2622
|
+
"mitsansD"
|
|
2623
|
+
"mitsansE"
|
|
2624
|
+
"mitsansF"
|
|
2625
|
+
"mitsansG"
|
|
2626
|
+
"mitsansH"
|
|
2627
|
+
"mitsansI"
|
|
2628
|
+
"mitsansJ"
|
|
2629
|
+
"mitsansK"
|
|
2630
|
+
"mitsansL"
|
|
2631
|
+
"mitsansM"
|
|
2632
|
+
"mitsansN"
|
|
2633
|
+
"mitsansO"
|
|
2634
|
+
"mitsansP"
|
|
2635
|
+
"mitsansQ"
|
|
2636
|
+
"mitsansR"
|
|
2637
|
+
"mitsansS"
|
|
2638
|
+
"mitsansT"
|
|
2639
|
+
"mitsansU"
|
|
2640
|
+
"mitsansV"
|
|
2641
|
+
"mitsansW"
|
|
2642
|
+
"mitsansX"
|
|
2643
|
+
"mitsansY"
|
|
2644
|
+
"mitsansZ"
|
|
2645
|
+
"mitsansa"
|
|
2646
|
+
"mitsansb"
|
|
2647
|
+
"mitsansc"
|
|
2648
|
+
"mitsansd"
|
|
2649
|
+
"mitsanse"
|
|
2650
|
+
"mitsansf"
|
|
2651
|
+
"mitsansg"
|
|
2652
|
+
"mitsansh"
|
|
2653
|
+
"mitsansi"
|
|
2654
|
+
"mitsansj"
|
|
2655
|
+
"mitsansk"
|
|
2656
|
+
"mitsansl"
|
|
2657
|
+
"mitsansm"
|
|
2658
|
+
"mitsansn"
|
|
2659
|
+
"mitsanso"
|
|
2660
|
+
"mitsansp"
|
|
2661
|
+
"mitsansq"
|
|
2662
|
+
"mitsansr"
|
|
2663
|
+
"mitsanss"
|
|
2664
|
+
"mitsanst"
|
|
2665
|
+
"mitsansu"
|
|
2666
|
+
"mitsansv"
|
|
2667
|
+
"mitsansw"
|
|
2668
|
+
"mitsansx"
|
|
2669
|
+
"mitsansy"
|
|
2670
|
+
"mitsansz"
|
|
2671
|
+
"mitsigma"
|
|
2672
|
+
"mitt"
|
|
2673
|
+
"mittau"
|
|
2674
|
+
"mittheta"
|
|
2675
|
+
"mitu"
|
|
2676
|
+
"mitupsilon"
|
|
2677
|
+
"mitv"
|
|
2678
|
+
"mitvarTheta"
|
|
2679
|
+
"mitvarepsilon"
|
|
2680
|
+
"mitvarkappa"
|
|
2681
|
+
"mitvarphi"
|
|
2682
|
+
"mitvarpi"
|
|
2683
|
+
"mitvarrho"
|
|
2684
|
+
"mitvarsigma"
|
|
2685
|
+
"mitvartheta"
|
|
2686
|
+
"mitw"
|
|
2687
|
+
"mitx"
|
|
2688
|
+
"mitxi"
|
|
2689
|
+
"mity"
|
|
2690
|
+
"mitz"
|
|
2691
|
+
"mitzeta"
|
|
2692
|
+
"mlcp"
|
|
2693
|
+
"models"
|
|
2694
|
+
"modtwosum"
|
|
2695
|
+
"mp"
|
|
2696
|
+
"msansA"
|
|
2697
|
+
"msansB"
|
|
2698
|
+
"msansC"
|
|
2699
|
+
"msansD"
|
|
2700
|
+
"msansE"
|
|
2701
|
+
"msansF"
|
|
2702
|
+
"msansG"
|
|
2703
|
+
"msansH"
|
|
2704
|
+
"msansI"
|
|
2705
|
+
"msansJ"
|
|
2706
|
+
"msansK"
|
|
2707
|
+
"msansL"
|
|
2708
|
+
"msansM"
|
|
2709
|
+
"msansN"
|
|
2710
|
+
"msansO"
|
|
2711
|
+
"msansP"
|
|
2712
|
+
"msansQ"
|
|
2713
|
+
"msansR"
|
|
2714
|
+
"msansS"
|
|
2715
|
+
"msansT"
|
|
2716
|
+
"msansU"
|
|
2717
|
+
"msansV"
|
|
2718
|
+
"msansW"
|
|
2719
|
+
"msansX"
|
|
2720
|
+
"msansY"
|
|
2721
|
+
"msansZ"
|
|
2722
|
+
"msansa"
|
|
2723
|
+
"msansb"
|
|
2724
|
+
"msansc"
|
|
2725
|
+
"msansd"
|
|
2726
|
+
"msanse"
|
|
2727
|
+
"msanseight"
|
|
2728
|
+
"msansf"
|
|
2729
|
+
"msansfive"
|
|
2730
|
+
"msansfour"
|
|
2731
|
+
"msansg"
|
|
2732
|
+
"msansh"
|
|
2733
|
+
"msansi"
|
|
2734
|
+
"msansj"
|
|
2735
|
+
"msansk"
|
|
2736
|
+
"msansl"
|
|
2737
|
+
"msansm"
|
|
2738
|
+
"msansn"
|
|
2739
|
+
"msansnine"
|
|
2740
|
+
"msanso"
|
|
2741
|
+
"msansone"
|
|
2742
|
+
"msansp"
|
|
2743
|
+
"msansq"
|
|
2744
|
+
"msansr"
|
|
2745
|
+
"msanss"
|
|
2746
|
+
"msansseven"
|
|
2747
|
+
"msanssix"
|
|
2748
|
+
"msanst"
|
|
2749
|
+
"msansthree"
|
|
2750
|
+
"msanstwo"
|
|
2751
|
+
"msansu"
|
|
2752
|
+
"msansv"
|
|
2753
|
+
"msansw"
|
|
2754
|
+
"msansx"
|
|
2755
|
+
"msansy"
|
|
2756
|
+
"msansz"
|
|
2757
|
+
"msanszero"
|
|
2758
|
+
"mscrA"
|
|
2759
|
+
"mscrB"
|
|
2760
|
+
"mscrC"
|
|
2761
|
+
"mscrD"
|
|
2762
|
+
"mscrE"
|
|
2763
|
+
"mscrF"
|
|
2764
|
+
"mscrG"
|
|
2765
|
+
"mscrH"
|
|
2766
|
+
"mscrI"
|
|
2767
|
+
"mscrJ"
|
|
2768
|
+
"mscrK"
|
|
2769
|
+
"mscrL"
|
|
2770
|
+
"mscrM"
|
|
2771
|
+
"mscrN"
|
|
2772
|
+
"mscrO"
|
|
2773
|
+
"mscrP"
|
|
2774
|
+
"mscrQ"
|
|
2775
|
+
"mscrR"
|
|
2776
|
+
"mscrS"
|
|
2777
|
+
"mscrT"
|
|
2778
|
+
"mscrU"
|
|
2779
|
+
"mscrV"
|
|
2780
|
+
"mscrW"
|
|
2781
|
+
"mscrX"
|
|
2782
|
+
"mscrY"
|
|
2783
|
+
"mscrZ"
|
|
2784
|
+
"mscra"
|
|
2785
|
+
"mscrb"
|
|
2786
|
+
"mscrc"
|
|
2787
|
+
"mscrd"
|
|
2788
|
+
"mscre"
|
|
2789
|
+
"mscrf"
|
|
2790
|
+
"mscrg"
|
|
2791
|
+
"mscrh"
|
|
2792
|
+
"mscri"
|
|
2793
|
+
"mscrj"
|
|
2794
|
+
"mscrk"
|
|
2795
|
+
"mscrl"
|
|
2796
|
+
"mscrm"
|
|
2797
|
+
"mscrn"
|
|
2798
|
+
"mscro"
|
|
2799
|
+
"mscrp"
|
|
2800
|
+
"mscrq"
|
|
2801
|
+
"mscrr"
|
|
2802
|
+
"mscrs"
|
|
2803
|
+
"mscrt"
|
|
2804
|
+
"mscru"
|
|
2805
|
+
"mscrv"
|
|
2806
|
+
"mscrw"
|
|
2807
|
+
"mscrx"
|
|
2808
|
+
"mscry"
|
|
2809
|
+
"mscrz"
|
|
2810
|
+
"mttA"
|
|
2811
|
+
"mttB"
|
|
2812
|
+
"mttC"
|
|
2813
|
+
"mttD"
|
|
2814
|
+
"mttE"
|
|
2815
|
+
"mttF"
|
|
2816
|
+
"mttG"
|
|
2817
|
+
"mttH"
|
|
2818
|
+
"mttI"
|
|
2819
|
+
"mttJ"
|
|
2820
|
+
"mttK"
|
|
2821
|
+
"mttL"
|
|
2822
|
+
"mttM"
|
|
2823
|
+
"mttN"
|
|
2824
|
+
"mttO"
|
|
2825
|
+
"mttP"
|
|
2826
|
+
"mttQ"
|
|
2827
|
+
"mttR"
|
|
2828
|
+
"mttS"
|
|
2829
|
+
"mttT"
|
|
2830
|
+
"mttU"
|
|
2831
|
+
"mttV"
|
|
2832
|
+
"mttW"
|
|
2833
|
+
"mttX"
|
|
2834
|
+
"mttY"
|
|
2835
|
+
"mttZ"
|
|
2836
|
+
"mtta"
|
|
2837
|
+
"mttb"
|
|
2838
|
+
"mttc"
|
|
2839
|
+
"mttd"
|
|
2840
|
+
"mtte"
|
|
2841
|
+
"mtteight"
|
|
2842
|
+
"mttf"
|
|
2843
|
+
"mttfive"
|
|
2844
|
+
"mttfour"
|
|
2845
|
+
"mttg"
|
|
2846
|
+
"mtth"
|
|
2847
|
+
"mtti"
|
|
2848
|
+
"mttj"
|
|
2849
|
+
"mttk"
|
|
2850
|
+
"mttl"
|
|
2851
|
+
"mttm"
|
|
2852
|
+
"mttn"
|
|
2853
|
+
"mttnine"
|
|
2854
|
+
"mtto"
|
|
2855
|
+
"mttone"
|
|
2856
|
+
"mttp"
|
|
2857
|
+
"mttq"
|
|
2858
|
+
"mttr"
|
|
2859
|
+
"mtts"
|
|
2860
|
+
"mttseven"
|
|
2861
|
+
"mttsix"
|
|
2862
|
+
"mttt"
|
|
2863
|
+
"mttthree"
|
|
2864
|
+
"mtttwo"
|
|
2865
|
+
"mttu"
|
|
2866
|
+
"mttv"
|
|
2867
|
+
"mttw"
|
|
2868
|
+
"mttx"
|
|
2869
|
+
"mtty"
|
|
2870
|
+
"mttz"
|
|
2871
|
+
"mttzero"
|
|
2872
|
+
"mu"
|
|
2873
|
+
"multimap"
|
|
2874
|
+
"multimapboth"
|
|
2875
|
+
"multimapdotbothA"
|
|
2876
|
+
"multimapdotbothB"
|
|
2877
|
+
"multimapinv"
|
|
2878
|
+
"muup"
|
|
2879
|
+
"nHdownarrow"
|
|
2880
|
+
"nHuparrow"
|
|
2881
|
+
"nLeftarrow"
|
|
2882
|
+
"nLeftrightarrow"
|
|
2883
|
+
"nRightarrow"
|
|
2884
|
+
"nVDash"
|
|
2885
|
+
"nVdash"
|
|
2886
|
+
"nVleftarrow"
|
|
2887
|
+
"nVleftarrowtail"
|
|
2888
|
+
"nVleftrightarrow"
|
|
2889
|
+
"nVrightarrow"
|
|
2890
|
+
"nVrightarrowtail"
|
|
2891
|
+
"nVtwoheadleftarrow"
|
|
2892
|
+
"nVtwoheadleftarrowtail"
|
|
2893
|
+
"nVtwoheadrightarrow"
|
|
2894
|
+
"nVtwoheadrightarrowtail"
|
|
2895
|
+
"nabla"
|
|
2896
|
+
"napprox"
|
|
2897
|
+
"nasymp"
|
|
2898
|
+
"natural"
|
|
2899
|
+
"ncong"
|
|
2900
|
+
"ndres"
|
|
2901
|
+
"ne"
|
|
2902
|
+
"nearrow"
|
|
2903
|
+
"neg"
|
|
2904
|
+
"neovnwarrow"
|
|
2905
|
+
"neovsearrow"
|
|
2906
|
+
"neptune"
|
|
2907
|
+
"neq"
|
|
2908
|
+
"nequiv"
|
|
2909
|
+
"neswarrow"
|
|
2910
|
+
"neuter"
|
|
2911
|
+
"nexi"
|
|
2912
|
+
"nexists"
|
|
2913
|
+
"ngeq"
|
|
2914
|
+
"ngeqslant"
|
|
2915
|
+
"ngtr"
|
|
2916
|
+
"ngtrless"
|
|
2917
|
+
"ngtrsim"
|
|
2918
|
+
"nhVvert"
|
|
2919
|
+
"nhpar"
|
|
2920
|
+
"ni"
|
|
2921
|
+
"nin"
|
|
2922
|
+
"niobar"
|
|
2923
|
+
"nis"
|
|
2924
|
+
"nisd"
|
|
2925
|
+
"nleftarrow"
|
|
2926
|
+
"nleftrightarrow"
|
|
2927
|
+
"nleq"
|
|
2928
|
+
"nleqslant"
|
|
2929
|
+
"nless"
|
|
2930
|
+
"nlessgtr"
|
|
2931
|
+
"nlesssim"
|
|
2932
|
+
"nmid"
|
|
2933
|
+
"nni"
|
|
2934
|
+
"not"
|
|
2935
|
+
"notasymp"
|
|
2936
|
+
"notbackslash"
|
|
2937
|
+
"notin"
|
|
2938
|
+
"notni"
|
|
2939
|
+
"notowner"
|
|
2940
|
+
"notowns"
|
|
2941
|
+
"notslash"
|
|
2942
|
+
"nparallel"
|
|
2943
|
+
"npolint"
|
|
2944
|
+
"nprec"
|
|
2945
|
+
"npreccurlyeq"
|
|
2946
|
+
"npreceq"
|
|
2947
|
+
"nrightarrow"
|
|
2948
|
+
"nrres"
|
|
2949
|
+
"nsim"
|
|
2950
|
+
"nsime"
|
|
2951
|
+
"nsimeq"
|
|
2952
|
+
"nsqsubseteq"
|
|
2953
|
+
"nsqsupseteq"
|
|
2954
|
+
"nsubset"
|
|
2955
|
+
"nsubseteq"
|
|
2956
|
+
"nsucc"
|
|
2957
|
+
"nsucccurlyeq"
|
|
2958
|
+
"nsucceq"
|
|
2959
|
+
"nsupset"
|
|
2960
|
+
"nsupseteq"
|
|
2961
|
+
"ntriangleleft"
|
|
2962
|
+
"ntrianglelefteq"
|
|
2963
|
+
"ntriangleright"
|
|
2964
|
+
"ntrianglerighteq"
|
|
2965
|
+
"nu"
|
|
2966
|
+
"nunlhd"
|
|
2967
|
+
"nunrhd"
|
|
2968
|
+
"nuup"
|
|
2969
|
+
"nvDash"
|
|
2970
|
+
"nvLeftarrow"
|
|
2971
|
+
"nvLeftrightarrow"
|
|
2972
|
+
"nvRightarrow"
|
|
2973
|
+
"nvdash"
|
|
2974
|
+
"nvinfty"
|
|
2975
|
+
"nvleftarrow"
|
|
2976
|
+
"nvleftarrowtail"
|
|
2977
|
+
"nvleftrightarrow"
|
|
2978
|
+
"nvrightarrow"
|
|
2979
|
+
"nvrightarrowtail"
|
|
2980
|
+
"nvtwoheadleftarrow"
|
|
2981
|
+
"nvtwoheadleftarrowtail"
|
|
2982
|
+
"nvtwoheadrightarrow"
|
|
2983
|
+
"nvtwoheadrightarrowtail"
|
|
2984
|
+
"nwarrow"
|
|
2985
|
+
"nwovnearrow"
|
|
2986
|
+
"nwsearrow"
|
|
2987
|
+
"obar"
|
|
2988
|
+
"obot"
|
|
2989
|
+
"obrbrak"
|
|
2990
|
+
"obslash"
|
|
2991
|
+
"ocirc"
|
|
2992
|
+
"ocommatopright"
|
|
2993
|
+
"octothorpe"
|
|
2994
|
+
"odiv"
|
|
2995
|
+
"odot"
|
|
2996
|
+
"odotslashdot"
|
|
2997
|
+
"ogreaterthan"
|
|
2998
|
+
"oiiint"
|
|
2999
|
+
"oiint"
|
|
3000
|
+
"oint"
|
|
3001
|
+
"ointctrclockwise"
|
|
3002
|
+
"olcross"
|
|
3003
|
+
"olessthan"
|
|
3004
|
+
"omega"
|
|
3005
|
+
"omegaup"
|
|
3006
|
+
"ominus"
|
|
3007
|
+
"operp"
|
|
3008
|
+
"oplus"
|
|
3009
|
+
"opluslhrim"
|
|
3010
|
+
"oplusrhrim"
|
|
3011
|
+
"origof"
|
|
3012
|
+
"oslash"
|
|
3013
|
+
"otimes"
|
|
3014
|
+
"otimeshat"
|
|
3015
|
+
"otimeslhrim"
|
|
3016
|
+
"otimesrhrim"
|
|
3017
|
+
"oturnedcomma"
|
|
3018
|
+
"overbar"
|
|
3019
|
+
"overbrace"
|
|
3020
|
+
"overbracket"
|
|
3021
|
+
"overleftarrow"
|
|
3022
|
+
"overleftrightarrow"
|
|
3023
|
+
"overline"
|
|
3024
|
+
"overparen"
|
|
3025
|
+
"overrightarrow"
|
|
3026
|
+
"ovhook"
|
|
3027
|
+
"owns"
|
|
3028
|
+
"parallel"
|
|
3029
|
+
"parallelogram"
|
|
3030
|
+
"parallelogramblack"
|
|
3031
|
+
"parsim"
|
|
3032
|
+
"partial"
|
|
3033
|
+
"partialmeetcontraction"
|
|
3034
|
+
"partialup"
|
|
3035
|
+
"pencil"
|
|
3036
|
+
"pentagon"
|
|
3037
|
+
"pentagonblack"
|
|
3038
|
+
"percent"
|
|
3039
|
+
"period"
|
|
3040
|
+
"perp"
|
|
3041
|
+
"perps"
|
|
3042
|
+
"pfun"
|
|
3043
|
+
"phi"
|
|
3044
|
+
"phiup"
|
|
3045
|
+
"pi"
|
|
3046
|
+
"pinj"
|
|
3047
|
+
"pisces"
|
|
3048
|
+
"pitchfork"
|
|
3049
|
+
"piup"
|
|
3050
|
+
"plus"
|
|
3051
|
+
"plusdot"
|
|
3052
|
+
"pluseqq"
|
|
3053
|
+
"plushat"
|
|
3054
|
+
"plussim"
|
|
3055
|
+
"plussubtwo"
|
|
3056
|
+
"plustrif"
|
|
3057
|
+
"pluto"
|
|
3058
|
+
"pm"
|
|
3059
|
+
"pointint"
|
|
3060
|
+
"pointright"
|
|
3061
|
+
"postalmark"
|
|
3062
|
+
"pounds"
|
|
3063
|
+
"prec"
|
|
3064
|
+
"precapprox"
|
|
3065
|
+
"preccurlyeq"
|
|
3066
|
+
"preceq"
|
|
3067
|
+
"preceqq"
|
|
3068
|
+
"precnapprox"
|
|
3069
|
+
"precneq"
|
|
3070
|
+
"precneqq"
|
|
3071
|
+
"precnsim"
|
|
3072
|
+
"precsim"
|
|
3073
|
+
"prime"
|
|
3074
|
+
"prod"
|
|
3075
|
+
"profline"
|
|
3076
|
+
"profsurf"
|
|
3077
|
+
"project"
|
|
3078
|
+
"propto"
|
|
3079
|
+
"prurel"
|
|
3080
|
+
"psi"
|
|
3081
|
+
"psiup"
|
|
3082
|
+
"psur"
|
|
3083
|
+
"psurj"
|
|
3084
|
+
"pullback"
|
|
3085
|
+
"pushout"
|
|
3086
|
+
"qoppa"
|
|
3087
|
+
"qprime"
|
|
3088
|
+
"quad"
|
|
3089
|
+
"quarternote"
|
|
3090
|
+
"questeq"
|
|
3091
|
+
"question"
|
|
3092
|
+
"rAngle"
|
|
3093
|
+
"rBrace"
|
|
3094
|
+
"rBrack"
|
|
3095
|
+
"rParen"
|
|
3096
|
+
"radiation"
|
|
3097
|
+
"rang"
|
|
3098
|
+
"rangle"
|
|
3099
|
+
"rangledot"
|
|
3100
|
+
"rangledownzigzagarrow"
|
|
3101
|
+
"rbag"
|
|
3102
|
+
"rblkbrbrak"
|
|
3103
|
+
"rblot"
|
|
3104
|
+
"rbrace"
|
|
3105
|
+
"rbracelend"
|
|
3106
|
+
"rbracemid"
|
|
3107
|
+
"rbraceuend"
|
|
3108
|
+
"rbrack"
|
|
3109
|
+
"rbrackextender"
|
|
3110
|
+
"rbracklend"
|
|
3111
|
+
"rbracklrtick"
|
|
3112
|
+
"rbrackubar"
|
|
3113
|
+
"rbrackuend"
|
|
3114
|
+
"rbrackurtick"
|
|
3115
|
+
"rbrbrak"
|
|
3116
|
+
"rceil"
|
|
3117
|
+
"rcurvyangle"
|
|
3118
|
+
"rdiagovfdiag"
|
|
3119
|
+
"rdiagovsearrow"
|
|
3120
|
+
"recycle"
|
|
3121
|
+
"rel"
|
|
3122
|
+
"restriction"
|
|
3123
|
+
"revangle"
|
|
3124
|
+
"revangleubar"
|
|
3125
|
+
"revemptyset"
|
|
3126
|
+
"revequilibrium"
|
|
3127
|
+
"revnmid"
|
|
3128
|
+
"rfbowtie"
|
|
3129
|
+
"rfloor"
|
|
3130
|
+
"rftimes"
|
|
3131
|
+
"rgroup"
|
|
3132
|
+
"rhd"
|
|
3133
|
+
"rho"
|
|
3134
|
+
"rhoup"
|
|
3135
|
+
"rightangle"
|
|
3136
|
+
"rightanglemdot"
|
|
3137
|
+
"rightanglesqr"
|
|
3138
|
+
"rightarrow"
|
|
3139
|
+
"rightarrowapprox"
|
|
3140
|
+
"rightarrowbackapprox"
|
|
3141
|
+
"rightarrowbar"
|
|
3142
|
+
"rightarrowbsimilar"
|
|
3143
|
+
"rightarrowdiamond"
|
|
3144
|
+
"rightarrowgtr"
|
|
3145
|
+
"rightarrowonoplus"
|
|
3146
|
+
"rightarrowplus"
|
|
3147
|
+
"rightarrowshortleftarrow"
|
|
3148
|
+
"rightarrowsimilar"
|
|
3149
|
+
"rightarrowsupset"
|
|
3150
|
+
"rightarrowtail"
|
|
3151
|
+
"rightarrowtriangle"
|
|
3152
|
+
"rightarrowx"
|
|
3153
|
+
"rightbarharpoon"
|
|
3154
|
+
"rightbkarrow"
|
|
3155
|
+
"rightcurvedarrow"
|
|
3156
|
+
"rightdasharrow"
|
|
3157
|
+
"rightdbltail"
|
|
3158
|
+
"rightdotarrow"
|
|
3159
|
+
"rightdowncurvedarrow"
|
|
3160
|
+
"rightfishtail"
|
|
3161
|
+
"rightharpoonaccent"
|
|
3162
|
+
"rightharpoondown"
|
|
3163
|
+
"rightharpoondownbar"
|
|
3164
|
+
"rightharpoonsupdown"
|
|
3165
|
+
"rightharpoonup"
|
|
3166
|
+
"rightharpoonupbar"
|
|
3167
|
+
"rightharpoonupdash"
|
|
3168
|
+
"rightimply"
|
|
3169
|
+
"rightleftarrow"
|
|
3170
|
+
"rightleftarrows"
|
|
3171
|
+
"rightleftharpoon"
|
|
3172
|
+
"rightleftharpoons"
|
|
3173
|
+
"rightleftharpoonsdown"
|
|
3174
|
+
"rightleftharpoonsup"
|
|
3175
|
+
"rightmoon"
|
|
3176
|
+
"rightouterjoin"
|
|
3177
|
+
"rightpentagon"
|
|
3178
|
+
"rightpentagonblack"
|
|
3179
|
+
"rightrightarrows"
|
|
3180
|
+
"rightrightharpoons"
|
|
3181
|
+
"rightslice"
|
|
3182
|
+
"rightsquigarrow"
|
|
3183
|
+
"righttail"
|
|
3184
|
+
"rightthreearrows"
|
|
3185
|
+
"rightthreetimes"
|
|
3186
|
+
"rightturn"
|
|
3187
|
+
"rightupdownharpoon"
|
|
3188
|
+
"rightwavearrow"
|
|
3189
|
+
"rightwhitearrow"
|
|
3190
|
+
"rimg"
|
|
3191
|
+
"ring"
|
|
3192
|
+
"ringplus"
|
|
3193
|
+
"risingdotseq"
|
|
3194
|
+
"rmoustache"
|
|
3195
|
+
"rparen"
|
|
3196
|
+
"rparenextender"
|
|
3197
|
+
"rparengtr"
|
|
3198
|
+
"rparenlend"
|
|
3199
|
+
"rparenuend"
|
|
3200
|
+
"rppolint"
|
|
3201
|
+
"rrangle"
|
|
3202
|
+
"rrbracket"
|
|
3203
|
+
"rres"
|
|
3204
|
+
"rrparenthesis"
|
|
3205
|
+
"rsolbar"
|
|
3206
|
+
"rsqhook"
|
|
3207
|
+
"rsub"
|
|
3208
|
+
"rtimes"
|
|
3209
|
+
"rtriltri"
|
|
3210
|
+
"ruledelayed"
|
|
3211
|
+
"rvboxline"
|
|
3212
|
+
"rvzigzag"
|
|
3213
|
+
"sadface"
|
|
3214
|
+
"sagittarius"
|
|
3215
|
+
"sampi"
|
|
3216
|
+
"sansLmirrored"
|
|
3217
|
+
"sansLturned"
|
|
3218
|
+
"saturn"
|
|
3219
|
+
"scorpio"
|
|
3220
|
+
"scpolint"
|
|
3221
|
+
"scurel"
|
|
3222
|
+
"sdef"
|
|
3223
|
+
"searrow"
|
|
3224
|
+
"second"
|
|
3225
|
+
"semi"
|
|
3226
|
+
"semicolon"
|
|
3227
|
+
"seovnearrow"
|
|
3228
|
+
"setminus"
|
|
3229
|
+
"sharp"
|
|
3230
|
+
"shortdowntack"
|
|
3231
|
+
"shortlefttack"
|
|
3232
|
+
"shortrightarrowleftarrow"
|
|
3233
|
+
"shortuptack"
|
|
3234
|
+
"shuffle"
|
|
3235
|
+
"sigma"
|
|
3236
|
+
"sigmaup"
|
|
3237
|
+
"sim"
|
|
3238
|
+
"simeq"
|
|
3239
|
+
"simgE"
|
|
3240
|
+
"simgtr"
|
|
3241
|
+
"similarleftarrow"
|
|
3242
|
+
"similarrightarrow"
|
|
3243
|
+
"simlE"
|
|
3244
|
+
"simless"
|
|
3245
|
+
"simminussim"
|
|
3246
|
+
"simneqq"
|
|
3247
|
+
"simplus"
|
|
3248
|
+
"simrdots"
|
|
3249
|
+
"sinewave"
|
|
3250
|
+
"sixteenthnote"
|
|
3251
|
+
"skull"
|
|
3252
|
+
"slash"
|
|
3253
|
+
"smallblacktriangleleft"
|
|
3254
|
+
"smallblacktriangleright"
|
|
3255
|
+
"smallin"
|
|
3256
|
+
"smallni"
|
|
3257
|
+
"smallsetminus"
|
|
3258
|
+
"smalltriangledown"
|
|
3259
|
+
"smalltriangleleft"
|
|
3260
|
+
"smalltriangleright"
|
|
3261
|
+
"smalltriangleup"
|
|
3262
|
+
"smashtimes"
|
|
3263
|
+
"smblkcircle"
|
|
3264
|
+
"smblkdiamond"
|
|
3265
|
+
"smblklozenge"
|
|
3266
|
+
"smblksquare"
|
|
3267
|
+
"smeparsl"
|
|
3268
|
+
"smile"
|
|
3269
|
+
"smileface"
|
|
3270
|
+
"smiley"
|
|
3271
|
+
"smt"
|
|
3272
|
+
"smte"
|
|
3273
|
+
"smwhitestar"
|
|
3274
|
+
"smwhtcircle"
|
|
3275
|
+
"smwhtdiamond"
|
|
3276
|
+
"smwhtlozenge"
|
|
3277
|
+
"smwhtsquare"
|
|
3278
|
+
"spadesuit"
|
|
3279
|
+
"spddot"
|
|
3280
|
+
"sphat"
|
|
3281
|
+
"sphericalangle"
|
|
3282
|
+
"sphericalangleup"
|
|
3283
|
+
"spot"
|
|
3284
|
+
"sptilde"
|
|
3285
|
+
"sqcap"
|
|
3286
|
+
"sqcup"
|
|
3287
|
+
"sqint"
|
|
3288
|
+
"sqlozenge"
|
|
3289
|
+
"sqrint"
|
|
3290
|
+
"sqrt"
|
|
3291
|
+
"sqrtbottom"
|
|
3292
|
+
"sqsubset"
|
|
3293
|
+
"sqsubseteq"
|
|
3294
|
+
"sqsubsetneq"
|
|
3295
|
+
"sqsupset"
|
|
3296
|
+
"sqsupseteq"
|
|
3297
|
+
"sqsupsetneq"
|
|
3298
|
+
"square"
|
|
3299
|
+
"squarebotblack"
|
|
3300
|
+
"squarecrossfill"
|
|
3301
|
+
"squarehfill"
|
|
3302
|
+
"squarehvfill"
|
|
3303
|
+
"squareleftblack"
|
|
3304
|
+
"squarellblack"
|
|
3305
|
+
"squarellquad"
|
|
3306
|
+
"squarelrblack"
|
|
3307
|
+
"squarelrquad"
|
|
3308
|
+
"squareneswfill"
|
|
3309
|
+
"squarenwsefill"
|
|
3310
|
+
"squarerightblack"
|
|
3311
|
+
"squaretopblack"
|
|
3312
|
+
"squareulblack"
|
|
3313
|
+
"squareulquad"
|
|
3314
|
+
"squareurblack"
|
|
3315
|
+
"squareurquad"
|
|
3316
|
+
"squarevfill"
|
|
3317
|
+
"squoval"
|
|
3318
|
+
"sslash"
|
|
3319
|
+
"star"
|
|
3320
|
+
"stareq"
|
|
3321
|
+
"steaming"
|
|
3322
|
+
"sterling"
|
|
3323
|
+
"stigma"
|
|
3324
|
+
"strictfi"
|
|
3325
|
+
"strictif"
|
|
3326
|
+
"strns"
|
|
3327
|
+
"subedot"
|
|
3328
|
+
"submult"
|
|
3329
|
+
"subrarr"
|
|
3330
|
+
"subset"
|
|
3331
|
+
"subsetapprox"
|
|
3332
|
+
"subsetcirc"
|
|
3333
|
+
"subsetdot"
|
|
3334
|
+
"subseteq"
|
|
3335
|
+
"subseteqq"
|
|
3336
|
+
"subsetneq"
|
|
3337
|
+
"subsetneqq"
|
|
3338
|
+
"subsetplus"
|
|
3339
|
+
"subsim"
|
|
3340
|
+
"subsub"
|
|
3341
|
+
"subsup"
|
|
3342
|
+
"succ"
|
|
3343
|
+
"succapprox"
|
|
3344
|
+
"succcurlyeq"
|
|
3345
|
+
"succeq"
|
|
3346
|
+
"succeqq"
|
|
3347
|
+
"succnapprox"
|
|
3348
|
+
"succneq"
|
|
3349
|
+
"succneqq"
|
|
3350
|
+
"succnsim"
|
|
3351
|
+
"succsim"
|
|
3352
|
+
"sum"
|
|
3353
|
+
"sumbottom"
|
|
3354
|
+
"sumint"
|
|
3355
|
+
"sumtop"
|
|
3356
|
+
"sun"
|
|
3357
|
+
"supdsub"
|
|
3358
|
+
"supedot"
|
|
3359
|
+
"suphsol"
|
|
3360
|
+
"suphsub"
|
|
3361
|
+
"suplarr"
|
|
3362
|
+
"supmult"
|
|
3363
|
+
"supset"
|
|
3364
|
+
"supsetapprox"
|
|
3365
|
+
"supsetcirc"
|
|
3366
|
+
"supsetdot"
|
|
3367
|
+
"supseteq"
|
|
3368
|
+
"supseteqq"
|
|
3369
|
+
"supsetneq"
|
|
3370
|
+
"supsetneqq"
|
|
3371
|
+
"supsetplus"
|
|
3372
|
+
"supsim"
|
|
3373
|
+
"supsub"
|
|
3374
|
+
"supsup"
|
|
3375
|
+
"surj"
|
|
3376
|
+
"swarrow"
|
|
3377
|
+
"swords"
|
|
3378
|
+
"talloblong"
|
|
3379
|
+
"tau"
|
|
3380
|
+
"taurus"
|
|
3381
|
+
"tauup"
|
|
3382
|
+
"tcmu"
|
|
3383
|
+
"tcohm"
|
|
3384
|
+
"tfun"
|
|
3385
|
+
"therefore"
|
|
3386
|
+
"thermod"
|
|
3387
|
+
"theta"
|
|
3388
|
+
"thetaup"
|
|
3389
|
+
"third"
|
|
3390
|
+
"threedangle"
|
|
3391
|
+
"threedotcolon"
|
|
3392
|
+
"threeunderdot"
|
|
3393
|
+
"tieconcat"
|
|
3394
|
+
"tieinfty"
|
|
3395
|
+
"tilde"
|
|
3396
|
+
"times"
|
|
3397
|
+
"timesbar"
|
|
3398
|
+
"tinj"
|
|
3399
|
+
"tminus"
|
|
3400
|
+
"to"
|
|
3401
|
+
"toea"
|
|
3402
|
+
"tona"
|
|
3403
|
+
"top"
|
|
3404
|
+
"topbot"
|
|
3405
|
+
"topcir"
|
|
3406
|
+
"topfork"
|
|
3407
|
+
"topsemicircle"
|
|
3408
|
+
"tosa"
|
|
3409
|
+
"towa"
|
|
3410
|
+
"tplus"
|
|
3411
|
+
"trapezium"
|
|
3412
|
+
"triangle"
|
|
3413
|
+
"trianglecdot"
|
|
3414
|
+
"triangledown"
|
|
3415
|
+
"triangleleft"
|
|
3416
|
+
"triangleleftblack"
|
|
3417
|
+
"trianglelefteq"
|
|
3418
|
+
"triangleminus"
|
|
3419
|
+
"triangleodot"
|
|
3420
|
+
"triangleplus"
|
|
3421
|
+
"triangleq"
|
|
3422
|
+
"triangleright"
|
|
3423
|
+
"trianglerightblack"
|
|
3424
|
+
"trianglerighteq"
|
|
3425
|
+
"triangles"
|
|
3426
|
+
"triangleserifs"
|
|
3427
|
+
"triangletimes"
|
|
3428
|
+
"triangleubar"
|
|
3429
|
+
"tripleplus"
|
|
3430
|
+
"trprime"
|
|
3431
|
+
"trslash"
|
|
3432
|
+
"tsur"
|
|
3433
|
+
"turnangle"
|
|
3434
|
+
"turnediota"
|
|
3435
|
+
"turnednot"
|
|
3436
|
+
"twocaps"
|
|
3437
|
+
"twocups"
|
|
3438
|
+
"twoheaddownarrow"
|
|
3439
|
+
"twoheadleftarrow"
|
|
3440
|
+
"twoheadleftarrowtail"
|
|
3441
|
+
"twoheadleftdbkarrow"
|
|
3442
|
+
"twoheadmapsfrom"
|
|
3443
|
+
"twoheadmapsto"
|
|
3444
|
+
"twoheadrightarrow"
|
|
3445
|
+
"twoheadrightarrowtail"
|
|
3446
|
+
"twoheaduparrow"
|
|
3447
|
+
"twoheaduparrowcircle"
|
|
3448
|
+
"twolowline"
|
|
3449
|
+
"twonotes"
|
|
3450
|
+
"typecolon"
|
|
3451
|
+
"ubrbrak"
|
|
3452
|
+
"ularc"
|
|
3453
|
+
"ulblacktriangle"
|
|
3454
|
+
"ulcorner"
|
|
3455
|
+
"ultriangle"
|
|
3456
|
+
"uminus"
|
|
3457
|
+
"underbar"
|
|
3458
|
+
"underbrace"
|
|
3459
|
+
"underbracket"
|
|
3460
|
+
"underleftarrow"
|
|
3461
|
+
"underleftharpoondown"
|
|
3462
|
+
"underleftrightarrow"
|
|
3463
|
+
"underline"
|
|
3464
|
+
"underparen"
|
|
3465
|
+
"underrightarrow"
|
|
3466
|
+
"underrightharpoondown"
|
|
3467
|
+
"unicodecdots"
|
|
3468
|
+
"unicodeellipsis"
|
|
3469
|
+
"unlhd"
|
|
3470
|
+
"unrhd"
|
|
3471
|
+
"upAlpha"
|
|
3472
|
+
"upBeta"
|
|
3473
|
+
"upChi"
|
|
3474
|
+
"upDelta"
|
|
3475
|
+
"upDigamma"
|
|
3476
|
+
"upEpsilon"
|
|
3477
|
+
"upEta"
|
|
3478
|
+
"upGamma"
|
|
3479
|
+
"upIota"
|
|
3480
|
+
"upKappa"
|
|
3481
|
+
"upKoppa"
|
|
3482
|
+
"upLambda"
|
|
3483
|
+
"upMu"
|
|
3484
|
+
"upNu"
|
|
3485
|
+
"upOmega"
|
|
3486
|
+
"upOmicron"
|
|
3487
|
+
"upPhi"
|
|
3488
|
+
"upPi"
|
|
3489
|
+
"upPsi"
|
|
3490
|
+
"upRho"
|
|
3491
|
+
"upSampi"
|
|
3492
|
+
"upSigma"
|
|
3493
|
+
"upStigma"
|
|
3494
|
+
"upTau"
|
|
3495
|
+
"upTheta"
|
|
3496
|
+
"upUpsilon"
|
|
3497
|
+
"upXi"
|
|
3498
|
+
"upZeta"
|
|
3499
|
+
"upalpha"
|
|
3500
|
+
"upand"
|
|
3501
|
+
"uparrow"
|
|
3502
|
+
"uparrowbarred"
|
|
3503
|
+
"uparrowdownarrow"
|
|
3504
|
+
"uparrowoncircle"
|
|
3505
|
+
"upbackepsilon"
|
|
3506
|
+
"upbeta"
|
|
3507
|
+
"upchi"
|
|
3508
|
+
"updasharrow"
|
|
3509
|
+
"updelta"
|
|
3510
|
+
"updigamma"
|
|
3511
|
+
"updownarrow"
|
|
3512
|
+
"updownarrowbar"
|
|
3513
|
+
"updownarrows"
|
|
3514
|
+
"updownharpoonleftleft"
|
|
3515
|
+
"updownharpoonleftright"
|
|
3516
|
+
"updownharpoonrightleft"
|
|
3517
|
+
"updownharpoonrightright"
|
|
3518
|
+
"updownharpoons"
|
|
3519
|
+
"updownharpoonsleftright"
|
|
3520
|
+
"upepsilon"
|
|
3521
|
+
"upequilibrium"
|
|
3522
|
+
"upeta"
|
|
3523
|
+
"upfishtail"
|
|
3524
|
+
"upgamma"
|
|
3525
|
+
"upharpoonleft"
|
|
3526
|
+
"upharpoonleftbar"
|
|
3527
|
+
"upharpoonleftdown"
|
|
3528
|
+
"upharpoonleftup"
|
|
3529
|
+
"upharpoonright"
|
|
3530
|
+
"upharpoonrightbar"
|
|
3531
|
+
"upharpoonrightdown"
|
|
3532
|
+
"upharpoonrightup"
|
|
3533
|
+
"upharpoonsleftright"
|
|
3534
|
+
"upin"
|
|
3535
|
+
"upint"
|
|
3536
|
+
"upiota"
|
|
3537
|
+
"upkappa"
|
|
3538
|
+
"upkoppa"
|
|
3539
|
+
"uplambda"
|
|
3540
|
+
"uplus"
|
|
3541
|
+
"upmu"
|
|
3542
|
+
"upnu"
|
|
3543
|
+
"upoldKoppa"
|
|
3544
|
+
"upoldkoppa"
|
|
3545
|
+
"upomega"
|
|
3546
|
+
"upomicron"
|
|
3547
|
+
"upphi"
|
|
3548
|
+
"uppi"
|
|
3549
|
+
"uppsi"
|
|
3550
|
+
"uprevequilibrium"
|
|
3551
|
+
"uprho"
|
|
3552
|
+
"uprightcurvearrow"
|
|
3553
|
+
"upsampi"
|
|
3554
|
+
"upsigma"
|
|
3555
|
+
"upsilon"
|
|
3556
|
+
"upsilonup"
|
|
3557
|
+
"upstigma"
|
|
3558
|
+
"uptau"
|
|
3559
|
+
"uptheta"
|
|
3560
|
+
"upuparrows"
|
|
3561
|
+
"upupharpoons"
|
|
3562
|
+
"upupsilon"
|
|
3563
|
+
"upvarTheta"
|
|
3564
|
+
"upvarbeta"
|
|
3565
|
+
"upvarepsilon"
|
|
3566
|
+
"upvarkappa"
|
|
3567
|
+
"upvarphi"
|
|
3568
|
+
"upvarpi"
|
|
3569
|
+
"upvarrho"
|
|
3570
|
+
"upvarsigma"
|
|
3571
|
+
"upvartheta"
|
|
3572
|
+
"upwhitearrow"
|
|
3573
|
+
"upxi"
|
|
3574
|
+
"upzeta"
|
|
3575
|
+
"uranus"
|
|
3576
|
+
"urarc"
|
|
3577
|
+
"urblacktriangle"
|
|
3578
|
+
"urcorner"
|
|
3579
|
+
"urtriangle"
|
|
3580
|
+
"utilde"
|
|
3581
|
+
"vBar"
|
|
3582
|
+
"vBarv"
|
|
3583
|
+
"vDash"
|
|
3584
|
+
"vDdash"
|
|
3585
|
+
"varDelta"
|
|
3586
|
+
"varEarth"
|
|
3587
|
+
"varGamma"
|
|
3588
|
+
"varLambda"
|
|
3589
|
+
"varOmega"
|
|
3590
|
+
"varPhi"
|
|
3591
|
+
"varPi"
|
|
3592
|
+
"varPsi"
|
|
3593
|
+
"varSigma"
|
|
3594
|
+
"varTheta"
|
|
3595
|
+
"varUpsilon"
|
|
3596
|
+
"varVdash"
|
|
3597
|
+
"varXi"
|
|
3598
|
+
"varbarwedge"
|
|
3599
|
+
"varbeta"
|
|
3600
|
+
"varcarriagereturn"
|
|
3601
|
+
"varclub"
|
|
3602
|
+
"varclubsuit"
|
|
3603
|
+
"vardiamond"
|
|
3604
|
+
"vardiamondsuit"
|
|
3605
|
+
"vardoublebarwedge"
|
|
3606
|
+
"varepsilon"
|
|
3607
|
+
"varepsilonup"
|
|
3608
|
+
"varheart"
|
|
3609
|
+
"varheartsuit"
|
|
3610
|
+
"varhexagon"
|
|
3611
|
+
"varhexagonblack"
|
|
3612
|
+
"varhexagonlrbonds"
|
|
3613
|
+
"varisinobar"
|
|
3614
|
+
"varisins"
|
|
3615
|
+
"varkappa"
|
|
3616
|
+
"varlrtriangle"
|
|
3617
|
+
"varniobar"
|
|
3618
|
+
"varnis"
|
|
3619
|
+
"varnothing"
|
|
3620
|
+
"varointclockwise"
|
|
3621
|
+
"varphi"
|
|
3622
|
+
"varphiup"
|
|
3623
|
+
"varpi"
|
|
3624
|
+
"varpiup"
|
|
3625
|
+
"varprod"
|
|
3626
|
+
"varrho"
|
|
3627
|
+
"varrhoup"
|
|
3628
|
+
"varsdef"
|
|
3629
|
+
"varsigma"
|
|
3630
|
+
"varsigmaup"
|
|
3631
|
+
"varspade"
|
|
3632
|
+
"varspadesuit"
|
|
3633
|
+
"varstar"
|
|
3634
|
+
"varsubsetneq"
|
|
3635
|
+
"vartheta"
|
|
3636
|
+
"varthetaup"
|
|
3637
|
+
"vartriangle"
|
|
3638
|
+
"vartriangleleft"
|
|
3639
|
+
"vartriangleright"
|
|
3640
|
+
"varveebar"
|
|
3641
|
+
"vbraceextender"
|
|
3642
|
+
"vbrtri"
|
|
3643
|
+
"vdash"
|
|
3644
|
+
"vdots"
|
|
3645
|
+
"vec"
|
|
3646
|
+
"vectimes"
|
|
3647
|
+
"vee"
|
|
3648
|
+
"veebar"
|
|
3649
|
+
"veedot"
|
|
3650
|
+
"veedoublebar"
|
|
3651
|
+
"veeeq"
|
|
3652
|
+
"veemidvert"
|
|
3653
|
+
"veeodot"
|
|
3654
|
+
"veeonvee"
|
|
3655
|
+
"veeonwedge"
|
|
3656
|
+
"vert"
|
|
3657
|
+
"vertoverlay"
|
|
3658
|
+
"viewdata"
|
|
3659
|
+
"virgo"
|
|
3660
|
+
"vlongdash"
|
|
3661
|
+
"vrectangle"
|
|
3662
|
+
"vrectangleblack"
|
|
3663
|
+
"vysmblkcircle"
|
|
3664
|
+
"vysmblksquare"
|
|
3665
|
+
"vysmwhtcircle"
|
|
3666
|
+
"vysmwhtsquare"
|
|
3667
|
+
"vzigzag"
|
|
3668
|
+
"warning"
|
|
3669
|
+
"wasylozenge"
|
|
3670
|
+
"wasytherefore"
|
|
3671
|
+
"wedge"
|
|
3672
|
+
"wedgebar"
|
|
3673
|
+
"wedgedot"
|
|
3674
|
+
"wedgedoublebar"
|
|
3675
|
+
"wedgemidvert"
|
|
3676
|
+
"wedgeodot"
|
|
3677
|
+
"wedgeonwedge"
|
|
3678
|
+
"wedgeq"
|
|
3679
|
+
"whitearrowupfrombar"
|
|
3680
|
+
"whiteinwhitetriangle"
|
|
3681
|
+
"whitepointerleft"
|
|
3682
|
+
"whitepointerright"
|
|
3683
|
+
"whitesquaretickleft"
|
|
3684
|
+
"whitesquaretickright"
|
|
3685
|
+
"whthorzoval"
|
|
3686
|
+
"whtvertoval"
|
|
3687
|
+
"wideangledown"
|
|
3688
|
+
"wideangleup"
|
|
3689
|
+
"widebridgeabove"
|
|
3690
|
+
"wideparen"
|
|
3691
|
+
"wideutilde"
|
|
3692
|
+
"wp"
|
|
3693
|
+
"wr"
|
|
3694
|
+
"xbsol"
|
|
3695
|
+
"xi"
|
|
3696
|
+
"xiup"
|
|
3697
|
+
"xsol"
|
|
3698
|
+
"yen"
|
|
3699
|
+
"yinyang"
|
|
3700
|
+
"zcmp"
|
|
3701
|
+
"zeta"
|
|
3702
|
+
"zetaup"
|
|
3703
|
+
"zhide"
|
|
3704
|
+
"zpipe"
|
|
3705
|
+
"zproject"
|
|
3706
|
+
"{"
|
|
3707
|
+
"|"
|
|
3708
|
+
"}"
|