react-native-ui-lib 8.0.1 โ 8.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/jestSetup/jest-setup.js +154 -0
- package/lib/components/DynamicFonts/FontDownloader.d.js +1 -0
- package/lib/components/DynamicFonts/FontLoader.d.js +1 -0
- package/lib/components/DynamicFonts/NoPermissionsAcquirer.d.js +1 -0
- package/lib/components/DynamicFonts/PermissionsAcquirer.android.d.js +1 -0
- package/lib/components/DynamicFonts/PermissionsAcquirer.ios.d.js +2 -0
- package/lib/components/DynamicFonts/PermissionsAcquirer.web.d.js +2 -0
- package/lib/components/DynamicFonts/RNFSPackage.d.js +1 -0
- package/lib/components/DynamicFonts/index.d.js +3 -0
- package/lib/components/HighlighterOverlayView/index.d.js +1 -0
- package/lib/components/HighlighterOverlayView/index.web.d.js +1 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardView.android.d.js +2 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardView.ios.d.js +2 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardViewBase.d.js +2 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/index.d.js +1 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/index.web.d.js +1 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager/index.d.js +1 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardRegistry/index.d.js +5 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardUtils/index.d.js +1 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/TextInputKeyboardManager/TextInputKeyboardManager.android.d.js +1 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/TextInputKeyboardManager/TextInputKeyboardManager.ios.d.js +1 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/TextInputKeyboardManager/index.d.js +1 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/index.d.js +7 -0
- package/lib/components/Keyboard/KeyboardAwareInsetsView/index.d.js +1 -0
- package/lib/components/Keyboard/KeyboardTrackingView/KeyboardTrackingView.android.d.js +1 -0
- package/lib/components/Keyboard/KeyboardTrackingView/KeyboardTrackingView.ios.d.js +10 -0
- package/lib/components/Keyboard/KeyboardTrackingView/index.d.js +1 -0
- package/lib/components/Keyboard/KeyboardTrackingView/index.web.d.js +1 -0
- package/lib/components/Keyboard/index.d.js +4 -0
- package/lib/components/SafeArea/SafeAreaInsetsManager.d.js +1 -0
- package/lib/components/SafeArea/SafeAreaSpacerView.d.js +1 -0
- package/lib/components/SafeArea/SafeAreaSpacerView.web.d.js +1 -0
- package/lib/components/SafeArea/index.d.js +1 -0
- package/lib/components/index.d.js +6 -0
- package/lib/scripts/releaseNative.js +72 -0
- package/lib/specs/HighlighterViewNativeComponent.d.js +1 -0
- package/lib/specs/HighlighterViewNativeComponent.d.ts +61 -0
- package/lib/specs/HighlighterViewNativeComponent.js +8 -0
- package/lib/specs/KeyboardTrackingViewNativeComponent.d.js +1 -0
- package/lib/specs/KeyboardTrackingViewNativeComponent.d.ts +58 -0
- package/lib/specs/KeyboardTrackingViewNativeComponent.js +8 -0
- package/package.json +7 -31
- package/scripts/build/build.js +35 -0
- package/scripts/build/buildPackages/buildComponentsPackages.js +18 -0
- package/scripts/build/buildPackages/buildCustomPackages.js +106 -0
- package/scripts/build/buildPackages/index.js +6 -0
- package/scripts/createCalendarMockData.js +37 -0
- package/scripts/docs/buildDocs.js +1 -0
- package/scripts/prepush.js +71 -0
- package/scripts/release/prReleaseNotes.js +6 -0
- package/scripts/release/release.js +99 -0
- package/scripts/updateWebAssets.js +88 -0
- package/scripts/utils.js +21 -0
- package/src/assets/__tests__/Assets.spec.js +110 -0
- package/src/commons/__tests__/baseComponent.spec.js +36 -0
- package/src/commons/__tests__/constants.spec.js +202 -0
- package/src/commons/__tests__/modifiers.spec.js +453 -0
- package/src/components/WheelPicker/__tests__/index.spec.js +121 -0
- package/src/components/WheelPicker/__tests__/useListMiddleIndex.spec.js +40 -0
- package/src/components/WheelPicker/__tests__/usePresenter.spec.js +87 -0
- package/src/components/avatar/__tests__/index.spec.js +25 -0
- package/src/components/badge/__tests__/index.spec.js +84 -0
- package/src/components/button/__tests__/index.driver.spec.js +209 -0
- package/src/components/button/__tests__/index.spec.js +287 -0
- package/src/components/button/index.js +30 -8
- package/src/components/card/__tests__/CardPresenter.spec.js +35 -0
- package/src/components/carousel/__tests__/CarouselPresenter.spec.js +52 -0
- package/src/components/carousel/__tests__/index.spec.js +89 -0
- package/src/components/carousel/index.js +2 -1
- package/src/components/checkbox/__tests__/index.spec.js +357 -0
- package/src/components/chip/__tests__/index.spec.js +63 -0
- package/src/components/colorSwatch/index.js +1 -1
- package/src/components/connectionStatusBar/__tests__/index.spec.js +41 -0
- package/src/components/dateTimePicker/__tests__/index.spec.js +44 -0
- package/src/components/dialog/__tests__/index.new.spec.js +118 -0
- package/src/components/featureHighlight/__tests__/index.spec.js +76 -0
- package/src/components/floatingButton/__tests__/index.spec.js +229 -0
- package/src/components/floatingButton/index.js +66 -35
- package/src/components/hint/__tests__/index.spec.js +108 -0
- package/src/components/image/__tests__/index.spec.js +56 -0
- package/src/components/image/image.api.json +193 -1
- package/src/components/maskedInput/__tests__/maskedInput.new.spec.js +19 -0
- package/src/components/maskedInput/__tests__/maskedInput.old.spec.js +20 -0
- package/src/components/modal/__tests__/index.spec.js +58 -0
- package/src/components/numberInput/__tests__/Presenter.spec.js +374 -0
- package/src/components/numberInput/__tests__/index.spec.js +38 -0
- package/src/components/numberInput/numberInput.api.json +131 -6
- package/src/components/overlay/index.js +2 -1
- package/src/components/pageControl/pageControl.api.json +175 -1
- package/src/components/panView/__tests__/panningUtil.spec.js +693 -0
- package/src/components/picker/__tests__/PickerPresenter.spec.js +15 -0
- package/src/components/picker/__tests__/index.spec.js +364 -0
- package/src/components/picker/helpers/__tests__/usePickerLabel.spec.js +96 -0
- package/src/components/radioButton/__tests__/index.spec.js +43 -0
- package/src/components/radioGroup/__tests__/index.spec.js +96 -0
- package/src/components/sectionsWheelPicker/__tests__/index.spec.js +35 -0
- package/src/components/sectionsWheelPicker/__tests__/mockSections.js +28 -0
- package/src/components/segmentedControl/__tests__/index.spec.js +25 -0
- package/src/components/slider/__tests__/index.spec.js +35 -0
- package/src/components/slider/index.js +12 -1
- package/src/components/slider/slider.api.json +11 -0
- package/src/components/sortableGridList/__tests__/index.spec.js +51 -0
- package/src/components/sortableGridList/__tests__/usePresenter.spec.js +231 -0
- package/src/components/sortableGridList/sortableGridList.api.json +44 -1
- package/src/components/sortableList/SortableList.api.json +51 -3
- package/src/components/sortableList/__tests__/index.spec.js +105 -0
- package/src/components/stackAggregator/assets/arrow-down.png +0 -0
- package/src/components/stackAggregator/assets/arrow-down@2x.png +0 -0
- package/src/components/stackAggregator/assets/arrow-down@3x.png +0 -0
- package/src/components/switch/__tests__/index.spec.js +96 -0
- package/src/components/text/__tests__/index.driver.spec.js +124 -0
- package/src/components/text/__tests__/index.spec.js +245 -0
- package/src/components/textField/__tests__/Presenter.spec.js +240 -0
- package/src/components/textField/__tests__/index.driver.spec.js +639 -0
- package/src/components/timeline/__tests__/driver.index.spec.js +133 -0
- package/src/helpers/__tests__/AvatarHelper.spec.js +170 -0
- package/src/hooks/useDidUpdate/__tests__/useDidUpdate.spec.js +80 -0
- package/src/hooks/useOrientation/__tests__/useOrientation.spec.js +70 -0
- package/src/hooks/useToggleValue/__tests__/useToggleValue.spec.js +89 -0
- package/src/incubator/calendar/__tests__/DateUtils.spec.js +367 -0
- package/src/incubator/expandableOverlay/__tests__/index.spec.js +114 -0
- package/src/incubator/gradient/__tests__/useAngleTransform.spec.js +126 -0
- package/src/incubator/slider/__tests__/SliderPresenter.spec.js +43 -0
- package/src/incubator/slider/__tests__/index.spec.js +34 -0
- package/src/incubator/slider/slider.api.json +11 -0
- package/src/incubator/toast/__tests__/index.spec.js +64 -0
- package/src/style/__tests__/colors.spec.js +313 -0
- package/src/style/__tests__/scheme.spec.js +119 -0
- package/src/style/typographyPresets.js +26 -23
- package/src/utils/__tests__/Playground.perf.js +14 -0
- package/src/utils/__tests__/imageUtils.spec.js +54 -0
- package/src/utils/__tests__/textUtils.spec.js +446 -0
- package/.eslintrc.js +0 -56
- package/babel.config.js +0 -35
- package/index.js +0 -10
- package/lib/android/build.gradle +0 -32
- package/lib/android/src/main/AndroidManifest.xml +0 -4
- package/lib/android/src/main/java/com/wix/reactnativeuilib/UiLibPackageList.java +0 -28
- package/lib/android/src/main/java/com/wix/reactnativeuilib/dynamicfont/DynamicFontModule.java +0 -139
- package/lib/android/src/main/java/com/wix/reactnativeuilib/dynamicfont/DynamicFontPackage.java +0 -28
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlightFrame.java +0 -33
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlightViewTagParams.java +0 -50
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterView.java +0 -167
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterViewManager.java +0 -131
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterViewPackage.java +0 -28
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/UiUtils.java +0 -50
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/AppContextHolder.java +0 -52
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardLayout.java +0 -213
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardRootView.java +0 -39
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardRootViewManager.java +0 -29
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/CustomKeyboardRootViewShadow.java +0 -29
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/KeyboardInputModule.java +0 -34
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/KeyboardInputPackage.java +0 -49
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/ReactContextHolder.java +0 -16
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/ReactScreenMonitor.java +0 -83
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/ReactSoftKeyboardMonitor.java +0 -163
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/PredicateFunc.java +0 -5
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/RuntimeUtils.java +0 -33
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/ViewUtils.java +0 -65
- package/lib/android/src/main/java/com/wix/reactnativeuilib/utils/LogForwarder.java +0 -45
- package/lib/android/src/main/res/layout/wheel_picker.xml +0 -9
- package/lib/android/src/main/res/values/colors.xml +0 -9
- package/lib/android/src/main/res/values/styles.xml +0 -9
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardRegistry/keyboardRegistry.api.json +0 -50
- package/lib/components/Keyboard/KeyboardAccessoryView/keyboardAccessoryView.api.json +0 -58
- package/lib/components/Keyboard/KeyboardAwareInsetsView/keyboardAwareInsetsView.api.json +0 -14
- package/lib/components/Keyboard/KeyboardTrackingView/keyboardTrackingView.api.json +0 -86
- package/lib/ios/reactnativeuilib/dynamicfont/DynamicFont.h +0 -9
- package/lib/ios/reactnativeuilib/dynamicfont/DynamicFont.m +0 -115
- package/lib/ios/reactnativeuilib/highlighterview/HighlighterView.h +0 -19
- package/lib/ios/reactnativeuilib/highlighterview/HighlighterView.m +0 -216
- package/lib/ios/reactnativeuilib/highlighterview/HighlighterViewManager.h +0 -6
- package/lib/ios/reactnativeuilib/highlighterview/HighlighterViewManager.m +0 -28
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/Color+Interpolation.h +0 -39
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/Color+Interpolation.m +0 -160
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNAnimatorTemp.h +0 -36
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNAnimatorTemp.m +0 -121
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNInterpolable.h +0 -48
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNInterpolable.m +0 -27
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/LNInterpolation.h +0 -16
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/NSValue+Interpolation.h +0 -19
- package/lib/ios/reactnativeuilib/keyboardinput/lninterpolation/NSValue+Interpolation.mm +0 -155
- package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomInputControllerTemp.h +0 -16
- package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomInputControllerTemp.m +0 -450
- package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomKeyboardViewControllerTemp.h +0 -18
- package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomKeyboardViewControllerTemp.m +0 -99
- package/lib/ios/reactnativeuilib/keyboardtrackingview/KeyboardTrackingViewTempManager.h +0 -14
- package/lib/ios/reactnativeuilib/keyboardtrackingview/KeyboardTrackingViewTempManager.m +0 -827
- package/lib/ios/reactnativeuilib/keyboardtrackingview/ObservingInputAccessoryViewTemp.h +0 -44
- package/lib/ios/reactnativeuilib/keyboardtrackingview/ObservingInputAccessoryViewTemp.m +0 -171
- package/lib/ios/reactnativeuilib/keyboardtrackingview/UIResponder+FirstResponderTemp.h +0 -6
- package/lib/ios/reactnativeuilib/keyboardtrackingview/UIResponder+FirstResponderTemp.m +0 -17
- package/lib/ios/reactnativeuilib/safearea/SafeAreaManager.h +0 -6
- package/lib/ios/reactnativeuilib/safearea/SafeAreaManager.m +0 -105
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerShadowView.h +0 -5
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerShadowView.m +0 -20
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerView.h +0 -7
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerView.m +0 -76
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewLocalData.h +0 -9
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewLocalData.m +0 -14
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewManager.h +0 -5
- package/lib/ios/reactnativeuilib/safearea/SafeAreaSpacerViewManager.m +0 -26
- package/lib/ios/reactnativeuilib.xcodeproj/project.pbxproj +0 -435
- package/metro.config.js +0 -23
- package/src/.babelrc.json +0 -23
- package/src/assets/Assets.d.ts +0 -5
- package/src/assets/emojis/index.d.ts +0 -1343
- package/src/assets/index.d.ts +0 -3
- package/src/assets/internal/index.d.ts +0 -4
- package/src/commons/Config.d.ts +0 -24
- package/src/commons/Constants.d.ts +0 -54
- package/src/commons/UIComponent.d.ts +0 -4
- package/src/commons/asBaseComponent.d.ts +0 -15
- package/src/commons/baseComponent.d.ts +0 -2
- package/src/commons/forwardRef.d.ts +0 -8
- package/src/commons/modifiers.d.ts +0 -118
- package/src/commons/new.d.ts +0 -8
- package/src/commons/withScrollEnabler.d.ts +0 -13
- package/src/commons/withScrollReached.d.ts +0 -35
- package/src/components/WheelPicker/Item.d.ts +0 -28
- package/src/components/WheelPicker/WheelPicker.driver.d.ts +0 -18
- package/src/components/WheelPicker/WheelPickerItem.driver.d.ts +0 -8
- package/src/components/WheelPicker/helpers/useListMiddleIndex.d.ts +0 -6
- package/src/components/WheelPicker/index.d.ts +0 -88
- package/src/components/WheelPicker/types.d.ts +0 -6
- package/src/components/WheelPicker/usePresenter.d.ts +0 -21
- package/src/components/actionBar/index.d.ts +0 -35
- package/src/components/actionSheet/index.d.ts +0 -80
- package/src/components/animatedImage/index.d.ts +0 -28
- package/src/components/avatar/index.d.ts +0 -382
- package/src/components/badge/index.d.ts +0 -879
- package/src/components/baseInput/Validators.d.ts +0 -8
- package/src/components/baseInput/index.d.ts +0 -29
- package/src/components/button/Button.driver.new.d.ts +0 -34
- package/src/components/button/ButtonConstants.d.ts +0 -26
- package/src/components/button/index.d.ts +0 -572
- package/src/components/button/types.d.ts +0 -153
- package/src/components/card/CardContext.d.ts +0 -3
- package/src/components/card/CardImage.d.ts +0 -20
- package/src/components/card/CardPresenter.d.ts +0 -12
- package/src/components/card/CardSection.d.ts +0 -79
- package/src/components/card/asCardChild.d.ts +0 -6
- package/src/components/card/index.d.ts +0 -120
- package/src/components/carousel/Carousel.driver.new.d.ts +0 -9
- package/src/components/carousel/CarouselPresenter.d.ts +0 -9
- package/src/components/carousel/index.d.ts +0 -73
- package/src/components/carousel/types.d.ts +0 -107
- package/src/components/checkbox/Checkbox.driver.d.ts +0 -15
- package/src/components/checkbox/index.d.ts +0 -129
- package/src/components/chip/chip.driver.d.ts +0 -33
- package/src/components/chip/index.d.ts +0 -209
- package/src/components/chipsInput/index.d.ts +0 -55
- package/src/components/colorPalette/index.d.ts +0 -116
- package/src/components/colorPicker/ColorPickerDialog.d.ts +0 -39
- package/src/components/colorPicker/ColorPickerDialogHeader.d.ts +0 -9
- package/src/components/colorPicker/ColorPickerDialogSliders.d.ts +0 -10
- package/src/components/colorPicker/ColorPickerPresenter.d.ts +0 -16
- package/src/components/colorPicker/ColorPickerPreview.d.ts +0 -12
- package/src/components/colorPicker/index.d.ts +0 -45
- package/src/components/colorSwatch/index.d.ts +0 -50
- package/src/components/connectionStatusBar/index.d.ts +0 -33
- package/src/components/connectionStatusBar/types.d.ts +0 -28
- package/src/components/dash/index.d.ts +0 -19
- package/src/components/dateTimePicker/DateTimePicker.driver.d.ts +0 -7
- package/src/components/dateTimePicker/index.d.ts +0 -288
- package/src/components/dateTimePicker/useOldApi.d.ts +0 -27
- package/src/components/dialog/Dialog.driver.new.d.ts +0 -6
- package/src/components/dialog/DialogHeader.d.ts +0 -4
- package/src/components/dialog/index.d.ts +0 -15
- package/src/components/dialog/types.d.ts +0 -138
- package/src/components/dialog/useDialogContent.d.ts +0 -13
- package/src/components/drawer/Swipeable.d.ts +0 -94
- package/src/components/drawer/index.d.ts +0 -161
- package/src/components/expandableSection/index.d.ts +0 -40
- package/src/components/fadedScrollView/index.d.ts +0 -59
- package/src/components/fader/index.d.ts +0 -37
- package/src/components/featureHighlight/index.d.ts +0 -147
- package/src/components/floatingButton/index.d.ts +0 -85
- package/src/components/gradient/index.d.ts +0 -19
- package/src/components/gridList/index.d.ts +0 -5
- package/src/components/gridList/types.d.ts +0 -29
- package/src/components/gridList/useGridLayout.d.ts +0 -15
- package/src/components/gridListItem/index.d.ts +0 -132
- package/src/components/gridView/index.d.ts +0 -80
- package/src/components/hint/Hint.driver.d.ts +0 -6
- package/src/components/hint/Hint.driver.new.d.ts +0 -19
- package/src/components/hint/HintAnchor.d.ts +0 -13
- package/src/components/hint/HintBubble.d.ts +0 -12
- package/src/components/hint/HintMockChildren.d.ts +0 -8
- package/src/components/hint/HintOld.d.ts +0 -196
- package/src/components/hint/hooks/useHintAccessibility.d.ts +0 -10
- package/src/components/hint/hooks/useHintLayout.d.ts +0 -13
- package/src/components/hint/hooks/useHintPosition.d.ts +0 -29
- package/src/components/hint/hooks/useHintVisibility.d.ts +0 -6
- package/src/components/hint/index.d.ts +0 -14
- package/src/components/hint/types.d.ts +0 -106
- package/src/components/icon/index.d.ts +0 -97
- package/src/components/image/Image.driver.d.ts +0 -4
- package/src/components/image/Image.driver.new.d.ts +0 -2
- package/src/components/image/index.d.ts +0 -192
- package/src/components/listItem/ListItemPart.d.ts +0 -15
- package/src/components/listItem/index.d.ts +0 -52
- package/src/components/listItem/types.d.ts +0 -60
- package/src/components/loaderScreen/index.d.ts +0 -13
- package/src/components/loaderScreen/types.d.ts +0 -32
- package/src/components/marquee/index.d.ts +0 -5
- package/src/components/marquee/types.d.ts +0 -35
- package/src/components/maskedInput/index.d.ts +0 -5
- package/src/components/maskedInput/new.d.ts +0 -22
- package/src/components/modal/Modal.driver.new.d.ts +0 -8
- package/src/components/modal/TopBar.d.ts +0 -89
- package/src/components/modal/index.d.ts +0 -64
- package/src/components/numberInput/NumberInput.driver.d.ts +0 -6
- package/src/components/numberInput/Presenter.d.ts +0 -21
- package/src/components/numberInput/index.d.ts +0 -57
- package/src/components/overlay/index.d.ts +0 -68
- package/src/components/pageControl/index.d.ts +0 -56
- package/src/components/panView/index.d.ts +0 -21
- package/src/components/panView/panningUtil.d.ts +0 -38
- package/src/components/panView/usePanGesture.d.ts +0 -49
- package/src/components/picker/Picker.driver.new.d.ts +0 -44
- package/src/components/picker/PickerContext.d.ts +0 -4
- package/src/components/picker/PickerItem.d.ts +0 -11
- package/src/components/picker/PickerItemsList.d.ts +0 -4
- package/src/components/picker/PickerPresenter.d.ts +0 -7
- package/src/components/picker/PickerSelectionStatusBar.d.ts +0 -3
- package/src/components/picker/helpers/useFieldType.d.ts +0 -373
- package/src/components/picker/helpers/useImperativePickerHandle.d.ts +0 -5
- package/src/components/picker/helpers/useNewPickerProps.d.ts +0 -3
- package/src/components/picker/helpers/usePickerLabel.d.ts +0 -17
- package/src/components/picker/helpers/usePickerMigrationWarnings.d.ts +0 -4
- package/src/components/picker/helpers/usePickerSearch.d.ts +0 -9
- package/src/components/picker/helpers/usePickerSelection.d.ts +0 -16
- package/src/components/picker/index.d.ts +0 -15
- package/src/components/picker/types.d.ts +0 -321
- package/src/components/pieChart/PieSegment.d.ts +0 -34
- package/src/components/pieChart/index.d.ts +0 -15
- package/src/components/progressBar/index.d.ts +0 -65
- package/src/components/progressiveImage/index.d.ts +0 -23
- package/src/components/radioButton/RadioButton.driver.d.ts +0 -9
- package/src/components/radioButton/index.d.ts +0 -121
- package/src/components/radioGroup/RadioGroup.driver.d.ts +0 -13
- package/src/components/radioGroup/RadioGroupContext.d.ts +0 -14
- package/src/components/radioGroup/asRadioGroupChild.d.ts +0 -2
- package/src/components/radioGroup/index.d.ts +0 -47
- package/src/components/scrollBar/index.d.ts +0 -88
- package/src/components/searchInput/index.d.ts +0 -37
- package/src/components/searchInput/types.d.ts +0 -66
- package/src/components/sectionsWheelPicker/SectionsWheelPicker.driver.d.ts +0 -25
- package/src/components/sectionsWheelPicker/index.d.ts +0 -43
- package/src/components/segmentedControl/index.d.ts +0 -90
- package/src/components/segmentedControl/segment.d.ts +0 -111
- package/src/components/segmentedControl/useSegmentedControlPreset.d.ts +0 -10
- package/src/components/skeletonView/index.d.ts +0 -163
- package/src/components/slider/ColorSliderGroup.d.ts +0 -13
- package/src/components/slider/GradientSlider.d.ts +0 -20
- package/src/components/slider/SliderContext.d.ts +0 -8
- package/src/components/slider/Thumb.d.ts +0 -32
- package/src/components/slider/index.d.ts +0 -31
- package/src/components/slider/slider.driver.d.ts +0 -5
- package/src/components/slider/types.d.ts +0 -197
- package/src/components/sortableGridList/SortableItem.d.ts +0 -6
- package/src/components/sortableGridList/index.d.ts +0 -5
- package/src/components/sortableGridList/types.d.ts +0 -34
- package/src/components/sortableGridList/usePresenter.d.ts +0 -21
- package/src/components/sortableList/SortableList.driver.new.d.ts +0 -2
- package/src/components/sortableList/SortableListContext.d.ts +0 -19
- package/src/components/sortableList/SortableListItem.d.ts +0 -8
- package/src/components/sortableList/SortableListItem.driver.new.d.ts +0 -11
- package/src/components/sortableList/index.d.ts +0 -5
- package/src/components/sortableList/types.d.ts +0 -48
- package/src/components/sortableList/usePresenter.d.ts +0 -12
- package/src/components/stackAggregator/index.d.ts +0 -89
- package/src/components/stateScreen/index.d.ts +0 -5
- package/src/components/stateScreen/types.d.ts +0 -30
- package/src/components/stepper/index.d.ts +0 -47
- package/src/components/svgImage/index.d.ts +0 -14
- package/src/components/svgImage/index.web.d.ts +0 -18
- package/src/components/switch/index.d.ts +0 -102
- package/src/components/switch/switch.driver.d.ts +0 -18
- package/src/components/tabController/PageCarousel.d.ts +0 -9
- package/src/components/tabController/TabBar.d.ts +0 -97
- package/src/components/tabController/TabBarContext.d.ts +0 -18
- package/src/components/tabController/TabBarItem.d.ts +0 -105
- package/src/components/tabController/TabPage.d.ts +0 -33
- package/src/components/tabController/index.d.ts +0 -48
- package/src/components/tabController/useImperativeTabControllerHandle.d.ts +0 -6
- package/src/components/tabController/useScrollToItem.d.ts +0 -79
- package/src/components/text/Text.driver.d.ts +0 -7
- package/src/components/text/Text.driver.new.d.ts +0 -17
- package/src/components/text/index.d.ts +0 -195
- package/src/components/textField/CharCounter.d.ts +0 -7
- package/src/components/textField/ClearButton.d.ts +0 -4
- package/src/components/textField/FieldContext.d.ts +0 -4
- package/src/components/textField/FloatingPlaceholder.d.ts +0 -7
- package/src/components/textField/Input.d.ts +0 -8
- package/src/components/textField/Label.d.ts +0 -7
- package/src/components/textField/Presenter.d.ts +0 -7
- package/src/components/textField/TextField.driver.new.d.ts +0 -129
- package/src/components/textField/ValidationMessage.d.ts +0 -7
- package/src/components/textField/index.d.ts +0 -114
- package/src/components/textField/presets/outline.d.ts +0 -737
- package/src/components/textField/presets/underline.d.ts +0 -735
- package/src/components/textField/textInput/index.d.ts +0 -1
- package/src/components/textField/textInput/index.web.d.ts +0 -3
- package/src/components/textField/types.d.ts +0 -287
- package/src/components/textField/useFieldState.d.ts +0 -16
- package/src/components/textField/useImperativeInputHandle.d.ts +0 -4
- package/src/components/textField/usePreset.d.ts +0 -1696
- package/src/components/textField/validators.d.ts +0 -9
- package/src/components/textFieldOld/index.d.ts +0 -71
- package/src/components/timeline/Line.d.ts +0 -10
- package/src/components/timeline/Point.d.ts +0 -9
- package/src/components/timeline/index.d.ts +0 -11
- package/src/components/timeline/line.driver.d.ts +0 -10
- package/src/components/timeline/point.driver.d.ts +0 -8
- package/src/components/timeline/timeline.driver.d.ts +0 -25
- package/src/components/timeline/types.d.ts +0 -50
- package/src/components/touchableOpacity/index.d.ts +0 -50
- package/src/components/view/View.driver.new.d.ts +0 -7
- package/src/components/view/index.d.ts +0 -46
- package/src/components/wizard/WizardStates.d.ts +0 -2
- package/src/components/wizard/WizardStep.d.ts +0 -4
- package/src/components/wizard/index.d.ts +0 -31
- package/src/components/wizard/types.d.ts +0 -90
- package/src/helpers/AvatarHelper.d.ts +0 -9
- package/src/helpers/FormattingPresenter.d.ts +0 -6
- package/src/helpers/Profiler.d.ts +0 -22
- package/src/helpers/index.d.ts +0 -3
- package/src/hooks/index.d.ts +0 -14
- package/src/hooks/useCombinedRefs/index.d.ts +0 -3
- package/src/hooks/useDebounce/index.d.ts +0 -5
- package/src/hooks/useDidUpdate/index.d.ts +0 -6
- package/src/hooks/useHiddenLocation/index.d.ts +0 -13
- package/src/hooks/useHiddenLocation/index.web.d.ts +0 -13
- package/src/hooks/useKeyboardHeight/index.d.ts +0 -5
- package/src/hooks/useMeasure/index.d.ts +0 -15
- package/src/hooks/useModifiers/index.d.ts +0 -3
- package/src/hooks/useOrientation/index.d.ts +0 -7
- package/src/hooks/useScrollEnabler/index.d.ts +0 -23
- package/src/hooks/useScrollReached/index.d.ts +0 -28
- package/src/hooks/useScrollTo/index.d.ts +0 -37
- package/src/hooks/useScrollToItem/index.d.ts +0 -65
- package/src/hooks/useThemeProps/index.d.ts +0 -2
- package/src/hooks/useToggleValue/index.d.ts +0 -2
- package/src/incubator/TouchableOpacity.d.ts +0 -52
- package/src/incubator/calendar/Agenda.d.ts +0 -4
- package/src/incubator/calendar/CalendarContext.d.ts +0 -4
- package/src/incubator/calendar/CalendarItem.d.ts +0 -5
- package/src/incubator/calendar/Day.d.ts +0 -4
- package/src/incubator/calendar/Day_OLD.d.ts +0 -4
- package/src/incubator/calendar/Header.d.ts +0 -4
- package/src/incubator/calendar/Month.d.ts +0 -4
- package/src/incubator/calendar/TodayButton.d.ts +0 -4
- package/src/incubator/calendar/Week.d.ts +0 -4
- package/src/incubator/calendar/WeekDaysNames.d.ts +0 -4
- package/src/incubator/calendar/helpers/CalendarProcessor.d.ts +0 -2
- package/src/incubator/calendar/helpers/DataProcessor.d.ts +0 -2
- package/src/incubator/calendar/helpers/DateUtils.d.ts +0 -23
- package/src/incubator/calendar/index.d.ts +0 -7
- package/src/incubator/calendar/types.d.ts +0 -118
- package/src/incubator/expandableOverlay/ExpandableOverlay.driver.d.ts +0 -7
- package/src/incubator/expandableOverlay/index.d.ts +0 -83
- package/src/incubator/gradient/BorderGradient.d.ts +0 -4
- package/src/incubator/gradient/CircleGradient.d.ts +0 -4
- package/src/incubator/gradient/RectangleGradient.d.ts +0 -4
- package/src/incubator/gradient/index.d.ts +0 -5
- package/src/incubator/gradient/types.d.ts +0 -26
- package/src/incubator/gradient/useAngleTransform.d.ts +0 -27
- package/src/incubator/index.d.ts +0 -9
- package/src/incubator/slider/Slider.driver.d.ts +0 -5
- package/src/incubator/slider/SliderPresenter.d.ts +0 -6
- package/src/incubator/slider/Thumb.d.ts +0 -24
- package/src/incubator/slider/Track.d.ts +0 -13
- package/src/incubator/slider/index.d.ts +0 -139
- package/src/incubator/toast/Toast.driver.new.d.ts +0 -54
- package/src/incubator/toast/helpers/useToastAnimation.d.ts +0 -22
- package/src/incubator/toast/helpers/useToastPresets.d.ts +0 -8
- package/src/incubator/toast/helpers/useToastTimer.d.ts +0 -6
- package/src/incubator/toast/index.d.ts +0 -9
- package/src/incubator/toast/types.d.ts +0 -111
- package/src/index.d.ts +0 -92
- package/src/optionalDependencies/BlurViewPackage.d.ts +0 -2
- package/src/optionalDependencies/BlurViewPackage.web.d.ts +0 -2
- package/src/optionalDependencies/DateTimePickerPackage.d.ts +0 -2
- package/src/optionalDependencies/FlashListPackage.d.ts +0 -2
- package/src/optionalDependencies/HapticFeedbackPackage.d.ts +0 -2
- package/src/optionalDependencies/LinearGradientPackage.d.ts +0 -2
- package/src/optionalDependencies/MomentPackage.d.ts +0 -2
- package/src/optionalDependencies/NetInfoPackage.d.ts +0 -2
- package/src/optionalDependencies/PostCssPackage.d.ts +0 -5
- package/src/optionalDependencies/ShimmerPackage.d.ts +0 -2
- package/src/optionalDependencies/SvgPackage.d.ts +0 -3
- package/src/optionalDependencies/index.d.ts +0 -9
- package/src/optionalDependencies/index.web.d.ts +0 -7
- package/src/services/HapticService.d.ts +0 -15
- package/src/services/LogService.d.ts +0 -35
- package/src/services/index.d.ts +0 -2
- package/src/style/borderRadiuses.d.ts +0 -30
- package/src/style/colorName.d.ts +0 -8
- package/src/style/colorNameMap.d.ts +0 -2
- package/src/style/colors.d.ts +0 -274
- package/src/style/colorsPalette.d.ts +0 -101
- package/src/style/components.d.ts +0 -15
- package/src/style/componentsColors.d.ts +0 -5
- package/src/style/designTokens.d.ts +0 -69
- package/src/style/designTokensDM.d.ts +0 -69
- package/src/style/dividers.d.ts +0 -11
- package/src/style/index.d.ts +0 -13
- package/src/style/scheme.d.ts +0 -57
- package/src/style/shadows.d.ts +0 -223
- package/src/style/spacings.d.ts +0 -32
- package/src/style/themeManager.d.ts +0 -22
- package/src/style/typography.d.ts +0 -26
- package/src/style/typographyPresets.d.ts +0 -7
- package/src/testkit/Component.driver.d.ts +0 -30
- package/src/testkit/DriverException.d.ts +0 -12
- package/src/testkit/UniDriver.d.ts +0 -29
- package/src/testkit/drivers/TestingLibraryDriver.d.ts +0 -26
- package/src/testkit/index.d.ts +0 -25
- package/src/testkit/new/Component.driver.d.ts +0 -16
- package/src/testkit/new/useDraggable.driver.d.ts +0 -15
- package/src/testkit/new/usePressable.driver.d.ts +0 -14
- package/src/testkit/new/useScrollable.driver.d.ts +0 -13
- package/src/typings/assets.d.ts +0 -52
- package/src/typings/common.d.ts +0 -12
- package/src/typings/module.d.ts +0 -13
- package/src/typings/recorderTypes.d.ts +0 -13
- package/src/uilib-test-renderer/helper.d.ts +0 -8
- package/src/uilib-test-renderer/index.d.ts +0 -4
- package/src/uilib-test-renderer/scrollViewHelper.d.ts +0 -9
- package/src/utils/dateUtils.d.ts +0 -2
- package/src/utils/imageUtils.d.ts +0 -5
- package/src/utils/index.d.ts +0 -4
- package/src/utils/styleUtils.d.ts +0 -7
- package/src/utils/textUtils.d.ts +0 -8
- /package/{src โ scripts/build}/.babelrc.exports.js +0 -0
|
@@ -1,1343 +0,0 @@
|
|
|
1
|
-
export declare const emojis: {
|
|
2
|
-
readonly "100": "๐ฏ";
|
|
3
|
-
readonly "1234": "๐ข";
|
|
4
|
-
readonly interrobang: "โ๏ธ";
|
|
5
|
-
readonly tm: "โข๏ธ";
|
|
6
|
-
readonly information_source: "โน๏ธ";
|
|
7
|
-
readonly left_right_arrow: "โ๏ธ";
|
|
8
|
-
readonly arrow_up_down: "โ๏ธ";
|
|
9
|
-
readonly arrow_upper_left: "โ๏ธ";
|
|
10
|
-
readonly arrow_upper_right: "โ๏ธ";
|
|
11
|
-
readonly arrow_lower_right: "โ๏ธ";
|
|
12
|
-
readonly arrow_lower_left: "โ๏ธ";
|
|
13
|
-
readonly keyboard: "โจ";
|
|
14
|
-
readonly sunny: "โ๏ธ";
|
|
15
|
-
readonly cloud: "โ๏ธ";
|
|
16
|
-
readonly umbrella: "โ๏ธ";
|
|
17
|
-
readonly showman: "โ";
|
|
18
|
-
readonly comet: "โ";
|
|
19
|
-
readonly ballot_box_with_check: "โ๏ธ";
|
|
20
|
-
readonly coffee: "โ๏ธ";
|
|
21
|
-
readonly shamrock: "โ";
|
|
22
|
-
readonly skull_and_crossbones: "โ ";
|
|
23
|
-
readonly radioactive_sign: "โข";
|
|
24
|
-
readonly biohazard_sign: "โฃ";
|
|
25
|
-
readonly orthodox_cross: "โฆ";
|
|
26
|
-
readonly wheel_of_dharma: "โธ";
|
|
27
|
-
readonly white_frowning_face: "โน";
|
|
28
|
-
readonly aries: "โ๏ธ";
|
|
29
|
-
readonly taurus: "โ๏ธ";
|
|
30
|
-
readonly sagittarius: "โ๏ธ";
|
|
31
|
-
readonly capricorn: "โ๏ธ";
|
|
32
|
-
readonly aquarius: "โ๏ธ";
|
|
33
|
-
readonly pisces: "โ๏ธ";
|
|
34
|
-
readonly spades: "โ ๏ธ";
|
|
35
|
-
readonly clubs: "โฃ๏ธ";
|
|
36
|
-
readonly hearts: "โฅ๏ธ";
|
|
37
|
-
readonly diamonds: "โฆ๏ธ";
|
|
38
|
-
readonly hotsprings: "โจ๏ธ";
|
|
39
|
-
readonly hammer_and_pick: "โ";
|
|
40
|
-
readonly anchor: "โ๏ธ";
|
|
41
|
-
readonly crossed_swords: "โ";
|
|
42
|
-
readonly scales: "โ";
|
|
43
|
-
readonly alembic: "โ";
|
|
44
|
-
readonly gear: "โ";
|
|
45
|
-
readonly scissors: "โ๏ธ";
|
|
46
|
-
readonly white_check_mark: "โ
";
|
|
47
|
-
readonly airplane: "โ๏ธ";
|
|
48
|
-
readonly email: "โ๏ธ";
|
|
49
|
-
readonly envelope: "โ๏ธ";
|
|
50
|
-
readonly black_nib: "โ๏ธ";
|
|
51
|
-
readonly heavy_check_mark: "โ๏ธ";
|
|
52
|
-
readonly heavy_multiplication_x: "โ๏ธ";
|
|
53
|
-
readonly star_of_david: "โก";
|
|
54
|
-
readonly sparkles: "โจ";
|
|
55
|
-
readonly eight_spoked_asterisk: "โณ๏ธ";
|
|
56
|
-
readonly eight_pointed_black_star: "โด๏ธ";
|
|
57
|
-
readonly snowflake: "โ๏ธ";
|
|
58
|
-
readonly sparkle: "โ๏ธ";
|
|
59
|
-
readonly question: "โ";
|
|
60
|
-
readonly grey_question: "โ";
|
|
61
|
-
readonly grey_exclamation: "โ";
|
|
62
|
-
readonly exclamation: "โ๏ธ";
|
|
63
|
-
readonly heavy_exclamation_mark: "โ๏ธ";
|
|
64
|
-
readonly heavy_heart_exclamation_mark_ornament: "โฃ";
|
|
65
|
-
readonly heart: "โค๏ธ";
|
|
66
|
-
readonly heavy_plus_sign: "โ";
|
|
67
|
-
readonly heavy_minus_sign: "โ";
|
|
68
|
-
readonly heavy_division_sign: "โ";
|
|
69
|
-
readonly arrow_heading_up: "โคด๏ธ";
|
|
70
|
-
readonly arrow_heading_down: "โคต๏ธ";
|
|
71
|
-
readonly wavy_dash: "ใฐ๏ธ";
|
|
72
|
-
readonly congratulations: "ใ๏ธ";
|
|
73
|
-
readonly secret: "ใ๏ธ";
|
|
74
|
-
readonly copyright: "ยฉ๏ธ";
|
|
75
|
-
readonly registered: "ยฎ๏ธ";
|
|
76
|
-
readonly bangbang: "โผ๏ธ";
|
|
77
|
-
readonly leftwards_arrow_with_hook: "โฉ๏ธ";
|
|
78
|
-
readonly arrow_right_hook: "โช๏ธ";
|
|
79
|
-
readonly watch: "โ๏ธ";
|
|
80
|
-
readonly hourglass: "โ๏ธ";
|
|
81
|
-
readonly fast_forward: "โฉ";
|
|
82
|
-
readonly rewind: "โช";
|
|
83
|
-
readonly arrow_double_up: "โซ";
|
|
84
|
-
readonly arrow_double_down: "โฌ";
|
|
85
|
-
readonly black_right_pointing_double_triangle_with_vertical_bar: "โญ";
|
|
86
|
-
readonly black_left_pointing_double_triangle_with_vertical_bar: "โฎ";
|
|
87
|
-
readonly black_right_pointing_triangle_with_double_vertical_bar: "โฏ";
|
|
88
|
-
readonly alarm_clock: "โฐ";
|
|
89
|
-
readonly stopwatch: "โฑ";
|
|
90
|
-
readonly timer_clock: "โฒ";
|
|
91
|
-
readonly hourglass_flowing_sand: "โณ";
|
|
92
|
-
readonly double_vertical_bar: "โธ";
|
|
93
|
-
readonly black_square_for_stop: "โน";
|
|
94
|
-
readonly black_circle_for_record: "โบ";
|
|
95
|
-
readonly m: "โ๏ธ";
|
|
96
|
-
readonly black_small_square: "โช๏ธ";
|
|
97
|
-
readonly white_small_square: "โซ๏ธ";
|
|
98
|
-
readonly arrow_forward: "โถ๏ธ";
|
|
99
|
-
readonly arrow_backward: "โ๏ธ";
|
|
100
|
-
readonly white_medium_square: "โป๏ธ";
|
|
101
|
-
readonly black_medium_square: "โผ๏ธ";
|
|
102
|
-
readonly white_medium_small_square: "โฝ๏ธ";
|
|
103
|
-
readonly black_medium_small_square: "โพ๏ธ";
|
|
104
|
-
readonly phone: "โ๏ธ";
|
|
105
|
-
readonly telephone: "โ๏ธ";
|
|
106
|
-
readonly point_up: "โ๏ธ";
|
|
107
|
-
readonly star_and_crescent: "โช";
|
|
108
|
-
readonly peace_symbol: "โฎ";
|
|
109
|
-
readonly yin_yang: "โฏ";
|
|
110
|
-
readonly relaxed: "โบ๏ธ";
|
|
111
|
-
readonly gemini: "โ๏ธ";
|
|
112
|
-
readonly cancer: "โ๏ธ";
|
|
113
|
-
readonly leo: "โ๏ธ";
|
|
114
|
-
readonly virgo: "โ๏ธ";
|
|
115
|
-
readonly libra: "โ๏ธ";
|
|
116
|
-
readonly scorpius: "โ๏ธ";
|
|
117
|
-
readonly recycle: "โป๏ธ";
|
|
118
|
-
readonly wheelchair: "โฟ๏ธ";
|
|
119
|
-
readonly atom_symbol: "โ";
|
|
120
|
-
readonly fleur_de_lis: "โ";
|
|
121
|
-
readonly warning: "โ ๏ธ";
|
|
122
|
-
readonly zap: "โก๏ธ";
|
|
123
|
-
readonly white_circle: "โช๏ธ";
|
|
124
|
-
readonly black_circle: "โซ๏ธ";
|
|
125
|
-
readonly coffin: "โฐ";
|
|
126
|
-
readonly funeral_urn: "โฑ";
|
|
127
|
-
readonly soccer: "โฝ๏ธ";
|
|
128
|
-
readonly baseball: "โพ๏ธ";
|
|
129
|
-
readonly snowman: "โ๏ธ";
|
|
130
|
-
readonly partly_sunny: "โ
๏ธ";
|
|
131
|
-
readonly thunder_cloud_and_rain: "โ";
|
|
132
|
-
readonly ophiuchus: "โ";
|
|
133
|
-
readonly pick: "โ";
|
|
134
|
-
readonly helmet_with_white_cross: "โ";
|
|
135
|
-
readonly chains: "โ";
|
|
136
|
-
readonly no_entry: "โ๏ธ";
|
|
137
|
-
readonly shinto_shrine: "โฉ";
|
|
138
|
-
readonly church: "โช๏ธ";
|
|
139
|
-
readonly mountain: "โฐ";
|
|
140
|
-
readonly umbrella_on_ground: "โฑ";
|
|
141
|
-
readonly fountain: "โฒ๏ธ";
|
|
142
|
-
readonly golf: "โณ๏ธ";
|
|
143
|
-
readonly ferry: "โด";
|
|
144
|
-
readonly boat: "โต๏ธ";
|
|
145
|
-
readonly sailboat: "โต๏ธ";
|
|
146
|
-
readonly skier: "โท";
|
|
147
|
-
readonly ice_skate: "โธ";
|
|
148
|
-
readonly person_with_ball: "โน";
|
|
149
|
-
readonly tent: "โบ๏ธ";
|
|
150
|
-
readonly fuelpump: "โฝ๏ธ";
|
|
151
|
-
readonly fist: "โ";
|
|
152
|
-
readonly hand: "โ";
|
|
153
|
-
readonly raised_hand: "โ";
|
|
154
|
-
readonly v: "โ๏ธ";
|
|
155
|
-
readonly writing_hand: "โ";
|
|
156
|
-
readonly pencil2: "โ๏ธ";
|
|
157
|
-
readonly latin_cross: "โ";
|
|
158
|
-
readonly x: "โ";
|
|
159
|
-
readonly negative_squared_cross_mark: "โ";
|
|
160
|
-
readonly arrow_right: "โก๏ธ";
|
|
161
|
-
readonly curly_loop: "โฐ";
|
|
162
|
-
readonly loop: "โฟ";
|
|
163
|
-
readonly arrow_left: "โฌ
๏ธ";
|
|
164
|
-
readonly arrow_up: "โฌ๏ธ";
|
|
165
|
-
readonly arrow_down: "โฌ๏ธ";
|
|
166
|
-
readonly black_large_square: "โฌ๏ธ";
|
|
167
|
-
readonly white_large_square: "โฌ๏ธ";
|
|
168
|
-
readonly star: "โญ๏ธ";
|
|
169
|
-
readonly o: "โญ๏ธ";
|
|
170
|
-
readonly part_alternation_mark: "ใฝ๏ธ";
|
|
171
|
-
readonly mahjong: "๐๏ธ";
|
|
172
|
-
readonly black_joker: "๐";
|
|
173
|
-
readonly a: "๐
ฐ๏ธ";
|
|
174
|
-
readonly b: "๐
ฑ๏ธ";
|
|
175
|
-
readonly o2: "๐
พ๏ธ";
|
|
176
|
-
readonly parking: "๐
ฟ๏ธ";
|
|
177
|
-
readonly ab: "๐";
|
|
178
|
-
readonly cl: "๐";
|
|
179
|
-
readonly cool: "๐";
|
|
180
|
-
readonly free: "๐";
|
|
181
|
-
readonly id: "๐";
|
|
182
|
-
readonly new: "๐";
|
|
183
|
-
readonly ng: "๐";
|
|
184
|
-
readonly ok: "๐";
|
|
185
|
-
readonly sos: "๐";
|
|
186
|
-
readonly up: "๐";
|
|
187
|
-
readonly vs: "๐";
|
|
188
|
-
readonly koko: "๐";
|
|
189
|
-
readonly sa: "๐๏ธ";
|
|
190
|
-
readonly u7121: "๐๏ธ";
|
|
191
|
-
readonly u6307: "๐ฏ๏ธ";
|
|
192
|
-
readonly u7981: "๐ฒ";
|
|
193
|
-
readonly u7a7a: "๐ณ";
|
|
194
|
-
readonly u5408: "๐ด";
|
|
195
|
-
readonly u6e80: "๐ต";
|
|
196
|
-
readonly u6709: "๐ถ";
|
|
197
|
-
readonly u6708: "๐ท๏ธ";
|
|
198
|
-
readonly u7533: "๐ธ";
|
|
199
|
-
readonly u5272: "๐น";
|
|
200
|
-
readonly u55b6: "๐บ";
|
|
201
|
-
readonly ideograph_advantage: "๐";
|
|
202
|
-
readonly accept: "๐";
|
|
203
|
-
readonly cyclone: "๐";
|
|
204
|
-
readonly foggy: "๐";
|
|
205
|
-
readonly closed_umbrella: "๐";
|
|
206
|
-
readonly night_with_stars: "๐";
|
|
207
|
-
readonly sunrise_over_mountains: "๐";
|
|
208
|
-
readonly sunrise: "๐
";
|
|
209
|
-
readonly city_sunset: "๐";
|
|
210
|
-
readonly city_sunrise: "๐";
|
|
211
|
-
readonly rainbow: "๐";
|
|
212
|
-
readonly bridge_at_night: "๐";
|
|
213
|
-
readonly ocean: "๐";
|
|
214
|
-
readonly volcano: "๐";
|
|
215
|
-
readonly milky_way: "๐";
|
|
216
|
-
readonly earth_africa: "๐";
|
|
217
|
-
readonly earth_americas: "๐";
|
|
218
|
-
readonly earth_asia: "๐";
|
|
219
|
-
readonly globe_with_meridians: "๐";
|
|
220
|
-
readonly new_moon: "๐";
|
|
221
|
-
readonly waxing_crescent_moon: "๐";
|
|
222
|
-
readonly first_quarter_moon: "๐";
|
|
223
|
-
readonly moon: "๐";
|
|
224
|
-
readonly waxing_gibbous_moon: "๐";
|
|
225
|
-
readonly full_moon: "๐";
|
|
226
|
-
readonly waning_gibbous_moon: "๐";
|
|
227
|
-
readonly last_quarter_moon: "๐";
|
|
228
|
-
readonly waning_crescent_moon: "๐";
|
|
229
|
-
readonly crescent_moon: "๐";
|
|
230
|
-
readonly new_moon_with_face: "๐";
|
|
231
|
-
readonly first_quarter_moon_with_face: "๐";
|
|
232
|
-
readonly last_quarter_moon_with_face: "๐";
|
|
233
|
-
readonly full_moon_with_face: "๐";
|
|
234
|
-
readonly sun_with_face: "๐";
|
|
235
|
-
readonly star2: "๐";
|
|
236
|
-
readonly stars: "๐ ";
|
|
237
|
-
readonly thermometer: "๐ก";
|
|
238
|
-
readonly mostly_sunny: "๐ค";
|
|
239
|
-
readonly sun_small_cloud: "๐ค";
|
|
240
|
-
readonly barely_sunny: "๐ฅ";
|
|
241
|
-
readonly sun_behind_cloud: "๐ฅ";
|
|
242
|
-
readonly partly_sunny_rain: "๐ฆ";
|
|
243
|
-
readonly sun_behind_rain_cloud: "๐ฆ";
|
|
244
|
-
readonly rain_cloud: "๐ง";
|
|
245
|
-
readonly snow_cloud: "๐จ";
|
|
246
|
-
readonly lightning: "๐ฉ";
|
|
247
|
-
readonly lightning_cloud: "๐ฉ";
|
|
248
|
-
readonly tornado: "๐ช";
|
|
249
|
-
readonly tornado_cloud: "๐ช";
|
|
250
|
-
readonly fog: "๐ซ";
|
|
251
|
-
readonly wind_blowing_face: "๐ฌ";
|
|
252
|
-
readonly hotdog: "๐ญ";
|
|
253
|
-
readonly taco: "๐ฎ";
|
|
254
|
-
readonly burrito: "๐ฏ";
|
|
255
|
-
readonly chestnut: "๐ฐ";
|
|
256
|
-
readonly seedling: "๐ฑ";
|
|
257
|
-
readonly evergreen_tree: "๐ฒ";
|
|
258
|
-
readonly deciduous_tree: "๐ณ";
|
|
259
|
-
readonly palm_tree: "๐ด";
|
|
260
|
-
readonly cactus: "๐ต";
|
|
261
|
-
readonly hot_pepper: "๐ถ";
|
|
262
|
-
readonly tulip: "๐ท";
|
|
263
|
-
readonly cherry_blossom: "๐ธ";
|
|
264
|
-
readonly rose: "๐น";
|
|
265
|
-
readonly hibiscus: "๐บ";
|
|
266
|
-
readonly sunflower: "๐ป";
|
|
267
|
-
readonly blossom: "๐ผ";
|
|
268
|
-
readonly corn: "๐ฝ";
|
|
269
|
-
readonly ear_of_rice: "๐พ";
|
|
270
|
-
readonly herb: "๐ฟ";
|
|
271
|
-
readonly four_leaf_clover: "๐";
|
|
272
|
-
readonly maple_leaf: "๐";
|
|
273
|
-
readonly fallen_leaf: "๐";
|
|
274
|
-
readonly leaves: "๐";
|
|
275
|
-
readonly mushroom: "๐";
|
|
276
|
-
readonly tomato: "๐
";
|
|
277
|
-
readonly eggplant: "๐";
|
|
278
|
-
readonly grapes: "๐";
|
|
279
|
-
readonly melon: "๐";
|
|
280
|
-
readonly watermelon: "๐";
|
|
281
|
-
readonly tangerine: "๐";
|
|
282
|
-
readonly lemon: "๐";
|
|
283
|
-
readonly banana: "๐";
|
|
284
|
-
readonly pineapple: "๐";
|
|
285
|
-
readonly apple: "๐";
|
|
286
|
-
readonly green_apple: "๐";
|
|
287
|
-
readonly pear: "๐";
|
|
288
|
-
readonly peach: "๐";
|
|
289
|
-
readonly cherries: "๐";
|
|
290
|
-
readonly strawberry: "๐";
|
|
291
|
-
readonly hamburger: "๐";
|
|
292
|
-
readonly pizza: "๐";
|
|
293
|
-
readonly meat_on_bone: "๐";
|
|
294
|
-
readonly poultry_leg: "๐";
|
|
295
|
-
readonly rice_cracker: "๐";
|
|
296
|
-
readonly rice_ball: "๐";
|
|
297
|
-
readonly rice: "๐";
|
|
298
|
-
readonly curry: "๐";
|
|
299
|
-
readonly ramen: "๐";
|
|
300
|
-
readonly spaghetti: "๐";
|
|
301
|
-
readonly bread: "๐";
|
|
302
|
-
readonly fries: "๐";
|
|
303
|
-
readonly sweet_potato: "๐ ";
|
|
304
|
-
readonly dango: "๐ก";
|
|
305
|
-
readonly oden: "๐ข";
|
|
306
|
-
readonly sushi: "๐ฃ";
|
|
307
|
-
readonly fried_shrimp: "๐ค";
|
|
308
|
-
readonly fish_cake: "๐ฅ";
|
|
309
|
-
readonly icecream: "๐ฆ";
|
|
310
|
-
readonly shaved_ice: "๐ง";
|
|
311
|
-
readonly ice_cream: "๐จ";
|
|
312
|
-
readonly doughnut: "๐ฉ";
|
|
313
|
-
readonly cookie: "๐ช";
|
|
314
|
-
readonly chocolate_bar: "๐ซ";
|
|
315
|
-
readonly candy: "๐ฌ";
|
|
316
|
-
readonly lollipop: "๐ญ";
|
|
317
|
-
readonly custard: "๐ฎ";
|
|
318
|
-
readonly honey_pot: "๐ฏ";
|
|
319
|
-
readonly cake: "๐ฐ";
|
|
320
|
-
readonly bento: "๐ฑ";
|
|
321
|
-
readonly stew: "๐ฒ";
|
|
322
|
-
readonly egg: "๐ณ";
|
|
323
|
-
readonly fork_and_knife: "๐ด";
|
|
324
|
-
readonly tea: "๐ต";
|
|
325
|
-
readonly sake: "๐ถ";
|
|
326
|
-
readonly wine_glass: "๐ท";
|
|
327
|
-
readonly cocktail: "๐ธ";
|
|
328
|
-
readonly tropical_drink: "๐น";
|
|
329
|
-
readonly beer: "๐บ";
|
|
330
|
-
readonly beers: "๐ป";
|
|
331
|
-
readonly baby_bottle: "๐ผ";
|
|
332
|
-
readonly knife_fork_plate: "๐ฝ";
|
|
333
|
-
readonly champagne: "๐พ";
|
|
334
|
-
readonly popcorn: "๐ฟ";
|
|
335
|
-
readonly ribbon: "๐";
|
|
336
|
-
readonly gift: "๐";
|
|
337
|
-
readonly birthday: "๐";
|
|
338
|
-
readonly jack_o_lantern: "๐";
|
|
339
|
-
readonly christmas_tree: "๐";
|
|
340
|
-
readonly santa: "๐
";
|
|
341
|
-
readonly fireworks: "๐";
|
|
342
|
-
readonly sparkler: "๐";
|
|
343
|
-
readonly balloon: "๐";
|
|
344
|
-
readonly tada: "๐";
|
|
345
|
-
readonly confetti_ball: "๐";
|
|
346
|
-
readonly tanabata_tree: "๐";
|
|
347
|
-
readonly crossed_flags: "๐";
|
|
348
|
-
readonly bamboo: "๐";
|
|
349
|
-
readonly dolls: "๐";
|
|
350
|
-
readonly flags: "๐";
|
|
351
|
-
readonly wind_chime: "๐";
|
|
352
|
-
readonly rice_scene: "๐";
|
|
353
|
-
readonly school_satchel: "๐";
|
|
354
|
-
readonly mortar_board: "๐";
|
|
355
|
-
readonly medal: "๐";
|
|
356
|
-
readonly reminder_ribbon: "๐";
|
|
357
|
-
readonly studio_microphone: "๐";
|
|
358
|
-
readonly level_slider: "๐";
|
|
359
|
-
readonly control_knobs: "๐";
|
|
360
|
-
readonly film_frames: "๐";
|
|
361
|
-
readonly admission_tickets: "๐";
|
|
362
|
-
readonly carousel_horse: "๐ ";
|
|
363
|
-
readonly ferris_wheel: "๐ก";
|
|
364
|
-
readonly roller_coaster: "๐ข";
|
|
365
|
-
readonly fishing_pole_and_fish: "๐ฃ";
|
|
366
|
-
readonly microphone: "๐ค";
|
|
367
|
-
readonly movie_camera: "๐ฅ";
|
|
368
|
-
readonly cinema: "๐ฆ";
|
|
369
|
-
readonly headphones: "๐ง";
|
|
370
|
-
readonly art: "๐จ";
|
|
371
|
-
readonly tophat: "๐ฉ";
|
|
372
|
-
readonly circus_tent: "๐ช";
|
|
373
|
-
readonly ticket: "๐ซ";
|
|
374
|
-
readonly clapper: "๐ฌ";
|
|
375
|
-
readonly performing_arts: "๐ญ";
|
|
376
|
-
readonly video_game: "๐ฎ";
|
|
377
|
-
readonly dart: "๐ฏ";
|
|
378
|
-
readonly slot_machine: "๐ฐ";
|
|
379
|
-
readonly "8ball": "๐ฑ";
|
|
380
|
-
readonly game_die: "๐ฒ";
|
|
381
|
-
readonly bowling: "๐ณ";
|
|
382
|
-
readonly flower_playing_cards: "๐ด";
|
|
383
|
-
readonly musical_note: "๐ต";
|
|
384
|
-
readonly notes: "๐ถ";
|
|
385
|
-
readonly saxophone: "๐ท";
|
|
386
|
-
readonly guitar: "๐ธ";
|
|
387
|
-
readonly musical_keyboard: "๐น";
|
|
388
|
-
readonly trumpet: "๐บ";
|
|
389
|
-
readonly violin: "๐ป";
|
|
390
|
-
readonly musical_score: "๐ผ";
|
|
391
|
-
readonly running_shirt_with_sash: "๐ฝ";
|
|
392
|
-
readonly tennis: "๐พ";
|
|
393
|
-
readonly ski: "๐ฟ";
|
|
394
|
-
readonly basketball: "๐";
|
|
395
|
-
readonly checkered_flag: "๐";
|
|
396
|
-
readonly snowboarder: "๐";
|
|
397
|
-
readonly runner: "๐";
|
|
398
|
-
readonly running: "๐";
|
|
399
|
-
readonly surfer: "๐";
|
|
400
|
-
readonly sports_medal: "๐
";
|
|
401
|
-
readonly trophy: "๐";
|
|
402
|
-
readonly horse_racing: "๐";
|
|
403
|
-
readonly football: "๐";
|
|
404
|
-
readonly rugby_football: "๐";
|
|
405
|
-
readonly swimmer: "๐";
|
|
406
|
-
readonly weight_lifter: "๐";
|
|
407
|
-
readonly golfer: "๐";
|
|
408
|
-
readonly racing_motorcycle: "๐";
|
|
409
|
-
readonly racing_car: "๐";
|
|
410
|
-
readonly cricket_bat_and_ball: "๐";
|
|
411
|
-
readonly volleyball: "๐";
|
|
412
|
-
readonly field_hockey_stick_and_ball: "๐";
|
|
413
|
-
readonly ice_hockey_stick_and_puck: "๐";
|
|
414
|
-
readonly table_tennis_paddle_and_ball: "๐";
|
|
415
|
-
readonly snow_capped_mountain: "๐";
|
|
416
|
-
readonly camping: "๐";
|
|
417
|
-
readonly beach_with_umbrella: "๐";
|
|
418
|
-
readonly building_construction: "๐";
|
|
419
|
-
readonly house_buildings: "๐";
|
|
420
|
-
readonly cityscape: "๐";
|
|
421
|
-
readonly derelict_house_building: "๐";
|
|
422
|
-
readonly classical_building: "๐";
|
|
423
|
-
readonly desert: "๐";
|
|
424
|
-
readonly desert_island: "๐";
|
|
425
|
-
readonly national_park: "๐";
|
|
426
|
-
readonly stadium: "๐";
|
|
427
|
-
readonly house: "๐ ";
|
|
428
|
-
readonly house_with_garden: "๐ก";
|
|
429
|
-
readonly office: "๐ข";
|
|
430
|
-
readonly post_office: "๐ฃ";
|
|
431
|
-
readonly european_post_office: "๐ค";
|
|
432
|
-
readonly hospital: "๐ฅ";
|
|
433
|
-
readonly bank: "๐ฆ";
|
|
434
|
-
readonly atm: "๐ง";
|
|
435
|
-
readonly hotel: "๐จ";
|
|
436
|
-
readonly love_hotel: "๐ฉ";
|
|
437
|
-
readonly convenience_store: "๐ช";
|
|
438
|
-
readonly school: "๐ซ";
|
|
439
|
-
readonly department_store: "๐ฌ";
|
|
440
|
-
readonly factory: "๐ญ";
|
|
441
|
-
readonly izakaya_lantern: "๐ฎ";
|
|
442
|
-
readonly lantern: "๐ฎ";
|
|
443
|
-
readonly japanese_castle: "๐ฏ";
|
|
444
|
-
readonly european_castle: "๐ฐ";
|
|
445
|
-
readonly waving_white_flag: "๐ณ";
|
|
446
|
-
readonly waving_black_flag: "๐ด";
|
|
447
|
-
readonly rosette: "๐ต";
|
|
448
|
-
readonly label: "๐ท";
|
|
449
|
-
readonly badminton_racquet_and_shuttlecock: "๐ธ";
|
|
450
|
-
readonly bow_and_arrow: "๐น";
|
|
451
|
-
readonly amphora: "๐บ";
|
|
452
|
-
readonly "skin-tone-2": "๐ป";
|
|
453
|
-
readonly "skin-tone-3": "๐ผ";
|
|
454
|
-
readonly "skin-tone-4": "๐ฝ";
|
|
455
|
-
readonly "skin-tone-5": "๐พ";
|
|
456
|
-
readonly "skin-tone-6": "๐ฟ";
|
|
457
|
-
readonly rat: "๐";
|
|
458
|
-
readonly mouse2: "๐";
|
|
459
|
-
readonly ox: "๐";
|
|
460
|
-
readonly water_buffalo: "๐";
|
|
461
|
-
readonly cow2: "๐";
|
|
462
|
-
readonly tiger2: "๐
";
|
|
463
|
-
readonly leopard: "๐";
|
|
464
|
-
readonly rabbit2: "๐";
|
|
465
|
-
readonly cat2: "๐";
|
|
466
|
-
readonly dragon: "๐";
|
|
467
|
-
readonly crocodile: "๐";
|
|
468
|
-
readonly whale2: "๐";
|
|
469
|
-
readonly snail: "๐";
|
|
470
|
-
readonly snake: "๐";
|
|
471
|
-
readonly racehorse: "๐";
|
|
472
|
-
readonly ram: "๐";
|
|
473
|
-
readonly goat: "๐";
|
|
474
|
-
readonly sheep: "๐";
|
|
475
|
-
readonly monkey: "๐";
|
|
476
|
-
readonly rooster: "๐";
|
|
477
|
-
readonly chicken: "๐";
|
|
478
|
-
readonly dog2: "๐";
|
|
479
|
-
readonly pig2: "๐";
|
|
480
|
-
readonly boar: "๐";
|
|
481
|
-
readonly elephant: "๐";
|
|
482
|
-
readonly octopus: "๐";
|
|
483
|
-
readonly shell: "๐";
|
|
484
|
-
readonly bug: "๐";
|
|
485
|
-
readonly ant: "๐";
|
|
486
|
-
readonly bee: "๐";
|
|
487
|
-
readonly honeybee: "๐";
|
|
488
|
-
readonly beetle: "๐";
|
|
489
|
-
readonly fish: "๐";
|
|
490
|
-
readonly tropical_fish: "๐ ";
|
|
491
|
-
readonly blowfish: "๐ก";
|
|
492
|
-
readonly turtle: "๐ข";
|
|
493
|
-
readonly hatching_chick: "๐ฃ";
|
|
494
|
-
readonly baby_chick: "๐ค";
|
|
495
|
-
readonly hatched_chick: "๐ฅ";
|
|
496
|
-
readonly bird: "๐ฆ";
|
|
497
|
-
readonly penguin: "๐ง";
|
|
498
|
-
readonly koala: "๐จ";
|
|
499
|
-
readonly poodle: "๐ฉ";
|
|
500
|
-
readonly dromedary_camel: "๐ช";
|
|
501
|
-
readonly camel: "๐ซ";
|
|
502
|
-
readonly dolphin: "๐ฌ";
|
|
503
|
-
readonly flipper: "๐ฌ";
|
|
504
|
-
readonly mouse: "๐ญ";
|
|
505
|
-
readonly cow: "๐ฎ";
|
|
506
|
-
readonly tiger: "๐ฏ";
|
|
507
|
-
readonly rabbit: "๐ฐ";
|
|
508
|
-
readonly cat: "๐ฑ";
|
|
509
|
-
readonly dragon_face: "๐ฒ";
|
|
510
|
-
readonly whale: "๐ณ";
|
|
511
|
-
readonly horse: "๐ด";
|
|
512
|
-
readonly monkey_face: "๐ต";
|
|
513
|
-
readonly dog: "๐ถ";
|
|
514
|
-
readonly pig: "๐ท";
|
|
515
|
-
readonly frog: "๐ธ";
|
|
516
|
-
readonly hamster: "๐น";
|
|
517
|
-
readonly wolf: "๐บ";
|
|
518
|
-
readonly bear: "๐ป";
|
|
519
|
-
readonly panda_face: "๐ผ";
|
|
520
|
-
readonly pig_nose: "๐ฝ";
|
|
521
|
-
readonly feet: "๐พ";
|
|
522
|
-
readonly paw_prints: "๐พ";
|
|
523
|
-
readonly chipmunk: "๐ฟ";
|
|
524
|
-
readonly eyes: "๐";
|
|
525
|
-
readonly eye: "๐";
|
|
526
|
-
readonly ear: "๐";
|
|
527
|
-
readonly nose: "๐";
|
|
528
|
-
readonly lips: "๐";
|
|
529
|
-
readonly tongue: "๐
";
|
|
530
|
-
readonly point_up_2: "๐";
|
|
531
|
-
readonly point_down: "๐";
|
|
532
|
-
readonly point_left: "๐";
|
|
533
|
-
readonly point_right: "๐";
|
|
534
|
-
readonly facepunch: "๐";
|
|
535
|
-
readonly punch: "๐";
|
|
536
|
-
readonly wave: "๐";
|
|
537
|
-
readonly ok_hand: "๐";
|
|
538
|
-
readonly "+1": "๐";
|
|
539
|
-
readonly thumbsup: "๐";
|
|
540
|
-
readonly "-1": "๐";
|
|
541
|
-
readonly thumbsdown: "๐";
|
|
542
|
-
readonly clap: "๐";
|
|
543
|
-
readonly open_hands: "๐";
|
|
544
|
-
readonly crown: "๐";
|
|
545
|
-
readonly womans_hat: "๐";
|
|
546
|
-
readonly eyeglasses: "๐";
|
|
547
|
-
readonly necktie: "๐";
|
|
548
|
-
readonly shirt: "๐";
|
|
549
|
-
readonly tshirt: "๐";
|
|
550
|
-
readonly jeans: "๐";
|
|
551
|
-
readonly dress: "๐";
|
|
552
|
-
readonly kimono: "๐";
|
|
553
|
-
readonly bikini: "๐";
|
|
554
|
-
readonly womans_clothes: "๐";
|
|
555
|
-
readonly purse: "๐";
|
|
556
|
-
readonly handbag: "๐";
|
|
557
|
-
readonly pouch: "๐";
|
|
558
|
-
readonly mans_shoe: "๐";
|
|
559
|
-
readonly shoe: "๐";
|
|
560
|
-
readonly athletic_shoe: "๐";
|
|
561
|
-
readonly high_heel: "๐ ";
|
|
562
|
-
readonly sandal: "๐ก";
|
|
563
|
-
readonly boot: "๐ข";
|
|
564
|
-
readonly footprints: "๐ฃ";
|
|
565
|
-
readonly bust_in_silhouette: "๐ค";
|
|
566
|
-
readonly busts_in_silhouette: "๐ฅ";
|
|
567
|
-
readonly boy: "๐ฆ";
|
|
568
|
-
readonly girl: "๐ง";
|
|
569
|
-
readonly man: "๐จ";
|
|
570
|
-
readonly woman: "๐ฉ";
|
|
571
|
-
readonly family: "๐จโ๐ฉโ๐ฆ";
|
|
572
|
-
readonly "man-woman-boy": "๐จโ๐ฉโ๐ฆ";
|
|
573
|
-
readonly couple: "๐ซ";
|
|
574
|
-
readonly man_and_woman_holding_hands: "๐ซ";
|
|
575
|
-
readonly two_men_holding_hands: "๐ฌ";
|
|
576
|
-
readonly two_women_holding_hands: "๐ญ";
|
|
577
|
-
readonly cop: "๐ฎ";
|
|
578
|
-
readonly dancers: "๐ฏ";
|
|
579
|
-
readonly bride_with_veil: "๐ฐ";
|
|
580
|
-
readonly person_with_blond_hair: "๐ฑ";
|
|
581
|
-
readonly man_with_gua_pi_mao: "๐ฒ";
|
|
582
|
-
readonly man_with_turban: "๐ณ";
|
|
583
|
-
readonly older_man: "๐ด";
|
|
584
|
-
readonly older_woman: "๐ต";
|
|
585
|
-
readonly baby: "๐ถ";
|
|
586
|
-
readonly construction_worker: "๐ท";
|
|
587
|
-
readonly princess: "๐ธ";
|
|
588
|
-
readonly japanese_ogre: "๐น";
|
|
589
|
-
readonly japanese_goblin: "๐บ";
|
|
590
|
-
readonly ghost: "๐ป";
|
|
591
|
-
readonly angel: "๐ผ";
|
|
592
|
-
readonly alien: "๐ฝ";
|
|
593
|
-
readonly space_invader: "๐พ";
|
|
594
|
-
readonly imp: "๐ฟ";
|
|
595
|
-
readonly skull: "๐";
|
|
596
|
-
readonly information_desk_person: "๐";
|
|
597
|
-
readonly guardsman: "๐";
|
|
598
|
-
readonly dancer: "๐";
|
|
599
|
-
readonly lipstick: "๐";
|
|
600
|
-
readonly nail_care: "๐
";
|
|
601
|
-
readonly massage: "๐";
|
|
602
|
-
readonly haircut: "๐";
|
|
603
|
-
readonly barber: "๐";
|
|
604
|
-
readonly syringe: "๐";
|
|
605
|
-
readonly pill: "๐";
|
|
606
|
-
readonly kiss: "๐";
|
|
607
|
-
readonly love_letter: "๐";
|
|
608
|
-
readonly ring: "๐";
|
|
609
|
-
readonly gem: "๐";
|
|
610
|
-
readonly couplekiss: "๐";
|
|
611
|
-
readonly bouquet: "๐";
|
|
612
|
-
readonly couple_with_heart: "๐";
|
|
613
|
-
readonly wedding: "๐";
|
|
614
|
-
readonly heartbeat: "๐";
|
|
615
|
-
readonly broken_heart: "๐";
|
|
616
|
-
readonly two_hearts: "๐";
|
|
617
|
-
readonly sparkling_heart: "๐";
|
|
618
|
-
readonly heartpulse: "๐";
|
|
619
|
-
readonly cupid: "๐";
|
|
620
|
-
readonly blue_heart: "๐";
|
|
621
|
-
readonly green_heart: "๐";
|
|
622
|
-
readonly yellow_heart: "๐";
|
|
623
|
-
readonly purple_heart: "๐";
|
|
624
|
-
readonly gift_heart: "๐";
|
|
625
|
-
readonly revolving_hearts: "๐";
|
|
626
|
-
readonly heart_decoration: "๐";
|
|
627
|
-
readonly diamond_shape_with_a_dot_inside: "๐ ";
|
|
628
|
-
readonly bulb: "๐ก";
|
|
629
|
-
readonly anger: "๐ข";
|
|
630
|
-
readonly bomb: "๐ฃ";
|
|
631
|
-
readonly zzz: "๐ค";
|
|
632
|
-
readonly boom: "๐ฅ";
|
|
633
|
-
readonly collision: "๐ฅ";
|
|
634
|
-
readonly sweat_drops: "๐ฆ";
|
|
635
|
-
readonly droplet: "๐ง";
|
|
636
|
-
readonly dash: "๐จ";
|
|
637
|
-
readonly hankey: "๐ฉ";
|
|
638
|
-
readonly poop: "๐ฉ";
|
|
639
|
-
readonly shit: "๐ฉ";
|
|
640
|
-
readonly muscle: "๐ช";
|
|
641
|
-
readonly dizzy: "๐ซ";
|
|
642
|
-
readonly speech_balloon: "๐ฌ";
|
|
643
|
-
readonly thought_balloon: "๐ญ";
|
|
644
|
-
readonly white_flower: "๐ฎ";
|
|
645
|
-
readonly moneybag: "๐ฐ";
|
|
646
|
-
readonly currency_exchange: "๐ฑ";
|
|
647
|
-
readonly heavy_dollar_sign: "๐ฒ";
|
|
648
|
-
readonly credit_card: "๐ณ";
|
|
649
|
-
readonly yen: "๐ด";
|
|
650
|
-
readonly dollar: "๐ต";
|
|
651
|
-
readonly euro: "๐ถ";
|
|
652
|
-
readonly pound: "๐ท";
|
|
653
|
-
readonly money_with_wings: "๐ธ";
|
|
654
|
-
readonly chart: "๐น";
|
|
655
|
-
readonly seat: "๐บ";
|
|
656
|
-
readonly computer: "๐ป";
|
|
657
|
-
readonly briefcase: "๐ผ";
|
|
658
|
-
readonly minidisc: "๐ฝ";
|
|
659
|
-
readonly floppy_disk: "๐พ";
|
|
660
|
-
readonly cd: "๐ฟ";
|
|
661
|
-
readonly dvd: "๐";
|
|
662
|
-
readonly file_folder: "๐";
|
|
663
|
-
readonly open_file_folder: "๐";
|
|
664
|
-
readonly page_with_curl: "๐";
|
|
665
|
-
readonly page_facing_up: "๐";
|
|
666
|
-
readonly date: "๐
";
|
|
667
|
-
readonly calendar: "๐";
|
|
668
|
-
readonly card_index: "๐";
|
|
669
|
-
readonly chart_with_upwards_trend: "๐";
|
|
670
|
-
readonly chart_with_downwards_trend: "๐";
|
|
671
|
-
readonly bar_chart: "๐";
|
|
672
|
-
readonly clipboard: "๐";
|
|
673
|
-
readonly pushpin: "๐";
|
|
674
|
-
readonly round_pushpin: "๐";
|
|
675
|
-
readonly paperclip: "๐";
|
|
676
|
-
readonly straight_ruler: "๐";
|
|
677
|
-
readonly triangular_ruler: "๐";
|
|
678
|
-
readonly bookmark_tabs: "๐";
|
|
679
|
-
readonly ledger: "๐";
|
|
680
|
-
readonly notebook: "๐";
|
|
681
|
-
readonly notebook_with_decorative_cover: "๐";
|
|
682
|
-
readonly closed_book: "๐";
|
|
683
|
-
readonly book: "๐";
|
|
684
|
-
readonly open_book: "๐";
|
|
685
|
-
readonly green_book: "๐";
|
|
686
|
-
readonly blue_book: "๐";
|
|
687
|
-
readonly orange_book: "๐";
|
|
688
|
-
readonly books: "๐";
|
|
689
|
-
readonly name_badge: "๐";
|
|
690
|
-
readonly scroll: "๐";
|
|
691
|
-
readonly memo: "๐";
|
|
692
|
-
readonly pencil: "๐";
|
|
693
|
-
readonly telephone_receiver: "๐";
|
|
694
|
-
readonly pager: "๐";
|
|
695
|
-
readonly fax: "๐ ";
|
|
696
|
-
readonly satellite: "๐ฐ";
|
|
697
|
-
readonly loudspeaker: "๐ข";
|
|
698
|
-
readonly mega: "๐ฃ";
|
|
699
|
-
readonly outbox_tray: "๐ค";
|
|
700
|
-
readonly inbox_tray: "๐ฅ";
|
|
701
|
-
readonly package: "๐ฆ";
|
|
702
|
-
readonly "e-mail": "๐ง";
|
|
703
|
-
readonly incoming_envelope: "๐จ";
|
|
704
|
-
readonly envelope_with_arrow: "๐ฉ";
|
|
705
|
-
readonly mailbox_closed: "๐ช";
|
|
706
|
-
readonly mailbox: "๐ซ";
|
|
707
|
-
readonly mailbox_with_mail: "๐ฌ";
|
|
708
|
-
readonly mailbox_with_no_mail: "๐ญ";
|
|
709
|
-
readonly postbox: "๐ฎ";
|
|
710
|
-
readonly postal_horn: "๐ฏ";
|
|
711
|
-
readonly newspaper: "๐ฐ";
|
|
712
|
-
readonly iphone: "๐ฑ";
|
|
713
|
-
readonly calling: "๐ฒ";
|
|
714
|
-
readonly vibration_mode: "๐ณ";
|
|
715
|
-
readonly mobile_phone_off: "๐ด";
|
|
716
|
-
readonly no_mobile_phones: "๐ต";
|
|
717
|
-
readonly signal_strength: "๐ถ";
|
|
718
|
-
readonly camera: "๐ท";
|
|
719
|
-
readonly camera_with_flash: "๐ธ";
|
|
720
|
-
readonly video_camera: "๐น";
|
|
721
|
-
readonly tv: "๐บ";
|
|
722
|
-
readonly radio: "๐ป";
|
|
723
|
-
readonly vhs: "๐ผ";
|
|
724
|
-
readonly film_projector: "๐ฝ";
|
|
725
|
-
readonly prayer_beads: "๐ฟ";
|
|
726
|
-
readonly twisted_rightwards_arrows: "๐";
|
|
727
|
-
readonly repeat: "๐";
|
|
728
|
-
readonly repeat_one: "๐";
|
|
729
|
-
readonly arrows_clockwise: "๐";
|
|
730
|
-
readonly arrows_counterclockwise: "๐";
|
|
731
|
-
readonly low_brightness: "๐
";
|
|
732
|
-
readonly high_brightness: "๐";
|
|
733
|
-
readonly mute: "๐";
|
|
734
|
-
readonly speaker: "๐";
|
|
735
|
-
readonly sound: "๐";
|
|
736
|
-
readonly loud_sound: "๐";
|
|
737
|
-
readonly battery: "๐";
|
|
738
|
-
readonly electric_plug: "๐";
|
|
739
|
-
readonly mag: "๐";
|
|
740
|
-
readonly mag_right: "๐";
|
|
741
|
-
readonly lock_with_ink_pen: "๐";
|
|
742
|
-
readonly closed_lock_with_key: "๐";
|
|
743
|
-
readonly key: "๐";
|
|
744
|
-
readonly lock: "๐";
|
|
745
|
-
readonly unlock: "๐";
|
|
746
|
-
readonly bell: "๐";
|
|
747
|
-
readonly no_bell: "๐";
|
|
748
|
-
readonly bookmark: "๐";
|
|
749
|
-
readonly link: "๐";
|
|
750
|
-
readonly radio_button: "๐";
|
|
751
|
-
readonly back: "๐";
|
|
752
|
-
readonly end: "๐";
|
|
753
|
-
readonly on: "๐";
|
|
754
|
-
readonly soon: "๐";
|
|
755
|
-
readonly top: "๐";
|
|
756
|
-
readonly underage: "๐";
|
|
757
|
-
readonly keycap_ten: "๐";
|
|
758
|
-
readonly capital_abcd: "๐ ";
|
|
759
|
-
readonly abcd: "๐ก";
|
|
760
|
-
readonly symbols: "๐ฃ";
|
|
761
|
-
readonly abc: "๐ค";
|
|
762
|
-
readonly fire: "๐ฅ";
|
|
763
|
-
readonly flashlight: "๐ฆ";
|
|
764
|
-
readonly wrench: "๐ง";
|
|
765
|
-
readonly hammer: "๐จ";
|
|
766
|
-
readonly nut_and_bolt: "๐ฉ";
|
|
767
|
-
readonly hocho: "๐ช";
|
|
768
|
-
readonly knife: "๐ช";
|
|
769
|
-
readonly gun: "๐ซ";
|
|
770
|
-
readonly microscope: "๐ฌ";
|
|
771
|
-
readonly telescope: "๐ญ";
|
|
772
|
-
readonly crystal_ball: "๐ฎ";
|
|
773
|
-
readonly six_pointed_star: "๐ฏ";
|
|
774
|
-
readonly beginner: "๐ฐ";
|
|
775
|
-
readonly trident: "๐ฑ";
|
|
776
|
-
readonly black_square_button: "๐ฒ";
|
|
777
|
-
readonly white_square_button: "๐ณ";
|
|
778
|
-
readonly red_circle: "๐ด";
|
|
779
|
-
readonly large_blue_circle: "๐ต";
|
|
780
|
-
readonly large_orange_diamond: "๐ถ";
|
|
781
|
-
readonly large_blue_diamond: "๐ท";
|
|
782
|
-
readonly small_orange_diamond: "๐ธ";
|
|
783
|
-
readonly small_blue_diamond: "๐น";
|
|
784
|
-
readonly small_red_triangle: "๐บ";
|
|
785
|
-
readonly small_red_triangle_down: "๐ป";
|
|
786
|
-
readonly arrow_up_small: "๐ผ";
|
|
787
|
-
readonly arrow_down_small: "๐ฝ";
|
|
788
|
-
readonly om_symbol: "๐";
|
|
789
|
-
readonly dove_of_peace: "๐";
|
|
790
|
-
readonly kaaba: "๐";
|
|
791
|
-
readonly mosque: "๐";
|
|
792
|
-
readonly synagogue: "๐";
|
|
793
|
-
readonly menorah_with_nine_branches: "๐";
|
|
794
|
-
readonly clock1: "๐";
|
|
795
|
-
readonly clock2: "๐";
|
|
796
|
-
readonly clock3: "๐";
|
|
797
|
-
readonly clock4: "๐";
|
|
798
|
-
readonly clock5: "๐";
|
|
799
|
-
readonly clock6: "๐";
|
|
800
|
-
readonly clock7: "๐";
|
|
801
|
-
readonly clock8: "๐";
|
|
802
|
-
readonly clock9: "๐";
|
|
803
|
-
readonly clock10: "๐";
|
|
804
|
-
readonly clock11: "๐";
|
|
805
|
-
readonly clock12: "๐";
|
|
806
|
-
readonly clock130: "๐";
|
|
807
|
-
readonly clock230: "๐";
|
|
808
|
-
readonly clock330: "๐";
|
|
809
|
-
readonly clock430: "๐";
|
|
810
|
-
readonly clock530: "๐ ";
|
|
811
|
-
readonly clock630: "๐ก";
|
|
812
|
-
readonly clock730: "๐ข";
|
|
813
|
-
readonly clock830: "๐ฃ";
|
|
814
|
-
readonly clock930: "๐ค";
|
|
815
|
-
readonly clock1030: "๐ฅ";
|
|
816
|
-
readonly clock1130: "๐ฆ";
|
|
817
|
-
readonly clock1230: "๐ง";
|
|
818
|
-
readonly candle: "๐ฏ";
|
|
819
|
-
readonly mantelpiece_clock: "๐ฐ";
|
|
820
|
-
readonly hole: "๐ณ";
|
|
821
|
-
readonly man_in_business_suit_levitating: "๐ด";
|
|
822
|
-
readonly sleuth_or_spy: "๐ต";
|
|
823
|
-
readonly dark_sunglasses: "๐ถ";
|
|
824
|
-
readonly spider: "๐ท";
|
|
825
|
-
readonly spider_web: "๐ธ";
|
|
826
|
-
readonly joystick: "๐น";
|
|
827
|
-
readonly linked_paperclips: "๐";
|
|
828
|
-
readonly lower_left_ballpoint_pen: "๐";
|
|
829
|
-
readonly lower_left_fountain_pen: "๐";
|
|
830
|
-
readonly lower_left_paintbrush: "๐";
|
|
831
|
-
readonly lower_left_crayon: "๐";
|
|
832
|
-
readonly raised_hand_with_fingers_splayed: "๐";
|
|
833
|
-
readonly middle_finger: "๐";
|
|
834
|
-
readonly reversed_hand_with_middle_finger_extended: "๐";
|
|
835
|
-
readonly "spock-hand": "๐";
|
|
836
|
-
readonly desktop_computer: "๐ฅ";
|
|
837
|
-
readonly printer: "๐จ";
|
|
838
|
-
readonly three_button_mouse: "๐ฑ";
|
|
839
|
-
readonly trackball: "๐ฒ";
|
|
840
|
-
readonly frame_with_picture: "๐ผ";
|
|
841
|
-
readonly card_index_dividers: "๐";
|
|
842
|
-
readonly card_file_box: "๐";
|
|
843
|
-
readonly file_cabinet: "๐";
|
|
844
|
-
readonly wastebasket: "๐";
|
|
845
|
-
readonly spiral_note_pad: "๐";
|
|
846
|
-
readonly spiral_calendar_pad: "๐";
|
|
847
|
-
readonly compression: "๐";
|
|
848
|
-
readonly old_key: "๐";
|
|
849
|
-
readonly rolled_up_newspaper: "๐";
|
|
850
|
-
readonly dagger_knife: "๐ก";
|
|
851
|
-
readonly speaking_head_in_silhouette: "๐ฃ";
|
|
852
|
-
readonly left_speech_bubble: "๐จ";
|
|
853
|
-
readonly right_anger_bubble: "๐ฏ";
|
|
854
|
-
readonly ballot_box_with_ballot: "๐ณ";
|
|
855
|
-
readonly world_map: "๐บ";
|
|
856
|
-
readonly mount_fuji: "๐ป";
|
|
857
|
-
readonly tokyo_tower: "๐ผ";
|
|
858
|
-
readonly statue_of_liberty: "๐ฝ";
|
|
859
|
-
readonly japan: "๐พ";
|
|
860
|
-
readonly moyai: "๐ฟ";
|
|
861
|
-
readonly grinning: "๐";
|
|
862
|
-
readonly grin: "๐";
|
|
863
|
-
readonly joy: "๐";
|
|
864
|
-
readonly smiley: "๐";
|
|
865
|
-
readonly smile: "๐";
|
|
866
|
-
readonly sweat_smile: "๐
";
|
|
867
|
-
readonly laughing: "๐";
|
|
868
|
-
readonly satisfied: "๐";
|
|
869
|
-
readonly innocent: "๐";
|
|
870
|
-
readonly smiling_imp: "๐";
|
|
871
|
-
readonly wink: "๐";
|
|
872
|
-
readonly blush: "๐";
|
|
873
|
-
readonly yum: "๐";
|
|
874
|
-
readonly relieved: "๐";
|
|
875
|
-
readonly heart_eyes: "๐";
|
|
876
|
-
readonly sunglasses: "๐";
|
|
877
|
-
readonly smirk: "๐";
|
|
878
|
-
readonly neutral_face: "๐";
|
|
879
|
-
readonly expressionless: "๐";
|
|
880
|
-
readonly unamused: "๐";
|
|
881
|
-
readonly sweat: "๐";
|
|
882
|
-
readonly pensive: "๐";
|
|
883
|
-
readonly confused: "๐";
|
|
884
|
-
readonly confounded: "๐";
|
|
885
|
-
readonly kissing: "๐";
|
|
886
|
-
readonly kissing_heart: "๐";
|
|
887
|
-
readonly kissing_smiling_eyes: "๐";
|
|
888
|
-
readonly kissing_closed_eyes: "๐";
|
|
889
|
-
readonly stuck_out_tongue: "๐";
|
|
890
|
-
readonly stuck_out_tongue_winking_eye: "๐";
|
|
891
|
-
readonly stuck_out_tongue_closed_eyes: "๐";
|
|
892
|
-
readonly disappointed: "๐";
|
|
893
|
-
readonly worried: "๐";
|
|
894
|
-
readonly angry: "๐ ";
|
|
895
|
-
readonly rage: "๐ก";
|
|
896
|
-
readonly cry: "๐ข";
|
|
897
|
-
readonly persevere: "๐ฃ";
|
|
898
|
-
readonly triumph: "๐ค";
|
|
899
|
-
readonly disappointed_relieved: "๐ฅ";
|
|
900
|
-
readonly frowning: "๐ฆ";
|
|
901
|
-
readonly anguished: "๐ง";
|
|
902
|
-
readonly fearful: "๐จ";
|
|
903
|
-
readonly weary: "๐ฉ";
|
|
904
|
-
readonly sleepy: "๐ช";
|
|
905
|
-
readonly tired_face: "๐ซ";
|
|
906
|
-
readonly grimacing: "๐ฌ";
|
|
907
|
-
readonly sob: "๐ญ";
|
|
908
|
-
readonly open_mouth: "๐ฎ";
|
|
909
|
-
readonly hushed: "๐ฏ";
|
|
910
|
-
readonly cold_sweat: "๐ฐ";
|
|
911
|
-
readonly scream: "๐ฑ";
|
|
912
|
-
readonly astonished: "๐ฒ";
|
|
913
|
-
readonly flushed: "๐ณ";
|
|
914
|
-
readonly sleeping: "๐ด";
|
|
915
|
-
readonly dizzy_face: "๐ต";
|
|
916
|
-
readonly no_mouth: "๐ถ";
|
|
917
|
-
readonly mask: "๐ท";
|
|
918
|
-
readonly smile_cat: "๐ธ";
|
|
919
|
-
readonly joy_cat: "๐น";
|
|
920
|
-
readonly smiley_cat: "๐บ";
|
|
921
|
-
readonly heart_eyes_cat: "๐ป";
|
|
922
|
-
readonly smirk_cat: "๐ผ";
|
|
923
|
-
readonly kissing_cat: "๐ฝ";
|
|
924
|
-
readonly pouting_cat: "๐พ";
|
|
925
|
-
readonly crying_cat_face: "๐ฟ";
|
|
926
|
-
readonly scream_cat: "๐";
|
|
927
|
-
readonly slightly_frowning_face: "๐";
|
|
928
|
-
readonly slightly_smiling_face: "๐";
|
|
929
|
-
readonly upside_down_face: "๐";
|
|
930
|
-
readonly face_with_rolling_eyes: "๐";
|
|
931
|
-
readonly no_good: "๐
";
|
|
932
|
-
readonly ok_woman: "๐";
|
|
933
|
-
readonly bow: "๐";
|
|
934
|
-
readonly see_no_evil: "๐";
|
|
935
|
-
readonly hear_no_evil: "๐";
|
|
936
|
-
readonly speak_no_evil: "๐";
|
|
937
|
-
readonly raising_hand: "๐";
|
|
938
|
-
readonly raised_hands: "๐";
|
|
939
|
-
readonly person_frowning: "๐";
|
|
940
|
-
readonly person_with_pouting_face: "๐";
|
|
941
|
-
readonly pray: "๐";
|
|
942
|
-
readonly rocket: "๐";
|
|
943
|
-
readonly helicopter: "๐";
|
|
944
|
-
readonly steam_locomotive: "๐";
|
|
945
|
-
readonly railway_car: "๐";
|
|
946
|
-
readonly bullettrain_side: "๐";
|
|
947
|
-
readonly bullettrain_front: "๐
";
|
|
948
|
-
readonly train2: "๐";
|
|
949
|
-
readonly metro: "๐";
|
|
950
|
-
readonly light_rail: "๐";
|
|
951
|
-
readonly station: "๐";
|
|
952
|
-
readonly tram: "๐";
|
|
953
|
-
readonly train: "๐";
|
|
954
|
-
readonly bus: "๐";
|
|
955
|
-
readonly oncoming_bus: "๐";
|
|
956
|
-
readonly trolleybus: "๐";
|
|
957
|
-
readonly busstop: "๐";
|
|
958
|
-
readonly minibus: "๐";
|
|
959
|
-
readonly ambulance: "๐";
|
|
960
|
-
readonly fire_engine: "๐";
|
|
961
|
-
readonly police_car: "๐";
|
|
962
|
-
readonly oncoming_police_car: "๐";
|
|
963
|
-
readonly taxi: "๐";
|
|
964
|
-
readonly oncoming_taxi: "๐";
|
|
965
|
-
readonly car: "๐";
|
|
966
|
-
readonly red_car: "๐";
|
|
967
|
-
readonly oncoming_automobile: "๐";
|
|
968
|
-
readonly blue_car: "๐";
|
|
969
|
-
readonly truck: "๐";
|
|
970
|
-
readonly articulated_lorry: "๐";
|
|
971
|
-
readonly tractor: "๐";
|
|
972
|
-
readonly monorail: "๐";
|
|
973
|
-
readonly mountain_railway: "๐";
|
|
974
|
-
readonly suspension_railway: "๐";
|
|
975
|
-
readonly mountain_cableway: "๐ ";
|
|
976
|
-
readonly aerial_tramway: "๐ก";
|
|
977
|
-
readonly ship: "๐ข";
|
|
978
|
-
readonly rowboat: "๐ฃ";
|
|
979
|
-
readonly speedboat: "๐ค";
|
|
980
|
-
readonly traffic_light: "๐ฅ";
|
|
981
|
-
readonly vertical_traffic_light: "๐ฆ";
|
|
982
|
-
readonly construction: "๐ง";
|
|
983
|
-
readonly rotating_light: "๐จ";
|
|
984
|
-
readonly triangular_flag_on_post: "๐ฉ";
|
|
985
|
-
readonly door: "๐ช";
|
|
986
|
-
readonly no_entry_sign: "๐ซ";
|
|
987
|
-
readonly smoking: "๐ฌ";
|
|
988
|
-
readonly no_smoking: "๐ญ";
|
|
989
|
-
readonly put_litter_in_its_place: "๐ฎ";
|
|
990
|
-
readonly do_not_litter: "๐ฏ";
|
|
991
|
-
readonly potable_water: "๐ฐ";
|
|
992
|
-
readonly "non-potable_water": "๐ฑ";
|
|
993
|
-
readonly bike: "๐ฒ";
|
|
994
|
-
readonly no_bicycles: "๐ณ";
|
|
995
|
-
readonly bicyclist: "๐ด";
|
|
996
|
-
readonly mountain_bicyclist: "๐ต";
|
|
997
|
-
readonly walking: "๐ถ";
|
|
998
|
-
readonly no_pedestrians: "๐ท";
|
|
999
|
-
readonly children_crossing: "๐ธ";
|
|
1000
|
-
readonly mens: "๐น";
|
|
1001
|
-
readonly womens: "๐บ";
|
|
1002
|
-
readonly restroom: "๐ป";
|
|
1003
|
-
readonly baby_symbol: "๐ผ";
|
|
1004
|
-
readonly toilet: "๐ฝ";
|
|
1005
|
-
readonly wc: "๐พ";
|
|
1006
|
-
readonly shower: "๐ฟ";
|
|
1007
|
-
readonly bath: "๐";
|
|
1008
|
-
readonly bathtub: "๐";
|
|
1009
|
-
readonly passport_control: "๐";
|
|
1010
|
-
readonly customs: "๐";
|
|
1011
|
-
readonly baggage_claim: "๐";
|
|
1012
|
-
readonly left_luggage: "๐
";
|
|
1013
|
-
readonly couch_and_lamp: "๐";
|
|
1014
|
-
readonly sleeping_accommodation: "๐";
|
|
1015
|
-
readonly shopping_bags: "๐";
|
|
1016
|
-
readonly bellhop_bell: "๐";
|
|
1017
|
-
readonly bed: "๐";
|
|
1018
|
-
readonly place_of_worship: "๐";
|
|
1019
|
-
readonly hammer_and_wrench: "๐ ";
|
|
1020
|
-
readonly shield: "๐ก";
|
|
1021
|
-
readonly oil_drum: "๐ข";
|
|
1022
|
-
readonly motorway: "๐ฃ";
|
|
1023
|
-
readonly railway_track: "๐ค";
|
|
1024
|
-
readonly motor_boat: "๐ฅ";
|
|
1025
|
-
readonly small_airplane: "๐ฉ";
|
|
1026
|
-
readonly airplane_departure: "๐ซ";
|
|
1027
|
-
readonly airplane_arriving: "๐ฌ";
|
|
1028
|
-
readonly passenger_ship: "๐ณ";
|
|
1029
|
-
readonly zipper_mouth_face: "๐ค";
|
|
1030
|
-
readonly money_mouth_face: "๐ค";
|
|
1031
|
-
readonly face_with_thermometer: "๐ค";
|
|
1032
|
-
readonly nerd_face: "๐ค";
|
|
1033
|
-
readonly thinking_face: "๐ค";
|
|
1034
|
-
readonly face_with_head_bandage: "๐ค";
|
|
1035
|
-
readonly robot_face: "๐ค";
|
|
1036
|
-
readonly hugging_face: "๐ค";
|
|
1037
|
-
readonly the_horns: "๐ค";
|
|
1038
|
-
readonly sign_of_the_horns: "๐ค";
|
|
1039
|
-
readonly crab: "๐ฆ";
|
|
1040
|
-
readonly lion_face: "๐ฆ";
|
|
1041
|
-
readonly scorpion: "๐ฆ";
|
|
1042
|
-
readonly turkey: "๐ฆ";
|
|
1043
|
-
readonly unicorn_face: "๐ฆ";
|
|
1044
|
-
readonly cheese_wedge: "๐ง";
|
|
1045
|
-
readonly hash: "#๏ธโฃ";
|
|
1046
|
-
readonly keycap_star: "*โฃ";
|
|
1047
|
-
readonly zero: "0๏ธโฃ";
|
|
1048
|
-
readonly one: "1๏ธโฃ";
|
|
1049
|
-
readonly two: "2๏ธโฃ";
|
|
1050
|
-
readonly three: "3๏ธโฃ";
|
|
1051
|
-
readonly four: "4๏ธโฃ";
|
|
1052
|
-
readonly five: "5๏ธโฃ";
|
|
1053
|
-
readonly six: "6๏ธโฃ";
|
|
1054
|
-
readonly seven: "7๏ธโฃ";
|
|
1055
|
-
readonly eight: "8๏ธโฃ";
|
|
1056
|
-
readonly nine: "9๏ธโฃ";
|
|
1057
|
-
readonly "flag-ac": "๐ฆ๐จ";
|
|
1058
|
-
readonly "flag-ad": "๐ฆ๐ฉ";
|
|
1059
|
-
readonly "flag-ae": "๐ฆ๐ช";
|
|
1060
|
-
readonly "flag-af": "๐ฆ๐ซ";
|
|
1061
|
-
readonly "flag-ag": "๐ฆ๐ฌ";
|
|
1062
|
-
readonly "flag-ai": "๐ฆ๐ฎ";
|
|
1063
|
-
readonly "flag-al": "๐ฆ๐ฑ";
|
|
1064
|
-
readonly "flag-am": "๐ฆ๐ฒ";
|
|
1065
|
-
readonly "flag-ao": "๐ฆ๐ด";
|
|
1066
|
-
readonly "flag-aq": "๐ฆ๐ถ";
|
|
1067
|
-
readonly "flag-ar": "๐ฆ๐ท";
|
|
1068
|
-
readonly "flag-as": "๐ฆ๐ธ";
|
|
1069
|
-
readonly "flag-at": "๐ฆ๐น";
|
|
1070
|
-
readonly "flag-au": "๐ฆ๐บ";
|
|
1071
|
-
readonly "flag-aw": "๐ฆ๐ผ";
|
|
1072
|
-
readonly "flag-ax": "๐ฆ๐ฝ";
|
|
1073
|
-
readonly "flag-az": "๐ฆ๐ฟ";
|
|
1074
|
-
readonly "flag-ba": "๐ง๐ฆ";
|
|
1075
|
-
readonly "flag-bb": "๐ง๐ง";
|
|
1076
|
-
readonly "flag-bd": "๐ง๐ฉ";
|
|
1077
|
-
readonly "flag-be": "๐ง๐ช";
|
|
1078
|
-
readonly "flag-bf": "๐ง๐ซ";
|
|
1079
|
-
readonly "flag-bg": "๐ง๐ฌ";
|
|
1080
|
-
readonly "flag-bh": "๐ง๐ญ";
|
|
1081
|
-
readonly "flag-bi": "๐ง๐ฎ";
|
|
1082
|
-
readonly "flag-bj": "๐ง๐ฏ";
|
|
1083
|
-
readonly "flag-bl": "๐ง๐ฑ";
|
|
1084
|
-
readonly "flag-bm": "๐ง๐ฒ";
|
|
1085
|
-
readonly "flag-bn": "๐ง๐ณ";
|
|
1086
|
-
readonly "flag-bo": "๐ง๐ด";
|
|
1087
|
-
readonly "flag-bq": "๐ง๐ถ";
|
|
1088
|
-
readonly "flag-br": "๐ง๐ท";
|
|
1089
|
-
readonly "flag-bs": "๐ง๐ธ";
|
|
1090
|
-
readonly "flag-bt": "๐ง๐น";
|
|
1091
|
-
readonly "flag-bv": "๐ง๐ป";
|
|
1092
|
-
readonly "flag-bw": "๐ง๐ผ";
|
|
1093
|
-
readonly "flag-by": "๐ง๐พ";
|
|
1094
|
-
readonly "flag-bz": "๐ง๐ฟ";
|
|
1095
|
-
readonly "flag-ca": "๐จ๐ฆ";
|
|
1096
|
-
readonly "flag-cc": "๐จ๐จ";
|
|
1097
|
-
readonly "flag-cd": "๐จ๐ฉ";
|
|
1098
|
-
readonly "flag-cf": "๐จ๐ซ";
|
|
1099
|
-
readonly "flag-cg": "๐จ๐ฌ";
|
|
1100
|
-
readonly "flag-ch": "๐จ๐ญ";
|
|
1101
|
-
readonly "flag-ci": "๐จ๐ฎ";
|
|
1102
|
-
readonly "flag-ck": "๐จ๐ฐ";
|
|
1103
|
-
readonly "flag-cl": "๐จ๐ฑ";
|
|
1104
|
-
readonly "flag-cm": "๐จ๐ฒ";
|
|
1105
|
-
readonly "flag-cn": "๐จ๐ณ";
|
|
1106
|
-
readonly cn: "๐จ๐ณ";
|
|
1107
|
-
readonly "flag-co": "๐จ๐ด";
|
|
1108
|
-
readonly "flag-cp": "๐จ๐ต";
|
|
1109
|
-
readonly "flag-cr": "๐จ๐ท";
|
|
1110
|
-
readonly "flag-cu": "๐จ๐บ";
|
|
1111
|
-
readonly "flag-cv": "๐จ๐ป";
|
|
1112
|
-
readonly "flag-cw": "๐จ๐ผ";
|
|
1113
|
-
readonly "flag-cx": "๐จ๐ฝ";
|
|
1114
|
-
readonly "flag-cy": "๐จ๐พ";
|
|
1115
|
-
readonly "flag-cz": "๐จ๐ฟ";
|
|
1116
|
-
readonly "flag-de": "๐ฉ๐ช";
|
|
1117
|
-
readonly de: "๐ฉ๐ช";
|
|
1118
|
-
readonly "flag-dg": "๐ฉ๐ฌ";
|
|
1119
|
-
readonly "flag-dj": "๐ฉ๐ฏ";
|
|
1120
|
-
readonly "flag-dk": "๐ฉ๐ฐ";
|
|
1121
|
-
readonly "flag-dm": "๐ฉ๐ฒ";
|
|
1122
|
-
readonly "flag-do": "๐ฉ๐ด";
|
|
1123
|
-
readonly "flag-dz": "๐ฉ๐ฟ";
|
|
1124
|
-
readonly "flag-ea": "๐ช๐ฆ";
|
|
1125
|
-
readonly "flag-ec": "๐ช๐จ";
|
|
1126
|
-
readonly "flag-ee": "๐ช๐ช";
|
|
1127
|
-
readonly "flag-eg": "๐ช๐ฌ";
|
|
1128
|
-
readonly "flag-eh": "๐ช๐ญ";
|
|
1129
|
-
readonly "flag-er": "๐ช๐ท";
|
|
1130
|
-
readonly "flag-es": "๐ช๐ธ";
|
|
1131
|
-
readonly es: "๐ช๐ธ";
|
|
1132
|
-
readonly "flag-et": "๐ช๐น";
|
|
1133
|
-
readonly "flag-eu": "๐ช๐บ";
|
|
1134
|
-
readonly "flag-fi": "๐ซ๐ฎ";
|
|
1135
|
-
readonly "flag-fj": "๐ซ๐ฏ";
|
|
1136
|
-
readonly "flag-fk": "๐ซ๐ฐ";
|
|
1137
|
-
readonly "flag-fm": "๐ซ๐ฒ";
|
|
1138
|
-
readonly "flag-fo": "๐ซ๐ด";
|
|
1139
|
-
readonly "flag-fr": "๐ซ๐ท";
|
|
1140
|
-
readonly fr: "๐ซ๐ท";
|
|
1141
|
-
readonly "flag-ga": "๐ฌ๐ฆ";
|
|
1142
|
-
readonly "flag-gb": "๐ฌ๐ง";
|
|
1143
|
-
readonly gb: "๐ฌ๐ง";
|
|
1144
|
-
readonly uk: "๐ฌ๐ง";
|
|
1145
|
-
readonly "flag-gd": "๐ฌ๐ฉ";
|
|
1146
|
-
readonly "flag-ge": "๐ฌ๐ช";
|
|
1147
|
-
readonly "flag-gf": "๐ฌ๐ซ";
|
|
1148
|
-
readonly "flag-gg": "๐ฌ๐ฌ";
|
|
1149
|
-
readonly "flag-gh": "๐ฌ๐ญ";
|
|
1150
|
-
readonly "flag-gi": "๐ฌ๐ฎ";
|
|
1151
|
-
readonly "flag-gl": "๐ฌ๐ฑ";
|
|
1152
|
-
readonly "flag-gm": "๐ฌ๐ฒ";
|
|
1153
|
-
readonly "flag-gn": "๐ฌ๐ณ";
|
|
1154
|
-
readonly "flag-gp": "๐ฌ๐ต";
|
|
1155
|
-
readonly "flag-gq": "๐ฌ๐ถ";
|
|
1156
|
-
readonly "flag-gr": "๐ฌ๐ท";
|
|
1157
|
-
readonly "flag-gs": "๐ฌ๐ธ";
|
|
1158
|
-
readonly "flag-gt": "๐ฌ๐น";
|
|
1159
|
-
readonly "flag-gu": "๐ฌ๐บ";
|
|
1160
|
-
readonly "flag-gw": "๐ฌ๐ผ";
|
|
1161
|
-
readonly "flag-gy": "๐ฌ๐พ";
|
|
1162
|
-
readonly "flag-hk": "๐ญ๐ฐ";
|
|
1163
|
-
readonly "flag-hm": "๐ญ๐ฒ";
|
|
1164
|
-
readonly "flag-hn": "๐ญ๐ณ";
|
|
1165
|
-
readonly "flag-hr": "๐ญ๐ท";
|
|
1166
|
-
readonly "flag-ht": "๐ญ๐น";
|
|
1167
|
-
readonly "flag-hu": "๐ญ๐บ";
|
|
1168
|
-
readonly "flag-ic": "๐ฎ๐จ";
|
|
1169
|
-
readonly "flag-id": "๐ฎ๐ฉ";
|
|
1170
|
-
readonly "flag-ie": "๐ฎ๐ช";
|
|
1171
|
-
readonly "flag-il": "๐ฎ๐ฑ";
|
|
1172
|
-
readonly "flag-im": "๐ฎ๐ฒ";
|
|
1173
|
-
readonly "flag-in": "๐ฎ๐ณ";
|
|
1174
|
-
readonly "flag-io": "๐ฎ๐ด";
|
|
1175
|
-
readonly "flag-iq": "๐ฎ๐ถ";
|
|
1176
|
-
readonly "flag-ir": "๐ฎ๐ท";
|
|
1177
|
-
readonly "flag-is": "๐ฎ๐ธ";
|
|
1178
|
-
readonly "flag-it": "๐ฎ๐น";
|
|
1179
|
-
readonly it: "๐ฎ๐น";
|
|
1180
|
-
readonly "flag-je": "๐ฏ๐ช";
|
|
1181
|
-
readonly "flag-jm": "๐ฏ๐ฒ";
|
|
1182
|
-
readonly "flag-jo": "๐ฏ๐ด";
|
|
1183
|
-
readonly "flag-jp": "๐ฏ๐ต";
|
|
1184
|
-
readonly jp: "๐ฏ๐ต";
|
|
1185
|
-
readonly "flag-ke": "๐ฐ๐ช";
|
|
1186
|
-
readonly "flag-kg": "๐ฐ๐ฌ";
|
|
1187
|
-
readonly "flag-kh": "๐ฐ๐ญ";
|
|
1188
|
-
readonly "flag-ki": "๐ฐ๐ฎ";
|
|
1189
|
-
readonly "flag-km": "๐ฐ๐ฒ";
|
|
1190
|
-
readonly "flag-kn": "๐ฐ๐ณ";
|
|
1191
|
-
readonly "flag-kp": "๐ฐ๐ต";
|
|
1192
|
-
readonly "flag-kr": "๐ฐ๐ท";
|
|
1193
|
-
readonly kr: "๐ฐ๐ท";
|
|
1194
|
-
readonly "flag-kw": "๐ฐ๐ผ";
|
|
1195
|
-
readonly "flag-ky": "๐ฐ๐พ";
|
|
1196
|
-
readonly "flag-kz": "๐ฐ๐ฟ";
|
|
1197
|
-
readonly "flag-la": "๐ฑ๐ฆ";
|
|
1198
|
-
readonly "flag-lb": "๐ฑ๐ง";
|
|
1199
|
-
readonly "flag-lc": "๐ฑ๐จ";
|
|
1200
|
-
readonly "flag-li": "๐ฑ๐ฎ";
|
|
1201
|
-
readonly "flag-lk": "๐ฑ๐ฐ";
|
|
1202
|
-
readonly "flag-lr": "๐ฑ๐ท";
|
|
1203
|
-
readonly "flag-ls": "๐ฑ๐ธ";
|
|
1204
|
-
readonly "flag-lt": "๐ฑ๐น";
|
|
1205
|
-
readonly "flag-lu": "๐ฑ๐บ";
|
|
1206
|
-
readonly "flag-lv": "๐ฑ๐ป";
|
|
1207
|
-
readonly "flag-ly": "๐ฑ๐พ";
|
|
1208
|
-
readonly "flag-ma": "๐ฒ๐ฆ";
|
|
1209
|
-
readonly "flag-mc": "๐ฒ๐จ";
|
|
1210
|
-
readonly "flag-md": "๐ฒ๐ฉ";
|
|
1211
|
-
readonly "flag-me": "๐ฒ๐ช";
|
|
1212
|
-
readonly "flag-mf": "๐ฒ๐ซ";
|
|
1213
|
-
readonly "flag-mg": "๐ฒ๐ฌ";
|
|
1214
|
-
readonly "flag-mh": "๐ฒ๐ญ";
|
|
1215
|
-
readonly "flag-mk": "๐ฒ๐ฐ";
|
|
1216
|
-
readonly "flag-ml": "๐ฒ๐ฑ";
|
|
1217
|
-
readonly "flag-mm": "๐ฒ๐ฒ";
|
|
1218
|
-
readonly "flag-mn": "๐ฒ๐ณ";
|
|
1219
|
-
readonly "flag-mo": "๐ฒ๐ด";
|
|
1220
|
-
readonly "flag-mp": "๐ฒ๐ต";
|
|
1221
|
-
readonly "flag-mq": "๐ฒ๐ถ";
|
|
1222
|
-
readonly "flag-mr": "๐ฒ๐ท";
|
|
1223
|
-
readonly "flag-ms": "๐ฒ๐ธ";
|
|
1224
|
-
readonly "flag-mt": "๐ฒ๐น";
|
|
1225
|
-
readonly "flag-mu": "๐ฒ๐บ";
|
|
1226
|
-
readonly "flag-mv": "๐ฒ๐ป";
|
|
1227
|
-
readonly "flag-mw": "๐ฒ๐ผ";
|
|
1228
|
-
readonly "flag-mx": "๐ฒ๐ฝ";
|
|
1229
|
-
readonly "flag-my": "๐ฒ๐พ";
|
|
1230
|
-
readonly "flag-mz": "๐ฒ๐ฟ";
|
|
1231
|
-
readonly "flag-na": "๐ณ๐ฆ";
|
|
1232
|
-
readonly "flag-nc": "๐ณ๐จ";
|
|
1233
|
-
readonly "flag-ne": "๐ณ๐ช";
|
|
1234
|
-
readonly "flag-nf": "๐ณ๐ซ";
|
|
1235
|
-
readonly "flag-ng": "๐ณ๐ฌ";
|
|
1236
|
-
readonly "flag-ni": "๐ณ๐ฎ";
|
|
1237
|
-
readonly "flag-nl": "๐ณ๐ฑ";
|
|
1238
|
-
readonly "flag-no": "๐ณ๐ด";
|
|
1239
|
-
readonly "flag-np": "๐ณ๐ต";
|
|
1240
|
-
readonly "flag-nr": "๐ณ๐ท";
|
|
1241
|
-
readonly "flag-nu": "๐ณ๐บ";
|
|
1242
|
-
readonly "flag-nz": "๐ณ๐ฟ";
|
|
1243
|
-
readonly "flag-om": "๐ด๐ฒ";
|
|
1244
|
-
readonly "flag-pa": "๐ต๐ฆ";
|
|
1245
|
-
readonly "flag-pe": "๐ต๐ช";
|
|
1246
|
-
readonly "flag-pf": "๐ต๐ซ";
|
|
1247
|
-
readonly "flag-pg": "๐ต๐ฌ";
|
|
1248
|
-
readonly "flag-ph": "๐ต๐ญ";
|
|
1249
|
-
readonly "flag-pk": "๐ต๐ฐ";
|
|
1250
|
-
readonly "flag-pl": "๐ต๐ฑ";
|
|
1251
|
-
readonly "flag-pm": "๐ต๐ฒ";
|
|
1252
|
-
readonly "flag-pn": "๐ต๐ณ";
|
|
1253
|
-
readonly "flag-pr": "๐ต๐ท";
|
|
1254
|
-
readonly "flag-ps": "๐ต๐ธ";
|
|
1255
|
-
readonly "flag-pt": "๐ต๐น";
|
|
1256
|
-
readonly "flag-pw": "๐ต๐ผ";
|
|
1257
|
-
readonly "flag-py": "๐ต๐พ";
|
|
1258
|
-
readonly "flag-qa": "๐ถ๐ฆ";
|
|
1259
|
-
readonly "flag-re": "๐ท๐ช";
|
|
1260
|
-
readonly "flag-ro": "๐ท๐ด";
|
|
1261
|
-
readonly "flag-rs": "๐ท๐ธ";
|
|
1262
|
-
readonly "flag-ru": "๐ท๐บ";
|
|
1263
|
-
readonly ru: "๐ท๐บ";
|
|
1264
|
-
readonly "flag-rw": "๐ท๐ผ";
|
|
1265
|
-
readonly "flag-sa": "๐ธ๐ฆ";
|
|
1266
|
-
readonly "flag-sb": "๐ธ๐ง";
|
|
1267
|
-
readonly "flag-sc": "๐ธ๐จ";
|
|
1268
|
-
readonly "flag-sd": "๐ธ๐ฉ";
|
|
1269
|
-
readonly "flag-se": "๐ธ๐ช";
|
|
1270
|
-
readonly "flag-sg": "๐ธ๐ฌ";
|
|
1271
|
-
readonly "flag-sh": "๐ธ๐ญ";
|
|
1272
|
-
readonly "flag-si": "๐ธ๐ฎ";
|
|
1273
|
-
readonly "flag-sj": "๐ธ๐ฏ";
|
|
1274
|
-
readonly "flag-sk": "๐ธ๐ฐ";
|
|
1275
|
-
readonly "flag-sl": "๐ธ๐ฑ";
|
|
1276
|
-
readonly "flag-sm": "๐ธ๐ฒ";
|
|
1277
|
-
readonly "flag-sn": "๐ธ๐ณ";
|
|
1278
|
-
readonly "flag-so": "๐ธ๐ด";
|
|
1279
|
-
readonly "flag-sr": "๐ธ๐ท";
|
|
1280
|
-
readonly "flag-ss": "๐ธ๐ธ";
|
|
1281
|
-
readonly "flag-st": "๐ธ๐น";
|
|
1282
|
-
readonly "flag-sv": "๐ธ๐ป";
|
|
1283
|
-
readonly "flag-sx": "๐ธ๐ฝ";
|
|
1284
|
-
readonly "flag-sy": "๐ธ๐พ";
|
|
1285
|
-
readonly "flag-sz": "๐ธ๐ฟ";
|
|
1286
|
-
readonly "flag-ta": "๐น๐ฆ";
|
|
1287
|
-
readonly "flag-tc": "๐น๐จ";
|
|
1288
|
-
readonly "flag-td": "๐น๐ฉ";
|
|
1289
|
-
readonly "flag-tf": "๐น๐ซ";
|
|
1290
|
-
readonly "flag-tg": "๐น๐ฌ";
|
|
1291
|
-
readonly "flag-th": "๐น๐ญ";
|
|
1292
|
-
readonly "flag-tj": "๐น๐ฏ";
|
|
1293
|
-
readonly "flag-tk": "๐น๐ฐ";
|
|
1294
|
-
readonly "flag-tl": "๐น๐ฑ";
|
|
1295
|
-
readonly "flag-tm": "๐น๐ฒ";
|
|
1296
|
-
readonly "flag-tn": "๐น๐ณ";
|
|
1297
|
-
readonly "flag-to": "๐น๐ด";
|
|
1298
|
-
readonly "flag-tr": "๐น๐ท";
|
|
1299
|
-
readonly "flag-tt": "๐น๐น";
|
|
1300
|
-
readonly "flag-tv": "๐น๐ป";
|
|
1301
|
-
readonly "flag-tw": "๐น๐ผ";
|
|
1302
|
-
readonly "flag-tz": "๐น๐ฟ";
|
|
1303
|
-
readonly "flag-ua": "๐บ๐ฆ";
|
|
1304
|
-
readonly "flag-ug": "๐บ๐ฌ";
|
|
1305
|
-
readonly "flag-um": "๐บ๐ฒ";
|
|
1306
|
-
readonly "flag-us": "๐บ๐ธ";
|
|
1307
|
-
readonly us: "๐บ๐ธ";
|
|
1308
|
-
readonly "flag-uy": "๐บ๐พ";
|
|
1309
|
-
readonly "flag-uz": "๐บ๐ฟ";
|
|
1310
|
-
readonly "flag-va": "๐ป๐ฆ";
|
|
1311
|
-
readonly "flag-vc": "๐ป๐จ";
|
|
1312
|
-
readonly "flag-ve": "๐ป๐ช";
|
|
1313
|
-
readonly "flag-vg": "๐ป๐ฌ";
|
|
1314
|
-
readonly "flag-vi": "๐ป๐ฎ";
|
|
1315
|
-
readonly "flag-vn": "๐ป๐ณ";
|
|
1316
|
-
readonly "flag-vu": "๐ป๐บ";
|
|
1317
|
-
readonly "flag-wf": "๐ผ๐ซ";
|
|
1318
|
-
readonly "flag-ws": "๐ผ๐ธ";
|
|
1319
|
-
readonly "flag-xk": "๐ฝ๐ฐ";
|
|
1320
|
-
readonly "flag-ye": "๐พ๐ช";
|
|
1321
|
-
readonly "flag-yt": "๐พ๐น";
|
|
1322
|
-
readonly "flag-za": "๐ฟ๐ฆ";
|
|
1323
|
-
readonly "flag-zm": "๐ฟ๐ฒ";
|
|
1324
|
-
readonly "flag-zw": "๐ฟ๐ผ";
|
|
1325
|
-
readonly "man-man-boy": "๐จโ๐จโ๐ฆ";
|
|
1326
|
-
readonly "man-man-boy-boy": "๐จโ๐จโ๐ฆโ๐ฆ";
|
|
1327
|
-
readonly "man-man-girl": "๐จโ๐จโ๐ง";
|
|
1328
|
-
readonly "man-man-girl-boy": "๐จโ๐จโ๐งโ๐ฆ";
|
|
1329
|
-
readonly "man-man-girl-girl": "๐จโ๐จโ๐งโ๐ง";
|
|
1330
|
-
readonly "man-woman-boy-boy": "๐จโ๐ฉโ๐ฆโ๐ฆ";
|
|
1331
|
-
readonly "man-woman-girl": "๐จโ๐ฉโ๐ง";
|
|
1332
|
-
readonly "man-woman-girl-boy": "๐จโ๐ฉโ๐งโ๐ฆ";
|
|
1333
|
-
readonly "man-woman-girl-girl": "๐จโ๐ฉโ๐งโ๐ง";
|
|
1334
|
-
readonly "man-heart-man": "๐จโโค๏ธโ๐จ";
|
|
1335
|
-
readonly "man-kiss-man": "๐จโโค๏ธโ๐โ๐จ";
|
|
1336
|
-
readonly "woman-woman-boy": "๐ฉโ๐ฉโ๐ฆ";
|
|
1337
|
-
readonly "woman-woman-boy-boy": "๐ฉโ๐ฉโ๐ฆโ๐ฆ";
|
|
1338
|
-
readonly "woman-woman-girl": "๐ฉโ๐ฉโ๐ง";
|
|
1339
|
-
readonly "woman-woman-girl-boy": "๐ฉโ๐ฉโ๐งโ๐ฆ";
|
|
1340
|
-
readonly "woman-woman-girl-girl": "๐ฉโ๐ฉโ๐งโ๐ง";
|
|
1341
|
-
readonly "woman-heart-woman": "๐ฉโโค๏ธโ๐ฉ";
|
|
1342
|
-
readonly "woman-kiss-woman": "๐ฉโโค๏ธโ๐โ๐ฉ";
|
|
1343
|
-
};
|