@trustchex/react-native-sdk 1.161.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 +49 -0
- package/README.md +223 -0
- package/TrustchexSDK.podspec +26 -0
- package/android/build.gradle +103 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +11 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/TrustchexSDKModule.kt +40 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/TrustchexSDKPackage.kt +61 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/barcodescanner/BarcodeScannerFrameProcessorPlugin.kt +301 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/BitmapUtils.kt +205 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/CropperPlugin.kt +72 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/FrameMetadata.kt +4 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/facedetector/FaceDetectorFrameProcessorPlugin.kt +303 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/textrecognition/TextRecognitionFrameProcessorPlugin.kt +115 -0
- package/ios/TrustchexSDK.h +5 -0
- package/ios/TrustchexSDK.mm +28 -0
- package/ios/VisionCameraPlugins/BarcodeScanner/BarcodeScannerFrameProcessorPlugin.mm +22 -0
- package/ios/VisionCameraPlugins/BarcodeScanner/BarcodeScannerFrameProcessorPlugin.swift +172 -0
- package/ios/VisionCameraPlugins/Cropper/Cropper-Bridging-Header.h +13 -0
- package/ios/VisionCameraPlugins/Cropper/Cropper.h +20 -0
- package/ios/VisionCameraPlugins/Cropper/Cropper.mm +22 -0
- package/ios/VisionCameraPlugins/Cropper/Cropper.swift +145 -0
- package/ios/VisionCameraPlugins/Cropper/CropperUtils.swift +49 -0
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin-Bridging-Header.h +4 -0
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin.mm +22 -0
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin.swift +320 -0
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin-Bridging-Header.h +4 -0
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin.mm +27 -0
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin.swift +144 -0
- package/lib/module/NativeTrustchexSDK.js +4 -0
- package/lib/module/Screens/Dynamic/ContractAcceptanceScreen.js +141 -0
- package/lib/module/Screens/Dynamic/IdentityDocumentEIDScanningScreen.js +140 -0
- package/lib/module/Screens/Dynamic/IdentityDocumentScanningScreen.js +100 -0
- package/lib/module/Screens/Dynamic/LivenessDetectionScreen.js +596 -0
- package/lib/module/Screens/Static/QrCodeScanningScreen.js +36 -0
- package/lib/module/Screens/Static/ResultScreen.js +627 -0
- package/lib/module/Screens/Static/VerificationSessionCheckScreen.js +381 -0
- package/lib/module/Shared/Animations/face-scan.json +1 -0
- package/lib/module/Shared/Animations/hole.json +76 -0
- package/lib/module/Shared/Animations/hologram-scan.json +1 -0
- package/lib/module/Shared/Animations/id-or-passport.json +1 -0
- package/lib/module/Shared/Animations/light.json +1 -0
- package/lib/module/Shared/Animations/loading.json +1 -0
- package/lib/module/Shared/Animations/nfc-scan.json +1 -0
- package/lib/module/Shared/Animations/nfc.json +1 -0
- package/lib/module/Shared/Animations/scanning.json +1 -0
- package/lib/module/Shared/Animations/success.json +1 -0
- package/lib/module/Shared/Assets/trustchex-logo-black.png +0 -0
- package/lib/module/Shared/Components/EIDScanner.js +372 -0
- package/lib/module/Shared/Components/FaceCamera.js +223 -0
- package/lib/module/Shared/Components/IdentityDocumentCamera.js +968 -0
- package/lib/module/Shared/Components/LanguageSelector.js +53 -0
- package/lib/module/Shared/Components/NativeCircularProgress.js +64 -0
- package/lib/module/Shared/Components/NativeProgressBar.js +53 -0
- package/lib/module/Shared/Components/NavigationManager.js +180 -0
- package/lib/module/Shared/Components/OTPCodeInput.js +74 -0
- package/lib/module/Shared/Components/QrCodeScannerCamera.js +262 -0
- package/lib/module/Shared/Contexts/AppContext.js +27 -0
- package/lib/module/Shared/EIDReader/abstractMRTDCardService.js +4 -0
- package/lib/module/Shared/EIDReader/accessKeySpec.js +1 -0
- package/lib/module/Shared/EIDReader/apduLevelBACCapable.js +1 -0
- package/lib/module/Shared/EIDReader/apduLevelReadBinaryCapable.js +3 -0
- package/lib/module/Shared/EIDReader/bacKey.js +112 -0
- package/lib/module/Shared/EIDReader/bacKeySpec.js +3 -0
- package/lib/module/Shared/EIDReader/cardFileInputStream.js +140 -0
- package/lib/module/Shared/EIDReader/cardService.js +31 -0
- package/lib/module/Shared/EIDReader/cbeff/biometricDataBlock.js +3 -0
- package/lib/module/Shared/EIDReader/cbeff/biometricDataBlockDecoder.js +3 -0
- package/lib/module/Shared/EIDReader/cbeff/biometricDataBlockEncoder.js +3 -0
- package/lib/module/Shared/EIDReader/cbeff/cbeffInfo.js +102 -0
- package/lib/module/Shared/EIDReader/cbeff/complexCBEFFInfo.js +46 -0
- package/lib/module/Shared/EIDReader/cbeff/faceDataBlockDecoder.js +8 -0
- package/lib/module/Shared/EIDReader/cbeff/iso781611.js +79 -0
- package/lib/module/Shared/EIDReader/cbeff/iso781611Decoder.js +141 -0
- package/lib/module/Shared/EIDReader/cbeff/iso781611Encoder.js +53 -0
- package/lib/module/Shared/EIDReader/cbeff/simpleCBEFFInfo.js +21 -0
- package/lib/module/Shared/EIDReader/cbeff/standardBiometricHeader.js +97 -0
- package/lib/module/Shared/EIDReader/cert/cvcPrincipal.js +48 -0
- package/lib/module/Shared/EIDReader/data/country.js +66 -0
- package/lib/module/Shared/EIDReader/data/gender.js +29 -0
- package/lib/module/Shared/EIDReader/data/isoCountry.js +283 -0
- package/lib/module/Shared/EIDReader/data/unicodeCountry.js +278 -0
- package/lib/module/Shared/EIDReader/defaultFileInfo.js +29 -0
- package/lib/module/Shared/EIDReader/defaultFileSystem.js +171 -0
- package/lib/module/Shared/EIDReader/eidReader.js +90 -0
- package/lib/module/Shared/EIDReader/eidService.js +280 -0
- package/lib/module/Shared/EIDReader/fileInfo.js +3 -0
- package/lib/module/Shared/EIDReader/fileSystemCardService.js +4 -0
- package/lib/module/Shared/EIDReader/fragment.js +17 -0
- package/lib/module/Shared/EIDReader/fragmentBuffer.js +130 -0
- package/lib/module/Shared/EIDReader/java/byteArrayInputStream.js +73 -0
- package/lib/module/Shared/EIDReader/java/byteArrayOutputStream.js +55 -0
- package/lib/module/Shared/EIDReader/java/dataInput.js +1 -0
- package/lib/module/Shared/EIDReader/java/dataInputStream.js +167 -0
- package/lib/module/Shared/EIDReader/java/dataOutputStream.js +91 -0
- package/lib/module/Shared/EIDReader/java/filterInputStream.js +134 -0
- package/lib/module/Shared/EIDReader/java/filterOutputStream.js +124 -0
- package/lib/module/Shared/EIDReader/java/inputStream.js +139 -0
- package/lib/module/Shared/EIDReader/java/inputStreamBuffer.js +144 -0
- package/lib/module/Shared/EIDReader/java/objectInputStream.js +39 -0
- package/lib/module/Shared/EIDReader/java/outputStream.js +77 -0
- package/lib/module/Shared/EIDReader/java/positionInputStream.js +50 -0
- package/lib/module/Shared/EIDReader/java/splittableInputStream.js +54 -0
- package/lib/module/Shared/EIDReader/lds/abstractImageInfo.js +137 -0
- package/lib/module/Shared/EIDReader/lds/abstractLDSFile.js +101 -0
- package/lib/module/Shared/EIDReader/lds/abstractLDSInfo.js +29 -0
- package/lib/module/Shared/EIDReader/lds/abstractListInfo.js +66 -0
- package/lib/module/Shared/EIDReader/lds/abstractTaggedLDSFile.js +65 -0
- package/lib/module/Shared/EIDReader/lds/cbeffDataGroup.js +118 -0
- package/lib/module/Shared/EIDReader/lds/cvcaFile.js +89 -0
- package/lib/module/Shared/EIDReader/lds/dataGroup.js +10 -0
- package/lib/module/Shared/EIDReader/lds/icao/comFile.js +101 -0
- package/lib/module/Shared/EIDReader/lds/icao/dg1File.js +33 -0
- package/lib/module/Shared/EIDReader/lds/icao/dg2File.js +42 -0
- package/lib/module/Shared/EIDReader/lds/icao/icaoCountry.js +114 -0
- package/lib/module/Shared/EIDReader/lds/icao/mrzInfo.js +1418 -0
- package/lib/module/Shared/EIDReader/lds/imageInfo.js +3 -0
- package/lib/module/Shared/EIDReader/lds/iso19794/faceImageInfo.js +817 -0
- package/lib/module/Shared/EIDReader/lds/iso19794/faceInfo.js +116 -0
- package/lib/module/Shared/EIDReader/lds/ldsElement.js +1 -0
- package/lib/module/Shared/EIDReader/lds/ldsFile.js +3 -0
- package/lib/module/Shared/EIDReader/nfcManagerCardService.js +44 -0
- package/lib/module/Shared/EIDReader/protocol/bacAPDUSender.js +83 -0
- package/lib/module/Shared/EIDReader/protocol/bacProtocol.js +70 -0
- package/lib/module/Shared/EIDReader/protocol/bacResult.js +32 -0
- package/lib/module/Shared/EIDReader/protocol/readBinaryAPDUSender.js +126 -0
- package/lib/module/Shared/EIDReader/protocol/secureMessagingAPDUSender.js +102 -0
- package/lib/module/Shared/EIDReader/secureMessagingWrapper.js +218 -0
- package/lib/module/Shared/EIDReader/smartcards/apduEvent.js +23 -0
- package/lib/module/Shared/EIDReader/smartcards/apduListener.js +3 -0
- package/lib/module/Shared/EIDReader/smartcards/apduWrapper.js +3 -0
- package/lib/module/Shared/EIDReader/smartcards/commandAPDU.js +124 -0
- package/lib/module/Shared/EIDReader/smartcards/fileSystemStructured.js +3 -0
- package/lib/module/Shared/EIDReader/smartcards/iso7816.js +107 -0
- package/lib/module/Shared/EIDReader/smartcards/responseAPDU.js +35 -0
- package/lib/module/Shared/EIDReader/tlv/asn1Constants.js +48 -0
- package/lib/module/Shared/EIDReader/tlv/tlv.utils.js +186 -0
- package/lib/module/Shared/EIDReader/tlv/tlvInputState.js +141 -0
- package/lib/module/Shared/EIDReader/tlv/tlvInputStream.js +180 -0
- package/lib/module/Shared/EIDReader/tlv/tlvOutputState.js +186 -0
- package/lib/module/Shared/EIDReader/tlv/tlvOutputStream.js +85 -0
- package/lib/module/Shared/EIDReader/tripleDesSecureMessagingWrapper.js +37 -0
- package/lib/module/Shared/EIDReader/utils/crypto.utils.js +218 -0
- package/lib/module/Shared/EIDReader/utils/random.js +166 -0
- package/lib/module/Shared/EIDReader/wrappedAPDUEvent.js +16 -0
- package/lib/module/Shared/Libs/camera.utils.js +32 -0
- package/lib/module/Shared/Libs/contains.js +40 -0
- package/lib/module/Shared/Libs/crypto.utils.js +35 -0
- package/lib/module/Shared/Libs/debounce.utils.js +35 -0
- package/lib/module/Shared/Libs/deeplink.utils.js +20 -0
- package/lib/module/Shared/Libs/demo.utils.js +57 -0
- package/lib/module/Shared/Libs/http-client.js +104 -0
- package/lib/module/Shared/Libs/mrz.utils.js +99 -0
- package/lib/module/Shared/Libs/native-device-info.utils.js +44 -0
- package/lib/module/Shared/Libs/native-keep-awake.utils.js +85 -0
- package/lib/module/Shared/Libs/opencv.utils.js +21 -0
- package/lib/module/Shared/Libs/promise.utils.js +17 -0
- package/lib/module/Shared/Libs/tts.utils.js +31 -0
- package/lib/module/Shared/Types/identificationInfo.js +3 -0
- package/lib/module/Shared/Types/instruction.js +1 -0
- package/lib/module/Shared/Types/livenessIntructionType.js +1 -0
- package/lib/module/Shared/Types/verificationSession.js +3 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/components/BarcodeCamera.js +66 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.js +46 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.js +34 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/index.js +21 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.js +24 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/types.js +3 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.js +197 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.js +101 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.js +60 -0
- package/lib/module/Shared/VisionCameraPlugins/Cropper/index.js +47 -0
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/Camera.js +42 -0
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/detectFaces.js +35 -0
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/index.js +4 -0
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/types.js +3 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/Camera.js +56 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.js +20 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.js +9 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/index.js +6 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/scanText.js +20 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/translateText.js +19 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/types.js +3 -0
- package/lib/module/Translation/Resources/en.js +109 -0
- package/lib/module/Translation/Resources/index.js +4 -0
- package/lib/module/Translation/Resources/tr.js +112 -0
- package/lib/module/Translation/index.js +27 -0
- package/lib/module/Trustchex.js +149 -0
- package/lib/module/index.js +5 -0
- package/lib/module/package.json +1 -0
- package/lib/typescript/package.json +1 -0
- package/lib/typescript/src/NativeTrustchexSDK.d.ts +8 -0
- package/lib/typescript/src/NativeTrustchexSDK.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Dynamic/ContractAcceptanceScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Dynamic/ContractAcceptanceScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentScanningScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentScanningScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Dynamic/LivenessDetectionScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Dynamic/LivenessDetectionScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Static/QrCodeScanningScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Static/QrCodeScanningScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Static/ResultScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Static/ResultScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Static/VerificationSessionCheckScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Static/VerificationSessionCheckScreen.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/EIDScanner.d.ts +12 -0
- package/lib/typescript/src/Shared/Components/EIDScanner.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/FaceCamera.d.ts +9 -0
- package/lib/typescript/src/Shared/Components/FaceCamera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/IdentityDocumentCamera.d.ts +58 -0
- package/lib/typescript/src/Shared/Components/IdentityDocumentCamera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/LanguageSelector.d.ts +3 -0
- package/lib/typescript/src/Shared/Components/LanguageSelector.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/NativeCircularProgress.d.ts +13 -0
- package/lib/typescript/src/Shared/Components/NativeCircularProgress.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/NativeProgressBar.d.ts +12 -0
- package/lib/typescript/src/Shared/Components/NativeProgressBar.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/NavigationManager.d.ts +11 -0
- package/lib/typescript/src/Shared/Components/NavigationManager.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/OTPCodeInput.d.ts +10 -0
- package/lib/typescript/src/Shared/Components/OTPCodeInput.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/QrCodeScannerCamera.d.ts +6 -0
- package/lib/typescript/src/Shared/Components/QrCodeScannerCamera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Contexts/AppContext.d.ts +20 -0
- package/lib/typescript/src/Shared/Contexts/AppContext.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/abstractMRTDCardService.d.ts +50 -0
- package/lib/typescript/src/Shared/EIDReader/abstractMRTDCardService.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/accessKeySpec.d.ts +16 -0
- package/lib/typescript/src/Shared/EIDReader/accessKeySpec.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/apduLevelBACCapable.d.ts +5 -0
- package/lib/typescript/src/Shared/EIDReader/apduLevelBACCapable.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/apduLevelReadBinaryCapable.d.ts +8 -0
- package/lib/typescript/src/Shared/EIDReader/apduLevelReadBinaryCapable.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/bacKey.d.ts +65 -0
- package/lib/typescript/src/Shared/EIDReader/bacKey.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/bacKeySpec.d.ts +24 -0
- package/lib/typescript/src/Shared/EIDReader/bacKeySpec.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cardFileInputStream.d.ts +26 -0
- package/lib/typescript/src/Shared/EIDReader/cardFileInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cardService.d.ts +22 -0
- package/lib/typescript/src/Shared/EIDReader/cardService.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlock.d.ts +5 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlock.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlockDecoder.d.ts +7 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlockDecoder.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlockEncoder.d.ts +6 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlockEncoder.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/cbeffInfo.d.ts +61 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/cbeffInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/complexCBEFFInfo.d.ts +33 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/complexCBEFFInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/faceDataBlockDecoder.d.ts +8 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/faceDataBlockDecoder.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611.d.ts +60 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611Decoder.d.ts +19 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611Decoder.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611Encoder.d.ts +15 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611Encoder.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/simpleCBEFFInfo.d.ts +18 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/simpleCBEFFInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/standardBiometricHeader.d.ts +43 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/standardBiometricHeader.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cert/cvcPrincipal.d.ts +14 -0
- package/lib/typescript/src/Shared/EIDReader/cert/cvcPrincipal.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/data/country.d.ts +14 -0
- package/lib/typescript/src/Shared/EIDReader/data/country.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/data/gender.d.ts +14 -0
- package/lib/typescript/src/Shared/EIDReader/data/gender.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/data/isoCountry.d.ts +268 -0
- package/lib/typescript/src/Shared/EIDReader/data/isoCountry.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/data/unicodeCountry.d.ts +263 -0
- package/lib/typescript/src/Shared/EIDReader/data/unicodeCountry.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/defaultFileInfo.d.ts +14 -0
- package/lib/typescript/src/Shared/EIDReader/defaultFileInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/defaultFileSystem.d.ts +30 -0
- package/lib/typescript/src/Shared/EIDReader/defaultFileSystem.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/eidReader.d.ts +8 -0
- package/lib/typescript/src/Shared/EIDReader/eidReader.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/eidService.d.ts +150 -0
- package/lib/typescript/src/Shared/EIDReader/eidService.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/fileInfo.d.ts +5 -0
- package/lib/typescript/src/Shared/EIDReader/fileInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/fileSystemCardService.d.ts +28 -0
- package/lib/typescript/src/Shared/EIDReader/fileSystemCardService.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/fragment.d.ts +9 -0
- package/lib/typescript/src/Shared/EIDReader/fragment.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/fragmentBuffer.d.ts +22 -0
- package/lib/typescript/src/Shared/EIDReader/fragmentBuffer.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/byteArrayInputStream.d.ts +22 -0
- package/lib/typescript/src/Shared/EIDReader/java/byteArrayInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/byteArrayOutputStream.d.ts +18 -0
- package/lib/typescript/src/Shared/EIDReader/java/byteArrayOutputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataInput.d.ts +17 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataInput.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataInputStream.d.ts +28 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataOutputStream.d.ts +18 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataOutputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/filterInputStream.d.ts +103 -0
- package/lib/typescript/src/Shared/EIDReader/java/filterInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/filterOutputStream.d.ts +83 -0
- package/lib/typescript/src/Shared/EIDReader/java/filterOutputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/inputStream.d.ts +21 -0
- package/lib/typescript/src/Shared/EIDReader/java/inputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/inputStreamBuffer.d.ts +32 -0
- package/lib/typescript/src/Shared/EIDReader/java/inputStreamBuffer.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/objectInputStream.d.ts +11 -0
- package/lib/typescript/src/Shared/EIDReader/java/objectInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/outputStream.d.ts +64 -0
- package/lib/typescript/src/Shared/EIDReader/java/outputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/positionInputStream.d.ts +17 -0
- package/lib/typescript/src/Shared/EIDReader/java/positionInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/splittableInputStream.d.ts +19 -0
- package/lib/typescript/src/Shared/EIDReader/java/splittableInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractImageInfo.d.ts +50 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractImageInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractLDSFile.d.ts +71 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractLDSFile.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractLDSInfo.d.ts +19 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractLDSInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractListInfo.d.ts +45 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractListInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractTaggedLDSFile.d.ts +18 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractTaggedLDSFile.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/cbeffDataGroup.d.ts +59 -0
- package/lib/typescript/src/Shared/EIDReader/lds/cbeffDataGroup.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/cvcaFile.d.ts +19 -0
- package/lib/typescript/src/Shared/EIDReader/lds/cvcaFile.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/dataGroup.d.ts +8 -0
- package/lib/typescript/src/Shared/EIDReader/lds/dataGroup.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/comFile.d.ts +22 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/comFile.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/dg1File.d.ts +13 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/dg1File.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/dg2File.d.ts +14 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/dg2File.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/icaoCountry.d.ts +80 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/icaoCountry.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/mrzInfo.d.ts +579 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/mrzInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/imageInfo.d.ts +52 -0
- package/lib/typescript/src/Shared/EIDReader/lds/imageInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/iso19794/faceImageInfo.d.ts +392 -0
- package/lib/typescript/src/Shared/EIDReader/lds/iso19794/faceImageInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/iso19794/faceInfo.d.ts +22 -0
- package/lib/typescript/src/Shared/EIDReader/lds/iso19794/faceInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/ldsElement.d.ts +9 -0
- package/lib/typescript/src/Shared/EIDReader/lds/ldsElement.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/ldsFile.d.ts +10 -0
- package/lib/typescript/src/Shared/EIDReader/lds/ldsFile.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/nfcManagerCardService.d.ts +13 -0
- package/lib/typescript/src/Shared/EIDReader/nfcManagerCardService.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacAPDUSender.d.ts +9 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacAPDUSender.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacProtocol.d.ts +17 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacProtocol.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacResult.d.ts +26 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacResult.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/readBinaryAPDUSender.d.ts +15 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/readBinaryAPDUSender.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/secureMessagingAPDUSender.d.ts +19 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/secureMessagingAPDUSender.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/secureMessagingWrapper.d.ts +30 -0
- package/lib/typescript/src/Shared/EIDReader/secureMessagingWrapper.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduEvent.d.ts +15 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduEvent.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduListener.d.ts +5 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduListener.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduWrapper.d.ts +8 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduWrapper.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/commandAPDU.d.ts +20 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/commandAPDU.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/fileSystemStructured.d.ts +7 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/fileSystemStructured.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/iso7816.d.ts +101 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/iso7816.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/responseAPDU.d.ts +13 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/responseAPDU.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/asn1Constants.d.ts +36 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/asn1Constants.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.utils.d.ts +44 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvInputState.d.ts +34 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvInputState.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvInputStream.d.ts +23 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvOutputState.d.ts +24 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvOutputState.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvOutputStream.d.ts +16 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvOutputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tripleDesSecureMessagingWrapper.d.ts +10 -0
- package/lib/typescript/src/Shared/EIDReader/tripleDesSecureMessagingWrapper.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/utils/crypto.utils.d.ts +16 -0
- package/lib/typescript/src/Shared/EIDReader/utils/crypto.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/utils/random.d.ts +25 -0
- package/lib/typescript/src/Shared/EIDReader/utils/random.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/wrappedAPDUEvent.d.ts +11 -0
- package/lib/typescript/src/Shared/EIDReader/wrappedAPDUEvent.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/camera.utils.d.ts +5 -0
- package/lib/typescript/src/Shared/Libs/camera.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/contains.d.ts +14 -0
- package/lib/typescript/src/Shared/Libs/contains.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/crypto.utils.d.ts +9 -0
- package/lib/typescript/src/Shared/Libs/crypto.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/debounce.utils.d.ts +10 -0
- package/lib/typescript/src/Shared/Libs/debounce.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/deeplink.utils.d.ts +5 -0
- package/lib/typescript/src/Shared/Libs/deeplink.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/demo.utils.d.ts +5 -0
- package/lib/typescript/src/Shared/Libs/demo.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/http-client.d.ts +27 -0
- package/lib/typescript/src/Shared/Libs/http-client.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/mrz.utils.d.ts +9 -0
- package/lib/typescript/src/Shared/Libs/mrz.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/native-device-info.utils.d.ts +14 -0
- package/lib/typescript/src/Shared/Libs/native-device-info.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/native-keep-awake.utils.d.ts +31 -0
- package/lib/typescript/src/Shared/Libs/native-keep-awake.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/opencv.utils.d.ts +3 -0
- package/lib/typescript/src/Shared/Libs/opencv.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/promise.utils.d.ts +3 -0
- package/lib/typescript/src/Shared/Libs/promise.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/tts.utils.d.ts +6 -0
- package/lib/typescript/src/Shared/Libs/tts.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Types/identificationInfo.d.ts +57 -0
- package/lib/typescript/src/Shared/Types/identificationInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Types/instruction.d.ts +5 -0
- package/lib/typescript/src/Shared/Types/instruction.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Types/livenessIntructionType.d.ts +2 -0
- package/lib/typescript/src/Shared/Types/livenessIntructionType.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Types/verificationSession.d.ts +16 -0
- package/lib/typescript/src/Shared/Types/verificationSession.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/components/BarcodeCamera.d.ts +13 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/components/BarcodeCamera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.d.ts +13 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.d.ts +6 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/index.d.ts +14 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/index.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/types.d.ts +52 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/types.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.d.ts +62 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.d.ts +34 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.d.ts +32 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/Cropper/index.d.ts +23 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/Cropper/index.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/Camera.d.ts +9 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/Camera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/index.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/index.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/types.d.ts +79 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/types.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/Camera.d.ts +6 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/Camera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/index.d.ts +5 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/index.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/scanText.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/scanText.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/translateText.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/translateText.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/types.d.ts +67 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/types.d.ts.map +1 -0
- package/lib/typescript/src/Translation/Resources/en.d.ts +109 -0
- package/lib/typescript/src/Translation/Resources/en.d.ts.map +1 -0
- package/lib/typescript/src/Translation/Resources/index.d.ts +3 -0
- package/lib/typescript/src/Translation/Resources/index.d.ts.map +1 -0
- package/lib/typescript/src/Translation/Resources/tr.d.ts +112 -0
- package/lib/typescript/src/Translation/Resources/tr.d.ts.map +1 -0
- package/lib/typescript/src/Translation/index.d.ts +3 -0
- package/lib/typescript/src/Translation/index.d.ts.map +1 -0
- package/lib/typescript/src/Trustchex.d.ts +18 -0
- package/lib/typescript/src/Trustchex.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +4 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/package.json +288 -0
- package/src/NativeTrustchexSDK.ts +9 -0
- package/src/Screens/Dynamic/ContractAcceptanceScreen.tsx +165 -0
- package/src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.tsx +205 -0
- package/src/Screens/Dynamic/IdentityDocumentScanningScreen.tsx +152 -0
- package/src/Screens/Dynamic/LivenessDetectionScreen.tsx +699 -0
- package/src/Screens/Static/QrCodeScanningScreen.tsx +37 -0
- package/src/Screens/Static/ResultScreen.tsx +877 -0
- package/src/Screens/Static/VerificationSessionCheckScreen.tsx +524 -0
- package/src/Shared/Animations/face-scan.json +1 -0
- package/src/Shared/Animations/hole.json +76 -0
- package/src/Shared/Animations/hologram-scan.json +1 -0
- package/src/Shared/Animations/id-or-passport.json +1 -0
- package/src/Shared/Animations/light.json +1 -0
- package/src/Shared/Animations/loading.json +1 -0
- package/src/Shared/Animations/nfc-scan.json +1 -0
- package/src/Shared/Animations/nfc.json +1 -0
- package/src/Shared/Animations/scanning.json +1 -0
- package/src/Shared/Animations/success.json +1 -0
- package/src/Shared/Assets/trustchex-logo-black.png +0 -0
- package/src/Shared/Components/EIDScanner.tsx +472 -0
- package/src/Shared/Components/FaceCamera.tsx +267 -0
- package/src/Shared/Components/IdentityDocumentCamera.tsx +1377 -0
- package/src/Shared/Components/LanguageSelector.tsx +62 -0
- package/src/Shared/Components/NativeCircularProgress.tsx +76 -0
- package/src/Shared/Components/NativeProgressBar.tsx +74 -0
- package/src/Shared/Components/NavigationManager.tsx +275 -0
- package/src/Shared/Components/OTPCodeInput.tsx +93 -0
- package/src/Shared/Components/QrCodeScannerCamera.tsx +306 -0
- package/src/Shared/Contexts/AppContext.ts +47 -0
- package/src/Shared/EIDReader/abstractMRTDCardService.ts +195 -0
- package/src/Shared/EIDReader/accessKeySpec.ts +16 -0
- package/src/Shared/EIDReader/apduLevelBACCapable.ts +10 -0
- package/src/Shared/EIDReader/apduLevelReadBinaryCapable.ts +15 -0
- package/src/Shared/EIDReader/bacKey.ts +132 -0
- package/src/Shared/EIDReader/bacKeySpec.ts +26 -0
- package/src/Shared/EIDReader/cardFileInputStream.ts +188 -0
- package/src/Shared/EIDReader/cardService.ts +51 -0
- package/src/Shared/EIDReader/cbeff/biometricDataBlock.ts +5 -0
- package/src/Shared/EIDReader/cbeff/biometricDataBlockDecoder.ts +12 -0
- package/src/Shared/EIDReader/cbeff/biometricDataBlockEncoder.ts +6 -0
- package/src/Shared/EIDReader/cbeff/cbeffInfo.ts +100 -0
- package/src/Shared/EIDReader/cbeff/complexCBEFFInfo.ts +48 -0
- package/src/Shared/EIDReader/cbeff/faceDataBlockDecoder.ts +17 -0
- package/src/Shared/EIDReader/cbeff/iso781611.ts +79 -0
- package/src/Shared/EIDReader/cbeff/iso781611Decoder.ts +242 -0
- package/src/Shared/EIDReader/cbeff/iso781611Encoder.ts +91 -0
- package/src/Shared/EIDReader/cbeff/simpleCBEFFInfo.ts +26 -0
- package/src/Shared/EIDReader/cbeff/standardBiometricHeader.ts +116 -0
- package/src/Shared/EIDReader/cert/cvcPrincipal.ts +63 -0
- package/src/Shared/EIDReader/data/country.ts +76 -0
- package/src/Shared/EIDReader/data/gender.ts +36 -0
- package/src/Shared/EIDReader/data/isoCountry.ts +1251 -0
- package/src/Shared/EIDReader/data/unicodeCountry.ts +1516 -0
- package/src/Shared/EIDReader/defaultFileInfo.ts +41 -0
- package/src/Shared/EIDReader/defaultFileSystem.ts +287 -0
- package/src/Shared/EIDReader/eidReader.ts +113 -0
- package/src/Shared/EIDReader/eidService.ts +349 -0
- package/src/Shared/EIDReader/fileInfo.ts +5 -0
- package/src/Shared/EIDReader/fileSystemCardService.ts +32 -0
- package/src/Shared/EIDReader/fragment.ts +21 -0
- package/src/Shared/EIDReader/fragmentBuffer.ts +191 -0
- package/src/Shared/EIDReader/java/byteArrayInputStream.ts +103 -0
- package/src/Shared/EIDReader/java/byteArrayOutputStream.ts +67 -0
- package/src/Shared/EIDReader/java/dataInput.ts +16 -0
- package/src/Shared/EIDReader/java/dataInputStream.ts +203 -0
- package/src/Shared/EIDReader/java/dataOutputStream.ts +107 -0
- package/src/Shared/EIDReader/java/filterInputStream.ts +138 -0
- package/src/Shared/EIDReader/java/filterOutputStream.ts +126 -0
- package/src/Shared/EIDReader/java/inputStream.ts +186 -0
- package/src/Shared/EIDReader/java/inputStreamBuffer.ts +200 -0
- package/src/Shared/EIDReader/java/objectInputStream.ts +45 -0
- package/src/Shared/EIDReader/java/outputStream.ts +76 -0
- package/src/Shared/EIDReader/java/positionInputStream.ts +64 -0
- package/src/Shared/EIDReader/java/splittableInputStream.ts +69 -0
- package/src/Shared/EIDReader/lds/abstractImageInfo.ts +191 -0
- package/src/Shared/EIDReader/lds/abstractLDSFile.ts +106 -0
- package/src/Shared/EIDReader/lds/abstractLDSInfo.ts +31 -0
- package/src/Shared/EIDReader/lds/abstractListInfo.ts +72 -0
- package/src/Shared/EIDReader/lds/abstractTaggedLDSFile.ts +85 -0
- package/src/Shared/EIDReader/lds/cbeffDataGroup.ts +128 -0
- package/src/Shared/EIDReader/lds/cvcaFile.ts +112 -0
- package/src/Shared/EIDReader/lds/dataGroup.ts +11 -0
- package/src/Shared/EIDReader/lds/icao/comFile.ts +166 -0
- package/src/Shared/EIDReader/lds/icao/dg1File.ts +45 -0
- package/src/Shared/EIDReader/lds/icao/dg2File.ts +54 -0
- package/src/Shared/EIDReader/lds/icao/icaoCountry.ts +253 -0
- package/src/Shared/EIDReader/lds/icao/mrzInfo.ts +1669 -0
- package/src/Shared/EIDReader/lds/imageInfo.ts +58 -0
- package/src/Shared/EIDReader/lds/iso19794/faceImageInfo.ts +948 -0
- package/src/Shared/EIDReader/lds/iso19794/faceInfo.ts +198 -0
- package/src/Shared/EIDReader/lds/ldsElement.ts +8 -0
- package/src/Shared/EIDReader/lds/ldsFile.ts +14 -0
- package/src/Shared/EIDReader/nfcManagerCardService.ts +58 -0
- package/src/Shared/EIDReader/protocol/bacAPDUSender.ts +146 -0
- package/src/Shared/EIDReader/protocol/bacProtocol.ts +121 -0
- package/src/Shared/EIDReader/protocol/bacResult.ts +36 -0
- package/src/Shared/EIDReader/protocol/readBinaryAPDUSender.ts +251 -0
- package/src/Shared/EIDReader/protocol/secureMessagingAPDUSender.ts +170 -0
- package/src/Shared/EIDReader/secureMessagingWrapper.ts +361 -0
- package/src/Shared/EIDReader/smartcards/apduEvent.ts +38 -0
- package/src/Shared/EIDReader/smartcards/apduListener.ts +5 -0
- package/src/Shared/EIDReader/smartcards/apduWrapper.ts +10 -0
- package/src/Shared/EIDReader/smartcards/commandAPDU.ts +172 -0
- package/src/Shared/EIDReader/smartcards/fileSystemStructured.ts +7 -0
- package/src/Shared/EIDReader/smartcards/iso7816.ts +104 -0
- package/src/Shared/EIDReader/smartcards/responseAPDU.ts +44 -0
- package/src/Shared/EIDReader/tlv/asn1Constants.ts +46 -0
- package/src/Shared/EIDReader/tlv/tlv.utils.ts +201 -0
- package/src/Shared/EIDReader/tlv/tlvInputState.ts +186 -0
- package/src/Shared/EIDReader/tlv/tlvInputStream.ts +207 -0
- package/src/Shared/EIDReader/tlv/tlvOutputState.ts +244 -0
- package/src/Shared/EIDReader/tlv/tlvOutputStream.ts +112 -0
- package/src/Shared/EIDReader/tripleDesSecureMessagingWrapper.ts +48 -0
- package/src/Shared/EIDReader/utils/crypto.utils.ts +273 -0
- package/src/Shared/EIDReader/utils/random.ts +198 -0
- package/src/Shared/EIDReader/wrappedAPDUEvent.ts +36 -0
- package/src/Shared/Libs/camera.utils.ts +34 -0
- package/src/Shared/Libs/contains.ts +59 -0
- package/src/Shared/Libs/crypto.utils.ts +47 -0
- package/src/Shared/Libs/debounce.utils.ts +38 -0
- package/src/Shared/Libs/deeplink.utils.ts +19 -0
- package/src/Shared/Libs/demo.utils.ts +82 -0
- package/src/Shared/Libs/http-client.ts +148 -0
- package/src/Shared/Libs/mrz.utils.ts +110 -0
- package/src/Shared/Libs/native-device-info.utils.ts +50 -0
- package/src/Shared/Libs/native-keep-awake.utils.ts +104 -0
- package/src/Shared/Libs/opencv.utils.ts +40 -0
- package/src/Shared/Libs/promise.utils.ts +20 -0
- package/src/Shared/Libs/tts.utils.ts +40 -0
- package/src/Shared/Types/identificationInfo.ts +62 -0
- package/src/Shared/Types/instruction.ts +4 -0
- package/src/Shared/Types/livenessIntructionType.ts +8 -0
- package/src/Shared/Types/verificationSession.ts +17 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/components/BarcodeCamera.tsx +85 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.ts +79 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.ts +45 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/index.ts +64 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.ts +30 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/types.ts +82 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.ts +195 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.ts +135 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.ts +84 -0
- package/src/Shared/VisionCameraPlugins/Cropper/index.ts +78 -0
- package/src/Shared/VisionCameraPlugins/FaceDetector/Camera.tsx +63 -0
- package/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.ts +44 -0
- package/src/Shared/VisionCameraPlugins/FaceDetector/index.ts +3 -0
- package/src/Shared/VisionCameraPlugins/FaceDetector/types.ts +99 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/Camera.tsx +76 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.ts +18 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.ts +7 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/index.ts +7 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/scanText.ts +27 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/translateText.ts +21 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/types.ts +141 -0
- package/src/Translation/Resources/en.ts +151 -0
- package/src/Translation/Resources/index.ts +2 -0
- package/src/Translation/Resources/tr.ts +152 -0
- package/src/Translation/index.ts +37 -0
- package/src/Trustchex.tsx +171 -0
- package/src/index.tsx +5 -0
|
@@ -0,0 +1,1516 @@
|
|
|
1
|
+
import { Country } from './country';
|
|
2
|
+
|
|
3
|
+
export class UnicodeCountry extends Country {
|
|
4
|
+
public static AD = new UnicodeCountry(32, 'AD', 'AND', 'Andorra', 'Andorran');
|
|
5
|
+
public static AE = new UnicodeCountry(
|
|
6
|
+
1924,
|
|
7
|
+
'AE',
|
|
8
|
+
'ARE',
|
|
9
|
+
'United Arab Emirates',
|
|
10
|
+
'Emirati, Emirian'
|
|
11
|
+
);
|
|
12
|
+
public static AF = new UnicodeCountry(
|
|
13
|
+
4,
|
|
14
|
+
'AF',
|
|
15
|
+
'AFG',
|
|
16
|
+
'Afghanistan',
|
|
17
|
+
'Afghan'
|
|
18
|
+
);
|
|
19
|
+
public static AG = new UnicodeCountry(
|
|
20
|
+
40,
|
|
21
|
+
'AG',
|
|
22
|
+
'ATG',
|
|
23
|
+
'Antigua and Barbuda',
|
|
24
|
+
'Antiguan, Barbudan'
|
|
25
|
+
);
|
|
26
|
+
public static AI = new UnicodeCountry(
|
|
27
|
+
1632,
|
|
28
|
+
'AI',
|
|
29
|
+
'AIA',
|
|
30
|
+
'Anguilla',
|
|
31
|
+
'Anguillan'
|
|
32
|
+
);
|
|
33
|
+
public static AL = new UnicodeCountry(8, 'AL', 'ALB', 'Albania', 'Albanian');
|
|
34
|
+
public static AM = new UnicodeCountry(81, 'AM', 'ARM', 'Armenia', 'Armenian');
|
|
35
|
+
public static AN = new UnicodeCountry(
|
|
36
|
+
1328,
|
|
37
|
+
'AN',
|
|
38
|
+
'ANT',
|
|
39
|
+
'Netherlands Antilles',
|
|
40
|
+
'Antillean'
|
|
41
|
+
);
|
|
42
|
+
public static AO = new UnicodeCountry(36, 'AO', 'AGO', 'Angola', 'Angolan');
|
|
43
|
+
public static AQ = new UnicodeCountry(
|
|
44
|
+
16,
|
|
45
|
+
'AQ',
|
|
46
|
+
'ATA',
|
|
47
|
+
'Antarctica',
|
|
48
|
+
'Antarctic'
|
|
49
|
+
);
|
|
50
|
+
public static AR = new UnicodeCountry(
|
|
51
|
+
50,
|
|
52
|
+
'AR',
|
|
53
|
+
'ARG',
|
|
54
|
+
'Argentina',
|
|
55
|
+
'Argentine, Argentinean, Argentinian'
|
|
56
|
+
);
|
|
57
|
+
public static AS = new UnicodeCountry(
|
|
58
|
+
22,
|
|
59
|
+
'AS',
|
|
60
|
+
'ASM',
|
|
61
|
+
'American Samoa',
|
|
62
|
+
'American Samoan'
|
|
63
|
+
);
|
|
64
|
+
public static AT = new UnicodeCountry(64, 'AT', 'AUT', 'Austria', 'Austrian');
|
|
65
|
+
public static AU = new UnicodeCountry(
|
|
66
|
+
54,
|
|
67
|
+
'AU',
|
|
68
|
+
'AUS',
|
|
69
|
+
'Australia',
|
|
70
|
+
'Australian'
|
|
71
|
+
);
|
|
72
|
+
public static AW = new UnicodeCountry(1331, 'AW', 'ABW', 'Aruba', 'Aruban');
|
|
73
|
+
public static AX = new UnicodeCountry(584, 'AX', 'ALA', 'Åland Islands', '');
|
|
74
|
+
public static AZ = new UnicodeCountry(
|
|
75
|
+
49,
|
|
76
|
+
'AZ',
|
|
77
|
+
'AZE',
|
|
78
|
+
'Azerbaijan',
|
|
79
|
+
'Azerbaijani, Azeri'
|
|
80
|
+
);
|
|
81
|
+
public static BA = new UnicodeCountry(
|
|
82
|
+
112,
|
|
83
|
+
'BA',
|
|
84
|
+
'BIH',
|
|
85
|
+
'Bosnia and Herzegovina',
|
|
86
|
+
'Bosnian, Bosniak, Herzegovinian'
|
|
87
|
+
);
|
|
88
|
+
public static BB = new UnicodeCountry(
|
|
89
|
+
82,
|
|
90
|
+
'BB',
|
|
91
|
+
'BRB',
|
|
92
|
+
'Barbados',
|
|
93
|
+
'Barbadian'
|
|
94
|
+
);
|
|
95
|
+
public static BD = new UnicodeCountry(
|
|
96
|
+
80,
|
|
97
|
+
'BD',
|
|
98
|
+
'BGD',
|
|
99
|
+
'Bangladesh',
|
|
100
|
+
'Bangladeshi'
|
|
101
|
+
);
|
|
102
|
+
public static BE = new UnicodeCountry(86, 'BE', 'BEL', 'Belgium', 'Belgian');
|
|
103
|
+
public static BF = new UnicodeCountry(
|
|
104
|
+
2132,
|
|
105
|
+
'BF',
|
|
106
|
+
'BFA',
|
|
107
|
+
'Burkina Faso',
|
|
108
|
+
'Burkinabe'
|
|
109
|
+
);
|
|
110
|
+
public static BG = new UnicodeCountry(
|
|
111
|
+
256,
|
|
112
|
+
'BG',
|
|
113
|
+
'BGR',
|
|
114
|
+
'Bulgaria',
|
|
115
|
+
'Bulgarian'
|
|
116
|
+
);
|
|
117
|
+
public static BH = new UnicodeCountry(72, 'BH', 'BHR', 'Bahrain', 'Bahraini');
|
|
118
|
+
public static BI = new UnicodeCountry(
|
|
119
|
+
264,
|
|
120
|
+
'BI',
|
|
121
|
+
'BDI',
|
|
122
|
+
'Burundi',
|
|
123
|
+
'Burundian'
|
|
124
|
+
);
|
|
125
|
+
public static BJ = new UnicodeCountry(516, 'BJ', 'BEN', 'Benin', 'Beninese');
|
|
126
|
+
public static BL = new UnicodeCountry(
|
|
127
|
+
1618,
|
|
128
|
+
'BL',
|
|
129
|
+
'BLM',
|
|
130
|
+
'Saint Barthélemy',
|
|
131
|
+
''
|
|
132
|
+
);
|
|
133
|
+
public static BM = new UnicodeCountry(
|
|
134
|
+
96,
|
|
135
|
+
'BM',
|
|
136
|
+
'BMU',
|
|
137
|
+
'Bermuda',
|
|
138
|
+
'Bermudian, Bermudan'
|
|
139
|
+
);
|
|
140
|
+
public static BN = new UnicodeCountry(150, 'BN', 'BRN', 'Brunei', 'Bruneian');
|
|
141
|
+
public static BO = new UnicodeCountry(
|
|
142
|
+
104,
|
|
143
|
+
'BO',
|
|
144
|
+
'BOL',
|
|
145
|
+
'Bolivia',
|
|
146
|
+
'Bolivian'
|
|
147
|
+
);
|
|
148
|
+
public static BR = new UnicodeCountry(
|
|
149
|
+
118,
|
|
150
|
+
'BR',
|
|
151
|
+
'BRA',
|
|
152
|
+
'Brazil',
|
|
153
|
+
'Brazilian'
|
|
154
|
+
);
|
|
155
|
+
public static BS = new UnicodeCountry(68, 'BS', 'BHS', 'Bahamas', 'Bahamian');
|
|
156
|
+
public static BT = new UnicodeCountry(
|
|
157
|
+
100,
|
|
158
|
+
'BT',
|
|
159
|
+
'BTN',
|
|
160
|
+
'Bhutan',
|
|
161
|
+
'Bhutanese'
|
|
162
|
+
);
|
|
163
|
+
public static BV = new UnicodeCountry(116, 'BV', 'BVT', 'Bouvet Island', '');
|
|
164
|
+
public static BW = new UnicodeCountry(
|
|
165
|
+
114,
|
|
166
|
+
'BW',
|
|
167
|
+
'BWA',
|
|
168
|
+
'Botswana',
|
|
169
|
+
'Botswanan'
|
|
170
|
+
);
|
|
171
|
+
public static BY = new UnicodeCountry(
|
|
172
|
+
274,
|
|
173
|
+
'BY',
|
|
174
|
+
'BLR',
|
|
175
|
+
'Belarus',
|
|
176
|
+
'Belarusian'
|
|
177
|
+
);
|
|
178
|
+
public static BZ = new UnicodeCountry(132, 'BZ', 'BLZ', 'Belize', 'Belizean');
|
|
179
|
+
public static CA = new UnicodeCountry(292, 'CA', 'CAN', 'Canada', 'Canadian');
|
|
180
|
+
public static CC = new UnicodeCountry(
|
|
181
|
+
358,
|
|
182
|
+
'CC',
|
|
183
|
+
'CCK',
|
|
184
|
+
'Cocos [Keeling] Islands',
|
|
185
|
+
''
|
|
186
|
+
);
|
|
187
|
+
public static CD = new UnicodeCountry(
|
|
188
|
+
384,
|
|
189
|
+
'CD',
|
|
190
|
+
'COD',
|
|
191
|
+
'Congo - Kinshasa',
|
|
192
|
+
'Congolese'
|
|
193
|
+
);
|
|
194
|
+
public static CF = new UnicodeCountry(
|
|
195
|
+
320,
|
|
196
|
+
'CF',
|
|
197
|
+
'CAF',
|
|
198
|
+
'Central African Republic',
|
|
199
|
+
'Central African'
|
|
200
|
+
);
|
|
201
|
+
public static CG = new UnicodeCountry(
|
|
202
|
+
376,
|
|
203
|
+
'CG',
|
|
204
|
+
'COG',
|
|
205
|
+
'Congo - Brazzaville',
|
|
206
|
+
'Congolese'
|
|
207
|
+
);
|
|
208
|
+
public static CH = new UnicodeCountry(
|
|
209
|
+
1878,
|
|
210
|
+
'CH',
|
|
211
|
+
'CHE',
|
|
212
|
+
'Switzerland',
|
|
213
|
+
'Swiss'
|
|
214
|
+
);
|
|
215
|
+
public static CI = new UnicodeCountry(
|
|
216
|
+
900,
|
|
217
|
+
'CI',
|
|
218
|
+
'CIV',
|
|
219
|
+
'Côte d’Ivoire',
|
|
220
|
+
'Ivorian'
|
|
221
|
+
);
|
|
222
|
+
public static CK = new UnicodeCountry(388, 'CK', 'COK', 'Cook Islands', '');
|
|
223
|
+
public static CL = new UnicodeCountry(338, 'CL', 'CHL', 'Chile', 'Chilean');
|
|
224
|
+
public static CM = new UnicodeCountry(
|
|
225
|
+
288,
|
|
226
|
+
'CM',
|
|
227
|
+
'CMR',
|
|
228
|
+
'Cameroon',
|
|
229
|
+
'Cameroonian'
|
|
230
|
+
);
|
|
231
|
+
public static CN = new UnicodeCountry(342, 'CN', 'CHN', 'China', 'Chinese');
|
|
232
|
+
public static CO = new UnicodeCountry(
|
|
233
|
+
368,
|
|
234
|
+
'CO',
|
|
235
|
+
'COL',
|
|
236
|
+
'Colombia',
|
|
237
|
+
'Colombian'
|
|
238
|
+
);
|
|
239
|
+
public static CR = new UnicodeCountry(
|
|
240
|
+
392,
|
|
241
|
+
'CR',
|
|
242
|
+
'CRI',
|
|
243
|
+
'Costa Rica',
|
|
244
|
+
'Costa Rican'
|
|
245
|
+
);
|
|
246
|
+
public static CU = new UnicodeCountry(402, 'CU', 'CUB', 'Cuba', 'Cuban');
|
|
247
|
+
public static CV = new UnicodeCountry(
|
|
248
|
+
306,
|
|
249
|
+
'CV',
|
|
250
|
+
'CPV',
|
|
251
|
+
'Cape Verde',
|
|
252
|
+
'Cape Verdean'
|
|
253
|
+
);
|
|
254
|
+
public static CX = new UnicodeCountry(
|
|
255
|
+
354,
|
|
256
|
+
'CX',
|
|
257
|
+
'CXR',
|
|
258
|
+
'Christmas Island',
|
|
259
|
+
''
|
|
260
|
+
);
|
|
261
|
+
public static CY = new UnicodeCountry(406, 'CY', 'CYP', 'Cyprus', 'Cypriot');
|
|
262
|
+
public static CZ = new UnicodeCountry(
|
|
263
|
+
515,
|
|
264
|
+
'CZ',
|
|
265
|
+
'CZE',
|
|
266
|
+
'Czech Republic',
|
|
267
|
+
'Czech'
|
|
268
|
+
);
|
|
269
|
+
public static DE = new UnicodeCountry(630, 'DE', 'DEU', 'Germany', 'German');
|
|
270
|
+
public static DJ = new UnicodeCountry(
|
|
271
|
+
610,
|
|
272
|
+
'DJ',
|
|
273
|
+
'DJI',
|
|
274
|
+
'Djibouti',
|
|
275
|
+
'Djiboutian'
|
|
276
|
+
);
|
|
277
|
+
public static DK = new UnicodeCountry(520, 'DK', 'DNK', 'Denmark', 'Danish');
|
|
278
|
+
public static DM = new UnicodeCountry(
|
|
279
|
+
530,
|
|
280
|
+
'DM',
|
|
281
|
+
'DMA',
|
|
282
|
+
'Dominica',
|
|
283
|
+
'Dominican'
|
|
284
|
+
);
|
|
285
|
+
public static DO = new UnicodeCountry(
|
|
286
|
+
532,
|
|
287
|
+
'DO',
|
|
288
|
+
'DOM',
|
|
289
|
+
'Dominican Republic',
|
|
290
|
+
'Dominican'
|
|
291
|
+
);
|
|
292
|
+
public static DZ = new UnicodeCountry(18, 'DZ', 'DZA', 'Algeria', 'Algerian');
|
|
293
|
+
public static EC = new UnicodeCountry(
|
|
294
|
+
536,
|
|
295
|
+
'EC',
|
|
296
|
+
'ECU',
|
|
297
|
+
'Ecuador',
|
|
298
|
+
'Ecuadorian'
|
|
299
|
+
);
|
|
300
|
+
public static EE = new UnicodeCountry(
|
|
301
|
+
563,
|
|
302
|
+
'EE',
|
|
303
|
+
'EST',
|
|
304
|
+
'Estonia',
|
|
305
|
+
'Estonian'
|
|
306
|
+
);
|
|
307
|
+
public static EG = new UnicodeCountry(2072, 'EG', 'EGY', 'Egypt', 'Egyptian');
|
|
308
|
+
public static EH = new UnicodeCountry(
|
|
309
|
+
1842,
|
|
310
|
+
'EH',
|
|
311
|
+
'ESH',
|
|
312
|
+
'Western Sahara',
|
|
313
|
+
'Sahraw, Sahrawian, Sahraouian'
|
|
314
|
+
);
|
|
315
|
+
public static ER = new UnicodeCountry(
|
|
316
|
+
562,
|
|
317
|
+
'ER',
|
|
318
|
+
'ERI',
|
|
319
|
+
'Eritrea',
|
|
320
|
+
'Eritrean'
|
|
321
|
+
);
|
|
322
|
+
public static ES = new UnicodeCountry(1828, 'ES', 'ESP', 'Spain', 'Spanish');
|
|
323
|
+
public static ET = new UnicodeCountry(
|
|
324
|
+
561,
|
|
325
|
+
'ET',
|
|
326
|
+
'ETH',
|
|
327
|
+
'Ethiopia',
|
|
328
|
+
'Ethiopian'
|
|
329
|
+
);
|
|
330
|
+
public static FI = new UnicodeCountry(582, 'FI', 'FIN', 'Finland', 'Finnish');
|
|
331
|
+
public static FJ = new UnicodeCountry(578, 'FJ', 'FJI', 'Fiji', 'Fijian');
|
|
332
|
+
public static FK = new UnicodeCountry(
|
|
333
|
+
568,
|
|
334
|
+
'FK',
|
|
335
|
+
'FLK',
|
|
336
|
+
'Falkland Islands',
|
|
337
|
+
''
|
|
338
|
+
);
|
|
339
|
+
public static FM = new UnicodeCountry(
|
|
340
|
+
1411,
|
|
341
|
+
'FM',
|
|
342
|
+
'FSM',
|
|
343
|
+
'Micronesia',
|
|
344
|
+
'Micronesian'
|
|
345
|
+
);
|
|
346
|
+
public static FO = new UnicodeCountry(
|
|
347
|
+
564,
|
|
348
|
+
'FO',
|
|
349
|
+
'FRO',
|
|
350
|
+
'Faroe Islands',
|
|
351
|
+
'Faroese'
|
|
352
|
+
);
|
|
353
|
+
public static FR = new UnicodeCountry(592, 'FR', 'FRA', 'France', 'French');
|
|
354
|
+
public static GA = new UnicodeCountry(614, 'GA', 'GAB', 'Gabon', 'Gabonese');
|
|
355
|
+
public static GB = new UnicodeCountry(
|
|
356
|
+
2086,
|
|
357
|
+
'GB',
|
|
358
|
+
'GBR',
|
|
359
|
+
'United Kingdom',
|
|
360
|
+
'British'
|
|
361
|
+
);
|
|
362
|
+
public static GD = new UnicodeCountry(
|
|
363
|
+
776,
|
|
364
|
+
'GD',
|
|
365
|
+
'GRD',
|
|
366
|
+
'Grenada',
|
|
367
|
+
'Grenadian'
|
|
368
|
+
);
|
|
369
|
+
public static GE = new UnicodeCountry(
|
|
370
|
+
616,
|
|
371
|
+
'GE',
|
|
372
|
+
'GEO',
|
|
373
|
+
'Georgia',
|
|
374
|
+
'Georgian'
|
|
375
|
+
);
|
|
376
|
+
public static GF = new UnicodeCountry(
|
|
377
|
+
596,
|
|
378
|
+
'GF',
|
|
379
|
+
'GUF',
|
|
380
|
+
'French Guiana',
|
|
381
|
+
'French Guianese'
|
|
382
|
+
);
|
|
383
|
+
public static GG = new UnicodeCountry(2097, 'GG', 'GGY', 'Guernsey', '');
|
|
384
|
+
public static GH = new UnicodeCountry(648, 'GH', 'GHA', 'Ghana', 'Ghanaian');
|
|
385
|
+
public static GI = new UnicodeCountry(658, 'GI', 'GIB', 'Gibraltar', '');
|
|
386
|
+
public static GL = new UnicodeCountry(
|
|
387
|
+
772,
|
|
388
|
+
'GL',
|
|
389
|
+
'GRL',
|
|
390
|
+
'Greenland',
|
|
391
|
+
'Greenlandic'
|
|
392
|
+
);
|
|
393
|
+
public static GM = new UnicodeCountry(624, 'GM', 'GMB', 'Gambia', 'Gambian');
|
|
394
|
+
public static GN = new UnicodeCountry(804, 'GN', 'GIN', 'Guinea', 'Guinean');
|
|
395
|
+
public static GP = new UnicodeCountry(786, 'GP', 'GLP', 'Guadeloupe', '');
|
|
396
|
+
public static GQ = new UnicodeCountry(
|
|
397
|
+
550,
|
|
398
|
+
'GQ',
|
|
399
|
+
'GNQ',
|
|
400
|
+
'Equatorial Guinea',
|
|
401
|
+
'Equatorial Guinean, Equatoguinean'
|
|
402
|
+
);
|
|
403
|
+
public static GR = new UnicodeCountry(
|
|
404
|
+
768,
|
|
405
|
+
'GR',
|
|
406
|
+
'GRC',
|
|
407
|
+
'Greece',
|
|
408
|
+
'Greek, Hellenic'
|
|
409
|
+
);
|
|
410
|
+
public static GS = new UnicodeCountry(
|
|
411
|
+
569,
|
|
412
|
+
'GS',
|
|
413
|
+
'SGS',
|
|
414
|
+
'South Georgia and the South Sandwich Islands',
|
|
415
|
+
''
|
|
416
|
+
);
|
|
417
|
+
public static GT = new UnicodeCountry(
|
|
418
|
+
800,
|
|
419
|
+
'GT',
|
|
420
|
+
'GTM',
|
|
421
|
+
'Guatemala',
|
|
422
|
+
'Guatemalan'
|
|
423
|
+
);
|
|
424
|
+
public static GU = new UnicodeCountry(790, 'GU', 'GUM', 'Guam', 'Guamanian');
|
|
425
|
+
public static GW = new UnicodeCountry(
|
|
426
|
+
1572,
|
|
427
|
+
'GW',
|
|
428
|
+
'GNB',
|
|
429
|
+
'Guinea-Bissau',
|
|
430
|
+
'Guinean'
|
|
431
|
+
);
|
|
432
|
+
public static GY = new UnicodeCountry(808, 'GY', 'GUY', 'Guyana', 'Guyanese');
|
|
433
|
+
public static HK = new UnicodeCountry(
|
|
434
|
+
836,
|
|
435
|
+
'HK',
|
|
436
|
+
'HKG',
|
|
437
|
+
'Hong Kong SAR China',
|
|
438
|
+
'Hong Kong, Hongkongese'
|
|
439
|
+
);
|
|
440
|
+
public static HM = new UnicodeCountry(
|
|
441
|
+
820,
|
|
442
|
+
'HM',
|
|
443
|
+
'HMD',
|
|
444
|
+
'Heard Island and McDonald Islands',
|
|
445
|
+
''
|
|
446
|
+
);
|
|
447
|
+
public static HN = new UnicodeCountry(
|
|
448
|
+
832,
|
|
449
|
+
'HN',
|
|
450
|
+
'HND',
|
|
451
|
+
'Honduras',
|
|
452
|
+
'Honduran'
|
|
453
|
+
);
|
|
454
|
+
public static HR = new UnicodeCountry(
|
|
455
|
+
401,
|
|
456
|
+
'HR',
|
|
457
|
+
'HRV',
|
|
458
|
+
'Croatia',
|
|
459
|
+
'Croatian'
|
|
460
|
+
);
|
|
461
|
+
public static HT = new UnicodeCountry(818, 'HT', 'HTI', 'Haiti', 'Haitian');
|
|
462
|
+
public static HU = new UnicodeCountry(
|
|
463
|
+
840,
|
|
464
|
+
'HU',
|
|
465
|
+
'HUN',
|
|
466
|
+
'Hungary',
|
|
467
|
+
'Hungarian'
|
|
468
|
+
);
|
|
469
|
+
public static ID = new UnicodeCountry(
|
|
470
|
+
864,
|
|
471
|
+
'ID',
|
|
472
|
+
'IDN',
|
|
473
|
+
'Indonesia',
|
|
474
|
+
'Indonesian'
|
|
475
|
+
);
|
|
476
|
+
public static IE = new UnicodeCountry(882, 'IE', 'IRL', 'Ireland', 'Irish');
|
|
477
|
+
public static IL = new UnicodeCountry(886, 'IL', 'ISR', 'Israel', 'Israeli');
|
|
478
|
+
public static IM = new UnicodeCountry(
|
|
479
|
+
2099,
|
|
480
|
+
'IM',
|
|
481
|
+
'IMN',
|
|
482
|
+
'Isle of Man',
|
|
483
|
+
'Manx'
|
|
484
|
+
);
|
|
485
|
+
public static IN = new UnicodeCountry(854, 'IN', 'IND', 'India', 'Indian');
|
|
486
|
+
public static IO = new UnicodeCountry(
|
|
487
|
+
134,
|
|
488
|
+
'IO',
|
|
489
|
+
'IOT',
|
|
490
|
+
'British Indian Ocean Territory',
|
|
491
|
+
''
|
|
492
|
+
);
|
|
493
|
+
public static IQ = new UnicodeCountry(872, 'IQ', 'IRQ', 'Iraq', 'Iraqi');
|
|
494
|
+
public static IR = new UnicodeCountry(
|
|
495
|
+
868,
|
|
496
|
+
'IR',
|
|
497
|
+
'IRN',
|
|
498
|
+
'Iran',
|
|
499
|
+
'Iranian, Persian'
|
|
500
|
+
);
|
|
501
|
+
public static IS = new UnicodeCountry(
|
|
502
|
+
850,
|
|
503
|
+
'IS',
|
|
504
|
+
'ISL',
|
|
505
|
+
'Iceland',
|
|
506
|
+
'Icelandic'
|
|
507
|
+
);
|
|
508
|
+
public static IT = new UnicodeCountry(896, 'IT', 'ITA', 'Italy', 'Italian');
|
|
509
|
+
public static JE = new UnicodeCountry(2098, 'JE', 'JEY', 'Jersey', '');
|
|
510
|
+
public static JM = new UnicodeCountry(
|
|
511
|
+
904,
|
|
512
|
+
'JM',
|
|
513
|
+
'JAM',
|
|
514
|
+
'Jamaica',
|
|
515
|
+
'Jamaican'
|
|
516
|
+
);
|
|
517
|
+
public static JO = new UnicodeCountry(
|
|
518
|
+
1024,
|
|
519
|
+
'JO',
|
|
520
|
+
'JOR',
|
|
521
|
+
'Jordan',
|
|
522
|
+
'Jordanian'
|
|
523
|
+
);
|
|
524
|
+
public static JP = new UnicodeCountry(914, 'JP', 'JPN', 'Japan', 'Japanese');
|
|
525
|
+
public static KE = new UnicodeCountry(1028, 'KE', 'KEN', 'Kenya', 'Kenyan');
|
|
526
|
+
public static KG = new UnicodeCountry(
|
|
527
|
+
1047,
|
|
528
|
+
'KG',
|
|
529
|
+
'KGZ',
|
|
530
|
+
'Kyrgyzstan',
|
|
531
|
+
'Kyrgyz'
|
|
532
|
+
);
|
|
533
|
+
public static KH = new UnicodeCountry(
|
|
534
|
+
278,
|
|
535
|
+
'KH',
|
|
536
|
+
'KHM',
|
|
537
|
+
'Cambodia',
|
|
538
|
+
'Cambodian'
|
|
539
|
+
);
|
|
540
|
+
public static KI = new UnicodeCountry(
|
|
541
|
+
662,
|
|
542
|
+
'KI',
|
|
543
|
+
'KIR',
|
|
544
|
+
'Kiribati',
|
|
545
|
+
'I-Kiribati'
|
|
546
|
+
);
|
|
547
|
+
public static KM = new UnicodeCountry(
|
|
548
|
+
372,
|
|
549
|
+
'KM',
|
|
550
|
+
'COM',
|
|
551
|
+
'Comoros',
|
|
552
|
+
'Comorian'
|
|
553
|
+
);
|
|
554
|
+
public static KN = new UnicodeCountry(
|
|
555
|
+
1625,
|
|
556
|
+
'KN',
|
|
557
|
+
'KNA',
|
|
558
|
+
'Saint Kitts and Nevis',
|
|
559
|
+
''
|
|
560
|
+
);
|
|
561
|
+
public static KP = new UnicodeCountry(
|
|
562
|
+
1032,
|
|
563
|
+
'KP',
|
|
564
|
+
'PRK',
|
|
565
|
+
'North Korea',
|
|
566
|
+
'North Korean'
|
|
567
|
+
);
|
|
568
|
+
public static KR = new UnicodeCountry(
|
|
569
|
+
1040,
|
|
570
|
+
'KR',
|
|
571
|
+
'KOR',
|
|
572
|
+
'South Korea',
|
|
573
|
+
'South Korean'
|
|
574
|
+
);
|
|
575
|
+
public static KW = new UnicodeCountry(1044, 'KW', 'KWT', 'Kuwait', 'Kuwaiti');
|
|
576
|
+
public static KY = new UnicodeCountry(
|
|
577
|
+
310,
|
|
578
|
+
'KY',
|
|
579
|
+
'CYM',
|
|
580
|
+
'Cayman Islands',
|
|
581
|
+
'Caymanian'
|
|
582
|
+
);
|
|
583
|
+
public static KZ = new UnicodeCountry(
|
|
584
|
+
920,
|
|
585
|
+
'KZ',
|
|
586
|
+
'KAZ',
|
|
587
|
+
'Kazakhstan',
|
|
588
|
+
'Kazakh'
|
|
589
|
+
);
|
|
590
|
+
public static LA = new UnicodeCountry(1048, 'LA', 'Lao', 'Laos', 'Lao');
|
|
591
|
+
public static LB = new UnicodeCountry(
|
|
592
|
+
1058,
|
|
593
|
+
'LB',
|
|
594
|
+
'LBN',
|
|
595
|
+
'Lebanon',
|
|
596
|
+
'Lebanese'
|
|
597
|
+
);
|
|
598
|
+
public static LC = new UnicodeCountry(
|
|
599
|
+
1634,
|
|
600
|
+
'LC',
|
|
601
|
+
'LCA',
|
|
602
|
+
'Saint Lucia',
|
|
603
|
+
'Saint Lucian'
|
|
604
|
+
);
|
|
605
|
+
public static LI = new UnicodeCountry(1080, 'LI', 'LIE', 'Liechtenstein', '');
|
|
606
|
+
public static LK = new UnicodeCountry(
|
|
607
|
+
324,
|
|
608
|
+
'LK',
|
|
609
|
+
'LKA',
|
|
610
|
+
'Sri Lanka',
|
|
611
|
+
'Sri Lankan'
|
|
612
|
+
);
|
|
613
|
+
public static LR = new UnicodeCountry(
|
|
614
|
+
1072,
|
|
615
|
+
'LR',
|
|
616
|
+
'LBR',
|
|
617
|
+
'Liberia',
|
|
618
|
+
'Liberian'
|
|
619
|
+
);
|
|
620
|
+
public static LS = new UnicodeCountry(
|
|
621
|
+
1062,
|
|
622
|
+
'LS',
|
|
623
|
+
'LSO',
|
|
624
|
+
'Lesotho',
|
|
625
|
+
'Basotho'
|
|
626
|
+
);
|
|
627
|
+
public static LT = new UnicodeCountry(
|
|
628
|
+
1088,
|
|
629
|
+
'LT',
|
|
630
|
+
'LTU',
|
|
631
|
+
'Lithuania',
|
|
632
|
+
'Lithuanian'
|
|
633
|
+
);
|
|
634
|
+
public static LU = new UnicodeCountry(
|
|
635
|
+
1090,
|
|
636
|
+
'LU',
|
|
637
|
+
'LUX',
|
|
638
|
+
'Luxembourg',
|
|
639
|
+
'Luxembourg, Luxembourgish'
|
|
640
|
+
);
|
|
641
|
+
public static LV = new UnicodeCountry(1064, 'LV', 'LVA', 'Latvia', 'Latvian');
|
|
642
|
+
public static LY = new UnicodeCountry(1076, 'LY', 'LBY', 'Libya', 'Libyan');
|
|
643
|
+
public static MA = new UnicodeCountry(
|
|
644
|
+
1284,
|
|
645
|
+
'MA',
|
|
646
|
+
'MAR',
|
|
647
|
+
'Morocco',
|
|
648
|
+
'Moroccan'
|
|
649
|
+
);
|
|
650
|
+
public static MC = new UnicodeCountry(
|
|
651
|
+
1170,
|
|
652
|
+
'MC',
|
|
653
|
+
'MCO',
|
|
654
|
+
'Monaco',
|
|
655
|
+
'Monegasque, Monacan'
|
|
656
|
+
);
|
|
657
|
+
public static MD = new UnicodeCountry(
|
|
658
|
+
1176,
|
|
659
|
+
'MD',
|
|
660
|
+
'MDA',
|
|
661
|
+
'Moldova',
|
|
662
|
+
'Moldovan'
|
|
663
|
+
);
|
|
664
|
+
public static ME = new UnicodeCountry(
|
|
665
|
+
1177,
|
|
666
|
+
'ME',
|
|
667
|
+
'MNE',
|
|
668
|
+
'Montenegro',
|
|
669
|
+
'Montenegrin'
|
|
670
|
+
);
|
|
671
|
+
public static MF = new UnicodeCountry(1635, 'MF', 'MAF', 'Saint Martin', '');
|
|
672
|
+
public static MG = new UnicodeCountry(
|
|
673
|
+
1104,
|
|
674
|
+
'MG',
|
|
675
|
+
'MDG',
|
|
676
|
+
'Madagascar',
|
|
677
|
+
'Malagasy'
|
|
678
|
+
);
|
|
679
|
+
public static MH = new UnicodeCountry(
|
|
680
|
+
1412,
|
|
681
|
+
'MH',
|
|
682
|
+
'MHL',
|
|
683
|
+
'Marshall Islands',
|
|
684
|
+
'Marshallese'
|
|
685
|
+
);
|
|
686
|
+
public static MK = new UnicodeCountry(
|
|
687
|
+
2055,
|
|
688
|
+
'MK',
|
|
689
|
+
'MKD',
|
|
690
|
+
'Macedonia',
|
|
691
|
+
'Macedonian'
|
|
692
|
+
);
|
|
693
|
+
public static ML = new UnicodeCountry(1126, 'ML', 'MLI', 'Mali', 'Malian');
|
|
694
|
+
public static MM = new UnicodeCountry(
|
|
695
|
+
260,
|
|
696
|
+
'MM',
|
|
697
|
+
'MMR',
|
|
698
|
+
'Myanmar [Burma]',
|
|
699
|
+
'Burmese'
|
|
700
|
+
);
|
|
701
|
+
public static MN = new UnicodeCountry(
|
|
702
|
+
1174,
|
|
703
|
+
'MN',
|
|
704
|
+
'MNG',
|
|
705
|
+
'Mongolia',
|
|
706
|
+
'Mongolian'
|
|
707
|
+
);
|
|
708
|
+
public static MO = new UnicodeCountry(
|
|
709
|
+
1094,
|
|
710
|
+
'MO',
|
|
711
|
+
'MAC',
|
|
712
|
+
'Macau SAR China',
|
|
713
|
+
'Macanese, Chinese'
|
|
714
|
+
);
|
|
715
|
+
public static MP = new UnicodeCountry(
|
|
716
|
+
1408,
|
|
717
|
+
'MP',
|
|
718
|
+
'MNP',
|
|
719
|
+
'Northern Mariana Islands',
|
|
720
|
+
'Northern Marianan'
|
|
721
|
+
);
|
|
722
|
+
public static MQ = new UnicodeCountry(
|
|
723
|
+
1140,
|
|
724
|
+
'MQ',
|
|
725
|
+
'MTQ',
|
|
726
|
+
'Martinique',
|
|
727
|
+
'Martiniquais, Martinican'
|
|
728
|
+
);
|
|
729
|
+
public static MR = new UnicodeCountry(
|
|
730
|
+
1144,
|
|
731
|
+
'MR',
|
|
732
|
+
'MRT',
|
|
733
|
+
'Mauritania',
|
|
734
|
+
'Mauritanian'
|
|
735
|
+
);
|
|
736
|
+
public static MS = new UnicodeCountry(
|
|
737
|
+
1280,
|
|
738
|
+
'MS',
|
|
739
|
+
'MSR',
|
|
740
|
+
'Montserrat',
|
|
741
|
+
'Montserratian'
|
|
742
|
+
);
|
|
743
|
+
public static MT = new UnicodeCountry(1136, 'MT', 'MLT', 'Malta', 'Maltese');
|
|
744
|
+
public static MU = new UnicodeCountry(
|
|
745
|
+
1152,
|
|
746
|
+
'MU',
|
|
747
|
+
'MUS',
|
|
748
|
+
'Mauritius',
|
|
749
|
+
'Mauritian'
|
|
750
|
+
);
|
|
751
|
+
public static MV = new UnicodeCountry(
|
|
752
|
+
1122,
|
|
753
|
+
'MV',
|
|
754
|
+
'MDV',
|
|
755
|
+
'Maldives',
|
|
756
|
+
'Maldivian'
|
|
757
|
+
);
|
|
758
|
+
public static MW = new UnicodeCountry(
|
|
759
|
+
1108,
|
|
760
|
+
'MW',
|
|
761
|
+
'MWI',
|
|
762
|
+
'Malawi',
|
|
763
|
+
'Malawian'
|
|
764
|
+
);
|
|
765
|
+
public static MX = new UnicodeCountry(1156, 'MX', 'MEX', 'Mexico', 'Mexican');
|
|
766
|
+
public static MY = new UnicodeCountry(
|
|
767
|
+
1112,
|
|
768
|
+
'MY',
|
|
769
|
+
'MYS',
|
|
770
|
+
'Malaysia',
|
|
771
|
+
'Malaysian'
|
|
772
|
+
);
|
|
773
|
+
public static MZ = new UnicodeCountry(
|
|
774
|
+
1288,
|
|
775
|
+
'MZ',
|
|
776
|
+
'MOZ',
|
|
777
|
+
'Mozambique',
|
|
778
|
+
'Mozambican'
|
|
779
|
+
);
|
|
780
|
+
public static NA = new UnicodeCountry(
|
|
781
|
+
1302,
|
|
782
|
+
'NA',
|
|
783
|
+
'NAM',
|
|
784
|
+
'Namibia',
|
|
785
|
+
'Namibian'
|
|
786
|
+
);
|
|
787
|
+
public static NC = new UnicodeCountry(
|
|
788
|
+
1344,
|
|
789
|
+
'NC',
|
|
790
|
+
'NCL',
|
|
791
|
+
'New Caledonia',
|
|
792
|
+
'New Caledonian'
|
|
793
|
+
);
|
|
794
|
+
public static NE = new UnicodeCountry(1378, 'NE', 'NER', 'Niger', 'Nigerien');
|
|
795
|
+
public static NF = new UnicodeCountry(
|
|
796
|
+
1396,
|
|
797
|
+
'NF',
|
|
798
|
+
'NFK',
|
|
799
|
+
'Norfolk Island',
|
|
800
|
+
''
|
|
801
|
+
);
|
|
802
|
+
public static NG = new UnicodeCountry(
|
|
803
|
+
1382,
|
|
804
|
+
'NG',
|
|
805
|
+
'NGA',
|
|
806
|
+
'Nigeria',
|
|
807
|
+
'Nigerian'
|
|
808
|
+
);
|
|
809
|
+
public static NI = new UnicodeCountry(
|
|
810
|
+
1368,
|
|
811
|
+
'NI',
|
|
812
|
+
'NIC',
|
|
813
|
+
'Nicaragua',
|
|
814
|
+
'Nicaraguan'
|
|
815
|
+
);
|
|
816
|
+
public static NL = new UnicodeCountry(
|
|
817
|
+
1320,
|
|
818
|
+
'NL',
|
|
819
|
+
'NLD',
|
|
820
|
+
'Netherlands',
|
|
821
|
+
'Dutch'
|
|
822
|
+
);
|
|
823
|
+
public static NO = new UnicodeCountry(
|
|
824
|
+
1400,
|
|
825
|
+
'NO',
|
|
826
|
+
'NOR',
|
|
827
|
+
'Norway',
|
|
828
|
+
'Norwegian'
|
|
829
|
+
);
|
|
830
|
+
public static NP = new UnicodeCountry(1316, 'NP', 'NPL', 'Nepal', 'Nepali');
|
|
831
|
+
public static NR = new UnicodeCountry(1312, 'NR', 'NRU', 'Nauru', 'Nauruan');
|
|
832
|
+
public static NU = new UnicodeCountry(1392, 'NU', 'NIU', 'Niue', 'Niuean');
|
|
833
|
+
public static NZ = new UnicodeCountry(1364, 'NZ', 'NZL', 'New Zealand', '');
|
|
834
|
+
public static OM = new UnicodeCountry(1298, 'OM', 'OMN', 'Oman', 'Omani');
|
|
835
|
+
public static PA = new UnicodeCountry(
|
|
836
|
+
1425,
|
|
837
|
+
'PA',
|
|
838
|
+
'PAN',
|
|
839
|
+
'Panama',
|
|
840
|
+
'Panamanian'
|
|
841
|
+
);
|
|
842
|
+
public static PE = new UnicodeCountry(1540, 'PE', 'PER', 'Peru', 'Peruvian');
|
|
843
|
+
public static PF = new UnicodeCountry(
|
|
844
|
+
600,
|
|
845
|
+
'PF',
|
|
846
|
+
'PYF',
|
|
847
|
+
'French Polynesia',
|
|
848
|
+
'French Polynesian'
|
|
849
|
+
);
|
|
850
|
+
public static PG = new UnicodeCountry(
|
|
851
|
+
1432,
|
|
852
|
+
'PG',
|
|
853
|
+
'PNG',
|
|
854
|
+
'Papua New Guinea',
|
|
855
|
+
'Papua New Guinean, Papuan'
|
|
856
|
+
);
|
|
857
|
+
public static PH = new UnicodeCountry(
|
|
858
|
+
1544,
|
|
859
|
+
'PH',
|
|
860
|
+
'PHL',
|
|
861
|
+
'Philippines',
|
|
862
|
+
'Philippine, Filipino'
|
|
863
|
+
);
|
|
864
|
+
public static PK = new UnicodeCountry(
|
|
865
|
+
1414,
|
|
866
|
+
'PK',
|
|
867
|
+
'PAK',
|
|
868
|
+
'Pakistan',
|
|
869
|
+
'Pakistani'
|
|
870
|
+
);
|
|
871
|
+
public static PL = new UnicodeCountry(1558, 'PL', 'POL', 'Poland', 'Polish');
|
|
872
|
+
public static PM = new UnicodeCountry(
|
|
873
|
+
1638,
|
|
874
|
+
'PM',
|
|
875
|
+
'SPM',
|
|
876
|
+
'Saint Pierre and Miquelon',
|
|
877
|
+
'Saint Pierrais, Miquelonnais'
|
|
878
|
+
);
|
|
879
|
+
public static PN = new UnicodeCountry(
|
|
880
|
+
1554,
|
|
881
|
+
'PN',
|
|
882
|
+
'PCN',
|
|
883
|
+
'Pitcairn Islands',
|
|
884
|
+
''
|
|
885
|
+
);
|
|
886
|
+
public static PR = new UnicodeCountry(
|
|
887
|
+
1584,
|
|
888
|
+
'PR',
|
|
889
|
+
'PRI',
|
|
890
|
+
'Puerto Rico',
|
|
891
|
+
'Puerto Rican'
|
|
892
|
+
);
|
|
893
|
+
public static PS = new UnicodeCountry(
|
|
894
|
+
629,
|
|
895
|
+
'PS',
|
|
896
|
+
'PSE',
|
|
897
|
+
'Palestinian Territories',
|
|
898
|
+
'Palestinian'
|
|
899
|
+
);
|
|
900
|
+
public static PT = new UnicodeCountry(
|
|
901
|
+
1568,
|
|
902
|
+
'PT',
|
|
903
|
+
'PRT',
|
|
904
|
+
'Portugal',
|
|
905
|
+
'Portuguese'
|
|
906
|
+
);
|
|
907
|
+
public static PW = new UnicodeCountry(1413, 'PW', 'PLW', 'Palau', 'Palauan');
|
|
908
|
+
public static PY = new UnicodeCountry(
|
|
909
|
+
1536,
|
|
910
|
+
'PY',
|
|
911
|
+
'PRY',
|
|
912
|
+
'Paraguay',
|
|
913
|
+
'Paraguayan'
|
|
914
|
+
);
|
|
915
|
+
public static QA = new UnicodeCountry(1588, 'QA', 'QAT', 'Qatar', 'Qatari');
|
|
916
|
+
public static RE = new UnicodeCountry(
|
|
917
|
+
1592,
|
|
918
|
+
'RE',
|
|
919
|
+
'REU',
|
|
920
|
+
'Réunion',
|
|
921
|
+
'Reunionese, Reunionnais'
|
|
922
|
+
);
|
|
923
|
+
public static RO = new UnicodeCountry(
|
|
924
|
+
1602,
|
|
925
|
+
'RO',
|
|
926
|
+
'ROU',
|
|
927
|
+
'Romania',
|
|
928
|
+
'Romanian'
|
|
929
|
+
);
|
|
930
|
+
public static RS = new UnicodeCountry(1672, 'RS', 'SRB', 'Serbia', 'Serbian');
|
|
931
|
+
public static RU = new UnicodeCountry(1603, 'RU', 'RUS', 'Russia', 'Russian');
|
|
932
|
+
public static RW = new UnicodeCountry(1606, 'RW', 'RWA', 'Rwanda', 'Rwandan');
|
|
933
|
+
public static SA = new UnicodeCountry(
|
|
934
|
+
1666,
|
|
935
|
+
'SA',
|
|
936
|
+
'SAU',
|
|
937
|
+
'Saudi Arabia',
|
|
938
|
+
'Saudi, Saudi Arabian'
|
|
939
|
+
);
|
|
940
|
+
public static SB = new UnicodeCountry(
|
|
941
|
+
144,
|
|
942
|
+
'SB',
|
|
943
|
+
'SLB',
|
|
944
|
+
'Solomon Islands',
|
|
945
|
+
'Solomon Island'
|
|
946
|
+
);
|
|
947
|
+
public static SC = new UnicodeCountry(
|
|
948
|
+
1680,
|
|
949
|
+
'SC',
|
|
950
|
+
'SYC',
|
|
951
|
+
'Seychelles',
|
|
952
|
+
'Seychellois'
|
|
953
|
+
);
|
|
954
|
+
public static SD = new UnicodeCountry(1846, 'SD', 'SDN', 'Sudan', 'Sudanese');
|
|
955
|
+
public static SE = new UnicodeCountry(1874, 'SE', 'SWE', 'Sweden', 'Swedish');
|
|
956
|
+
public static SG = new UnicodeCountry(1794, 'SG', 'SGP', 'Singapore', '');
|
|
957
|
+
public static SH = new UnicodeCountry(
|
|
958
|
+
1620,
|
|
959
|
+
'SH',
|
|
960
|
+
'SHN',
|
|
961
|
+
'Saint Helena',
|
|
962
|
+
'Saint Helenian'
|
|
963
|
+
);
|
|
964
|
+
public static SI = new UnicodeCountry(
|
|
965
|
+
1797,
|
|
966
|
+
'SI',
|
|
967
|
+
'SVN',
|
|
968
|
+
'Slovenia',
|
|
969
|
+
'Slovenian, Slovene'
|
|
970
|
+
);
|
|
971
|
+
public static SJ = new UnicodeCountry(
|
|
972
|
+
1860,
|
|
973
|
+
'SJ',
|
|
974
|
+
'SJM',
|
|
975
|
+
'Svalbard and Jan Mayen',
|
|
976
|
+
''
|
|
977
|
+
);
|
|
978
|
+
public static SK = new UnicodeCountry(
|
|
979
|
+
1795,
|
|
980
|
+
'SK',
|
|
981
|
+
'SVK',
|
|
982
|
+
'Slovakia',
|
|
983
|
+
'Slovak'
|
|
984
|
+
);
|
|
985
|
+
public static SL = new UnicodeCountry(
|
|
986
|
+
1684,
|
|
987
|
+
'SL',
|
|
988
|
+
'SLE',
|
|
989
|
+
'Sierra Leone',
|
|
990
|
+
'Sierra Leonean'
|
|
991
|
+
);
|
|
992
|
+
public static SM = new UnicodeCountry(
|
|
993
|
+
1652,
|
|
994
|
+
'SM',
|
|
995
|
+
'SMR',
|
|
996
|
+
'San Marino',
|
|
997
|
+
'Sammarinese'
|
|
998
|
+
);
|
|
999
|
+
public static SN = new UnicodeCountry(
|
|
1000
|
+
1670,
|
|
1001
|
+
'SN',
|
|
1002
|
+
'SEN',
|
|
1003
|
+
'Senegal',
|
|
1004
|
+
'Senegalese'
|
|
1005
|
+
);
|
|
1006
|
+
public static SO = new UnicodeCountry(
|
|
1007
|
+
1798,
|
|
1008
|
+
'SO',
|
|
1009
|
+
'SOM',
|
|
1010
|
+
'Somalia',
|
|
1011
|
+
'Somali, Somalian'
|
|
1012
|
+
);
|
|
1013
|
+
public static SR = new UnicodeCountry(
|
|
1014
|
+
1856,
|
|
1015
|
+
'SR',
|
|
1016
|
+
'SUR',
|
|
1017
|
+
'Suriname',
|
|
1018
|
+
'Surinamese'
|
|
1019
|
+
);
|
|
1020
|
+
public static ST = new UnicodeCountry(
|
|
1021
|
+
1656,
|
|
1022
|
+
'ST',
|
|
1023
|
+
'STP',
|
|
1024
|
+
'São Tomé & Príncipe',
|
|
1025
|
+
'Sao Tomean'
|
|
1026
|
+
);
|
|
1027
|
+
public static SV = new UnicodeCountry(
|
|
1028
|
+
546,
|
|
1029
|
+
'SV',
|
|
1030
|
+
'SLV',
|
|
1031
|
+
'El Salvador',
|
|
1032
|
+
'Salvadoran'
|
|
1033
|
+
);
|
|
1034
|
+
public static SY = new UnicodeCountry(1888, 'SY', 'SYR', 'Syria', 'Syrian');
|
|
1035
|
+
public static SZ = new UnicodeCountry(
|
|
1036
|
+
1864,
|
|
1037
|
+
'SZ',
|
|
1038
|
+
'SWZ',
|
|
1039
|
+
'Swaziland',
|
|
1040
|
+
'Swazi'
|
|
1041
|
+
);
|
|
1042
|
+
public static TC = new UnicodeCountry(
|
|
1043
|
+
1942,
|
|
1044
|
+
'TC',
|
|
1045
|
+
'TCA',
|
|
1046
|
+
'Turks and Caicos Islands',
|
|
1047
|
+
''
|
|
1048
|
+
);
|
|
1049
|
+
public static TD = new UnicodeCountry(328, 'TD', 'TCD', 'Chad', 'Chadian');
|
|
1050
|
+
public static TF = new UnicodeCountry(
|
|
1051
|
+
608,
|
|
1052
|
+
'TF',
|
|
1053
|
+
'ATF',
|
|
1054
|
+
'French Southern Territories',
|
|
1055
|
+
''
|
|
1056
|
+
);
|
|
1057
|
+
public static TG = new UnicodeCountry(1896, 'TG', 'TGO', 'Togo', 'Togolese');
|
|
1058
|
+
public static TH = new UnicodeCountry(1892, 'TH', 'THA', 'Thailand', 'Thai');
|
|
1059
|
+
public static TJ = new UnicodeCountry(
|
|
1060
|
+
1890,
|
|
1061
|
+
'TJ',
|
|
1062
|
+
'TJK',
|
|
1063
|
+
'Tajikistan',
|
|
1064
|
+
'Tajikistani'
|
|
1065
|
+
);
|
|
1066
|
+
public static TK = new UnicodeCountry(1906, 'TK', 'TKL', 'Tokelau', '');
|
|
1067
|
+
public static TL = new UnicodeCountry(
|
|
1068
|
+
1574,
|
|
1069
|
+
'TL',
|
|
1070
|
+
'TLS',
|
|
1071
|
+
'Timor-Leste',
|
|
1072
|
+
'Timorese'
|
|
1073
|
+
);
|
|
1074
|
+
public static TM = new UnicodeCountry(
|
|
1075
|
+
1941,
|
|
1076
|
+
'TM',
|
|
1077
|
+
'TKM',
|
|
1078
|
+
'Turkmenistan',
|
|
1079
|
+
'Turkmen'
|
|
1080
|
+
);
|
|
1081
|
+
public static TN = new UnicodeCountry(
|
|
1082
|
+
1928,
|
|
1083
|
+
'TN',
|
|
1084
|
+
'TUN',
|
|
1085
|
+
'Tunisia',
|
|
1086
|
+
'Tunisian'
|
|
1087
|
+
);
|
|
1088
|
+
public static TO = new UnicodeCountry(1910, 'TO', 'TON', 'Tonga', 'Tongan');
|
|
1089
|
+
public static TR = new UnicodeCountry(1938, 'TR', 'TUR', 'Turkey', 'Turkish');
|
|
1090
|
+
public static TT = new UnicodeCountry(
|
|
1091
|
+
1920,
|
|
1092
|
+
'TT',
|
|
1093
|
+
'TTO',
|
|
1094
|
+
'Trinidad and Tobago',
|
|
1095
|
+
'Trinidadian, Tobagonian'
|
|
1096
|
+
);
|
|
1097
|
+
public static TV = new UnicodeCountry(
|
|
1098
|
+
1944,
|
|
1099
|
+
'TV',
|
|
1100
|
+
'TUV',
|
|
1101
|
+
'Tuvalu',
|
|
1102
|
+
'Tuvaluan'
|
|
1103
|
+
);
|
|
1104
|
+
public static TW = new UnicodeCountry(
|
|
1105
|
+
344,
|
|
1106
|
+
'TW',
|
|
1107
|
+
'TWN',
|
|
1108
|
+
'Taiwan',
|
|
1109
|
+
'Taiwanese'
|
|
1110
|
+
);
|
|
1111
|
+
public static TZ = new UnicodeCountry(
|
|
1112
|
+
2100,
|
|
1113
|
+
'TZ',
|
|
1114
|
+
'TZA',
|
|
1115
|
+
'Tanzania',
|
|
1116
|
+
'Tanzanian'
|
|
1117
|
+
);
|
|
1118
|
+
public static UA = new UnicodeCountry(
|
|
1119
|
+
2052,
|
|
1120
|
+
'UA',
|
|
1121
|
+
'UKR',
|
|
1122
|
+
'Ukraine',
|
|
1123
|
+
'Ukrainian'
|
|
1124
|
+
);
|
|
1125
|
+
public static UG = new UnicodeCountry(2048, 'UG', 'UGA', 'Uganda', 'Ugandan');
|
|
1126
|
+
public static UM = new UnicodeCountry(
|
|
1127
|
+
1409,
|
|
1128
|
+
'UM',
|
|
1129
|
+
'UMI',
|
|
1130
|
+
'U.S. Outlying Islands',
|
|
1131
|
+
''
|
|
1132
|
+
);
|
|
1133
|
+
public static US = new UnicodeCountry(
|
|
1134
|
+
2112,
|
|
1135
|
+
'US',
|
|
1136
|
+
'USA',
|
|
1137
|
+
'United States',
|
|
1138
|
+
'American'
|
|
1139
|
+
);
|
|
1140
|
+
public static UY = new UnicodeCountry(
|
|
1141
|
+
2136,
|
|
1142
|
+
'UY',
|
|
1143
|
+
'URY',
|
|
1144
|
+
'Uruguay',
|
|
1145
|
+
'Uruguayan'
|
|
1146
|
+
);
|
|
1147
|
+
public static UZ = new UnicodeCountry(
|
|
1148
|
+
2144,
|
|
1149
|
+
'UZ',
|
|
1150
|
+
'UZB',
|
|
1151
|
+
'Uzbekistan',
|
|
1152
|
+
'Uzbekistani, Uzbek'
|
|
1153
|
+
);
|
|
1154
|
+
public static VA = new UnicodeCountry(822, 'VA', 'VAT', 'Vatican City', '');
|
|
1155
|
+
public static VC = new UnicodeCountry(
|
|
1156
|
+
1648,
|
|
1157
|
+
'VC',
|
|
1158
|
+
'VCT',
|
|
1159
|
+
'Saint Vincent and the Grenadines',
|
|
1160
|
+
'Saint Vincentian'
|
|
1161
|
+
);
|
|
1162
|
+
public static VE = new UnicodeCountry(
|
|
1163
|
+
2146,
|
|
1164
|
+
'VE',
|
|
1165
|
+
'VEN',
|
|
1166
|
+
'Venezuela',
|
|
1167
|
+
'Venezuelan'
|
|
1168
|
+
);
|
|
1169
|
+
public static VG = new UnicodeCountry(
|
|
1170
|
+
146,
|
|
1171
|
+
'VG',
|
|
1172
|
+
'VGB',
|
|
1173
|
+
'British Virgin Islands',
|
|
1174
|
+
'Virgin Island'
|
|
1175
|
+
);
|
|
1176
|
+
public static VI = new UnicodeCountry(
|
|
1177
|
+
2128,
|
|
1178
|
+
'VI',
|
|
1179
|
+
'VIR',
|
|
1180
|
+
'U.S. Virgin Islands',
|
|
1181
|
+
'Virgin Island'
|
|
1182
|
+
);
|
|
1183
|
+
public static VN = new UnicodeCountry(
|
|
1184
|
+
1796,
|
|
1185
|
+
'VN',
|
|
1186
|
+
'VNM',
|
|
1187
|
+
'Vietnam',
|
|
1188
|
+
'Vietnamese'
|
|
1189
|
+
);
|
|
1190
|
+
public static VU = new UnicodeCountry(
|
|
1191
|
+
1352,
|
|
1192
|
+
'VU',
|
|
1193
|
+
'VUT',
|
|
1194
|
+
'Vanuatu',
|
|
1195
|
+
'Ni-Vanuatu, Vanuatuan'
|
|
1196
|
+
);
|
|
1197
|
+
public static WF = new UnicodeCountry(
|
|
1198
|
+
2166,
|
|
1199
|
+
'WF',
|
|
1200
|
+
'WLF',
|
|
1201
|
+
'Wallis and Futuna',
|
|
1202
|
+
'Wallisian, Futunan'
|
|
1203
|
+
);
|
|
1204
|
+
public static WS = new UnicodeCountry(2178, 'WS', 'WSM', 'Samoa', 'Samoan');
|
|
1205
|
+
public static YE = new UnicodeCountry(2183, 'YE', 'YEM', 'Yemen', 'Yemeni');
|
|
1206
|
+
public static YT = new UnicodeCountry(373, 'YT', 'MYT', 'Mayotte', 'Mahoran');
|
|
1207
|
+
public static ZA = new UnicodeCountry(
|
|
1208
|
+
1808,
|
|
1209
|
+
'ZA',
|
|
1210
|
+
'ZAF',
|
|
1211
|
+
'South Africa',
|
|
1212
|
+
'South African'
|
|
1213
|
+
);
|
|
1214
|
+
public static ZM = new UnicodeCountry(2196, 'ZM', 'ZMB', 'Zambia', 'Zambian');
|
|
1215
|
+
public static ZW = new UnicodeCountry(
|
|
1216
|
+
1814,
|
|
1217
|
+
'ZW',
|
|
1218
|
+
'ZWE',
|
|
1219
|
+
'Zimbabwe',
|
|
1220
|
+
'Zimbabwean'
|
|
1221
|
+
);
|
|
1222
|
+
|
|
1223
|
+
public static VALUES = [
|
|
1224
|
+
UnicodeCountry.AD,
|
|
1225
|
+
UnicodeCountry.AE,
|
|
1226
|
+
UnicodeCountry.AF,
|
|
1227
|
+
UnicodeCountry.AG,
|
|
1228
|
+
UnicodeCountry.AI,
|
|
1229
|
+
UnicodeCountry.AL,
|
|
1230
|
+
UnicodeCountry.AM,
|
|
1231
|
+
UnicodeCountry.AN,
|
|
1232
|
+
UnicodeCountry.AO,
|
|
1233
|
+
UnicodeCountry.AQ,
|
|
1234
|
+
UnicodeCountry.AR,
|
|
1235
|
+
UnicodeCountry.AS,
|
|
1236
|
+
UnicodeCountry.AT,
|
|
1237
|
+
UnicodeCountry.AU,
|
|
1238
|
+
UnicodeCountry.AW,
|
|
1239
|
+
UnicodeCountry.AX,
|
|
1240
|
+
UnicodeCountry.AZ,
|
|
1241
|
+
UnicodeCountry.BA,
|
|
1242
|
+
UnicodeCountry.BB,
|
|
1243
|
+
UnicodeCountry.BD,
|
|
1244
|
+
UnicodeCountry.BE,
|
|
1245
|
+
UnicodeCountry.BF,
|
|
1246
|
+
UnicodeCountry.BG,
|
|
1247
|
+
UnicodeCountry.BH,
|
|
1248
|
+
UnicodeCountry.BI,
|
|
1249
|
+
UnicodeCountry.BJ,
|
|
1250
|
+
UnicodeCountry.BL,
|
|
1251
|
+
UnicodeCountry.BM,
|
|
1252
|
+
UnicodeCountry.BN,
|
|
1253
|
+
UnicodeCountry.BO,
|
|
1254
|
+
UnicodeCountry.BR,
|
|
1255
|
+
UnicodeCountry.BS,
|
|
1256
|
+
UnicodeCountry.BT,
|
|
1257
|
+
UnicodeCountry.BV,
|
|
1258
|
+
UnicodeCountry.BW,
|
|
1259
|
+
UnicodeCountry.BY,
|
|
1260
|
+
UnicodeCountry.BZ,
|
|
1261
|
+
UnicodeCountry.CA,
|
|
1262
|
+
UnicodeCountry.CC,
|
|
1263
|
+
UnicodeCountry.CD,
|
|
1264
|
+
UnicodeCountry.CF,
|
|
1265
|
+
UnicodeCountry.CG,
|
|
1266
|
+
UnicodeCountry.CH,
|
|
1267
|
+
UnicodeCountry.CI,
|
|
1268
|
+
UnicodeCountry.CK,
|
|
1269
|
+
UnicodeCountry.CL,
|
|
1270
|
+
UnicodeCountry.CM,
|
|
1271
|
+
UnicodeCountry.CN,
|
|
1272
|
+
UnicodeCountry.CO,
|
|
1273
|
+
UnicodeCountry.CR,
|
|
1274
|
+
UnicodeCountry.CU,
|
|
1275
|
+
UnicodeCountry.CV,
|
|
1276
|
+
UnicodeCountry.CX,
|
|
1277
|
+
UnicodeCountry.CY,
|
|
1278
|
+
UnicodeCountry.CZ,
|
|
1279
|
+
UnicodeCountry.DE,
|
|
1280
|
+
UnicodeCountry.DJ,
|
|
1281
|
+
UnicodeCountry.DK,
|
|
1282
|
+
UnicodeCountry.DM,
|
|
1283
|
+
UnicodeCountry.DO,
|
|
1284
|
+
UnicodeCountry.DZ,
|
|
1285
|
+
UnicodeCountry.EC,
|
|
1286
|
+
UnicodeCountry.EE,
|
|
1287
|
+
UnicodeCountry.EG,
|
|
1288
|
+
UnicodeCountry.EH,
|
|
1289
|
+
UnicodeCountry.ER,
|
|
1290
|
+
UnicodeCountry.ES,
|
|
1291
|
+
UnicodeCountry.ET,
|
|
1292
|
+
UnicodeCountry.FI,
|
|
1293
|
+
UnicodeCountry.FJ,
|
|
1294
|
+
UnicodeCountry.FK,
|
|
1295
|
+
UnicodeCountry.FM,
|
|
1296
|
+
UnicodeCountry.FO,
|
|
1297
|
+
UnicodeCountry.FR,
|
|
1298
|
+
UnicodeCountry.GA,
|
|
1299
|
+
UnicodeCountry.GB,
|
|
1300
|
+
UnicodeCountry.GD,
|
|
1301
|
+
UnicodeCountry.GE,
|
|
1302
|
+
UnicodeCountry.GF,
|
|
1303
|
+
UnicodeCountry.GG,
|
|
1304
|
+
UnicodeCountry.GH,
|
|
1305
|
+
UnicodeCountry.GI,
|
|
1306
|
+
UnicodeCountry.GL,
|
|
1307
|
+
UnicodeCountry.GM,
|
|
1308
|
+
UnicodeCountry.GN,
|
|
1309
|
+
UnicodeCountry.GP,
|
|
1310
|
+
UnicodeCountry.GQ,
|
|
1311
|
+
UnicodeCountry.GR,
|
|
1312
|
+
UnicodeCountry.GS,
|
|
1313
|
+
UnicodeCountry.GT,
|
|
1314
|
+
UnicodeCountry.GU,
|
|
1315
|
+
UnicodeCountry.GW,
|
|
1316
|
+
UnicodeCountry.GY,
|
|
1317
|
+
UnicodeCountry.HK,
|
|
1318
|
+
UnicodeCountry.HM,
|
|
1319
|
+
UnicodeCountry.HN,
|
|
1320
|
+
UnicodeCountry.HR,
|
|
1321
|
+
UnicodeCountry.HT,
|
|
1322
|
+
UnicodeCountry.HU,
|
|
1323
|
+
UnicodeCountry.ID,
|
|
1324
|
+
UnicodeCountry.IE,
|
|
1325
|
+
UnicodeCountry.IL,
|
|
1326
|
+
UnicodeCountry.IM,
|
|
1327
|
+
UnicodeCountry.IN,
|
|
1328
|
+
UnicodeCountry.IO,
|
|
1329
|
+
UnicodeCountry.IQ,
|
|
1330
|
+
UnicodeCountry.IR,
|
|
1331
|
+
UnicodeCountry.IS,
|
|
1332
|
+
UnicodeCountry.IT,
|
|
1333
|
+
UnicodeCountry.JE,
|
|
1334
|
+
UnicodeCountry.JM,
|
|
1335
|
+
UnicodeCountry.JO,
|
|
1336
|
+
UnicodeCountry.JP,
|
|
1337
|
+
UnicodeCountry.KE,
|
|
1338
|
+
UnicodeCountry.KG,
|
|
1339
|
+
UnicodeCountry.KH,
|
|
1340
|
+
UnicodeCountry.KI,
|
|
1341
|
+
UnicodeCountry.KM,
|
|
1342
|
+
UnicodeCountry.KN,
|
|
1343
|
+
UnicodeCountry.KP,
|
|
1344
|
+
UnicodeCountry.KR,
|
|
1345
|
+
UnicodeCountry.KW,
|
|
1346
|
+
UnicodeCountry.KY,
|
|
1347
|
+
UnicodeCountry.KZ,
|
|
1348
|
+
UnicodeCountry.LA,
|
|
1349
|
+
UnicodeCountry.LB,
|
|
1350
|
+
UnicodeCountry.LC,
|
|
1351
|
+
UnicodeCountry.LI,
|
|
1352
|
+
UnicodeCountry.LK,
|
|
1353
|
+
UnicodeCountry.LR,
|
|
1354
|
+
UnicodeCountry.LS,
|
|
1355
|
+
UnicodeCountry.LT,
|
|
1356
|
+
UnicodeCountry.LU,
|
|
1357
|
+
UnicodeCountry.LV,
|
|
1358
|
+
UnicodeCountry.LY,
|
|
1359
|
+
UnicodeCountry.MA,
|
|
1360
|
+
UnicodeCountry.MC,
|
|
1361
|
+
UnicodeCountry.MD,
|
|
1362
|
+
UnicodeCountry.ME,
|
|
1363
|
+
UnicodeCountry.MF,
|
|
1364
|
+
UnicodeCountry.MG,
|
|
1365
|
+
UnicodeCountry.MH,
|
|
1366
|
+
UnicodeCountry.MK,
|
|
1367
|
+
UnicodeCountry.ML,
|
|
1368
|
+
UnicodeCountry.MM,
|
|
1369
|
+
UnicodeCountry.MN,
|
|
1370
|
+
UnicodeCountry.MO,
|
|
1371
|
+
UnicodeCountry.MP,
|
|
1372
|
+
UnicodeCountry.MQ,
|
|
1373
|
+
UnicodeCountry.MR,
|
|
1374
|
+
UnicodeCountry.MS,
|
|
1375
|
+
UnicodeCountry.MT,
|
|
1376
|
+
UnicodeCountry.MU,
|
|
1377
|
+
UnicodeCountry.MV,
|
|
1378
|
+
UnicodeCountry.MW,
|
|
1379
|
+
UnicodeCountry.MX,
|
|
1380
|
+
UnicodeCountry.MY,
|
|
1381
|
+
UnicodeCountry.MZ,
|
|
1382
|
+
UnicodeCountry.NA,
|
|
1383
|
+
UnicodeCountry.NC,
|
|
1384
|
+
UnicodeCountry.NE,
|
|
1385
|
+
UnicodeCountry.NF,
|
|
1386
|
+
UnicodeCountry.NG,
|
|
1387
|
+
UnicodeCountry.NI,
|
|
1388
|
+
UnicodeCountry.NL,
|
|
1389
|
+
UnicodeCountry.NO,
|
|
1390
|
+
UnicodeCountry.NP,
|
|
1391
|
+
UnicodeCountry.NR,
|
|
1392
|
+
UnicodeCountry.NU,
|
|
1393
|
+
UnicodeCountry.NZ,
|
|
1394
|
+
UnicodeCountry.OM,
|
|
1395
|
+
UnicodeCountry.PA,
|
|
1396
|
+
UnicodeCountry.PE,
|
|
1397
|
+
UnicodeCountry.PF,
|
|
1398
|
+
UnicodeCountry.PG,
|
|
1399
|
+
UnicodeCountry.PH,
|
|
1400
|
+
UnicodeCountry.PK,
|
|
1401
|
+
UnicodeCountry.PL,
|
|
1402
|
+
UnicodeCountry.PM,
|
|
1403
|
+
UnicodeCountry.PN,
|
|
1404
|
+
UnicodeCountry.PR,
|
|
1405
|
+
UnicodeCountry.PS,
|
|
1406
|
+
UnicodeCountry.PT,
|
|
1407
|
+
UnicodeCountry.PW,
|
|
1408
|
+
UnicodeCountry.PY,
|
|
1409
|
+
UnicodeCountry.QA,
|
|
1410
|
+
UnicodeCountry.RE,
|
|
1411
|
+
UnicodeCountry.RO,
|
|
1412
|
+
UnicodeCountry.RS,
|
|
1413
|
+
UnicodeCountry.RU,
|
|
1414
|
+
UnicodeCountry.RW,
|
|
1415
|
+
UnicodeCountry.SA,
|
|
1416
|
+
UnicodeCountry.SB,
|
|
1417
|
+
UnicodeCountry.SC,
|
|
1418
|
+
UnicodeCountry.SD,
|
|
1419
|
+
UnicodeCountry.SE,
|
|
1420
|
+
UnicodeCountry.SG,
|
|
1421
|
+
UnicodeCountry.SH,
|
|
1422
|
+
UnicodeCountry.SI,
|
|
1423
|
+
UnicodeCountry.SJ,
|
|
1424
|
+
UnicodeCountry.SK,
|
|
1425
|
+
UnicodeCountry.SL,
|
|
1426
|
+
UnicodeCountry.SM,
|
|
1427
|
+
UnicodeCountry.SN,
|
|
1428
|
+
UnicodeCountry.SO,
|
|
1429
|
+
UnicodeCountry.SR,
|
|
1430
|
+
UnicodeCountry.ST,
|
|
1431
|
+
UnicodeCountry.SV,
|
|
1432
|
+
UnicodeCountry.SY,
|
|
1433
|
+
UnicodeCountry.SZ,
|
|
1434
|
+
UnicodeCountry.TC,
|
|
1435
|
+
UnicodeCountry.TD,
|
|
1436
|
+
UnicodeCountry.TF,
|
|
1437
|
+
UnicodeCountry.TG,
|
|
1438
|
+
UnicodeCountry.TH,
|
|
1439
|
+
UnicodeCountry.TJ,
|
|
1440
|
+
UnicodeCountry.TK,
|
|
1441
|
+
UnicodeCountry.TL,
|
|
1442
|
+
UnicodeCountry.TM,
|
|
1443
|
+
UnicodeCountry.TN,
|
|
1444
|
+
UnicodeCountry.TO,
|
|
1445
|
+
UnicodeCountry.TR,
|
|
1446
|
+
UnicodeCountry.TT,
|
|
1447
|
+
UnicodeCountry.TV,
|
|
1448
|
+
UnicodeCountry.TW,
|
|
1449
|
+
UnicodeCountry.TZ,
|
|
1450
|
+
UnicodeCountry.UA,
|
|
1451
|
+
UnicodeCountry.UG,
|
|
1452
|
+
UnicodeCountry.UM,
|
|
1453
|
+
UnicodeCountry.US,
|
|
1454
|
+
UnicodeCountry.UY,
|
|
1455
|
+
UnicodeCountry.UZ,
|
|
1456
|
+
UnicodeCountry.VA,
|
|
1457
|
+
UnicodeCountry.VC,
|
|
1458
|
+
UnicodeCountry.VE,
|
|
1459
|
+
UnicodeCountry.VG,
|
|
1460
|
+
UnicodeCountry.VI,
|
|
1461
|
+
UnicodeCountry.VN,
|
|
1462
|
+
UnicodeCountry.VU,
|
|
1463
|
+
UnicodeCountry.WF,
|
|
1464
|
+
UnicodeCountry.WS,
|
|
1465
|
+
UnicodeCountry.YE,
|
|
1466
|
+
UnicodeCountry.YT,
|
|
1467
|
+
UnicodeCountry.ZA,
|
|
1468
|
+
UnicodeCountry.ZM,
|
|
1469
|
+
UnicodeCountry.ZW,
|
|
1470
|
+
];
|
|
1471
|
+
|
|
1472
|
+
private code: number;
|
|
1473
|
+
private alpha2Code: string;
|
|
1474
|
+
private alpha3Code: string;
|
|
1475
|
+
private name: string;
|
|
1476
|
+
private nationality: string;
|
|
1477
|
+
|
|
1478
|
+
constructor(
|
|
1479
|
+
code: number,
|
|
1480
|
+
alpha2Code: string,
|
|
1481
|
+
alpha3Code: string,
|
|
1482
|
+
name: string,
|
|
1483
|
+
nationality: string
|
|
1484
|
+
) {
|
|
1485
|
+
super();
|
|
1486
|
+
this.code = code;
|
|
1487
|
+
this.alpha2Code = alpha2Code;
|
|
1488
|
+
this.alpha3Code = alpha3Code;
|
|
1489
|
+
this.name = name;
|
|
1490
|
+
this.nationality = nationality;
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
public valueOf(): number {
|
|
1494
|
+
return this.code;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
public getName(): string {
|
|
1498
|
+
return this.name;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
public getNationality(): string {
|
|
1502
|
+
return this.nationality;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
public toString(): string {
|
|
1506
|
+
return this.alpha2Code;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
public toAlpha2Code(): string {
|
|
1510
|
+
return this.alpha2Code;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
public toAlpha3Code(): string {
|
|
1514
|
+
return this.alpha3Code;
|
|
1515
|
+
}
|
|
1516
|
+
}
|