@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,2929 @@
|
|
|
1
|
+
#include "unimath/uni_symbol.h"
|
|
2
|
+
|
|
3
|
+
#include <cstring>
|
|
4
|
+
|
|
5
|
+
using namespace std;
|
|
6
|
+
|
|
7
|
+
namespace microtex {
|
|
8
|
+
|
|
9
|
+
static constexpr auto ord = static_cast<i8>(AtomType::ordinary) << 8;
|
|
10
|
+
static constexpr auto rel = static_cast<i8>(AtomType::relation) << 8;
|
|
11
|
+
static constexpr auto acc = static_cast<i8>(AtomType::accent) << 8;
|
|
12
|
+
static constexpr auto bin = static_cast<i8>(AtomType::binaryOperator) << 8;
|
|
13
|
+
static constexpr auto opt = static_cast<i8>(AtomType::bigOperator) << 8;
|
|
14
|
+
static constexpr auto opn = static_cast<i8>(AtomType::opening) << 8;
|
|
15
|
+
static constexpr auto cls = static_cast<i8>(AtomType::closing) << 8;
|
|
16
|
+
static constexpr auto puc = static_cast<i8>(AtomType::punctuation) << 8;
|
|
17
|
+
|
|
18
|
+
static constexpr i8 N = 1 << 1;
|
|
19
|
+
static constexpr i8 F = 1;
|
|
20
|
+
|
|
21
|
+
// clang-format off
|
|
22
|
+
// IMPORTANT: sorted by the name, you must re-sort this array after add item
|
|
23
|
+
const Symbol _symbols[]{
|
|
24
|
+
{0x00023, ord, "#"},
|
|
25
|
+
{0x00024, ord, "$"},
|
|
26
|
+
{0x00025, ord, "%"},
|
|
27
|
+
{0x00026, ord, "&"},
|
|
28
|
+
{0x0223F, ord, "AC"},
|
|
29
|
+
{0x02370, ord, "APLboxquestion"},
|
|
30
|
+
{0x02353, ord, "APLboxupcaret"},
|
|
31
|
+
{0x0235D, ord, "APLcomment"},
|
|
32
|
+
{0x02357, ord, "APLdownarrowbox"},
|
|
33
|
+
{0x0235E, ord, "APLinput"},
|
|
34
|
+
{0x02339, ord, "APLinv"},
|
|
35
|
+
{0x02347, ord, "APLleftarrowbox"},
|
|
36
|
+
{0x0235F, ord, "APLlog"},
|
|
37
|
+
{0x02340, ord, "APLnotbackslash"},
|
|
38
|
+
{0x0233F, rel, "APLnotslash"},
|
|
39
|
+
{0x02348, ord, "APLrightarrowbox"},
|
|
40
|
+
{0x02350, ord, "APLuparrowbox"},
|
|
41
|
+
{0x0212B, ord, "Angstroem"},
|
|
42
|
+
{0x0212B, ord, "Angstrom"},
|
|
43
|
+
{0x02648, ord, "Aries"},
|
|
44
|
+
{0x02AE7, rel, "Barv"},
|
|
45
|
+
{0x1D538, ord, "BbbA"},
|
|
46
|
+
{0x1D539, ord, "BbbB"},
|
|
47
|
+
{0x02102, ord, "BbbC"},
|
|
48
|
+
{0x1D53B, ord, "BbbD"},
|
|
49
|
+
{0x1D53C, ord, "BbbE"},
|
|
50
|
+
{0x1D53D, ord, "BbbF"},
|
|
51
|
+
{0x1D53E, ord, "BbbG"},
|
|
52
|
+
{0x0213E, ord, "BbbGamma"},
|
|
53
|
+
{0x0210D, ord, "BbbH"},
|
|
54
|
+
{0x1D540, ord, "BbbI"},
|
|
55
|
+
{0x1D541, ord, "BbbJ"},
|
|
56
|
+
{0x1D542, ord, "BbbK"},
|
|
57
|
+
{0x1D543, ord, "BbbL"},
|
|
58
|
+
{0x1D544, ord, "BbbM"},
|
|
59
|
+
{0x02115, ord, "BbbN"},
|
|
60
|
+
{0x1D546, ord, "BbbO"},
|
|
61
|
+
{0x02119, ord, "BbbP"},
|
|
62
|
+
{0x0213F, ord, "BbbPi"},
|
|
63
|
+
{0x0211A, ord, "BbbQ"},
|
|
64
|
+
{0x0211D, ord, "BbbR"},
|
|
65
|
+
{0x1D54A, ord, "BbbS"},
|
|
66
|
+
{0x1D54B, ord, "BbbT"},
|
|
67
|
+
{0x1D54C, ord, "BbbU"},
|
|
68
|
+
{0x1D54D, ord, "BbbV"},
|
|
69
|
+
{0x1D54E, ord, "BbbW"},
|
|
70
|
+
{0x1D54F, ord, "BbbX"},
|
|
71
|
+
{0x1D550, ord, "BbbY"},
|
|
72
|
+
{0x02124, ord, "BbbZ"},
|
|
73
|
+
{0x1D552, ord, "Bbba"},
|
|
74
|
+
{0x1D553, ord, "Bbbb"},
|
|
75
|
+
{0x1D554, ord, "Bbbc"},
|
|
76
|
+
{0x1D555, ord, "Bbbd"},
|
|
77
|
+
{0x1D556, ord, "Bbbe"},
|
|
78
|
+
{0x1D7E0, ord, "Bbbeight"},
|
|
79
|
+
{0x1D557, ord, "Bbbf"},
|
|
80
|
+
{0x1D7DD, ord, "Bbbfive"},
|
|
81
|
+
{0x1D7DC, ord, "Bbbfour"},
|
|
82
|
+
{0x1D558, ord, "Bbbg"},
|
|
83
|
+
{0x0213D, ord, "Bbbgamma"},
|
|
84
|
+
{0x1D559, ord, "Bbbh"},
|
|
85
|
+
{0x1D55A, ord, "Bbbi"},
|
|
86
|
+
{0x1D55B, ord, "Bbbj"},
|
|
87
|
+
{0x1D55C, ord, "Bbbk"},
|
|
88
|
+
{0x1D55D, ord, "Bbbl"},
|
|
89
|
+
{0x1D55E, ord, "Bbbm"},
|
|
90
|
+
{0x1D55F, ord, "Bbbn"},
|
|
91
|
+
{0x1D7E1, ord, "Bbbnine"},
|
|
92
|
+
{0x1D560, ord, "Bbbo"},
|
|
93
|
+
{0x1D7D9, ord, "Bbbone"},
|
|
94
|
+
{0x1D561, ord, "Bbbp"},
|
|
95
|
+
{0x0213C, ord, "Bbbpi"},
|
|
96
|
+
{0x1D562, ord, "Bbbq"},
|
|
97
|
+
{0x1D563, ord, "Bbbr"},
|
|
98
|
+
{0x1D564, ord, "Bbbs"},
|
|
99
|
+
{0x1D7DF, ord, "Bbbseven"},
|
|
100
|
+
{0x1D7DE, ord, "Bbbsix"},
|
|
101
|
+
{0x02140, opt, "Bbbsum"},
|
|
102
|
+
{0x1D565, ord, "Bbbt"},
|
|
103
|
+
{0x1D7DB, ord, "Bbbthree"},
|
|
104
|
+
{0x1D7DA, ord, "Bbbtwo"},
|
|
105
|
+
{0x1D566, ord, "Bbbu"},
|
|
106
|
+
{0x1D567, ord, "Bbbv"},
|
|
107
|
+
{0x1D568, ord, "Bbbw"},
|
|
108
|
+
{0x1D569, ord, "Bbbx"},
|
|
109
|
+
{0x1D56A, ord, "Bbby"},
|
|
110
|
+
{0x1D56B, ord, "Bbbz"},
|
|
111
|
+
{0x1D7D8, ord, "Bbbzero"},
|
|
112
|
+
{0x02AEB, rel, "Bot"},
|
|
113
|
+
{0x0224E, rel, "Bumpeq"},
|
|
114
|
+
{0x025CF, ord, "CIRCLE"},
|
|
115
|
+
{0x022D2, bin, "Cap"},
|
|
116
|
+
{0x02145, ord, "CapitalDifferentialD"},
|
|
117
|
+
{0x02611, ord, "CheckedBox"},
|
|
118
|
+
{0x025CB, bin, "Circle"},
|
|
119
|
+
{0x02237, rel, "Colon"},
|
|
120
|
+
{0x02A74, rel, "Coloneq"},
|
|
121
|
+
{0x02A74, rel, "Coloneqq"},
|
|
122
|
+
{0x02148, ord, "ComplexI"},
|
|
123
|
+
{0x02149, ord, "ComplexJ"},
|
|
124
|
+
{0x022D3, bin, "Cup"},
|
|
125
|
+
{0x02145, ord, "DD"},
|
|
126
|
+
{0x020DB, acc, "DDDot"},
|
|
127
|
+
{0x00308, acc, "DDot"},
|
|
128
|
+
{0x027F1, rel, "DDownarrow"},
|
|
129
|
+
{0x02AE5, rel, "DashV"},
|
|
130
|
+
{0x027DA, rel, "DashVDash"},
|
|
131
|
+
{0x02AE4, rel, "Dashv"},
|
|
132
|
+
{0x0290B, rel, "Ddownarrow"},
|
|
133
|
+
{0x00394, ord, "Delta"},
|
|
134
|
+
{0x025C7, ord, "Diamond"},
|
|
135
|
+
{0x025C6, ord, "Diamondblack"},
|
|
136
|
+
{0x027D0, ord, "Diamonddot"},
|
|
137
|
+
{0x02146, ord, "DifferentialD"},
|
|
138
|
+
{0x003DC, ord, "Digamma"},
|
|
139
|
+
{0x00307, acc, "Dot"},
|
|
140
|
+
{0x02251, rel, "Doteq"},
|
|
141
|
+
{0x02913, rel, "DownArrowBar"},
|
|
142
|
+
{0x0295E, rel, "DownLeftTeeVector"},
|
|
143
|
+
{0x02956, rel, "DownLeftVectorBar"},
|
|
144
|
+
{0x0295F, rel, "DownRightTeeVector"},
|
|
145
|
+
{0x02957, rel, "DownRightVectorBar"},
|
|
146
|
+
{0x021D3, rel, "Downarrow"},
|
|
147
|
+
{0x02A75, rel, "Equal"},
|
|
148
|
+
{0x02263, rel, "Equiv"},
|
|
149
|
+
{0x02107, ord, "Euler"},
|
|
150
|
+
{0x02107, ord, "Eulerconst"},
|
|
151
|
+
{0x0203C, ord, "Exclam"},
|
|
152
|
+
{0x02147, ord, "ExponetialE"},
|
|
153
|
+
{0x02132, ord, "Finv"},
|
|
154
|
+
{0x02141, ord, "Game"},
|
|
155
|
+
{0x00393, ord, "Gamma"},
|
|
156
|
+
{0x0264A, ord, "Gemini"},
|
|
157
|
+
{0x02277, rel, "GreaterLess"},
|
|
158
|
+
{0x02273, rel, "GreaterTilde"},
|
|
159
|
+
{0x02AA2, rel, "Gt"},
|
|
160
|
+
{0x0210F, ord, "HBar"},
|
|
161
|
+
{0x026A5, ord, "Hermaphrodite"},
|
|
162
|
+
{0x02111, ord, "Im"},
|
|
163
|
+
{0x02A1D, opt, "Join"},
|
|
164
|
+
{0x02643, ord, "Jupiter"},
|
|
165
|
+
{0x003D8, ord, "Koppa"},
|
|
166
|
+
{0x025D6, ord, "LEFTCIRCLE"},
|
|
167
|
+
{0x025D0, ord, "LEFTcircle"},
|
|
168
|
+
{0x025C0, bin, "LHD"},
|
|
169
|
+
{0x02B45, rel, "LLeftarrow"},
|
|
170
|
+
{0x020D6, acc, "LVec"},
|
|
171
|
+
{0x0039B, ord, "Lambda"},
|
|
172
|
+
{0x027C5, opn, "Lbag"},
|
|
173
|
+
{0x027E6, opn, "Lbrack"},
|
|
174
|
+
{0x027EC, opn, "Lbrbrak"},
|
|
175
|
+
{0x021B2, rel, "Ldsh"},
|
|
176
|
+
{0x021E4, rel, "LeftArrowBar"},
|
|
177
|
+
{0x02961, rel, "LeftDownTeeVector"},
|
|
178
|
+
{0x02959, rel, "LeftDownVectorBar"},
|
|
179
|
+
{0x0295A, rel, "LeftTeeVector"},
|
|
180
|
+
{0x025C1, bin, "LeftTriangle"},
|
|
181
|
+
{0x029CF, rel, "LeftTriangleBar"},
|
|
182
|
+
{0x02960, rel, "LeftUpTeeVector"},
|
|
183
|
+
{0x02958, rel, "LeftUpVectorBar"},
|
|
184
|
+
{0x02952, rel, "LeftVectorBar"},
|
|
185
|
+
{0x021D0, rel, "Leftarrow"},
|
|
186
|
+
{0x021D4, rel, "Leftrightarrow"},
|
|
187
|
+
{0x0264C, ord, "Leo"},
|
|
188
|
+
{0x02272, rel, "LessTilde"},
|
|
189
|
+
{0x0264E, ord, "Libra"},
|
|
190
|
+
{0x021DA, rel, "Lleftarrow"},
|
|
191
|
+
{0x027F8, rel, "Longleftarrow"},
|
|
192
|
+
{0x027FA, rel, "Longleftrightarrow"},
|
|
193
|
+
{0x027FD, rel, "Longmappedfrom"},
|
|
194
|
+
{0x027FD, rel, "Longmapsfrom"},
|
|
195
|
+
{0x027FE, rel, "Longmapsto"},
|
|
196
|
+
{0x027F9, rel, "Longrightarrow"},
|
|
197
|
+
{0x02985, opn, "Lparen"},
|
|
198
|
+
{0x02995, opn, "Lparengtr"},
|
|
199
|
+
{0x021B0, rel, "Lsh"},
|
|
200
|
+
{0x02AA1, rel, "Lt"},
|
|
201
|
+
{0x029DA, opn, "Lvzigzag"},
|
|
202
|
+
{0x02906, rel, "Mappedfrom"},
|
|
203
|
+
{0x021A7, rel, "MapsDown"},
|
|
204
|
+
{0x021A5, rel, "MapsUp"},
|
|
205
|
+
{0x02906, rel, "Mapsfrom"},
|
|
206
|
+
{0x02907, rel, "Mapsto"},
|
|
207
|
+
{0x02642, ord, "Mars"},
|
|
208
|
+
{0x0263F, ord, "Mercury"},
|
|
209
|
+
{0x02127, ord, "Mho"},
|
|
210
|
+
{0x000B5, ord, "Micro"},
|
|
211
|
+
{0x021D7, rel, "Nearrow"},
|
|
212
|
+
{0x02646, ord, "Neptune"},
|
|
213
|
+
{0x02AA2, rel, "NestedGreaterGreater"},
|
|
214
|
+
{0x02AA1, rel, "NestedLessLess"},
|
|
215
|
+
{0x02AEC, rel, "Not"},
|
|
216
|
+
{0x02279, rel, "NotGreaterLess"},
|
|
217
|
+
{0x02275, rel, "NotGreaterTilde"},
|
|
218
|
+
{0x022EA, rel, "NotLeftTriangle"},
|
|
219
|
+
{0x02274, rel, "NotLessTilde"},
|
|
220
|
+
{0x022EB, rel, "NotRightTriangle"},
|
|
221
|
+
{0x021D6, rel, "Nwarrow"},
|
|
222
|
+
{0x003A9, ord, "Omega"},
|
|
223
|
+
{0x02A37, bin, "Otimes"},
|
|
224
|
+
{0x02AEB, rel, "Perp"},
|
|
225
|
+
{0x003A6, ord, "Phi"},
|
|
226
|
+
{0x003A0, ord, "Pi"},
|
|
227
|
+
{0x0210E, ord, "Planckconst"},
|
|
228
|
+
{0x02647, ord, "Pluto"},
|
|
229
|
+
{0x02ABB, rel, "Prec"},
|
|
230
|
+
{0x0227C, rel, "PrecedesSlantEqual"},
|
|
231
|
+
{0x0227E, rel, "PrecedesTilde"},
|
|
232
|
+
{0x0214A, ord, "PropertyLine"},
|
|
233
|
+
{0x02237, rel, "Proportion"},
|
|
234
|
+
{0x003A8, ord, "Psi"},
|
|
235
|
+
{0x0220E, ord, "QED"},
|
|
236
|
+
{0x003D8, ord, "Qoppa"},
|
|
237
|
+
{0x02047, ord, "Question"},
|
|
238
|
+
{0x025B6, bin, "RHD"},
|
|
239
|
+
{0x025D7, ord, "RIGHTCIRCLE"},
|
|
240
|
+
{0x025D1, ord, "RIGHTcircle"},
|
|
241
|
+
{0x02B46, rel, "RRightarrow"},
|
|
242
|
+
{0x027C6, cls, "Rbag"},
|
|
243
|
+
{0x027E7, cls, "Rbrack"},
|
|
244
|
+
{0x027ED, cls, "Rbrbrak"},
|
|
245
|
+
{0x021B3, rel, "Rdsh"},
|
|
246
|
+
{0x0211C, ord, "Re"},
|
|
247
|
+
{0x021E5, rel, "RightArrowBar"},
|
|
248
|
+
{0x0295D, rel, "RightDownTeeVector"},
|
|
249
|
+
{0x02955, rel, "RightDownVectorBar"},
|
|
250
|
+
{0x0295B, rel, "RightTeeVector"},
|
|
251
|
+
{0x025B7, bin, "RightTriangle"},
|
|
252
|
+
{0x029D0, rel, "RightTriangleBar"},
|
|
253
|
+
{0x0295C, rel, "RightUpTeeVector"},
|
|
254
|
+
{0x02954, rel, "RightUpVectorBar"},
|
|
255
|
+
{0x02953, rel, "RightVectorBar"},
|
|
256
|
+
{0x021D2, rel, "Rightarrow"},
|
|
257
|
+
{0x02986, cls, "Rparen"},
|
|
258
|
+
{0x02996, cls, "Rparenless"},
|
|
259
|
+
{0x021DB, rel, "Rrightarrow"},
|
|
260
|
+
{0x021B1, rel, "Rsh"},
|
|
261
|
+
{0x029DB, cls, "Rvzigzag"},
|
|
262
|
+
{0x02A76, rel, "Same"},
|
|
263
|
+
{0x003E0, ord, "Sampi"},
|
|
264
|
+
{0x02644, ord, "Saturn"},
|
|
265
|
+
{0x0264F, ord, "Scorpio"},
|
|
266
|
+
{0x021D8, rel, "Searrow"},
|
|
267
|
+
{0x02254, rel, "SetDelayed"},
|
|
268
|
+
{0x003A3, ord, "Sigma"},
|
|
269
|
+
{0x02A4E, bin, "Sqcap"},
|
|
270
|
+
{0x02A4F, bin, "Sqcup"},
|
|
271
|
+
{0x02610, ord, "Square"},
|
|
272
|
+
{0x003DA, ord, "Stigma"},
|
|
273
|
+
{0x022D0, rel, "Subset"},
|
|
274
|
+
{0x02ABC, rel, "Succ"},
|
|
275
|
+
{0x0227D, rel, "SucceedsSlantEqual"},
|
|
276
|
+
{0x0227F, rel, "SucceedsTilde"},
|
|
277
|
+
{0x02609, ord, "Sun"},
|
|
278
|
+
{0x022D1, rel, "Supset"},
|
|
279
|
+
{0x021D9, rel, "Swarrow"},
|
|
280
|
+
{0x02649, ord, "Taurus"},
|
|
281
|
+
{0x00398, ord, "Theta"},
|
|
282
|
+
{0x02AEA, rel, "Top"},
|
|
283
|
+
{0x027F0, rel, "UUparrow"},
|
|
284
|
+
{0x02912, rel, "UpArrowBar"},
|
|
285
|
+
{0x021D1, rel, "Uparrow"},
|
|
286
|
+
{0x021D5, rel, "Updownarrow"},
|
|
287
|
+
{0x003A5, ord, "Upsilon"},
|
|
288
|
+
{0x02645, ord, "Uranus"},
|
|
289
|
+
{0x0290A, rel, "Uuparrow"},
|
|
290
|
+
{0x022AB, rel, "VDash"},
|
|
291
|
+
{0x02980, ord, "VERT"},
|
|
292
|
+
{0x02AEB, rel, "Vbar"},
|
|
293
|
+
{0x022A9, rel, "Vdash"},
|
|
294
|
+
{0x020D7, acc, "Vec"},
|
|
295
|
+
{0x02A54, bin, "Vee"},
|
|
296
|
+
{0x02640, ord, "Venus"},
|
|
297
|
+
{0x02016, ord, "Vert"},
|
|
298
|
+
{0x022AA, rel, "Vvdash"},
|
|
299
|
+
{0x02980, ord, "Vvert"},
|
|
300
|
+
{0x02A53, bin, "Wedge"},
|
|
301
|
+
{0x02612, ord, "XBox"},
|
|
302
|
+
{0x0039E, ord, "Xi"},
|
|
303
|
+
{0x02144, ord, "Yup"},
|
|
304
|
+
{0x001B5, ord, "Zbar"},
|
|
305
|
+
{0x0005F, ord, "_"},
|
|
306
|
+
{0x023E6, ord, "accurrent"},
|
|
307
|
+
{0x0267E, ord, "acidfree"},
|
|
308
|
+
{0x00301, acc, "acute"},
|
|
309
|
+
{0x02940, rel, "acwcirclearrow"},
|
|
310
|
+
{0x027F2, rel, "acwgapcirclearrow"},
|
|
311
|
+
{0x02939, rel, "acwleftarcarrow"},
|
|
312
|
+
{0x021BA, ord, "acwopencirclearrow"},
|
|
313
|
+
{0x0293A, rel, "acwoverarcarrow"},
|
|
314
|
+
{0x0293B, rel, "acwunderarcarrow"},
|
|
315
|
+
{0x022F0, rel, "adots"},
|
|
316
|
+
{0x02135, ord, "aleph"},
|
|
317
|
+
{0x003B1, ord, "alpha"},
|
|
318
|
+
{0x003B1, ord, "alphaup"},
|
|
319
|
+
{0x02A3F, bin, "amalg"},
|
|
320
|
+
{0x00026, ord, "ampersand"},
|
|
321
|
+
{0x02693, ord, "anchor"},
|
|
322
|
+
{0x0299F, ord, "angdnr"},
|
|
323
|
+
{0x02220, ord, "angle"},
|
|
324
|
+
{0x0299E, ord, "angles"},
|
|
325
|
+
{0x029A4, ord, "angleubar"},
|
|
326
|
+
{0x020E7, acc, "annuity"},
|
|
327
|
+
{0x02273, rel, "apprge"},
|
|
328
|
+
{0x02272, rel, "apprle"},
|
|
329
|
+
{0x02248, rel, "approx"},
|
|
330
|
+
{0x0224A, rel, "approxeq"},
|
|
331
|
+
{0x02A70, rel, "approxeqq"},
|
|
332
|
+
{0x0224B, rel, "approxident"},
|
|
333
|
+
{0x02652, ord, "aquarius"},
|
|
334
|
+
{0x02258, rel, "arceq"},
|
|
335
|
+
{0x02648, ord, "aries"},
|
|
336
|
+
{0x027A2, ord, "arrowbullet"},
|
|
337
|
+
{0x022A6, rel, "assert"},
|
|
338
|
+
{0x02217, bin, "ast"},
|
|
339
|
+
{0x02A6E, rel, "asteq"},
|
|
340
|
+
{0x020F0, acc, "asteraccent"},
|
|
341
|
+
{0x02609, ord, "astrosun"},
|
|
342
|
+
{0x0224D, rel, "asymp"},
|
|
343
|
+
{0x00040, ord, "atsign"},
|
|
344
|
+
{0x02A11, opt | N, "awint"},
|
|
345
|
+
{0x02AED, rel, "bNot"},
|
|
346
|
+
{0x0224C, rel, "backcong"},
|
|
347
|
+
{0x02036, ord, "backdprime"},
|
|
348
|
+
{0x003F6, ord, "backepsilon"},
|
|
349
|
+
{0x02035, ord, "backprime"},
|
|
350
|
+
{0x0223D, rel, "backsim"},
|
|
351
|
+
{0x022CD, rel, "backsimeq"},
|
|
352
|
+
{0x0005C, ord, "backslash"},
|
|
353
|
+
{0x02037, ord, "backtrprime"},
|
|
354
|
+
{0x022FF, rel, "bagmember"},
|
|
355
|
+
{0x02713, ord, "ballotcheck"},
|
|
356
|
+
{0x02717, ord, "ballotx"},
|
|
357
|
+
{0x00304, acc, "bar"},
|
|
358
|
+
{0x02AEA, rel, "barV"},
|
|
359
|
+
{0x02A43, bin, "barcap"},
|
|
360
|
+
{0x02A42, bin, "barcup"},
|
|
361
|
+
{0x02961, rel, "bardownharpoonleft"},
|
|
362
|
+
{0x0295D, rel, "bardownharpoonright"},
|
|
363
|
+
{0x022F6, rel, "barin"},
|
|
364
|
+
{0x021E4, rel, "barleftarrow"},
|
|
365
|
+
{0x021B9, ord, "barleftarrowrightarrowba"},
|
|
366
|
+
{0x0296B, rel, "barleftharpoon"},
|
|
367
|
+
{0x02956, rel, "barleftharpoondown"},
|
|
368
|
+
{0x02952, rel, "barleftharpoonup"},
|
|
369
|
+
{0x021B8, ord, "barovernorthwestarrow"},
|
|
370
|
+
{0x02920, rel, "barrightarrowdiamond"},
|
|
371
|
+
{0x0296D, rel, "barrightharpoon"},
|
|
372
|
+
{0x0295F, rel, "barrightharpoondown"},
|
|
373
|
+
{0x0295B, rel, "barrightharpoonup"},
|
|
374
|
+
{0x02912, rel, "baruparrow"},
|
|
375
|
+
{0x02958, rel, "barupharpoonleft"},
|
|
376
|
+
{0x02954, rel, "barupharpoonright"},
|
|
377
|
+
{0x022BD, bin, "barvee"},
|
|
378
|
+
{0x022BC, bin, "barwedge"},
|
|
379
|
+
{0x023B6, ord, "bbrktbrk"},
|
|
380
|
+
{0x02506, ord, "bdtriplevdash"},
|
|
381
|
+
{0x02235, ord, "because"},
|
|
382
|
+
{0x023E3, ord, "benzenr"},
|
|
383
|
+
{0x003B2, ord, "beta"},
|
|
384
|
+
{0x003B2, ord, "betaup"},
|
|
385
|
+
{0x02136, ord, "beth"},
|
|
386
|
+
{0x0226C, rel, "between"},
|
|
387
|
+
{0x025BC, ord, "bigblacktriangledown"},
|
|
388
|
+
{0x025B2, ord, "bigblacktriangleup"},
|
|
389
|
+
{0x027D8, opt, "bigbot"},
|
|
390
|
+
{0x022C2, opt, "bigcap"},
|
|
391
|
+
{0x022C3, opt, "bigcup"},
|
|
392
|
+
{0x02A03, opt, "bigcupdot"},
|
|
393
|
+
{0x02AFC, opt, "biginterleave"},
|
|
394
|
+
{0x02A00, opt, "bigodot"},
|
|
395
|
+
{0x02A01, opt, "bigoplus"},
|
|
396
|
+
{0x02A02, opt, "bigotimes"},
|
|
397
|
+
{0x02A57, bin, "bigslopedvee"},
|
|
398
|
+
{0x02A58, bin, "bigslopedwedge"},
|
|
399
|
+
{0x02A05, opt, "bigsqcap"},
|
|
400
|
+
{0x02A06, opt, "bigsqcup"},
|
|
401
|
+
{0x02605, ord, "bigstar"},
|
|
402
|
+
{0x02AFF, opt, "bigtalloblong"},
|
|
403
|
+
{0x02A09, opt, "bigtimes"},
|
|
404
|
+
{0x027D9, opt, "bigtop"},
|
|
405
|
+
{0x025BD, bin, "bigtriangledown"},
|
|
406
|
+
{0x02A1E, opt, "bigtriangleleft"},
|
|
407
|
+
{0x025B3, bin, "bigtriangleup"},
|
|
408
|
+
{0x02A04, opt, "biguplus"},
|
|
409
|
+
{0x022C1, opt, "bigvee"},
|
|
410
|
+
{0x022C0, opt, "bigwedge"},
|
|
411
|
+
{0x02606, ord, "bigwhitestar"},
|
|
412
|
+
{0x02916, rel, "bij"},
|
|
413
|
+
{0x02623, ord, "biohazard"},
|
|
414
|
+
{0x029ED, ord, "blackcircledownarrow"},
|
|
415
|
+
{0x02688, ord, "blackcircledrightdot"},
|
|
416
|
+
{0x02689, ord, "blackcircledtwodots"},
|
|
417
|
+
{0x025D5, ord, "blackcircleulquadwhite"},
|
|
418
|
+
{0x029EA, ord, "blackdiamonddownarrow"},
|
|
419
|
+
{0x029D7, bin, "blackhourglass"},
|
|
420
|
+
{0x025C8, ord, "blackinwhitediamond"},
|
|
421
|
+
{0x025A3, ord, "blackinwhitesquare"},
|
|
422
|
+
{0x025D6, ord, "blacklefthalfcircle"},
|
|
423
|
+
{0x029EB, bin, "blacklozenge"},
|
|
424
|
+
{0x025C4, ord, "blackpointerleft"},
|
|
425
|
+
{0x025BA, ord, "blackpointerright"},
|
|
426
|
+
{0x025D7, ord, "blackrighthalfcircle"},
|
|
427
|
+
{0x0263B, ord, "blacksmiley"},
|
|
428
|
+
{0x025FC, ord, "blacksquare"},
|
|
429
|
+
{0x025B4, bin, "blacktriangle"},
|
|
430
|
+
{0x025BE, bin, "blacktriangledown"},
|
|
431
|
+
{0x025C0, bin, "blacktriangleleft"},
|
|
432
|
+
{0x025B6, bin, "blacktriangleright"},
|
|
433
|
+
{0x025B4, bin, "blacktriangleup"},
|
|
434
|
+
{0x02B2C, ord, "blkhorzoval"},
|
|
435
|
+
{0x02B2E, ord, "blkvertoval"},
|
|
436
|
+
{0x02588, ord, "blockfull"},
|
|
437
|
+
{0x02592, ord, "blockhalfshaded"},
|
|
438
|
+
{0x0258C, ord, "blocklefthalf"},
|
|
439
|
+
{0x02584, ord, "blocklowhalf"},
|
|
440
|
+
{0x02591, ord, "blockqtrshaded"},
|
|
441
|
+
{0x02590, ord, "blockrighthalf"},
|
|
442
|
+
{0x02593, ord, "blockthreeqtrshaded"},
|
|
443
|
+
{0x02580, ord, "blockuphalf"},
|
|
444
|
+
{0x022A5, ord, "bot"},
|
|
445
|
+
{0x025E1, ord, "botsemicircle"},
|
|
446
|
+
{0x022C8, rel, "bowtie"},
|
|
447
|
+
{0x029C6, bin, "boxast"},
|
|
448
|
+
{0x025EB, bin, "boxbar"},
|
|
449
|
+
{0x029C8, bin, "boxbox"},
|
|
450
|
+
{0x029C5, bin, "boxbslash"},
|
|
451
|
+
{0x029C7, bin, "boxcircle"},
|
|
452
|
+
{0x029C4, bin, "boxdiag"},
|
|
453
|
+
{0x022A1, bin, "boxdot"},
|
|
454
|
+
{0x0229F, bin, "boxminus"},
|
|
455
|
+
{0x029C9, ord, "boxonbox"},
|
|
456
|
+
{0x0229E, bin, "boxplus"},
|
|
457
|
+
{0x029C4, bin, "boxslash"},
|
|
458
|
+
{0x022A0, bin, "boxtimes"},
|
|
459
|
+
{0x02642, ord, "boy"},
|
|
460
|
+
{0x00306, acc, "breve"},
|
|
461
|
+
{0x02B41, rel, "bsimilarleftarrow"},
|
|
462
|
+
{0x02B47, rel, "bsimilarrightarrow"},
|
|
463
|
+
{0x027C8, rel, "bsolhsub"},
|
|
464
|
+
{0x02A32, bin, "btimes"},
|
|
465
|
+
{0x02022, bin, "bullet"},
|
|
466
|
+
{0x025CE, ord, "bullseye"},
|
|
467
|
+
{0x0224F, rel, "bumpeq"},
|
|
468
|
+
{0x02AAE, rel, "bumpeqq"},
|
|
469
|
+
{0x0228E, bin, "buni"},
|
|
470
|
+
{0x0264B, ord, "cancer"},
|
|
471
|
+
{0x00310, acc, "candra"},
|
|
472
|
+
{0x02229, bin, "cap"},
|
|
473
|
+
{0x02A49, bin, "capbarcup"},
|
|
474
|
+
{0x02A40, bin, "capdot"},
|
|
475
|
+
{0x02A47, bin, "capovercup"},
|
|
476
|
+
{0x02651, ord, "capricornus"},
|
|
477
|
+
{0x02A44, bin, "capwedge"},
|
|
478
|
+
{0x02038, ord, "caretinsert"},
|
|
479
|
+
{0x021B5, ord, "carriagereturn"},
|
|
480
|
+
{0x02040, bin, "cat"},
|
|
481
|
+
{0x0293F, rel, "ccwundercurvearrow"},
|
|
482
|
+
{0x022C5, bin, "cdot"},
|
|
483
|
+
{0x000B7, bin, "cdotp"},
|
|
484
|
+
{0x022EF, ord, "cdots"},
|
|
485
|
+
{0x000A2, ord, "cent"},
|
|
486
|
+
{0x0030C, acc, "check"},
|
|
487
|
+
{0x02713, ord, "checkmark"},
|
|
488
|
+
{0x003C7, ord, "chi"},
|
|
489
|
+
{0x003C7, ord, "chiup"},
|
|
490
|
+
{0x029C3, ord, "cirE"},
|
|
491
|
+
{0x027DF, rel, "cirbot"},
|
|
492
|
+
{0x02218, bin, "circ"},
|
|
493
|
+
{0x02257, rel, "circeq"},
|
|
494
|
+
{0x021BA, ord, "circlearrowleft"},
|
|
495
|
+
{0x021BB, ord, "circlearrowright"},
|
|
496
|
+
{0x025D2, ord, "circlebottomhalfblack"},
|
|
497
|
+
{0x000AE, ord, "circledR"},
|
|
498
|
+
{0x0229B, bin, "circledast"},
|
|
499
|
+
{0x029B8, bin, "circledbslash"},
|
|
500
|
+
{0x029BF, ord, "circledbullet"},
|
|
501
|
+
{0x0229A, bin, "circledcirc"},
|
|
502
|
+
{0x0229D, bin, "circleddash"},
|
|
503
|
+
{0x0229C, bin, "circledequal"},
|
|
504
|
+
{0x029C1, bin, "circledgtr"},
|
|
505
|
+
{0x029C0, bin, "circledless"},
|
|
506
|
+
{0x029EC, ord, "circledownarrow"},
|
|
507
|
+
{0x029B7, bin, "circledparallel"},
|
|
508
|
+
{0x02686, ord, "circledrightdot"},
|
|
509
|
+
{0x0272A, ord, "circledstar"},
|
|
510
|
+
{0x02687, ord, "circledtwodots"},
|
|
511
|
+
{0x029B6, bin, "circledvert"},
|
|
512
|
+
{0x029BE, ord, "circledwhitebullet"},
|
|
513
|
+
{0x029B5, bin, "circlehbar"},
|
|
514
|
+
{0x025D0, ord, "circlelefthalfblack"},
|
|
515
|
+
{0x025F5, ord, "circlellquad"},
|
|
516
|
+
{0x025F6, ord, "circlelrquad"},
|
|
517
|
+
{0x02B30, rel, "circleonleftarrow"},
|
|
518
|
+
{0x021F4, rel, "circleonrightarrow"},
|
|
519
|
+
{0x025D1, ord, "circlerighthalfblack"},
|
|
520
|
+
{0x025D3, ord, "circletophalfblack"},
|
|
521
|
+
{0x025F4, ord, "circleulquad"},
|
|
522
|
+
{0x025F7, ord, "circleurquad"},
|
|
523
|
+
{0x025D4, ord, "circleurquadblack"},
|
|
524
|
+
{0x025CD, ord, "circlevertfill"},
|
|
525
|
+
{0x02A10, opt | N, "cirfnint"},
|
|
526
|
+
{0x02AEF, rel, "cirmid"},
|
|
527
|
+
{0x029C2, ord, "cirscir"},
|
|
528
|
+
{0x02232, opt | N, "clockoint"},
|
|
529
|
+
{0x02A4D, bin, "closedvarcap"},
|
|
530
|
+
{0x02A4C, bin, "closedvarcup"},
|
|
531
|
+
{0x02A50, bin, "closedvarcupsmashprod"},
|
|
532
|
+
{0x02050, rel, "closure"},
|
|
533
|
+
{0x02663, ord, "clubsuit"},
|
|
534
|
+
{0x02233, opt | N, "cntclockoint"},
|
|
535
|
+
{0x0003A, puc, "colon"},
|
|
536
|
+
{0x02254, rel, "coloneq"},
|
|
537
|
+
{0x02254, rel, "coloneqq"},
|
|
538
|
+
{0x0002C, puc, "comma"},
|
|
539
|
+
{0x02A29, bin, "commaminus"},
|
|
540
|
+
{0x02A3E, bin, "comp"},
|
|
541
|
+
{0x02201, ord, "complement"},
|
|
542
|
+
{0x027E1, bin, "concavediamond"},
|
|
543
|
+
{0x027E2, bin, "concavediamondtickleft"},
|
|
544
|
+
{0x027E3, bin, "concavediamondtickright"},
|
|
545
|
+
{0x02245, rel, "cong"},
|
|
546
|
+
{0x02A6D, rel, "congdot"},
|
|
547
|
+
{0x02332, ord, "conictaper"},
|
|
548
|
+
{0x02A07, opt, "conjquant"},
|
|
549
|
+
{0x02210, opt, "coprod"},
|
|
550
|
+
{0x02259, rel, "corresponds"},
|
|
551
|
+
{0x02ACF, rel, "csub"},
|
|
552
|
+
{0x02AD1, rel, "csube"},
|
|
553
|
+
{0x02AD0, rel, "csup"},
|
|
554
|
+
{0x02AD2, rel, "csupe"},
|
|
555
|
+
{0x0221B, ord, "cuberoot"},
|
|
556
|
+
{0x0222A, bin, "cup"},
|
|
557
|
+
{0x02A48, bin, "cupbarcap"},
|
|
558
|
+
{0x0228D, bin, "cupdot"},
|
|
559
|
+
{0x0228C, bin, "cupleftarrow"},
|
|
560
|
+
{0x02A46, bin, "cupovercap"},
|
|
561
|
+
{0x02A45, bin, "cupvee"},
|
|
562
|
+
{0x022DE, rel, "curlyeqprec"},
|
|
563
|
+
{0x022DF, rel, "curlyeqsucc"},
|
|
564
|
+
{0x022CE, bin, "curlyvee"},
|
|
565
|
+
{0x022CF, bin, "curlywedge"},
|
|
566
|
+
{0x021B6, rel, "curvearrowleft"},
|
|
567
|
+
{0x0293D, rel, "curvearrowleftplus"},
|
|
568
|
+
{0x021B7, rel, "curvearrowright"},
|
|
569
|
+
{0x0293C, rel, "curvearrowrightminus"},
|
|
570
|
+
{0x02941, rel, "cwcirclearrow"},
|
|
571
|
+
{0x027F3, rel, "cwgapcirclearrow"},
|
|
572
|
+
{0x021BB, ord, "cwopencirclearrow"},
|
|
573
|
+
{0x02938, rel, "cwrightarcarrow"},
|
|
574
|
+
{0x0293E, rel, "cwundercurvearrow"},
|
|
575
|
+
{0x02020, bin, "dagger"},
|
|
576
|
+
{0x02138, ord, "daleth"},
|
|
577
|
+
{0x02621, ord, "danger"},
|
|
578
|
+
{0x02AE3, rel, "dashV"},
|
|
579
|
+
{0x027DB, rel, "dashVdash"},
|
|
580
|
+
{0x021E2, ord, "dasharrow"},
|
|
581
|
+
{0x02239, rel, "dashcolon"},
|
|
582
|
+
{0x021E0, ord, "dashleftarrow"},
|
|
583
|
+
{0x0296B, rel, "dashleftharpoondown"},
|
|
584
|
+
{0x021E2, ord, "dashrightarrow"},
|
|
585
|
+
{0x0296D, rel, "dashrightharpoondown"},
|
|
586
|
+
{0x022A3, rel, "dashv"},
|
|
587
|
+
{0x0290F, rel, "dbkarow"},
|
|
588
|
+
{0x0222F, opt | N, "dbloint"},
|
|
589
|
+
{0x02146, ord, "dd"},
|
|
590
|
+
{0x02021, bin, "ddagger"},
|
|
591
|
+
{0x020DC, acc, "ddddot"},
|
|
592
|
+
{0x020DB, acc, "dddot"},
|
|
593
|
+
{0x00308, acc, "ddot"},
|
|
594
|
+
{0x022F1, rel, "ddots"},
|
|
595
|
+
{0x02A77, rel, "ddotseq"},
|
|
596
|
+
{0x003B4, ord, "delta"},
|
|
597
|
+
{0x003B4, ord, "deltaup"},
|
|
598
|
+
{0x02300, ord, "diameter"},
|
|
599
|
+
{0x022C4, bin, "diamond"},
|
|
600
|
+
{0x02B19, ord, "diamondbotblack"},
|
|
601
|
+
{0x027D0, ord, "diamondcdot"},
|
|
602
|
+
{0x0291D, rel, "diamondleftarrow"},
|
|
603
|
+
{0x0291F, rel, "diamondleftarrowbar"},
|
|
604
|
+
{0x02B16, ord, "diamondleftblack"},
|
|
605
|
+
{0x02B17, ord, "diamondrightblack"},
|
|
606
|
+
{0x02662, ord, "diamondsuit"},
|
|
607
|
+
{0x02B18, ord, "diamondtopblack"},
|
|
608
|
+
{0x02680, ord, "dicei"},
|
|
609
|
+
{0x02681, ord, "diceii"},
|
|
610
|
+
{0x02682, ord, "diceiii"},
|
|
611
|
+
{0x02683, ord, "diceiv"},
|
|
612
|
+
{0x02684, ord, "dicev"},
|
|
613
|
+
{0x02685, ord, "dicevi"},
|
|
614
|
+
{0x003DD, ord, "digamma"},
|
|
615
|
+
{0x0273D, ord, "dingasterisk"},
|
|
616
|
+
{0x022C2, opt | N, "dint"},
|
|
617
|
+
{0x022F2, rel, "disin"},
|
|
618
|
+
{0x02A08, opt, "disjquant"},
|
|
619
|
+
{0x000F7, bin, "div"},
|
|
620
|
+
{0x022C7, bin, "divideontimes"},
|
|
621
|
+
{0x02215, bin, "divslash"},
|
|
622
|
+
{0x021B2, rel, "dlsh"},
|
|
623
|
+
{0x00307, acc, "dot"},
|
|
624
|
+
{0x02250, rel, "doteq"},
|
|
625
|
+
{0x02251, rel, "doteqdot"},
|
|
626
|
+
{0x02250, rel, "dotequal"},
|
|
627
|
+
{0x02A67, rel, "dotequiv"},
|
|
628
|
+
{0x02238, bin, "dotminus"},
|
|
629
|
+
{0x02214, bin, "dotplus"},
|
|
630
|
+
{0x02A6A, rel, "dotsim"},
|
|
631
|
+
{0x0223A, rel, "dotsminusdots"},
|
|
632
|
+
{0x025CC, ord, "dottedcircle"},
|
|
633
|
+
{0x02B1A, ord, "dottedsquare"},
|
|
634
|
+
{0x02A30, bin, "dottimes"},
|
|
635
|
+
{0x02A62, bin, "doublebarvee"},
|
|
636
|
+
{0x02A5E, bin, "doublebarwedge"},
|
|
637
|
+
{0x029FA, bin, "doubleplus"},
|
|
638
|
+
{0x02193, rel, "downarrow"},
|
|
639
|
+
{0x02913, rel, "downarrowbar"},
|
|
640
|
+
{0x02908, rel, "downarrowbarred"},
|
|
641
|
+
{0x021F5, rel, "downarrowuparrow"},
|
|
642
|
+
{0x021E3, ord, "downdasharrow"},
|
|
643
|
+
{0x021CA, rel, "downdownarrows"},
|
|
644
|
+
{0x02965, rel, "downdownharpoons"},
|
|
645
|
+
{0x0297F, rel, "downfishtail"},
|
|
646
|
+
{0x021C3, rel, "downharpoonleft"},
|
|
647
|
+
{0x02959, rel, "downharpoonleftbar"},
|
|
648
|
+
{0x021C2, rel, "downharpoonright"},
|
|
649
|
+
{0x02955, rel, "downharpoonrightbar"},
|
|
650
|
+
{0x02965, rel, "downharpoonsleftright"},
|
|
651
|
+
{0x02935, ord, "downrightcurvedarrow"},
|
|
652
|
+
{0x029E8, ord, "downtriangleleftblack"},
|
|
653
|
+
{0x029E9, ord, "downtrianglerightblack"},
|
|
654
|
+
{0x021F5, rel, "downuparrows"},
|
|
655
|
+
{0x0296F, rel, "downupharpoons"},
|
|
656
|
+
{0x0296F, rel, "downupharpoonsleftright"},
|
|
657
|
+
{0x021E9, ord, "downwhitearrow"},
|
|
658
|
+
{0x021AF, rel, "downzigzagarrow"},
|
|
659
|
+
{0x02033, ord, "dprime"},
|
|
660
|
+
{0x0279B, ord, "draftingarrow"},
|
|
661
|
+
{0x02910, rel, "drbkarow"},
|
|
662
|
+
{0x025C1, bin, "dres"},
|
|
663
|
+
{0x0031A, acc, "droang"},
|
|
664
|
+
{0x021B3, rel, "drsh"},
|
|
665
|
+
{0x029F6, bin, "dsol"},
|
|
666
|
+
{0x02A64, bin, "dsub"},
|
|
667
|
+
{0x029DF, rel, "dualmap"},
|
|
668
|
+
{0x022C3, opt, "duni"},
|
|
669
|
+
{0x02641, ord, "earth"},
|
|
670
|
+
{0x02147, ord, "ee"},
|
|
671
|
+
{0x02A98, rel, "egsdot"},
|
|
672
|
+
{0x0266A, ord, "eighthnote"},
|
|
673
|
+
{0x023E7, ord, "elinters"},
|
|
674
|
+
{0x02113, ord, "ell"},
|
|
675
|
+
{0x02A97, rel, "elsdot"},
|
|
676
|
+
{0x02205, ord, "emptyset"},
|
|
677
|
+
{0x029B3, ord, "emptysetoarr"},
|
|
678
|
+
{0x029B4, ord, "emptysetoarrl"},
|
|
679
|
+
{0x029B1, ord, "emptysetobar"},
|
|
680
|
+
{0x029B2, ord, "emptysetocirc"},
|
|
681
|
+
{0x020DD, acc, "enclosecircle"},
|
|
682
|
+
{0x020DF, acc, "enclosediamond"},
|
|
683
|
+
{0x020DE, acc, "enclosesquare"},
|
|
684
|
+
{0x020E4, acc, "enclosetriangle"},
|
|
685
|
+
{0x02025, ord, "enleadertwodots"},
|
|
686
|
+
{0x029E3, rel, "eparsl"},
|
|
687
|
+
{0x003F5, ord, "epsilon"},
|
|
688
|
+
{0x003F5, ord, "epsilonup"},
|
|
689
|
+
{0x02256, rel, "eqcirc"},
|
|
690
|
+
{0x02255, rel, "eqcolon"},
|
|
691
|
+
{0x0225D, rel, "eqdef"},
|
|
692
|
+
{0x02A66, rel, "eqdot"},
|
|
693
|
+
{0x02A75, rel, "eqeq"},
|
|
694
|
+
{0x02A76, rel, "eqeqeq"},
|
|
695
|
+
{0x022DD, rel, "eqgtr"},
|
|
696
|
+
{0x022DC, rel, "eqless"},
|
|
697
|
+
{0x02255, rel, "eqqcolon"},
|
|
698
|
+
{0x02A9A, rel, "eqqgtr"},
|
|
699
|
+
{0x02A99, rel, "eqqless"},
|
|
700
|
+
{0x02A71, bin, "eqqplus"},
|
|
701
|
+
{0x02A73, rel, "eqqsim"},
|
|
702
|
+
{0x02A9C, rel, "eqqslantgtr"},
|
|
703
|
+
{0x02A9B, rel, "eqqslantless"},
|
|
704
|
+
{0x02242, rel, "eqsim"},
|
|
705
|
+
{0x02A96, rel, "eqslantgtr"},
|
|
706
|
+
{0x02A95, rel, "eqslantless"},
|
|
707
|
+
{0x0003D, rel, "equal"},
|
|
708
|
+
{0x02B40, rel, "equalleftarrow"},
|
|
709
|
+
{0x022D5, rel, "equalparallel"},
|
|
710
|
+
{0x02971, rel, "equalrightarrow"},
|
|
711
|
+
{0x021CC, rel, "equilibrium"},
|
|
712
|
+
{0x02261, rel, "equiv"},
|
|
713
|
+
{0x02A78, rel, "equivDD"},
|
|
714
|
+
{0x02A68, rel, "equivVert"},
|
|
715
|
+
{0x02A69, rel, "equivVvert"},
|
|
716
|
+
{0x029E5, rel, "eqvparsl"},
|
|
717
|
+
{0x029F3, ord, "errbarblackcircle"},
|
|
718
|
+
{0x029F1, ord, "errbarblackdiamond"},
|
|
719
|
+
{0x029EF, ord, "errbarblacksquare"},
|
|
720
|
+
{0x029F2, ord, "errbarcircle"},
|
|
721
|
+
{0x029F0, ord, "errbardiamond"},
|
|
722
|
+
{0x029EE, ord, "errbarsquare"},
|
|
723
|
+
{0x003B7, ord, "eta"},
|
|
724
|
+
{0x003B7, ord, "etaup"},
|
|
725
|
+
{0x000F0, ord, "eth"},
|
|
726
|
+
{0x020AC, ord, "euro"},
|
|
727
|
+
{0x00021, puc, "exclam"},
|
|
728
|
+
{0x02203, ord, "exi"},
|
|
729
|
+
{0x02203, ord, "exists"},
|
|
730
|
+
{0x02252, rel, "fallingdotseq"},
|
|
731
|
+
{0x02A1F, opt, "fatsemi"},
|
|
732
|
+
{0x029D3, rel, "fbowtie"},
|
|
733
|
+
{0x02A3E, bin, "fcmp"},
|
|
734
|
+
{0x0292F, ord, "fdiagovnearrow"},
|
|
735
|
+
{0x0292C, ord, "fdiagovrdiag"},
|
|
736
|
+
{0x02640, ord, "female"},
|
|
737
|
+
{0x021FB, rel, "ffun"},
|
|
738
|
+
{0x02915, rel, "finj"},
|
|
739
|
+
{0x02A0F, opt | N, "fint"},
|
|
740
|
+
{0x025C9, ord, "fisheye"},
|
|
741
|
+
{0x0266D, ord, "flat"},
|
|
742
|
+
{0x023E5, ord, "fltns"},
|
|
743
|
+
{0x02200, ord, "forall"},
|
|
744
|
+
{0x02ADC, rel, "forks"},
|
|
745
|
+
{0x02ADD, rel, "forksnot"},
|
|
746
|
+
{0x02AD9, rel, "forkv"},
|
|
747
|
+
{0x02057, ord, "fourth"},
|
|
748
|
+
{0x0221C, ord, "fourthroot"},
|
|
749
|
+
{0x02999, ord, "fourvdots"},
|
|
750
|
+
{0x02044, bin, "fracslash"},
|
|
751
|
+
{0x02322, rel, "frown"},
|
|
752
|
+
{0x02639, ord, "frownie"},
|
|
753
|
+
{0x027D7, opt, "fullouterjoin"},
|
|
754
|
+
{0x02192, rel, "fun"},
|
|
755
|
+
{0x003B3, ord, "gamma"},
|
|
756
|
+
{0x003B3, ord, "gammaup"},
|
|
757
|
+
{0x02265, rel, "ge"},
|
|
758
|
+
{0x0264A, ord, "gemini"},
|
|
759
|
+
{0x02265, rel, "geq"},
|
|
760
|
+
{0x02267, rel, "geqq"},
|
|
761
|
+
{0x02AFA, rel, "geqqslant"},
|
|
762
|
+
{0x02A7E, rel, "geqslant"},
|
|
763
|
+
{0x02AA9, rel, "gescc"},
|
|
764
|
+
{0x02A80, rel, "gesdot"},
|
|
765
|
+
{0x02A82, rel, "gesdoto"},
|
|
766
|
+
{0x02A84, rel, "gesdotol"},
|
|
767
|
+
{0x02A94, rel, "gesles"},
|
|
768
|
+
{0x02190, rel, "gets"},
|
|
769
|
+
{0x0226B, rel, "gg"},
|
|
770
|
+
{0x02ABC, rel, "ggcurly"},
|
|
771
|
+
{0x022D9, rel, "ggg"},
|
|
772
|
+
{0x02AF8, rel, "gggnest"},
|
|
773
|
+
{0x02137, ord, "gimel"},
|
|
774
|
+
{0x02640, ord, "girl"},
|
|
775
|
+
{0x02A92, rel, "glE"},
|
|
776
|
+
{0x02AA5, rel, "gla"},
|
|
777
|
+
{0x029E6, rel, "gleichstark"},
|
|
778
|
+
{0x02AA4, rel, "glj"},
|
|
779
|
+
{0x02A8A, rel, "gnapprox"},
|
|
780
|
+
{0x02A88, rel, "gneq"},
|
|
781
|
+
{0x02269, rel, "gneqq"},
|
|
782
|
+
{0x022E7, rel, "gnsim"},
|
|
783
|
+
{0x00300, acc, "grave"},
|
|
784
|
+
{0x0003E, rel, "greater"},
|
|
785
|
+
{0x02A8E, rel, "gsime"},
|
|
786
|
+
{0x02A90, rel, "gsiml"},
|
|
787
|
+
{0x0003E, rel, "gt"},
|
|
788
|
+
{0x02AA7, rel, "gtcc"},
|
|
789
|
+
{0x02A7A, rel, "gtcir"},
|
|
790
|
+
{0x029A0, ord, "gtlpar"},
|
|
791
|
+
{0x02A7C, rel, "gtquest"},
|
|
792
|
+
{0x02A86, rel, "gtrapprox"},
|
|
793
|
+
{0x02978, rel, "gtrarr"},
|
|
794
|
+
{0x022D7, rel, "gtrdot"},
|
|
795
|
+
{0x022DB, rel, "gtreqless"},
|
|
796
|
+
{0x02A8C, rel, "gtreqqless"},
|
|
797
|
+
{0x02277, rel, "gtrless"},
|
|
798
|
+
{0x02273, rel, "gtrsim"},
|
|
799
|
+
{0x023AF, ord, "harrowextender"},
|
|
800
|
+
{0x022D5, rel, "hash"},
|
|
801
|
+
{0x00302, acc, "hat"},
|
|
802
|
+
{0x02A6F, rel, "hatapprox"},
|
|
803
|
+
{0x02661, ord, "heartsuit"},
|
|
804
|
+
{0x022B9, ord, "hermitmatrix"},
|
|
805
|
+
{0x02394, ord, "hexagon"},
|
|
806
|
+
{0x02B23, ord, "hexagonblack"},
|
|
807
|
+
{0x029F9, opt, "hide"},
|
|
808
|
+
{0x02924, rel, "hknearrow"},
|
|
809
|
+
{0x02923, rel, "hknwarrow"},
|
|
810
|
+
{0x02925, rel, "hksearow"},
|
|
811
|
+
{0x02926, rel, "hkswarow"},
|
|
812
|
+
{0x021A9, rel, "hookleftarrow"},
|
|
813
|
+
{0x021AA, rel, "hookrightarrow"},
|
|
814
|
+
{0x02015, ord, "horizbar"},
|
|
815
|
+
{0x029D6, bin, "hourglass"},
|
|
816
|
+
{0x02302, ord, "house"},
|
|
817
|
+
{0x025AD, ord, "hrectangle"},
|
|
818
|
+
{0x025AC, ord, "hrectangleblack"},
|
|
819
|
+
{0x0210F, ord, "hslash"},
|
|
820
|
+
{0x02043, ord, "hyphenbullet"},
|
|
821
|
+
{0x03030, ord, "hzigzag"},
|
|
822
|
+
{0x022F0, rel, "iddots"},
|
|
823
|
+
{0x027FA, rel, "iff"},
|
|
824
|
+
{0x02148, ord, "ii"},
|
|
825
|
+
{0x02A0C, opt | N, "iiiint"},
|
|
826
|
+
{0x0222D, opt | N, "iiint"},
|
|
827
|
+
{0x029DC, ord, "iinfin"},
|
|
828
|
+
{0x0222C, opt | N, "iint"},
|
|
829
|
+
{0x022B7, rel, "imageof"},
|
|
830
|
+
{0x00131, ord, "imath"},
|
|
831
|
+
{0x027F8, rel, "impliedby"},
|
|
832
|
+
{0x027F9, rel, "implies"},
|
|
833
|
+
{0x02208, rel, "in"},
|
|
834
|
+
{0x02206, ord, "increment"},
|
|
835
|
+
{0x0221E, ord, "infty"},
|
|
836
|
+
{0x021A3, rel, "inj"},
|
|
837
|
+
{0x0222B, opt | N, "int"},
|
|
838
|
+
{0x02A0E, opt | N, "intBar"},
|
|
839
|
+
{0x02A0D, opt | N, "intbar"},
|
|
840
|
+
{0x02321, ord, "intbottom"},
|
|
841
|
+
{0x02A19, opt | N, "intcap"},
|
|
842
|
+
{0x02231, opt | N, "intclockwise"},
|
|
843
|
+
{0x02A1A, opt | N, "intcup"},
|
|
844
|
+
{0x022BA, bin, "intercal"},
|
|
845
|
+
{0x02AF4, bin, "interleave"},
|
|
846
|
+
{0x023AE, ord, "intextender"},
|
|
847
|
+
{0x02A17, opt | N, "intlarhk"},
|
|
848
|
+
{0x02A3C, bin, "intprod"},
|
|
849
|
+
{0x02A3D, bin, "intprodr"},
|
|
850
|
+
{0x02320, ord, "inttop"},
|
|
851
|
+
{0x02A18, opt | N, "intx"},
|
|
852
|
+
{0x0214B, bin, "invamp"},
|
|
853
|
+
{0x02349, ord, "invdiameter"},
|
|
854
|
+
{0x025D8, ord, "inversebullet"},
|
|
855
|
+
{0x025D9, ord, "inversewhitecircle"},
|
|
856
|
+
{0x0223E, bin, "invlazys"},
|
|
857
|
+
{0x02310, ord, "invneg"},
|
|
858
|
+
{0x02310, ord, "invnot"},
|
|
859
|
+
{0x0263B, ord, "invsmileface"},
|
|
860
|
+
{0x025DB, ord, "invwhitelowerhalfcircle"},
|
|
861
|
+
{0x025DA, ord, "invwhiteupperhalfcircle"},
|
|
862
|
+
{0x003B9, ord, "iota"},
|
|
863
|
+
{0x003B9, ord, "iotaup"},
|
|
864
|
+
{0x022F9, rel, "isinE"},
|
|
865
|
+
{0x022F5, rel, "isindot"},
|
|
866
|
+
{0x022F7, rel, "isinobar"},
|
|
867
|
+
{0x022F4, rel, "isins"},
|
|
868
|
+
{0x022F8, rel, "isinvb"},
|
|
869
|
+
{0x02149, ord, "jj"},
|
|
870
|
+
{0x00237, ord, "jmath"},
|
|
871
|
+
{0x02643, ord, "jupiter"},
|
|
872
|
+
{0x003BA, ord, "kappa"},
|
|
873
|
+
{0x003BA, ord, "kappaup"},
|
|
874
|
+
{0x0223B, rel, "kernelcontraction"},
|
|
875
|
+
{0x003D9, ord, "koppa"},
|
|
876
|
+
{0x027EA, opn, "lAngle"},
|
|
877
|
+
{0x02983, opn, "lBrace"},
|
|
878
|
+
{0x027E6, opn, "lBrack"},
|
|
879
|
+
{0x02985, opn, "lParen"},
|
|
880
|
+
{0x003BB, ord, "lambda"},
|
|
881
|
+
{0x003BB, ord, "lambdaup"},
|
|
882
|
+
{0x02227, bin, "land"},
|
|
883
|
+
{0x027EA, opn, "lang"},
|
|
884
|
+
{0x027E8, opn, "langle"},
|
|
885
|
+
{0x02991, opn, "langledot"},
|
|
886
|
+
{0x029E0, ord, "laplac"},
|
|
887
|
+
{0x02AAB, rel, "lat"},
|
|
888
|
+
{0x02AAD, rel, "late"},
|
|
889
|
+
{0x027C5, opn, "lbag"},
|
|
890
|
+
{0x02997, opn, "lblkbrbrak"},
|
|
891
|
+
{0x02989, opn, "lblot"},
|
|
892
|
+
{0x0007B, opn, "lbrace"},
|
|
893
|
+
{0x023A9, ord, "lbracelend"},
|
|
894
|
+
{0x023A8, ord, "lbracemid"},
|
|
895
|
+
{0x023A7, ord, "lbraceuend"},
|
|
896
|
+
{0x0005B, opn, "lbrack"},
|
|
897
|
+
{0x023A2, ord, "lbrackextender"},
|
|
898
|
+
{0x023A3, ord, "lbracklend"},
|
|
899
|
+
{0x0298F, opn, "lbracklltick"},
|
|
900
|
+
{0x0298B, opn, "lbrackubar"},
|
|
901
|
+
{0x023A1, ord, "lbrackuend"},
|
|
902
|
+
{0x0298D, opn, "lbrackultick"},
|
|
903
|
+
{0x02772, opn, "lbrbrak"},
|
|
904
|
+
{0x02308, opn, "lceil"},
|
|
905
|
+
{0x029FC, opn, "lcurvyangle"},
|
|
906
|
+
{0x02026, ord, "ldots"},
|
|
907
|
+
{0x02264, rel, "le"},
|
|
908
|
+
{0x02933, rel, "leadsto"},
|
|
909
|
+
{0x02190, rel, "leftarrow"},
|
|
910
|
+
{0x02B4A, rel, "leftarrowapprox"},
|
|
911
|
+
{0x02B42, rel, "leftarrowbackapprox"},
|
|
912
|
+
{0x02B4B, rel, "leftarrowbsimilar"},
|
|
913
|
+
{0x02977, rel, "leftarrowless"},
|
|
914
|
+
{0x02B32, rel, "leftarrowonoplus"},
|
|
915
|
+
{0x02946, rel, "leftarrowplus"},
|
|
916
|
+
{0x02943, rel, "leftarrowshortrightarrow"},
|
|
917
|
+
{0x02973, rel, "leftarrowsimilar"},
|
|
918
|
+
{0x0297A, rel, "leftarrowsubset"},
|
|
919
|
+
{0x021A2, rel, "leftarrowtail"},
|
|
920
|
+
{0x021FD, rel, "leftarrowtriangle"},
|
|
921
|
+
{0x02B3E, rel, "leftarrowx"},
|
|
922
|
+
{0x0296A, rel, "leftbarharpoon"},
|
|
923
|
+
{0x0290C, rel, "leftbkarrow"},
|
|
924
|
+
{0x02B3F, rel, "leftcurvedarrow"},
|
|
925
|
+
{0x021E0, ord, "leftdasharrow"},
|
|
926
|
+
{0x0290E, rel, "leftdbkarrow"},
|
|
927
|
+
{0x0291B, rel, "leftdbltail"},
|
|
928
|
+
{0x02B38, rel, "leftdotarrow"},
|
|
929
|
+
{0x02936, rel, "leftdowncurvedarrow"},
|
|
930
|
+
{0x0297C, rel, "leftfishtail"},
|
|
931
|
+
{0x020D0, acc, "leftharpoonaccent"},
|
|
932
|
+
{0x021BD, rel, "leftharpoondown"},
|
|
933
|
+
{0x0295E, rel, "leftharpoondownbar"},
|
|
934
|
+
{0x02962, rel, "leftharpoonsupdown"},
|
|
935
|
+
{0x021BC, rel, "leftharpoonup"},
|
|
936
|
+
{0x0295A, rel, "leftharpoonupbar"},
|
|
937
|
+
{0x0296A, rel, "leftharpoonupdash"},
|
|
938
|
+
{0x021C7, rel, "leftleftarrows"},
|
|
939
|
+
{0x02962, rel, "leftleftharpoons"},
|
|
940
|
+
{0x0263E, ord, "leftmoon"},
|
|
941
|
+
{0x027D5, opt, "leftouterjoin"},
|
|
942
|
+
{0x02194, rel, "leftrightarrow"},
|
|
943
|
+
{0x02948, rel, "leftrightarrowcircle"},
|
|
944
|
+
{0x021C6, rel, "leftrightarrows"},
|
|
945
|
+
{0x021FF, rel, "leftrightarrowtriangle"},
|
|
946
|
+
{0x0294A, rel, "leftrightharpoon"},
|
|
947
|
+
{0x02950, rel, "leftrightharpoondown"},
|
|
948
|
+
{0x02950, rel, "leftrightharpoondowndown"},
|
|
949
|
+
{0x0294B, rel, "leftrightharpoondownup"},
|
|
950
|
+
{0x021CB, rel, "leftrightharpoons"},
|
|
951
|
+
{0x02967, rel, "leftrightharpoonsdown"},
|
|
952
|
+
{0x02966, rel, "leftrightharpoonsup"},
|
|
953
|
+
{0x0294E, rel, "leftrightharpoonup"},
|
|
954
|
+
{0x0294A, rel, "leftrightharpoonupdown"},
|
|
955
|
+
{0x0294E, rel, "leftrightharpoonupup"},
|
|
956
|
+
{0x021AD, rel, "leftrightsquigarrow"},
|
|
957
|
+
{0x02AA6, rel, "leftslice"},
|
|
958
|
+
{0x021DC, rel, "leftsquigarrow"},
|
|
959
|
+
{0x02919, rel, "lefttail"},
|
|
960
|
+
{0x02B31, rel, "leftthreearrows"},
|
|
961
|
+
{0x022CB, bin, "leftthreetimes"},
|
|
962
|
+
{0x021BA, ord, "leftturn"},
|
|
963
|
+
{0x02951, rel, "leftupdownharpoon"},
|
|
964
|
+
{0x0219C, rel, "leftwavearrow"},
|
|
965
|
+
{0x021E6, ord, "leftwhitearrow"},
|
|
966
|
+
{0x0264C, ord, "leo"},
|
|
967
|
+
{0x02264, rel, "leq"},
|
|
968
|
+
{0x02266, rel, "leqq"},
|
|
969
|
+
{0x02AF9, rel, "leqqslant"},
|
|
970
|
+
{0x02A7D, rel, "leqslant"},
|
|
971
|
+
{0x02AA8, rel, "lescc"},
|
|
972
|
+
{0x02A7F, rel, "lesdot"},
|
|
973
|
+
{0x02A81, rel, "lesdoto"},
|
|
974
|
+
{0x02A83, rel, "lesdotor"},
|
|
975
|
+
{0x02A93, rel, "lesges"},
|
|
976
|
+
{0x0003C, rel, "less"},
|
|
977
|
+
{0x02A85, rel, "lessapprox"},
|
|
978
|
+
{0x022D6, rel, "lessdot"},
|
|
979
|
+
{0x022DA, rel, "lesseqgtr"},
|
|
980
|
+
{0x02A8B, rel, "lesseqqgtr"},
|
|
981
|
+
{0x02276, rel, "lessgtr"},
|
|
982
|
+
{0x02272, rel, "lesssim"},
|
|
983
|
+
{0x029D1, rel, "lfbowtie"},
|
|
984
|
+
{0x0230A, opn, "lfloor"},
|
|
985
|
+
{0x029D4, rel, "lftimes"},
|
|
986
|
+
{0x02A91, rel, "lgE"},
|
|
987
|
+
{0x02B24, ord, "lgblkcircle"},
|
|
988
|
+
{0x02B1B, ord, "lgblksquare"},
|
|
989
|
+
{0x027EE, opn, "lgroup"},
|
|
990
|
+
{0x025EF, ord, "lgwhtcircle"},
|
|
991
|
+
{0x02B1C, ord, "lgwhtsquare"},
|
|
992
|
+
{0x025C1, bin, "lhd"},
|
|
993
|
+
{0x0264E, ord, "libra"},
|
|
994
|
+
{0x021AF, rel, "lightning"},
|
|
995
|
+
{0x02987, opn, "limg"},
|
|
996
|
+
{0x021B4, ord, "linefeed"},
|
|
997
|
+
{0x0226A, rel, "ll"},
|
|
998
|
+
{0x02989, opn, "llangle"},
|
|
999
|
+
{0x025DF, ord, "llarc"},
|
|
1000
|
+
{0x025E3, ord, "llblacktriangle"},
|
|
1001
|
+
{0x027E6, opn, "llbracket"},
|
|
1002
|
+
{0x0231E, opn, "llcorner"},
|
|
1003
|
+
{0x02ABB, rel, "llcurly"},
|
|
1004
|
+
{0x022D8, rel, "lll"},
|
|
1005
|
+
{0x02AF7, rel, "lllnest"},
|
|
1006
|
+
{0x02987, opn, "llparenthesis"},
|
|
1007
|
+
{0x025FA, ord, "lltriangle"},
|
|
1008
|
+
{0x023B0, ord, "lmoustache"},
|
|
1009
|
+
{0x02A89, rel, "lnapprox"},
|
|
1010
|
+
{0x02A87, rel, "lneq"},
|
|
1011
|
+
{0x02268, rel, "lneqq"},
|
|
1012
|
+
{0x000AC, ord, "lnot"},
|
|
1013
|
+
{0x022E6, rel, "lnsim"},
|
|
1014
|
+
{0x027DE, rel, "longdashv"},
|
|
1015
|
+
{0x027CC, opn, "longdivision"},
|
|
1016
|
+
{0x027F5, rel, "longleftarrow"},
|
|
1017
|
+
{0x027F7, rel, "longleftrightarrow"},
|
|
1018
|
+
{0x02B33, rel, "longleftsquigarrow"},
|
|
1019
|
+
{0x027FB, rel, "longmappedfrom"},
|
|
1020
|
+
{0x027FB, rel, "longmapsfrom"},
|
|
1021
|
+
{0x027FC, rel, "longmapsto"},
|
|
1022
|
+
{0x027F6, rel, "longrightarrow"},
|
|
1023
|
+
{0x027FF, rel, "longrightsquigarrow"},
|
|
1024
|
+
{0x021AB, rel, "looparrowleft"},
|
|
1025
|
+
{0x021AC, rel, "looparrowright"},
|
|
1026
|
+
{0x02228, bin, "lor"},
|
|
1027
|
+
{0x02A1C, opt | N, "lowint"},
|
|
1028
|
+
{0x025CA, ord, "lozenge"},
|
|
1029
|
+
{0x027E0, bin, "lozengeminus"},
|
|
1030
|
+
{0x00028, opn, "lparen"},
|
|
1031
|
+
{0x0239C, ord, "lparenextender"},
|
|
1032
|
+
{0x0239D, ord, "lparenlend"},
|
|
1033
|
+
{0x02993, opn, "lparenless"},
|
|
1034
|
+
{0x0239B, ord, "lparenuend"},
|
|
1035
|
+
{0x025DE, ord, "lrarc"},
|
|
1036
|
+
{0x025E2, ord, "lrblacktriangle"},
|
|
1037
|
+
{0x0231F, cls, "lrcorner"},
|
|
1038
|
+
{0x022C8, rel, "lrtimes"},
|
|
1039
|
+
{0x025FF, ord, "lrtriangle"},
|
|
1040
|
+
{0x029E1, rel, "lrtriangleeq"},
|
|
1041
|
+
{0x02A8D, rel, "lsime"},
|
|
1042
|
+
{0x02A8F, rel, "lsimg"},
|
|
1043
|
+
{0x02ACD, rel, "lsqhook"},
|
|
1044
|
+
{0x0003C, rel, "lt"},
|
|
1045
|
+
{0x02AA6, rel, "ltcc"},
|
|
1046
|
+
{0x02A79, rel, "ltcir"},
|
|
1047
|
+
{0x022C9, bin, "ltimes"},
|
|
1048
|
+
{0x02976, rel, "ltlarr"},
|
|
1049
|
+
{0x02A7B, rel, "ltquest"},
|
|
1050
|
+
{0x029CF, rel, "ltrivb"},
|
|
1051
|
+
{0x023B8, ord, "lvboxline"},
|
|
1052
|
+
{0x020D0, acc, "lvec"},
|
|
1053
|
+
{0x029D8, opn, "lvzigzag"},
|
|
1054
|
+
{0x02642, ord, "male"},
|
|
1055
|
+
{0x02720, ord, "maltese"},
|
|
1056
|
+
{0x021A4, rel, "mappedfrom"},
|
|
1057
|
+
{0x021A7, rel, "mapsdown"},
|
|
1058
|
+
{0x021A4, rel, "mapsfrom"},
|
|
1059
|
+
{0x021A6, rel, "mapsto"},
|
|
1060
|
+
{0x021A5, rel, "mapsup"},
|
|
1061
|
+
{0x000A2, ord, "mathcent"},
|
|
1062
|
+
{0x0003A, puc, "mathcolon"},
|
|
1063
|
+
{0x00024, ord, "mathdollar"},
|
|
1064
|
+
{0x000F0, ord, "matheth"},
|
|
1065
|
+
{0x02236, rel, "mathratio"},
|
|
1066
|
+
{0x0030A, acc, "mathring"},
|
|
1067
|
+
{0x02215, ord, "mathslash"},
|
|
1068
|
+
{0x000A3, ord, "mathsterling"},
|
|
1069
|
+
{0x1D400, ord, "mbfA"},
|
|
1070
|
+
{0x1D6A8, ord, "mbfAlpha"},
|
|
1071
|
+
{0x1D401, ord, "mbfB"},
|
|
1072
|
+
{0x1D6A9, ord, "mbfBeta"},
|
|
1073
|
+
{0x1D402, ord, "mbfC"},
|
|
1074
|
+
{0x1D6BE, ord, "mbfChi"},
|
|
1075
|
+
{0x1D403, ord, "mbfD"},
|
|
1076
|
+
{0x1D6AB, ord, "mbfDelta"},
|
|
1077
|
+
{0x1D7CA, ord, "mbfDigamma"},
|
|
1078
|
+
{0x1D404, ord, "mbfE"},
|
|
1079
|
+
{0x1D6AC, ord, "mbfEpsilon"},
|
|
1080
|
+
{0x1D6AE, ord, "mbfEta"},
|
|
1081
|
+
{0x1D405, ord, "mbfF"},
|
|
1082
|
+
{0x1D406, ord, "mbfG"},
|
|
1083
|
+
{0x1D6AA, ord, "mbfGamma"},
|
|
1084
|
+
{0x1D407, ord, "mbfH"},
|
|
1085
|
+
{0x1D408, ord, "mbfI"},
|
|
1086
|
+
{0x1D6B0, ord, "mbfIota"},
|
|
1087
|
+
{0x1D409, ord, "mbfJ"},
|
|
1088
|
+
{0x1D40A, ord, "mbfK"},
|
|
1089
|
+
{0x1D6B1, ord, "mbfKappa"},
|
|
1090
|
+
{0x1D40B, ord, "mbfL"},
|
|
1091
|
+
{0x1D6B2, ord, "mbfLambda"},
|
|
1092
|
+
{0x1D40C, ord, "mbfM"},
|
|
1093
|
+
{0x1D6B3, ord, "mbfMu"},
|
|
1094
|
+
{0x1D40D, ord, "mbfN"},
|
|
1095
|
+
{0x1D6B4, ord, "mbfNu"},
|
|
1096
|
+
{0x1D40E, ord, "mbfO"},
|
|
1097
|
+
{0x1D6C0, ord, "mbfOmega"},
|
|
1098
|
+
{0x1D6B6, ord, "mbfOmicron"},
|
|
1099
|
+
{0x1D40F, ord, "mbfP"},
|
|
1100
|
+
{0x1D6BD, ord, "mbfPhi"},
|
|
1101
|
+
{0x1D6B7, ord, "mbfPi"},
|
|
1102
|
+
{0x1D6BF, ord, "mbfPsi"},
|
|
1103
|
+
{0x1D410, ord, "mbfQ"},
|
|
1104
|
+
{0x1D411, ord, "mbfR"},
|
|
1105
|
+
{0x1D6B8, ord, "mbfRho"},
|
|
1106
|
+
{0x1D412, ord, "mbfS"},
|
|
1107
|
+
{0x1D6BA, ord, "mbfSigma"},
|
|
1108
|
+
{0x1D413, ord, "mbfT"},
|
|
1109
|
+
{0x1D6BB, ord, "mbfTau"},
|
|
1110
|
+
{0x1D6AF, ord, "mbfTheta"},
|
|
1111
|
+
{0x1D414, ord, "mbfU"},
|
|
1112
|
+
{0x1D6BC, ord, "mbfUpsilon"},
|
|
1113
|
+
{0x1D415, ord, "mbfV"},
|
|
1114
|
+
{0x1D416, ord, "mbfW"},
|
|
1115
|
+
{0x1D417, ord, "mbfX"},
|
|
1116
|
+
{0x1D6B5, ord, "mbfXi"},
|
|
1117
|
+
{0x1D418, ord, "mbfY"},
|
|
1118
|
+
{0x1D419, ord, "mbfZ"},
|
|
1119
|
+
{0x1D6AD, ord, "mbfZeta"},
|
|
1120
|
+
{0x1D41A, ord, "mbfa"},
|
|
1121
|
+
{0x1D6C2, ord, "mbfalpha"},
|
|
1122
|
+
{0x1D41B, ord, "mbfb"},
|
|
1123
|
+
{0x1D6C3, ord, "mbfbeta"},
|
|
1124
|
+
{0x1D41C, ord, "mbfc"},
|
|
1125
|
+
{0x1D6D8, ord, "mbfchi"},
|
|
1126
|
+
{0x1D41D, ord, "mbfd"},
|
|
1127
|
+
{0x1D6C5, ord, "mbfdelta"},
|
|
1128
|
+
{0x1D7CB, ord, "mbfdigamma"},
|
|
1129
|
+
{0x1D41E, ord, "mbfe"},
|
|
1130
|
+
{0x1D6C6, ord, "mbfepsilon"},
|
|
1131
|
+
{0x1D6C8, ord, "mbfeta"},
|
|
1132
|
+
{0x1D41F, ord, "mbff"},
|
|
1133
|
+
{0x1D56C, ord, "mbffrakA"},
|
|
1134
|
+
{0x1D56D, ord, "mbffrakB"},
|
|
1135
|
+
{0x1D56E, ord, "mbffrakC"},
|
|
1136
|
+
{0x1D56F, ord, "mbffrakD"},
|
|
1137
|
+
{0x1D570, ord, "mbffrakE"},
|
|
1138
|
+
{0x1D571, ord, "mbffrakF"},
|
|
1139
|
+
{0x1D572, ord, "mbffrakG"},
|
|
1140
|
+
{0x1D573, ord, "mbffrakH"},
|
|
1141
|
+
{0x1D574, ord, "mbffrakI"},
|
|
1142
|
+
{0x1D575, ord, "mbffrakJ"},
|
|
1143
|
+
{0x1D576, ord, "mbffrakK"},
|
|
1144
|
+
{0x1D577, ord, "mbffrakL"},
|
|
1145
|
+
{0x1D578, ord, "mbffrakM"},
|
|
1146
|
+
{0x1D579, ord, "mbffrakN"},
|
|
1147
|
+
{0x1D57A, ord, "mbffrakO"},
|
|
1148
|
+
{0x1D57B, ord, "mbffrakP"},
|
|
1149
|
+
{0x1D57C, ord, "mbffrakQ"},
|
|
1150
|
+
{0x1D57D, ord, "mbffrakR"},
|
|
1151
|
+
{0x1D57E, ord, "mbffrakS"},
|
|
1152
|
+
{0x1D57F, ord, "mbffrakT"},
|
|
1153
|
+
{0x1D580, ord, "mbffrakU"},
|
|
1154
|
+
{0x1D581, ord, "mbffrakV"},
|
|
1155
|
+
{0x1D582, ord, "mbffrakW"},
|
|
1156
|
+
{0x1D583, ord, "mbffrakX"},
|
|
1157
|
+
{0x1D584, ord, "mbffrakY"},
|
|
1158
|
+
{0x1D585, ord, "mbffrakZ"},
|
|
1159
|
+
{0x1D586, ord, "mbffraka"},
|
|
1160
|
+
{0x1D587, ord, "mbffrakb"},
|
|
1161
|
+
{0x1D588, ord, "mbffrakc"},
|
|
1162
|
+
{0x1D589, ord, "mbffrakd"},
|
|
1163
|
+
{0x1D58A, ord, "mbffrake"},
|
|
1164
|
+
{0x1D58B, ord, "mbffrakf"},
|
|
1165
|
+
{0x1D58C, ord, "mbffrakg"},
|
|
1166
|
+
{0x1D58D, ord, "mbffrakh"},
|
|
1167
|
+
{0x1D58E, ord, "mbffraki"},
|
|
1168
|
+
{0x1D58F, ord, "mbffrakj"},
|
|
1169
|
+
{0x1D590, ord, "mbffrakk"},
|
|
1170
|
+
{0x1D591, ord, "mbffrakl"},
|
|
1171
|
+
{0x1D592, ord, "mbffrakm"},
|
|
1172
|
+
{0x1D593, ord, "mbffrakn"},
|
|
1173
|
+
{0x1D594, ord, "mbffrako"},
|
|
1174
|
+
{0x1D595, ord, "mbffrakp"},
|
|
1175
|
+
{0x1D596, ord, "mbffrakq"},
|
|
1176
|
+
{0x1D597, ord, "mbffrakr"},
|
|
1177
|
+
{0x1D598, ord, "mbffraks"},
|
|
1178
|
+
{0x1D599, ord, "mbffrakt"},
|
|
1179
|
+
{0x1D59A, ord, "mbffraku"},
|
|
1180
|
+
{0x1D59B, ord, "mbffrakv"},
|
|
1181
|
+
{0x1D59C, ord, "mbffrakw"},
|
|
1182
|
+
{0x1D59D, ord, "mbffrakx"},
|
|
1183
|
+
{0x1D59E, ord, "mbffraky"},
|
|
1184
|
+
{0x1D59F, ord, "mbffrakz"},
|
|
1185
|
+
{0x1D420, ord, "mbfg"},
|
|
1186
|
+
{0x1D6C4, ord, "mbfgamma"},
|
|
1187
|
+
{0x1D421, ord, "mbfh"},
|
|
1188
|
+
{0x1D422, ord, "mbfi"},
|
|
1189
|
+
{0x1D6CA, ord, "mbfiota"},
|
|
1190
|
+
{0x1D468, ord, "mbfitA"},
|
|
1191
|
+
{0x1D71C, ord, "mbfitAlpha"},
|
|
1192
|
+
{0x1D469, ord, "mbfitB"},
|
|
1193
|
+
{0x1D71D, ord, "mbfitBeta"},
|
|
1194
|
+
{0x1D46A, ord, "mbfitC"},
|
|
1195
|
+
{0x1D732, ord, "mbfitChi"},
|
|
1196
|
+
{0x1D46B, ord, "mbfitD"},
|
|
1197
|
+
{0x1D71F, ord, "mbfitDelta"},
|
|
1198
|
+
{0x1D46C, ord, "mbfitE"},
|
|
1199
|
+
{0x1D720, ord, "mbfitEpsilon"},
|
|
1200
|
+
{0x1D722, ord, "mbfitEta"},
|
|
1201
|
+
{0x1D46D, ord, "mbfitF"},
|
|
1202
|
+
{0x1D46E, ord, "mbfitG"},
|
|
1203
|
+
{0x1D71E, ord, "mbfitGamma"},
|
|
1204
|
+
{0x1D46F, ord, "mbfitH"},
|
|
1205
|
+
{0x1D470, ord, "mbfitI"},
|
|
1206
|
+
{0x1D724, ord, "mbfitIota"},
|
|
1207
|
+
{0x1D471, ord, "mbfitJ"},
|
|
1208
|
+
{0x1D472, ord, "mbfitK"},
|
|
1209
|
+
{0x1D725, ord, "mbfitKappa"},
|
|
1210
|
+
{0x1D473, ord, "mbfitL"},
|
|
1211
|
+
{0x1D726, ord, "mbfitLambda"},
|
|
1212
|
+
{0x1D474, ord, "mbfitM"},
|
|
1213
|
+
{0x1D727, ord, "mbfitMu"},
|
|
1214
|
+
{0x1D475, ord, "mbfitN"},
|
|
1215
|
+
{0x1D728, ord, "mbfitNu"},
|
|
1216
|
+
{0x1D476, ord, "mbfitO"},
|
|
1217
|
+
{0x1D734, ord, "mbfitOmega"},
|
|
1218
|
+
{0x1D72A, ord, "mbfitOmicron"},
|
|
1219
|
+
{0x1D477, ord, "mbfitP"},
|
|
1220
|
+
{0x1D731, ord, "mbfitPhi"},
|
|
1221
|
+
{0x1D72B, ord, "mbfitPi"},
|
|
1222
|
+
{0x1D733, ord, "mbfitPsi"},
|
|
1223
|
+
{0x1D478, ord, "mbfitQ"},
|
|
1224
|
+
{0x1D479, ord, "mbfitR"},
|
|
1225
|
+
{0x1D72C, ord, "mbfitRho"},
|
|
1226
|
+
{0x1D47A, ord, "mbfitS"},
|
|
1227
|
+
{0x1D72E, ord, "mbfitSigma"},
|
|
1228
|
+
{0x1D47B, ord, "mbfitT"},
|
|
1229
|
+
{0x1D72F, ord, "mbfitTau"},
|
|
1230
|
+
{0x1D723, ord, "mbfitTheta"},
|
|
1231
|
+
{0x1D47C, ord, "mbfitU"},
|
|
1232
|
+
{0x1D730, ord, "mbfitUpsilon"},
|
|
1233
|
+
{0x1D47D, ord, "mbfitV"},
|
|
1234
|
+
{0x1D47E, ord, "mbfitW"},
|
|
1235
|
+
{0x1D47F, ord, "mbfitX"},
|
|
1236
|
+
{0x1D729, ord, "mbfitXi"},
|
|
1237
|
+
{0x1D480, ord, "mbfitY"},
|
|
1238
|
+
{0x1D481, ord, "mbfitZ"},
|
|
1239
|
+
{0x1D721, ord, "mbfitZeta"},
|
|
1240
|
+
{0x1D482, ord, "mbfita"},
|
|
1241
|
+
{0x1D736, ord, "mbfitalpha"},
|
|
1242
|
+
{0x1D483, ord, "mbfitb"},
|
|
1243
|
+
{0x1D737, ord, "mbfitbeta"},
|
|
1244
|
+
{0x1D484, ord, "mbfitc"},
|
|
1245
|
+
{0x1D74C, ord, "mbfitchi"},
|
|
1246
|
+
{0x1D485, ord, "mbfitd"},
|
|
1247
|
+
{0x1D739, ord, "mbfitdelta"},
|
|
1248
|
+
{0x1D486, ord, "mbfite"},
|
|
1249
|
+
{0x1D73A, ord, "mbfitepsilon"},
|
|
1250
|
+
{0x1D73C, ord, "mbfiteta"},
|
|
1251
|
+
{0x1D487, ord, "mbfitf"},
|
|
1252
|
+
{0x1D488, ord, "mbfitg"},
|
|
1253
|
+
{0x1D738, ord, "mbfitgamma"},
|
|
1254
|
+
{0x1D489, ord, "mbfith"},
|
|
1255
|
+
{0x1D48A, ord, "mbfiti"},
|
|
1256
|
+
{0x1D73E, ord, "mbfitiota"},
|
|
1257
|
+
{0x1D48B, ord, "mbfitj"},
|
|
1258
|
+
{0x1D48C, ord, "mbfitk"},
|
|
1259
|
+
{0x1D73F, ord, "mbfitkappa"},
|
|
1260
|
+
{0x1D48D, ord, "mbfitl"},
|
|
1261
|
+
{0x1D740, ord, "mbfitlambda"},
|
|
1262
|
+
{0x1D48E, ord, "mbfitm"},
|
|
1263
|
+
{0x1D741, ord, "mbfitmu"},
|
|
1264
|
+
{0x1D48F, ord, "mbfitn"},
|
|
1265
|
+
{0x1D735, ord, "mbfitnabla"},
|
|
1266
|
+
{0x1D742, ord, "mbfitnu"},
|
|
1267
|
+
{0x1D490, ord, "mbfito"},
|
|
1268
|
+
{0x1D74E, ord, "mbfitomega"},
|
|
1269
|
+
{0x1D744, ord, "mbfitomicron"},
|
|
1270
|
+
{0x1D491, ord, "mbfitp"},
|
|
1271
|
+
{0x1D74F, ord, "mbfitpartial"},
|
|
1272
|
+
{0x1D74B, ord, "mbfitphi"},
|
|
1273
|
+
{0x1D745, ord, "mbfitpi"},
|
|
1274
|
+
{0x1D74D, ord, "mbfitpsi"},
|
|
1275
|
+
{0x1D492, ord, "mbfitq"},
|
|
1276
|
+
{0x1D493, ord, "mbfitr"},
|
|
1277
|
+
{0x1D746, ord, "mbfitrho"},
|
|
1278
|
+
{0x1D494, ord, "mbfits"},
|
|
1279
|
+
{0x1D63C, ord, "mbfitsansA"},
|
|
1280
|
+
{0x1D790, ord, "mbfitsansAlpha"},
|
|
1281
|
+
{0x1D63D, ord, "mbfitsansB"},
|
|
1282
|
+
{0x1D791, ord, "mbfitsansBeta"},
|
|
1283
|
+
{0x1D63E, ord, "mbfitsansC"},
|
|
1284
|
+
{0x1D7A6, ord, "mbfitsansChi"},
|
|
1285
|
+
{0x1D63F, ord, "mbfitsansD"},
|
|
1286
|
+
{0x1D793, ord, "mbfitsansDelta"},
|
|
1287
|
+
{0x1D640, ord, "mbfitsansE"},
|
|
1288
|
+
{0x1D794, ord, "mbfitsansEpsilon"},
|
|
1289
|
+
{0x1D796, ord, "mbfitsansEta"},
|
|
1290
|
+
{0x1D641, ord, "mbfitsansF"},
|
|
1291
|
+
{0x1D642, ord, "mbfitsansG"},
|
|
1292
|
+
{0x1D792, ord, "mbfitsansGamma"},
|
|
1293
|
+
{0x1D643, ord, "mbfitsansH"},
|
|
1294
|
+
{0x1D644, ord, "mbfitsansI"},
|
|
1295
|
+
{0x1D798, ord, "mbfitsansIota"},
|
|
1296
|
+
{0x1D645, ord, "mbfitsansJ"},
|
|
1297
|
+
{0x1D646, ord, "mbfitsansK"},
|
|
1298
|
+
{0x1D799, ord, "mbfitsansKappa"},
|
|
1299
|
+
{0x1D647, ord, "mbfitsansL"},
|
|
1300
|
+
{0x1D79A, ord, "mbfitsansLambda"},
|
|
1301
|
+
{0x1D648, ord, "mbfitsansM"},
|
|
1302
|
+
{0x1D79B, ord, "mbfitsansMu"},
|
|
1303
|
+
{0x1D649, ord, "mbfitsansN"},
|
|
1304
|
+
{0x1D79C, ord, "mbfitsansNu"},
|
|
1305
|
+
{0x1D64A, ord, "mbfitsansO"},
|
|
1306
|
+
{0x1D7A8, ord, "mbfitsansOmega"},
|
|
1307
|
+
{0x1D79E, ord, "mbfitsansOmicron"},
|
|
1308
|
+
{0x1D64B, ord, "mbfitsansP"},
|
|
1309
|
+
{0x1D7A5, ord, "mbfitsansPhi"},
|
|
1310
|
+
{0x1D79F, ord, "mbfitsansPi"},
|
|
1311
|
+
{0x1D7A7, ord, "mbfitsansPsi"},
|
|
1312
|
+
{0x1D64C, ord, "mbfitsansQ"},
|
|
1313
|
+
{0x1D64D, ord, "mbfitsansR"},
|
|
1314
|
+
{0x1D7A0, ord, "mbfitsansRho"},
|
|
1315
|
+
{0x1D64E, ord, "mbfitsansS"},
|
|
1316
|
+
{0x1D7A2, ord, "mbfitsansSigma"},
|
|
1317
|
+
{0x1D64F, ord, "mbfitsansT"},
|
|
1318
|
+
{0x1D7A3, ord, "mbfitsansTau"},
|
|
1319
|
+
{0x1D797, ord, "mbfitsansTheta"},
|
|
1320
|
+
{0x1D650, ord, "mbfitsansU"},
|
|
1321
|
+
{0x1D7A4, ord, "mbfitsansUpsilon"},
|
|
1322
|
+
{0x1D651, ord, "mbfitsansV"},
|
|
1323
|
+
{0x1D652, ord, "mbfitsansW"},
|
|
1324
|
+
{0x1D653, ord, "mbfitsansX"},
|
|
1325
|
+
{0x1D79D, ord, "mbfitsansXi"},
|
|
1326
|
+
{0x1D654, ord, "mbfitsansY"},
|
|
1327
|
+
{0x1D655, ord, "mbfitsansZ"},
|
|
1328
|
+
{0x1D795, ord, "mbfitsansZeta"},
|
|
1329
|
+
{0x1D656, ord, "mbfitsansa"},
|
|
1330
|
+
{0x1D7AA, ord, "mbfitsansalpha"},
|
|
1331
|
+
{0x1D657, ord, "mbfitsansb"},
|
|
1332
|
+
{0x1D7AB, ord, "mbfitsansbeta"},
|
|
1333
|
+
{0x1D658, ord, "mbfitsansc"},
|
|
1334
|
+
{0x1D7C0, ord, "mbfitsanschi"},
|
|
1335
|
+
{0x1D659, ord, "mbfitsansd"},
|
|
1336
|
+
{0x1D7AD, ord, "mbfitsansdelta"},
|
|
1337
|
+
{0x1D65A, ord, "mbfitsanse"},
|
|
1338
|
+
{0x1D7AE, ord, "mbfitsansepsilon"},
|
|
1339
|
+
{0x1D7B0, ord, "mbfitsanseta"},
|
|
1340
|
+
{0x1D65B, ord, "mbfitsansf"},
|
|
1341
|
+
{0x1D65C, ord, "mbfitsansg"},
|
|
1342
|
+
{0x1D7AC, ord, "mbfitsansgamma"},
|
|
1343
|
+
{0x1D65D, ord, "mbfitsansh"},
|
|
1344
|
+
{0x1D65E, ord, "mbfitsansi"},
|
|
1345
|
+
{0x1D7B2, ord, "mbfitsansiota"},
|
|
1346
|
+
{0x1D65F, ord, "mbfitsansj"},
|
|
1347
|
+
{0x1D660, ord, "mbfitsansk"},
|
|
1348
|
+
{0x1D7B3, ord, "mbfitsanskappa"},
|
|
1349
|
+
{0x1D661, ord, "mbfitsansl"},
|
|
1350
|
+
{0x1D7B4, ord, "mbfitsanslambda"},
|
|
1351
|
+
{0x1D662, ord, "mbfitsansm"},
|
|
1352
|
+
{0x1D7B5, ord, "mbfitsansmu"},
|
|
1353
|
+
{0x1D663, ord, "mbfitsansn"},
|
|
1354
|
+
{0x1D7A9, ord, "mbfitsansnabla"},
|
|
1355
|
+
{0x1D7B6, ord, "mbfitsansnu"},
|
|
1356
|
+
{0x1D664, ord, "mbfitsanso"},
|
|
1357
|
+
{0x1D7C2, ord, "mbfitsansomega"},
|
|
1358
|
+
{0x1D7B8, ord, "mbfitsansomicron"},
|
|
1359
|
+
{0x1D665, ord, "mbfitsansp"},
|
|
1360
|
+
{0x1D7C3, ord, "mbfitsanspartial"},
|
|
1361
|
+
{0x1D7BF, ord, "mbfitsansphi"},
|
|
1362
|
+
{0x1D7B9, ord, "mbfitsanspi"},
|
|
1363
|
+
{0x1D7C1, ord, "mbfitsanspsi"},
|
|
1364
|
+
{0x1D666, ord, "mbfitsansq"},
|
|
1365
|
+
{0x1D667, ord, "mbfitsansr"},
|
|
1366
|
+
{0x1D7BA, ord, "mbfitsansrho"},
|
|
1367
|
+
{0x1D668, ord, "mbfitsanss"},
|
|
1368
|
+
{0x1D7BC, ord, "mbfitsanssigma"},
|
|
1369
|
+
{0x1D669, ord, "mbfitsanst"},
|
|
1370
|
+
{0x1D7BD, ord, "mbfitsanstau"},
|
|
1371
|
+
{0x1D7B1, ord, "mbfitsanstheta"},
|
|
1372
|
+
{0x1D66A, ord, "mbfitsansu"},
|
|
1373
|
+
{0x1D7BE, ord, "mbfitsansupsilon"},
|
|
1374
|
+
{0x1D66B, ord, "mbfitsansv"},
|
|
1375
|
+
{0x1D7A1, ord, "mbfitsansvarTheta"},
|
|
1376
|
+
{0x1D7C4, ord, "mbfitsansvarepsilon"},
|
|
1377
|
+
{0x1D7C6, ord, "mbfitsansvarkappa"},
|
|
1378
|
+
{0x1D7C7, ord, "mbfitsansvarphi"},
|
|
1379
|
+
{0x1D7C9, ord, "mbfitsansvarpi"},
|
|
1380
|
+
{0x1D7C8, ord, "mbfitsansvarrho"},
|
|
1381
|
+
{0x1D7BB, ord, "mbfitsansvarsigma"},
|
|
1382
|
+
{0x1D7C5, ord, "mbfitsansvartheta"},
|
|
1383
|
+
{0x1D66C, ord, "mbfitsansw"},
|
|
1384
|
+
{0x1D66D, ord, "mbfitsansx"},
|
|
1385
|
+
{0x1D7B7, ord, "mbfitsansxi"},
|
|
1386
|
+
{0x1D66E, ord, "mbfitsansy"},
|
|
1387
|
+
{0x1D66F, ord, "mbfitsansz"},
|
|
1388
|
+
{0x1D7AF, ord, "mbfitsanszeta"},
|
|
1389
|
+
{0x1D748, ord, "mbfitsigma"},
|
|
1390
|
+
{0x1D495, ord, "mbfitt"},
|
|
1391
|
+
{0x1D749, ord, "mbfittau"},
|
|
1392
|
+
{0x1D73D, ord, "mbfittheta"},
|
|
1393
|
+
{0x1D496, ord, "mbfitu"},
|
|
1394
|
+
{0x1D74A, ord, "mbfitupsilon"},
|
|
1395
|
+
{0x1D497, ord, "mbfitv"},
|
|
1396
|
+
{0x1D72D, ord, "mbfitvarTheta"},
|
|
1397
|
+
{0x1D750, ord, "mbfitvarepsilon"},
|
|
1398
|
+
{0x1D752, ord, "mbfitvarkappa"},
|
|
1399
|
+
{0x1D753, ord, "mbfitvarphi"},
|
|
1400
|
+
{0x1D755, ord, "mbfitvarpi"},
|
|
1401
|
+
{0x1D754, ord, "mbfitvarrho"},
|
|
1402
|
+
{0x1D747, ord, "mbfitvarsigma"},
|
|
1403
|
+
{0x1D751, ord, "mbfitvartheta"},
|
|
1404
|
+
{0x1D498, ord, "mbfitw"},
|
|
1405
|
+
{0x1D499, ord, "mbfitx"},
|
|
1406
|
+
{0x1D743, ord, "mbfitxi"},
|
|
1407
|
+
{0x1D49A, ord, "mbfity"},
|
|
1408
|
+
{0x1D49B, ord, "mbfitz"},
|
|
1409
|
+
{0x1D73B, ord, "mbfitzeta"},
|
|
1410
|
+
{0x1D423, ord, "mbfj"},
|
|
1411
|
+
{0x1D424, ord, "mbfk"},
|
|
1412
|
+
{0x1D6CB, ord, "mbfkappa"},
|
|
1413
|
+
{0x1D425, ord, "mbfl"},
|
|
1414
|
+
{0x1D6CC, ord, "mbflambda"},
|
|
1415
|
+
{0x1D426, ord, "mbfm"},
|
|
1416
|
+
{0x1D6CD, ord, "mbfmu"},
|
|
1417
|
+
{0x1D427, ord, "mbfn"},
|
|
1418
|
+
{0x1D6C1, ord, "mbfnabla"},
|
|
1419
|
+
{0x1D6CE, ord, "mbfnu"},
|
|
1420
|
+
{0x1D428, ord, "mbfo"},
|
|
1421
|
+
{0x1D6DA, ord, "mbfomega"},
|
|
1422
|
+
{0x1D6D0, ord, "mbfomicron"},
|
|
1423
|
+
{0x1D429, ord, "mbfp"},
|
|
1424
|
+
{0x1D6DB, ord, "mbfpartial"},
|
|
1425
|
+
{0x1D6DF, ord, "mbfphi"},
|
|
1426
|
+
{0x1D6D1, ord, "mbfpi"},
|
|
1427
|
+
{0x1D6D9, ord, "mbfpsi"},
|
|
1428
|
+
{0x1D42A, ord, "mbfq"},
|
|
1429
|
+
{0x1D42B, ord, "mbfr"},
|
|
1430
|
+
{0x1D6D2, ord, "mbfrho"},
|
|
1431
|
+
{0x1D42C, ord, "mbfs"},
|
|
1432
|
+
{0x1D5D4, ord, "mbfsansA"},
|
|
1433
|
+
{0x1D756, ord, "mbfsansAlpha"},
|
|
1434
|
+
{0x1D5D5, ord, "mbfsansB"},
|
|
1435
|
+
{0x1D757, ord, "mbfsansBeta"},
|
|
1436
|
+
{0x1D5D6, ord, "mbfsansC"},
|
|
1437
|
+
{0x1D76C, ord, "mbfsansChi"},
|
|
1438
|
+
{0x1D5D7, ord, "mbfsansD"},
|
|
1439
|
+
{0x1D759, ord, "mbfsansDelta"},
|
|
1440
|
+
{0x1D5D8, ord, "mbfsansE"},
|
|
1441
|
+
{0x1D75A, ord, "mbfsansEpsilon"},
|
|
1442
|
+
{0x1D75C, ord, "mbfsansEta"},
|
|
1443
|
+
{0x1D5D9, ord, "mbfsansF"},
|
|
1444
|
+
{0x1D5DA, ord, "mbfsansG"},
|
|
1445
|
+
{0x1D758, ord, "mbfsansGamma"},
|
|
1446
|
+
{0x1D5DB, ord, "mbfsansH"},
|
|
1447
|
+
{0x1D5DC, ord, "mbfsansI"},
|
|
1448
|
+
{0x1D75E, ord, "mbfsansIota"},
|
|
1449
|
+
{0x1D5DD, ord, "mbfsansJ"},
|
|
1450
|
+
{0x1D5DE, ord, "mbfsansK"},
|
|
1451
|
+
{0x1D75F, ord, "mbfsansKappa"},
|
|
1452
|
+
{0x1D5DF, ord, "mbfsansL"},
|
|
1453
|
+
{0x1D760, ord, "mbfsansLambda"},
|
|
1454
|
+
{0x1D5E0, ord, "mbfsansM"},
|
|
1455
|
+
{0x1D761, ord, "mbfsansMu"},
|
|
1456
|
+
{0x1D5E1, ord, "mbfsansN"},
|
|
1457
|
+
{0x1D762, ord, "mbfsansNu"},
|
|
1458
|
+
{0x1D5E2, ord, "mbfsansO"},
|
|
1459
|
+
{0x1D76E, ord, "mbfsansOmega"},
|
|
1460
|
+
{0x1D764, ord, "mbfsansOmicron"},
|
|
1461
|
+
{0x1D5E3, ord, "mbfsansP"},
|
|
1462
|
+
{0x1D76B, ord, "mbfsansPhi"},
|
|
1463
|
+
{0x1D765, ord, "mbfsansPi"},
|
|
1464
|
+
{0x1D76D, ord, "mbfsansPsi"},
|
|
1465
|
+
{0x1D5E4, ord, "mbfsansQ"},
|
|
1466
|
+
{0x1D5E5, ord, "mbfsansR"},
|
|
1467
|
+
{0x1D766, ord, "mbfsansRho"},
|
|
1468
|
+
{0x1D5E6, ord, "mbfsansS"},
|
|
1469
|
+
{0x1D768, ord, "mbfsansSigma"},
|
|
1470
|
+
{0x1D5E7, ord, "mbfsansT"},
|
|
1471
|
+
{0x1D769, ord, "mbfsansTau"},
|
|
1472
|
+
{0x1D75D, ord, "mbfsansTheta"},
|
|
1473
|
+
{0x1D5E8, ord, "mbfsansU"},
|
|
1474
|
+
{0x1D76A, ord, "mbfsansUpsilon"},
|
|
1475
|
+
{0x1D5E9, ord, "mbfsansV"},
|
|
1476
|
+
{0x1D5EA, ord, "mbfsansW"},
|
|
1477
|
+
{0x1D5EB, ord, "mbfsansX"},
|
|
1478
|
+
{0x1D763, ord, "mbfsansXi"},
|
|
1479
|
+
{0x1D5EC, ord, "mbfsansY"},
|
|
1480
|
+
{0x1D5ED, ord, "mbfsansZ"},
|
|
1481
|
+
{0x1D75B, ord, "mbfsansZeta"},
|
|
1482
|
+
{0x1D5EE, ord, "mbfsansa"},
|
|
1483
|
+
{0x1D770, ord, "mbfsansalpha"},
|
|
1484
|
+
{0x1D5EF, ord, "mbfsansb"},
|
|
1485
|
+
{0x1D771, ord, "mbfsansbeta"},
|
|
1486
|
+
{0x1D5F0, ord, "mbfsansc"},
|
|
1487
|
+
{0x1D786, ord, "mbfsanschi"},
|
|
1488
|
+
{0x1D5F1, ord, "mbfsansd"},
|
|
1489
|
+
{0x1D773, ord, "mbfsansdelta"},
|
|
1490
|
+
{0x1D5F2, ord, "mbfsanse"},
|
|
1491
|
+
{0x1D7F4, ord, "mbfsanseight"},
|
|
1492
|
+
{0x1D774, ord, "mbfsansepsilon"},
|
|
1493
|
+
{0x1D776, ord, "mbfsanseta"},
|
|
1494
|
+
{0x1D5F3, ord, "mbfsansf"},
|
|
1495
|
+
{0x1D7F1, ord, "mbfsansfive"},
|
|
1496
|
+
{0x1D7F0, ord, "mbfsansfour"},
|
|
1497
|
+
{0x1D5F4, ord, "mbfsansg"},
|
|
1498
|
+
{0x1D772, ord, "mbfsansgamma"},
|
|
1499
|
+
{0x1D5F5, ord, "mbfsansh"},
|
|
1500
|
+
{0x1D5F6, ord, "mbfsansi"},
|
|
1501
|
+
{0x1D778, ord, "mbfsansiota"},
|
|
1502
|
+
{0x1D5F7, ord, "mbfsansj"},
|
|
1503
|
+
{0x1D5F8, ord, "mbfsansk"},
|
|
1504
|
+
{0x1D779, ord, "mbfsanskappa"},
|
|
1505
|
+
{0x1D5F9, ord, "mbfsansl"},
|
|
1506
|
+
{0x1D77A, ord, "mbfsanslambda"},
|
|
1507
|
+
{0x1D5FA, ord, "mbfsansm"},
|
|
1508
|
+
{0x1D77B, ord, "mbfsansmu"},
|
|
1509
|
+
{0x1D5FB, ord, "mbfsansn"},
|
|
1510
|
+
{0x1D76F, ord, "mbfsansnabla"},
|
|
1511
|
+
{0x1D7F5, ord, "mbfsansnine"},
|
|
1512
|
+
{0x1D77C, ord, "mbfsansnu"},
|
|
1513
|
+
{0x1D5FC, ord, "mbfsanso"},
|
|
1514
|
+
{0x1D788, ord, "mbfsansomega"},
|
|
1515
|
+
{0x1D77E, ord, "mbfsansomicron"},
|
|
1516
|
+
{0x1D7ED, ord, "mbfsansone"},
|
|
1517
|
+
{0x1D5FD, ord, "mbfsansp"},
|
|
1518
|
+
{0x1D789, ord, "mbfsanspartial"},
|
|
1519
|
+
{0x1D785, ord, "mbfsansphi"},
|
|
1520
|
+
{0x1D77F, ord, "mbfsanspi"},
|
|
1521
|
+
{0x1D787, ord, "mbfsanspsi"},
|
|
1522
|
+
{0x1D5FE, ord, "mbfsansq"},
|
|
1523
|
+
{0x1D5FF, ord, "mbfsansr"},
|
|
1524
|
+
{0x1D780, ord, "mbfsansrho"},
|
|
1525
|
+
{0x1D600, ord, "mbfsanss"},
|
|
1526
|
+
{0x1D7F3, ord, "mbfsansseven"},
|
|
1527
|
+
{0x1D782, ord, "mbfsanssigma"},
|
|
1528
|
+
{0x1D7F2, ord, "mbfsanssix"},
|
|
1529
|
+
{0x1D601, ord, "mbfsanst"},
|
|
1530
|
+
{0x1D783, ord, "mbfsanstau"},
|
|
1531
|
+
{0x1D777, ord, "mbfsanstheta"},
|
|
1532
|
+
{0x1D7EF, ord, "mbfsansthree"},
|
|
1533
|
+
{0x1D7EE, ord, "mbfsanstwo"},
|
|
1534
|
+
{0x1D602, ord, "mbfsansu"},
|
|
1535
|
+
{0x1D784, ord, "mbfsansupsilon"},
|
|
1536
|
+
{0x1D603, ord, "mbfsansv"},
|
|
1537
|
+
{0x1D767, ord, "mbfsansvarTheta"},
|
|
1538
|
+
{0x1D78A, ord, "mbfsansvarepsilon"},
|
|
1539
|
+
{0x1D78C, ord, "mbfsansvarkappa"},
|
|
1540
|
+
{0x1D78D, ord, "mbfsansvarphi"},
|
|
1541
|
+
{0x1D78F, ord, "mbfsansvarpi"},
|
|
1542
|
+
{0x1D78E, ord, "mbfsansvarrho"},
|
|
1543
|
+
{0x1D781, ord, "mbfsansvarsigma"},
|
|
1544
|
+
{0x1D78B, ord, "mbfsansvartheta"},
|
|
1545
|
+
{0x1D604, ord, "mbfsansw"},
|
|
1546
|
+
{0x1D605, ord, "mbfsansx"},
|
|
1547
|
+
{0x1D77D, ord, "mbfsansxi"},
|
|
1548
|
+
{0x1D606, ord, "mbfsansy"},
|
|
1549
|
+
{0x1D607, ord, "mbfsansz"},
|
|
1550
|
+
{0x1D7EC, ord, "mbfsanszero"},
|
|
1551
|
+
{0x1D775, ord, "mbfsanszeta"},
|
|
1552
|
+
{0x1D4D0, ord, "mbfscrA"},
|
|
1553
|
+
{0x1D4D1, ord, "mbfscrB"},
|
|
1554
|
+
{0x1D4D2, ord, "mbfscrC"},
|
|
1555
|
+
{0x1D4D3, ord, "mbfscrD"},
|
|
1556
|
+
{0x1D4D4, ord, "mbfscrE"},
|
|
1557
|
+
{0x1D4D5, ord, "mbfscrF"},
|
|
1558
|
+
{0x1D4D6, ord, "mbfscrG"},
|
|
1559
|
+
{0x1D4D7, ord, "mbfscrH"},
|
|
1560
|
+
{0x1D4D8, ord, "mbfscrI"},
|
|
1561
|
+
{0x1D4D9, ord, "mbfscrJ"},
|
|
1562
|
+
{0x1D4DA, ord, "mbfscrK"},
|
|
1563
|
+
{0x1D4DB, ord, "mbfscrL"},
|
|
1564
|
+
{0x1D4DC, ord, "mbfscrM"},
|
|
1565
|
+
{0x1D4DD, ord, "mbfscrN"},
|
|
1566
|
+
{0x1D4DE, ord, "mbfscrO"},
|
|
1567
|
+
{0x1D4DF, ord, "mbfscrP"},
|
|
1568
|
+
{0x1D4E0, ord, "mbfscrQ"},
|
|
1569
|
+
{0x1D4E1, ord, "mbfscrR"},
|
|
1570
|
+
{0x1D4E2, ord, "mbfscrS"},
|
|
1571
|
+
{0x1D4E3, ord, "mbfscrT"},
|
|
1572
|
+
{0x1D4E4, ord, "mbfscrU"},
|
|
1573
|
+
{0x1D4E5, ord, "mbfscrV"},
|
|
1574
|
+
{0x1D4E6, ord, "mbfscrW"},
|
|
1575
|
+
{0x1D4E7, ord, "mbfscrX"},
|
|
1576
|
+
{0x1D4E8, ord, "mbfscrY"},
|
|
1577
|
+
{0x1D4E9, ord, "mbfscrZ"},
|
|
1578
|
+
{0x1D4EA, ord, "mbfscra"},
|
|
1579
|
+
{0x1D4EB, ord, "mbfscrb"},
|
|
1580
|
+
{0x1D4EC, ord, "mbfscrc"},
|
|
1581
|
+
{0x1D4ED, ord, "mbfscrd"},
|
|
1582
|
+
{0x1D4EE, ord, "mbfscre"},
|
|
1583
|
+
{0x1D4EF, ord, "mbfscrf"},
|
|
1584
|
+
{0x1D4F0, ord, "mbfscrg"},
|
|
1585
|
+
{0x1D4F1, ord, "mbfscrh"},
|
|
1586
|
+
{0x1D4F2, ord, "mbfscri"},
|
|
1587
|
+
{0x1D4F3, ord, "mbfscrj"},
|
|
1588
|
+
{0x1D4F4, ord, "mbfscrk"},
|
|
1589
|
+
{0x1D4F5, ord, "mbfscrl"},
|
|
1590
|
+
{0x1D4F6, ord, "mbfscrm"},
|
|
1591
|
+
{0x1D4F7, ord, "mbfscrn"},
|
|
1592
|
+
{0x1D4F8, ord, "mbfscro"},
|
|
1593
|
+
{0x1D4F9, ord, "mbfscrp"},
|
|
1594
|
+
{0x1D4FA, ord, "mbfscrq"},
|
|
1595
|
+
{0x1D4FB, ord, "mbfscrr"},
|
|
1596
|
+
{0x1D4FC, ord, "mbfscrs"},
|
|
1597
|
+
{0x1D4FD, ord, "mbfscrt"},
|
|
1598
|
+
{0x1D4FE, ord, "mbfscru"},
|
|
1599
|
+
{0x1D4FF, ord, "mbfscrv"},
|
|
1600
|
+
{0x1D500, ord, "mbfscrw"},
|
|
1601
|
+
{0x1D501, ord, "mbfscrx"},
|
|
1602
|
+
{0x1D502, ord, "mbfscry"},
|
|
1603
|
+
{0x1D503, ord, "mbfscrz"},
|
|
1604
|
+
{0x1D6D4, ord, "mbfsigma"},
|
|
1605
|
+
{0x1D42D, ord, "mbft"},
|
|
1606
|
+
{0x1D6D5, ord, "mbftau"},
|
|
1607
|
+
{0x1D6C9, ord, "mbftheta"},
|
|
1608
|
+
{0x1D42E, ord, "mbfu"},
|
|
1609
|
+
{0x1D6D6, ord, "mbfupsilon"},
|
|
1610
|
+
{0x1D42F, ord, "mbfv"},
|
|
1611
|
+
{0x1D6B9, ord, "mbfvarTheta"},
|
|
1612
|
+
{0x1D6DC, ord, "mbfvarepsilon"},
|
|
1613
|
+
{0x1D6DE, ord, "mbfvarkappa"},
|
|
1614
|
+
{0x1D6D7, ord, "mbfvarphi"},
|
|
1615
|
+
{0x1D6E1, ord, "mbfvarpi"},
|
|
1616
|
+
{0x1D6E0, ord, "mbfvarrho"},
|
|
1617
|
+
{0x1D6D3, ord, "mbfvarsigma"},
|
|
1618
|
+
{0x1D6DD, ord, "mbfvartheta"},
|
|
1619
|
+
{0x1D430, ord, "mbfw"},
|
|
1620
|
+
{0x1D431, ord, "mbfx"},
|
|
1621
|
+
{0x1D6CF, ord, "mbfxi"},
|
|
1622
|
+
{0x1D432, ord, "mbfy"},
|
|
1623
|
+
{0x1D433, ord, "mbfz"},
|
|
1624
|
+
{0x1D6C7, ord, "mbfzeta"},
|
|
1625
|
+
{0x026AB, ord, "mdblkcircle"},
|
|
1626
|
+
{0x02B25, ord, "mdblkdiamond"},
|
|
1627
|
+
{0x02B27, ord, "mdblklozenge"},
|
|
1628
|
+
{0x025FC, ord, "mdblksquare"},
|
|
1629
|
+
{0x025CF, ord, "mdlgblkcircle"},
|
|
1630
|
+
{0x025C6, ord, "mdlgblkdiamond"},
|
|
1631
|
+
{0x029EB, bin, "mdlgblklozenge"},
|
|
1632
|
+
{0x025A0, ord, "mdlgblksquare"},
|
|
1633
|
+
{0x025CB, bin, "mdlgwhtcircle"},
|
|
1634
|
+
{0x025C7, ord, "mdlgwhtdiamond"},
|
|
1635
|
+
{0x025CA, ord, "mdlgwhtlozenge"},
|
|
1636
|
+
{0x025A1, ord, "mdlgwhtsquare"},
|
|
1637
|
+
{0x02981, ord, "mdsmblkcircle"},
|
|
1638
|
+
{0x025FE, ord, "mdsmblksquare"},
|
|
1639
|
+
{0x026AC, ord, "mdsmwhtcircle"},
|
|
1640
|
+
{0x025FD, ord, "mdsmwhtsquare"},
|
|
1641
|
+
{0x026AA, ord, "mdwhtcircle"},
|
|
1642
|
+
{0x02B26, ord, "mdwhtdiamond"},
|
|
1643
|
+
{0x02B28, ord, "mdwhtlozenge"},
|
|
1644
|
+
{0x025FB, ord, "mdwhtsquare"},
|
|
1645
|
+
{0x029AF, ord, "measangledltosw"},
|
|
1646
|
+
{0x029AE, ord, "measangledrtose"},
|
|
1647
|
+
{0x029AB, ord, "measangleldtosw"},
|
|
1648
|
+
{0x029A9, ord, "measanglelutonw"},
|
|
1649
|
+
{0x029AA, ord, "measanglerdtose"},
|
|
1650
|
+
{0x029A8, ord, "measanglerutone"},
|
|
1651
|
+
{0x029AD, ord, "measangleultonw"},
|
|
1652
|
+
{0x029AC, ord, "measangleurtone"},
|
|
1653
|
+
{0x0225E, rel, "measeq"},
|
|
1654
|
+
{0x02221, ord, "measuredangle"},
|
|
1655
|
+
{0x0299B, ord, "measuredangleleft"},
|
|
1656
|
+
{0x022BE, ord, "measuredrightangle"},
|
|
1657
|
+
{0x02B51, ord, "medblackstar"},
|
|
1658
|
+
{0x026AB, ord, "medbullet"},
|
|
1659
|
+
{0x026AA, ord, "medcirc"},
|
|
1660
|
+
{0x0205F, ord, "medspace"},
|
|
1661
|
+
{0x02B50, ord, "medwhitestar"},
|
|
1662
|
+
{0x0263F, ord, "mercury"},
|
|
1663
|
+
{0x1D504, ord, "mfrakA"},
|
|
1664
|
+
{0x1D505, ord, "mfrakB"},
|
|
1665
|
+
{0x0212D, ord, "mfrakC"},
|
|
1666
|
+
{0x1D507, ord, "mfrakD"},
|
|
1667
|
+
{0x1D508, ord, "mfrakE"},
|
|
1668
|
+
{0x1D509, ord, "mfrakF"},
|
|
1669
|
+
{0x1D50A, ord, "mfrakG"},
|
|
1670
|
+
{0x0210C, ord, "mfrakH"},
|
|
1671
|
+
{0x1D50D, ord, "mfrakJ"},
|
|
1672
|
+
{0x1D50E, ord, "mfrakK"},
|
|
1673
|
+
{0x1D50F, ord, "mfrakL"},
|
|
1674
|
+
{0x1D510, ord, "mfrakM"},
|
|
1675
|
+
{0x1D511, ord, "mfrakN"},
|
|
1676
|
+
{0x1D512, ord, "mfrakO"},
|
|
1677
|
+
{0x1D513, ord, "mfrakP"},
|
|
1678
|
+
{0x1D514, ord, "mfrakQ"},
|
|
1679
|
+
{0x1D516, ord, "mfrakS"},
|
|
1680
|
+
{0x1D517, ord, "mfrakT"},
|
|
1681
|
+
{0x1D518, ord, "mfrakU"},
|
|
1682
|
+
{0x1D519, ord, "mfrakV"},
|
|
1683
|
+
{0x1D51A, ord, "mfrakW"},
|
|
1684
|
+
{0x1D51B, ord, "mfrakX"},
|
|
1685
|
+
{0x1D51C, ord, "mfrakY"},
|
|
1686
|
+
{0x02128, ord, "mfrakZ"},
|
|
1687
|
+
{0x1D51E, ord, "mfraka"},
|
|
1688
|
+
{0x1D51F, ord, "mfrakb"},
|
|
1689
|
+
{0x1D520, ord, "mfrakc"},
|
|
1690
|
+
{0x1D521, ord, "mfrakd"},
|
|
1691
|
+
{0x1D522, ord, "mfrake"},
|
|
1692
|
+
{0x1D523, ord, "mfrakf"},
|
|
1693
|
+
{0x1D524, ord, "mfrakg"},
|
|
1694
|
+
{0x1D525, ord, "mfrakh"},
|
|
1695
|
+
{0x1D526, ord, "mfraki"},
|
|
1696
|
+
{0x1D527, ord, "mfrakj"},
|
|
1697
|
+
{0x1D528, ord, "mfrakk"},
|
|
1698
|
+
{0x1D529, ord, "mfrakl"},
|
|
1699
|
+
{0x1D52A, ord, "mfrakm"},
|
|
1700
|
+
{0x1D52B, ord, "mfrakn"},
|
|
1701
|
+
{0x1D52C, ord, "mfrako"},
|
|
1702
|
+
{0x1D52D, ord, "mfrakp"},
|
|
1703
|
+
{0x1D52E, ord, "mfrakq"},
|
|
1704
|
+
{0x1D52F, ord, "mfrakr"},
|
|
1705
|
+
{0x1D530, ord, "mfraks"},
|
|
1706
|
+
{0x1D531, ord, "mfrakt"},
|
|
1707
|
+
{0x1D532, ord, "mfraku"},
|
|
1708
|
+
{0x1D533, ord, "mfrakv"},
|
|
1709
|
+
{0x1D534, ord, "mfrakw"},
|
|
1710
|
+
{0x1D535, ord, "mfrakx"},
|
|
1711
|
+
{0x1D536, ord, "mfraky"},
|
|
1712
|
+
{0x1D537, ord, "mfrakz"},
|
|
1713
|
+
{0x02127, ord, "mho"},
|
|
1714
|
+
{0x02223, rel, "mid"},
|
|
1715
|
+
{0x02A5D, bin, "midbarvee"},
|
|
1716
|
+
{0x02A5C, bin, "midbarwedge"},
|
|
1717
|
+
{0x02AF0, rel, "midcir"},
|
|
1718
|
+
{0x02212, bin, "minus"},
|
|
1719
|
+
{0x02A2A, bin, "minusdot"},
|
|
1720
|
+
{0x02A2B, bin, "minusfdots"},
|
|
1721
|
+
{0x02A2C, bin, "minusrdots"},
|
|
1722
|
+
{0x1D434, ord, "mitA"},
|
|
1723
|
+
{0x1D6E2, ord, "mitAlpha"},
|
|
1724
|
+
{0x1D435, ord, "mitB"},
|
|
1725
|
+
{0x02145, ord, "mitBbbD"},
|
|
1726
|
+
{0x02146, ord, "mitBbbd"},
|
|
1727
|
+
{0x02147, ord, "mitBbbe"},
|
|
1728
|
+
{0x02148, ord, "mitBbbi"},
|
|
1729
|
+
{0x02149, ord, "mitBbbj"},
|
|
1730
|
+
{0x1D6E3, ord, "mitBeta"},
|
|
1731
|
+
{0x1D436, ord, "mitC"},
|
|
1732
|
+
{0x1D6F8, ord, "mitChi"},
|
|
1733
|
+
{0x1D437, ord, "mitD"},
|
|
1734
|
+
{0x1D6E5, ord, "mitDelta"},
|
|
1735
|
+
{0x1D438, ord, "mitE"},
|
|
1736
|
+
{0x1D6E6, ord, "mitEpsilon"},
|
|
1737
|
+
{0x1D6E8, ord, "mitEta"},
|
|
1738
|
+
{0x1D439, ord, "mitF"},
|
|
1739
|
+
{0x1D43A, ord, "mitG"},
|
|
1740
|
+
{0x1D6E4, ord, "mitGamma"},
|
|
1741
|
+
{0x1D43B, ord, "mitH"},
|
|
1742
|
+
{0x1D43C, ord, "mitI"},
|
|
1743
|
+
{0x1D6EA, ord, "mitIota"},
|
|
1744
|
+
{0x1D43D, ord, "mitJ"},
|
|
1745
|
+
{0x1D43E, ord, "mitK"},
|
|
1746
|
+
{0x1D6EB, ord, "mitKappa"},
|
|
1747
|
+
{0x1D43F, ord, "mitL"},
|
|
1748
|
+
{0x1D6EC, ord, "mitLambda"},
|
|
1749
|
+
{0x1D440, ord, "mitM"},
|
|
1750
|
+
{0x1D6ED, ord, "mitMu"},
|
|
1751
|
+
{0x1D441, ord, "mitN"},
|
|
1752
|
+
{0x1D6EE, ord, "mitNu"},
|
|
1753
|
+
{0x1D442, ord, "mitO"},
|
|
1754
|
+
{0x1D6FA, ord, "mitOmega"},
|
|
1755
|
+
{0x1D6F0, ord, "mitOmicron"},
|
|
1756
|
+
{0x1D443, ord, "mitP"},
|
|
1757
|
+
{0x1D6F7, ord, "mitPhi"},
|
|
1758
|
+
{0x1D6F1, ord, "mitPi"},
|
|
1759
|
+
{0x1D6F9, ord, "mitPsi"},
|
|
1760
|
+
{0x1D444, ord, "mitQ"},
|
|
1761
|
+
{0x1D445, ord, "mitR"},
|
|
1762
|
+
{0x1D6F2, ord, "mitRho"},
|
|
1763
|
+
{0x1D446, ord, "mitS"},
|
|
1764
|
+
{0x1D6F4, ord, "mitSigma"},
|
|
1765
|
+
{0x1D447, ord, "mitT"},
|
|
1766
|
+
{0x1D6F5, ord, "mitTau"},
|
|
1767
|
+
{0x1D6E9, ord, "mitTheta"},
|
|
1768
|
+
{0x1D448, ord, "mitU"},
|
|
1769
|
+
{0x1D6F6, ord, "mitUpsilon"},
|
|
1770
|
+
{0x1D449, ord, "mitV"},
|
|
1771
|
+
{0x1D44A, ord, "mitW"},
|
|
1772
|
+
{0x1D44B, ord, "mitX"},
|
|
1773
|
+
{0x1D6EF, ord, "mitXi"},
|
|
1774
|
+
{0x1D44C, ord, "mitY"},
|
|
1775
|
+
{0x1D44D, ord, "mitZ"},
|
|
1776
|
+
{0x1D6E7, ord, "mitZeta"},
|
|
1777
|
+
{0x1D44E, ord, "mita"},
|
|
1778
|
+
{0x1D6FC, ord, "mitalpha"},
|
|
1779
|
+
{0x1D44F, ord, "mitb"},
|
|
1780
|
+
{0x1D6FD, ord, "mitbeta"},
|
|
1781
|
+
{0x1D450, ord, "mitc"},
|
|
1782
|
+
{0x1D712, ord, "mitchi"},
|
|
1783
|
+
{0x1D451, ord, "mitd"},
|
|
1784
|
+
{0x1D6FF, ord, "mitdelta"},
|
|
1785
|
+
{0x1D452, ord, "mite"},
|
|
1786
|
+
{0x1D700, ord, "mitepsilon"},
|
|
1787
|
+
{0x1D702, ord, "miteta"},
|
|
1788
|
+
{0x1D453, ord, "mitf"},
|
|
1789
|
+
{0x1D454, ord, "mitg"},
|
|
1790
|
+
{0x1D6FE, ord, "mitgamma"},
|
|
1791
|
+
{0x1D456, ord, "miti"},
|
|
1792
|
+
{0x1D704, ord, "mitiota"},
|
|
1793
|
+
{0x1D457, ord, "mitj"},
|
|
1794
|
+
{0x1D458, ord, "mitk"},
|
|
1795
|
+
{0x1D705, ord, "mitkappa"},
|
|
1796
|
+
{0x1D459, ord, "mitl"},
|
|
1797
|
+
{0x1D706, ord, "mitlambda"},
|
|
1798
|
+
{0x1D45A, ord, "mitm"},
|
|
1799
|
+
{0x1D707, ord, "mitmu"},
|
|
1800
|
+
{0x1D45B, ord, "mitn"},
|
|
1801
|
+
{0x1D6FB, ord, "mitnabla"},
|
|
1802
|
+
{0x1D708, ord, "mitnu"},
|
|
1803
|
+
{0x1D45C, ord, "mito"},
|
|
1804
|
+
{0x1D714, ord, "mitomega"},
|
|
1805
|
+
{0x1D70A, ord, "mitomicron"},
|
|
1806
|
+
{0x1D45D, ord, "mitp"},
|
|
1807
|
+
{0x1D715, ord, "mitpartial"},
|
|
1808
|
+
{0x1D711, ord, "mitphi"},
|
|
1809
|
+
{0x1D70B, ord, "mitpi"},
|
|
1810
|
+
{0x1D713, ord, "mitpsi"},
|
|
1811
|
+
{0x1D45E, ord, "mitq"},
|
|
1812
|
+
{0x1D45F, ord, "mitr"},
|
|
1813
|
+
{0x1D70C, ord, "mitrho"},
|
|
1814
|
+
{0x1D460, ord, "mits"},
|
|
1815
|
+
{0x1D608, ord, "mitsansA"},
|
|
1816
|
+
{0x1D609, ord, "mitsansB"},
|
|
1817
|
+
{0x1D60A, ord, "mitsansC"},
|
|
1818
|
+
{0x1D60B, ord, "mitsansD"},
|
|
1819
|
+
{0x1D60C, ord, "mitsansE"},
|
|
1820
|
+
{0x1D60D, ord, "mitsansF"},
|
|
1821
|
+
{0x1D60E, ord, "mitsansG"},
|
|
1822
|
+
{0x1D60F, ord, "mitsansH"},
|
|
1823
|
+
{0x1D610, ord, "mitsansI"},
|
|
1824
|
+
{0x1D611, ord, "mitsansJ"},
|
|
1825
|
+
{0x1D612, ord, "mitsansK"},
|
|
1826
|
+
{0x1D613, ord, "mitsansL"},
|
|
1827
|
+
{0x1D614, ord, "mitsansM"},
|
|
1828
|
+
{0x1D615, ord, "mitsansN"},
|
|
1829
|
+
{0x1D616, ord, "mitsansO"},
|
|
1830
|
+
{0x1D617, ord, "mitsansP"},
|
|
1831
|
+
{0x1D618, ord, "mitsansQ"},
|
|
1832
|
+
{0x1D619, ord, "mitsansR"},
|
|
1833
|
+
{0x1D61A, ord, "mitsansS"},
|
|
1834
|
+
{0x1D61B, ord, "mitsansT"},
|
|
1835
|
+
{0x1D61C, ord, "mitsansU"},
|
|
1836
|
+
{0x1D61D, ord, "mitsansV"},
|
|
1837
|
+
{0x1D61E, ord, "mitsansW"},
|
|
1838
|
+
{0x1D61F, ord, "mitsansX"},
|
|
1839
|
+
{0x1D620, ord, "mitsansY"},
|
|
1840
|
+
{0x1D621, ord, "mitsansZ"},
|
|
1841
|
+
{0x1D622, ord, "mitsansa"},
|
|
1842
|
+
{0x1D623, ord, "mitsansb"},
|
|
1843
|
+
{0x1D624, ord, "mitsansc"},
|
|
1844
|
+
{0x1D625, ord, "mitsansd"},
|
|
1845
|
+
{0x1D626, ord, "mitsanse"},
|
|
1846
|
+
{0x1D627, ord, "mitsansf"},
|
|
1847
|
+
{0x1D628, ord, "mitsansg"},
|
|
1848
|
+
{0x1D629, ord, "mitsansh"},
|
|
1849
|
+
{0x1D62A, ord, "mitsansi"},
|
|
1850
|
+
{0x1D62B, ord, "mitsansj"},
|
|
1851
|
+
{0x1D62C, ord, "mitsansk"},
|
|
1852
|
+
{0x1D62D, ord, "mitsansl"},
|
|
1853
|
+
{0x1D62E, ord, "mitsansm"},
|
|
1854
|
+
{0x1D62F, ord, "mitsansn"},
|
|
1855
|
+
{0x1D630, ord, "mitsanso"},
|
|
1856
|
+
{0x1D631, ord, "mitsansp"},
|
|
1857
|
+
{0x1D632, ord, "mitsansq"},
|
|
1858
|
+
{0x1D633, ord, "mitsansr"},
|
|
1859
|
+
{0x1D634, ord, "mitsanss"},
|
|
1860
|
+
{0x1D635, ord, "mitsanst"},
|
|
1861
|
+
{0x1D636, ord, "mitsansu"},
|
|
1862
|
+
{0x1D637, ord, "mitsansv"},
|
|
1863
|
+
{0x1D638, ord, "mitsansw"},
|
|
1864
|
+
{0x1D639, ord, "mitsansx"},
|
|
1865
|
+
{0x1D63A, ord, "mitsansy"},
|
|
1866
|
+
{0x1D63B, ord, "mitsansz"},
|
|
1867
|
+
{0x1D70E, ord, "mitsigma"},
|
|
1868
|
+
{0x1D461, ord, "mitt"},
|
|
1869
|
+
{0x1D70F, ord, "mittau"},
|
|
1870
|
+
{0x1D703, ord, "mittheta"},
|
|
1871
|
+
{0x1D462, ord, "mitu"},
|
|
1872
|
+
{0x1D710, ord, "mitupsilon"},
|
|
1873
|
+
{0x1D463, ord, "mitv"},
|
|
1874
|
+
{0x1D6F3, ord, "mitvarTheta"},
|
|
1875
|
+
{0x1D716, ord, "mitvarepsilon"},
|
|
1876
|
+
{0x1D718, ord, "mitvarkappa"},
|
|
1877
|
+
{0x1D719, ord, "mitvarphi"},
|
|
1878
|
+
{0x1D71B, ord, "mitvarpi"},
|
|
1879
|
+
{0x1D71A, ord, "mitvarrho"},
|
|
1880
|
+
{0x1D70D, ord, "mitvarsigma"},
|
|
1881
|
+
{0x1D717, ord, "mitvartheta"},
|
|
1882
|
+
{0x1D464, ord, "mitw"},
|
|
1883
|
+
{0x1D465, ord, "mitx"},
|
|
1884
|
+
{0x1D709, ord, "mitxi"},
|
|
1885
|
+
{0x1D466, ord, "mity"},
|
|
1886
|
+
{0x1D467, ord, "mitz"},
|
|
1887
|
+
{0x1D701, ord, "mitzeta"},
|
|
1888
|
+
{0x02ADB, rel, "mlcp"},
|
|
1889
|
+
{0x022A7, rel, "models"},
|
|
1890
|
+
{0x02A0A, ord, "modtwosum"},
|
|
1891
|
+
{0x02213, bin, "mp"},
|
|
1892
|
+
{0x1D5A0, ord, "msansA"},
|
|
1893
|
+
{0x1D5A1, ord, "msansB"},
|
|
1894
|
+
{0x1D5A2, ord, "msansC"},
|
|
1895
|
+
{0x1D5A3, ord, "msansD"},
|
|
1896
|
+
{0x1D5A4, ord, "msansE"},
|
|
1897
|
+
{0x1D5A5, ord, "msansF"},
|
|
1898
|
+
{0x1D5A6, ord, "msansG"},
|
|
1899
|
+
{0x1D5A7, ord, "msansH"},
|
|
1900
|
+
{0x1D5A8, ord, "msansI"},
|
|
1901
|
+
{0x1D5A9, ord, "msansJ"},
|
|
1902
|
+
{0x1D5AA, ord, "msansK"},
|
|
1903
|
+
{0x1D5AB, ord, "msansL"},
|
|
1904
|
+
{0x1D5AC, ord, "msansM"},
|
|
1905
|
+
{0x1D5AD, ord, "msansN"},
|
|
1906
|
+
{0x1D5AE, ord, "msansO"},
|
|
1907
|
+
{0x1D5AF, ord, "msansP"},
|
|
1908
|
+
{0x1D5B0, ord, "msansQ"},
|
|
1909
|
+
{0x1D5B1, ord, "msansR"},
|
|
1910
|
+
{0x1D5B2, ord, "msansS"},
|
|
1911
|
+
{0x1D5B3, ord, "msansT"},
|
|
1912
|
+
{0x1D5B4, ord, "msansU"},
|
|
1913
|
+
{0x1D5B5, ord, "msansV"},
|
|
1914
|
+
{0x1D5B6, ord, "msansW"},
|
|
1915
|
+
{0x1D5B7, ord, "msansX"},
|
|
1916
|
+
{0x1D5B8, ord, "msansY"},
|
|
1917
|
+
{0x1D5B9, ord, "msansZ"},
|
|
1918
|
+
{0x1D5BA, ord, "msansa"},
|
|
1919
|
+
{0x1D5BB, ord, "msansb"},
|
|
1920
|
+
{0x1D5BC, ord, "msansc"},
|
|
1921
|
+
{0x1D5BD, ord, "msansd"},
|
|
1922
|
+
{0x1D5BE, ord, "msanse"},
|
|
1923
|
+
{0x1D7EA, ord, "msanseight"},
|
|
1924
|
+
{0x1D5BF, ord, "msansf"},
|
|
1925
|
+
{0x1D7E7, ord, "msansfive"},
|
|
1926
|
+
{0x1D7E6, ord, "msansfour"},
|
|
1927
|
+
{0x1D5C0, ord, "msansg"},
|
|
1928
|
+
{0x1D5C1, ord, "msansh"},
|
|
1929
|
+
{0x1D5C2, ord, "msansi"},
|
|
1930
|
+
{0x1D5C3, ord, "msansj"},
|
|
1931
|
+
{0x1D5C4, ord, "msansk"},
|
|
1932
|
+
{0x1D5C5, ord, "msansl"},
|
|
1933
|
+
{0x1D5C6, ord, "msansm"},
|
|
1934
|
+
{0x1D5C7, ord, "msansn"},
|
|
1935
|
+
{0x1D7EB, ord, "msansnine"},
|
|
1936
|
+
{0x1D5C8, ord, "msanso"},
|
|
1937
|
+
{0x1D7E3, ord, "msansone"},
|
|
1938
|
+
{0x1D5C9, ord, "msansp"},
|
|
1939
|
+
{0x1D5CA, ord, "msansq"},
|
|
1940
|
+
{0x1D5CB, ord, "msansr"},
|
|
1941
|
+
{0x1D5CC, ord, "msanss"},
|
|
1942
|
+
{0x1D7E9, ord, "msansseven"},
|
|
1943
|
+
{0x1D7E8, ord, "msanssix"},
|
|
1944
|
+
{0x1D5CD, ord, "msanst"},
|
|
1945
|
+
{0x1D7E5, ord, "msansthree"},
|
|
1946
|
+
{0x1D7E4, ord, "msanstwo"},
|
|
1947
|
+
{0x1D5CE, ord, "msansu"},
|
|
1948
|
+
{0x1D5CF, ord, "msansv"},
|
|
1949
|
+
{0x1D5D0, ord, "msansw"},
|
|
1950
|
+
{0x1D5D1, ord, "msansx"},
|
|
1951
|
+
{0x1D5D2, ord, "msansy"},
|
|
1952
|
+
{0x1D5D3, ord, "msansz"},
|
|
1953
|
+
{0x1D7E2, ord, "msanszero"},
|
|
1954
|
+
{0x1D49C, ord, "mscrA"},
|
|
1955
|
+
{0x0212C, ord, "mscrB"},
|
|
1956
|
+
{0x1D49E, ord, "mscrC"},
|
|
1957
|
+
{0x1D49F, ord, "mscrD"},
|
|
1958
|
+
{0x02130, ord, "mscrE"},
|
|
1959
|
+
{0x02131, ord, "mscrF"},
|
|
1960
|
+
{0x1D4A2, ord, "mscrG"},
|
|
1961
|
+
{0x0210B, ord, "mscrH"},
|
|
1962
|
+
{0x02110, ord, "mscrI"},
|
|
1963
|
+
{0x1D4A5, ord, "mscrJ"},
|
|
1964
|
+
{0x1D4A6, ord, "mscrK"},
|
|
1965
|
+
{0x02112, ord, "mscrL"},
|
|
1966
|
+
{0x02133, ord, "mscrM"},
|
|
1967
|
+
{0x1D4A9, ord, "mscrN"},
|
|
1968
|
+
{0x1D4AA, ord, "mscrO"},
|
|
1969
|
+
{0x1D4AB, ord, "mscrP"},
|
|
1970
|
+
{0x1D4AC, ord, "mscrQ"},
|
|
1971
|
+
{0x0211B, ord, "mscrR"},
|
|
1972
|
+
{0x1D4AE, ord, "mscrS"},
|
|
1973
|
+
{0x1D4AF, ord, "mscrT"},
|
|
1974
|
+
{0x1D4B0, ord, "mscrU"},
|
|
1975
|
+
{0x1D4B1, ord, "mscrV"},
|
|
1976
|
+
{0x1D4B2, ord, "mscrW"},
|
|
1977
|
+
{0x1D4B3, ord, "mscrX"},
|
|
1978
|
+
{0x1D4B4, ord, "mscrY"},
|
|
1979
|
+
{0x1D4B5, ord, "mscrZ"},
|
|
1980
|
+
{0x1D4B6, ord, "mscra"},
|
|
1981
|
+
{0x1D4B7, ord, "mscrb"},
|
|
1982
|
+
{0x1D4B8, ord, "mscrc"},
|
|
1983
|
+
{0x1D4B9, ord, "mscrd"},
|
|
1984
|
+
{0x0212F, ord, "mscre"},
|
|
1985
|
+
{0x1D4BB, ord, "mscrf"},
|
|
1986
|
+
{0x0210A, ord, "mscrg"},
|
|
1987
|
+
{0x1D4BD, ord, "mscrh"},
|
|
1988
|
+
{0x1D4BE, ord, "mscri"},
|
|
1989
|
+
{0x1D4BF, ord, "mscrj"},
|
|
1990
|
+
{0x1D4C0, ord, "mscrk"},
|
|
1991
|
+
{0x1D4C1, ord, "mscrl"},
|
|
1992
|
+
{0x1D4C2, ord, "mscrm"},
|
|
1993
|
+
{0x1D4C3, ord, "mscrn"},
|
|
1994
|
+
{0x02134, ord, "mscro"},
|
|
1995
|
+
{0x1D4C5, ord, "mscrp"},
|
|
1996
|
+
{0x1D4C6, ord, "mscrq"},
|
|
1997
|
+
{0x1D4C7, ord, "mscrr"},
|
|
1998
|
+
{0x1D4C8, ord, "mscrs"},
|
|
1999
|
+
{0x1D4C9, ord, "mscrt"},
|
|
2000
|
+
{0x1D4CA, ord, "mscru"},
|
|
2001
|
+
{0x1D4CB, ord, "mscrv"},
|
|
2002
|
+
{0x1D4CC, ord, "mscrw"},
|
|
2003
|
+
{0x1D4CD, ord, "mscrx"},
|
|
2004
|
+
{0x1D4CE, ord, "mscry"},
|
|
2005
|
+
{0x1D4CF, ord, "mscrz"},
|
|
2006
|
+
{0x1D670, ord, "mttA"},
|
|
2007
|
+
{0x1D671, ord, "mttB"},
|
|
2008
|
+
{0x1D672, ord, "mttC"},
|
|
2009
|
+
{0x1D673, ord, "mttD"},
|
|
2010
|
+
{0x1D674, ord, "mttE"},
|
|
2011
|
+
{0x1D675, ord, "mttF"},
|
|
2012
|
+
{0x1D676, ord, "mttG"},
|
|
2013
|
+
{0x1D677, ord, "mttH"},
|
|
2014
|
+
{0x1D678, ord, "mttI"},
|
|
2015
|
+
{0x1D679, ord, "mttJ"},
|
|
2016
|
+
{0x1D67A, ord, "mttK"},
|
|
2017
|
+
{0x1D67B, ord, "mttL"},
|
|
2018
|
+
{0x1D67C, ord, "mttM"},
|
|
2019
|
+
{0x1D67D, ord, "mttN"},
|
|
2020
|
+
{0x1D67E, ord, "mttO"},
|
|
2021
|
+
{0x1D67F, ord, "mttP"},
|
|
2022
|
+
{0x1D680, ord, "mttQ"},
|
|
2023
|
+
{0x1D681, ord, "mttR"},
|
|
2024
|
+
{0x1D682, ord, "mttS"},
|
|
2025
|
+
{0x1D683, ord, "mttT"},
|
|
2026
|
+
{0x1D684, ord, "mttU"},
|
|
2027
|
+
{0x1D685, ord, "mttV"},
|
|
2028
|
+
{0x1D686, ord, "mttW"},
|
|
2029
|
+
{0x1D687, ord, "mttX"},
|
|
2030
|
+
{0x1D688, ord, "mttY"},
|
|
2031
|
+
{0x1D689, ord, "mttZ"},
|
|
2032
|
+
{0x1D68A, ord, "mtta"},
|
|
2033
|
+
{0x1D68B, ord, "mttb"},
|
|
2034
|
+
{0x1D68C, ord, "mttc"},
|
|
2035
|
+
{0x1D68D, ord, "mttd"},
|
|
2036
|
+
{0x1D68E, ord, "mtte"},
|
|
2037
|
+
{0x1D7FE, ord, "mtteight"},
|
|
2038
|
+
{0x1D68F, ord, "mttf"},
|
|
2039
|
+
{0x1D7FB, ord, "mttfive"},
|
|
2040
|
+
{0x1D7FA, ord, "mttfour"},
|
|
2041
|
+
{0x1D690, ord, "mttg"},
|
|
2042
|
+
{0x1D691, ord, "mtth"},
|
|
2043
|
+
{0x1D692, ord, "mtti"},
|
|
2044
|
+
{0x1D693, ord, "mttj"},
|
|
2045
|
+
{0x1D694, ord, "mttk"},
|
|
2046
|
+
{0x1D695, ord, "mttl"},
|
|
2047
|
+
{0x1D696, ord, "mttm"},
|
|
2048
|
+
{0x1D697, ord, "mttn"},
|
|
2049
|
+
{0x1D7FF, ord, "mttnine"},
|
|
2050
|
+
{0x1D698, ord, "mtto"},
|
|
2051
|
+
{0x1D7F7, ord, "mttone"},
|
|
2052
|
+
{0x1D699, ord, "mttp"},
|
|
2053
|
+
{0x1D69A, ord, "mttq"},
|
|
2054
|
+
{0x1D69B, ord, "mttr"},
|
|
2055
|
+
{0x1D69C, ord, "mtts"},
|
|
2056
|
+
{0x1D7FD, ord, "mttseven"},
|
|
2057
|
+
{0x1D7FC, ord, "mttsix"},
|
|
2058
|
+
{0x1D69D, ord, "mttt"},
|
|
2059
|
+
{0x1D7F9, ord, "mttthree"},
|
|
2060
|
+
{0x1D7F8, ord, "mtttwo"},
|
|
2061
|
+
{0x1D69E, ord, "mttu"},
|
|
2062
|
+
{0x1D69F, ord, "mttv"},
|
|
2063
|
+
{0x1D6A0, ord, "mttw"},
|
|
2064
|
+
{0x1D6A1, ord, "mttx"},
|
|
2065
|
+
{0x1D6A2, ord, "mtty"},
|
|
2066
|
+
{0x1D6A3, ord, "mttz"},
|
|
2067
|
+
{0x1D7F6, ord, "mttzero"},
|
|
2068
|
+
{0x003BC, ord, "mu"},
|
|
2069
|
+
{0x022B8, rel, "multimap"},
|
|
2070
|
+
{0x029DF, rel, "multimapboth"},
|
|
2071
|
+
{0x022B6, rel, "multimapdotbothA"},
|
|
2072
|
+
{0x022B7, rel, "multimapdotbothB"},
|
|
2073
|
+
{0x027DC, rel, "multimapinv"},
|
|
2074
|
+
{0x003BC, ord, "muup"},
|
|
2075
|
+
{0x021DF, ord, "nHdownarrow"},
|
|
2076
|
+
{0x021DE, ord, "nHuparrow"},
|
|
2077
|
+
{0x021CD, rel, "nLeftarrow"},
|
|
2078
|
+
{0x021CE, rel, "nLeftrightarrow"},
|
|
2079
|
+
{0x021CF, rel, "nRightarrow"},
|
|
2080
|
+
{0x022AF, rel, "nVDash"},
|
|
2081
|
+
{0x022AE, rel, "nVdash"},
|
|
2082
|
+
{0x021FA, rel, "nVleftarrow"},
|
|
2083
|
+
{0x02B3A, rel, "nVleftarrowtail"},
|
|
2084
|
+
{0x021FC, rel, "nVleftrightarrow"},
|
|
2085
|
+
{0x021FB, rel, "nVrightarrow"},
|
|
2086
|
+
{0x02915, rel, "nVrightarrowtail"},
|
|
2087
|
+
{0x02B35, rel, "nVtwoheadleftarrow"},
|
|
2088
|
+
{0x02B3D, rel, "nVtwoheadleftarrowtail"},
|
|
2089
|
+
{0x02901, rel, "nVtwoheadrightarrow"},
|
|
2090
|
+
{0x02918, rel, "nVtwoheadrightarrowtail"},
|
|
2091
|
+
{0x02207, ord, "nabla"},
|
|
2092
|
+
{0x02249, rel, "napprox"},
|
|
2093
|
+
{0x0226D, rel, "nasymp"},
|
|
2094
|
+
{0x0266E, ord, "natural"},
|
|
2095
|
+
{0x02247, rel, "ncong"},
|
|
2096
|
+
{0x02A64, bin, "ndres"},
|
|
2097
|
+
{0x02260, rel, "ne"},
|
|
2098
|
+
{0x02197, rel, "nearrow"},
|
|
2099
|
+
{0x000AC, ord, "neg"},
|
|
2100
|
+
{0x02931, ord, "neovnwarrow"},
|
|
2101
|
+
{0x0292E, ord, "neovsearrow"},
|
|
2102
|
+
{0x02646, ord, "neptune"},
|
|
2103
|
+
{0x02260, rel, "neq"},
|
|
2104
|
+
{0x02262, rel, "nequiv"},
|
|
2105
|
+
{0x02922, rel, "neswarrow"},
|
|
2106
|
+
{0x026B2, ord, "neuter"},
|
|
2107
|
+
{0x02204, ord, "nexi"},
|
|
2108
|
+
{0x02204, ord, "nexists"},
|
|
2109
|
+
{0x02271, rel, "ngeq"},
|
|
2110
|
+
{0x02271, rel, "ngeqslant"},
|
|
2111
|
+
{0x0226F, rel, "ngtr"},
|
|
2112
|
+
{0x02279, rel, "ngtrless"},
|
|
2113
|
+
{0x02275, rel, "ngtrsim"},
|
|
2114
|
+
{0x02AF5, bin, "nhVvert"},
|
|
2115
|
+
{0x02AF2, rel, "nhpar"},
|
|
2116
|
+
{0x0220B, rel, "ni"},
|
|
2117
|
+
{0x02209, rel, "nin"},
|
|
2118
|
+
{0x022FE, rel, "niobar"},
|
|
2119
|
+
{0x022FC, rel, "nis"},
|
|
2120
|
+
{0x022FA, rel, "nisd"},
|
|
2121
|
+
{0x0219A, rel, "nleftarrow"},
|
|
2122
|
+
{0x021AE, rel, "nleftrightarrow"},
|
|
2123
|
+
{0x02270, rel, "nleq"},
|
|
2124
|
+
{0x02270, rel, "nleqslant"},
|
|
2125
|
+
{0x0226E, rel, "nless"},
|
|
2126
|
+
{0x02278, rel, "nlessgtr"},
|
|
2127
|
+
{0x02274, rel, "nlesssim"},
|
|
2128
|
+
{0x02224, rel, "nmid"},
|
|
2129
|
+
{0x0220C, rel, "nni"},
|
|
2130
|
+
{0x00338, acc, "not"},
|
|
2131
|
+
{0x0226D, rel, "notasymp"},
|
|
2132
|
+
{0x02340, ord, "notbackslash"},
|
|
2133
|
+
{0x02209, rel, "notin"},
|
|
2134
|
+
{0x0220C, rel, "notni"},
|
|
2135
|
+
{0x0220C, rel, "notowner"},
|
|
2136
|
+
{0x0220C, rel, "notowns"},
|
|
2137
|
+
{0x0233F, rel, "notslash"},
|
|
2138
|
+
{0x02226, rel, "nparallel"},
|
|
2139
|
+
{0x02A14, opt | N, "npolint"},
|
|
2140
|
+
{0x02280, rel, "nprec"},
|
|
2141
|
+
{0x022E0, rel, "npreccurlyeq"},
|
|
2142
|
+
{0x022E0, rel, "npreceq"},
|
|
2143
|
+
{0x0219B, rel, "nrightarrow"},
|
|
2144
|
+
{0x02A65, bin, "nrres"},
|
|
2145
|
+
{0x02241, rel, "nsim"},
|
|
2146
|
+
{0x02244, rel, "nsime"},
|
|
2147
|
+
{0x02244, rel, "nsimeq"},
|
|
2148
|
+
{0x022E2, rel, "nsqsubseteq"},
|
|
2149
|
+
{0x022E3, rel, "nsqsupseteq"},
|
|
2150
|
+
{0x02284, rel, "nsubset"},
|
|
2151
|
+
{0x02288, rel, "nsubseteq"},
|
|
2152
|
+
{0x02281, rel, "nsucc"},
|
|
2153
|
+
{0x022E1, rel, "nsucccurlyeq"},
|
|
2154
|
+
{0x022E1, rel, "nsucceq"},
|
|
2155
|
+
{0x02285, rel, "nsupset"},
|
|
2156
|
+
{0x02289, rel, "nsupseteq"},
|
|
2157
|
+
{0x022EA, rel, "ntriangleleft"},
|
|
2158
|
+
{0x022EC, rel, "ntrianglelefteq"},
|
|
2159
|
+
{0x022EB, rel, "ntriangleright"},
|
|
2160
|
+
{0x022ED, rel, "ntrianglerighteq"},
|
|
2161
|
+
{0x003BD, ord, "nu"},
|
|
2162
|
+
{0x022EC, rel, "nunlhd"},
|
|
2163
|
+
{0x022ED, rel, "nunrhd"},
|
|
2164
|
+
{0x003BD, ord, "nuup"},
|
|
2165
|
+
{0x022AD, rel, "nvDash"},
|
|
2166
|
+
{0x02902, rel, "nvLeftarrow"},
|
|
2167
|
+
{0x02904, rel, "nvLeftrightarrow"},
|
|
2168
|
+
{0x02903, rel, "nvRightarrow"},
|
|
2169
|
+
{0x022AC, rel, "nvdash"},
|
|
2170
|
+
{0x029DE, ord, "nvinfty"},
|
|
2171
|
+
{0x021F7, rel, "nvleftarrow"},
|
|
2172
|
+
{0x02B39, rel, "nvleftarrowtail"},
|
|
2173
|
+
{0x021F9, rel, "nvleftrightarrow"},
|
|
2174
|
+
{0x021F8, rel, "nvrightarrow"},
|
|
2175
|
+
{0x02914, rel, "nvrightarrowtail"},
|
|
2176
|
+
{0x02B34, rel, "nvtwoheadleftarrow"},
|
|
2177
|
+
{0x02B3C, rel, "nvtwoheadleftarrowtail"},
|
|
2178
|
+
{0x02900, rel, "nvtwoheadrightarrow"},
|
|
2179
|
+
{0x02917, rel, "nvtwoheadrightarrowtail"},
|
|
2180
|
+
{0x02196, rel, "nwarrow"},
|
|
2181
|
+
{0x02932, ord, "nwovnearrow"},
|
|
2182
|
+
{0x02921, rel, "nwsearrow"},
|
|
2183
|
+
{0x0233D, bin, "obar"},
|
|
2184
|
+
{0x029BA, ord, "obot"},
|
|
2185
|
+
{0x023E0, ord, "obrbrak"},
|
|
2186
|
+
{0x029B8, bin, "obslash"},
|
|
2187
|
+
{0x0030A, acc, "ocirc"},
|
|
2188
|
+
{0x00315, acc, "ocommatopright"},
|
|
2189
|
+
{0x00023, ord, "octothorpe"},
|
|
2190
|
+
{0x02A38, bin, "odiv"},
|
|
2191
|
+
{0x02299, bin, "odot"},
|
|
2192
|
+
{0x029BC, ord, "odotslashdot"},
|
|
2193
|
+
{0x029C1, bin, "ogreaterthan"},
|
|
2194
|
+
{0x02230, opt | N, "oiiint"},
|
|
2195
|
+
{0x0222F, opt | N, "oiint"},
|
|
2196
|
+
{0x0222E, opt | N, "oint"},
|
|
2197
|
+
{0x02233, opt | N, "ointctrclockwise"},
|
|
2198
|
+
{0x029BB, ord, "olcross"},
|
|
2199
|
+
{0x029C0, bin, "olessthan"},
|
|
2200
|
+
{0x003C9, ord, "omega"},
|
|
2201
|
+
{0x003C9, ord, "omegaup"},
|
|
2202
|
+
{0x02296, bin, "ominus"},
|
|
2203
|
+
{0x029B9, bin, "operp"},
|
|
2204
|
+
{0x02295, bin, "oplus"},
|
|
2205
|
+
{0x02A2D, bin, "opluslhrim"},
|
|
2206
|
+
{0x02A2E, bin, "oplusrhrim"},
|
|
2207
|
+
{0x022B6, rel, "origof"},
|
|
2208
|
+
{0x02298, bin, "oslash"},
|
|
2209
|
+
{0x02297, bin, "otimes"},
|
|
2210
|
+
{0x02A36, bin, "otimeshat"},
|
|
2211
|
+
{0x02A34, bin, "otimeslhrim"},
|
|
2212
|
+
{0x02A35, bin, "otimesrhrim"},
|
|
2213
|
+
{0x00312, acc, "oturnedcomma"},
|
|
2214
|
+
{0x00305, acc, "overbar"},
|
|
2215
|
+
{0x023DE, ord, "overbrace"},
|
|
2216
|
+
{0x023B4, ord, "overbracket"},
|
|
2217
|
+
{0x020D6, acc, "overleftarrow"},
|
|
2218
|
+
{0x020E1, acc, "overleftrightarrow"},
|
|
2219
|
+
{0x00305, acc, "overline"},
|
|
2220
|
+
{0x023DC, ord, "overparen"},
|
|
2221
|
+
{0x020D7, acc, "overrightarrow"},
|
|
2222
|
+
{0x00309, acc, "ovhook"},
|
|
2223
|
+
{0x0220B, rel, "owns"},
|
|
2224
|
+
{0x02225, rel, "parallel"},
|
|
2225
|
+
{0x025B1, ord, "parallelogram"},
|
|
2226
|
+
{0x025B0, ord, "parallelogramblack"},
|
|
2227
|
+
{0x02AF3, rel, "parsim"},
|
|
2228
|
+
{0x02202, ord, "partial"},
|
|
2229
|
+
{0x02AA3, rel, "partialmeetcontraction"},
|
|
2230
|
+
{0x02202, ord, "partialup"},
|
|
2231
|
+
{0x0270E, ord, "pencil"},
|
|
2232
|
+
{0x02B20, ord, "pentagon"},
|
|
2233
|
+
{0x02B1F, ord, "pentagonblack"},
|
|
2234
|
+
{0x00025, ord, "percent"},
|
|
2235
|
+
{0x0002E, ord, "period"},
|
|
2236
|
+
{0x027C2, rel, "perp"},
|
|
2237
|
+
{0x02AE1, ord, "perps"},
|
|
2238
|
+
{0x021F8, rel, "pfun"},
|
|
2239
|
+
{0x003D5, ord, "phi"},
|
|
2240
|
+
{0x003D5, ord, "phiup"},
|
|
2241
|
+
{0x003C0, ord, "pi"},
|
|
2242
|
+
{0x02914, rel, "pinj"},
|
|
2243
|
+
{0x02653, ord, "pisces"},
|
|
2244
|
+
{0x022D4, rel, "pitchfork"},
|
|
2245
|
+
{0x003C0, ord, "piup"},
|
|
2246
|
+
{0x0002B, bin, "plus"},
|
|
2247
|
+
{0x02A25, bin, "plusdot"},
|
|
2248
|
+
{0x02A72, bin, "pluseqq"},
|
|
2249
|
+
{0x02A23, bin, "plushat"},
|
|
2250
|
+
{0x02A26, bin, "plussim"},
|
|
2251
|
+
{0x02A27, bin, "plussubtwo"},
|
|
2252
|
+
{0x02A28, bin, "plustrif"},
|
|
2253
|
+
{0x02647, ord, "pluto"},
|
|
2254
|
+
{0x000B1, bin, "pm"},
|
|
2255
|
+
{0x02A15, opt | N, "pointint"},
|
|
2256
|
+
{0x0261E, ord, "pointright"},
|
|
2257
|
+
{0x03012, ord, "postalmark"},
|
|
2258
|
+
{0x000A3, ord, "pounds"},
|
|
2259
|
+
{0x0227A, rel, "prec"},
|
|
2260
|
+
{0x02AB7, rel, "precapprox"},
|
|
2261
|
+
{0x0227C, rel, "preccurlyeq"},
|
|
2262
|
+
{0x02AAF, rel, "preceq"},
|
|
2263
|
+
{0x02AB3, rel, "preceqq"},
|
|
2264
|
+
{0x02AB9, rel, "precnapprox"},
|
|
2265
|
+
{0x02AB1, rel, "precneq"},
|
|
2266
|
+
{0x02AB5, rel, "precneqq"},
|
|
2267
|
+
{0x022E8, rel, "precnsim"},
|
|
2268
|
+
{0x0227E, rel, "precsim"},
|
|
2269
|
+
{0x02032, ord, "prime"},
|
|
2270
|
+
{0x0220F, opt, "prod"},
|
|
2271
|
+
{0x02312, ord, "profline"},
|
|
2272
|
+
{0x02313, ord, "profsurf"},
|
|
2273
|
+
{0x02A21, opt, "project"},
|
|
2274
|
+
{0x0221D, rel, "propto"},
|
|
2275
|
+
{0x022B0, rel, "prurel"},
|
|
2276
|
+
{0x003C8, ord, "psi"},
|
|
2277
|
+
{0x003C8, ord, "psiup"},
|
|
2278
|
+
{0x02900, rel, "psur"},
|
|
2279
|
+
{0x02900, rel, "psurj"},
|
|
2280
|
+
{0x027D3, rel, "pullback"},
|
|
2281
|
+
{0x027D4, rel, "pushout"},
|
|
2282
|
+
{0x003D9, ord, "qoppa"},
|
|
2283
|
+
{0x02057, ord, "qprime"},
|
|
2284
|
+
{0x02001, ord, "quad"},
|
|
2285
|
+
{0x02669, ord, "quarternote"},
|
|
2286
|
+
{0x0225F, rel, "questeq"},
|
|
2287
|
+
{0x0003F, ord, "question"},
|
|
2288
|
+
{0x027EB, cls, "rAngle"},
|
|
2289
|
+
{0x02984, cls, "rBrace"},
|
|
2290
|
+
{0x027E7, cls, "rBrack"},
|
|
2291
|
+
{0x02986, cls, "rParen"},
|
|
2292
|
+
{0x02622, ord, "radiation"},
|
|
2293
|
+
{0x027EB, cls, "rang"},
|
|
2294
|
+
{0x027E9, cls, "rangle"},
|
|
2295
|
+
{0x02992, cls, "rangledot"},
|
|
2296
|
+
{0x0237C, ord, "rangledownzigzagarrow"},
|
|
2297
|
+
{0x027C6, cls, "rbag"},
|
|
2298
|
+
{0x02998, cls, "rblkbrbrak"},
|
|
2299
|
+
{0x0298A, cls, "rblot"},
|
|
2300
|
+
{0x0007D, cls, "rbrace"},
|
|
2301
|
+
{0x023AD, ord, "rbracelend"},
|
|
2302
|
+
{0x023AC, ord, "rbracemid"},
|
|
2303
|
+
{0x023AB, ord, "rbraceuend"},
|
|
2304
|
+
{0x0005D, cls, "rbrack"},
|
|
2305
|
+
{0x023A5, ord, "rbrackextender"},
|
|
2306
|
+
{0x023A6, ord, "rbracklend"},
|
|
2307
|
+
{0x0298E, cls, "rbracklrtick"},
|
|
2308
|
+
{0x0298C, cls, "rbrackubar"},
|
|
2309
|
+
{0x023A4, ord, "rbrackuend"},
|
|
2310
|
+
{0x02990, cls, "rbrackurtick"},
|
|
2311
|
+
{0x02773, cls, "rbrbrak"},
|
|
2312
|
+
{0x02309, cls, "rceil"},
|
|
2313
|
+
{0x029FD, cls, "rcurvyangle"},
|
|
2314
|
+
{0x0292B, ord, "rdiagovfdiag"},
|
|
2315
|
+
{0x02930, ord, "rdiagovsearrow"},
|
|
2316
|
+
{0x0267B, ord, "recycle"},
|
|
2317
|
+
{0x02194, rel, "rel"},
|
|
2318
|
+
{0x021BE, rel, "restriction"},
|
|
2319
|
+
{0x029A3, ord, "revangle"},
|
|
2320
|
+
{0x029A5, ord, "revangleubar"},
|
|
2321
|
+
{0x029B0, ord, "revemptyset"},
|
|
2322
|
+
{0x021CB, rel, "revequilibrium"},
|
|
2323
|
+
{0x02AEE, rel, "revnmid"},
|
|
2324
|
+
{0x029D2, rel, "rfbowtie"},
|
|
2325
|
+
{0x0230B, cls, "rfloor"},
|
|
2326
|
+
{0x029D5, rel, "rftimes"},
|
|
2327
|
+
{0x027EF, cls, "rgroup"},
|
|
2328
|
+
{0x025B7, bin, "rhd"},
|
|
2329
|
+
{0x003C1, ord, "rho"},
|
|
2330
|
+
{0x003C1, ord, "rhoup"},
|
|
2331
|
+
{0x0221F, ord, "rightangle"},
|
|
2332
|
+
{0x0299D, ord, "rightanglemdot"},
|
|
2333
|
+
{0x0299C, ord, "rightanglesqr"},
|
|
2334
|
+
{0x02192, rel, "rightarrow"},
|
|
2335
|
+
{0x02975, rel, "rightarrowapprox"},
|
|
2336
|
+
{0x02B48, rel, "rightarrowbackapprox"},
|
|
2337
|
+
{0x021E5, rel, "rightarrowbar"},
|
|
2338
|
+
{0x02B4C, rel, "rightarrowbsimilar"},
|
|
2339
|
+
{0x0291E, rel, "rightarrowdiamond"},
|
|
2340
|
+
{0x02B43, rel, "rightarrowgtr"},
|
|
2341
|
+
{0x027F4, rel, "rightarrowonoplus"},
|
|
2342
|
+
{0x02945, rel, "rightarrowplus"},
|
|
2343
|
+
{0x02942, rel, "rightarrowshortleftarrow"},
|
|
2344
|
+
{0x02974, rel, "rightarrowsimilar"},
|
|
2345
|
+
{0x02B44, rel, "rightarrowsupset"},
|
|
2346
|
+
{0x021A3, rel, "rightarrowtail"},
|
|
2347
|
+
{0x021FE, rel, "rightarrowtriangle"},
|
|
2348
|
+
{0x02947, rel, "rightarrowx"},
|
|
2349
|
+
{0x0296C, rel, "rightbarharpoon"},
|
|
2350
|
+
{0x0290D, rel, "rightbkarrow"},
|
|
2351
|
+
{0x02933, rel, "rightcurvedarrow"},
|
|
2352
|
+
{0x021E2, ord, "rightdasharrow"},
|
|
2353
|
+
{0x0291C, rel, "rightdbltail"},
|
|
2354
|
+
{0x02911, rel, "rightdotarrow"},
|
|
2355
|
+
{0x02937, rel, "rightdowncurvedarrow"},
|
|
2356
|
+
{0x0297D, rel, "rightfishtail"},
|
|
2357
|
+
{0x020D1, acc, "rightharpoonaccent"},
|
|
2358
|
+
{0x021C1, rel, "rightharpoondown"},
|
|
2359
|
+
{0x02957, rel, "rightharpoondownbar"},
|
|
2360
|
+
{0x02964, rel, "rightharpoonsupdown"},
|
|
2361
|
+
{0x021C0, rel, "rightharpoonup"},
|
|
2362
|
+
{0x02953, rel, "rightharpoonupbar"},
|
|
2363
|
+
{0x0296C, rel, "rightharpoonupdash"},
|
|
2364
|
+
{0x02970, rel, "rightimply"},
|
|
2365
|
+
{0x021C4, rel, "rightleftarrow"},
|
|
2366
|
+
{0x021C4, rel, "rightleftarrows"},
|
|
2367
|
+
{0x0294B, rel, "rightleftharpoon"},
|
|
2368
|
+
{0x021CC, rel, "rightleftharpoons"},
|
|
2369
|
+
{0x02969, rel, "rightleftharpoonsdown"},
|
|
2370
|
+
{0x02968, rel, "rightleftharpoonsup"},
|
|
2371
|
+
{0x0263D, ord, "rightmoon"},
|
|
2372
|
+
{0x027D6, opt, "rightouterjoin"},
|
|
2373
|
+
{0x02B54, ord, "rightpentagon"},
|
|
2374
|
+
{0x02B53, ord, "rightpentagonblack"},
|
|
2375
|
+
{0x021C9, rel, "rightrightarrows"},
|
|
2376
|
+
{0x02964, rel, "rightrightharpoons"},
|
|
2377
|
+
{0x02AA7, rel, "rightslice"},
|
|
2378
|
+
{0x021DD, rel, "rightsquigarrow"},
|
|
2379
|
+
{0x0291A, rel, "righttail"},
|
|
2380
|
+
{0x021F6, rel, "rightthreearrows"},
|
|
2381
|
+
{0x022CC, bin, "rightthreetimes"},
|
|
2382
|
+
{0x021BB, ord, "rightturn"},
|
|
2383
|
+
{0x0294F, rel, "rightupdownharpoon"},
|
|
2384
|
+
{0x0219D, rel, "rightwavearrow"},
|
|
2385
|
+
{0x021E8, ord, "rightwhitearrow"},
|
|
2386
|
+
{0x02988, cls, "rimg"},
|
|
2387
|
+
{0x0030A, acc, "ring"},
|
|
2388
|
+
{0x02A22, bin, "ringplus"},
|
|
2389
|
+
{0x02253, rel, "risingdotseq"},
|
|
2390
|
+
{0x023B1, ord, "rmoustache"},
|
|
2391
|
+
{0x00029, cls, "rparen"},
|
|
2392
|
+
{0x0239F, ord, "rparenextender"},
|
|
2393
|
+
{0x02994, cls, "rparengtr"},
|
|
2394
|
+
{0x023A0, ord, "rparenlend"},
|
|
2395
|
+
{0x0239E, ord, "rparenuend"},
|
|
2396
|
+
{0x02A12, opt | N, "rppolint"},
|
|
2397
|
+
{0x0298A, cls, "rrangle"},
|
|
2398
|
+
{0x027E7, cls, "rrbracket"},
|
|
2399
|
+
{0x025B7, bin, "rres"},
|
|
2400
|
+
{0x02988, cls, "rrparenthesis"},
|
|
2401
|
+
{0x029F7, bin, "rsolbar"},
|
|
2402
|
+
{0x02ACE, rel, "rsqhook"},
|
|
2403
|
+
{0x02A65, bin, "rsub"},
|
|
2404
|
+
{0x022CA, bin, "rtimes"},
|
|
2405
|
+
{0x029CE, rel, "rtriltri"},
|
|
2406
|
+
{0x029F4, rel, "ruledelayed"},
|
|
2407
|
+
{0x023B9, ord, "rvboxline"},
|
|
2408
|
+
{0x029D9, cls, "rvzigzag"},
|
|
2409
|
+
{0x02639, ord, "sadface"},
|
|
2410
|
+
{0x02650, ord, "sagittarius"},
|
|
2411
|
+
{0x003E1, ord, "sampi"},
|
|
2412
|
+
{0x02143, ord, "sansLmirrored"},
|
|
2413
|
+
{0x02142, ord, "sansLturned"},
|
|
2414
|
+
{0x02644, ord, "saturn"},
|
|
2415
|
+
{0x0264F, ord, "scorpio"},
|
|
2416
|
+
{0x02A13, opt | N, "scpolint"},
|
|
2417
|
+
{0x022B1, rel, "scurel"},
|
|
2418
|
+
{0x02259, rel, "sdef"},
|
|
2419
|
+
{0x02198, rel, "searrow"},
|
|
2420
|
+
{0x02033, ord, "second"},
|
|
2421
|
+
{0x02A1F, opt, "semi"},
|
|
2422
|
+
{0x0003B, puc, "semicolon"},
|
|
2423
|
+
{0x0292D, ord, "seovnearrow"},
|
|
2424
|
+
{0x029F5, bin, "setminus"},
|
|
2425
|
+
{0x0266F, ord, "sharp"},
|
|
2426
|
+
{0x02ADF, rel, "shortdowntack"},
|
|
2427
|
+
{0x02ADE, rel, "shortlefttack"},
|
|
2428
|
+
{0x02944, rel, "shortrightarrowleftarrow"},
|
|
2429
|
+
{0x02AE0, rel, "shortuptack"},
|
|
2430
|
+
{0x029E2, bin, "shuffle"},
|
|
2431
|
+
{0x003C3, ord, "sigma"},
|
|
2432
|
+
{0x003C3, ord, "sigmaup"},
|
|
2433
|
+
{0x0223C, rel, "sim"},
|
|
2434
|
+
{0x02243, rel, "simeq"},
|
|
2435
|
+
{0x02AA0, rel, "simgE"},
|
|
2436
|
+
{0x02A9E, rel, "simgtr"},
|
|
2437
|
+
{0x02B49, rel, "similarleftarrow"},
|
|
2438
|
+
{0x02972, rel, "similarrightarrow"},
|
|
2439
|
+
{0x02A9F, rel, "simlE"},
|
|
2440
|
+
{0x02A9D, rel, "simless"},
|
|
2441
|
+
{0x02A6C, rel, "simminussim"},
|
|
2442
|
+
{0x02246, rel, "simneqq"},
|
|
2443
|
+
{0x02A24, bin, "simplus"},
|
|
2444
|
+
{0x02A6B, rel, "simrdots"},
|
|
2445
|
+
{0x0223F, ord, "sinewave"},
|
|
2446
|
+
{0x0266C, ord, "sixteenthnote"},
|
|
2447
|
+
{0x02620, ord, "skull"},
|
|
2448
|
+
{0x0002F, bin, "slash"},
|
|
2449
|
+
{0x025C2, bin, "smallblacktriangleleft"},
|
|
2450
|
+
{0x025B8, bin, "smallblacktriangleright"},
|
|
2451
|
+
{0x0220A, rel, "smallin"},
|
|
2452
|
+
{0x0220D, rel, "smallni"},
|
|
2453
|
+
{0x02216, bin, "smallsetminus"},
|
|
2454
|
+
{0x025BF, bin, "smalltriangledown"},
|
|
2455
|
+
{0x025C3, bin, "smalltriangleleft"},
|
|
2456
|
+
{0x025B9, bin, "smalltriangleright"},
|
|
2457
|
+
{0x025B5, bin, "smalltriangleup"},
|
|
2458
|
+
{0x02A33, bin, "smashtimes"},
|
|
2459
|
+
{0x02022, bin, "smblkcircle"},
|
|
2460
|
+
{0x02B29, ord, "smblkdiamond"},
|
|
2461
|
+
{0x02B2A, ord, "smblklozenge"},
|
|
2462
|
+
{0x025AA, ord, "smblksquare"},
|
|
2463
|
+
{0x029E4, rel, "smeparsl"},
|
|
2464
|
+
{0x02323, rel, "smile"},
|
|
2465
|
+
{0x0263A, ord, "smileface"},
|
|
2466
|
+
{0x0263A, ord, "smiley"},
|
|
2467
|
+
{0x02AAA, rel, "smt"},
|
|
2468
|
+
{0x02AAC, rel, "smte"},
|
|
2469
|
+
{0x02B52, ord, "smwhitestar"},
|
|
2470
|
+
{0x025E6, ord, "smwhtcircle"},
|
|
2471
|
+
{0x022C4, bin, "smwhtdiamond"},
|
|
2472
|
+
{0x02B2B, ord, "smwhtlozenge"},
|
|
2473
|
+
{0x025AB, ord, "smwhtsquare"},
|
|
2474
|
+
{0x02660, ord, "spadesuit"},
|
|
2475
|
+
{0x000A8, ord, "spddot"},
|
|
2476
|
+
{0x0005E, ord, "sphat"},
|
|
2477
|
+
{0x02222, ord, "sphericalangle"},
|
|
2478
|
+
{0x029A1, ord, "sphericalangleup"},
|
|
2479
|
+
{0x02981, ord, "spot"},
|
|
2480
|
+
{0x0007E, ord, "sptilde"},
|
|
2481
|
+
{0x02293, bin, "sqcap"},
|
|
2482
|
+
{0x02294, bin, "sqcup"},
|
|
2483
|
+
{0x02A16, opt | N, "sqint"},
|
|
2484
|
+
{0x02311, ord, "sqlozenge"},
|
|
2485
|
+
{0x02A16, opt | N, "sqrint"},
|
|
2486
|
+
{0x0221A, ord, "sqrt"},
|
|
2487
|
+
{0x023B7, ord, "sqrtbottom"},
|
|
2488
|
+
{0x0228F, rel, "sqsubset"},
|
|
2489
|
+
{0x02291, rel, "sqsubseteq"},
|
|
2490
|
+
{0x022E4, rel, "sqsubsetneq"},
|
|
2491
|
+
{0x02290, rel, "sqsupset"},
|
|
2492
|
+
{0x02292, rel, "sqsupseteq"},
|
|
2493
|
+
{0x022E5, rel, "sqsupsetneq"},
|
|
2494
|
+
{0x025FB, ord, "square"},
|
|
2495
|
+
{0x02B13, ord, "squarebotblack"},
|
|
2496
|
+
{0x025A9, ord, "squarecrossfill"},
|
|
2497
|
+
{0x025A4, ord, "squarehfill"},
|
|
2498
|
+
{0x025A6, ord, "squarehvfill"},
|
|
2499
|
+
{0x025E7, ord, "squareleftblack"},
|
|
2500
|
+
{0x02B15, ord, "squarellblack"},
|
|
2501
|
+
{0x025F1, ord, "squarellquad"},
|
|
2502
|
+
{0x025EA, ord, "squarelrblack"},
|
|
2503
|
+
{0x025F2, ord, "squarelrquad"},
|
|
2504
|
+
{0x025A8, ord, "squareneswfill"},
|
|
2505
|
+
{0x025A7, ord, "squarenwsefill"},
|
|
2506
|
+
{0x025E8, ord, "squarerightblack"},
|
|
2507
|
+
{0x02B12, ord, "squaretopblack"},
|
|
2508
|
+
{0x025E9, ord, "squareulblack"},
|
|
2509
|
+
{0x025F0, ord, "squareulquad"},
|
|
2510
|
+
{0x02B14, ord, "squareurblack"},
|
|
2511
|
+
{0x025F3, ord, "squareurquad"},
|
|
2512
|
+
{0x025A5, ord, "squarevfill"},
|
|
2513
|
+
{0x025A2, ord, "squoval"},
|
|
2514
|
+
{0x02AFD, bin, "sslash"},
|
|
2515
|
+
{0x022C6, bin, "star"},
|
|
2516
|
+
{0x0225B, rel, "stareq"},
|
|
2517
|
+
{0x02615, ord, "steaming"},
|
|
2518
|
+
{0x000A3, ord, "sterling"},
|
|
2519
|
+
{0x003DB, ord, "stigma"},
|
|
2520
|
+
{0x0297C, rel, "strictfi"},
|
|
2521
|
+
{0x0297D, rel, "strictif"},
|
|
2522
|
+
{0x023E4, ord, "strns"},
|
|
2523
|
+
{0x02AC3, rel, "subedot"},
|
|
2524
|
+
{0x02AC1, rel, "submult"},
|
|
2525
|
+
{0x02979, rel, "subrarr"},
|
|
2526
|
+
{0x02282, rel, "subset"},
|
|
2527
|
+
{0x02AC9, rel, "subsetapprox"},
|
|
2528
|
+
{0x027C3, ord, "subsetcirc"},
|
|
2529
|
+
{0x02ABD, rel, "subsetdot"},
|
|
2530
|
+
{0x02286, rel, "subseteq"},
|
|
2531
|
+
{0x02AC5, rel, "subseteqq"},
|
|
2532
|
+
{0x0228A, rel, "subsetneq"},
|
|
2533
|
+
{0x02ACB, rel, "subsetneqq"},
|
|
2534
|
+
{0x02ABF, rel, "subsetplus"},
|
|
2535
|
+
{0x02AC7, rel, "subsim"},
|
|
2536
|
+
{0x02AD5, rel, "subsub"},
|
|
2537
|
+
{0x02AD3, rel, "subsup"},
|
|
2538
|
+
{0x0227B, rel, "succ"},
|
|
2539
|
+
{0x02AB8, rel, "succapprox"},
|
|
2540
|
+
{0x0227D, rel, "succcurlyeq"},
|
|
2541
|
+
{0x02AB0, rel, "succeq"},
|
|
2542
|
+
{0x02AB4, rel, "succeqq"},
|
|
2543
|
+
{0x02ABA, rel, "succnapprox"},
|
|
2544
|
+
{0x02AB2, rel, "succneq"},
|
|
2545
|
+
{0x02AB6, rel, "succneqq"},
|
|
2546
|
+
{0x022E9, rel, "succnsim"},
|
|
2547
|
+
{0x0227F, rel, "succsim"},
|
|
2548
|
+
{0x02211, opt, "sum"},
|
|
2549
|
+
{0x023B3, ord, "sumbottom"},
|
|
2550
|
+
{0x02A0B, opt | N, "sumint"},
|
|
2551
|
+
{0x023B2, ord, "sumtop"},
|
|
2552
|
+
{0x0263C, ord, "sun"},
|
|
2553
|
+
{0x02AD8, rel, "supdsub"},
|
|
2554
|
+
{0x02AC4, rel, "supedot"},
|
|
2555
|
+
{0x027C9, rel, "suphsol"},
|
|
2556
|
+
{0x02AD7, rel, "suphsub"},
|
|
2557
|
+
{0x0297B, rel, "suplarr"},
|
|
2558
|
+
{0x02AC2, rel, "supmult"},
|
|
2559
|
+
{0x02283, rel, "supset"},
|
|
2560
|
+
{0x02ACA, rel, "supsetapprox"},
|
|
2561
|
+
{0x027C4, ord, "supsetcirc"},
|
|
2562
|
+
{0x02ABE, rel, "supsetdot"},
|
|
2563
|
+
{0x02287, rel, "supseteq"},
|
|
2564
|
+
{0x02AC6, rel, "supseteqq"},
|
|
2565
|
+
{0x0228B, rel, "supsetneq"},
|
|
2566
|
+
{0x02ACC, rel, "supsetneqq"},
|
|
2567
|
+
{0x02AC0, rel, "supsetplus"},
|
|
2568
|
+
{0x02AC8, rel, "supsim"},
|
|
2569
|
+
{0x02AD4, rel, "supsub"},
|
|
2570
|
+
{0x02AD6, rel, "supsup"},
|
|
2571
|
+
{0x021A0, rel, "surj"},
|
|
2572
|
+
{0x02199, rel, "swarrow"},
|
|
2573
|
+
{0x02694, ord, "swords"},
|
|
2574
|
+
{0x02AFE, bin, "talloblong"},
|
|
2575
|
+
{0x003C4, ord, "tau"},
|
|
2576
|
+
{0x02649, ord, "taurus"},
|
|
2577
|
+
{0x003C4, ord, "tauup"},
|
|
2578
|
+
{0x000B5, ord, "tcmu"},
|
|
2579
|
+
{0x02126, ord, "tcohm"},
|
|
2580
|
+
{0x02192, rel, "tfun"},
|
|
2581
|
+
{0x02234, ord, "therefore"},
|
|
2582
|
+
{0x029E7, ord, "thermod"},
|
|
2583
|
+
{0x003B8, ord, "theta"},
|
|
2584
|
+
{0x003B8, ord, "thetaup"},
|
|
2585
|
+
{0x02034, ord, "third"},
|
|
2586
|
+
{0x027C0, ord, "threedangle"},
|
|
2587
|
+
{0x02AF6, bin, "threedotcolon"},
|
|
2588
|
+
{0x020E8, acc, "threeunderdot"},
|
|
2589
|
+
{0x02040, bin, "tieconcat"},
|
|
2590
|
+
{0x029DD, ord, "tieinfty"},
|
|
2591
|
+
{0x00303, acc, "tilde"},
|
|
2592
|
+
{0x000D7, bin, "times"},
|
|
2593
|
+
{0x02A31, bin, "timesbar"},
|
|
2594
|
+
{0x021A3, rel, "tinj"},
|
|
2595
|
+
{0x029FF, bin, "tminus"},
|
|
2596
|
+
{0x02192, rel, "to"},
|
|
2597
|
+
{0x02928, rel, "toea"},
|
|
2598
|
+
{0x02927, rel, "tona"},
|
|
2599
|
+
{0x022A4, ord, "top"},
|
|
2600
|
+
{0x02336, ord, "topbot"},
|
|
2601
|
+
{0x02AF1, ord, "topcir"},
|
|
2602
|
+
{0x02ADA, rel, "topfork"},
|
|
2603
|
+
{0x025E0, ord, "topsemicircle"},
|
|
2604
|
+
{0x02929, rel, "tosa"},
|
|
2605
|
+
{0x0292A, rel, "towa"},
|
|
2606
|
+
{0x029FE, bin, "tplus"},
|
|
2607
|
+
{0x023E2, ord, "trapezium"},
|
|
2608
|
+
{0x025B3, bin, "triangle"},
|
|
2609
|
+
{0x025EC, ord, "trianglecdot"},
|
|
2610
|
+
{0x025BF, bin, "triangledown"},
|
|
2611
|
+
{0x025C1, bin, "triangleleft"},
|
|
2612
|
+
{0x025ED, ord, "triangleleftblack"},
|
|
2613
|
+
{0x022B4, rel, "trianglelefteq"},
|
|
2614
|
+
{0x02A3A, bin, "triangleminus"},
|
|
2615
|
+
{0x029CA, ord, "triangleodot"},
|
|
2616
|
+
{0x02A39, bin, "triangleplus"},
|
|
2617
|
+
{0x0225C, rel, "triangleq"},
|
|
2618
|
+
{0x025B7, bin, "triangleright"},
|
|
2619
|
+
{0x025EE, ord, "trianglerightblack"},
|
|
2620
|
+
{0x022B5, rel, "trianglerighteq"},
|
|
2621
|
+
{0x029CC, ord, "triangles"},
|
|
2622
|
+
{0x029CD, bin, "triangleserifs"},
|
|
2623
|
+
{0x02A3B, bin, "triangletimes"},
|
|
2624
|
+
{0x029CB, ord, "triangleubar"},
|
|
2625
|
+
{0x029FB, bin, "tripleplus"},
|
|
2626
|
+
{0x02034, ord, "trprime"},
|
|
2627
|
+
{0x02AFB, bin, "trslash"},
|
|
2628
|
+
{0x021A0, rel, "tsur"},
|
|
2629
|
+
{0x029A2, ord, "turnangle"},
|
|
2630
|
+
{0x02129, ord, "turnediota"},
|
|
2631
|
+
{0x02319, ord, "turnednot"},
|
|
2632
|
+
{0x02A4B, bin, "twocaps"},
|
|
2633
|
+
{0x02A4A, bin, "twocups"},
|
|
2634
|
+
{0x021A1, rel, "twoheaddownarrow"},
|
|
2635
|
+
{0x0219E, rel, "twoheadleftarrow"},
|
|
2636
|
+
{0x02B3B, rel, "twoheadleftarrowtail"},
|
|
2637
|
+
{0x02B37, rel, "twoheadleftdbkarrow"},
|
|
2638
|
+
{0x02B36, rel, "twoheadmapsfrom"},
|
|
2639
|
+
{0x02905, rel, "twoheadmapsto"},
|
|
2640
|
+
{0x021A0, rel, "twoheadrightarrow"},
|
|
2641
|
+
{0x02916, rel, "twoheadrightarrowtail"},
|
|
2642
|
+
{0x0219F, rel, "twoheaduparrow"},
|
|
2643
|
+
{0x02949, rel, "twoheaduparrowcircle"},
|
|
2644
|
+
{0x02017, ord, "twolowline"},
|
|
2645
|
+
{0x0266B, ord, "twonotes"},
|
|
2646
|
+
{0x02982, bin, "typecolon"},
|
|
2647
|
+
{0x023E1, ord, "ubrbrak"},
|
|
2648
|
+
{0x025DC, ord, "ularc"},
|
|
2649
|
+
{0x025E4, ord, "ulblacktriangle"},
|
|
2650
|
+
{0x0231C, opn, "ulcorner"},
|
|
2651
|
+
{0x025F8, ord, "ultriangle"},
|
|
2652
|
+
{0x02A41, bin, "uminus"},
|
|
2653
|
+
{0x00331, acc, "underbar"},
|
|
2654
|
+
{0x023DF, ord, "underbrace"},
|
|
2655
|
+
{0x023B5, ord, "underbracket"},
|
|
2656
|
+
{0x020EE, acc, "underleftarrow"},
|
|
2657
|
+
{0x020ED, acc, "underleftharpoondown"},
|
|
2658
|
+
{0x0034D, acc, "underleftrightarrow"},
|
|
2659
|
+
{0x00332, acc, "underline"},
|
|
2660
|
+
{0x023DD, ord, "underparen"},
|
|
2661
|
+
{0x020EF, acc, "underrightarrow"},
|
|
2662
|
+
{0x020EC, acc, "underrightharpoondown"},
|
|
2663
|
+
{0x022EF, ord, "unicodecdots"},
|
|
2664
|
+
{0x02026, ord, "unicodeellipsis"},
|
|
2665
|
+
{0x022B4, rel, "unlhd"},
|
|
2666
|
+
{0x022B5, rel, "unrhd"},
|
|
2667
|
+
{0x00391, ord | F, "upAlpha"},
|
|
2668
|
+
{0x00392, ord | F, "upBeta"},
|
|
2669
|
+
{0x003A7, ord | F, "upChi"},
|
|
2670
|
+
{0x00394, ord | F, "upDelta"},
|
|
2671
|
+
{0x003DC, ord | F, "upDigamma"},
|
|
2672
|
+
{0x00395, ord | F, "upEpsilon"},
|
|
2673
|
+
{0x00397, ord | F, "upEta"},
|
|
2674
|
+
{0x00393, ord | F, "upGamma"},
|
|
2675
|
+
{0x00399, ord | F, "upIota"},
|
|
2676
|
+
{0x0039A, ord | F, "upKappa"},
|
|
2677
|
+
{0x003DE, ord | F, "upKoppa"},
|
|
2678
|
+
{0x0039B, ord | F, "upLambda"},
|
|
2679
|
+
{0x0039C, ord | F, "upMu"},
|
|
2680
|
+
{0x0039D, ord | F, "upNu"},
|
|
2681
|
+
{0x003A9, ord | F, "upOmega"},
|
|
2682
|
+
{0x0039F, ord | F, "upOmicron"},
|
|
2683
|
+
{0x003A6, ord | F, "upPhi"},
|
|
2684
|
+
{0x003A0, ord | F, "upPi"},
|
|
2685
|
+
{0x003A8, ord | F, "upPsi"},
|
|
2686
|
+
{0x003A1, ord | F, "upRho"},
|
|
2687
|
+
{0x003E0, ord | F, "upSampi"},
|
|
2688
|
+
{0x003A3, ord | F, "upSigma"},
|
|
2689
|
+
{0x003DA, ord | F, "upStigma"},
|
|
2690
|
+
{0x003A4, ord | F, "upTau"},
|
|
2691
|
+
{0x00398, ord | F, "upTheta"},
|
|
2692
|
+
{0x003A5, ord | F, "upUpsilon"},
|
|
2693
|
+
{0x0039E, ord | F, "upXi"},
|
|
2694
|
+
{0x00396, ord | F, "upZeta"},
|
|
2695
|
+
{0x003B1, ord | F, "upalpha"},
|
|
2696
|
+
{0x0214B, bin, "upand"},
|
|
2697
|
+
{0x02191, rel, "uparrow"},
|
|
2698
|
+
{0x02909, rel, "uparrowbarred"},
|
|
2699
|
+
{0x021C5, rel, "uparrowdownarrow"},
|
|
2700
|
+
{0x029BD, ord, "uparrowoncircle"},
|
|
2701
|
+
{0x003F6, ord | F, "upbackepsilon"},
|
|
2702
|
+
{0x003B2, ord | F, "upbeta"},
|
|
2703
|
+
{0x003C7, ord | F, "upchi"},
|
|
2704
|
+
{0x021E1, ord, "updasharrow"},
|
|
2705
|
+
{0x003B4, ord | F, "updelta"},
|
|
2706
|
+
{0x003DD, ord | F, "updigamma"},
|
|
2707
|
+
{0x02195, rel, "updownarrow"},
|
|
2708
|
+
{0x021A8, ord, "updownarrowbar"},
|
|
2709
|
+
{0x021C5, rel, "updownarrows"},
|
|
2710
|
+
{0x02951, rel, "updownharpoonleftleft"},
|
|
2711
|
+
{0x0294D, rel, "updownharpoonleftright"},
|
|
2712
|
+
{0x0294C, rel, "updownharpoonrightleft"},
|
|
2713
|
+
{0x0294F, rel, "updownharpoonrightright"},
|
|
2714
|
+
{0x0296E, rel, "updownharpoons"},
|
|
2715
|
+
{0x0296E, rel, "updownharpoonsleftright"},
|
|
2716
|
+
{0x003B5, ord | F, "upepsilon"},
|
|
2717
|
+
{0x0296E, rel | F, "upequilibrium"},
|
|
2718
|
+
{0x003B7, ord | F, "upeta"},
|
|
2719
|
+
{0x0297E, rel, "upfishtail"},
|
|
2720
|
+
{0x003B3, ord | F, "upgamma"},
|
|
2721
|
+
{0x021BF, rel, "upharpoonleft"},
|
|
2722
|
+
{0x02960, rel, "upharpoonleftbar"},
|
|
2723
|
+
{0x021C3, rel, "upharpoonleftdown"},
|
|
2724
|
+
{0x021BF, rel, "upharpoonleftup"},
|
|
2725
|
+
{0x021BE, rel, "upharpoonright"},
|
|
2726
|
+
{0x0295C, rel, "upharpoonrightbar"},
|
|
2727
|
+
{0x021C2, rel, "upharpoonrightdown"},
|
|
2728
|
+
{0x021BE, rel, "upharpoonrightup"},
|
|
2729
|
+
{0x02963, rel, "upharpoonsleftright"},
|
|
2730
|
+
{0x027D2, rel, "upin"},
|
|
2731
|
+
{0x02A1B, opt | N, "upint"},
|
|
2732
|
+
{0x003B9, ord | F, "upiota"},
|
|
2733
|
+
{0x003BA, ord | F, "upkappa"},
|
|
2734
|
+
{0x003DF, ord | F, "upkoppa"},
|
|
2735
|
+
{0x003BB, ord | F, "uplambda"},
|
|
2736
|
+
{0x0228E, bin | F, "uplus"},
|
|
2737
|
+
{0x003BC, ord | F, "upmu"},
|
|
2738
|
+
{0x003BD, ord | F, "upnu"},
|
|
2739
|
+
{0x003D8, ord | F, "upoldKoppa"},
|
|
2740
|
+
{0x003D9, ord | F, "upoldkoppa"},
|
|
2741
|
+
{0x003C9, ord | F, "upomega"},
|
|
2742
|
+
{0x003BF, ord | F, "upomicron"},
|
|
2743
|
+
{0x003D5, ord | F, "upphi"},
|
|
2744
|
+
{0x003C0, ord | F, "uppi"},
|
|
2745
|
+
{0x003C8, ord | F, "uppsi"},
|
|
2746
|
+
{0x0296F, rel | F, "uprevequilibrium"},
|
|
2747
|
+
{0x003C1, ord | F, "uprho"},
|
|
2748
|
+
{0x02934, ord, "uprightcurvearrow"},
|
|
2749
|
+
{0x003E1, ord | F, "upsampi"},
|
|
2750
|
+
{0x003C3, ord | F, "upsigma"},
|
|
2751
|
+
{0x003C5, ord, "upsilon"},
|
|
2752
|
+
{0x003C5, ord | F, "upsilonup"},
|
|
2753
|
+
{0x003DB, ord | F, "upstigma"},
|
|
2754
|
+
{0x003C4, ord | F, "uptau"},
|
|
2755
|
+
{0x003B8, ord | F, "uptheta"},
|
|
2756
|
+
{0x021C8, rel | F, "upuparrows"},
|
|
2757
|
+
{0x02963, rel | F, "upupharpoons"},
|
|
2758
|
+
{0x003C5, ord | F, "upupsilon"},
|
|
2759
|
+
{0x003F4, ord | F, "upvarTheta"},
|
|
2760
|
+
{0x003D0, ord | F, "upvarbeta"},
|
|
2761
|
+
{0x003F5, ord | F, "upvarepsilon"},
|
|
2762
|
+
{0x003F0, ord | F, "upvarkappa"},
|
|
2763
|
+
{0x003C6, ord | F, "upvarphi"},
|
|
2764
|
+
{0x003D6, ord | F, "upvarpi"},
|
|
2765
|
+
{0x003F1, ord | F, "upvarrho"},
|
|
2766
|
+
{0x003C2, ord | F, "upvarsigma"},
|
|
2767
|
+
{0x003D1, ord | F, "upvartheta"},
|
|
2768
|
+
{0x021E7, ord | F, "upwhitearrow"},
|
|
2769
|
+
{0x003BE, ord | F, "upxi"},
|
|
2770
|
+
{0x003B6, ord | F, "upzeta"},
|
|
2771
|
+
{0x02645, ord, "uranus"},
|
|
2772
|
+
{0x025DD, ord, "urarc"},
|
|
2773
|
+
{0x025E5, ord, "urblacktriangle"},
|
|
2774
|
+
{0x0231D, cls, "urcorner"},
|
|
2775
|
+
{0x025F9, ord, "urtriangle"},
|
|
2776
|
+
{0x00330, acc, "utilde"},
|
|
2777
|
+
{0x02AE8, rel, "vBar"},
|
|
2778
|
+
{0x02AE9, rel, "vBarv"},
|
|
2779
|
+
{0x022A8, rel, "vDash"},
|
|
2780
|
+
{0x02AE2, rel, "vDdash"},
|
|
2781
|
+
{0x1D6E5, ord, "varDelta"},
|
|
2782
|
+
{0x02641, ord, "varEarth"},
|
|
2783
|
+
{0x1D6E4, ord, "varGamma"},
|
|
2784
|
+
{0x1D6EC, ord, "varLambda"},
|
|
2785
|
+
{0x1D6FA, ord, "varOmega"},
|
|
2786
|
+
{0x1D6F7, ord, "varPhi"},
|
|
2787
|
+
{0x1D6F1, ord, "varPi"},
|
|
2788
|
+
{0x1D6F9, ord, "varPsi"},
|
|
2789
|
+
{0x1D6F4, ord, "varSigma"},
|
|
2790
|
+
{0x1D6E9, ord, "varTheta"},
|
|
2791
|
+
{0x1D6F6, ord, "varUpsilon"},
|
|
2792
|
+
{0x02AE6, rel, "varVdash"},
|
|
2793
|
+
{0x1D6EF, ord, "varXi"},
|
|
2794
|
+
{0x02305, bin, "varbarwedge"},
|
|
2795
|
+
{0x003D0, ord, "varbeta"},
|
|
2796
|
+
{0x023CE, ord, "varcarriagereturn"},
|
|
2797
|
+
{0x02667, ord, "varclub"},
|
|
2798
|
+
{0x02667, ord, "varclubsuit"},
|
|
2799
|
+
{0x02666, ord, "vardiamond"},
|
|
2800
|
+
{0x02666, ord, "vardiamondsuit"},
|
|
2801
|
+
{0x02306, bin, "vardoublebarwedge"},
|
|
2802
|
+
{0x003B5, ord, "varepsilon"},
|
|
2803
|
+
{0x003B5, ord, "varepsilonup"},
|
|
2804
|
+
{0x02665, ord, "varheart"},
|
|
2805
|
+
{0x02665, ord, "varheartsuit"},
|
|
2806
|
+
{0x02B21, ord, "varhexagon"},
|
|
2807
|
+
{0x02B22, ord, "varhexagonblack"},
|
|
2808
|
+
{0x0232C, ord, "varhexagonlrbonds"},
|
|
2809
|
+
{0x022F6, rel, "varisinobar"},
|
|
2810
|
+
{0x022F3, rel, "varisins"},
|
|
2811
|
+
{0x003F0, ord, "varkappa"},
|
|
2812
|
+
{0x022BF, ord, "varlrtriangle"},
|
|
2813
|
+
{0x022FD, rel, "varniobar"},
|
|
2814
|
+
{0x022FB, rel, "varnis"},
|
|
2815
|
+
{0x02300, ord, "varnothing"},
|
|
2816
|
+
{0x02232, opt | N, "varointclockwise"},
|
|
2817
|
+
{0x003C6, ord, "varphi"},
|
|
2818
|
+
{0x003C6, ord, "varphiup"},
|
|
2819
|
+
{0x003D6, ord, "varpi"},
|
|
2820
|
+
{0x003D6, ord, "varpiup"},
|
|
2821
|
+
{0x02A09, opt, "varprod"},
|
|
2822
|
+
{0x003F1, ord, "varrho"},
|
|
2823
|
+
{0x003F1, ord, "varrhoup"},
|
|
2824
|
+
{0x0225C, rel, "varsdef"},
|
|
2825
|
+
{0x003C2, ord, "varsigma"},
|
|
2826
|
+
{0x003C2, ord, "varsigmaup"},
|
|
2827
|
+
{0x02664, ord, "varspade"},
|
|
2828
|
+
{0x02664, ord, "varspadesuit"},
|
|
2829
|
+
{0x02736, ord, "varstar"},
|
|
2830
|
+
{0x0228A, rel, "varsubsetneq"},
|
|
2831
|
+
{0x003D1, ord, "vartheta"},
|
|
2832
|
+
{0x003D1, ord, "varthetaup"},
|
|
2833
|
+
{0x025B5, bin, "vartriangle"},
|
|
2834
|
+
{0x022B2, rel, "vartriangleleft"},
|
|
2835
|
+
{0x022B3, rel, "vartriangleright"},
|
|
2836
|
+
{0x02A61, bin, "varveebar"},
|
|
2837
|
+
{0x023AA, ord, "vbraceextender"},
|
|
2838
|
+
{0x029D0, rel, "vbrtri"},
|
|
2839
|
+
{0x022A2, rel, "vdash"},
|
|
2840
|
+
{0x022EE, rel, "vdots"},
|
|
2841
|
+
{0x020D1, acc, "vec"},
|
|
2842
|
+
{0x02A2F, bin, "vectimes"},
|
|
2843
|
+
{0x02228, bin, "vee"},
|
|
2844
|
+
{0x022BB, bin, "veebar"},
|
|
2845
|
+
{0x027C7, bin, "veedot"},
|
|
2846
|
+
{0x02A63, bin, "veedoublebar"},
|
|
2847
|
+
{0x0225A, rel, "veeeq"},
|
|
2848
|
+
{0x02A5B, bin, "veemidvert"},
|
|
2849
|
+
{0x02A52, bin, "veeodot"},
|
|
2850
|
+
{0x02A56, bin, "veeonvee"},
|
|
2851
|
+
{0x02A59, rel, "veeonwedge"},
|
|
2852
|
+
{0x0007C, ord, "vert"},
|
|
2853
|
+
{0x020D2, acc, "vertoverlay"},
|
|
2854
|
+
{0x02317, ord, "viewdata"},
|
|
2855
|
+
{0x0264D, ord, "virgo"},
|
|
2856
|
+
{0x027DD, rel, "vlongdash"},
|
|
2857
|
+
{0x025AF, ord, "vrectangle"},
|
|
2858
|
+
{0x025AE, ord, "vrectangleblack"},
|
|
2859
|
+
{0x02219, bin, "vysmblkcircle"},
|
|
2860
|
+
{0x02B1D, ord, "vysmblksquare"},
|
|
2861
|
+
{0x02218, bin, "vysmwhtcircle"},
|
|
2862
|
+
{0x02B1E, ord, "vysmwhtsquare"},
|
|
2863
|
+
{0x0299A, ord, "vzigzag"},
|
|
2864
|
+
{0x026A0, ord, "warning"},
|
|
2865
|
+
{0x02311, ord, "wasylozenge"},
|
|
2866
|
+
{0x02234, ord, "wasytherefore"},
|
|
2867
|
+
{0x02227, bin, "wedge"},
|
|
2868
|
+
{0x02A5F, bin, "wedgebar"},
|
|
2869
|
+
{0x027D1, bin, "wedgedot"},
|
|
2870
|
+
{0x02A60, bin, "wedgedoublebar"},
|
|
2871
|
+
{0x02A5A, bin, "wedgemidvert"},
|
|
2872
|
+
{0x02A51, bin, "wedgeodot"},
|
|
2873
|
+
{0x02A55, bin, "wedgeonwedge"},
|
|
2874
|
+
{0x02259, rel, "wedgeq"},
|
|
2875
|
+
{0x021EA, ord, "whitearrowupfrombar"},
|
|
2876
|
+
{0x027C1, ord, "whiteinwhitetriangle"},
|
|
2877
|
+
{0x025C5, ord, "whitepointerleft"},
|
|
2878
|
+
{0x025BB, ord, "whitepointerright"},
|
|
2879
|
+
{0x027E4, bin, "whitesquaretickleft"},
|
|
2880
|
+
{0x027E5, bin, "whitesquaretickright"},
|
|
2881
|
+
{0x02B2D, ord, "whthorzoval"},
|
|
2882
|
+
{0x02B2F, ord, "whtvertoval"},
|
|
2883
|
+
{0x029A6, ord, "wideangledown"},
|
|
2884
|
+
{0x029A7, ord, "wideangleup"},
|
|
2885
|
+
{0x020E9, acc, "widebridgeabove"},
|
|
2886
|
+
{0x023DC, ord, "wideparen"},
|
|
2887
|
+
{0x00330, acc, "wideutilde"},
|
|
2888
|
+
{0x02118, ord, "wp"},
|
|
2889
|
+
{0x02240, bin, "wr"},
|
|
2890
|
+
{0x029F9, opt, "xbsol"},
|
|
2891
|
+
{0x003BE, ord, "xi"},
|
|
2892
|
+
{0x003BE, ord, "xiup"},
|
|
2893
|
+
{0x029F8, opt, "xsol"},
|
|
2894
|
+
{0x000A5, ord, "yen"},
|
|
2895
|
+
{0x0262F, ord, "yinyang"},
|
|
2896
|
+
{0x02A1F, opt, "zcmp"},
|
|
2897
|
+
{0x003B6, ord, "zeta"},
|
|
2898
|
+
{0x003B6, ord, "zetaup"},
|
|
2899
|
+
{0x029F9, opt, "zhide"},
|
|
2900
|
+
{0x02A20, opt, "zpipe"},
|
|
2901
|
+
{0x02A21, opt, "zproject"},
|
|
2902
|
+
{0x0007B, opn, "{"},
|
|
2903
|
+
{0x0007c, ord, "|"},
|
|
2904
|
+
{0x0007D, cls, "}"},
|
|
2905
|
+
};
|
|
2906
|
+
// clang-format on
|
|
2907
|
+
|
|
2908
|
+
const i32 _count = sizeof(_symbols) / sizeof(Symbol);
|
|
2909
|
+
|
|
2910
|
+
const Symbol* Symbol::get(const char* name) {
|
|
2911
|
+
const int i = binIndexOf(_count, [&](int i) { return strcmp(name, _symbols[i].name); });
|
|
2912
|
+
if (i < 0) return nullptr;
|
|
2913
|
+
return _symbols + i;
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2916
|
+
AtomType Symbol::type() const {
|
|
2917
|
+
return static_cast<AtomType>(flag >> 8);
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
LimitsType Symbol::limitsType() const {
|
|
2921
|
+
if (type() != AtomType::bigOperator) return LimitsType::noLimits;
|
|
2922
|
+
return flag & 0x00000002 ? LimitsType::noLimits : LimitsType::normal;
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2925
|
+
bool Symbol::isVariable() const {
|
|
2926
|
+
return flag & 0x00000001;
|
|
2927
|
+
}
|
|
2928
|
+
|
|
2929
|
+
} // namespace microtex
|