From 3a3a24ff12c974b87b2a95c4eb73cb40be2dccd1 Mon Sep 17 00:00:00 2001 From: Kosala Hemachandra Date: Thu, 3 May 2018 18:14:52 -0700 Subject: [PATCH] Release: v3.21.09 --- app/includes/header.tpl | 6 +- app/manifest.json | 2 +- app/scripts/controllers/swapCtrl.js | 197 +- chrome-extension/contest.html | 31 +- chrome-extension/cx-wallet.html | 112 +- chrome-extension/helpers.html | 4 +- chrome-extension/js/etherwallet-master.js | 2577 +++++++------ chrome-extension/manifest.json | 2 +- chrome-extension/phishing.html | 4 +- dist/contest.html | 31 +- dist/helpers.html | 4 +- dist/index.html | 112 +- dist/js/etherwallet-master.js | 2577 +++++++------ dist/phishing.html | 4 +- package-lock.json | 4292 ++++++++++----------- 15 files changed, 5374 insertions(+), 4581 deletions(-) diff --git a/app/includes/header.tpl b/app/includes/header.tpl index c4e2ff566d..ffb7bbe1c6 100644 --- a/app/includes/header.tpl +++ b/app/includes/header.tpl @@ -98,18 +98,18 @@ @@if (site === 'mew' ) { MyEtherWallet -

3.21.08

+

3.21.09

} @@if (site === 'cx' ) { MyEtherWallet -

3.21.08

+

3.21.09

}
- + diff --git a/app/manifest.json b/app/manifest.json index f4f462905b..eecf634ce4 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,6 +1,6 @@ { "name": "MyEtherWallet", - "version": "3.21.08", + "version": "3.21.09", "manifest_version": 2, "description": "MyEtherWallet Chrome Extension", "homepage_url": "https://www.myetherwallet.com/", diff --git a/app/scripts/controllers/swapCtrl.js b/app/scripts/controllers/swapCtrl.js index 877ea505bd..fd6eb84a1c 100644 --- a/app/scripts/controllers/swapCtrl.js +++ b/app/scripts/controllers/swapCtrl.js @@ -1,5 +1,5 @@ 'use strict'; -var swapCtrl = function ($scope, $sce, walletService) { +var swapCtrl = function($scope, $sce, walletService) { var lStorageKey = "swapOrder"; $scope.ajaxReq = ajaxReq; $scope.showedMinMaxError = false; @@ -15,7 +15,7 @@ var swapCtrl = function ($scope, $sce, walletService) { $scope.fromExclude = []; // Currently Not Really Used (kept for usage in a future feature) - $scope.showInFromList =function(coin) { + $scope.showInFromList = function(coin) { if (coin == 'REP') return false; return true; // if ($scope.fromExclude.indexOf(coin) > -1) return false; @@ -23,7 +23,7 @@ var swapCtrl = function ($scope, $sce, walletService) { }; // Currently Not Really Used (kept for usage in a future feature) - $scope.showInToList = function (coin) { + $scope.showInToList = function(coin) { return true; // if ($scope.toExclude.indexOf(coin) > -1) return false; // else return true; @@ -48,8 +48,8 @@ var swapCtrl = function ($scope, $sce, walletService) { $scope.availableTokens = []; $scope.availableOptions = [...$scope.availableCoins, ...$scope.availableTokens]; - var initValues = function () { - $scope.bity.refreshRates(function () { + var initValues = function() { + $scope.bity.refreshRates(function() { $scope.setOrderCoin(true, "ETH"); }); $scope.kyberInit(); @@ -79,12 +79,12 @@ var swapCtrl = function ($scope, $sce, walletService) { }; - $scope.resetErrorShownStates = function () { + $scope.resetErrorShownStates = function() { $scope.showedMinMaxError = false; if ($scope.showedKyberPairAvailableError) $scope.showedKyberPairAvailableError = false }; - $scope.verifyMinMaxValues = function () { + $scope.verifyMinMaxValues = function() { if ($scope.checkIfKyber()) { return $scope.verifyKyberMinMaxValues(); } else { @@ -92,15 +92,15 @@ var swapCtrl = function ($scope, $sce, walletService) { } }; - $scope.verifyBityMinMaxValues =function() { - if($scope.swapOrder.toVal=='' || $scope.swapOrder.fromVal == '' || $scope.swapOrder.toVal=='0' || $scope.swapOrder.fromVal == '0' || $scope.showedMinMaxError ) return false; + $scope.verifyBityMinMaxValues = function() { + if ($scope.swapOrder.toVal == '' || $scope.swapOrder.fromVal == '' || $scope.swapOrder.toVal == '0' || $scope.swapOrder.fromVal == '0' || $scope.showedMinMaxError) return false; var errors = { priceNotLoaded: 0, lessThanMin: 1, greaterThanMax: 2, noErrors: 3 } - var verify = function () { + var verify = function() { if (!$scope.bity.priceLoaded) return errors.priceNotLoaded; else if ($scope.swapOrder.toVal < bity.min || $scope.swapOrder.fromVal < bity.min) return errors.lessThanMin; else if (($scope.swapOrder.toCoin == "BTC" && $scope.swapOrder.toVal > bity.max) || ($scope.swapOrder.fromCoin == "BTC" && $scope.swapOrder.fromVal > bity.max)) return errors.greaterThanMax; @@ -120,7 +120,8 @@ var swapCtrl = function ($scope, $sce, walletService) { } }; // todo: devise a Cleaner method - $scope.setOrderCoin = function(isFrom, coin) {$scope.kyberSwapRateDisplay(); + $scope.setOrderCoin = function(isFrom, coin) { + $scope.kyberSwapRateDisplay(); let bityOptions = ["ETH", "BTC", "REP"]; let kyberOptions = $scope.availableTokens; let isBity = (_coin) => { @@ -140,8 +141,9 @@ var swapCtrl = function ($scope, $sce, walletService) { } else { $scope.availableToOptions = ["ETH"] $scope.swapOrder.toCoin = "ETH"; - }$scope.swapOrder.fromCoin = coin; - }else { + } + $scope.swapOrder.fromCoin = coin; + } else { $scope.availableFromOptions = [] if (isBity(coin)) { if (coin == "ETH") { @@ -168,16 +170,19 @@ var swapCtrl = function ($scope, $sce, walletService) { } else { $scope.availableToOptions = ["ETH"] } - }$scope.swapOrder.toCoin = coin; + } + $scope.swapOrder.toCoin = coin; } - if (isBity($scope.swapOrder.toCoin) && isBity($scope.swapOrder.fromCoin)) {if ($scope.swapOrder.fromCoin == $scope.swapOrder.toCoin) - for (var i in bityOptions) - if (bityOptions[i] != $scope.swapOrder.fromCoin) { - $scope.swapOrder.toCoin = bityOptions[i]; - break; - }$scope.setBityOrderCoin(isFrom); + if (isBity($scope.swapOrder.toCoin) && isBity($scope.swapOrder.fromCoin)) { + if ($scope.swapOrder.fromCoin == $scope.swapOrder.toCoin) + for (var i in bityOptions) + if (bityOptions[i] != $scope.swapOrder.fromCoin) { + $scope.swapOrder.toCoin = bityOptions[i]; + break; + } + $scope.setBityOrderCoin(isFrom); } else { $scope.setKyberOrderCoin(isFrom); } @@ -185,13 +190,14 @@ var swapCtrl = function ($scope, $sce, walletService) { }; - $scope.setBityOrderCoin = function (isFrom) { + $scope.setBityOrderCoin = function(isFrom) { $scope.swapOrder.swapRate = $scope.bity.curRate[$scope.swapOrder.fromCoin + $scope.swapOrder.toCoin]; $scope.swapOrder.swapPair = $scope.swapOrder.fromCoin + "/" + $scope.swapOrder.toCoin; $scope.updateBityEstimate(isFrom); $scope.dropdownFrom = $scope.dropdownTo = false; }; - $scope.updateEstimate = function(isFrom) {if ($scope.checkIfKyber()) { + $scope.updateEstimate = function(isFrom) { + if ($scope.checkIfKyber()) { $scope.updateKyberEstimate(isFrom); } else { $scope.updateBityEstimate(isFrom); @@ -199,14 +205,14 @@ var swapCtrl = function ($scope, $sce, walletService) { }; - $scope.updateBityEstimate = function (isFrom) { + $scope.updateBityEstimate = function(isFrom) { if (isFrom) $scope.swapOrder.toVal = parseFloat(($scope.bity.curRate[$scope.swapOrder.fromCoin + $scope.swapOrder.toCoin] * $scope.swapOrder.fromVal).toFixed(bity.decimals)); else $scope.swapOrder.fromVal = parseFloat(($scope.swapOrder.toVal / $scope.bity.curRate[$scope.swapOrder.fromCoin + $scope.swapOrder.toCoin]).toFixed(bity.decimals)); $scope.swapOrder.isFrom = isFrom; }; - $scope.setFinalPrices = function () { + $scope.setFinalPrices = function() { $scope.showedMinMaxError = false; if ($scope.checkIfKyber()) { $scope.setKyberFinalPrices(); @@ -224,7 +230,7 @@ var swapCtrl = function ($scope, $sce, walletService) { } }; - var getProgressBarArr = function (index, len) { + var getProgressBarArr = function(index, len) { var tempArr = []; for (var i = 0; i < len; i++) { if (i < index) tempArr.push('progress-true'); @@ -235,13 +241,13 @@ var swapCtrl = function ($scope, $sce, walletService) { } // Only Bity orders are stored in local storage - var isStorageOrderExists = function () { + var isStorageOrderExists = function() { var order = globalFuncs.localStorage.getItem(lStorageKey, null); return order && $scope.Validator.isJSON(order); } // Only Bity orders are stored in local storage - var setOrderFromStorage = function () { + var setOrderFromStorage = function() { var order = JSON.parse(globalFuncs.localStorage.getItem(lStorageKey, null)); $scope.orderResult = order; $scope.swapOrder = order.swapOrder; @@ -249,11 +255,11 @@ var swapCtrl = function ($scope, $sce, walletService) { } // Only Bity orders are stored in local storage - var saveOrderToStorage = function (order) { + var saveOrderToStorage = function(order) { globalFuncs.localStorage.setItem(lStorageKey, JSON.stringify(order)); } - var processOrder = function () { + var processOrder = function() { var orderResult = $scope.orderResult; orderResult.progress = { status: "OPEN", @@ -264,7 +270,7 @@ var swapCtrl = function ($scope, $sce, walletService) { pendingStatusReq: false, checkDelay: 1000 }; - var timeRem = setInterval(function () { + var timeRem = setInterval(function() { if (!orderResult) clearInterval(timeRem); if (orderResult.progress.secsRemaining > 0) { if (orderResult.progress.status == "OPEN") @@ -282,13 +288,13 @@ var swapCtrl = function ($scope, $sce, walletService) { clearInterval(timeRem); } }, 1000); - var progressCheck = setInterval(function () { + var progressCheck = setInterval(function() { if (!orderResult) clearInterval(progressCheck); if (!orderResult.progress.pendingStatusReq) { orderResult.progress.pendingStatusReq = true; $scope.bity.getStatus({ orderid: orderResult.id - }, function (data) { + }, function(data) { if (data.error) $scope.notifier.danger(data.msg); else { data = data.data; @@ -326,20 +332,20 @@ var swapCtrl = function ($scope, $sce, walletService) { if ($scope.orderResult.input.currency == 'BTC') $scope.showStage3Btc = true; else { $scope.parentTxConfig = { - to: ethUtil.toChecksumAddress($scope.orderResult.payment_address), - value: $scope.orderResult.input.amount, - sendMode: $scope.orderResult.input.currency == 'ETH' ? 'ether' : 'token', - tokensymbol: $scope.orderResult.input.currency == 'ETH' ? '' : $scope.orderResult.input.currency, - readOnly: true - } - // console.log(document.getElementById('sendTransaction')); //todo remove dev item - //new Modal(document.getElementById('sendTransaction')); + to: ethUtil.toChecksumAddress($scope.orderResult.payment_address), + value: $scope.orderResult.input.amount, + sendMode: $scope.orderResult.input.currency == 'ETH' ? 'ether' : 'token', + tokensymbol: $scope.orderResult.input.currency == 'ETH' ? '' : $scope.orderResult.input.currency, + readOnly: true + } + // console.log(document.getElementById('sendTransaction')); //todo remove dev item + //new Modal(document.getElementById('sendTransaction')); $scope.showStage3Eth = true; } } - $scope.openOrder = function () { + $scope.openOrder = function() { if (($scope.swapOrder.toCoin != 'BTC' && $scope.Validator.isValidAddress($scope.swapOrder.toAddress)) || ($scope.swapOrder.toCoin == 'BTC' && $scope.Validator.isValidBTCAddress($scope.swapOrder.toAddress))) { var order = { @@ -348,7 +354,7 @@ var swapCtrl = function ($scope, $sce, walletService) { pair: $scope.swapOrder.fromCoin + $scope.swapOrder.toCoin, destAddress: $scope.swapOrder.toAddress } - $scope.bity.openOrder(order, function (data) { + $scope.bity.openOrder(order, function(data) { if (!data.error) { $scope.orderResult = data.data; $scope.orderResult.swapOrder = $scope.swapOrder; @@ -390,7 +396,7 @@ var swapCtrl = function ($scope, $sce, walletService) { } }; - $scope.kyberInit = function () { + $scope.kyberInit = function() { $scope.checkKyberNetwork(); $scope.receiveDecimals = 6; $scope.sendDecimals = 6; @@ -450,17 +456,17 @@ var swapCtrl = function ($scope, $sce, walletService) { /* ------------------------- MAIN SWAP PAGE FUNCTIONALITY TIE-INs (START) ------------------------------------- */ // called in setOrderCoin if selected pair is a kyber network pair - $scope.setKyberOrderCoin = async function (isFrom) { + $scope.setKyberOrderCoin = async function(isFrom) { + $scope.dropdownFrom = $scope.dropdownTo = false; let _availableResult = await $scope.isKyberPairAvailable(); if (_availableResult) { $scope.swapOrder.swapRate = $scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)]; $scope.swapOrder.swapPair = $scope.swapOrder.fromCoin + "/" + $scope.swapOrder.toCoin; $scope.updateEstimate(isFrom); - $scope.dropdownFrom = $scope.dropdownTo = false; } }; - $scope.isKyberPairAvailable = async function () { + $scope.isKyberPairAvailable = async function() { let _returnedRate = await $scope.kyber.setKyberRate($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin); if (_returnedRate > 0) { return true; @@ -479,18 +485,18 @@ var swapCtrl = function ($scope, $sce, walletService) { }; // calculates the rate for display when a kyber pair is selected - $scope.kyberSwapRateDisplay = function () { + $scope.kyberSwapRateDisplay = function() { if ($scope.checkIfKyber()) $scope.kyberSwapRateDisplayValue = $scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)] }; //used in updateEstimate and verifyBityMinMaxValues - $scope.checkIfKyber = function () { + $scope.checkIfKyber = function() { $scope.isKyberRateSwap = (($scope.availableTokens.indexOf($scope.swapOrder.fromCoin) >= 0 || $scope.swapOrder.fromCoin == "ETH") && ($scope.availableTokens.indexOf($scope.swapOrder.toCoin) >= 0 || $scope.swapOrder.toCoin == "ETH")); return $scope.isKyberRateSwap; }; // Only Bity orders are stored in local storage - $scope.verifyKyberMinMaxValues = function () { + $scope.verifyKyberMinMaxValues = function() { // check if pair is available. Display message if is is not; if ($scope.swapOrder.toVal == '' || $scope.swapOrder.fromVal == '' || $scope.swapOrder.toVal == '0' || $scope.swapOrder.fromVal == '0' || $scope.showedMinMaxError) return false; var errors = { @@ -500,7 +506,7 @@ var swapCtrl = function ($scope, $sce, walletService) { noErrors: 3, pairNotAvailable: 4 }; - let verify = function () { + let verify = function() { if (!$scope.kyber.priceLoaded) return errors.priceNotLoaded; else if ($scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)] == 0) return errors.pairNotAvailable; else if ($scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)] == "0") return errors.pairNotAvailable; @@ -518,7 +524,7 @@ var swapCtrl = function ($scope, $sce, walletService) { }; // called in updateEstimate if selected pair is a kyber network pair - $scope.updateKyberEstimate = function (isFrom) { + $scope.updateKyberEstimate = function(isFrom) { try { if (/,/.test($scope.swapOrder.fromVal) || /,/.test($scope.swapOrder.toVal)) { $scope.displayKyberErrorMessage("commas"); @@ -538,12 +544,11 @@ var swapCtrl = function ($scope, $sce, walletService) { $scope.swapOrder.fromVal = ""; } $scope.swapOrder.isFrom = isFrom; - } catch (e) { - } + } catch (e) {} }; // called in setFinalPrices if selected pair is a kyber network pair - $scope.setKyberFinalPrices = function () { + $scope.setKyberFinalPrices = function() { $scope.showedMinMaxError = false; $scope.isKyberSwap = $scope.checkIfKyber(); if ($scope.validKyberPair()) { @@ -552,7 +557,7 @@ var swapCtrl = function ($scope, $sce, walletService) { if (!$scope.Validator.isPositiveNumber($scope.swapOrder.fromVal) || !$scope.Validator.isPositiveNumber($scope.swapOrder.toVal)) throw "Negative value present in input"; else if (!$scope.verifyMinMaxValues()) throw "Min. Max. value error"; - $scope.updateFinalKyberEstimate($scope.swapOrder.isFrom, function () { + $scope.updateFinalKyberEstimate($scope.swapOrder.isFrom, function() { // $scope.canSetKyberFinal = true; if ($scope.swapOrder.finalRate > 0 && $scope.swapOrder.swapRate > 0) { $scope.showStage1 = false; @@ -581,9 +586,9 @@ var swapCtrl = function ($scope, $sce, walletService) { // called with actual transaction source value to provide the most accurate estimate through the confirmation stages // added callback so the progression waits for getExpected rate to return a value - $scope.updateFinalKyberEstimate = function (isFrom, callback) { + $scope.updateFinalKyberEstimate = function(isFrom, callback) { try { - $scope.kyber.getExpectedRate($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin, $scope.swapOrder.fromVal, function (_rates) { + $scope.kyber.getExpectedRate($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin, $scope.swapOrder.fromVal, function(_rates) { let finalRate = $scope.kyber.convertToTokenBase(_rates.data.slippageRate, "ETH"); // todo: provide message and option to return if the rate value for the specified qty is 0. // todo: or just provide the message and don't 'route' to the next page (I like this better) @@ -614,14 +619,14 @@ var swapCtrl = function ($scope, $sce, walletService) { /* ------------------------------------- KYBER CHECKS ------------------------------------- */ - $scope.checkKyberNetwork = function () { - $scope.kyber.kyberNetworkState(function (data) { + $scope.checkKyberNetwork = function() { + $scope.kyber.kyberNetworkState(function(data) { $scope.kyberNetworkEnabled = data.data; }) }; // if user cap is below the entered amount allow the user to go back and change their inputs - $scope.returnToStart = function () { + $scope.returnToStart = function() { $scope.showStage1 = true; $scope.showStage2Kyber = false; $scope.showStage3Kyber = false; @@ -633,9 +638,9 @@ var swapCtrl = function ($scope, $sce, walletService) { $scope.kyberReturnToStart = false; }; - var checkForPriorTokenApproval = function (_address, callback) { + var checkForPriorTokenApproval = function(_address, callback) { if ($scope.swapOrder.fromCoin === "ETH") return callback(false); - $scope.kyber.allowance($scope.swapOrder.fromCoin, _address, function (data) { + $scope.kyber.allowance($scope.swapOrder.fromCoin, _address, function(data) { if (data.error) $scope.notifier.danger(data.msg); else { console.log("auth value", data); //todo remove dev item @@ -659,7 +664,7 @@ var swapCtrl = function ($scope, $sce, walletService) { }); } - var checkUserCap = function (_userAddress, callback) { + var checkUserCap = function(_userAddress, callback) { let swapValue, isFrom; if ($scope.swapOrder.fromCoin == "ETH") { swapValue = $scope.swapOrder.fromVal; @@ -682,22 +687,22 @@ var swapCtrl = function ($scope, $sce, walletService) { $scope.kyber.checkUserCap(_userAddress, swapValue, isFrom, callback) }; - $scope.checkIfUserCanDo = function (_userAddress) { + $scope.checkIfUserCanDo = function(_userAddress) { // console.log("checkIfUserCanDo 1", $scope.checkTokenBalance); //todo remove dev item try { if ($scope.checkTokenBalance) { // console.log("checkIfUserCanDo 2", $s/cope.checkTokenBalance); //todo remove dev item $scope.indicatorhacked = []; - var makeIndicator = setInterval(function () { + var makeIndicator = setInterval(function() { $scope.indicatorhacked.push("."); if ($scope.indicatorhacked.length > 10) $scope.indicatorhacked = []; }, 100); $scope.checkTokenBalance = false; - checkUserCap(_userAddress, function (result) { + checkUserCap(_userAddress, function(result) { // console.log("checkIfUserCanDo result", result); //todo remove dev item if (!result.error) { - $scope.kyber.getBalance($scope.swapOrder.fromCoin, _userAddress, function (_result) { + $scope.kyber.getBalance($scope.swapOrder.fromCoin, _userAddress, function(_result) { // console.log(_result); //todo remove dev item let userTokenBalance = new BigNumber($scope.kyber.convertToTokenBase(_result.data, $scope.swapOrder.fromCoin)); let enoughTokens = userTokenBalance.gte($scope.swapOrder.fromVal); @@ -741,7 +746,7 @@ var swapCtrl = function ($scope, $sce, walletService) { } }; - $scope.validKyberPair = function () { + $scope.validKyberPair = function() { let hasEth = ($scope.swapOrder.fromCoin == "ETH" || $scope.swapOrder.toCoin == "ETH"); let notBTC = ($scope.swapOrder.fromCoin !== "BTC" || $scope.swapOrder.toCoin !== "BTC"); let notREP = ($scope.swapOrder.fromCoin !== "REP" || $scope.swapOrder.toCoin !== "REP"); @@ -750,7 +755,7 @@ var swapCtrl = function ($scope, $sce, walletService) { /* ------------------------------------- KYBER SPECIFIC (tx related) ------------------------------------- */ - $scope.prepareKyber = function () { + $scope.prepareKyber = function() { // document.addEventListener("unload", function(event){ // alert("warning warning"); @@ -783,7 +788,7 @@ var swapCtrl = function ($scope, $sce, walletService) { /* ----------- Kyber ETH & TOKEN ----------- */ // Setup the kyber transaction at the point where the user enters the destAddress (enter address stage) - $scope.startKyber = function () { + $scope.startKyber = function() { try { // console.log("startKyber 1", walletService.wallet); //todo remove dev item // Enable checking if user can proceed @@ -813,14 +818,14 @@ var swapCtrl = function ($scope, $sce, walletService) { }; // Set status to reflect a token to ETH (or Token to Token) swap to trigger proper UI elements and processing flow - $scope.startKyberTokenSwap = function () { + $scope.startKyberTokenSwap = function() { $scope.kyberOrderResult.progress = $scope.buildKyberOrderResultProgress(); $scope.setKyberStatus($scope.kyberStatus.token.prepare); if (!$scope.$$phase) $scope.$apply(); }; // Stage 3 'Start Swap'. Based on selected swap pair determine which processing flow to follow - $scope.openKyberOrder = function (wallet) { + $scope.openKyberOrder = function(wallet) { // console.log($scope.walletKyber); //todo remove dev item $scope.wallet = walletService.wallet; if ($scope.availableTokens.indexOf($scope.swapOrder.fromCoin) >= 0) { @@ -833,7 +838,7 @@ var swapCtrl = function ($scope, $sce, walletService) { /* ----------- Kyber [ETH -> Token] (specific functions) ----------- */ // Set status to reflect a ETH to token swap to trigger proper UI elements and processing flow - $scope.startKyberEthSwap = function () { + $scope.startKyberEthSwap = function() { try { $scope.kyberEthToToken = true; $scope.kyberOrderResult.progress = $scope.buildKyberOrderResultProgress(); @@ -845,7 +850,7 @@ var swapCtrl = function ($scope, $sce, walletService) { }; // Initiate ETH to Token Swap flow - $scope.openKyberEthOrder = function () { + $scope.openKyberEthOrder = function() { try { $scope.addressString = $scope.walletKyber.getAddressString(); $scope.tx = $scope.buildTransactionObject($scope.kyber.getTradeData($scope.swapOrder, $scope.swapOrder.swapRate), $scope.kyber.getKyberNetworkAddress(), $scope.swapOrder.fromVal); @@ -863,7 +868,7 @@ var swapCtrl = function ($scope, $sce, walletService) { // Initiate Token to ETH (or Token to Token) Swap flow // Build the Approve transaction to send to the Token Contract of the 'from' Token - $scope.checkForResetApproveTokenKyber = function () { + $scope.checkForResetApproveTokenKyber = function() { try { if ($scope.kyberTransaction.tokenNeedsReset) { $scope.tx = $scope.buildTransactionObject($scope.kyber.approveKyber($scope.swapOrder.fromCoin, 0), $scope.kyber.getTokenAddress($scope.swapOrder.fromCoin)); @@ -878,7 +883,7 @@ var swapCtrl = function ($scope, $sce, walletService) { } }; - $scope.approveTokenKyber = function (nonce, gasPrice) { + $scope.approveTokenKyber = function(nonce, gasPrice) { try { $scope.tx = $scope.buildTransactionObject($scope.kyber.approveKyber($scope.swapOrder.fromCoin, $scope.swapOrder.fromVal), $scope.kyber.getTokenAddress($scope.swapOrder.fromCoin)); var txData = uiFuncs.getTxData($scope); @@ -897,7 +902,7 @@ var swapCtrl = function ($scope, $sce, walletService) { }; // Build the Swap transaction to send to the Kyber Network Contract to execute the swap - $scope.openKyberTokenOrder = function (nonce, gasPrice) { + $scope.openKyberTokenOrder = function(nonce, gasPrice) { try { $scope.tx = $scope.buildTransactionObject($scope.kyber.getTradeData($scope.swapOrder, $scope.swapOrder.swapRate), $scope.kyber.getKyberNetworkAddress()); var txData = uiFuncs.getTxData($scope); @@ -941,9 +946,9 @@ var swapCtrl = function ($scope, $sce, walletService) { */ // generate the transaction object based on the specific flow stage - $scope.generateKyberTransaction = function (txData, stage) { + $scope.generateKyberTransaction = function(txData, stage) { try { - uiFuncs.generateTx(txData, function (rawTx) { + uiFuncs.generateTx(txData, function(rawTx) { console.log($scope.kyberOrderResult.progress.status); //todo remove dev item if (!rawTx.isError) { switch (stage) { @@ -991,7 +996,7 @@ var swapCtrl = function ($scope, $sce, walletService) { }; // Trigger the opening of the modal for user review and authorization to proceed - $scope.sendKyberModal = function () { + $scope.sendKyberModal = function() { //PageTransitionEvent console.log($scope.kyberOrderResult.progress.status); //todo remove dev item @@ -1020,7 +1025,7 @@ var swapCtrl = function ($scope, $sce, walletService) { }; // call the send function with content specific to the transaction object related to the specific flow stage - $scope.sendKyberTransaction = function () { + $scope.sendKyberTransaction = function() { try { switch ($scope.kyberOrderResult.progress.status) { case "RESET_TOKEN_APPROVAL": @@ -1060,9 +1065,9 @@ var swapCtrl = function ($scope, $sce, walletService) { }; // Send the transaction, call functions related to the specific flow stage, and update the UI - $scope.sendKyberTx = function (signedTx) { + $scope.sendKyberTx = function(signedTx) { try { - uiFuncs.sendTx(signedTx, function (resp) { + uiFuncs.sendTx(signedTx, function(resp) { if (!resp.isError) { let notCustomNode = $scope.ajaxReq.type != nodes.nodeTypes.Custom; switch ($scope.kyberOrderResult.progress.status) { @@ -1115,7 +1120,7 @@ var swapCtrl = function ($scope, $sce, walletService) { /* ----------- Kyber [Token -> ETH] (Polling For Token Approval) ----------- */ // Poll token contract for approval, then trigger the Kyber Network Contract portion of the flow - $scope.checkForTokenApproveKyber = function (address) { + $scope.checkForTokenApproveKyber = function(address) { if ($scope.kyberTransaction.tokenNeedsReset) { $scope.kyberOrderResult.progress.bar = getProgressBarArr(4, 5); } else { @@ -1126,7 +1131,7 @@ var swapCtrl = function ($scope, $sce, walletService) { }; // Poll token contract for approval, then trigger the Kyber Network Contract portion of the flow - $scope.checkForTokenResetKyber = function (address) { + $scope.checkForTokenResetKyber = function(address) { $scope.kyberOrderResult.progress.bar = getProgressBarArr(3, 5); $scope.setKyberStatus($scope.kyberStatus.token.open); //AWAITING_TOKEN_APPROVAL $scope.sendKyberTransaction(); //todo uncomment after dev @@ -1135,7 +1140,7 @@ var swapCtrl = function ($scope, $sce, walletService) { /* ---------------------------------------- MISC./UTIL --------------------------------------------------------- */ // Build a $scope.tx object with supplied parameters - $scope.buildTransactionObject = function (data, to, value, gasPrice) { + $scope.buildTransactionObject = function(data, to, value, gasPrice) { return { gasLimit: kyber.defaultValues.gasLimit, data: data, @@ -1148,7 +1153,7 @@ var swapCtrl = function ($scope, $sce, walletService) { }; // Build a $scope.orderResult.progress object with initial values - $scope.buildKyberOrderResultProgress = function () { + $scope.buildKyberOrderResultProgress = function() { return { bar: getProgressBarArr(1, 5), weiValue: $scope.kyber.convertToTokenBase($scope.swapOrder.fromVal, "ETH"), @@ -1158,14 +1163,14 @@ var swapCtrl = function ($scope, $sce, walletService) { }; }; - $scope.displayTxHashPopup = function (resp, txHashInject) { + $scope.displayTxHashPopup = function(resp, txHashInject) { var emailLink = 'Confused? Email Us.'; // email link var bExStr = $scope.ajaxReq.type != nodes.nodeTypes.Custom ? ` View your transaction ` : ""; $scope.sendTxStatus += globalFuncs.successMsgs[2] + "

" + resp.data + "

" + bExStr + "

" + emailLink + "

"; $scope.notifier.success($scope.sendTxStatus); }; - $scope.displayKyberErrorMessage = function (type, params) { + $scope.displayKyberErrorMessage = function(type, params) { switch (type) { case "userCap": let message; @@ -1202,12 +1207,12 @@ var swapCtrl = function ($scope, $sce, walletService) { } - $scope.setKyberStatus = function (status) { + $scope.setKyberStatus = function(status) { $scope.kyberOrderResult.progress.status = status; }; - $scope.parseKyberSignedTx = function (signedTx) { + $scope.parseKyberSignedTx = function(signedTx) { $scope.parsedKyberTx = $scope.parseKyberSignedTransaction(signedTx); if (!$scope.kyberEthToToken) { $scope.parsedKyberTokenTx = $scope.parseKyberSignedTransaction($scope.kyberTransaction.tokenApproveTx.signedTx); @@ -1251,7 +1256,7 @@ var swapCtrl = function ($scope, $sce, walletService) { } }; - $scope.parseKyberSignedTransaction = function (signedTx) { + $scope.parseKyberSignedTransaction = function(signedTx) { var txData = {} var isJSON = false; let parsedKyberTx = {} @@ -1280,14 +1285,14 @@ var swapCtrl = function ($scope, $sce, walletService) { return parsedKyberTx; }; - var applyScope = function () { + var applyScope = function() { if (!$scope.$$phase) $scope.$apply(); }; - $scope.$watch(function () { + $scope.$watch(function() { if (walletService.wallet == null) return null; return walletService.wallet.getAddressString(); - }, function (oldVal, newVal, scpe) { + }, function(oldVal, newVal, scpe) { // console.log("$watch", oldVal); //todo remove dev item // console.log("$watch", newVal); //todo remove dev item if (walletService.wallet == null) return; @@ -1303,7 +1308,7 @@ var swapCtrl = function ($scope, $sce, walletService) { ///////////////////////// KYBER (end) ////////////////////////////////////////////////////////////////// - $scope.newSwap = function () { + $scope.newSwap = function() { globalFuncs.localStorage.setItem(lStorageKey, ''); initValues(); }; diff --git a/chrome-extension/contest.html b/chrome-extension/contest.html index cb5760b5a6..e339205cf8 100644 --- a/chrome-extension/contest.html +++ b/chrome-extension/contest.html @@ -98,13 +98,13 @@ MyEtherWallet -

3.21.08

+

3.21.09

- + @@ -330,13 +330,11 @@

MEW 100K Followers Contest Official Rules

NO PURCHASE IS NECESSARY TO ENTER OR WIN. A PURCHASE DOES NOT INCREASE THE CHANCES OF WINNING.

  1. - Eligibility: This Campaign is open only to those - who sign up at the who complete + Eligibility: This Campaign is open only to those who complete the contest requirements and who send an email containing the name, email, telephone, city and country of residence, along with a link to their video or blog post to contests@myetherwallet.com - and who are 21 years or older - as of the date of entry.The Campaign is only open to legal residents of to + and who are 21 years or older as of the date of entry.The Campaign is only open to legal residents of to all countries, and is void where prohibited by law. Employees of MyEtherWallet Inc, its affiliates, subsidiaries, advertising and promotion agencies, and suppliers, (collectively the “Employees”), and immediate family members and/or those @@ -353,10 +351,8 @@

    MEW 100K Followers Contest Official Rules

  2. Campaign Period: Entries will be accepted online starting on April 12 at - 12:01am PDT and ending 7 days after the 100,000 Twitter follower threshold - has been reached. The final date will be announced on Twitter with all - entries being required to be received no later than 11:59pm PDT on the - date specified. + 12:01am PDT and ending on May 31, 2018 at 11:59pm. MyEtherWallet Inc reserves + the right to extend this date for whatever reason.
  3. How to Enter: The Campaign must be entered by submitting an email @@ -375,7 +371,7 @@

    MEW 100K Followers Contest Official Rules

  4. Prizes: The Winner(s) of the Campaign (the “Winner”) will receive First, Second & Third Prize: Macbook Pro, or MS Surface Pro + top 25 prizes - (approx $2600 value);Top 25:Ledger Hardware wallet w/MEW Gear Pack; + (approx $2600 value); Top 25: Ledger Hardware wallet w/MEW Gear Pack; Next 25: MEW Premium Gear Pack; Bottom 25: Standard MEW Gear Pack. Actual/appraised value may differ at time of prize award. The specifics of the prize shall be solely determined by MyEtherWallet Inc. No cash or @@ -403,7 +399,10 @@

    MEW 100K Followers Contest Official Rules

    contacted, is ineligible, fails to claim the prize within 5 days from the time award notification was sent, or fails to timely return a completed and executed declaration and release as required, the prize may be forfeited - and an alternate Winner selected. Receipt by Winner of the prize offered in + and an alternate Winner selected. Should fewer than 100 entries be received, + entrants will be evaluated on the criteria outlined in the contest announcement + and these Official Rules, and prizes will be limited to only those entrants. + Receipt by Winner of the prize offered in this Campaign is conditioned upon compliance with any and all federal, state, and local laws and regulations. ANY VIOLATION OF THESE OFFICIAL RULES BY WINNER (AT MYETHERWALLET’S SOLE DISCRETION) WILL RESULT IN WINNER’S DISQUALIFICATION AS @@ -412,14 +411,14 @@

    MEW 100K Followers Contest Official Rules

  5. Rights Granted by You: By entering this content (e.g., photo, video, text, etc.), You understand and agree that MyEtherWallet, Inc , anyone acting on behalf of - MyEtherWallet, Inc, andMyEtherWallet, Inc’s licensees, successors, and assigns, + MyEtherWallet, Inc, andMyEtherWallet, Inc’s licensees, successors, and assigns, shall have the right, where permitted by law, to print, publish, broadcast, distribute, and use in any media now known or hereafter developed, in perpetuity and throughout the World, without limitation, your entry, name, portrait, picture, voice, likeness, image, statements about the Campaign, and biographical information for news, publicity, information, trade, advertising, public relations, and promotional purposes. without any further compensation, notice, review, - or consent. Optional verbiage for Contests: By entering this content, You + or consent. By entering this contest, You represent and warrant that your entry is an original work of authorship, and does not violate any third party’s proprietary or intellectual property rights. If your entry infringes upon the intellectual property right of @@ -429,14 +428,14 @@

    MEW 100K Followers Contest Official Rules

    shall, at your sole expense, defend or settle against such claims. You shall indemnify, defend, and hold harmless MyEtherWallet, Inc from and against any suit, proceeding, claims, liability, loss, damage, costs or expense, which - MyEtherWallet, Inc may incur, suffer, or be required to pay arising out of + MyEtherWallet, Inc may incur, suffer, or be required to pay arising out of such infringement or suspected infringement of any third party’s right.
  6. Terms & Conditions: MyEtherWallet, Inc reserves the right, in its sole discretion, to cancel, terminate, modify or suspend the Campaign should virus, bug, non-authorized human intervention, fraud, or other cause beyond - MyEtherWallet’s control corrupt or affect the administration, security, + MyEtherWallet’s control corrupt or affect the administration, security, fairness, or proper conduct of the Campaign. In such case, MyEtherWallet, Inc may select the Winner from all eligible entries received prior to and/or after (if appropriate) the action taken by MyEtherWallet, Inc.MyEtherWallet, Inc diff --git a/chrome-extension/cx-wallet.html b/chrome-extension/cx-wallet.html index 8005310594..b82bc4480a 100644 --- a/chrome-extension/cx-wallet.html +++ b/chrome-extension/cx-wallet.html @@ -83,12 +83,12 @@ MyEtherWallet -

    3.21.08

    +

    3.21.09

    - + @@ -2931,11 +2931,18 @@

    {{swapOrder.swapRate | number: 6}} {{swapOrder.swapPair}}

    3

    {{kyberOrderResult.input.currency}} Received!

    + + + + + + +
    4

    - Sending your {{kyberOrderResult.output.currency}} -
    + + Broadcasting your {{kyberOrderResult.output.currency}} order

    @@ -3156,7 +3163,7 @@

    - +- + +-
    Advanced
    @@ -3276,6 +3283,62 @@
    Advanced
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Data:

    {{parsedKyberTokenTx.data}}

    Token Approval Reset Transaction
    + Why? The swap will fail to execute if token approval is not reset to 0.
    To Address:{{parsedKyberResetTokenTx.to}} +
    + The token ({{swapOrder.fromCoin}}) contract address. +
    From Address:{{parsedKyberResetTokenTx.from}}
    Amount to Send:0 ETH
    Current Approve Value:{{kyberTransaction.currentTokenApprovalValue}} {{swapOrder.fromCoin}}
    Account Balance:{{parsedKyberResetTokenTx.balance}}
    Network:{{ajaxReq.type}} by {{ajaxReq.service}}
    Gas Limit:{{parsedKyberResetTokenTx.gasLimit}}
    Gas Price:{{parsedKyberResetTokenTx.gasPrice.gwei}} GWEI + ({{parsedKyberResetTokenTx.gasPrice.eth}} ETH) +
    Max TX Fee: {{parsedKyberTokenTx.txFee.eth}} ETH + ({{parsedKyberResetTokenTx.txFee.gwei}} GWEI) +
    Nonce:{{parsedKyberResetTokenTx.nonce}}
    Data:

    {{parsedKyberResetTokenTx.data}}

    @@ -3499,33 +3562,53 @@

    {{swapOrder.swapRate | number: 6}} {{swapOrder.swapPair}}

    Transaction Hash(es):
    -
    - + +
    Track your swap transaction:

    - Waiting for token authorization {{tick}}
    - Do Not Navigate Away or Close Your Browser + Your Swap Waiting for token authorization {{tick}}
    +
    Do Not Navigate Away or Close Your Browser
    +
    {{kyberTransaction.tokenTxHash}}
    +
    -
    {{orderResult.progress.timeMessage}}
    - View your token authorization transaction: + Track your token authorization transaction: + +
    +
    + Preparing Token State for Token Authorization {{tick}}
    +
    +
    {{kyberTransaction.tokenApproveTxHash}}
    + + + +
    + + Track your token approval reset transaction: + + +
    {{kyberTransaction.tokenResetTxHash}}
    +
    +
    + + +
    Track your swap transaction: @@ -3535,8 +3618,13 @@
    {{kyberTransaction.tokenApproveTxHash}}
    {{kyberTransaction.ethTxHash}}
    + +
    +
    diff --git a/chrome-extension/helpers.html b/chrome-extension/helpers.html index c40a6f917a..d5f4946f3e 100644 --- a/chrome-extension/helpers.html +++ b/chrome-extension/helpers.html @@ -98,13 +98,13 @@ MyEtherWallet -

    3.21.08

    +

    3.21.09

    - + diff --git a/chrome-extension/js/etherwallet-master.js b/chrome-extension/js/etherwallet-master.js index 1efe1f19a8..76e43633fd 100644 --- a/chrome-extension/js/etherwallet-master.js +++ b/chrome-extension/js/etherwallet-master.js @@ -2,6 +2,12 @@ module.exports=[] },{}],2:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],3:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],4:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],5:[function(require,module,exports){ module.exports=[ { "name": "Select a contract...", @@ -34,7 +40,7 @@ module.exports=[ } ] -},{}],3:[function(require,module,exports){ +},{}],6:[function(require,module,exports){ module.exports=[ { "name": "Select a contract...", "address": "", "abi": "" }, { @@ -163,6 +169,11 @@ module.exports=[ "abi": '[{"constant":false,"inputs":[{"name":"_startPresaleTime","type":"uint256"},{"name":"_endPresaleTime","type":"uint256"},{"name":"_startDayOneTime","type":"uint256"},{"name":"_endDayOneTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"}],"name":"updateDates","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockedTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_EARLYSALE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endPresaleTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalVested","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"claimLockedTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"vaultAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"onTransfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pauseContribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_PRESALE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalizeSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuedEarlySale","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"makeTransferable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_ethAmounts","type":"uint256[]"}],"name":"handleEarlySaleBuyers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_free","type":"uint256[]"},{"name":"_locked","type":"uint256[]"},{"name":"_cliffs","type":"uint256[]"}],"name":"handleExternalBuyers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"finalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"resumeContribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"startPresaleTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeTokenController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"onApprove","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_DAY_ONE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"proxyPayment","outputs":[{"name":"success","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"totalIssued","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endDayOneTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startDayOneTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_startPresaleTime","type":"uint256"},{"name":"_endPresaleTime","type":"uint256"},{"name":"_startDayOneTime","type":"uint256"},{"name":"_endDayOneTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"},{"name":"_vaultAddress","type":"address"},{"name":"_tokenAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]' }, + { + "name": "DetherToken", + "address": "0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190", + "abi": '[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":true,"name":"_value","type":"uint256"},{"indexed":false,"name":"_data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]' + }, { "name": "DGD Crowdsale / Claim", "address": "0xF0160428a8552AC9bB7E050D90eEADE4DDD52843", @@ -222,6 +233,12 @@ module.exports=[ "abi": '[{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"claimed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"time","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint128"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"foundersAllocation","outputs":[{"name":"","type":"uint128"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"day","type":"uint256"}],"name":"claim","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"foundersKey","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"userBuys","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"day","type":"uint256"}],"name":"createOnDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"freeze","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"keys","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"dailyTotals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"openTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"EOS","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"today","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"authority","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"eos","type":"address"}],"name":"initialize","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"createFirstDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"claimAll","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"timestamp","type":"uint256"}],"name":"dayFor","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"day","type":"uint256"},{"name":"limit","type":"uint256"}],"name":"buyWithLimit","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"collect","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"numberOfDays","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"key","type":"string"}],"name":"register","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"createPerDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_numberOfDays","type":"uint256"},{"name":"_totalSupply","type":"uint128"},{"name":"_openTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_foundersAllocation","type":"uint128"},{"name":"_foundersKey","type":"string"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"window","type":"uint256"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"window","type":"uint256"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"key","type":"string"}],"name":"LogRegister","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogCollect","type":"event"},{"anonymous":false,"inputs":[],"name":"LogFreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"}]' }, + { + "name": "eProxy (ePRX)", + "address": "0x147b51d82a6038607895e11C4191431335b257E3", + "abi": + '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"swapProxyTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"issuingTokenOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_spender","type":"address"},{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"TransferFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_Owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amountOffered","type":"uint256"},{"indexed":false,"name":"_amountReceived","type":"uint256"}],"name":"SwappedTokens","type":"event"}]' + }, { "name": "EtherDelta (02/09/2017)", "address": "0x8d12A197cB00D4747a1fe03395095ce2A5CC6819", @@ -355,6 +372,11 @@ module.exports=[ "address": "0x83c451371EF470D206cf011405D89f6ccb0e915e", "abi": '[{"constant":true,"inputs":[],"name":"hasClosed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"get_time_locked_contract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"contributions","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hasStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"closingTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"capReached","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"caps","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"release_all","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"getUserCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isFinalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"openingTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"getUserContribution","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"}]' }, + { + "name": "Nebula Ai Token", + "address": "0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D", + "abi": '[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"time_locked_reclaim_addresses","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"release_all","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"get_time_locked_contract_size","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token_unlock_time","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]' + }, { "name": "Nimiq Network Interim Token", "address": "0xcfb98637bcae43C13323EAa1731cED2B716962fD", @@ -429,6 +451,12 @@ module.exports=[ "abi": '[{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"dividendsOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_ethereumToSpend","type":"uint256"}],"name":"calculateTokensReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokensToSell","type":"uint256"}],"name":"calculateEthereumReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"onlyAmbassadors","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"administrators","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakingRequirement","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_includeReferralBonus","type":"bool"}],"name":"myDividends","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthereumBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"setStakingRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_identifier","type":"bytes32"},{"name":"_status","type":"bool"}],"name":"setAdministrator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"myTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"disableInitialStage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_toAddress","type":"address"},{"name":"_amountOfTokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_referredBy","type":"address"}],"name":"buy","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"reinvest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"incomingEthereum","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"},{"indexed":true,"name":"referredBy","type":"address"}],"name":"onTokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"tokensBurned","type":"uint256"},{"indexed":false,"name":"ethereumEarned","type":"uint256"}],"name":"onTokenSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumReinvested","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"}],"name":"onReinvestment","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumWithdrawn","type":"uint256"}],"name":"onWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"}]' }, + { + "name": "Proxy Token (PRXY)", + "address": "0x81BE91c7E74Ad0957B4156F782263e7B0B88cF7b", + "abi": + '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_cloneTokenName","type":"string"},{"name":"_cloneDecimalUnits","type":"uint8"},{"name":"_cloneTokenSymbol","type":"string"},{"name":"_snapshotBlock","type":"uint256"},{"name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_cloneToken","type":"address"},{"indexed":false,"name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"}]' + }, { "name": "PUC", "address": "0xef6b4ce8c9bc83744fbcde2657b32ec18790458a", @@ -594,11 +622,11 @@ module.exports=[ } ] -},{}],4:[function(require,module,exports){ +},{}],7:[function(require,module,exports){ arguments[4][1][0].apply(exports,arguments) -},{"dup":1}],5:[function(require,module,exports){ +},{"dup":1}],8:[function(require,module,exports){ arguments[4][1][0].apply(exports,arguments) -},{"dup":1}],6:[function(require,module,exports){ +},{"dup":1}],9:[function(require,module,exports){ module.exports=[{ "name": "Select a contract...", "address": "", @@ -609,9 +637,9 @@ module.exports=[{ "abi": '[{"constant":true,"inputs":[],"name":"message","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ViewerStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ViewerValue","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenRateEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"}],"name":"registrationFromLogin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"},{"name":"ActiveAliasAccount","type":"bool"},{"name":"ActiveMainAccount","type":"bool"},{"name":"PromilleDeposit","type":"uint256"},{"name":"DeleteMainAccount","type":"bool"}],"name":"setupAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"NewPIN","type":"uint256"}],"name":"setupAccountPIN","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"deleteLogin","type":"string"},{"name":"newLogin","type":"string"}],"name":"setupLoginVipAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"}],"name":"setupAliasAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"},{"name":"Freezen","type":"bool"}],"name":"frozenSubAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"}],"name":"buyVipStatusPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"buyTokenPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"toTransferETHER","type":"address"},{"name":"microToken","type":"uint256"},{"name":"SellDeposit","type":"bool"}],"name":"sellToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"login","type":"string"},{"name":"password","type":"string"}],"name":"depositaryPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"},{"name":"microToken","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"},{"name":"PIN","type":"uint256"}],"name":"transferFromLoginPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"}],"name":"transferToLoginPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"microToken","type":"uint256"}],"name":"returnDepositToBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"SubAccount","type":"address"},{"name":"PIN","type":"uint256"}],"name":"transferProtectPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"PIN","type":"uint256"}],"name":"unblockTransferProtectPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"SubAccount","type":"address"},{"name":"pinSubAccount","type":"uint256"},{"name":"promilleRefund","type":"uint256"}],"name":"transferRefundSubAccountPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"},{"name":"pinMainAccount","type":"uint256"},{"name":"SubAccount","type":"address"},{"name":"pinSubAccount","type":"uint256"},{"name":"promilleReferee","type":"uint256"}],"name":"refereeTransferProtect","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"VipAccount","type":"bool"},{"name":"ActiveAliasAccount","type":"bool"},{"name":"ActiveMainAccount","type":"bool"},{"name":"MainAccount","type":"address"},{"name":"MyReferralAccount","type":"address"}],"name":"MyAccountStatus","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Deposit","type":"bool"},{"name":"PromilleDeposit","type":"bool"},{"name":"ZoneToken","type":"bool"}],"name":"MyAccountValue","outputs":[{"name":"value","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"myMessage","type":"string"}],"name":"advertisingPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burnToken","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"microToken","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"Message","type":"string"}],"name":"Advertising","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"microToken","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"PriceVipAccountMicroEther","type":"uint256"},{"indexed":false,"name":"TransferTokensFeeInPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone1InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone2InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone3InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone4InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone5InPromille","type":"uint256"}],"name":"OptionsContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"microETHER","type":"uint256"}],"name":"TokenSellingRate","type":"event"}]' }] -},{}],7:[function(require,module,exports){ +},{}],10:[function(require,module,exports){ module.exports=[] -},{}],8:[function(require,module,exports){ +},{}],11:[function(require,module,exports){ module.exports=[{ "name": "Select a contract...", "address": "", @@ -634,7 +662,7 @@ module.exports=[{ "abi": '[{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"resolver","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"label","type":"bytes32"},{"name":"owner","type":"address"}],"name":"setSubnodeOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"ttl","type":"uint64"}],"name":"setTTL","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"ttl","outputs":[{"name":"","type":"uint64"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"resolver","type":"address"}],"name":"setResolver","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"owner","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"owner","type":"address"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":true,"name":"label","type":"bytes32"},{"indexed":false,"name":"owner","type":"address"}],"name":"NewOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"resolver","type":"address"}],"name":"NewResolver","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"ttl","type":"uint64"}],"name":"NewTTL","type":"event"}]' }] -},{}],9:[function(require,module,exports){ +},{}],12:[function(require,module,exports){ module.exports=[{ "name": "Select a contract...", "address": "", @@ -671,13 +699,25 @@ module.exports=[{ "name": "Mist's Multisig Contract", "address": "0x0000000000000000000000000000000000000000", "abi": '[{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"removeOwner","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"m_numOwners","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"m_lastDay","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"resetSpentToday","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_spentToday","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"addOwner","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_required","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_h","type":"bytes32"}],"name":"confirm","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_newLimit","type":"uint256"}],"name":"setDailyLimit","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"execute","outputs":[{"name":"_r","type":"bytes32"}],"type":"function"},{"constant":false,"inputs":[{"name":"_operation","type":"bytes32"}],"name":"revoke","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_newRequired","type":"uint256"}],"name":"changeRequirement","outputs":[],"type":"function"},{"constant":true,"inputs":[{"name":"_operation","type":"bytes32"},{"name":"_owner","type":"address"}],"name":"hasConfirmed","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"kill","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"}],"name":"changeOwner","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_dailyLimit","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"},{"name":"_daylimit","type":"uint256"}],"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"}],"name":"Confirmation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"}],"name":"Revoke","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"},{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"}],"name":"OwnerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newRequirement","type":"uint256"}],"name":"RequirementChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"SingleTransact","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"MultiTransact","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"initiator","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"ConfirmationNeeded","type":"event"}]' -}] +},{ + "name": "Mock EOS Token", + "address": "0xd3c64BbA75859Eb808ACE6F2A6048ecdb2d70817", + "abi": '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint128"}],"name":"push","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"name_","type":"bytes32"}],"name":"setName","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"wad","type":"uint128"}],"name":"mint","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"wad","type":"uint128"}],"name":"pull","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"wad","type":"uint128"}],"name":"burn","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"authority","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"guy","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"symbol_","type":"bytes32"}],"payable":false,"type":"constructor"},{"anonymous":true,"inputs":[{"indexed":true,"name":"sig","type":"bytes4"},{"indexed":true,"name":"guy","type":"address"},{"indexed":true,"name":"foo","type":"bytes32"},{"indexed":true,"name":"bar","type":"bytes32"},{"indexed":false,"name":"wad","type":"uint256"},{"indexed":false,"name":"fax","type":"bytes"}],"name":"LogNote","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]' +},{ + "name": "Mock KNC Token", + "address": "0xE5585362D0940519d87d29362115D4cc060C56B3", + "abi": '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleContract","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"emergencyERC20Drain","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleEndTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"tokenTotalAmount","type":"uint256"},{"name":"startTime","type":"uint256"},{"name":"endTime","type":"uint256"},{"name":"admin","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_burner","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"}]' +},{ + "name": "Mock ELF Token", + "address": "0x7174FCb9C2A49c027C9746983D8262597b5EcCb1", + "abi": ' [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_cloneTokenName","type":"string"},{"name":"_cloneDecimalUnits","type":"uint8"},{"name":"_cloneTokenSymbol","type":"string"},{"name":"_snapshotBlock","type":"uint256"},{"name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[{"name":"_tokenFactory","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_cloneToken","type":"address"},{"indexed":false,"name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"}]' +} ] -},{}],10:[function(require,module,exports){ -arguments[4][7][0].apply(exports,arguments) -},{"dup":7}],11:[function(require,module,exports){ +},{}],13:[function(require,module,exports){ +arguments[4][10][0].apply(exports,arguments) +},{"dup":10}],14:[function(require,module,exports){ arguments[4][1][0].apply(exports,arguments) -},{"dup":1}],12:[function(require,module,exports){ +},{"dup":1}],15:[function(require,module,exports){ 'use strict'; var ajaxReq = function ajaxReq() {}; @@ -687,7 +727,7 @@ ajaxReq.getETHvalue = null; ajaxReq.getRates = null; module.exports = ajaxReq; -},{}],13:[function(require,module,exports){ +},{}],16:[function(require,module,exports){ 'use strict'; var bity = function bity() {}; @@ -758,11 +798,19 @@ bity.post = function (path, data, callback) { }; module.exports = bity; -},{}],14:[function(require,module,exports){ +},{}],17:[function(require,module,exports){ "use strict"; var darklist = function darklist() { return [{ + address: "0x08389B19ad52f0d983609ab785b3a43A0E90355F", + comment: "Scam address for various fake twitter accounts and fake giveaways", + date: "2018-05-01" + }, { + address: "0x4114FB8B1879f61b18f7d2E623569a847a03e15A", + comment: "Fake 'Atonomis' presale", + date: "2018-04-27" + }, { address: "0x3c3b85b2ae785a8cc16c3d4df12cb27c6983dff5", comment: "Fake ICO support", date: "2018-04-08" @@ -790,10 +838,6 @@ var darklist = function darklist() { address: "0x64c5971dd27ff063ee4bc5e4c231febd9fc228cd", comment: "Fake Omnitude support", date: "2018-04-08" - }, { - address: "0xd8b21816d4c25b2e5d60e544ba094a9d14c30d4f", - comment: "Fake ICO support", - date: "2018-04-08" }, { address: "0x484aa220812a5ed3d1162686bc8592eb39276348", comment: "Fake PlayHall admin", @@ -3435,7 +3479,7 @@ var darklist = function darklist() { module.exports = darklist; -},{}],15:[function(require,module,exports){ +},{}],18:[function(require,module,exports){ 'use strict'; var addWalletCtrl = function addWalletCtrl($scope, $sce) { @@ -3713,7 +3757,7 @@ var addWalletCtrl = function addWalletCtrl($scope, $sce) { }; module.exports = addWalletCtrl; -},{}],16:[function(require,module,exports){ +},{}],19:[function(require,module,exports){ 'use strict'; var cxDecryptWalletCtrl = function cxDecryptWalletCtrl($scope, $sce, walletService) { @@ -3764,7 +3808,7 @@ var cxDecryptWalletCtrl = function cxDecryptWalletCtrl($scope, $sce, walletServi }; module.exports = cxDecryptWalletCtrl; -},{}],17:[function(require,module,exports){ +},{}],20:[function(require,module,exports){ 'use strict'; var mainPopCtrl = function mainPopCtrl($scope, $sce) { @@ -3800,7 +3844,7 @@ var mainPopCtrl = function mainPopCtrl($scope, $sce) { }; module.exports = mainPopCtrl; -},{}],18:[function(require,module,exports){ +},{}],21:[function(require,module,exports){ "use strict"; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -4099,7 +4143,7 @@ var myWalletsCtrl = function myWalletsCtrl($scope, $sce, $timeout, walletService }; module.exports = myWalletsCtrl; -},{}],19:[function(require,module,exports){ +},{}],22:[function(require,module,exports){ 'use strict'; var quickSendCtrl = function quickSendCtrl($scope, $sce, darkList) { @@ -4213,7 +4257,7 @@ var quickSendCtrl = function quickSendCtrl($scope, $sce, darkList) { }; module.exports = quickSendCtrl; -},{}],20:[function(require,module,exports){ +},{}],23:[function(require,module,exports){ 'use strict'; var bulkGenCtrl = function bulkGenCtrl($scope) { @@ -4245,7 +4289,7 @@ var bulkGenCtrl = function bulkGenCtrl($scope) { }; module.exports = bulkGenCtrl; -},{}],21:[function(require,module,exports){ +},{}],24:[function(require,module,exports){ 'use strict'; var contractsCtrl = function contractsCtrl($scope, $sce, walletService) { @@ -4446,7 +4490,7 @@ var contractsCtrl = function contractsCtrl($scope, $sce, walletService) { }; module.exports = contractsCtrl; -},{}],22:[function(require,module,exports){ +},{}],25:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -4477,6 +4521,7 @@ var decryptWalletCtrl = function decryptWalletCtrl($scope, $sce, walletService) hwUbqPath: "m/44'/108'/0'/0", // first address: m/44'/40'/0'/0/0 hwExpansePath: "m/44'/40'/0'/0", // first address: m/44'/40'/0'/0/0 hwEllaismPath: "m/44'/163'/0'/0", // first address: m/44'/163'/0'/0/0 + hwEtherGemPath: "m/44'/1987'/0'/0", // first address: m/44'/1987'/0'/0/0 singularDTVPath: "m/0'/0'/0'", // first address: m/0'/0'/0'/0 hwRskPath: "m/44'/137'/0'/0" // first address : m/44'/137'/0'/0/0 }; @@ -4536,6 +4581,9 @@ var decryptWalletCtrl = function decryptWalletCtrl($scope, $sce, walletService) case nodes.nodeTypes.ELLA: $scope.HDWallet.dPath = $scope.HDWallet.hwEllaismPath; break; + case nodes.nodeTypes.EGEM: + $scope.HDWallet.dPath = $scope.HDWallet.hwEtherGemPath; + break; default: $scope.HDWallet.dPath = $scope.HDWallet.trezorPath; } @@ -4829,7 +4877,7 @@ var decryptWalletCtrl = function decryptWalletCtrl($scope, $sce, walletService) module.exports = decryptWalletCtrl; }).call(this,require("buffer").Buffer) -},{"buffer":219}],23:[function(require,module,exports){ +},{"buffer":225}],26:[function(require,module,exports){ 'use strict'; var domainsaleCtrl = function domainsaleCtrl($scope, $sce, walletService) { @@ -5184,7 +5232,7 @@ var domainsaleCtrl = function domainsaleCtrl($scope, $sce, walletService) { }; module.exports = domainsaleCtrl; -},{}],24:[function(require,module,exports){ +},{}],27:[function(require,module,exports){ 'use strict'; var ensCtrl = function ensCtrl($scope, $sce, walletService) { @@ -5594,7 +5642,7 @@ var ensCtrl = function ensCtrl($scope, $sce, walletService) { }; module.exports = ensCtrl; -},{}],25:[function(require,module,exports){ +},{}],28:[function(require,module,exports){ 'use strict'; var footerCtrl = function footerCtrl($scope, globalService) { @@ -5632,7 +5680,7 @@ var footerCtrl = function footerCtrl($scope, globalService) { }; module.exports = footerCtrl; -},{}],26:[function(require,module,exports){ +},{}],29:[function(require,module,exports){ 'use strict'; var helpersCtrl = function helpersCtrl($scope) { @@ -5795,7 +5843,7 @@ FINALIZE */ -},{}],27:[function(require,module,exports){ +},{}],30:[function(require,module,exports){ 'use strict'; var offlineTxCtrl = function offlineTxCtrl($scope, $sce, walletService) { @@ -5990,7 +6038,7 @@ var offlineTxCtrl = function offlineTxCtrl($scope, $sce, walletService) { }; module.exports = offlineTxCtrl; -},{}],28:[function(require,module,exports){ +},{}],31:[function(require,module,exports){ 'use strict'; var onboardingCtrl = function onboardingCtrl($scope, globalService, $translate, $sce) { @@ -6031,7 +6079,7 @@ var onboardingCtrl = function onboardingCtrl($scope, globalService, $translate, }; module.exports = onboardingCtrl; -},{}],29:[function(require,module,exports){ +},{}],32:[function(require,module,exports){ 'use strict'; var sendTxCtrl = function sendTxCtrl($scope, $sce, walletService, $rootScope) { @@ -6344,7 +6392,7 @@ var sendTxCtrl = function sendTxCtrl($scope, $sce, walletService, $rootScope) { }; module.exports = sendTxCtrl; -},{}],30:[function(require,module,exports){ +},{}],33:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -6559,7 +6607,7 @@ var signMsgCtrl = function signMsgCtrl($scope, $sce, walletService) { module.exports = signMsgCtrl; }).call(this,require("buffer").Buffer) -},{"buffer":219}],31:[function(require,module,exports){ +},{"buffer":225}],34:[function(require,module,exports){ 'use strict'; function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; } @@ -6586,7 +6634,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { if (coin == 'REP') return false; return true; // if ($scope.fromExclude.indexOf(coin) > -1) return false; - // else return true; + // else returntrue; }; // Currently Not Really Used (kept for usage in a future feature) @@ -6678,7 +6726,6 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { } }; // todo: devise a Cleaner method - $scope.setOrderCoin = function (isFrom, coin) { $scope.kyberSwapRateDisplay(); var bityOptions = ["ETH", "BTC", "REP"]; @@ -6751,7 +6798,6 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { $scope.updateBityEstimate(isFrom); $scope.dropdownFrom = $scope.dropdownTo = false; }; - $scope.updateEstimate = function (isFrom) { if ($scope.checkIfKyber()) { $scope.updateKyberEstimate(isFrom); @@ -6881,7 +6927,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { tokensymbol: $scope.orderResult.input.currency == 'ETH' ? '' : $scope.orderResult.input.currency, readOnly: true // console.log(document.getElementById('sendTransaction')); //todo remove dev item - // new Modal(document.getElementById('sendTransaction')); + //new Modal(document.getElementById('sendTransaction')); };$scope.showStage3Eth = true; } }; @@ -6927,6 +6973,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { }, token: { initial: "READY", + resetApprove: "RESET_TOKEN_APPROVAL", prepareApprove: "GENERATE_APPROVAL_TRANSACTION", prepare: "GENERATE_SWAP_TRANSACTION", open: "APPROVE_TOKENS", @@ -6960,6 +7007,12 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { ethRawTx: null, ethTxHash: null, ethTxLink: null, + tokenNeedsReset: false, + currentTokenApprovalValue: 0, + tokenResetTx: null, + tokenResetTxRaw: null, + tokenResetTxHash: null, + tokenResetTxLink: null, tokenApproveTx: null, tokenApproveRawTx: null, tokenApproveTxHash: null, @@ -6989,40 +7042,80 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { /* ------------------------- MAIN SWAP PAGE FUNCTIONALITY TIE-INs (START) ------------------------------------- */ // called in setOrderCoin if selected pair is a kyber network pair - $scope.setKyberOrderCoin = function (isFrom) { - $scope.isKyberPairAvailable(); - $scope.swapOrder.swapRate = $scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)]; - $scope.swapOrder.swapPair = $scope.swapOrder.fromCoin + "/" + $scope.swapOrder.toCoin; - $scope.updateEstimate(isFrom); - $scope.dropdownFrom = $scope.dropdownTo = false; - }; + $scope.setKyberOrderCoin = function () { + var _ref = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(isFrom) { + var _availableResult; + + return regeneratorRuntime.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + $scope.dropdownFrom = $scope.dropdownTo = false; + _context.next = 3; + return $scope.isKyberPairAvailable(); + + case 3: + _availableResult = _context.sent; + + if (_availableResult) { + $scope.swapOrder.swapRate = $scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)]; + $scope.swapOrder.swapPair = $scope.swapOrder.fromCoin + "/" + $scope.swapOrder.toCoin; + $scope.updateEstimate(isFrom); + } - $scope.isKyberPairAvailable = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() { - return regeneratorRuntime.wrap(function _callee$(_context) { + case 5: + case "end": + return _context.stop(); + } + } + }, _callee, this); + })); + + return function (_x) { + return _ref.apply(this, arguments); + }; + }(); + + $scope.isKyberPairAvailable = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2() { + var _returnedRate; + + return regeneratorRuntime.wrap(function _callee2$(_context2) { while (1) { - switch (_context.prev = _context.next) { + switch (_context2.prev = _context2.next) { case 0: - _context.next = 2; + _context2.next = 2; return $scope.kyber.setKyberRate($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin); case 2: - if (!($scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)] == 0 || $scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)] == "0")) { - _context.next = 7; + _returnedRate = _context2.sent; + + if (!(_returnedRate > 0)) { + _context2.next = 7; break; } - $scope.displayKyberErrorMessage("unAvailable"); - return _context.abrupt("return", false); + return _context2.abrupt("return", true); case 7: - return _context.abrupt("return", true); - - case 8: + $scope.displayKyberErrorMessage("unAvailable"); + return _context2.abrupt("return", false); + + case 9: + console.log($scope.kyber.kyberRates); //todo remove dev item + // if ($scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)] == 0 || + // $scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)] == "0") { + // $scope.displayKyberErrorMessage("unAvailable"); + // return false; + // } else { + // return true; + // } + + case 10: case "end": - return _context.stop(); + return _context2.stop(); } } - }, _callee, this); + }, _callee2, this); })); // calculates the rate for display when a kyber pair is selected @@ -7091,13 +7184,13 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { if ($scope.validKyberPair()) { if (!$scope.$$phase) $scope.$apply(); try { - if (!$scope.Validator.isPositiveNumber($scope.swapOrder.fromVal) || !$scope.Validator.isPositiveNumber($scope.swapOrder.toVal)) throw "Invalid Value Present";else if (!$scope.verifyMinMaxValues()) throw "Invalid Value Present"; + if (!$scope.Validator.isPositiveNumber($scope.swapOrder.fromVal) || !$scope.Validator.isPositiveNumber($scope.swapOrder.toVal)) throw "Negative value present in input";else if (!$scope.verifyMinMaxValues()) throw "Min. Max. value error"; $scope.updateFinalKyberEstimate($scope.swapOrder.isFrom, function () { // $scope.canSetKyberFinal = true; - if ($scope.swapOrder.finalRate > 0) { + if ($scope.swapOrder.finalRate > 0 && $scope.swapOrder.swapRate > 0) { $scope.showStage1 = false; - $scope.swapOrder.swapRate = $scope.swapOrder.finalRate; + // $scope.swapOrder.swapRate = $scope.swapOrder.finalRate; $scope.prepareKyber(); } else { $scope.displayKyberErrorMessage("zeroRate"); @@ -7174,6 +7267,55 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { $scope.kyberReturnToStart = false; }; + var checkForPriorTokenApproval = function checkForPriorTokenApproval(_address, callback) { + if ($scope.swapOrder.fromCoin === "ETH") return callback(false); + $scope.kyber.allowance($scope.swapOrder.fromCoin, _address, function (data) { + if (data.error) $scope.notifier.danger(data.msg);else { + console.log("auth value", data); //todo remove dev item + + // data = data.data; + if (data.data > 0) { + + $scope.kyberTransaction.currentTokenApprovalValue = $scope.kyber.convertToTokenBase(data.data, $scope.swapOrder.fromCoin); + console.log("auth value exists", data); //todo remove dev item + callback(true); + } else { + console.log("no auth value exists", data); //todo remove dev item + callback(false); + } + // if (data >= checkValue) { + // $scope.setKyberStatus($scope.kyberStatus.token.send); //TOKENS_APPROVED + // $scope.sendKyberTransaction(); + // } + // if (!$scope.$$phase) $scope.$apply(); + } + }); + }; + + var checkUserCap = function checkUserCap(_userAddress, callback) { + var swapValue = void 0, + isFrom = void 0; + if ($scope.swapOrder.fromCoin == "ETH") { + swapValue = $scope.swapOrder.fromVal; + isFrom = true; + } else if ($scope.swapOrder.toCoin == "ETH") { + swapValue = $scope.swapOrder.toVal; + isFrom = false; + } else { + callback({ + error: true, + data: { + isFrom: false, + userCap: 0, + originalValue: 0, + result: false + } + }); + } + // ETH cap for transactions from ETH & to ETH (i.e. the ETH amount cannot be greater than the cap) + $scope.kyber.checkUserCap(_userAddress, swapValue, isFrom, callback); + }; + $scope.checkIfUserCanDo = function (_userAddress) { // console.log("checkIfUserCanDo 1", $scope.checkTokenBalance); //todo remove dev item try { @@ -7186,7 +7328,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { if ($scope.indicatorhacked.length > 10) $scope.indicatorhacked = []; }, 100); $scope.checkTokenBalance = false; - $scope.checkUserCap(_userAddress, function (result) { + checkUserCap(_userAddress, function (result) { // console.log("checkIfUserCanDo result", result); //todo remove dev item if (!result.error) { $scope.kyber.getBalance($scope.swapOrder.fromCoin, _userAddress, function (_result) { @@ -7195,8 +7337,18 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { var enoughTokens = userTokenBalance.gte($scope.swapOrder.fromVal); // console.log(userTokenBalance); //todo remove dev item if (enoughTokens) { - clearInterval(makeIndicator); - $scope.balanceOk = true; + checkForPriorTokenApproval($scope.walletKyber.getAddressString(), function (_data) { + if (_data) { + $scope.balanceOk = true; + $scope.kyberTransaction.tokenNeedsReset = true; + clearInterval(makeIndicator); + } else { + console.log("no priorApproval"); //todo remove dev item + clearInterval(makeIndicator); + $scope.kyberTransaction.tokenNeedsReset = false; + $scope.balanceOk = true; + } + }); } else { clearInterval(makeIndicator); $scope.kyberReturnToStart = true; @@ -7223,30 +7375,6 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { } }; - $scope.checkUserCap = function (_userAddress, callback) { - var swapValue = void 0, - isFrom = void 0; - if ($scope.swapOrder.fromCoin == "ETH") { - swapValue = $scope.swapOrder.fromVal; - isFrom = true; - } else if ($scope.swapOrder.toCoin == "ETH") { - swapValue = $scope.swapOrder.toVal; - isFrom = false; - } else { - callback({ - error: true, - data: { - isFrom: false, - userCap: 0, - originalValue: 0, - result: false - } - }); - } - // ETH cap for transactions from ETH & to ETH (i.e. the ETH amount cannot be greater than the cap) - $scope.kyber.checkUserCap(_userAddress, swapValue, isFrom, callback); - }; - $scope.validKyberPair = function () { var hasEth = $scope.swapOrder.fromCoin == "ETH" || $scope.swapOrder.toCoin == "ETH"; var notBTC = $scope.swapOrder.fromCoin !== "BTC" || $scope.swapOrder.toCoin !== "BTC"; @@ -7256,6 +7384,18 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { /* ------------------------------------- KYBER SPECIFIC (tx related) ------------------------------------- */ $scope.prepareKyber = function () { + + // document.addEventListener("unload", function(event){ + // alert("warning warning"); + // console.log(event); //todo remove dev item + // return "Leaving the page before your swap completes may cause your swap to fail." + // }) + // + // document.addEventListener("beforeunload", function(event){ + // console.log(event); //todo remove dev item + // alert("warning warning"); + // return "Leaving the page before your swap completes may cause your swap to fail." + // }) try { $scope.showStage2Kyber = true; $scope.kyberOrderResult.input = { @@ -7315,7 +7455,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { // console.log($scope.walletKyber); //todo remove dev item $scope.wallet = walletService.wallet; if ($scope.availableTokens.indexOf($scope.swapOrder.fromCoin) >= 0) { - $scope.approveTokenKyber($scope.wallet); + $scope.checkForResetApproveTokenKyber(); } else { $scope.openKyberEthOrder(); } @@ -7353,13 +7493,34 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { // Initiate Token to ETH (or Token to Token) Swap flow // Build the Approve transaction to send to the Token Contract of the 'from' Token - $scope.approveTokenKyber = function () { + + $scope.checkForResetApproveTokenKyber = function () { + try { + if ($scope.kyberTransaction.tokenNeedsReset) { + $scope.tx = $scope.buildTransactionObject($scope.kyber.approveKyber($scope.swapOrder.fromCoin, 0), $scope.kyber.getTokenAddress($scope.swapOrder.fromCoin)); + var txData = uiFuncs.getTxData($scope); + txData.nonce = txData.gasPrice = null; + $scope.generateKyberTransaction(txData, $scope.kyberStatus.token.resetApprove); + } else { + $scope.approveTokenKyber(); + } + } catch (e) { + console.error(e); + } + }; + + $scope.approveTokenKyber = function (nonce, gasPrice) { try { $scope.tx = $scope.buildTransactionObject($scope.kyber.approveKyber($scope.swapOrder.fromCoin, $scope.swapOrder.fromVal), $scope.kyber.getTokenAddress($scope.swapOrder.fromCoin)); var txData = uiFuncs.getTxData($scope); - txData.nonce = txData.gasPrice = null; + if (nonce && gasPrice) { + var newNonce = parseInt(ethFuncs.hexToDecimal(nonce)); + txData.nonce = "0x" + ethFuncs.decimalToHex(newNonce + 1); + txData.gasPrice = gasPrice; + } else txData.nonce = txData.gasPrice = null; $scope.generateKyberTransaction(txData, $scope.kyberStatus.token.prepareApprove); + //todo remove dev item}); } catch (e) { console.error(e); } @@ -7384,25 +7545,61 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { }; /* ----------- Kyber (common functions) ----------- */ + /* + * + * $scope.kyberStatus = { + initial: "READY", + eth: { + initial: "READY", + prepare: "OPEN_ETH", + open: "OPEN_ETH", + send: "SEND_ETH", + complete: "TRANSMITTED" + }, + token: { + initial: "READY", + resetApprove: "RESET_TOKEN_APPROVAL", + prepareApprove: "GENERATE_APPROVAL_TRANSACTION", + prepare: "GENERATE_SWAP_TRANSACTION", + open: "APPROVE_TOKENS", + approve: "AWAITING_TOKEN_APPROVAL", + send: "TOKENS_APPROVED", + complete: "TRANSMITTED" + } + }; + */ // generate the transaction object based on the specific flow stage $scope.generateKyberTransaction = function (txData, stage) { try { uiFuncs.generateTx(txData, function (rawTx) { + console.log($scope.kyberOrderResult.progress.status); //todo remove dev item if (!rawTx.isError) { switch (stage) { + case "RESET_TOKEN_APPROVAL": + case $scope.kyberStatus.token.resetApprove: + $scope.kyberTransaction.tokenResetTx = rawTx; + $scope.approveTokenKyber(rawTx.nonce, rawTx.gasPrice); + break; case "GENERATE_APPROVAL_TRANSACTION": + case $scope.kyberStatus.token.prepareApprove: $scope.kyberTransaction.tokenApproveTx = rawTx; // Build the Swap transaction in the same flow $scope.openKyberTokenOrder(rawTx.nonce, rawTx.gasPrice); break; case "GENERATE_SWAP_TRANSACTION": + case $scope.kyberStatus.token.prepare: $scope.kyberTransaction.tokenTx = rawTx; // update status to reflect transaction generation and prompting of user for approval - $scope.setKyberStatus($scope.kyberStatus.token.open); //APPROVE_TOKENS + if ($scope.kyberTransaction.tokenNeedsReset) { + $scope.setKyberStatus($scope.kyberStatus.token.resetApprove); //APPROVE_TOKENS + } else { + $scope.setKyberStatus($scope.kyberStatus.token.open); + } $scope.sendKyberModal(); break; case "OPEN_ETH": + case $scope.kyberStatus.eth.open: $scope.kyberTransaction.ethTx = rawTx; $scope.setKyberStatus($scope.kyberStatus.eth.send); //SEND_ETH $scope.sendKyberModal(); @@ -7424,12 +7621,19 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { // Trigger the opening of the modal for user review and authorization to proceed $scope.sendKyberModal = function () { + + //PageTransitionEvent + console.log($scope.kyberOrderResult.progress.status); //todo remove dev item try { switch ($scope.kyberOrderResult.progress.status) { case "APPROVE_TOKENS": // Generate the content to populate the modal that prompts of user for approval $scope.parseKyberSignedTx($scope.kyberTransaction.tokenTx.signedTx); $scope.kyberModal.open(); + case "RESET_TOKEN_APPROVAL": + // Generate the content to populate the modal that prompts of user for approval + $scope.parseKyberSignedTx($scope.kyberTransaction.tokenTx.signedTx); + $scope.kyberModal.open(); break; case "SEND_ETH": $scope.parseKyberSignedTx($scope.kyberTransaction.ethTx.signedTx); @@ -7448,6 +7652,16 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { $scope.sendKyberTransaction = function () { try { switch ($scope.kyberOrderResult.progress.status) { + case "RESET_TOKEN_APPROVAL": + case $scope.kyberStatus.token.resetApprove: + $scope.showStage4Kyber = true; + $scope.showStage3Kyber = false; + $scope.kyberModal.close(); + // set the status to trigger polling of token contract for approval of tokens for swap + $scope.setKyberStatus($scope.kyberStatus.token.resetApprove); //AWAITING_TOKEN_APPROVAL + $scope.sendKyberTx($scope.kyberTransaction.tokenResetTx.signedTx); + + break; case "APPROVE_TOKENS": $scope.showStage4Kyber = true; $scope.showStage3Kyber = false; @@ -7481,13 +7695,26 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { if (!resp.isError) { var notCustomNode = $scope.ajaxReq.type != nodes.nodeTypes.Custom; switch ($scope.kyberOrderResult.progress.status) { + case "RESET_TOKEN_APPROVAL": + console.log("send reset token approval", $scope.kyberOrderResult.progress.status); //todo remove dev item + $scope.kyberTransaction.tokenResetTxHash = notCustomNode ? resp.data : ""; + $scope.kyberTransaction.tokenResetTxLink = $scope.ajaxReq.blockExplorerTX.replace("[[txHash]]", resp.data); + // $scope.displayTxHashPopup(resp, $scope.kyberTransaction.tokenResetTxLink); + $scope.kyberOrderResult.progress.bar = getProgressBarArr(4, 5); + + $scope.checkForTokenResetKyber($scope.walletKyber.getAddressString()); + break; case "TOKENS_APPROVED": + console.log("TOKENS_APPROVED", $scope.kyberOrderResult.progress.status); //todo remove dev item + $scope.kyberTransaction.tokenTxHash = notCustomNode ? resp.data : ""; $scope.kyberTransaction.tokenTxLink = $scope.ajaxReq.blockExplorerTX.replace("[[txHash]]", resp.data); - $scope.displayTxHash(resp, $scope.kyberTransaction.tokenTxLink); + $scope.displayTxHashPopup(resp, $scope.kyberTransaction.tokenTxLink); $scope.kyberOrderResult.progress.bar = getProgressBarArr(5, 5); break; case "AWAITING_TOKEN_APPROVAL": + console.log("AWAITING_TOKEN_APPROVAL", $scope.kyberOrderResult.progress.status); //todo remove dev item + $scope.kyberTransaction.tokenApproveTxHash = notCustomNode ? resp.data : ""; $scope.kyberTransaction.tokenApproveTxLink = $scope.ajaxReq.blockExplorerTX.replace("[[txHash]]", resp.data); $scope.checkForTokenApproveKyber($scope.walletKyber.getAddressString()); @@ -7496,7 +7723,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { $scope.kyberTransaction.ethTxHash = notCustomNode ? resp.data : ""; $scope.kyberTransaction.ethTxLink = $scope.ajaxReq.blockExplorerTX.replace("[[txHash]]", resp.data); $scope.kyberOrderResult.progress.bar = getProgressBarArr(5, 5); - $scope.displayTxHash(resp, $scope.kyberTransaction.ethTxLink); + $scope.displayTxHashPopup(resp, $scope.kyberTransaction.ethTxLink); break; default: @@ -7516,37 +7743,20 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { // Poll token contract for approval, then trigger the Kyber Network Contract portion of the flow $scope.checkForTokenApproveKyber = function (address) { - try { - // var checkValue = etherUnits.toWei($scope.swapOrder.fromVal, "ether"); - var checkValue = $scope.kyber.convertToTokenWei($scope.swapOrder.fromVal, $scope.swapOrder.fromCoin); - $scope.indicatorhacked = []; - var orderResult = $scope.kyberOrderResult; - orderResult.progress.startTime = new Date().getTime(); - var progressCheck = setInterval(function () { - if ($scope.indicatorhacked.length > 10) $scope.indicatorhacked = []; - if (!orderResult.progress.pendingStatusReq) { - orderResult.progress.pendingStatusReq = true; - $scope.kyber.allowance($scope.swapOrder.fromCoin, address, function (data) { - if (data.error) $scope.notifier.danger(data.msg);else { - - data = data.data; - if (data >= checkValue) { - orderResult.progress.bar = getProgressBarArr(3, 5); - $scope.setKyberStatus($scope.kyberStatus.token.send); //TOKENS_APPROVED - clearInterval(progressCheck); - $scope.sendKyberTransaction(); - } else { - $scope.indicatorhacked.push(". "); - } - if (!$scope.$$phase) $scope.$apply(); - } - orderResult.progress.pendingStatusReq = false; - }); - } - }, orderResult.progress.checkDelay); - } catch (e) { - console.error(e); + if ($scope.kyberTransaction.tokenNeedsReset) { + $scope.kyberOrderResult.progress.bar = getProgressBarArr(4, 5); + } else { + $scope.kyberOrderResult.progress.bar = getProgressBarArr(3, 5); } + $scope.setKyberStatus($scope.kyberStatus.token.send); //TOKENS_APPROVED + $scope.sendKyberTransaction(); + }; + + // Poll token contract for approval, then trigger the Kyber Network Contract portion of the flow + $scope.checkForTokenResetKyber = function (address) { + $scope.kyberOrderResult.progress.bar = getProgressBarArr(3, 5); + $scope.setKyberStatus($scope.kyberStatus.token.open); //AWAITING_TOKEN_APPROVAL + $scope.sendKyberTransaction(); //todo uncomment after dev }; /* ---------------------------------------- MISC./UTIL --------------------------------------------------------- */ @@ -7575,7 +7785,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { }; }; - $scope.displayTxHash = function (resp, txHashInject) { + $scope.displayTxHashPopup = function (resp, txHashInject) { var emailLink = 'Confused? Email Us.'; // email link var bExStr = $scope.ajaxReq.type != nodes.nodeTypes.Custom ? " View your transaction " : ""; $scope.sendTxStatus += globalFuncs.successMsgs[2] + "

    " + resp.data + "

    " + bExStr + "

    " + emailLink + "

    "; @@ -7624,25 +7834,42 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { $scope.parsedKyberTx = $scope.parseKyberSignedTransaction(signedTx); if (!$scope.kyberEthToToken) { $scope.parsedKyberTokenTx = $scope.parseKyberSignedTransaction($scope.kyberTransaction.tokenApproveTx.signedTx); - // Calculate Combined Values - $scope.parsedTx = {}; - $scope.parsedTx.totalTxFee = {}; - $scope.parsedTx.totalTxFee.wei = new BigNumber($scope.parsedKyberTx.txFee.wei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.wei)); - $scope.parsedTx.totalTxFee.gwei = new BigNumber($scope.parsedKyberTx.txFee.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.gwei)); - $scope.parsedTx.totalTxFee.eth = new BigNumber($scope.parsedKyberTx.txFee.eth).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.eth)); - $scope.parsedTx.avgGasPrice = {}; - $scope.parsedTx.avgGasPrice.wei = new BigNumber($scope.parsedKyberTx.gasPrice.wei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.wei)).div(2); - $scope.parsedTx.avgGasPrice.gwei = new BigNumber($scope.parsedKyberTx.gasPrice.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.gwei)).div(2); - $scope.parsedTx.avgGasPrice.eth = new BigNumber($scope.parsedKyberTx.gasPrice.eth).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.eth)).div(2); - $scope.parsedTx.totalGasLimit = new BigNumber($scope.parsedKyberTokenTx.gasLimit).plus(new BigNumber($scope.parsedKyberTx.gasLimit)); - - if ($scope.swapOrder.fromCoin == "ETH") { - $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)).minus(new BigNumber($scope.swapOrder.toVal)); - } else if ($scope.swapOrder.toCoin == "ETH") { - $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)).plus(new BigNumber($scope.swapOrder.fromVal)); + if ($scope.kyberTransaction.tokenNeedsReset) { + $scope.parsedKyberResetTokenTx = $scope.parseKyberSignedTransaction($scope.kyberTransaction.tokenResetTx.signedTx); + + // Calculate Combined Values + $scope.parsedTx = {}; + $scope.parsedTx.totalTxFee = {}; + $scope.parsedTx.totalTxFee.wei = new BigNumber($scope.parsedKyberTx.txFee.wei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.wei)).plus(new BigNumber($scope.parsedKyberResetTokenTx.txFee.wei)); + $scope.parsedTx.totalTxFee.gwei = new BigNumber($scope.parsedKyberTx.txFee.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.gwei)).plus(new BigNumber($scope.parsedKyberResetTokenTx.txFee.gwei)); + $scope.parsedTx.totalTxFee.eth = new BigNumber($scope.parsedKyberTx.txFee.eth).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.eth)).plus(new BigNumber($scope.parsedKyberResetTokenTx.txFee.eth)); + $scope.parsedTx.avgGasPrice = {}; + $scope.parsedTx.avgGasPrice.wei = new BigNumber($scope.parsedKyberTx.gasPrice.wei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.wei)).plus(new BigNumber($scope.parsedKyberResetTokenTx.gasPrice.wei)).div(3); + $scope.parsedTx.avgGasPrice.gwei = new BigNumber($scope.parsedKyberTx.gasPrice.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.gwei)).plus(new BigNumber($scope.parsedKyberResetTokenTx.gasPrice.gwei)).div(3); + $scope.parsedTx.avgGasPrice.eth = new BigNumber($scope.parsedKyberTx.gasPrice.eth).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.eth)).plus(new BigNumber($scope.parsedKyberResetTokenTx.gasPrice.eth)).div(3); + $scope.parsedTx.totalGasLimit = new BigNumber($scope.parsedKyberTokenTx.gasLimit).plus(new BigNumber($scope.parsedKyberTx.gasLimit)).plus(new BigNumber($scope.parsedKyberResetTokenTx.gasLimit)); } else { - $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)); + + // Calculate Combined Values + $scope.parsedTx = {}; + $scope.parsedTx.totalTxFee = {}; + $scope.parsedTx.totalTxFee.wei = new BigNumber($scope.parsedKyberTx.txFee.wei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.wei)); + $scope.parsedTx.totalTxFee.gwei = new BigNumber($scope.parsedKyberTx.txFee.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.gwei)); + $scope.parsedTx.totalTxFee.eth = new BigNumber($scope.parsedKyberTx.txFee.eth).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.eth)); + $scope.parsedTx.avgGasPrice = {}; + $scope.parsedTx.avgGasPrice.wei = new BigNumber($scope.parsedKyberTx.gasPrice.wei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.wei)).div(2); + $scope.parsedTx.avgGasPrice.gwei = new BigNumber($scope.parsedKyberTx.gasPrice.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.gwei)).div(2); + $scope.parsedTx.avgGasPrice.eth = new BigNumber($scope.parsedKyberTx.gasPrice.eth).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.eth)).div(2); + $scope.parsedTx.totalGasLimit = new BigNumber($scope.parsedKyberTokenTx.gasLimit).plus(new BigNumber($scope.parsedKyberTx.gasLimit)); } + + // if ($scope.swapOrder.fromCoin == "ETH") { + // $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)).minus(new BigNumber($scope.swapOrder.toVal)); + // } else if ($scope.swapOrder.toCoin == "ETH") { + // $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)).plus(new BigNumber($scope.swapOrder.fromVal)); + // } else { + // $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)); + // } } }; @@ -7710,7 +7937,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { }; module.exports = swapCtrl; -},{}],32:[function(require,module,exports){ +},{}],35:[function(require,module,exports){ 'use strict'; var tabsCtrl = function tabsCtrl($scope, globalService, $translate, $sce) { @@ -8032,7 +8259,7 @@ var tabsCtrl = function tabsCtrl($scope, globalService, $translate, $sce) { }; module.exports = tabsCtrl; -},{}],33:[function(require,module,exports){ +},{}],36:[function(require,module,exports){ 'use strict'; var txStatusCtrl = function txStatusCtrl($scope) { @@ -8127,7 +8354,7 @@ var txStatusCtrl = function txStatusCtrl($scope) { }; module.exports = txStatusCtrl; -},{}],34:[function(require,module,exports){ +},{}],37:[function(require,module,exports){ 'use strict'; var viewCtrl = function viewCtrl($scope, globalService, $sce) { @@ -8138,7 +8365,7 @@ var viewCtrl = function viewCtrl($scope, globalService, $sce) { }; module.exports = viewCtrl; -},{}],35:[function(require,module,exports){ +},{}],38:[function(require,module,exports){ 'use strict'; var viewWalletCtrl = function viewWalletCtrl($scope, walletService) { @@ -8198,7 +8425,7 @@ var viewWalletCtrl = function viewWalletCtrl($scope, walletService) { }; module.exports = viewWalletCtrl; -},{}],36:[function(require,module,exports){ +},{}],39:[function(require,module,exports){ 'use strict'; var walletBalanceCtrl = function walletBalanceCtrl($scope, $sce, $rootScope) { @@ -8298,7 +8525,7 @@ var walletBalanceCtrl = function walletBalanceCtrl($scope, $sce, $rootScope) { module.exports = walletBalanceCtrl; -},{}],37:[function(require,module,exports){ +},{}],40:[function(require,module,exports){ 'use strict'; var walletGenCtrl = function walletGenCtrl($scope) { @@ -8368,7 +8595,7 @@ var walletGenCtrl = function walletGenCtrl($scope) { }; module.exports = walletGenCtrl; -},{}],38:[function(require,module,exports){ +},{}],41:[function(require,module,exports){ 'use strict'; // For token sale holders: @@ -8380,6 +8607,12 @@ module.exports = walletGenCtrl; // http://www.tokensalecalendar.com/ module.exports = [{ + // Merculet (MVP) Token sale + to: '0x8a77e40936bbc27e80e9a3f526368c967869c86d', + gasLimit: 210000, + data: '', + msg: 'Merculet (MVP) token sale - You must have registered at https://merculet.io and followed the instructions to purchase tokens here.' +}, { // GIFcoin (GIF) Token sale to: '0xFcD862985628b254061F7A918035B80340D045d3', gasLimit: 200000, @@ -8717,7 +8950,7 @@ module.exports = [{ msg: 'WHEN Token Sale. Join the future of person-to-person micro-contracts using the blockchain.: https://interface.whenhub.com/' }]; -},{}],39:[function(require,module,exports){ +},{}],42:[function(require,module,exports){ 'use strict'; var cxFuncs = function cxFuncs() {}; @@ -8814,7 +9047,7 @@ cxFuncs.editNickName = function (address, newNick, callback) { }; module.exports = cxFuncs; -},{}],40:[function(require,module,exports){ +},{}],43:[function(require,module,exports){ 'use strict'; var QRCodeDrtv = function QRCodeDrtv() { @@ -8840,7 +9073,7 @@ var QRCodeDrtv = function QRCodeDrtv() { }; module.exports = QRCodeDrtv; -},{}],41:[function(require,module,exports){ +},{}],44:[function(require,module,exports){ 'use strict'; var addressFieldDrtv = function addressFieldDrtv($compile, darkList) { @@ -8923,9 +9156,9 @@ var addressFieldDrtv = function addressFieldDrtv($compile, darkList) { }; module.exports = addressFieldDrtv; -},{}],42:[function(require,module,exports){ +},{}],45:[function(require,module,exports){ module.exports = "\n"; -},{}],43:[function(require,module,exports){ +},{}],46:[function(require,module,exports){ 'use strict'; var balanceDrtv = function balanceDrtv() { @@ -8936,7 +9169,7 @@ var balanceDrtv = function balanceDrtv() { }; module.exports = balanceDrtv; -},{"./balanceDrtv.html":42}],44:[function(require,module,exports){ +},{"./balanceDrtv.html":45}],47:[function(require,module,exports){ 'use strict'; var blockiesDrtv = function blockiesDrtv() { @@ -8953,7 +9186,7 @@ var blockiesDrtv = function blockiesDrtv() { }; module.exports = blockiesDrtv; -},{}],45:[function(require,module,exports){ +},{}],48:[function(require,module,exports){ 'use strict'; var cxWalletDecryptDrtv = function cxWalletDecryptDrtv() { @@ -8979,7 +9212,7 @@ var cxWalletDecryptDrtv = function cxWalletDecryptDrtv() { }; module.exports = cxWalletDecryptDrtv; -},{}],46:[function(require,module,exports){ +},{}],49:[function(require,module,exports){ 'use strict'; var fileReaderDrtv = function fileReaderDrtv($parse) { @@ -9004,9 +9237,9 @@ var fileReaderDrtv = function fileReaderDrtv($parse) { }; module.exports = fileReaderDrtv; -},{}],47:[function(require,module,exports){ -module.exports = "
    \n\n \n
    \n\n

    \n How would you like to access your wallet?\n

    \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n
    \n \n\n\n \n
    \n\n \n
    \n

    \n Your Address\n

    \n
    \n \n This is a recommended way to view your balance.\n
    \n

    \n You can only view your balance via this option.\n Please use another option in order to send.\n

    \n
    \n \n
    \n \n
    \n \n\n\n \n
    \n

    \n MetaMask / Mist\n

    \n
    \n \n This is a recommended way to access your wallet.\n
    \n
    \n MetaMask is a browser extension that allows you to access your wallet quickly, safely & easily. It is more secure because you never enter your private key on a website. It protects you from phishing & malicious websites.\n
    \n \n
    \n \n Please use MyEtherWallet on a secure (SSL / HTTPS) connection to connect.\n \n
    \n \n
    \n \n\n\n \n
    \n

    \n Ledger Hardware Wallet\n

    \n
    \n \n This is a recommended way to access your wallet.\n
    \n
    \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
    \n \n \n
    \n

    \n {{ledgerErrorString}}\n

    \n
      \n
    • \n Please use MyEtherWallet on a secure (SSL / HTTPS) connection to connect.\n
    • \n
    • \n \n Open the Ethereum application (or a contract application)\n \n \n Open the Expanse application (or a contract application)\n \n \n Open the Ubiq application (or a contract application)\n \n
    • \n
    • \n \n Still not working? More Troubleshooting Tips\n \n
    • \n
    \n
    \n
    \n \n\n\n \n
    \n

    \n TREZOR Hardware Wallet\n

    \n
    \n \n This is a recommended way to access your wallet.\n
    \n
    \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
    \n \n \n
    \n

    \n {{trezorErrorString}}\n

    \n \n
    \n
    \n \n\n\n \n
    \n

    \n Digital Bitbox Hardware Wallet\n

    \n
    \n \n This is a recommended way to access your wallet.\n
    \n
    \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
    \n \n \n \n
    \n \n\n\n \n
    \n

    \n Secalot Hardware Wallet\n

    \n
    \n \n This is a recommended way to access your wallet.\n
    \n
    \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
    \n \n \n \n
    \n \n\n\n \n
    \n

    Select your wallet file

    \n
    \n \n This is not a recommended way to access your wallet.\n
    \n
    \n Entering your private key on a website dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
    \n \n
    \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
    \n
    \n \n
    \n

    \n Your file is encrypted. Please enter the password:\n

    \n \n
    \n \n
    \n \n\n\n \n
    \n

    Paste your mnemonic:

    \n
    \n \n This is not a recommended way to access your wallet.\n
    \n
    \n Entering your private key on a website dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
    \n \n
    \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
    \n
    \n
    \n \n
    \n
    \n

    \n Password (optional):\n

    \n
    \n \n
    \n
    \n \n
    \n \n\n\n \n
    \n

    \n Paste your private key:\n

    \n
    \n \n This is not a recommended way to access your wallet.\n
    \n
    \n Entering your private key on a website is dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
    \n \n
    \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
    \n
    \n
    \n \n
    \n
    \n

    \n Your file is encrypted. Please enter the password:\n

    \n \n
    \n \n
    \n \n\n\n \n
    \n

    Paste your mnemonic:

    \n
    \n \n
    \n \n
    \n \n\n
    \n \n\n\n \n
    \n\n
    \n\n
    \n\n
    \n\n \n\n \n

    \n Select HD derivation path:\n

    \n\n

    \n We do not know the correct path for this network.\n \n Please open a github issue\n \n so we can discuss / be enlightened.\n

    \n\n
    \n\n
    \n \n
    \n\n
    \n \n\n \n
    \n\n
    \n \n
    \n\n
    \n \n
    \n\n
    \n\n
    \n
    \n \n
    \n\n
    \n \n
    \n\n
    \n \n
    \n\n
    \n \n
    \n
    \n\n
    \n
    \n \n
    \n
    \n\n\n\n

    \n Please select the address you would like to interact with.\n

    \n\n \n \n \n \n \n \n \n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n
    \n Address\n \n Balance\n \n Token
    Balances\n
    \n \n \n \n {{wallet.getBalance()}} {{ajaxReq.type}}\n \n \n \n \n \n
    \n 5\"\n role=\"link\"\n tabindex=\"0\"\n translate=\"MNEM_prev\">\n Previous Addresses\n \n \n \n More Addresses\n \n
    \n\n
    \n \n\n \n
    \n\n
    \n\n
    \n\n
    \n\n
    \n\n
    \n"; -},{}],48:[function(require,module,exports){ +},{}],50:[function(require,module,exports){ +module.exports = "
    \n\n \n
    \n\n

    \n How would you like to access your wallet?\n

    \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n
    \n \n\n\n \n
    \n\n \n
    \n

    \n Your Address\n

    \n
    \n \n This is a recommended way to view your balance.\n
    \n

    \n You can only view your balance via this option.\n Please use another option in order to send.\n

    \n
    \n \n
    \n \n
    \n \n\n\n \n
    \n

    \n MetaMask / Mist\n

    \n
    \n \n This is a recommended way to access your wallet.\n
    \n
    \n MetaMask is a browser extension that allows you to access your wallet quickly, safely & easily. It is more secure because you never enter your private key on a website. It protects you from phishing & malicious websites.\n
    \n \n
    \n \n Please use MyEtherWallet on a secure (SSL / HTTPS) connection to connect.\n \n
    \n \n
    \n \n\n\n \n
    \n

    \n Ledger Hardware Wallet\n

    \n
    \n \n This is a recommended way to access your wallet.\n
    \n
    \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
    \n \n \n
    \n

    \n {{ledgerErrorString}}\n

    \n
      \n
    • \n Please use MyEtherWallet on a secure (SSL / HTTPS) connection to connect.\n
    • \n
    • \n \n Open the Ethereum application (or a contract application)\n \n \n Open the Expanse application (or a contract application)\n \n \n Open the Ubiq application (or a contract application)\n \n
    • \n
    • \n \n Still not working? More Troubleshooting Tips\n \n
    • \n
    \n
    \n
    \n \n\n\n \n
    \n

    \n TREZOR Hardware Wallet\n

    \n
    \n \n This is a recommended way to access your wallet.\n
    \n
    \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
    \n \n \n
    \n

    \n {{trezorErrorString}}\n

    \n \n
    \n
    \n \n\n\n \n
    \n

    \n Digital Bitbox Hardware Wallet\n

    \n
    \n \n This is a recommended way to access your wallet.\n
    \n
    \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
    \n \n \n \n
    \n \n\n\n \n
    \n

    \n Secalot Hardware Wallet\n

    \n
    \n \n This is a recommended way to access your wallet.\n
    \n
    \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
    \n \n \n \n
    \n \n\n\n \n
    \n

    Select your wallet file

    \n
    \n \n This is not a recommended way to access your wallet.\n
    \n
    \n Entering your private key on a website dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
    \n \n
    \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
    \n
    \n \n
    \n

    \n Your file is encrypted. Please enter the password:\n

    \n \n
    \n \n
    \n \n\n\n \n
    \n

    Paste your mnemonic:

    \n
    \n \n This is not a recommended way to access your wallet.\n
    \n
    \n Entering your private key on a website dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
    \n \n
    \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
    \n
    \n
    \n \n
    \n
    \n

    \n Password (optional):\n

    \n
    \n \n
    \n
    \n \n
    \n \n\n\n \n
    \n

    \n Paste your private key:\n

    \n
    \n \n This is not a recommended way to access your wallet.\n
    \n
    \n Entering your private key on a website is dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
    \n \n
    \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
    \n
    \n
    \n \n
    \n
    \n

    \n Your file is encrypted. Please enter the password:\n

    \n \n
    \n \n
    \n \n\n\n \n
    \n

    Paste your mnemonic:

    \n
    \n \n
    \n \n
    \n \n\n
    \n \n\n\n \n
    \n\n
    \n\n
    \n\n
    \n\n \n\n \n

    \n Select HD derivation path:\n

    \n\n

    \n We do not know the correct path for this network.\n \n Please open a github issue\n \n so we can discuss / be enlightened.\n

    \n\n
    \n\n
    \n \n
    \n\n
    \n \n\n \n
    \n\n
    \n \n
    \n\n
    \n \n
    \n\n
    \n\n
    \n
    \n \n
    \n\n
    \n \n
    \n\n
    \n \n
    \n\n
    \n \n
    \n\n
    \n \n
    \n
    \n\n
    \n
    \n \n
    \n
    \n\n\n\n

    \n Please select the address you would like to interact with.\n

    \n\n \n \n \n \n \n \n \n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n
    \n Address\n \n Balance\n \n Token
    Balances\n
    \n \n \n \n {{wallet.getBalance()}} {{ajaxReq.type}}\n \n \n \n \n \n
    \n 5\"\n role=\"link\"\n tabindex=\"0\"\n translate=\"MNEM_prev\">\n Previous Addresses\n \n \n \n More Addresses\n \n
    \n\n
    \n \n\n \n
    \n\n
    \n\n
    \n\n
    \n\n
    \n\n
    \n"; +},{}],51:[function(require,module,exports){ 'use strict'; var walletDecryptDrtv = function walletDecryptDrtv() { @@ -9017,7 +9250,7 @@ var walletDecryptDrtv = function walletDecryptDrtv() { }; module.exports = walletDecryptDrtv; -},{"./walletDecryptDrtv.html":47}],49:[function(require,module,exports){ +},{"./walletDecryptDrtv.html":50}],52:[function(require,module,exports){ 'use strict'; var ens = require('./ens'); @@ -9180,7 +9413,7 @@ domainsale.transactions = { }; module.exports = domainsale; -},{"./domainsaleConfigs/domainsaleABI.json":50,"./ens":51}],50:[function(require,module,exports){ +},{"./domainsaleConfigs/domainsaleABI.json":53,"./ens":54}],53:[function(require,module,exports){ module.exports=[ { "constant": true, @@ -9599,7 +9832,7 @@ module.exports=[ } ] -},{}],51:[function(require,module,exports){ +},{}],54:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -10000,7 +10233,7 @@ ens.prototype.checkDomain = function () { module.exports = ens; }).call(this,require("buffer").Buffer) -},{"./ensConfigs/ETHConfig.json":52,"./ensConfigs/ROPConfig.json":53,"./ensConfigs/RinkebyConfig.json":54,"./ensConfigs/auctionABI.json":55,"./ensConfigs/deedABI.json":56,"./ensConfigs/registryABI.json":57,"./ensConfigs/resolverABI.json":58,"./ensConfigs/subDomainABI.json":59,"buffer":219,"idna-uts46":605}],52:[function(require,module,exports){ +},{"./ensConfigs/ETHConfig.json":55,"./ensConfigs/ROPConfig.json":56,"./ensConfigs/RinkebyConfig.json":57,"./ensConfigs/auctionABI.json":58,"./ensConfigs/deedABI.json":59,"./ensConfigs/registryABI.json":60,"./ensConfigs/resolverABI.json":61,"./ensConfigs/subDomainABI.json":62,"buffer":225,"idna-uts46":611}],55:[function(require,module,exports){ module.exports={ "public": { "resolver": "0x1da022710dF5002339274AaDEe8D58218e9D6AB5", @@ -10149,7 +10382,7 @@ module.exports={ }, "registry": "0x314159265dD8dbb310642f98f50C066173C1259b" } -},{}],53:[function(require,module,exports){ +},{}],56:[function(require,module,exports){ module.exports={ "public": { "resolver": "0x4c641fb9bad9b60ef180c31f56051ce826d21a9a", @@ -10159,7 +10392,7 @@ module.exports={ "registry": "0x112234455c3a32fd11230c42e7bccd4a84e02010" } -},{}],54:[function(require,module,exports){ +},{}],57:[function(require,module,exports){ module.exports={ "public": { "resolver": "0xb14fdee4391732ea9d2267054ead2084684c0ad8", @@ -10169,7 +10402,7 @@ module.exports={ "registry": "0xe7410170f87102df0055eb195163a03b7f2bff4a" } -},{}],55:[function(require,module,exports){ +},{}],58:[function(require,module,exports){ module.exports=[{ "constant": false, "inputs": [{ @@ -10586,7 +10819,7 @@ module.exports=[{ "name": "HashInvalidated", "type": "event" }] -},{}],56:[function(require,module,exports){ +},{}],59:[function(require,module,exports){ module.exports=[{ "constant": true, "inputs": [], @@ -10696,7 +10929,7 @@ module.exports=[{ "type": "event" }] -},{}],57:[function(require,module,exports){ +},{}],60:[function(require,module,exports){ module.exports=[{ "constant": true, "inputs": [{ @@ -10849,7 +11082,7 @@ module.exports=[{ "type": "event" }] -},{}],58:[function(require,module,exports){ +},{}],61:[function(require,module,exports){ module.exports=[{ "constant": true, "inputs": [{ @@ -10942,7 +11175,7 @@ module.exports=[{ "type": "fallback" }] -},{}],59:[function(require,module,exports){ +},{}],62:[function(require,module,exports){ module.exports=[{ "constant": true, "inputs": [{ @@ -11378,7 +11611,7 @@ module.exports=[{ "name": "RentPaid", "type": "event" }] -},{}],60:[function(require,module,exports){ +},{}],63:[function(require,module,exports){ 'use strict'; var ethFuncs = function ethFuncs() {}; @@ -11474,7 +11707,7 @@ ethFuncs.estimateGas = function (dataObj, callback) { }; module.exports = ethFuncs; -},{}],61:[function(require,module,exports){ +},{}],64:[function(require,module,exports){ 'use strict'; var etherUnits = function etherUnits() {}; @@ -11542,7 +11775,7 @@ etherUnits.unitToUnit = function (number, from, to) { module.exports = etherUnits; -},{}],62:[function(require,module,exports){ +},{}],65:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -11933,7 +12166,7 @@ globalFuncs.localStorage = { module.exports = globalFuncs; -},{"./nodes":82,"./tokens/etcTokens.json":111,"./tokens/ethTokens.json":112,"./tokens/kovanTokens.json":115,"./tokens/rinkebyTokens.json":117,"./tokens/ropstenTokens.json":118}],63:[function(require,module,exports){ +},{"./nodes":85,"./tokens/etcTokens.json":117,"./tokens/ethTokens.json":118,"./tokens/kovanTokens.json":121,"./tokens/rinkebyTokens.json":123,"./tokens/ropstenTokens.json":124}],66:[function(require,module,exports){ module.exports={ "A": "A", "Α": "A", @@ -13117,7 +13350,7 @@ module.exports={ "𝚣": "z" } -},{}],64:[function(require,module,exports){ +},{}],67:[function(require,module,exports){ 'use strict'; function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; } @@ -13303,9 +13536,10 @@ kyberFuncs.prototype.setKyberRate = function (_from, _to) { var _this = this; return new Promise(function (resolve, reject) { _this.getExpectedRate(_from, _to, 1, function (_results) { - _this.kyberRates[kyber.toPairKey(_from, _to)] = _this.convertToTokenBase(_results.data.slippageRate, "ETH"); + var _returnedRate = _this.convertToTokenBase(_results.data.slippageRate, "ETH"); + _this.kyberRates[kyber.toPairKey(_from, _to)] = _returnedRate; _this.priceLoaded = true; - resolve(); + resolve(_returnedRate); }); }); }; @@ -13521,16 +13755,29 @@ kyberFuncs.prototype.kyberNetworkState = function () { kyberFuncs.prototype.approveKyber = function (srcToken, value) { var _this = this; - var funcABI = _this.tokenABIs[srcToken].approve; + var funcABI; + if (_this.tokenABIs[srcToken]) { + funcABI = _this.tokenABIs[srcToken].approve; + } else { + funcABI = _this.tokenABIs["ERC20"].approve; + } + var weiValue = _this.convertToTokenWei(value, srcToken); return _this.getDataString(funcABI, [_this.KyberNetworkAddress, weiValue]); }; -kyberFuncs.prototype.allowance = function (srcToken, userAddress, callback) { +kyberFuncs.prototype.allowance = function (_srcToken, userAddress, callback) { var _this = this; - var funcABI = _this.tokenABIs[srcToken].allowance; - var srcTokenAddress = _this.getTokenAddress(srcToken); + var funcABI; + if (_this.tokenABIs[_srcToken]) { + funcABI = _this.tokenABIs[_srcToken].allowance; + } else { + funcABI = _this.tokenABIs["ERC20"].allowance; + } + // var funcABI = _this.tokenABIs[_srcToken].allowance; + + var srcTokenAddress = _this.getTokenAddress(_srcToken); ajaxReq.getEthCall({ to: srcTokenAddress, @@ -13550,25 +13797,31 @@ kyberFuncs.prototype.allowance = function (srcToken, userAddress, callback) { kyberFuncs.prototype.getTradeData = function (swapOrder, minRate) { var _this = this; - - var funcABI = _this.kyberNetworkABI.trade; - var srcTokenAddress = _this.getTokenAddress(swapOrder.fromCoin); - var destTokenAddress = _this.getTokenAddress(swapOrder.toCoin); - var walletId = "0xDECAF9CD2367cdbb726E904cD6397eDFcAe6068D"; - var minConversionRate = minRate ? minRate : 1; // Uses slippagePrice with fallback to MarketRate. 1 => Market Rate, but we could also set this as the quoted rate - var srcAmount = _this.convertToTokenWei(swapOrder.fromVal, swapOrder.fromCoin); //etherUnits.toWei(swapOrder.fromVal, "ether"); - var maxDestAmount = Math.pow(2, 200); //100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000; // Really big number (like a googol) - - if (swapOrder.toAddress) { - return _this.getDataString(funcABI, [srcTokenAddress, srcAmount, destTokenAddress, swapOrder.toAddress, maxDestAmount, minConversionRate, walletId]); + console.log("minRate", minRate); //todo remove dev item + if (minRate && minRate > 0) { + var funcABI = _this.kyberNetworkABI.trade; + var srcTokenAddress = _this.getTokenAddress(swapOrder.fromCoin); + var destTokenAddress = _this.getTokenAddress(swapOrder.toCoin); + var walletId = "0xDECAF9CD2367cdbb726E904cD6397eDFcAe6068D"; + var minConversionRate = _this.convertToTokenWei(minRate, "ETH"); // Uses slippagePrice with fallback to MarketRate. 1 => Market Rate, but we could also set this as the quoted rate + console.log("minConversionRate", minRate); //todo remove dev item + var srcAmount = _this.convertToTokenWei(swapOrder.fromVal, swapOrder.fromCoin); //etherUnits.toWei(swapOrder.fromVal, "ether"); + console.log("srcAmount", srcAmount); //todo remove dev item + var maxDestAmount = Math.pow(2, 200); //100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000; // Really big number (like a googol) + + if (swapOrder.toAddress) { + return _this.getDataString(funcABI, [srcTokenAddress, srcAmount, destTokenAddress, swapOrder.toAddress, maxDestAmount, minConversionRate, walletId]); + } else { + uiFuncs.notifier.danger(" No Deposit address specified"); + } } else { - uiFuncs.notifier.danger(" No Deposit address specified"); + uiFuncs.notifier.danger('No Rate Available for pair ' + swapOrder.fromCoin + '/' + swapOrder.toCoin + ' with source quantity ' + swapOrder.fromVal); } }; module.exports = kyberFuncs; -},{"./kyberConfig/EthConfig.json":65,"./kyberConfig/EthTokenABIs.json":66,"./kyberConfig/KyberNetworkABI.json":67,"./kyberConfig/KyberReserveABI.json":68,"./kyberConfig/NullConfig.json":69,"./kyberConfig/RopConfig.json":70,"./kyberConfig/RopTokenABIs.json":71}],65:[function(require,module,exports){ +},{"./kyberConfig/EthConfig.json":68,"./kyberConfig/EthTokenABIs.json":69,"./kyberConfig/KyberNetworkABI.json":70,"./kyberConfig/KyberReserveABI.json":71,"./kyberConfig/NullConfig.json":72,"./kyberConfig/RopConfig.json":73,"./kyberConfig/RopTokenABIs.json":74}],68:[function(require,module,exports){ module.exports={ "tokens": { "OMG": { @@ -13733,6 +13986,21 @@ module.exports={ "maxTotalImbalance": "1925452883", "internal use": false }, + "DAI": { + "name": "DAI", + "decimals": 18, + "address": "0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359", + "minimalRecordResolution": "1000000000000000", + "maxPerBlockImbalance": "2711997842670896021504", + "maxTotalImbalance": "3833713935933528080384", + "internal use": false + }, + "MOT": { + "name": "Olympus Labs", + "decimals": 18, + "address": "0x263c618480dbe35c300d8d5ecda19bbb986acaed", + "internal use": false + }, "ZIL": { "name": "Zilliqa", "decimals": 12, @@ -13751,6 +14019,18 @@ module.exports={ "maxTotalImbalance": "1925452883", "internal use": true }, + "IOST": { + "name": "IOStoken", + "decimals": 18, + "address": "0xfa1a856cfa3409cfa145fa4e20eb270df3eb21ab", + "internal use": false + }, + "STORM": { + "name": "Storm", + "decimals": 18, + "address": "0xd0a4b8946cb52f0661273bfbc6fd0e0c75fc6433", + "internal use": false + }, "ETH": { "name": "Ethereum", "decimals": 18, @@ -13758,177 +14038,9 @@ module.exports={ "internal use": true } }, - "exchanges": { - "binance": { - "ETH": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "OMG": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "KNC": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "SNT": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "EOS": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "ELF": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "POWR": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "MANA": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "BAT": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "REQ": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "GTO": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "ENG": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "SALT": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "APPC": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "RDN": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "BQX": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "ZIL": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "AST": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "LINK": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90" - } - }, - "permission": { - "KyberNetwork": { - "admin": "0xBC33a1F908612640F2849b56b67a4De4d179C151", - "operator": [ - "0x8bc3da587def887b5c822105729ee1d6af05a5ca" - ], - "alerter": [] - }, - "KyberReserve": { - "admin": "0xBC33a1F908612640F2849b56b67a4De4d179C151", - "operator": [ - "0x5bab5ef16cfac98e216a229db17913454b0f9365" - ], - "alerter": [ - "0xC825Ef342d94B687590E123BBB27994ccBfFcc35", - "0x6d15A2372efbe32550Bc02831524f9C77fB05514", - "0x8180a5CA4E3B94045e05A9313777955f7518D757", - "0xd0643BC0D0C879F175556509dbcEe9373379D5C3", - "0x3A9b02c14d967333cE68E353a64653E258da2BAa" - ] - }, - "ConversionRates": { - "admin": "0x97b82E42a0c04bAd5E61e7cFb4806317d608D809", - "operator": [ - "0x8bc3da587def887b5c822105729ee1d6af05a5ca", - "0x9224016462B204C57Eb70e1D69652f60bcAF53A8" - ], - "alerter": [] - }, - "FeeBurner": { - "admin": "0xd0643bc0d0c879f175556509dbcee9373379d5c3", - "operator": [ - "0xf214dde57f32f3f34492ba3148641693058d4a9e" - ], - "alerter": [] - }, - "WhiteList": { - "admin": "0xBC33a1F908612640F2849b56b67a4De4d179C151", - "operator": [ - "0x7E68d7AFcD5cc6167eB5f0Eb07eDcfe75185CC00", - "0xf214dde57f32f3f34492ba3148641693058d4a9e", - "0xd0643BC0D0C879F175556509dbcEe9373379D5C3", - "0x342F4057110bE50957d0f156F4939a929944C69e", - "0x3A9b02c14d967333cE68E353a64653E258da2BAa" - ], - "alerter": [] - }, - "ExpectedRate": { - "admin": "0xBC33a1F908612640F2849b56b67a4De4d179C151", - "operator": [ - "0x4a48312f6981484c4204d8501ad3d93f4f4571bf", - "0xf214dde57f32f3f34492ba3148641693058d4a9e" - ], - "alerter": [] - }, - "SanityRate": { - "admin": "0xd0643bc0d0c879f175556509dbcee9373379d5c3", - "operator": [ - "0x0a3d5c8894bbe1e9113e4ed6f0c3b0d4fa6b131e" - ], - "alerter": [] - } - }, - "whitelist params": { - "testers": [ - "0x053a9f418F7BE3391A2821BE23b418a909f42F54", - "0x0d225f12898e0ca01867290a61f4cbfe11a1da8a", - "0x12f0453c1947269842c5646df98905533c1b9519", - "0x42bbe426b1796b8eca6444928e874a58ee124973", - "0xb2d904d1981080C9002818D833819e33a58F8388", - "0x3Cf628d49Ae46b49b210F0521Fbd9F82B461A9E1", - "0xdde0a80664fbbdb56e2cd82f725cd3be1f9bb6d3", - "0xC825Ef342d94B687590E123BBB27994ccBfFcc35", - "0x8180a5CA4E3B94045e05A9313777955f7518D757", - "0x4a48312f6981484c4204d8501ad3d93f4f4571bf", - "0xd0643bc0d0c879f175556509dbcee9373379d5c3" - ], - "testers category": 9, - "testers cap": 5000, - "KGT address": "0xfce10cbf5171dc12c215bbcca5dd75cbaea72506", - "KGT cap": 5000, - "users": [ - "0x943252227f9cbfa10ee85912069171813e07b5df", - "0x85f160b182fe02d82cc771753a67425dc7da4bfd", - "0x3cf628d49ae46b49b210f0521fbd9f82b461a9e1", - "0xc137d86197f8df68038ca79df9464b5ed83b46f5", - "0x759604f9ae53af58905e2ed23ea2c6a7bcd4c881", - "0xbfe8d9a90bbebdb725333ecff6a947045514d86e", - "0x107d1e7d288525d8c0112a38e881a1119546ec99", - "0xc96dff7ddc0d9aebdc84572ea7f463341b0c3499", - "0xefb8085ef21ab0818bb070e5881bce01da322319", - "0x2c7f07e07459340025046bf77c2fdcc1c86fd4ff", - "0xcf298e820ec1c37d09378ed45f13081fe18af030", - "0x805e04be44fa0abe67c9daeb2d63dfe11ebb0b7a", - "0xb2d904d1981080c9002818d833819e33a58f8388", - "0xd64fd8f71b147071b58e849a172e443a34afb900", - "0xf214dde57f32f3f34492ba3148641693058d4a9e", - "0x7aab84d251f67a79126bc2188cf4a1e5e29f36b4", - "0x36890b6d03820f4d2b8dadd383a1045c05f2d89d", - "0x34409fda33b9ac5ad4c57f1e3113fe21c19a5294", - "0x538597d67c503fca3bc169e61790fc5003e5081d", - "0xfdc280b6733f3ae7f2420f3124cdcd9152de3827", - "0x759604f9ae53af58905e2ed23ea2c6a7bcd4c881", - "0x3f105f78359ad80562b4c34296a87b8e66c584c5", - "0x441bae4cda3c6feccfc98add2f2ed363d9ebc090", - "0x4a48312f6981484c4204d8501ad3d93f4f4571bf", - "0x0c3b2b708b42f99df2c0c822b9fb8fc43a5e329e", - "0x80c2c1ceb335e39b7021c646fd3ec159faf9109d", - "0xffaa5d3ece144954bf5b98977857f521972f729c", - "0xcfc84a1061978527a41f561ae6ed8a86fa68d44c", - "0x8180a5ca4e3b94045e05a9313777955f7518d757", - "0xf214dde57f32f3f34492ba3148641693058d4a9e", - "0x6d15a2372efbe32550bc02831524f9c77fb05514", - "0xefb8085ef21ab0818bb070e5881bce01da322319", - "0xe2da6286d17d589a87f58c4a1aa136d5809ca617", - "0x43116e303b1b001bd08f6eaf8debea50d0a8cbc9", - "0x453c1e38772cfe2f8550da4a47a6624b8c5ccd39", - "0xd0643bc0d0c879f175556509dbcee9373379d5c3", - "0x0f114bcde33f3d8b5c2034810d21a030808fbb61", - "0xffaa5d3ece144954bf5b98977857f521972f729c", - "0xcfc84a1061978527a41f561ae6ed8a86fa68d44c", - "0x42bbe426b1796b8eca6444928e874a58ee124973", - "0xc4ae4aedcb717b6f04cac9492c70ed85412048ed", - "0xfdc63f4f9ddfaeb7fbf0fca4e09178efac765a85", - "0x79c1565c052808bb81df554581888dc077567222", - "0x9e1fe268f3f84400cebd8fe6dda5fdb0f8ae9ea9", - "0x1c67a930777215c9d4c617511c229e55fa53d0f8", - "0x0d225f12898e0ca01867290a61f4cbfe11a1da8a", - "0x12f0453c1947269842c5646df98905533c1b9519", - "0x29641cd7f394dff57eaa6ebca31c88e5b84d6b4c", - "0xe9dcde10206cbbd76c52944ff0eec832c886bbc6" - ], - "users category": 1, - "users cap": 5000, - "email category": 3, - "email cap": 5000, - "KYC category": 4, - "KYC cap": 10000, - "default cap": 0, - "wei per SGD": 850000000000000 - }, "max gas price": "50000000000", "neg diff in bps": 20, "min expected rate slippage": 300, - "KNC wallet": "0xBC33a1F908612640F2849b56b67a4De4d179C151", - "KNC to ETH rate": 450, - "tax fees bps": 2000, - "tax wallet address": "0xc065900403f9ff07dfaecc0d08978c2e0dee1578", "valid duration block": 60, "reserve": "0x63825c174ab367968EC60f061753D3bbD36A0D8F", "pricing": "0x798AbDA6Cc246D0EDbA912092A2a3dBd3d11191B", @@ -13938,7 +14050,7 @@ module.exports={ "feeburner": "0x07f6e905f2a1559cd9fd43cb92f8a1062a3ca706", "whitelist": "0x6e106a75d369d09a9ea1dcc16da844792aa669a3" } -},{}],66:[function(require,module,exports){ +},{}],69:[function(require,module,exports){ module.exports={ "APPC": [{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setTransferAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setReleaseAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"burnAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"mintAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setMintAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"setTokenInformation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"fromWhom","type":"address"}],"name":"transferToOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getUpgradeState","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"transferAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"canUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"releaseAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isToken","outputs":[{"name":"weAre","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BURN_ADDRESS","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_initialSupply","type":"uint256"},{"name":"_decimals","type":"uint256"},{"name":"_mintable","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"fromWhom","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"OwnerReclaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newName","type":"string"},{"indexed":false,"name":"newSymbol","type":"string"}],"name":"UpdatedTokenInformation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"state","type":"bool"}],"name":"MintingAgentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"burner","type":"address"},{"indexed":false,"name":"burnedAmount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}], @@ -13979,13 +14091,19 @@ module.exports={ "ZIL": [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pausedPublic","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pausedOwnerAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"emergencyERC20Drain","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newPausedPublic","type":"bool"},{"name":"newPausedOwnerAdmin","type":"bool"}],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_admin","type":"address"},{"name":"_totalTokenAmount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_burner","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousAdmin","type":"address"},{"indexed":true,"name":"newAdmin","type":"address"}],"name":"AdminTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newState","type":"bool"}],"name":"PausePublic","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newState","type":"bool"}],"name":"PauseOwnerAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}], "LINK": - [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}] + [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}], + "DAI": + [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"wad","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name_","type":"bytes32"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"wad","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"push","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"move","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"authority","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"guy","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"wad","type":"uint256"}],"name":"pull","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"symbol_","type":"bytes32"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"guy","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"guy","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"},{"anonymous":true,"inputs":[{"indexed":true,"name":"sig","type":"bytes4"},{"indexed":true,"name":"guy","type":"address"},{"indexed":true,"name":"foo","type":"bytes32"},{"indexed":true,"name":"bar","type":"bytes32"},{"indexed":false,"name":"wad","type":"uint256"},{"indexed":false,"name":"fax","type":"bytes"}],"name":"LogNote","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"src","type":"address"},{"indexed":true,"name":"guy","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"src","type":"address"},{"indexed":true,"name":"dst","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Transfer","type":"event"}], + "IOST": + [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}], + "ERC20": + [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}] } -},{}],67:[function(require,module,exports){ +},{}],70:[function(require,module,exports){ module.exports= [{"constant":false,"inputs":[{"name":"alerter","type":"address"}],"name":"removeAlerter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"reserve","type":"address"},{"name":"src","type":"address"},{"name":"dest","type":"address"},{"name":"add","type":"bool"}],"name":"listPairForReserve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"bytes32"}],"name":"perReserveListedPairs","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getReserves","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"enabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOperators","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"},{"name":"sendTo","type":"address"}],"name":"withdrawToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxGasPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAlerter","type":"address"}],"name":"addAlerter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"negligibleRateDiff","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feeBurnerContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"expectedRateContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"whiteListContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"field","type":"bytes32"},{"name":"value","type":"uint256"}],"name":"setInfo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"user","type":"address"}],"name":"getUserCapInWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"transferAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_enable","type":"bool"}],"name":"setEnable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isReserve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"transferAdminQuickly","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getAlerters","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"dest","type":"address"},{"name":"srcQty","type":"uint256"}],"name":"getExpectedRate","outputs":[{"name":"expectedRate","type":"uint256"},{"name":"slippageRate","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"reserves","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOperator","type":"address"}],"name":"addOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"reserve","type":"address"},{"name":"add","type":"bool"}],"name":"addReserve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"operator","type":"address"}],"name":"removeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_whiteList","type":"address"},{"name":"_expectedRate","type":"address"},{"name":"_feeBurner","type":"address"},{"name":"_maxGasPrice","type":"uint256"},{"name":"_negligibleRateDiff","type":"uint256"}],"name":"setParams","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"info","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"dest","type":"address"},{"name":"srcQty","type":"uint256"}],"name":"findBestRate","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"srcAmount","type":"uint256"},{"name":"dest","type":"address"},{"name":"destAddress","type":"address"},{"name":"maxDestAmount","type":"uint256"},{"name":"minConversionRate","type":"uint256"},{"name":"walletId","type":"address"}],"name":"trade","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"},{"name":"sendTo","type":"address"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getNumReserves","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"token","type":"address"},{"name":"user","type":"address"}],"name":"getBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_admin","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"EtherReceival","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"src","type":"address"},{"indexed":false,"name":"dest","type":"address"},{"indexed":false,"name":"actualSrcAmount","type":"uint256"},{"indexed":false,"name":"actualDestAmount","type":"uint256"}],"name":"ExecuteTrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"reserve","type":"address"},{"indexed":false,"name":"add","type":"bool"}],"name":"AddReserveToNetwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"reserve","type":"address"},{"indexed":false,"name":"src","type":"address"},{"indexed":false,"name":"dest","type":"address"},{"indexed":false,"name":"add","type":"bool"}],"name":"ListReservePairs","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"sendTo","type":"address"}],"name":"TokenWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"sendTo","type":"address"}],"name":"EtherWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"pendingAdmin","type":"address"}],"name":"TransferAdminPending","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAdmin","type":"address"},{"indexed":false,"name":"previousAdmin","type":"address"}],"name":"AdminClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAlerter","type":"address"},{"indexed":false,"name":"isAdd","type":"bool"}],"name":"AlerterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOperator","type":"address"},{"indexed":false,"name":"isAdd","type":"bool"}],"name":"OperatorAdded","type":"event"}] -},{}],68:[function(require,module,exports){ +},{}],71:[function(require,module,exports){ module.exports=[ { "constant": false, @@ -14459,7 +14577,7 @@ module.exports=[ } ] -},{}],69:[function(require,module,exports){ +},{}],72:[function(require,module,exports){ module.exports={ "tokens": { }, @@ -14473,7 +14591,7 @@ module.exports={ "feeburner": "0x07f6e905f2a1559cd9fd43cb92f8a1062a3ca706aaaaaaaa", "whitelist": "0x6e106a75d369d09a9ea1dcc16da844792aa669a3aaaaaaaa" } -},{}],70:[function(require,module,exports){ +},{}],73:[function(require,module,exports){ module.exports={ "tokens": { "OMG": { @@ -14648,7 +14766,7 @@ module.exports={ "wrapper": "0x9de0a60F4A489e350cD8E3F249f4080858Af41d3", "feeburner": "0x89B5c470559b80e541E53eF78244edD112c7C58A" } -},{}],71:[function(require,module,exports){ +},{}],74:[function(require,module,exports){ module.exports={ "OMG": [{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_releaseTime","type":"uint256"}],"name":"mintTimelocked","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}], @@ -14669,9 +14787,11 @@ module.exports={ "REQ": [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleContract","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"earlyInvestorWallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"emergencyERC20Drain","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transferableStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"tokenTotalAmount","type":"uint256"},{"name":"_transferableStartTime","type":"uint256"},{"name":"_admin","type":"address"},{"name":"_earlyInvestorWallet","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_burner","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}], "GTO": - [{"constant":false,"inputs":[{"name":"newMaximumBuy","type":"uint256"}],"name":"setMaximumBuy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"turnOffSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"turnOnTradable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newIcoPercent","type":"uint256"}],"name":"setIcoPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_icoSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"buyGifto","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"_icoPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tradable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newBuyPrice","type":"uint256"}],"name":"setBuyPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_minimumBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_originalBuyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_maximumBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isApprovedInvestor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"investorList","type":"address[]"}],"name":"removeInvestorList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newInvestorList","type":"address[]"}],"name":"addInvestorList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"getDeposit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"turnOnSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_selling","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}] + [{"constant":false,"inputs":[{"name":"newMaximumBuy","type":"uint256"}],"name":"setMaximumBuy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"turnOffSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"turnOnTradable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newIcoPercent","type":"uint256"}],"name":"setIcoPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_icoSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"buyGifto","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"_icoPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tradable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newBuyPrice","type":"uint256"}],"name":"setBuyPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_minimumBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_originalBuyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_maximumBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isApprovedInvestor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"investorList","type":"address[]"}],"name":"removeInvestorList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newInvestorList","type":"address[]"}],"name":"addInvestorList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"getDeposit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"turnOnSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_selling","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}], + "ERC20": + [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}] } -},{}],72:[function(require,module,exports){ +},{}],75:[function(require,module,exports){ 'use strict'; function storageAvailable(type) { @@ -14776,7 +14896,7 @@ if (!storageAvailable('localStorage')) { module.exports = null; -},{}],73:[function(require,module,exports){ +},{}],76:[function(require,module,exports){ 'use strict'; require('babel-polyfill'); @@ -14955,7 +15075,7 @@ if (IS_CX) { app.controller('cxDecryptWalletCtrl', ['$scope', '$sce', 'walletService', cxDecryptWalletCtrl]); } -},{"./ajaxReq":12,"./bity":13,"./constants/darkListConst":14,"./controllers/CX/addWalletCtrl":15,"./controllers/CX/cxDecryptWalletCtrl":16,"./controllers/CX/mainPopCtrl":17,"./controllers/CX/myWalletsCtrl":18,"./controllers/CX/quickSendCtrl":19,"./controllers/bulkGenCtrl":20,"./controllers/contractsCtrl":21,"./controllers/decryptWalletCtrl":22,"./controllers/domainsaleCtrl":23,"./controllers/ensCtrl":24,"./controllers/footerCtrl":25,"./controllers/helpersCtrl":26,"./controllers/offlineTxCtrl":27,"./controllers/onboardingCtrl":28,"./controllers/sendTxCtrl":29,"./controllers/signMsgCtrl":30,"./controllers/swapCtrl":31,"./controllers/tabsCtrl":32,"./controllers/txStatusCtrl":33,"./controllers/viewCtrl":34,"./controllers/viewWalletCtrl":35,"./controllers/walletBalanceCtrl":36,"./controllers/walletGenCtrl":37,"./customGas.js":38,"./cxFuncs":39,"./directives/QRCodeDrtv":40,"./directives/addressFieldDrtv":41,"./directives/balanceDrtv":43,"./directives/blockiesDrtv":44,"./directives/cxWalletDecryptDrtv":45,"./directives/fileReaderDrtv":46,"./directives/walletDecryptDrtv":48,"./domainsale":49,"./ens":51,"./ethFuncs":60,"./etherUnits":61,"./globalFuncs":62,"./homoglyphs.json":63,"./kyber":64,"./localStoragePolyfill":72,"./myetherwallet":74,"./nodes":82,"./services/globalService":83,"./services/walletService":84,"./solidity/coder":88,"./solidity/utils":99,"./staticJS/customMarked":100,"./staticJS/digitalBitboxEth":101,"./staticJS/digitalBitboxUsb":102,"./staticJS/ledger-eth":103,"./staticJS/ledger3":104,"./staticJS/secalotEth":105,"./staticJS/secalotUsb":106,"./staticJS/trezorConnect":107,"./staticJS/u2f-api":108,"./tokenlib":109,"./translations/translate.js":142,"./uiFuncs":146,"./validator":147,"./web3Wallet":148,"angular":156,"angular-animate":150,"angular-sanitize":152,"angular-translate":154,"angular-translate-handler-log":153,"babel-polyfill":172,"bignumber.js":175,"bip39":176,"crypto":553,"detect-browser":560,"ethereumjs-tx":584,"ethereumjs-util":585,"hdkey":602,"levenshtein":620,"punycode":216,"scryptsy":663,"similarity":678,"string-format":680,"unicode/category/Ll":683,"uuid":690,"wallet-address-validator":699,"xss-filters":700}],74:[function(require,module,exports){ +},{"./ajaxReq":15,"./bity":16,"./constants/darkListConst":17,"./controllers/CX/addWalletCtrl":18,"./controllers/CX/cxDecryptWalletCtrl":19,"./controllers/CX/mainPopCtrl":20,"./controllers/CX/myWalletsCtrl":21,"./controllers/CX/quickSendCtrl":22,"./controllers/bulkGenCtrl":23,"./controllers/contractsCtrl":24,"./controllers/decryptWalletCtrl":25,"./controllers/domainsaleCtrl":26,"./controllers/ensCtrl":27,"./controllers/footerCtrl":28,"./controllers/helpersCtrl":29,"./controllers/offlineTxCtrl":30,"./controllers/onboardingCtrl":31,"./controllers/sendTxCtrl":32,"./controllers/signMsgCtrl":33,"./controllers/swapCtrl":34,"./controllers/tabsCtrl":35,"./controllers/txStatusCtrl":36,"./controllers/viewCtrl":37,"./controllers/viewWalletCtrl":38,"./controllers/walletBalanceCtrl":39,"./controllers/walletGenCtrl":40,"./customGas.js":41,"./cxFuncs":42,"./directives/QRCodeDrtv":43,"./directives/addressFieldDrtv":44,"./directives/balanceDrtv":46,"./directives/blockiesDrtv":47,"./directives/cxWalletDecryptDrtv":48,"./directives/fileReaderDrtv":49,"./directives/walletDecryptDrtv":51,"./domainsale":52,"./ens":54,"./ethFuncs":63,"./etherUnits":64,"./globalFuncs":65,"./homoglyphs.json":66,"./kyber":67,"./localStoragePolyfill":75,"./myetherwallet":77,"./nodes":85,"./services/globalService":86,"./services/walletService":87,"./solidity/coder":91,"./solidity/utils":102,"./staticJS/customMarked":103,"./staticJS/digitalBitboxEth":104,"./staticJS/digitalBitboxUsb":105,"./staticJS/ledger-eth":106,"./staticJS/ledger3":107,"./staticJS/secalotEth":108,"./staticJS/secalotUsb":109,"./staticJS/trezorConnect":110,"./staticJS/u2f-api":111,"./tokenlib":112,"./translations/translate.js":148,"./uiFuncs":152,"./validator":153,"./web3Wallet":154,"angular":162,"angular-animate":156,"angular-sanitize":158,"angular-translate":160,"angular-translate-handler-log":159,"babel-polyfill":178,"bignumber.js":181,"bip39":182,"crypto":559,"detect-browser":566,"ethereumjs-tx":590,"ethereumjs-util":591,"hdkey":608,"levenshtein":626,"punycode":222,"scryptsy":669,"similarity":684,"string-format":686,"unicode/category/Ll":689,"uuid":696,"wallet-address-validator":705,"xss-filters":706}],77:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -15362,7 +15482,7 @@ Wallet.getWalletFromPrivKeyFile = function (strjson, password) { module.exports = Wallet; }).call(this,require("buffer").Buffer) -},{"buffer":219}],75:[function(require,module,exports){ +},{"buffer":225}],78:[function(require,module,exports){ 'use strict'; var customNode = function customNode(srvrUrl, port, httpBasicAuthentication) { @@ -15489,7 +15609,7 @@ customNode.prototype.post = function (data, callback) { }; module.exports = customNode; -},{}],76:[function(require,module,exports){ +},{}],79:[function(require,module,exports){ 'use strict'; var http; @@ -15522,7 +15642,7 @@ ethPrice.getRates = function (callback) { }; module.exports = ethPrice; -},{}],77:[function(require,module,exports){ +},{}],80:[function(require,module,exports){ 'use strict'; var etherscan = function etherscan() {}; @@ -15650,7 +15770,7 @@ etherscan.post = function (data, _callback) { }; module.exports = etherscan; -},{}],78:[function(require,module,exports){ +},{}],81:[function(require,module,exports){ 'use strict'; var _ethscan = require('./etherscan'); @@ -15661,7 +15781,7 @@ for (var attr in _ethscan) { kovan.SERVERURL = 'https://kovan.etherscan.io/api'; module.exports = kovan; -},{"./etherscan":77}],79:[function(require,module,exports){ +},{"./etherscan":80}],82:[function(require,module,exports){ 'use strict'; var _ethscan = require('./etherscan'); @@ -15672,7 +15792,7 @@ for (var attr in _ethscan) { rinkeby.SERVERURL = 'https://rinkeby.etherscan.io/api'; module.exports = rinkeby; -},{"./etherscan":77}],80:[function(require,module,exports){ +},{"./etherscan":80}],83:[function(require,module,exports){ 'use strict'; var customNode = require('./customNode'); @@ -15687,7 +15807,7 @@ var infura = function infura(srvrUrl, port, httpBasicAuthentication) { }; module.exports = infura; -},{"./customNode":75}],81:[function(require,module,exports){ +},{"./customNode":78}],84:[function(require,module,exports){ 'use strict'; var customNode = require('./customNode'); @@ -15730,7 +15850,7 @@ function forEachPayload(maybeArray, fn) { array.forEach(fn); } -},{"./customNode":75}],82:[function(require,module,exports){ +},{"./customNode":78}],85:[function(require,module,exports){ 'use strict'; var nodes = function nodes() {}; @@ -15751,6 +15871,10 @@ nodes.nodeTypes = { TOMO: "TOMO", ELLA: "ELLA", ETSC: "ETSC", + EGEM: "EGEM", + CLO: "CLO", + CLOT: "Testnet CLO", + EAST: "EAST", Custom: "CUSTOM ETH" }; nodes.ensNodeTypes = [nodes.nodeTypes.ETH, nodes.nodeTypes.Ropsten]; @@ -15990,13 +16114,63 @@ nodes.nodeList = { 'estimateGas': true, 'service': 'gazua.tv', 'lib': new nodes.customNode('https://node.ethereumsocial.kr', '') + }, + 'egem': { + 'name': 'EGEM', + 'blockExplorerTX': 'https://explorer.egem.io/tx/[[txHash]]', + 'blockExplorerAddr': 'https://explorer.egem.io/addr/[[address]]', + 'type': nodes.nodeTypes.EGEM, + 'eip155': true, + 'chainId': 1987, + 'tokenList': require('./tokens/egemTokens.json'), + 'abiList': require('./abiDefinitions/egemAbi.json'), + 'estimateGas': true, + 'service': 'egem.io', + 'lib': new nodes.customNode('https://jsonrpc.egem.io/custom', '') + }, + 'clo_mainnet': { + 'name': 'CLO', + 'blockExplorerTX': 'https://explorer.callisto.network/tx/[[txHash]]', + 'blockExplorerAddr': 'https://explorer.callisto.network/addr/[[address]]', + 'type': nodes.nodeTypes.CLO, + 'eip155': true, + 'chainId': 820, + 'tokenList': require('./tokens/cloTokens.json'), + 'abiList': require('./abiDefinitions/cloAbi.json'), + 'service': 'Callisto.network', + 'lib': new nodes.customNode('https://clo-geth.0xinfra.com/', '') + }, + 'clo_testnet3': { + 'name': 'CLO Testnet 3.0', + 'blockExplorerTX': 'https://explorer-testnet.callisto.network/tx/[[txHash]]', + 'blockExplorerAddr': 'https://explorer-testnet.callisto.network/addr/[[address]]', + 'type': nodes.nodeTypes.CLOT, + 'eip155': true, + 'chainId': 7919, + 'tokenList': require('./tokens/cloTokens.json'), + 'abiList': require('./abiDefinitions/cloAbi.json'), + 'service': 'Callisto.network', + 'lib': new nodes.customNode('https://clo-testnet3.0xinfra.com/', '') + }, + 'east': { + 'name': 'EAST', + 'blockExplorerTX': 'https://explorer.easthub.io/tx/[[txHash]]', + 'blockExplorerAddr': 'https://explorer.easthub.io/addr/[[address]]', + 'type': nodes.nodeTypes.EAST, + 'eip155': true, + 'chainId': 7, + 'tokenList': require('./tokens/eastTokens.json'), + 'abiList': require('./abiDefinitions/eastAbi.json'), + 'estimateGas': true, + 'service': 'easthub.io', + 'lib': new nodes.customNode('https://node.easthub.io', '') } }; nodes.ethPrice = require('./nodeHelpers/ethPrice'); module.exports = nodes; -},{"./abiDefinitions/ellaAbi.json":1,"./abiDefinitions/etcAbi.json":2,"./abiDefinitions/ethAbi.json":3,"./abiDefinitions/etscAbi.json":4,"./abiDefinitions/expAbi.json":5,"./abiDefinitions/kovanAbi.json":6,"./abiDefinitions/poaAbi.json":7,"./abiDefinitions/rinkebyAbi.json":8,"./abiDefinitions/ropstenAbi.json":9,"./abiDefinitions/tomoAbi.json":10,"./abiDefinitions/ubqAbi.json":11,"./nodeHelpers/customNode":75,"./nodeHelpers/ethPrice":76,"./nodeHelpers/etherscan":77,"./nodeHelpers/etherscanKov":78,"./nodeHelpers/etherscanRin":79,"./nodeHelpers/infura":80,"./nodeHelpers/metamask":81,"./tokens/ellaTokens.json":110,"./tokens/etcTokens.json":111,"./tokens/ethTokens.json":112,"./tokens/etscTokens.json":113,"./tokens/expTokens.json":114,"./tokens/kovanTokens.json":115,"./tokens/poaTokens.json":116,"./tokens/rinkebyTokens.json":117,"./tokens/ropstenTokens.json":118,"./tokens/tomoTokens.json":119,"./tokens/ubqTokens.json":120}],83:[function(require,module,exports){ +},{"./abiDefinitions/cloAbi.json":1,"./abiDefinitions/eastAbi.json":2,"./abiDefinitions/egemAbi.json":3,"./abiDefinitions/ellaAbi.json":4,"./abiDefinitions/etcAbi.json":5,"./abiDefinitions/ethAbi.json":6,"./abiDefinitions/etscAbi.json":7,"./abiDefinitions/expAbi.json":8,"./abiDefinitions/kovanAbi.json":9,"./abiDefinitions/poaAbi.json":10,"./abiDefinitions/rinkebyAbi.json":11,"./abiDefinitions/ropstenAbi.json":12,"./abiDefinitions/tomoAbi.json":13,"./abiDefinitions/ubqAbi.json":14,"./nodeHelpers/customNode":78,"./nodeHelpers/ethPrice":79,"./nodeHelpers/etherscan":80,"./nodeHelpers/etherscanKov":81,"./nodeHelpers/etherscanRin":82,"./nodeHelpers/infura":83,"./nodeHelpers/metamask":84,"./tokens/cloTokens.json":113,"./tokens/eastTokens.json":114,"./tokens/egemTokens.json":115,"./tokens/ellaTokens.json":116,"./tokens/etcTokens.json":117,"./tokens/ethTokens.json":118,"./tokens/etscTokens.json":119,"./tokens/expTokens.json":120,"./tokens/kovanTokens.json":121,"./tokens/poaTokens.json":122,"./tokens/rinkebyTokens.json":123,"./tokens/ropstenTokens.json":124,"./tokens/tomoTokens.json":125,"./tokens/ubqTokens.json":126}],86:[function(require,module,exports){ 'use strict'; var globalService = function globalService($http, $httpParamSerializerJQLike) { @@ -16113,7 +16287,7 @@ var globalService = function globalService($http, $httpParamSerializerJQLike) { module.exports = globalService; -},{}],84:[function(require,module,exports){ +},{}],87:[function(require,module,exports){ 'use strict'; var walletService = function walletService() { @@ -16124,7 +16298,7 @@ var walletService = function walletService() { }; module.exports = walletService; -},{}],85:[function(require,module,exports){ +},{}],88:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -16154,7 +16328,7 @@ SolidityTypeAddress.prototype.isType = function (name) { module.exports = SolidityTypeAddress; -},{"./formatters":91,"./type":96}],86:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],89:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -16184,7 +16358,7 @@ SolidityTypeBool.prototype.isType = function (name) { module.exports = SolidityTypeBool; -},{"./formatters":91,"./type":96}],87:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],90:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -16217,7 +16391,7 @@ SolidityTypeBytes.prototype.isType = function (name) { module.exports = SolidityTypeBytes; -},{"./formatters":91,"./type":96}],88:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],91:[function(require,module,exports){ 'use strict'; /* @@ -16470,7 +16644,7 @@ var coder = new SolidityCoder([new SolidityTypeAddress(), new SolidityTypeBool() module.exports = coder; -},{"./address":85,"./bool":86,"./bytes":87,"./dynamicbytes":90,"./formatters":91,"./int":92,"./real":94,"./string":95,"./uint":97,"./ureal":98,"./utils":99}],89:[function(require,module,exports){ +},{"./address":88,"./bool":89,"./bytes":90,"./dynamicbytes":93,"./formatters":94,"./int":95,"./real":97,"./string":98,"./uint":100,"./ureal":101,"./utils":102}],92:[function(require,module,exports){ 'use strict'; /* @@ -16523,7 +16697,7 @@ module.exports = { defaultAccount: undefined }; -},{"bignumber.js":175}],90:[function(require,module,exports){ +},{"bignumber.js":181}],93:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -16547,7 +16721,7 @@ SolidityTypeDynamicBytes.prototype.isDynamicType = function () { module.exports = SolidityTypeDynamicBytes; -},{"./formatters":91,"./type":96}],91:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],94:[function(require,module,exports){ 'use strict'; /* @@ -16802,7 +16976,7 @@ module.exports = { formatOutputAddress: formatOutputAddress }; -},{"./config":89,"./param":93,"./utils":99,"bignumber.js":175}],92:[function(require,module,exports){ +},{"./config":92,"./param":96,"./utils":102,"bignumber.js":181}],95:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -16838,7 +17012,7 @@ SolidityTypeInt.prototype.isType = function (name) { module.exports = SolidityTypeInt; -},{"./formatters":91,"./type":96}],93:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],96:[function(require,module,exports){ 'use strict'; /* @@ -16991,7 +17165,7 @@ SolidityParam.encodeList = function (params) { module.exports = SolidityParam; -},{"./utils":99}],94:[function(require,module,exports){ +},{"./utils":102}],97:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -17027,7 +17201,7 @@ SolidityTypeReal.prototype.isType = function (name) { module.exports = SolidityTypeReal; -},{"./formatters":91,"./type":96}],95:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],98:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -17051,7 +17225,7 @@ SolidityTypeString.prototype.isDynamicType = function () { module.exports = SolidityTypeString; -},{"./formatters":91,"./type":96}],96:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],99:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -17305,7 +17479,7 @@ SolidityType.prototype.decode = function (bytes, offset, name) { module.exports = SolidityType; -},{"./formatters":91,"./param":93}],97:[function(require,module,exports){ +},{"./formatters":94,"./param":96}],100:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -17341,7 +17515,7 @@ SolidityTypeUInt.prototype.isType = function (name) { module.exports = SolidityTypeUInt; -},{"./formatters":91,"./type":96}],98:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],101:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -17377,7 +17551,7 @@ SolidityTypeUReal.prototype.isType = function (name) { module.exports = SolidityTypeUReal; -},{"./formatters":91,"./type":96}],99:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],102:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -17966,7 +18140,7 @@ module.exports = { isJson: isJson }; -},{"bignumber.js":175,"ethereumjs-util":585,"utf8":685}],100:[function(require,module,exports){ +},{"bignumber.js":181,"ethereumjs-util":591,"utf8":691}],103:[function(require,module,exports){ 'use strict'; var marked = require('marked'); @@ -17997,7 +18171,7 @@ marked.setOptions({ }); module.exports = marked; -},{"marked":621}],101:[function(require,module,exports){ +},{"marked":627}],104:[function(require,module,exports){ (function (Buffer){ /** * (c) 2017 Douglas Bakkum, Shift Devices AG @@ -18165,7 +18339,7 @@ DigitalBitboxEth.prototype.signMessage = function (path, messageHex, callback) { module.exports = DigitalBitboxEth; }).call(this,require("buffer").Buffer) -},{"buffer":219,"crypto":553,"hdkey":602}],102:[function(require,module,exports){ +},{"buffer":225,"crypto":559,"hdkey":608}],105:[function(require,module,exports){ (function (Buffer){ /** * (c) 2017 Douglas Bakkum, Shift Devices AG @@ -18219,7 +18393,7 @@ DigitalBitboxUsb.prototype.exchange = function (msg, callback) { module.exports = DigitalBitboxUsb; }).call(this,require("buffer").Buffer) -},{"buffer":219}],103:[function(require,module,exports){ +},{"buffer":225}],106:[function(require,module,exports){ (function (Buffer){ /******************************************************************************** * Ledger Communication toolkit @@ -18434,7 +18608,7 @@ LedgerEth.prototype.signPersonalMessage_async = function (path, messageHex, call module.exports = LedgerEth; }).call(this,require("buffer").Buffer) -},{"buffer":219}],104:[function(require,module,exports){ +},{"buffer":225}],107:[function(require,module,exports){ (function (Buffer){ /******************************************************************************** * Ledger Communication toolkit @@ -18505,7 +18679,7 @@ Ledger3.prototype.exchange = function (apduHex, callback) { module.exports = Ledger3; }).call(this,require("buffer").Buffer) -},{"buffer":219}],105:[function(require,module,exports){ +},{"buffer":225}],108:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -18764,7 +18938,7 @@ SecalotEth.prototype.signMessage = function (path, message, callback) { module.exports = SecalotEth; }).call(this,require("buffer").Buffer) -},{"buffer":219}],106:[function(require,module,exports){ +},{"buffer":225}],109:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -18808,7 +18982,7 @@ SecalotUsb.prototype.exchange = function (apduHex, callback) { module.exports = SecalotUsb; }).call(this,require("buffer").Buffer) -},{"buffer":219}],107:[function(require,module,exports){ +},{"buffer":225}],110:[function(require,module,exports){ 'use strict'; /** @@ -19733,7 +19907,7 @@ var connect = new TrezorConnect(); module.exports = { TrezorConnect: connect }; -},{}],108:[function(require,module,exports){ +},{}],111:[function(require,module,exports){ //Copyright 2014-2015 Google Inc. All rights reserved. //Use of this source code is governed by a BSD-style @@ -20457,7 +20631,7 @@ u2f.getApiVersion = function (callback, opt_timeoutSeconds) { }; module.exports = u2f; -},{}],109:[function(require,module,exports){ +},{}],112:[function(require,module,exports){ 'use strict'; var Token = function Token(contractAddress, userAddress, symbol, decimal, type) { @@ -20541,7 +20715,13 @@ Token.prototype.getData = function (toAdd, value) { }; module.exports = Token; -},{}],110:[function(require,module,exports){ +},{}],113:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],114:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],115:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],116:[function(require,module,exports){ module.exports=[ { "address": "0x991e7fe4b05f2b3db1d788e705963f5d647b0044", @@ -20551,7 +20731,7 @@ module.exports=[ } ] -},{}],111:[function(require,module,exports){ +},{}],117:[function(require,module,exports){ module.exports=[ { "address":"0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C", @@ -20571,7 +20751,7 @@ module.exports=[ } ] -},{}],112:[function(require,module,exports){ +},{}],118:[function(require,module,exports){ module.exports=[ { "address": "0x7dd7f56d697cc0f2b52bd55c057f378f1fe6ab4b", @@ -21383,6 +21563,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0xc87c5dd86a3d567ff28701886fb0745aaa898da4", + "symbol": "CTG", + "decimal": 18, + "type": "default" + }, { "address": "0xbf4cfd7d1edeeea5f6600827411b41a21eb08abd", "symbol": "CTL", @@ -21581,6 +21767,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x386Faa4703a34a7Fdb19Bec2e14Fd427C9638416", + "symbol": "DoBETacceptBET(DCA)", + "decimals": 18, + "type": "default" + }, { "address": "0x76974c7b79dc8a6a109fd71fd7ceb9e40eff5382", "symbol": "DOW", @@ -21629,6 +21821,12 @@ module.exports=[ "decimal": 1, "type": "default" }, + { + "address": "0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190", + "symbol": "DTH", + "decimal": 18, + "type": "default" + }, { "address": "0xd234bf2410a0009df9c3c63b610c09738f18ccd7", "symbol": "DTR", @@ -21654,7 +21852,7 @@ module.exports=[ "type": "default" }, { - "address": "0xd4cffeef10f60eca581b5e1146b5aca4194a4c3b", + "address": "0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c", "symbol": "DUBI", "decimal": 18, "type": "default" @@ -21755,6 +21953,12 @@ module.exports=[ "decimal": 2, "type": "default" }, + { + "address": "0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4", + "symbol": "ENG", + "decimal": 8, + "type": "default" + }, { "address": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c", "symbol": "ENJ", @@ -21851,6 +22055,12 @@ module.exports=[ "decimal": 12, "type": "default" }, + { + "address": "0x7f6715c3fc4740a02f70de85b9fd50ac6001fed9", + "symbol": "FANX", + "decimal": 18, + "type": "default" + }, { "address": "0x009e864923b49263c7F10D19B7f8Ab7a9A5AAd33", "symbol": "FKX", @@ -21911,6 +22121,12 @@ module.exports=[ "decimal": 2, "type": "default" }, + { + "address": "0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc", + "symbol": "FTT", + "decimal": 18, + "type": "default" + }, { "address": "0x2023DCf7c438c8C8C0B0F28dBaE15520B4f3Ee20", "symbol": "FTR", @@ -22037,6 +22253,12 @@ module.exports=[ "decimal": 0, "type": "default" }, + { + "address": "0xc5bbae50781be1669306b9e001eff57a2957b09d", + "symbol": "GTO", + "decimal": 5, + "type": "default" + }, { "address": "0xf7B098298f7C69Fc14610bf71d5e02c60792894C", "symbol": "GUP", @@ -22235,6 +22457,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x48e5413b73add2434e47504E2a22d14940dBFe78", + "symbol": "INRM", + "decimal": 3, + "type": "default" + }, { "address": "0x5b2e4a700dfbc560061e957edec8f6eeeb74a320", "symbol": "INS", @@ -22403,6 +22631,12 @@ module.exports=[ "decimal": 5, "type": "default" }, + { + "address": "0x123ab195dd38b1b40510d467a6a359b201af056f", + "symbol": "LGO", + "decimal": 8, + "type": "default" + }, { "address": "0x2eb86e8fc520e0f6bb5d9af08f924fe70558ab89", "symbol": "LGR", @@ -22493,6 +22727,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x5dbe296f97b23c4a6aa6183d73e574d02ba5c719", + "symbol": "LUC", + "decimal": 18, + "type": "default" + }, { "address": "0xFB12e3CcA983B9f59D90912Fd17F8D745A8B2953", "symbol": "LUCK", @@ -22535,6 +22775,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0xfdcc07Ab60660de533b5Ad26e1457b565a9D59Bd", + "symbol": "MART", + "decimal": 18, + "type": "default" + }, { "address": "0x386467f1f3ddbe832448650418311a479eecfc57", "symbol": "MBRS", @@ -22697,6 +22943,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x8a77e40936bbc27e80e9a3f526368c967869c86d", + "symbol": "MVP", + "decimal": 18, + "type": "default" + }, { "address": "0x6425c6be902d692ae2db752b3c268afadb099d3b", "symbol": "MWAT", @@ -22847,6 +23099,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0xe9dE1C630753A15d7021Cc563429c21d4887506F", + "symbol": "OPEN", + "decimal": 8, + "type": "default" + }, { "address": "0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0", "symbol": "OPT", @@ -23064,7 +23322,7 @@ module.exports=[ "type": "default" }, { - "address": "0x7641b2Ca9DDD58adDf6e3381c1F994Aac5f1A32f", + "address": "0xd94F2778e2B3913C53637Ae60647598bE588c570", "symbol": "PRPS", "decimal": 18, "type": "default" @@ -23117,6 +23375,12 @@ module.exports=[ "decimal": 8, "type": "default" }, + { + "address": "0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6", + "symbol": "QASH", + "decimal": 6, + "type": "default" + }, { "address": "0x671AbBe5CE652491985342e85428EB1b07bC6c64", "symbol": "QAU", @@ -23339,9 +23603,15 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x37427576324fE1f3625c9102674772d7CF71377d", + "symbol": "SGT (SelfieYo Gold Token)", + "decimal": 18, + "type": "default" + }, { "address": "0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468", - "symbol": "SGT", + "symbol": "SGT (StatusGenesis)", "decimal": 1, "type": "default" }, @@ -23525,6 +23795,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4", + "symbol": "SS (Sharder)", + "decimal": 18, + "type": "default" + }, { "address": "0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89", "symbol": "SSH", @@ -23753,12 +24029,24 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x105d97ef2e723f1cfb24519bc6ff15a6d091a3f1", + "symbol": "UMKA", + "decimal": 4, + "type": "default" + }, { "address": "0xd01db73e047855efb414e6202098c4be4cd2423b", "symbol": "UQC", "decimal": 18, "type": "default" }, + { + "address": "0xD760ADdFb24D9C01Fe4Bfea7475C5e3636684058", + "symbol": "USDM", + "decimal": 2, + "type": "default" + }, { "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", "symbol": "USDT", @@ -23891,6 +24179,12 @@ module.exports=[ "decimal": 7, "type": "default" }, + { + "address": "0x8f936fe0faf0604c9c0ef2406bde0a65365515d6", + "symbol": "WCN", + "decimal": 18, + "type": "default" + }, { "address": "0x6a0a97e47d15aad1d132a1ac79a480e3f2079063", "symbol": "WCT", @@ -24005,6 +24299,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0xf6b6aa0ef0f5edc2c1c5d925477f97eaf66303e7", + "symbol": "XGG", + "decimal": 8, + "type": "default" + }, { "address": "0x533ef0984b2FAA227AcC620C67cce12aA39CD8CD", "symbol": "XGM", @@ -24131,14 +24431,20 @@ module.exports=[ "symbol": "YEED", "decimal": 18, "type": "default" + }, + { + "address": "0x554ffc77f4251a9fb3c0e3590a6a205f8d4e067d", + "symbol": "ZMN", + "decimal": 18, + "type": "default" } ] -},{}],113:[function(require,module,exports){ -arguments[4][7][0].apply(exports,arguments) -},{"dup":7}],114:[function(require,module,exports){ -arguments[4][7][0].apply(exports,arguments) -},{"dup":7}],115:[function(require,module,exports){ +},{}],119:[function(require,module,exports){ +arguments[4][10][0].apply(exports,arguments) +},{"dup":10}],120:[function(require,module,exports){ +arguments[4][10][0].apply(exports,arguments) +},{"dup":10}],121:[function(require,module,exports){ module.exports=[{ "address":"0xbd287b4398b248032183994229f5f6a9fdac98b1", "symbol":"💥 PLASMA", @@ -24156,9 +24462,9 @@ module.exports=[{ "type":"default" }] -},{}],116:[function(require,module,exports){ -arguments[4][7][0].apply(exports,arguments) -},{"dup":7}],117:[function(require,module,exports){ +},{}],122:[function(require,module,exports){ +arguments[4][10][0].apply(exports,arguments) +},{"dup":10}],123:[function(require,module,exports){ module.exports=[{ "address":"0xA52832A0B3EBfAeF629B1a44A922F46c90445108", "symbol":"☼ PLASMA", @@ -24176,7 +24482,7 @@ module.exports=[{ "type": "default" }] -},{}],118:[function(require,module,exports){ +},{}],124:[function(require,module,exports){ module.exports=[{ "address":"0x95D7321EdCe519419ba1DbC60A89bAfbF55EAC0D", "symbol":"💥 PLASMA", @@ -24184,9 +24490,9 @@ module.exports=[{ "type":"default" }] -},{}],119:[function(require,module,exports){ -arguments[4][7][0].apply(exports,arguments) -},{"dup":7}],120:[function(require,module,exports){ +},{}],125:[function(require,module,exports){ +arguments[4][10][0].apply(exports,arguments) +},{"dup":10}],126:[function(require,module,exports){ module.exports=[ { "address":"0xd245207cfbf6eb6f34970db2a807ab1d178fde6c", @@ -24226,7 +24532,7 @@ module.exports=[ } ] -},{}],121:[function(require,module,exports){ +},{}],127:[function(require,module,exports){ // Català 'use strict'; @@ -24391,7 +24697,7 @@ ca.data = (_ca$data = { module.exports = ca; -},{}],122:[function(require,module,exports){ +},{}],128:[function(require,module,exports){ // German 'use strict'; @@ -24556,7 +24862,7 @@ de.data = (_de$data = { module.exports = de; -},{}],123:[function(require,module,exports){ +},{}],129:[function(require,module,exports){ // Greek 'use strict'; @@ -24721,7 +25027,7 @@ el.data = (_el$data = { module.exports = el; -},{}],124:[function(require,module,exports){ +},{}],130:[function(require,module,exports){ // English 'use strict'; @@ -24891,7 +25197,7 @@ en.data = (_en$data = { module.exports = en; -},{}],125:[function(require,module,exports){ +},{}],131:[function(require,module,exports){ // Spanish 'use strict'; @@ -24903,93 +25209,93 @@ var es = function es() {}; es.code = 'es'; es.data = (_es$data = { - GEN_Help_0: 'Already have a wallet somewhere?', - GEN_Help_MetaMask: 'So easy! Keys stay in MetaMask, not on a phishing site! Try it today.', + GEN_Help_0: '¿Ya tienes una billetera en alguna parte?', + GEN_Help_MetaMask: '¡Facilisimo! ¡Las llaves permanecen en MetaMask, no en un sitio de phishing! Pruébalo hoy.', - GEN_Warning_1: '**Do not lose it!** It cannot be recovered if you lose it.', - GEN_Warning_2: '**Do not share it!** Your funds will be stolen if you use this file on a malicious/phishing site.', - GEN_Warning_3: '**Make a backup!** Secure it like the millions of dollars it may one day be worth.', + GEN_Warning_1: '**¡No lo pierdas!** No puede ser recuperado si lo pierdes.', + GEN_Warning_2: '**¡No lo compartas!** Tus fondos serán robados si usa este archivo en un sitio malicioso/phishing.', + GEN_Warning_3: '**¡Realiza copias de seguridad!** Asegúrelo como los millones de dólares que un algún día podrían valer.', - GAS_Price_1: 'Not So Fast', - GAS_Price_2: 'Fast', - GAS_Price_3: 'Fast AF', + GAS_Price_1: 'No Tan Rápido', + GAS_Price_2: 'Rápido', + GAS_Price_3: 'Rápido AF', - CONTRACT_Helper_1: 'Please change the address to your own Multisig Contract Address.', - CONTRACT_Warning_1: 'You are about to **deploy a contract**.', - CONTRACT_Warning_2: 'It will be deployed on the following network:', - CONTRACT_Warning_3: 'You are about to **execute a function on contract**.', + CONTRACT_Helper_1: 'Por favor, cambia la dirección a tu propio Contrato Multifirma.', + CONTRACT_Warning_1: 'Estás a punto de **implementar un contrato**.', + CONTRACT_Warning_2: 'Será implementado en la siguiente red:', + CONTRACT_Warning_3: 'Estás a punto de **ejecutar una función en un contrato**.', - SEND_Helper_Contract: 'In most cases you should leave this as 0.', - SEND_ViewOnly: 'You cannot send with only your address. You must use one of the other options to unlock your wallet in order to send.', - SEND_LoadTokens: 'Load Tokens', + SEND_Helper_Contract: 'En la mayoría de los casos deberias dejar esto a 0.', + SEND_ViewOnly: 'No puedes enviar unicamente con tu dirección. Debes usar una de las otras opciones para desbloquear tu billetera y poder realizar envios.', + SEND_LoadTokens: 'Carga Tokens', SEND_CustomAddrMsg: 'A message regarding', - SWAP_Warning_1: 'Warning! You do not have enough funds to complete this swap.', - SWAP_Warning_2: 'Please add more funds to your wallet or access a different wallet.', + SWAP_Warning_1: '¡Peligro! No tienes suficientes fondos para completar este intercambio.', + SWAP_Warning_2: 'Pr favor, añade mas fondos a tu billetera o accede a una diferente.', - X_Advanced: 'Advanced Users Only.', - X_HelpfulLinks: 'Helpful Links & FAQs', - X_HelpfulLinks_1: 'How to Access your Wallet', - X_HelpfulLinks_2: 'I lost my private key', - X_HelpfulLinks_3: 'My private key opens a different address', + X_Advanced: 'Solo Usuarios Avanzados.', + X_HelpfulLinks: 'Enlaces útiles y preguntas frecuentes', + X_HelpfulLinks_1: 'Cómo acceder a tu billetera', + X_HelpfulLinks_2: 'He perdido mi clave privada', + X_HelpfulLinks_3: 'Mi dirección privada abre una dirección diferente', X_HelpfulLinks_4: 'Migrating to/from MyEtherWallet', - X_Network: 'Network', - X_Network_Custom: 'Add Custom Network / Node', + X_Network: 'Red', + X_Network_Custom: 'Añade Red / Red Personalizado', - DOMAIN_Buy: 'Buy the domain', - DOMAIN_BuyItNow: 'Price to buy the domain immediately:', - DOMAIN_bid: 'Bid for the domain', - DOMAIN_bid_0: 'You are currently winning this auction with the highest bid. You can bid higher if you want, but it will delay the close of the auction for 24 hours.', + DOMAIN_Buy: 'Compra el dominio', + DOMAIN_BuyItNow: 'Precio para comprar el dominio inmediatamente:', + DOMAIN_bid: 'Haga una oferta para el dominio', + DOMAIN_bid_0: 'Actualmente estás ganando esta subasta con la oferta más alta. Puede pujar más alto si lo desea, pero retrasará el cierre de la subasta durante 24 horas.', DOMAIN_bid_1: 'Bid at least', - DOMAIN_bid_2: 'on the domain.', - DOMAIN_bid_3: 'You will win the domain if no higher bids are placed within the next 24 hours.', - DOMAIN_bid_4: 'Note that the domain has a locked value of', - DOMAIN_bid_5: 'As part of the sale you will receive the deed with this value but cannot claim it unless you release the name.', - DOMAIN_Finish_1: 'Not related to that auction', - DOMAIN_Finish_2: 'This address is neither the winner nor the seller of the auction.', - DOMAIN_Finish_3: 'Finish the auction', - DOMAIN_Finish_4: 'Finish the auction to allocate the domain to the winner and the funds to the seller.', - DOMAIN_Finish_5: 'Click your TX hash to see if you successfully transferred the domain to DomainSale.', - DOMAIN_offer_4: 'Offer For Sale:', - DOMAIN_offer_5: 'Set either of both of the prices below to offer your domain for sale. Remember that any funds you have locked in the domain\'s deed will go to the buyer and 10% of the funds when sold goes to referrers.', - DOMAIN_offer_7: 'Alter Your Offer for:', - DOMAIN_offer_8: 'Change either of both of the prices below to alter your domain sale offer. Remember that any funds you have locked in the domain\'s deed will go to the buyer and 10% of the funds when sold goes to referrers.', - DOMAIN_offer_9: 'Buy price', - DOMAIN_offer_10: 'This is the price at which someone can buy the domain immediately. 0 means that the domain cannot be purchased immediately.', - DOMAIN_offer_11: 'This is the price at which someone can start an auction for the domain. 0 means that the domain will not be available for auction.', - DOMAIN_offer_12: 'Offer your domain', - DOMAIN_offer_13: 'Alter your sale', - DOMAIN_offer_14: 'Cancel your sale', - DOMAIN_offer_15: 'You can cancel your domain sale, which will return the domain to you with no charge. This is only available before any bids have been received for the domain.', - - ENS_WrongAddress_1: 'The wallet you unlocked does not own the name ', - ENS_WrongAddress_2: 'Please unlock the wallet with address ', - - ENS_Finalize: 'Finalize', - ENS_Finalize_content: 'Finalizing this name assigns the ENS name to the winning bidder. The winner will be refunded the difference between their bid and the next-highest bid. If you are the only bidder, you will refunded all but 0.01 ETH. Any non-winners will also be refunded.', - ENS_Finalize_content_1: 'You are about to finalize the auction & claim the name:', - ENS_Helper_1: 'What is the process like?', - ENS_Helper_2: '1) Preparation', - ENS_Helper_3: 'Decide which account you wish to own the name & ensure you have multiple backups of that account.', - ENS_Helper_4: 'Decide the maximum amount of ETH you are willing to pay for the name (your Bid Amount). Ensure that account has enough to cover your bid + 0.01 ETH for gas.', - ENS_Helper_5: '2) Start an Auction / Place a Bid', - ENS_Helper_6: 'Bidding period lasts 3 days (72 hours).', - ENS_Helper_7: 'You will enter the name, Actual Bid Amount, Bid Mask, which is protected by a Secret Phrase.', - ENS_Helper_8: 'This places your bid, but this information is kept secret until you reveal it.', - ENS_Helper_9: '3) Reveal your Bid', - ENS_Helper_10: '**If you do not reveal your bid, you will not be refunded.**', - ENS_Helper_11: 'Reveal Period lasts 2 days (48 hours).', - ENS_Helper_12: 'You will unlock your account, enter the Bid Amount, and the Secret Phrase.', - ENS_Helper_13: 'In the event that two parties bid exactly the same amount, the first bid revealed will win.', - ENS_Helper_14: '4) Finalize the Auction', - ENS_Helper_15: 'Once the auction has ended (after 5 days / 120 hours), the winner needs to finalize the auction in order to claim their new name.', - ENS_Helper_16: 'The winner will be refunded the difference between their bid and the next-highest bid. If you are the only bidder, you will refunded all but 0.01 ETH.', - ENS_Helper_17: 'More Information', - ENS_Helper_18: 'The auction for this registrar is a blind auction, and is described in', - ENS_Helper_19: 'Basically, no one can see *anything* during the auction.', - ENS_Helper_20: 'ENS: Read the Docs', - ENS_Helper_21: 'Announcing the Ethereum Name Service Relaunch Date!', - ENS_Helper_22: 'Knowledge Base: ENS', + DOMAIN_bid_2: 'en el dominio.', + DOMAIN_bid_3: 'Ganará el dominio si no se realizan ofertas más altas dentro de las próximas 24 horas.', + DOMAIN_bid_4: 'Tenga en cuenta que el dominio tiene un valor bloqueado de', + DOMAIN_bid_5: 'Como parte de la venta, recibirá la escritura con este valor, pero no podrá reclamarla a menos que libere el nombre.', + DOMAIN_Finish_1: 'No relacionado con esa subasta', + DOMAIN_Finish_2: 'Esta dirección no es ni el ganador ni el vendedor de la subasta.', + DOMAIN_Finish_3: 'Termina la subasta', + DOMAIN_Finish_4: 'Finalice la subasta para asignar el dominio al ganador y los fondos al vendedor.', + DOMAIN_Finish_5: 'Haga clic en su hash TX para ver si transfirió el dominio exitosamente a DomainSale.', + DOMAIN_offer_4: 'Oferta para la venta:', + DOMAIN_offer_5: 'Establezca cualquiera de los precios a continuación para ofrecer su dominio a la venta. Recuerde que los fondos que haya bloqueado en la escritura del dominio irán al comprador y el 10% de los fondos cuando se venden se destinará a remitentes.', + DOMAIN_offer_7: 'Modifique su oferta para:', + DOMAIN_offer_8: 'Cambie cualquiera de los dos precios a continuación para modificar la oferta de venta de su dominio. Recuerde que los fondos que haya bloqueado en la escritura del dominio irán al comprador y el 10% de los fondos cuando se venden se destinará a remitentes.', + DOMAIN_offer_9: 'Precio de compra', + DOMAIN_offer_10: 'Este es el precio al que alguien puede comprar el dominio de inmediato. 0 significa que el dominio no se puede comprar de inmediato.', + DOMAIN_offer_11: 'Este es el precio al que alguien puede comenzar una subasta por el dominio. 0 significa que el dominio no estará disponible para la subasta.', + DOMAIN_offer_12: 'Ofrezca su dominio', + DOMAIN_offer_13: 'Modifique su venta', + DOMAIN_offer_14: 'Cancele su venta', + DOMAIN_offer_15: 'Puede cancelar su venta de dominio, se le devolverá el dominio sin cargo. Esto solo está disponible antes de que se hayan recibido ofertas para el dominio.', + + ENS_WrongAddress_1: 'La billetera que desbloqueaste no posee el nombre ', + ENS_WrongAddress_2: 'Desbloquee la billetera con la dirección ', + + ENS_Finalize: 'Finalizar', + ENS_Finalize_content: 'Al finalizar este nombre, se asigna el nombre ENS al pujador ganador. Al ganador se le reembolsará la diferencia entre su oferta y la siguiente oferta más alta. Si usted es el único postor, se le reembolsará todo menos 0.01 ETH. Cualquier no ganador también será reembolsado.', + ENS_Finalize_content_1: 'Está a punto de finalizar la subasta y reclamar el nombre:', + ENS_Helper_1: '¿Cómo es el proceso?', + ENS_Helper_2: '1) Preparación', + ENS_Helper_3: 'Decida en qué cuenta desea tener el nombre y asegúrese de tener varias copias de seguridad de esa cuenta.', + ENS_Helper_4: 'Decida la cantidad máxima de ETH que está dispuesto a pagar por el nombre (su Monto de oferta ). Asegúrese de que la cuenta tenga suficiente para cubrir su oferta + 0.01 ETH para el gas.', + ENS_Helper_5: '2) Comience una subasta / haga una oferta', + ENS_Helper_6: 'El período de oferta dura 3 días (72 horas).', + ENS_Helper_7: 'Ingresará el nombre , Cantidad de oferta actual , Máscara de oferta , que está protegida por una Frase secreta .', + ENS_Helper_8: 'Esto establece su oferta, pero esta información se mantiene en secreto hasta que la revele.', + ENS_Helper_9: '3) Revela tu oferta', + ENS_Helper_10: '** Si no revela su oferta, no se le reembolsará. **', + ENS_Helper_11: 'Período de revelación dura 2 días (48 horas).', + ENS_Helper_12: 'Desbloquee su cuenta, ingrese el Monto de oferta y la Frase secreta .', + ENS_Helper_13: 'En el caso de que dos partes ofrezcan exactamente la misma cantidad, la primera oferta revelada ganará.', + ENS_Helper_14: '4) finalizar la subasta', + ENS_Helper_15: 'Una vez que la subasta ha finalizado (después de 5 días / 120 horas), el ganador debe finalizar la subasta para poder reclamar su nuevo nombre.', + ENS_Helper_16: 'Al ganador se le reembolsará la diferencia entre su oferta y la siguiente oferta más alta. Si usted es el único postor, se le reembolsará todo menos 0.01 ETH.', + ENS_Helper_17: 'Más información', + ENS_Helper_18: 'La subasta de este registrador es una subasta ciega, y se describe en', + ENS_Helper_19: 'Básicamente, nadie puede ver *cualquier cosa* durante la subasta.', + ENS_Helper_20: 'ENS: Lee los documentos', + ENS_Helper_21: '¡Anunciando la fecha de relanzamiento del servicio de nombres de Ethereum!', + ENS_Helper_22: 'Base de conocimientos: ENS', ENS_Helper_23: 'Debugging a [BAD INSTRUCTION] Reveal', ENS_Helper_24: 'Please try the above before relying on support for reveal issues as we are severely backlogged on support tickets. We\'re so sorry. :(', @@ -25005,58 +25311,58 @@ es.data = (_es$data = { EOS_10: 'Select `claimAll`.', /* Onboarding */ - ONBOARD_welcome_title: 'Welcome to MyEtherWallet.com', - ONBOARD_welcome_content__1: 'Please take some time to understand this for your own safety. 🙏', - ONBOARD_welcome_content__2: 'Your funds will be stolen if you do not heed these warnings.', - ONBOARD_welcome_content__3: 'We know this click-through stuff is annoying. We are sorry.', - ONBOARD_welcome_content__4: 'What is MEW? ', - ONBOARD_welcome_content__5: 'MyEtherWallet is a free, open-source, client-side interface.', - ONBOARD_welcome_content__6: 'We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.', - ONBOARD_welcome_content__7: '**You** and **only you** are responsible for your security.', - ONBOARD_welcome_content__8: 'We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.', - ONBOARD_bank_title: 'MyEtherWallet is not a Bank', - ONBOARD_bank_content__1: 'When you open an account with a bank or exchange, they create an account for you in their system.', - ONBOARD_bank_content__2: 'The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.', - ONBOARD_bank_content__3: 'The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.', - ONBOARD_bank_content__4: 'The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.', - ONBOARD_bank_content__5: 'You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.', - ONBOARD_welcome_title__alt: 'Introduction', - ONBOARD_interface_title: 'MyEtherWallet is an Interface', - ONBOARD_interface_content__1: 'When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).', - ONBOARD_interface_content__2: 'The handling of your keys happens entirely on your computer, inside your browser.', - ONBOARD_interface_content__3: 'We never transmit, receive or store your private key, password, or other account information.', - ONBOARD_interface_content__4: 'We do not charge a transaction fee.', - ONBOARD_interface_content__5: 'You are simply using our **interface** to interact **directly with the blockchain**.', - ONBOARD_interface_content__6: 'If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍', - ONBOARD_interface_content__7: 'If you send your *private key* to someone, they now have full control of your account. 👎', - ONBOARD_bank_title__alt: 'MEW isn\'t a Bank', - ONBOARD_blockchain_title__alt: 'WTF is a Blockchain?', - ONBOARD_blockchain_skip: 'I already know what a blockchain is...', - ONBOARD_blockchain_title: 'Wait, WTF is a Blockchain?', - ONBOARD_blockchain_content__1: 'The blockchain is like a huge, global, decentralized spreadsheet.', - ONBOARD_blockchain_content__2: 'It keeps track of who sent how many coins to whom, and what the balance of every account is.', - ONBOARD_blockchain_content__3: 'It is stored and maintained by thousands of people (miners) across the globe who have special computers.', - ONBOARD_blockchain_content__4: 'The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.', - ONBOARD_blockchain_content__5: 'When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.', - ONBOARD_blockchain_content__6: 'Again: **we are not a bank**.', - ONBOARD_interface_title__alt: 'MEW is an Interface', - ONBOARD_why_title__alt: 'But...why does this matter?', - ONBOARD_why_title: 'Why are you making me read all this?', - ONBOARD_why_content__1: 'Because we need you to understand that we **cannot**...', - ONBOARD_why_content__2: 'Access your account or send your funds for you X.', - ONBOARD_why_content__3: 'Recover or change your private key.', - ONBOARD_why_content__4: 'Recover or reset your password.', - ONBOARD_why_content__5: 'Reverse, cancel, or refund transactions.', - ONBOARD_why_content__6: 'Freeze accounts.', - ONBOARD_why_content__7: '**You** and **only you** are responsible for your security.', - ONBOARD_why_content__8: 'Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.', - ONBOARD_why_content__9: 'If you lose your private key or password, no one can recover it.', - ONBOARD_why_content__10: 'If you enter your private key on a phishing website, you will have **all your funds taken**.' -}, _defineProperty(_es$data, 'ONBOARD_blockchain_title__alt', 'WTF is a Blockchain?'), _defineProperty(_es$data, 'ONBOARD_point_title__alt', 'What\'s the Point of MEW then?'), _defineProperty(_es$data, 'ONBOARD_whymew_title', 'If MyEtherWallet can\'t do those things, what\'s the point?'), _defineProperty(_es$data, 'ONBOARD_whymew_content__1', 'Because that is the point of decentralization and the blockchain.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__2', 'You don\'t have to rely on your bank, government, or anyone else when you want to move your funds.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__3', 'You don\'t have to rely on the security of an exchange or bank to keep your funds safe.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__4', 'If you don\'t find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉'), _defineProperty(_es$data, 'ONBOARD_whymew_content__5', 'If you don\'t like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__6', 'If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.'), _defineProperty(_es$data, 'ONBOARD_why_title__alt', 'But...why?'), _defineProperty(_es$data, 'ONBOARD_secure_title', 'How To Protect Yourself & Your Funds'), _defineProperty(_es$data, 'ONBOARD_secure_1_title', 'How To Protect Yourself from Phishers'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__1', 'Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__2', 'Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__3', 'Always check the URL: `https://www.myetherwallet.com`.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__4', 'Always make sure the URL bar has `MYETHERWALLET INC` in green.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__5', 'Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__6', 'Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__7', '[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).'), _defineProperty(_es$data, 'ONBOARD_point_title__alt_2', 'What\'s the point?'), _defineProperty(_es$data, 'ONBOARD_secure_2_title', 'How To Protect Yourself from Scams'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__1', 'People will try to get you to give them money in return for nothing.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__2', 'If it is too good to be true, it probably is.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__3', 'Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__4', 'Ask questions when you don\'t understand something or it doesn\'t seem right.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__5', 'Don\'t let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself "why?". It may be to create FOMO or prevent you from doing research.'), _defineProperty(_es$data, 'ONBOARD_secure_3_title__alt', 'Phuck Phishers'), _defineProperty(_es$data, 'ONBOARD_secure_3_title', 'How To Protect Yourself from Loss'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__1', 'If you lose your private key or password, it is gone forever. Don\'t lose it.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__2', 'Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__3', 'Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__4', 'Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__5', 'If you have more than 1-week\'s worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It\'s worth it. I promise.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__6', '[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)'), _defineProperty(_es$data, 'ONBOARD_secure_2_title__alt_2', 'Screw Scams'), _defineProperty(_es$data, 'ONBOARD_final_title__alt', 'One more click & you\'re done! 🤘'), _defineProperty(_es$data, 'ONBOARD_final_title', 'Alright, I\'m done lecturing you!'), _defineProperty(_es$data, 'ONBOARD_final_subtitle', 'Sorry for being like this. Onwards!'), _defineProperty(_es$data, 'ONBOARD_final_content__1', 'Create a wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__2', 'Get a hardware wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__3', 'How to Set up MEW + MetaMask'), _defineProperty(_es$data, 'ONBOARD_final_content__4', 'How to Run MEW Offline / Locally'), _defineProperty(_es$data, 'ONBOARD_final_content__5', 'How to Send via Ledger hardware wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__6', 'How to Send via TREZOR hardware wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__7', 'How to Send via MetaMask'), _defineProperty(_es$data, 'ONBOARD_final_content__8', 'Learn More or Contact Us'), _defineProperty(_es$data, 'ONBOARD_final_content__9', 'OMG, please just let me send FFS.'), _defineProperty(_es$data, 'ONBOARD_resume', 'It looks like you didn\'t finish reading through these slides last time. ProTip: Finish reading through the slides 😉'), _defineProperty(_es$data, 'x_CancelReplaceTx', 'Cancelar o reemplazar transacción'), _defineProperty(_es$data, 'x_CancelTx', 'Cancelar transacción'), _defineProperty(_es$data, 'x_PasswordDesc', 'Esta contraseña * encripta * tu clave privada. Esto no es una semilla para generar tus claves. **Necesitarás esta contraseña + tu clave privada para desbloquear tu cartera.**'), _defineProperty(_es$data, 'x_ReadMore', 'Leer más'), _defineProperty(_es$data, 'x_ReplaceTx', 'Reemplazar transacción'), _defineProperty(_es$data, 'x_TransHash', 'Hash de la transacción'), _defineProperty(_es$data, 'x_TXFee', 'TX Fee'), _defineProperty(_es$data, 'x_TxHash', 'TX Hash'), _defineProperty(_es$data, 'NAV_CheckTxStatus', 'Comprobar estado de transacción'), _defineProperty(_es$data, 'NAV_TxStatus', 'Estado de transacción'), _defineProperty(_es$data, 'tx_Details', 'Detalles de la transacción'), _defineProperty(_es$data, 'tx_Summary', 'En momentos de alto volumen (como por ejemplo durante las ICOs) las transacciones pueden quedarse pendientes durante horas o incluso días. Esta herramienta te proporciona la posibilidad de encontrar y "cancelar" / reemplazar estas transacciones. ** Esto es algo que normalmente no puedes hacer. No se debe confiar en esta herramienta. Solamente funcionará cuando los pools de transacciones estén llenos. [Por favor, lee más sobre esta herramienta aquí.](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)**'), _defineProperty(_es$data, 'tx_notFound', 'Transacción no encontrada'), _defineProperty(_es$data, 'tx_notFound_1', 'Esta transacción no se puede encontrar en el pool de transacciones del nodo al que estás conectado.'), _defineProperty(_es$data, 'tx_notFound_2', 'Si acabas de enviar la transacción, por favor espera 15 segundos y pulsa de nuevo el botón "Comprobar estado de transacción". '), _defineProperty(_es$data, 'tx_notFound_3', 'Podría encontrarse todavía en el pool de transacciones de otro nodo diferente, esperando ser minado.'), _defineProperty(_es$data, 'tx_notFound_4', 'Por favor usa el desplegable en la parte superior derecha y selecciona un nodo ETH diferente (ej. `ETH (Etherscan.io)` o `ETH (Infura.io)` o `ETH (MyEtherWallet)`) y comprueba de nuevo.'), _defineProperty(_es$data, 'tx_foundInPending', 'Transacción pendiente encontrada'), _defineProperty(_es$data, 'tx_foundInPending_1', 'Tu transacción se ha encontrado en el pool de transacciones del nodo al que te encuentras conectado. '), _defineProperty(_es$data, 'tx_foundInPending_2', 'Actualmente está pendiente (esperando ser minada). '), _defineProperty(_es$data, 'tx_foundInPending_3', 'Existe la posibilidad de que puedas "cancelar" o reemplazar esta transacción. Desbloquea tu cartera debajo.'), _defineProperty(_es$data, 'tx_FoundOnChain', 'Transacción encontrada'), _defineProperty(_es$data, 'tx_FoundOnChain_1', 'Tu transacción ha sido minada con éxito y se encuentra en la cadena de bloques.'), _defineProperty(_es$data, 'tx_FoundOnChain_2', '**If you see a red `( ! )`, a `BAD INSTRUCTION` or `OUT OF GAS` error message**, it means that the transaction was not successfully *sent*. You cannot cancel or replace this transaction. Instead, send a new transaction. If you received an "Out of Gas" error, you should double the gas limit you specified originally.'), _defineProperty(_es$data, 'tx_FoundOnChain_3', '**If you do not see any errors, your transaction was successfully sent.** Your ETH or Tokens are where you sent them. If you cannot see this ETH or Tokens credited in your other wallet / exchange account, and it has been 24+ hours since you sent, please [contact that service](https://myetherwallet.github.io/knowledge-base/diving-deeper/ethereum-list-of-support-and-communities.html). Send them the *link* to your transaction and ask them, nicely, to look into your situation.'), _defineProperty(_es$data, 'GEN_Help_1', 'Usa tu'), _defineProperty(_es$data, 'GEN_Help_2', 'para acceder a tu cuenta.'), _defineProperty(_es$data, 'GEN_Help_3', 'Tu dispositivo * is * tu cartera.'), _defineProperty(_es$data, 'GEN_Help_4', 'Guías y FAQ'), _defineProperty(_es$data, 'GEN_Help_5', 'Cómo crear una cartera'), _defineProperty(_es$data, 'GEN_Help_6', 'Empezando'), _defineProperty(_es$data, 'GEN_Help_7', 'Keep it safe · Make a backup · Don\'t share it with anyone · Don\'t lose it · It cannot be recovered if you lose it.'), _defineProperty(_es$data, 'GEN_Help_8', 'Not Downloading a File? '), _defineProperty(_es$data, 'GEN_Help_9', 'Intenta utilizando Google Chrome '), _defineProperty(_es$data, 'GEN_Help_10', 'Right click & save file as. Filename: '), _defineProperty(_es$data, 'GEN_Help_11', 'No abras este archivo en tu computadora '), _defineProperty(_es$data, 'GEN_Help_12', 'Use it to unlock your wallet via MyEtherWallet (or Mist, Geth, Parity and other wallet clients.) '), _defineProperty(_es$data, 'GEN_Help_13', 'How to Back Up Your Keystore File '), _defineProperty(_es$data, 'GEN_Help_14', 'What are these Different Formats? '), _defineProperty(_es$data, 'GEN_Help_15', 'Evitando la pérdida o robo de tus fondos.'), _defineProperty(_es$data, 'GEN_Help_16', 'What are these Different Formats?'), _defineProperty(_es$data, 'GEN_Help_17', 'Why Should I?'), _defineProperty(_es$data, 'GEN_Help_18', 'To have a secondary backup.'), _defineProperty(_es$data, 'GEN_Help_19', 'In case you ever forget your password.'), _defineProperty(_es$data, 'GEN_Help_20', 'Cold Storage'), _defineProperty(_es$data, 'GET_ConfButton', 'I understand. Continue.'), _defineProperty(_es$data, 'GEN_Label_5', 'Save Your `Private Key`. '), _defineProperty(_es$data, 'GEN_Unlock', 'Desbloquea tu cartera para ver tu dirección'), _defineProperty(_es$data, 'GAS_PRICE_Desc', 'Gas Price is the amount you pay per unit of gas. `TX fee = gas price * gas limit` & is paid to miners for including your TX in a block. Higher the gas price = faster transaction, but more expensive. Default is `41 GWEI`.'), _defineProperty(_es$data, 'GAS_LIMIT_Desc', 'Gas limit is the amount of gas to send with your TX. `TX fee` = gas price * gas limit & is paid to miners for including your TX in a block. Increasing this number will not get your TX mined faster. Sending ETH = `21000`. Sending Tokens = ~`200000`.'), _defineProperty(_es$data, 'NONCE_Desc', 'The nonce is the number of transactions sent from a given address. It ensures transactions are sent in order & not more than once.'), _defineProperty(_es$data, 'TXFEE_Desc', 'The TX Fee is paid to miners for including your TX in a block. Is is the `gas limit` * `gas price`. [You can convert GWEI -> ETH here](https://www.myetherwallet.com/helpers.html)'), _defineProperty(_es$data, 'NAV_AddWallet', 'Añadir cartera '), _defineProperty(_es$data, 'NAV_BulkGenerate', 'Generar en masa '), _defineProperty(_es$data, 'NAV_Contact', 'Contacto '), _defineProperty(_es$data, 'NAV_Contracts', 'Contratos '), _defineProperty(_es$data, 'NAV_DeployContract', 'Desplegar contrato '), _defineProperty(_es$data, 'NAV_ENS', 'ENS'), _defineProperty(_es$data, 'NAV_GenerateWallet_alt', 'Nueva cartera '), _defineProperty(_es$data, 'NAV_GenerateWallet', 'Generar cartera '), _defineProperty(_es$data, 'NAV_Help', 'Ayuda '), _defineProperty(_es$data, 'NAV_InteractContract', 'Interactuar con un contrato '), _defineProperty(_es$data, 'NAV_Multisig', 'Multifirma '), _defineProperty(_es$data, 'NAV_MyWallets', 'Mis carteras '), _defineProperty(_es$data, 'NAV_Offline', 'Enviar sin conexión '), _defineProperty(_es$data, 'NAV_SendEther', 'Enviar ether y tokens '), _defineProperty(_es$data, 'NAV_SendTokens', 'Enviar tokens '), _defineProperty(_es$data, 'NAV_SignMsg', 'Firmar mensaje '), _defineProperty(_es$data, 'NAV_Swap', 'Intercambiar '), _defineProperty(_es$data, 'NAV_ViewWallet', 'Ver información de las carteras '), _defineProperty(_es$data, 'NAV_YourWallets', 'Tus carteras '), _defineProperty(_es$data, 'x_Access', 'Access '), _defineProperty(_es$data, 'x_AddessDesc', 'Tu dirección también se conoce como tu `número de cuenta` o tu `clave pública`. Es lo que compartes con otras personas para que te puedan enviar Ether o tokens. Busca el icono de colores de tu dirección. Asegúrate de que coincide con tu cartera de papel y siempre que introduzcas tu dirección en cualquier sitio. Puedes pensar en esto como tu "número de cuenta" o tu "clave pública". Es lo que le das a la gente para que te puedan enviar ether. Ese icono es una forma fácil de reconocer tu dirección. '), _defineProperty(_es$data, 'x_Address', 'Tu dirección '), _defineProperty(_es$data, 'x_Cancel', 'Cancelar '), _defineProperty(_es$data, 'x_CSV', 'Archivo CSV (sin encriptar) '), _defineProperty(_es$data, 'x_Download', 'Descargar '), _defineProperty(_es$data, 'x_Json', 'Archivo JSON (sin encriptar) '), _defineProperty(_es$data, 'x_JsonDesc', 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu archivo JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña. '), _defineProperty(_es$data, 'x_Keystore', 'Archivo Keystore (UTC / JSON · Recomendado · Encriptado) '), _defineProperty(_es$data, 'x_Keystore2', 'Archivo Keystore (UTC / JSON) '), _defineProperty(_es$data, 'x_KeystoreDesc', 'Este archivo Keystore/JSON concuerda con el formato usado por Mist para una fácil importación en el futuro. Es el archivo recomendado para descargar y guardar como copia de seguridad. '), _defineProperty(_es$data, 'x_MetaMask', 'MetaMask / Mist '), _defineProperty(_es$data, 'x_Mnemonic', 'Frase mnemotécnica '), _defineProperty(_es$data, 'x_ParityPhrase', 'Frase de Parity '), _defineProperty(_es$data, 'x_Password', 'Contraseña '), _defineProperty(_es$data, 'x_Print', 'Imprimir Cartera de Papel '), _defineProperty(_es$data, 'x_PrintDesc', 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora! '), _defineProperty(_es$data, 'x_PrintShort', 'Imprimir '), _defineProperty(_es$data, 'x_PrivKey', 'Clave Privada (sin encriptar) '), _defineProperty(_es$data, 'x_PrivKey2', 'Clave Privada '), _defineProperty(_es$data, 'x_PrivKeyDesc', 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas. '), _defineProperty(_es$data, 'x_Save', 'Guardar '), _defineProperty(_es$data, 'x_TXT', 'Archivo TXT (sin encriptar) '), _defineProperty(_es$data, 'x_Wallet', 'Cartera '), _defineProperty(_es$data, 'MEW_Warning_1', 'Comprueba siempre la URL antes de acceder a tu cartera o crear una cartera nueva. ¡Ten cuidado con los sitios falsos (phishing)! '), _defineProperty(_es$data, 'CX_Warning_1', 'Asegúrate de tener **copias de seguridad externas** de cualquier cartera que almacenes aquí. Pueden ocurrir muchas cosas que te hagan perder los datos de esta extensión de Chrome; esto incluye desinstalar y volver a instalar la extensión. Esta extensión es un modo de acceder fácilmente a tus carteras, **no** una manera de respaldarlas. '), _defineProperty(_es$data, 'MEW_Tagline', 'Cartera Ether JavaScript de código abierto ejecutado en el cliente '), _defineProperty(_es$data, 'CX_Tagline', 'Cartera Ether JavaScript de código abierto ejecutado en el cliente extensión Chrome '), _defineProperty(_es$data, 'FOOTER_1', 'Una herramienta de código abierto JavaScript que se ejecuta en el lado del cliente, para generar carteras y enviar transacciones Ethereum. '), _defineProperty(_es$data, 'FOOTER_1b', 'Creado por '), _defineProperty(_es$data, 'FOOTER_2', 'Se agradecen las donaciones: '), _defineProperty(_es$data, 'FOOTER_3', 'Generación de carteras en el cliente por '), _defineProperty(_es$data, 'FOOTER_4', 'Renuncia de responsabilidad '), _defineProperty(_es$data, 'sidebar_AccountInfo', 'Información de la cuenta '), _defineProperty(_es$data, 'sidebar_AccountAddr', 'Dirección de la cuenta '), _defineProperty(_es$data, 'sidebar_AccountBal', 'Saldo de la cuenta '), _defineProperty(_es$data, 'sidebar_TokenBal', 'Saldos de tokens '), _defineProperty(_es$data, 'sidebar_Equiv', 'Valores equivalentes '), _defineProperty(_es$data, 'sidebar_TransHistory', 'Historial de transacciones '), _defineProperty(_es$data, 'sidebar_donation', 'MyEtherWallet es un servicio gratuito y de código abierto dedicado a tu privacidad y seguridad. Cuantas más donaciones recibimos, más tiempo dedicamos creando nuevas características, escuchando vuestros comentarios y proporcionando lo que queréis. Sólo somos dos personas intentando cambiar el mundo. ¿Nos ayudas? '), _defineProperty(_es$data, 'sidebar_donate', 'Donar '), _defineProperty(_es$data, 'sidebar_thanks', '¡¡¡GRACIAS!!! '), _defineProperty(_es$data, 'sidebar_DisplayOnTrezor', 'Mostrar dirección en TREZOR'), _defineProperty(_es$data, 'sidebar_DisplayOnLedger', 'Mostrar dirección en Ledger'), _defineProperty(_es$data, 'decrypt_Access', '¿Cómo te gustaría acceder a tu cartera? '), _defineProperty(_es$data, 'decrypt_Title', 'Elige el formato de tu clave privada: '), _defineProperty(_es$data, 'decrypt_Select', 'Elige una cartera: '), _defineProperty(_es$data, 'ADD_Label_1', '¿Qué quieres hacer? '), _defineProperty(_es$data, 'ADD_Radio_1', 'Generar nueva cartera '), _defineProperty(_es$data, 'ADD_Radio_2', 'Elige tu archivo de cartera (Keystore / JSON) '), _defineProperty(_es$data, 'ADD_Radio_2_alt', 'Elige tu archivo de cartera '), _defineProperty(_es$data, 'ADD_Radio_2_short', 'ELIGE ARCHIVO DE CARTERA... '), _defineProperty(_es$data, 'ADD_Radio_3', 'Pega o escribe tu clave privada '), _defineProperty(_es$data, 'ADD_Radio_4', 'Añade una cuenta para supervisar '), _defineProperty(_es$data, 'ADD_Radio_5', 'Pega o escribe tu mnemotécnico '), _defineProperty(_es$data, 'ADD_Radio_5_Path', 'Elige la ruta de derivación HD '), _defineProperty(_es$data, 'ADD_Radio_5_woTrezor', '(Jaxx, Metamask, Exodus, imToken)'), _defineProperty(_es$data, 'ADD_Radio_5_withTrezor', '(Jaxx, Metamask, Exodus, imToken, TREZOR)'), _defineProperty(_es$data, 'ADD_Radio_5_PathAlternative', '(Ledger)'), _defineProperty(_es$data, 'ADD_Radio_5_PathTrezor', '(TREZOR)'), _defineProperty(_es$data, 'ADD_Radio_5_PathCustom', 'Personalizado'), _defineProperty(_es$data, 'ADD_Label_2', 'Crear un alias: '), _defineProperty(_es$data, 'ADD_Label_3', 'Tu cartera está encriptada. Introduce tu contraseña '), _defineProperty(_es$data, 'ADD_Label_4', 'Añade una cuenta para supervisar '), _defineProperty(_es$data, 'ADD_Warning_1', 'Puedes añadir una cuenta para supervisar en la pestaña de carteras sin cargar una clave privada. Esto ** no ** significa que tengas acceso a la cartera, ni puedes transferir ether desde ésta. '), _defineProperty(_es$data, 'ADD_Label_5', 'Introduce la dirección '), _defineProperty(_es$data, 'ADD_Label_6', 'Desbloquea tu cartera '), _defineProperty(_es$data, 'ADD_Label_6_short', 'Desbloquear '), _defineProperty(_es$data, 'ADD_Label_7', 'Añadir cuenta '), _defineProperty(_es$data, 'ADD_Label_8', 'Contraseña (opcional): '), _defineProperty(_es$data, 'GEN_desc', 'Si quieres generar varias carteras, puedes hacerlo aquí '), _defineProperty(_es$data, 'GEN_Label_1', 'Introduce una contraseña fuerte (mínimo 9 caracteres) '), _defineProperty(_es$data, 'GEN_Placeholder_1', '¡NO olvides guardar esto! '), _defineProperty(_es$data, 'GEN_SuccessMsg', '¡Enhorabuena! Se ha generado tu cartera. '), _defineProperty(_es$data, 'GEN_Label_2', 'Guarda tu Keystore. No olvides tu contraseña. '), _defineProperty(_es$data, 'GEN_Label_3', 'Guarda tu dirección. '), _defineProperty(_es$data, 'GEN_Label_4', 'Opcional: Imprime tu cartera en papel o guarda una versión en código QR. '), _defineProperty(_es$data, 'BULK_Label_1', 'Cantidad de carteras a generar '), _defineProperty(_es$data, 'BULK_Label_2', 'Generar carteras '), _defineProperty(_es$data, 'BULK_SuccessMsg', '¡Enhorabuena! Se han generado tus carteras. '), _defineProperty(_es$data, 'SEND_addr', 'Dirección de destino '), _defineProperty(_es$data, 'SEND_amount', 'Cantidad a enviar '), _defineProperty(_es$data, 'SEND_amount_short', 'Cantidad '), _defineProperty(_es$data, 'SEND_custom', 'Personalizado '), _defineProperty(_es$data, 'SEND_gas', 'Gas '), _defineProperty(_es$data, 'SEND_TransferTotal', 'Enviar todo el saldo '), _defineProperty(_es$data, 'SEND_generate', 'Generar transacción '), _defineProperty(_es$data, 'SEND_raw', 'Transacción en bruto '), _defineProperty(_es$data, 'SEND_signed', 'Transacción firmada '), _defineProperty(_es$data, 'SEND_trans', 'Enviar transacción '), _defineProperty(_es$data, 'SEND_custom', 'Añadir token personalizado '), _defineProperty(_es$data, 'SENDModal_Title', '¡Atención! '), _defineProperty(_es$data, 'SENDModal_Content_1', 'Vas a enviar '), _defineProperty(_es$data, 'SENDModal_Content_2', 'a la dirección '), _defineProperty(_es$data, 'SENDModal_Content_3', '¿Estás seguro de que quieres hacer esto? '), _defineProperty(_es$data, 'SENDModal_Content_4', 'NOTA: Si recibes un error, es muy probable que necesites añadir ether a tu cuenta para cubrir el coste en gas de enviar tokens. Gas se paga en ether. '), _defineProperty(_es$data, 'SENDModal_No', 'No, sácame de aquí. '), _defineProperty(_es$data, 'SENDModal_Yes', 'Sí, estoy seguro. Hacer la transacción. '), _defineProperty(_es$data, 'TOKEN_Addr', 'Token Contact Dirección '), _defineProperty(_es$data, 'TOKEN_Symbol', 'Símbolo del token '), _defineProperty(_es$data, 'TOKEN_Dec', 'Decimales '), _defineProperty(_es$data, 'TOKEN_hide', 'Ocultar tokens '), _defineProperty(_es$data, 'TOKEN_show', 'Mostrar todos los tokens '), _defineProperty(_es$data, 'TRANS_desc', 'Si quieres enviar tokens, utiliza la página "Enviar tokens" en lugar de esta. '), _defineProperty(_es$data, 'TRANS_warning', 'Si utilizas las funciones "Sólo ETH" o "Sólo ETC" estás enviando a través de un contrato. Algunos servicios tienen problemas aceptando estas transacciones. Leer más. '), _defineProperty(_es$data, 'TRANS_advanced', '+Avanzado: Añadir datos '), _defineProperty(_es$data, 'TRANS_data', 'Datos '), _defineProperty(_es$data, 'TRANS_gas', 'Límite de gas '), _defineProperty(_es$data, 'TRANS_sendInfo', 'Una transacción estándar que utiliza 21000 gas cuesta 0.000441 ETH. Utilizamos un precio de gas de 0.000000021 ETH, ligeramente por encima del mínimo, para asegurarnos de que se mina con rapidez. Nosotros no recibimos ninguna comisión por la transacción. '), _defineProperty(_es$data, 'TRANSModal_Title', 'Transacciones "Sólo ETH" y "Sólo ETC" '), _defineProperty(_es$data, 'TRANSModal_Content_0', 'Una nota sobre las distintas transacciones y servicios: '), _defineProperty(_es$data, 'TRANSModal_Content_1', '**ETH (transacción estándar): ** Esto genera una transacción predeterminada directamente de una dirección a otra. Utiliza gas predeterminado de 21000. Es probable que cualquier transacción de ETH enviada mediante este método se reproduzca (replay) en la cadena ETC. '), _defineProperty(_es$data, 'TRANSModal_Content_2', '**Sólo ETH: ** Esto envía a través del [contrato de protección contra replay de Timon Rapp (según recomienda VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) de modo que envías solamente en la cadena **ETH**. '), _defineProperty(_es$data, 'TRANSModal_Content_3', '**Sólo ETC: ** Esto envía a través del [contrato de protección contra replay de Timon Rapp (según recomienda VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) de modo que envías solamente en la cadena **ETC**. '), _defineProperty(_es$data, 'TRANSModal_Content_4', '**Coinbase y ShapeShift: ** Envía solamente utilizando transacción estándar. Si envías utilizando los contratos "Sólo ETH" o "Sólo ETC", será necesario que contactes con su equipo de soporte para que añadan manualmente el saldo o te lo devuelvan. [También puedes probar la herramienta de "split" de Shapeshift.](https://split.shapeshift.io/) '), _defineProperty(_es$data, 'TRANSModal_Content_5', '**Kraken y Poloniex:** No se conocen problemas. Usa cualquiera. '), _defineProperty(_es$data, 'TRANSModal_Yes', 'Bien, ahora lo entiendo. '), _defineProperty(_es$data, 'TRANSModal_No', 'Estoy más confundido. Ayuda, por favor. '), _defineProperty(_es$data, 'OFFLINE_Title', 'Generar y enviar transacción sin conexión '), _defineProperty(_es$data, 'OFFLINE_Desc', 'Se puede generar transacciones sin conexión en tres pasos. Debes hacer los pasos 1 y 3 en un equipo online y el paso 2 en un equipo sin conexión y aislado. Esto asegura que tus claves privadas no estén en contacto con un equipo con conexión a Internet. '), _defineProperty(_es$data, 'OFFLLINE_Step1_Title', 'Paso 1: generar información (equipo conexión) '), _defineProperty(_es$data, 'OFFLINE_Step1_Button', 'Generar información '), _defineProperty(_es$data, 'OFFLINE_Step1_Label_1', 'Dirección de origen '), _defineProperty(_es$data, 'OFFLINE_Step1_Label_2', 'Nota: Esta es la dirección de origen, no la dirección de destino. El nonce se genera desde la cuenta que origina la transacción. Si se está utilizando un equipo aislado, será la dirección de la cuenta de almacenaje en frío. '), _defineProperty(_es$data, 'OFFLINE_Step2_Title', 'Paso 2: generar transacción (equipo sin conexión) '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_1', 'Dirección de destino '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_2', 'Valor / Cantidad a enviar '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_3', 'Precio del gas '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_3b', 'Esto se ha mostrado en el Paso 1 en tu equipo con conexión. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_4', 'Límite de gas '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_4b', '21000 es el límite de gas predeterminado. Cuando envías contratos o datos adicionales, puede que esto necesite ser diferente. El gas no utilizado se te devolverá. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_5', 'Nonce '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_5b', 'Esto se indicó en el Paso 1 en tu equipo con conexión. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_6', 'Datos '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_6b', 'Opcional. Los datos se utilizan habitualmente al enviar transacciones a contratos. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_7', 'Introduce / elige tu Clave Privada / JSON. '), _defineProperty(_es$data, 'OFFLINE_Step3_Title', 'Paso 3: Enviar / Publicar transacción (con conexión) '), _defineProperty(_es$data, 'OFFLINE_Step3_Label_1', 'Pega aquí la transacción firmada del paso 2 y pulsa el botón "ENVIAR TRANSACCIÓN". '), _defineProperty(_es$data, 'DEP_generate', 'Generar Bytecode '), _defineProperty(_es$data, 'DEP_generated', 'Bytecode generado '), _defineProperty(_es$data, 'DEP_signtx', 'Firmar transacción '), _defineProperty(_es$data, 'DEP_interface', 'Interfaz generada '), _defineProperty(_es$data, 'MYWAL_Nick', 'Alias de cartera '), _defineProperty(_es$data, 'MYWAL_Address', 'Dirección de cartera '), _defineProperty(_es$data, 'MYWAL_Bal', 'Saldo '), _defineProperty(_es$data, 'MYWAL_Edit', 'Editar '), _defineProperty(_es$data, 'MYWAL_View', 'Ver '), _defineProperty(_es$data, 'MYWAL_Remove', 'Eliminar '), _defineProperty(_es$data, 'MYWAL_RemoveWal', 'Eliminar cartera: '), _defineProperty(_es$data, 'MYWAL_WatchOnly', 'Tus cuentas de sólo visualización '), _defineProperty(_es$data, 'MYWAL_Viewing', 'Viendo cartera '), _defineProperty(_es$data, 'MYWAL_Hide', 'Ocultar información de cartera '), _defineProperty(_es$data, 'MYWAL_Edit_2', 'Editar cartera '), _defineProperty(_es$data, 'MYWAL_Name', 'Nombre de la cartera '), _defineProperty(_es$data, 'MYWAL_Content_1', '¡Atención! Estás a punto de eliminar tu cartera '), _defineProperty(_es$data, 'MYWAL_Content_2', 'Asegúrate de haber **guardado tu clave privada y/o archivo almacén de clave y la contraseña** antes de eliminarlo. '), _defineProperty(_es$data, 'MYWAL_Content_3', 'Si en el futuro quieres utilizar esta cartera con MyEtherWallet CX, tendrás que volver a añadirla manualmente utilizando Clave Privada/JSON y contraseña. '), _defineProperty(_es$data, 'VIEWWALLET_Subtitle', 'Esto te permite descargar múltiples versiones de claves privadas e imprimir de nuevo tu cartera en papel. Puede que te interese hacer esto para [importar tu cuenta en Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si quieres comprobar tu saldo, recomendamos utilizar un explorador de blockchain como [etherscan.io](https://etherscan.io/). '), _defineProperty(_es$data, 'VIEWWALLET_Subtitle_Short', 'Esto te permite descargar múltiples versiones de claves privadas e imprimir de nuevo tu cartera en papel. '), _defineProperty(_es$data, 'VIEWWALLET_SuccessMsg', '¡Enhorabuena! Estos son los detalles de tu cartera. '), _defineProperty(_es$data, 'VIEWWALLET_ShowPrivKey', '(mostrar)'), _defineProperty(_es$data, 'VIEWWALLET_HidePrivKey', '(ocultar)'), _defineProperty(_es$data, 'CX_error_1', 'No tienes ninguna cartera guardada. ¡Haz clic en ["Añadir cartera"](/cx-wallet.html#add-wallet) para añadir una! '), _defineProperty(_es$data, 'CX_quicksend', 'Enviar '), _defineProperty(_es$data, 'NODE_Title', 'Configurar nodo personalizado'), _defineProperty(_es$data, 'NODE_Subtitle', 'Para conectar a un nodo local...'), _defineProperty(_es$data, 'NODE_Warning', 'Tu nodo debe ser HTTPS para poder conectar a él desde MyEtherWallet.com. Para conectarte a cualquier nodo, puedes [descargar el repositorio de MyEtherWallet y ejecutarlo localmente](https://github.com/kvhnuke/etherwallet/releases/latest). También puedes conseguir un certificado SSL gratuito a través de [Let\'s Encrypt](https://letsencrypt.org/)'), _defineProperty(_es$data, 'NODE_Name', 'Nombre del nodo'), _defineProperty(_es$data, 'NODE_Port', 'Puerto del nodo'), _defineProperty(_es$data, 'NODE_CTA', 'Guardar y usar nodo personalizado'), _defineProperty(_es$data, 'CONTRACT_Title', 'Dirección del contrato '), _defineProperty(_es$data, 'CONTRACT_Title_2', 'Seleccionar contrato existente '), _defineProperty(_es$data, 'CONTRACT_Json', 'Interfaz ABI / JSON '), _defineProperty(_es$data, 'CONTRACT_Interact_Title', 'Leer/escribir contrato '), _defineProperty(_es$data, 'CONTRACT_Interact_CTA', 'Seleccionar una función '), _defineProperty(_es$data, 'CONTRACT_ByteCode', 'Byte Code '), _defineProperty(_es$data, 'CONTRACT_Read', 'LEER '), _defineProperty(_es$data, 'CONTRACT_Write', 'ESCRIBIR '), _defineProperty(_es$data, 'SWAP_rates', "Tipos de cambio actuales "), _defineProperty(_es$data, 'SWAP_init_1', "Quiero cambiar mis "), _defineProperty(_es$data, 'SWAP_init_2', " por "), _defineProperty(_es$data, 'SWAP_init_CTA', "Continuar"), _defineProperty(_es$data, 'SWAP_information', "Tu información "), _defineProperty(_es$data, 'SWAP_send_amt', "Cantidad a enviar "), _defineProperty(_es$data, 'SWAP_rec_amt', "Cantidad a recibir "), _defineProperty(_es$data, 'SWAP_your_rate', "Tu tipo de cambio "), _defineProperty(_es$data, 'SWAP_rec_add', "Tu dirección de destino "), _defineProperty(_es$data, 'SWAP_start_CTA', "Iniciar intercambio "), _defineProperty(_es$data, 'SWAP_ref_num', "Tu número de referencia "), _defineProperty(_es$data, 'SWAP_time', "Tiempo restante para enviar "), _defineProperty(_es$data, 'SWAP_elapsed', "Time elapsed since sent "), _defineProperty(_es$data, 'SWAP_progress_1', "Pedido iniciado "), _defineProperty(_es$data, 'SWAP_progress_2', "Esperando recibir tus "), _defineProperty(_es$data, 'SWAP_progress_3', "¡Recibido! "), _defineProperty(_es$data, 'SWAP_progress_4', "Enviando tu {{orderResult.output.currency}} "), _defineProperty(_es$data, 'SWAP_progress_5', "Pedido completado "), _defineProperty(_es$data, 'SWAP_order_CTA', "Por favor, envía "), _defineProperty(_es$data, 'SWAP_unlock', "Desbloquea tu cartera para enviar ETH o tokens directamente desde esta página. "), _defineProperty(_es$data, 'MSG_message', 'Mensaje '), _defineProperty(_es$data, 'MSG_date', 'Fecha '), _defineProperty(_es$data, 'MSG_signature', 'Firma '), _defineProperty(_es$data, 'MSG_verify', 'Verificar mensaje '), _defineProperty(_es$data, 'MSG_info1', 'Incluye la fecha actual para que la firma no se pueda volver a utilizar en otra fecha. '), _defineProperty(_es$data, 'MSG_info2', 'Incluye tu apodo y dónde utilizas ese apodo para que otra persona no lo pueda utilizar. '), _defineProperty(_es$data, 'MSG_info3', 'Incluye una razón específica para el mensaje para que no se pueda volver a utilizar con otra finalidad. '), _defineProperty(_es$data, 'MNEM_1', 'Selecciona la dirección con la que deseas interactuar. '), _defineProperty(_es$data, 'MNEM_2', 'Tu mnemotécnico HD único proporciona acceso a una serie de carteras o direcciones. Por favor, elige la dirección con la que quieres interactuar ahora. '), _defineProperty(_es$data, 'MNEM_more', 'Más direcciones '), _defineProperty(_es$data, 'MNEM_prev', 'Direcciones anteriores '), _defineProperty(_es$data, 'x_Ledger', 'Ledger Wallet '), _defineProperty(_es$data, 'ADD_Ledger_1', 'Conecta tu Ledger Wallet '), _defineProperty(_es$data, 'ADD_Ledger_2', 'Inicia la aplicacin Ethereum (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_2_Exp', 'Inicia la aplicacin Expanse (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_2_Ubq', 'Inicia la aplicacin Ubiq (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_3', 'Comprueba que "Browser Support" está activado en "Settings" '), _defineProperty(_es$data, 'ADD_Ledger_4', 'Si no encuentras la opción "Browser Support" en "Settings", asegúrate de tener instalado el [Firmware >1.2](https://www.ledgerwallet.com/apps/manager) '), _defineProperty(_es$data, 'ADD_Ledger_0a', 'Volver a abrir MyEtherWallet en una conexión segura (SSL) '), _defineProperty(_es$data, 'ADD_Ledger_0b', 'Volver a abrir MyEtherWallet usando [Chrome](https://www.google.com/chrome/browser/desktop/) u [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_Ledger_scan', 'Conectar a Ledger Wallet '), _defineProperty(_es$data, 'ADD_MetaMask', 'Connectar a MetaMask '), _defineProperty(_es$data, 'x_Trezor', 'TREZOR '), _defineProperty(_es$data, 'ADD_Trezor_scan', 'Conectar a TREZOR '), _defineProperty(_es$data, 'ADD_Trezor_select', 'Esto es una semilla TREZOR '), _defineProperty(_es$data, 'x_DigitalBitbox', 'Digital Bitbox '), _defineProperty(_es$data, 'ADD_DigitalBitbox_0a', 'Volver a abrir MyEtherWallet en una conexión segura (SSL) '), _defineProperty(_es$data, 'ADD_DigitalBitbox_0b', 'Volver a abrir MyEtherWallet usando [Chrome](https://www.google.com/chrome/browser/desktop/) u [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_DigitalBitbox_scan', 'Conectar a Digital Bitbox '), _defineProperty(_es$data, 'x_Secalot', 'Secalot '), _defineProperty(_es$data, 'ADD_Secalot_0a', 'Re-open MyEtherWallet on a secure (SSL) connection '), _defineProperty(_es$data, 'ADD_Secalot_0b', 'Re-open MyEtherWallet using [Chrome](https://www.google.com/chrome/browser/desktop/) or [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_Secalot_scan', 'Connect your Secalot '), _defineProperty(_es$data, 'ERROR_0', '(error_01) Introduce una cantidad válida. Please enter a valid amount.'), _defineProperty(_es$data, 'ERROR_1', '(error_02) Tu contraseña debe tener al menos 9 caracteres. Por favor utiliza una contraseña fuerte. Your password must be at least 9 characters. Please ensure it is a strong password.'), _defineProperty(_es$data, 'ERROR_2', '(error_03) Lo sentimos. No reconocemos este tipo de archivo de cartera. Sorry! We don\'t recognize this type of wallet file.'), _defineProperty(_es$data, 'ERROR_3', '(error_04) Este no es un archivo de cartera válido. This is not a valid wallet file.'), _defineProperty(_es$data, 'ERROR_4', '(error_05) Esta unidad no existe. Por favor utiliza una de las siguientes unidades This unit doesn\'t exists, please use the one of the following units'), _defineProperty(_es$data, 'ERROR_5', '(error_06) Introduce una Dirección válida. Please enter a valid address.'), _defineProperty(_es$data, 'ERROR_6', '(error_07) Introduce una Contraseña válida. Please enter a valid password.'), _defineProperty(_es$data, 'ERROR_7', '(error_08) Introduce una Cantidad válida. (Must be integer. Try 0-18.) Please enter valid decimals (Must be an integer. Try 0-18.)'), _defineProperty(_es$data, 'ERROR_8', '(error_09) Introduce un Límite de gas válido. (Must be integer. Try 21000-4000000.) Please enter a valid gas limit (Must be an integer. Try 21000-4000000.)'), _defineProperty(_es$data, 'ERROR_9', '(error_10) Introduce un Valor de datos válido. (Must be hex.) Please enter a valid data value (Must be hex.)'), _defineProperty(_es$data, 'ERROR_10', '(error_11) Introduce una Cantidad de gas válida. (Must be integer. Try 20 GWEI / 20000000000 WEI.) Please enter a valid gas price. (Must be an integer. Try 20 GWEI / 20000000000 WEI.)'), _defineProperty(_es$data, 'ERROR_11', '(error_12) Introduce un Nonce válido. (Must be integer.) Please enter a valid nonce (Must be an integer.)'), _defineProperty(_es$data, 'ERROR_12', '(error_13) Introduce una Transacción firmada válida. Invalid signed transaction.'), _defineProperty(_es$data, 'ERROR_13', '(error_14) Ya existe una cartera con este alias. A wallet with this nickname already exists.'), _defineProperty(_es$data, 'ERROR_14', '(error_15) Cartera no encontrada. Wallet not found.'), _defineProperty(_es$data, 'ERROR_15', '(error_16) No parece que exista todavía una propuesta con este ID o hay un error al leer esta propuesta. Whoops. It doesn\'t look like a proposal with this ID exists yet or there is an error reading this proposal.'), _defineProperty(_es$data, 'ERROR_16', '(error_17) Ya hay almacenada una cartera con esta dirección. Por favor comprueba la página de carteras. A wallet with this address already exists in storage. Please check your wallets page.'), _defineProperty(_es$data, 'ERROR_17', '(error_18) Fondos no suficientes para gas * precio + valor. Es necesario tener al menos 0.01 ether en tu cuenta para cubrir el coste del gas. Añade algo de ether e inténtalo de nuevo. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'ERROR_18', '(error_19) Sería necesario utilizar todo el gas en esta transacción. Esto significa que ya has votado en esta propuesta o que el periodo de debate ha concluido. All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.'), _defineProperty(_es$data, 'ERROR_19', '(error_20) Introduce un Símbolo válido Please enter a valid symbol'), _defineProperty(_es$data, 'ERROR_20', '(error_21) No es un token ERC-20 válido Not a valid ERC-20 token'), _defineProperty(_es$data, 'ERROR_21', '(error_22) No se ha podido estimar el gas. No hay suficientes fondos en la cuenta, o el contrato de destino ha devuelto un error. Puedes ajustar el gas manualmente y continuar. Puede que el mensaje de error al enviar contenga más información. Could not estimate gas. There are not enough funds in the account, or the receiving contract address would throw an error. Feel free to manually set the gas and proceed. The error message upon sending may be more informative.'), _defineProperty(_es$data, 'ERROR_22', '(error_23) Introduce un nombre de nodo válido Please enter a valid node name'), _defineProperty(_es$data, 'ERROR_23', '(error_24) Introduce una URL válida. Si estás en HTTPS, tu URL debe ser HTTPS Please enter a valid URL. If you are on https, your URL must be https'), _defineProperty(_es$data, 'ERROR_24', '(error_25) Introduce un puerto válido Please enter a valid port.'), _defineProperty(_es$data, 'ERROR_25', '(error_26) Introduce un chain ID válido Please enter a valid chain ID.'), _defineProperty(_es$data, 'ERROR_26', '(error_27) Introduce un ABI válido Please enter a valid ABI.'), _defineProperty(_es$data, 'ERROR_27', '(error_28) Cantidad mínima 0.01 Minimum amount: 0.01. Max amount:'), _defineProperty(_es$data, 'ERROR_28', '(error_29) **Necesitas tu archivo Keystore/JSON y la contraseña** (o clave privada) para acceder a esta cartera en el futuro. Por favor ¡guárdala y respáldala externamente! No hay modo de recuperar una cartera si no la guardas. Lee la [página de ayuda](https://www.myetherwallet.com/#help) para instrucciones. You need this `Keystore File + Password` or the `Private Key` (next page) to access this wallet in the future. '), _defineProperty(_es$data, 'ERROR_29', '(error_30) Introduce un user & password válido. Please enter a valid user and password.'), _defineProperty(_es$data, 'ERROR_30', '(error_31) Introduce un name válido (7+ characters, limited punctuation) Please enter a valid name (7+ characters, limited punctuation)'), _defineProperty(_es$data, 'ERROR_31', '(error_32) Introduce un secret phrase válido. Please enter a valid secret phrase.'), _defineProperty(_es$data, 'ERROR_32', '(error_33) Could not connect to the node. Refresh your page, try a different node (upper right corner), check your firewall settings. If custom node, check your configs.Could not connect to the node. Refresh your page, try a different node (top-right corner), check your firewall settings. If custom node, check your configs.'), _defineProperty(_es$data, 'ERROR_33', '(error_34) The wallet you have unlocked does not match the owner\'s address. The wallet you have unlocked does not match the owner\'s address.'), _defineProperty(_es$data, 'ERROR_34', '(error_35) The name you are attempting to reveal does not match the name you have entered. The name you are attempting to reveal does not match the name you have entered.'), _defineProperty(_es$data, 'ERROR_35', '(error_36) Input address is not checksummed. More infoInput address is not checksummed. What does that mean?'), _defineProperty(_es$data, 'ERROR_36', '(error_37) Enter valid TX hashPlease enter a valid TX hash'), _defineProperty(_es$data, 'ERROR_37', '(error_38) Enter valid hex string (0-9, a-f)Please enter valid hex string. Hex only contains: 0x, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, a, b, c, d, e, f'), _defineProperty(_es$data, 'ERROR_38', '(error_39) Offer must have either price or reserve set to more than 0'), _defineProperty(_es$data, 'ERROR_39', '(error_40) Bid must be more than the specified minimum'), _defineProperty(_es$data, 'GETH_Balance', '(geth-01) Saldo insuficiente. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'GETH_Cheap', '(geth-02) Precio de gas demasiado bajo para aceptación. Gas price too low for acceptance. Try raising the gas price to 21 GWEI via the dropdown in top-right.'), _defineProperty(_es$data, 'GETH_GasLimit', '(geth-03) Sobrepasa el límite de gas del bloque. Exceeds block gas limit. Transaction cost exceeds current gas limit. Limit: (d+), got: (d+). Please lower the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again. [Learn More](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)'), _defineProperty(_es$data, 'GETH_InsufficientFunds', '(geth-04) Fondos no suficientes para gas * precio + valor. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'GETH_IntrinsicGas', '(geth-05) Gas intrínseco demasiado bajo. Intrinsic gas too low. Try raising the gas price to 21 GWEI via the dropdown in top-right or the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again.'), _defineProperty(_es$data, 'GETH_InvalidSender', '(geth-06) Remitente no válido. Invalid sender.'), _defineProperty(_es$data, 'GETH_NegativeValue', '(geth-07) Valor negativo. Negative value.'), _defineProperty(_es$data, 'GETH_Nonce', "(geth-08) Nonce demasiado bajo. This TX's [nonce](https://myetherwallet.github.io/knowledge-base/transactions/what-is-nonce.html) is too low. Try incrementing the nonce by pressing the Generate button again, or [replace the pending transaction](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)."), _defineProperty(_es$data, 'GETH_NonExistentAccount', '(geth-09) La cuenta no existe o tiene un saldo insuficiente. Account does not exist or account balance too low'), _defineProperty(_es$data, 'PARITY_AlreadyImported', "(parity-01) A transaction with the same hash was already imported. It was probably already broadcast. To avoid duplicate transactions, check your address on [etherscan.io](https://etherscan.io) & wait 10 minutes before attempting to send again. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_GasLimitExceeded', "(parity-02) Transaction cost exceeds current gas limit. Limit: (d+), got: (d+). Please lower the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again. [Learn More](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)"), _defineProperty(_es$data, 'PARITY_InsufficientBalance', "(parity-03) Insufficient balance. The account you tried to send transaction from does not have enough funds. If you believe this is in error, try using the 'Send Entire Balance' button, or pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_InsufficientGasPrice', "(parity-04) There is another transaction with same nonce in the queue, or the transaction fee is too low. Try incrementing the nonce by clicking the Generate button again. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_InvalidGasLimit', "(parity-05) Supplied gas limit is beyond limit. Try lowering the gas limit to 21000. [Learn More.](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)"), _defineProperty(_es$data, 'PARITY_LimitReached', "(parity-06) There are too many transactions in the queue. Your transaction was dropped due to limit. Try increasing the gas price. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_Old', "(parity-07) There is already a transaction with this [nonce](https://myetherwallet.github.io/knowledge-base/transactions/what-is-nonce.html). Try incrementing the nonce by pressing the Generate button again, or [replace the pending transaction](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)."), _defineProperty(_es$data, 'PARITY_TooCheapToReplace', "(parity-08) TX Fee is too low. It does not satisfy your node's minimal fee (minimal: (d+), got: (d+)). Try increasing the gas price and/or gas limit. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'SUCCESS_1', 'Dirección válida '), _defineProperty(_es$data, 'SUCCESS_2', 'Cartera descifrada con éxito '), _defineProperty(_es$data, 'SUCCESS_3', 'Your TX has been broadcast to the network. This does not mean it has been mined & sent. During times of extreme volume, it may take 3+ hours to send. 1) Check your TX below. 2) If it is pending for hours or disappears, use the Check TX Status Page to replace. 3) Use [ETH Gas Station](https://ethgasstation.info/) to see what gas price is optimal. 4) Save your TX Hash in case you need it later: '), _defineProperty(_es$data, 'SUCCESS_4', 'Se ha añadido tu cartera '), _defineProperty(_es$data, 'SUCCESS_5', 'Archivo seleccionado '), _defineProperty(_es$data, 'SUCCESS_6', 'You are successfully connected '), _defineProperty(_es$data, 'SUCCESS_7', 'Message Signature Verified'), _defineProperty(_es$data, 'WARN_Send_Link', 'Has llegado aquí a través de un enlace que ya tiene rellenados la dirección, cantidad, gas, campos de datos o el tipo de transacción (modo de envío). Puedes cambiar cualquier parámetro antes de enviar. Desbloquea tu cartera para comenzar. '), _defineProperty(_es$data, 'translate_version', '0.3 '), _defineProperty(_es$data, 'Translator_Desc', 'Gracias a nuestros traductores '), _defineProperty(_es$data, 'TranslatorName_1', 'Ignacio Fernández del Álamo · '), _defineProperty(_es$data, 'TranslatorAddr_1', ''), _defineProperty(_es$data, 'TranslatorName_2', 'Carlos Lizarraga Rodrigo '), _defineProperty(_es$data, 'TranslatorAddr_2', ''), _defineProperty(_es$data, 'TranslatorName_3', ''), _defineProperty(_es$data, 'TranslatorAddr_3', ''), _defineProperty(_es$data, 'TranslatorName_4', ''), _defineProperty(_es$data, 'TranslatorAddr_4', ''), _defineProperty(_es$data, 'TranslatorName_5', ''), _defineProperty(_es$data, 'TranslatorAddr_5', ''), _defineProperty(_es$data, 'HELP_Warning', 'Si creaste una cartera -o- descargaste el repositorio antes del **31 de diciembre de 2015**, por favor comprueba tus carteras y descarga una nueva versión del repositorio. Haz clic para más información. '), _defineProperty(_es$data, 'HELP_Desc', '¿Echas algo en falta? ¿Tienes alguna otra pregunta? [Contacta con nosotros](mailto:support@myetherwallet.com) y no solamente contestaremos tu pregunta, sino que mejoraremos esta página para que sea más útil en el futuro. '), _defineProperty(_es$data, 'HELP_Remind_Title', 'Algunos recordatorios '), _defineProperty(_es$data, 'HELP_Remind_Desc_1', '**Ethereum, MyEtherWallet.com y MyEtherWallet CX, así como algunas de las librerías JavaScript que utilizamos están en desarrollo activo.** Aunque hemos testeado ampliamente y decenas de miles de carteras han sido creadas exitosamente por personas en todo el planeta, siempre existe la remota posibilidad de que ocurra algo inesperado que haga que se pierdan tus ETH. Por favor no inviertas más de lo que estés dispuesto a perder y, por favor, sé cuidadoso. Si algo ocurriera, lo lamentamos, pero **no somos responsables del Ether perdido**. '), _defineProperty(_es$data, 'HELP_Remind_Desc_2', 'MyEtherWallet.com y MyEtherWallet CX no son "carteras web". No estás creando una cuenta ni nos estás entregando tus Ether para que los guardemos. Toda tu información nunca abandona tu equipo o tu navegador. Te facilitamos que puedas crear, guardar y acceder a tu información e interactuar con la blockchain. '), _defineProperty(_es$data, 'HELP_Remind_Desc_3', 'Si no guardas tu clave privada y contraseña, no hay modo alguno de recuperar el acceso a tu cartera o a los fondos que ésta contiene. ¡Haz copias de seguridad en múltiples ubicaciones físicas, no solamente en tu equipo! '), _defineProperty(_es$data, 'HELP_0_Title', '0) Soy nuevo. ¿Qué hago? '), _defineProperty(_es$data, 'HELP_0_Desc_1', 'MyEtherWallet te permite generar nuevas carteras para poder almacenar tu Ether por tu cuenta en lugar de en una casa de cambio. Este proceso tiene lugar por completo en tu equipo, no en nuestros servidores. Por lo tanto, cuando generes una nueva cartera, **eres responsable de hacer una copia de seguridad**. '), _defineProperty(_es$data, 'HELP_0_Desc_2', 'Crear una nueva cartera. '), _defineProperty(_es$data, 'HELP_0_Desc_3', 'Hacer una copia de seguridad de la cartera. '), _defineProperty(_es$data, 'HELP_0_Desc_4', 'Comprobar que tienes acceso a esta nueva cartera y has guardado correctamente toda la información necesaria. '), _defineProperty(_es$data, 'HELP_0_Desc_5', 'Transferir Ether a la nueva cartera. '), _defineProperty(_es$data, 'HELP_1_Title', '1) ¿Cómo creo una nueva cartera? '), _defineProperty(_es$data, 'HELP_1_Desc_1', 'Ir a la página "Generar cartera". '), _defineProperty(_es$data, 'HELP_1_Desc_2', 'Ir a la página "Añadir cartera" y seleccionar "Generar nueva cartera" '), _defineProperty(_es$data, 'HELP_1_Desc_3', 'Introducir una contraseña fuerte. Si crees que puedes olvidarla, guárdala en un lugar seguro. Necesitarás esta contraseña para enviar transacciones. '), _defineProperty(_es$data, 'HELP_1_Desc_4', 'Haz clic en "GENERAR". '), _defineProperty(_es$data, 'HELP_1_Desc_5', 'Ahora se ha generado tu cartera. '), _defineProperty(_es$data, 'HELP_2a_Title', '¿Cómo guardo/respaldo mi cartera? '), _defineProperty(_es$data, 'HELP_2a_Desc_1', 'Deberías siempre respaldar tu cartera externamente y en varias ubicaciones físicas (como una unidad USB o en una hoja de papel). '), _defineProperty(_es$data, 'HELP_2a_Desc_2', 'Guardar la dirección. Puedes mantenerla en privado o compartirla con otras personas. De ese modo, otras personas te podrán enviar ether. '), _defineProperty(_es$data, 'HELP_2a_Desc_3', 'Guarda las versiones de tu clave privada. No la compartas con nadie. ¡Tu clave privada es necesaria cuando quieras tener acceso a tu ether para enviarlo! Hay tres tipos de claves privadas: '), _defineProperty(_es$data, 'HELP_2a_Desc_4', 'Pon tu dirección, las versiones de la clave privada y la versión PDF de tu cartera en papel en una carpeta. Guárdala en tu equipo y en una unidad USB. '), _defineProperty(_es$data, 'HELP_2a_Desc_5', 'Imprime la cartera si dispones de impresora. En caso contrario, escribe tu clave privada y tu dirección en una hoja de papel. Almacénalas en un lugar seguro y separado de tu equipo y de la unidad USB. '), _defineProperty(_es$data, 'HELP_2a_Desc_6', 'Recuerda, debes evitar la pérdida de las claves y la contraseña frente a una pérdida o fallo en tu unidad de disco duro, unidad USB u hoja de papel. Debes tener en cuenta también la posibilidad de pérdida o daño en una zona amplia (piensa en un incendio o una inundación). '), _defineProperty(_es$data, 'HELP_2b_Title', '2b) ¿Cómo almaceno con seguridad/sin conexión/en frío con MyEtherWallet? '), _defineProperty(_es$data, 'HELP_2b_Desc_1', 'Ve a nuestro github: [https://github.com/kvhnuke/etherwallet/releases/latest](https://github.com/kvhnuke/etherwallet/releases/latest). '), _defineProperty(_es$data, 'HELP_2b_Desc_2', 'Haz clic en `etherwallet-vX.X.X.X.zip` en la parte inferior. '), _defineProperty(_es$data, 'HELP_2b_Desc_3', 'Mueve el ZIP a un equipo aislado de internet (airgapped). '), _defineProperty(_es$data, 'HELP_2b_Desc_4', 'Descomprímelo y haz doble clic en `index.html`. '), _defineProperty(_es$data, 'HELP_2b_Desc_5', 'Genera una cartera con una contraseña fuerte. '), _defineProperty(_es$data, 'HELP_2b_Desc_6', 'Guarda la dirección. Guarda versiones de la clave privaa. Guarda la contraseña si crees que es posible que no la recuerdes siempre en el futuro.. '), _defineProperty(_es$data, 'HELP_2b_Desc_7', 'Almacena los papeles / USBs en múltiples ubicaciones separadas físicamente. '), _defineProperty(_es$data, 'HELP_2b_Desc_8', 'Ve a la página "Ver Información de las Carteras" y teclea to clave privada / contraseña para asegurarte de que son correctos y puedes acceder a tu cartera. Comprueba que la dirección que has escrito coincide. '), _defineProperty(_es$data, 'HELP_3_Title', '3) ¿Cómo verifico que tengo acceso a mi nueva cartera? '), _defineProperty(_es$data, 'HELP_3_Desc_1', '**Antes de enviar ether a tu nueva cartera,** deberías asegurarte de que tienes acceso a ésta. '), _defineProperty(_es$data, 'HELP_3_Desc_2', 'Ve a la página "Ver Información de las Carteras". '), _defineProperty(_es$data, 'HELP_3_Desc_3', 'Ve a la página "Ver Información de las Carteras" de MyEtherWallet.com. '), _defineProperty(_es$data, 'HELP_3_Desc_4', 'Selecciona tu archivo de cartera -o- tu clave privada y desloquea tu cartera. '), _defineProperty(_es$data, 'HELP_3_Desc_5', 'Si la cartera está cifrada aparecerá automáticamente una caja de texto. Introduce la contraseña. '), _defineProperty(_es$data, 'HELP_3_Desc_6', 'Haz clic en el botón "Desbloquear cartera". '), _defineProperty(_es$data, 'HELP_3_Desc_7', 'Debería mostrarse la información de tu cartera. Puedes encontrar la dirección de tu cuenta al lado de un icono circular de colores. Este icono es una representación visual de tu dirección. Asegúrate de que esta dirección coincide con la dirección que has guardado en tu archivo de texto y con la que está en tu cartera de papel. '), _defineProperty(_es$data, 'HELP_3_Desc_8', 'Si planeas guardar una cantidad elevada de ether, te recomendamos que primero envíes una cantidad pequeña de ether desde tu nueva cartera antes de ingresar una cantidad elevada. Envía 0.001 ether a tu nueva cartera, accede a tu cartera, envía los 0.001 ether desde tu cartera a otra dirección y asegúrate de que todo funciona bien. '), _defineProperty(_es$data, 'HELP_4_Title', '4) ¿Cómo envío ether de una cartera a otra? '), _defineProperty(_es$data, 'HELP_4_Desc_1', 'Si planeas mover una gran cantidad de ether, deberías probar primero a enviar una pequeña cantidad a tu cartera para asegurarte de que todo funciona según lo esperado. '), _defineProperty(_es$data, 'HELP_4_Desc_2', 'Ve a la página "Enviar Ether y Tokens". '), _defineProperty(_es$data, 'HELP_4_Desc_3', 'Selecciona tu archivo de cartera -o- tu clave privada y desbloquea tu cartera. '), _defineProperty(_es$data, 'HELP_4_Desc_4', 'Si la cartera está cifrada aparecerá automáticamente una caja de texto. Introduce la contraseña. '), _defineProperty(_es$data, 'HELP_4_Desc_5', 'Haz clic en el botón "Desbloquear cartera". '), _defineProperty(_es$data, 'HELP_4_Desc_6', 'Introduce la dirección a la que deseas enviar ether en el campo "Dirección de destino:". '), _defineProperty(_es$data, 'HELP_4_Desc_7', 'Introduce la cantidad que deseas enviar. También puedes hacer clic en "Enviar todo el saldo" si quieres enviar todo el saldo de la cartera. '), _defineProperty(_es$data, 'HELP_4_Desc_9', 'Haz clic en "Generar transacción". '), _defineProperty(_es$data, 'HELP_4_Desc_10', 'Aparecerán dos campos más. Esto es tu navegador generando la transacción. '), _defineProperty(_es$data, 'HELP_4_Desc_11', 'Haz clic en el botón azul "Enviar transacción" que está inmediatamente debajo. '), _defineProperty(_es$data, 'HELP_4_Desc_12', 'Aparecerá un cuadro emergente. Verifica que la cantidad y la dirección a la que estás enviando son correctos. Entonces, haz clic en el botón "Sí, estoy seguro. Hacer la transacción.". '), _defineProperty(_es$data, 'HELP_4_Desc_13', 'Se enviará la transacción y se mostrará el ID de transacción. Puedes hacer clic en el ID de transacción para verla en la cadena de bloques. '), _defineProperty(_es$data, 'HELP_4CX_Title', '4) ¿Cómo envío ether utilizando MyEtherWallet CX? '), _defineProperty(_es$data, 'HELP_4CX_Desc_1', 'Antes de nada, necesitas añadir una cartera. Una vez hecho, tienes dos opciones: la función "Enviar" del icono de la extensión de Chrome o la página "Enviar Ether y Tokens". '), _defineProperty(_es$data, 'HELP_4CX_Desc_2', 'Envío: '), _defineProperty(_es$data, 'HELP_4CX_Desc_3', 'Haz clic en el icono de la extensión de Chrome. '), _defineProperty(_es$data, 'HELP_4CX_Desc_4', 'Haz clic en el botón Click the "Enviar" button. '), _defineProperty(_es$data, 'HELP_4CX_Desc_5', 'Elige la cartera desde la que quieres enviar. '), _defineProperty(_es$data, 'HELP_4CX_Desc_6', 'Introduce la dirección a la que deseas enviar en el campo "Dirección de destino:". '), _defineProperty(_es$data, 'HELP_4CX_Desc_7', 'Introduce la cantidad que deseas enviar. También puedes hacer clic en "Enviar todo el saldo" si quieres enviar todo el saldo de la cartera. '), _defineProperty(_es$data, 'HELP_4CX_Desc_8', 'Haz clic en "Enviar transacción". '), _defineProperty(_es$data, 'HELP_4CX_Desc_9', 'Comprueba que la dirección y la cantidad que estás enviando son correctos. '), _defineProperty(_es$data, 'HELP_4CX_Desc_10', 'Introduce la contraseña para la cartera. '), _defineProperty(_es$data, 'HELP_4CX_Desc_11', 'Haz clic en "Enviar transacción". '), _defineProperty(_es$data, 'HELP_4CX_Desc_12', 'Utilizando la página "Enviar Ether y Tokens" '), _defineProperty(_es$data, 'HELP_5_Title', '5) ¿Cómo ejecuto MyEtherWallet.com sin conexión/localmente? '), _defineProperty(_es$data, 'HELP_5_Desc_1', 'Puedes ejecutar MyEtherWallet.com en tu equipo en lugar de desde los servidores de GitHub. Puedes generar una cartera totalmente sin conexión y enviar transacciones desde la página "Transacción sin conexión". '), _defineProperty(_es$data, 'HELP_5_Desc_7', 'MyEtherWallet.com is now running entirely on your computer. '), _defineProperty(_es$data, 'HELP_5_Desc_8', 'Por si no tienes costumbre, es necesario guardar la carpeta completa para ejecutar la página web, no solamente `index.html`. No modifiques ni muevas nada dentro de la carpeta. Si estás guardando una copia del repositorio MyEtherWallet para el futuro, recomendamos guardar únicamente el fichero ZIP para poder estar seguro de que el contenido permanezca intacto. '), _defineProperty(_es$data, 'HELP_5_Desc_9', 'Debido a que estamos constantemente actualizando MyEtherWallet.com, recomendamos que actualices periódicamente tu versión guardada del repositorio. '), _defineProperty(_es$data, 'HELP_5CX_Title', '5) ¿Cómo puedo instalar esta extensión desde el repositorio en lugar de desde la Chrome Store? '), _defineProperty(_es$data, 'HELP_5CX_Desc_2', 'Click on `chrome-extension-vX.X.X.X.zip` and unzip it. '), _defineProperty(_es$data, 'HELP_5CX_Desc_3', 'Go to Google Chrome and find you settings (in the menu in the upper right). '), _defineProperty(_es$data, 'HELP_5CX_Desc_4', 'Click "Extensions" on the left. '), _defineProperty(_es$data, 'HELP_5CX_Desc_5', 'Check the "Developer Mode" button at the top of that page. '), _defineProperty(_es$data, 'HELP_5CX_Desc_6', 'Click the "Load unpacked extension..." button. '), _defineProperty(_es$data, 'HELP_5CX_Desc_7', 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select". '), _defineProperty(_es$data, 'HELP_5CX_Desc_8', 'The extension should now show up in your extensions and in your Chrome Extension bar. '), _defineProperty(_es$data, 'HELP_7_Title', '7) ¿Cómo envío tokens y añado tokens personalizados? '), _defineProperty(_es$data, 'HELP_7_Desc_0', '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token. '), _defineProperty(_es$data, 'HELP_7_Desc_1', 'Navigate to the "Enviar ether y tokens" page. '), _defineProperty(_es$data, 'HELP_7_Desc_2', 'Desbloquea tu cartera. '), _defineProperty(_es$data, 'HELP_7_Desc_3', 'Enter the address you would like to send to in the "To Address:" field. '), _defineProperty(_es$data, 'HELP_7_Desc_4', 'Enter the amount you would like to send. '), _defineProperty(_es$data, 'HELP_7_Desc_5', 'Select which token you would like to send. '), _defineProperty(_es$data, 'HELP_7_Desc_6', 'If you do not see the token listed: '), _defineProperty(_es$data, 'HELP_7_Desc_7', 'Click "Custom". '), _defineProperty(_es$data, 'HELP_7_Desc_8', 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist. '), _defineProperty(_es$data, 'HELP_7_Desc_9', 'Click "Save". '), _defineProperty(_es$data, 'HELP_7_Desc_10', 'You can now send that token as well as see it\'s balance in the sidebar. '), _defineProperty(_es$data, 'HELP_7_Desc_11', 'Click "Generate Transaction". '), _defineProperty(_es$data, 'HELP_7_Desc_12', 'A couple more fields will appear. This is your browser generating the transaction. '), _defineProperty(_es$data, 'HELP_7_Desc_13', 'Click the blue "Send Transaction" button below that. '), _defineProperty(_es$data, 'HELP_7_Desc_14', 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button. '), _defineProperty(_es$data, 'HELP_7_Desc_15', 'The transaction will be submitted. The TX Hash will display. You can click that TX Hash to see it on the blockchain. '), _defineProperty(_es$data, 'HELP_8_Title', '8) ¿Qué ocurre si vuestro sitio web deja de funcionar? '), _defineProperty(_es$data, 'HELP_8_Desc_1', 'MyEtherWallet no es una cartera web. No tienes un login y nunca se graba nada en nuestros servidores. You don\'t have a login and nothing ever gets saved to our servers. Simplemente es una interfaz que te permite interactuar con la cadena de bloques. '), _defineProperty(_es$data, 'HELP_8_Desc_2', 'Si MyEtherWallet.com desapareciera, tendrías que encontrar otra manera de poder hacer lo que haces con nosotros (como por ejemplo obtener geth o Ethereum Wallet / Mist). Pero no necesitarías retirar tus ether de MyEtherWallet porque no están en MyEtherWallet. Están en la cartera que hayas generado a través de nuestro sitio. '), _defineProperty(_es$data, 'HELP_8_Desc_3', 'Puedes importar tu clave privada sin cifrar y tus archivos en formato Geth/Mist (cifrados) directamente en geth / Ethereum Wallet / Mist con mucha facilidad actualmente. Ver más abajo la pregunta #12. '), _defineProperty(_es$data, 'HELP_8_Desc_4', 'Además, la probabilidad de que cerremos MyEtherWallet es casi nula. No nos cuesta prácticamente nada mantenerlo ya que no almacenamos ninguna información. Si borramos el dominio, continúa estando disponible y siempre lo estará en [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puedes descargar desde ahí el archivo ZIP y ejecutarlo localmente. '), _defineProperty(_es$data, 'HELP_8CX_Title', '8) ¿Qué ocurre si MyEtherWallet CX desaparece? '), _defineProperty(_es$data, 'HELP_8CX_Desc_1', 'En primer lugar, los datos se guardan en tu equipo, no en nuestros servidores. Sabemos que puede parecer confuso, pero si miras nuestra extensión de Chrome, NO estás mirando a algo almacenado en nuestros servidores en alguna parte - todo se guarda en tu equipo. '), _defineProperty(_es$data, 'HELP_8CX_Desc_2', 'Dicho esto, es **muy importante** que respaldes toda tu información para todas las nuevas carteras generadas con MyEtherWallet CX. De este modo, si algo le ocurre a MyEtherWallet CX o a tu equipo, seguirás teniendo toda la información necesaria para poder acceder a tus ether. Ver la pregunta #2a sobre cómo respaldar tus carteras. '), _defineProperty(_es$data, 'HELP_8CX_Desc_3', 'Si por algún motivo MyEtherWallet CX desaparece de Chrome Store, puedes encontrar el código fuente en Github y cargarlo manualmente. Ver #5 más arriba. '), _defineProperty(_es$data, 'HELP_9_Title', '9) Is the "Enviar ether y tokens" page offline? '), _defineProperty(_es$data, 'HELP_9_Desc_1', 'No. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times. '), _defineProperty(_es$data, 'HELP_10_Title', '10) ¿Cómo hago una transacción sin conexión? '), _defineProperty(_es$data, 'HELP_10_Desc_1', 'Navigate to the "Offline Transaction" page via your online computer. '), _defineProperty(_es$data, 'HELP_10_Desc_2', 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price. '), _defineProperty(_es$data, 'HELP_10_Desc_3', 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send. '), _defineProperty(_es$data, 'HELP_10_Desc_4', 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1. '), _defineProperty(_es$data, 'HELP_10_Desc_5', 'Enter the "NONCE" as it was displayed to you on your online computer in step #1. '), _defineProperty(_es$data, 'HELP_10_Desc_6', 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you. '), _defineProperty(_es$data, 'HELP_10_Desc_7', 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format. '), _defineProperty(_es$data, 'HELP_10_Desc_8', 'Select your wallet file -or- your private key and unlock your wallet. '), _defineProperty(_es$data, 'HELP_10_Desc_9', 'Press the "GENERATE SIGNED TRANSACTION" button. '), _defineProperty(_es$data, 'HELP_10_Desc_10', 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. '), _defineProperty(_es$data, 'HELP_10_Desc_11', 'On your online computer, paste the signed transaction into the text field in step #3 and click "Enviar Ether y Tokens". This will broadcast your transaction. '), _defineProperty(_es$data, 'HELP_12_Title', '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist? '), _defineProperty(_es$data, 'HELP_12_Desc_1', 'Using an Geth/Mist JSON file from MyEtherWallet v2+.... '), _defineProperty(_es$data, 'HELP_12_Desc_2', 'Go to the "View Wallet Info" page. '), _defineProperty(_es$data, 'HELP_12_Desc_3', 'Unlock your wallet using your **encrypted** private key or JSON file. '), _defineProperty(_es$data, 'HELP_12_Desc_4', 'Go to the "My Wallets" page. '), _defineProperty(_es$data, 'HELP_12_Desc_5', 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. '), _defineProperty(_es$data, 'HELP_12_Desc_6', 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file. '), _defineProperty(_es$data, 'HELP_12_Desc_7', 'Open the Ethereum Wallet application. '), _defineProperty(_es$data, 'HELP_12_Desc_8', 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts" '), _defineProperty(_es$data, 'HELP_12_Desc_9', 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder. '), _defineProperty(_es$data, 'HELP_12_Desc_10', 'Your account should show up immediately under "Accounts." '), _defineProperty(_es$data, 'HELP_12_Desc_11', 'Using your unencrypted private key... '), _defineProperty(_es$data, 'HELP_12_Desc_12', 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page. '), _defineProperty(_es$data, 'HELP_12_Desc_13', 'Select your wallet file -or- enter/paste your private key to unlock your wallet. '), _defineProperty(_es$data, 'HELP_12_Desc_14', 'Copy Your Private Key (unencrypted). '), _defineProperty(_es$data, 'HELP_12_Desc_15', 'If you are on a Mac: '), _defineProperty(_es$data, 'HELP_12_Desc_15b', 'If you are on a PC: '), _defineProperty(_es$data, 'HELP_12_Desc_16', 'Open Text Edit and paste this private key. '), _defineProperty(_es$data, 'HELP_12_Desc_17', 'Go to the menu bar and click "Format" -> "Make Plain Text". '), _defineProperty(_es$data, 'HELP_12_Desc_18', 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog. '), _defineProperty(_es$data, 'HELP_12_Desc_19', 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_20', 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. '), _defineProperty(_es$data, 'HELP_12_Desc_21', 'After successful import, delete `nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_22', 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". '), _defineProperty(_es$data, 'HELP_12_Desc_23', 'Open Notepad & paste the private key '), _defineProperty(_es$data, 'HELP_12_Desc_24', 'Save the file as `nothing_special_delete_me.txt` at `C:` '), _defineProperty(_es$data, 'HELP_12_Desc_25', 'Run the command, `geth account import C:\\nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_26', 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. '), _defineProperty(_es$data, 'HELP_12_Desc_27', 'After successful import, delete `nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_28', 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". '), _defineProperty(_es$data, 'HELP_13_Title', '13) What does "Insufficient funds. Account you try to send transaction from does not have enough funds. Required XXXXXXXXXXXXXXXXXXX and got: XXXXXXXXXXXXXXXX." Mean? '), _defineProperty(_es$data, 'HELP_13_Desc_1', 'This means you do not have enough Ether in your account to cover the cost of gas. Each transaction (including token and contract transactions) require gas and that gas is paid in Ether. The number displayed is the amount required to cover the cost of the transaction in Wei. Take that number, divide by `1000000000000000000`, and subtract the amount of Ether you were trying to send (if you were attempting to send Ether). This will give you the amount of Ether you need to send to that account to make the transaction. '), _defineProperty(_es$data, 'HELP_14_Title', '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe? '), _defineProperty(_es$data, 'HELP_14_Desc_1', 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto). '), _defineProperty(_es$data, 'HELP_15_Title', '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan) '), _defineProperty(_es$data, 'HELP_15_Desc_1', 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it. '), _defineProperty(_es$data, 'HELP_16_Title', '16) How do I check the balance of my account? '), _defineProperty(_es$data, 'HELP_16_Desc_1', 'You can use a blockchain explorer like [etherscan.io](https://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](https://etherscan.io/address/0xDECAF9CD2367cdbb726E904cD6397eDFcAe6068D) looks like on etherscan.io '), _defineProperty(_es$data, 'HELP_17_Title', '17) Why isn\'t my balance showing up when I unlock my wallet? '), _defineProperty(_es$data, 'HELP_17_Desc_1', 'This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io '), _defineProperty(_es$data, 'HELP_18_Title', '18) Where is my geth wallet file? '), _defineProperty(_es$data, 'HELP_19_Title', '19) Where is my Mist wallet file? '), _defineProperty(_es$data, 'HELP_19_Desc_1', 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored. '), _defineProperty(_es$data, 'HELP_20_Title', '20) Where is my pre-sale wallet file? '), _defineProperty(_es$data, 'HELP_20_Desc_1', 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale. '), _defineProperty(_es$data, 'HELP_21_Title', '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? '), _defineProperty(_es$data, 'HELP_21_Desc_1', 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no. '), _defineProperty(_es$data, 'HELP_21_Desc_2', 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts. '), _defineProperty(_es$data, 'HELP_21_Desc_3', 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems. '), _defineProperty(_es$data, 'HELP_21_Desc_4', 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password. '), _defineProperty(_es$data, 'HELP_21_Desc_5', 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match. '), _defineProperty(_es$data, 'HELP_21_Desc_6', 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion. '), _defineProperty(_es$data, 'HELP_21_Desc_7', '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space. '), _defineProperty(_es$data, 'HELP_21_Desc_8', 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day. '), _defineProperty(_es$data, 'HELP_SecCX_Title', 'Seguridad - MyEtherWallet CX '), _defineProperty(_es$data, 'HELP_SecCX_Desc_1', '¿Dónde está guardando mi información esta extensión? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_2', 'La información que guardas en esta extensión de Chrome se guarda por medio de [chrome.storage](http://chrome.storage/). - este es el mismo lugar en el que se guardan tus contraseñas cuando guardas tus contraseñas en Chrome. '), _defineProperty(_es$data, 'HELP_SecCX_Desc_3', '¿Qué información se guarda? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_4', 'La dirección, alias y clave privada se guardan en chrome.storage. La clave privada se cifra utilizando la contraseña que introdujiste al añadir la cartra. El alias y la dirección de la cartera no están cifrados. '), _defineProperty(_es$data, 'HELP_SecCX_Desc_5', '¿Por qué no se cifran el alias y la dirección de la cartera? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_6', 'Si cifráramos estos ítems, sería necesario que introduzcas una contraseña cada vez que quisieras comprobar el saldo de tu cuenta o vizualizar los alias. Si esto te preocupa, te recomendamos que utilices MyEtherWallet.com en lugar de esta extensión de Chrome. '), _defineProperty(_es$data, 'HELP_Sec_Title', 'Seguridad '), _defineProperty(_es$data, 'HELP_Sec_Desc_1', 'Si una de tus primeras preguntas es "¿Por qué debería confiar en estas personas?, se trata de algo bueno. Esperamos que lo que sigue te sirva de ayuda para disminuir tus preocupaciones. '), _defineProperty(_es$data, 'HELP_Sec_Desc_2', 'Hemos estado funcionando desde agosto de 2015. Si buscas ["myetherwallet" en reddit](https://www.reddit.com/search?q=myetherwallet), puedes encontrar numerosas personas que nos utilizan con gran éxito. '), _defineProperty(_es$data, 'HELP_Sec_Desc_3', 'No vamos a quitarte tu dinero ni a robar tus claves privadas. No hay código malicioso en este sitio. De hecho, las páginas "Generar Cartera" se ejecutan por completo en el cliente. Esto significa que todo el código se ejecuta en ** tu ordenador** y nunca se graba o se transmite a ningún lugar. '), _defineProperty(_es$data, 'HELP_Sec_Desc_4', 'Comprueba la URL -- Este sitio se sirve a través de GitHub y puedes ver el código fuente aquí: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) a [https://www.myetherwallet.com](https://www.myetherwallet.com). '), _defineProperty(_es$data, 'HELP_Sec_Desc_5', 'Para generar carteras, puedes descargar el [código fuente](https://github.com/kvhnuke/etherwallet/releases/latest). Ver #5 más arriba. '), _defineProperty(_es$data, 'HELP_Sec_Desc_6', 'Haz una prueba y observa qué actividad de red ocurre. La manera más fácil de hacer esto es hacer clic con el botón derecho en la página y hacer clic en "inspeccionar elemento". Ve a la pestaña "Red". Genera una cartera de prueba. Verás que no hay actividad de red. Puede que veas algo que aparece como data:image/gif y data:image/png. Se trata de los códigos QR generándose en tu ordenador y por tu ordenador. No se ha transferido ni un solo byte. '), _defineProperty(_es$data, 'HELP_Sec_Desc_8', 'Si no te encuentras cómodo utilizando esta herramienta, no la utilices bajo ningún concepto. Hemos creado esta herramienta como una manera útil para que la gente pueda generar carteras y hacer transacciones sin tener que utilizar la línea de comandos o ejecutar un nodo completo. De nuevo, por favor contáctanos si tienes inquietudes y responderemos lo más pronto posible. ¡Gracias! '), _defineProperty(_es$data, 'HELP_FAQ_Title', 'Más respuestas útiles a preguntas frecuentes '), _defineProperty(_es$data, 'HELP_Contact_Title', 'Maneras de contactar con nosotros'), _es$data); + ONBOARD_welcome_title: 'Bienvenido a MyEtherWallet.com', + ONBOARD_welcome_content__1: 'Tómese su tiempo para entender esto por su propia seguridad. 🙏', + ONBOARD_welcome_content__2: 'Sus fondos serán robados si no hace caso de estas advertencias.', + ONBOARD_welcome_content__3: 'Sabemos que este clic es algo molesto. Lo sentimos.', + ONBOARD_welcome_content__4: '¿Qué es MEW? ', + ONBOARD_welcome_content__5: 'MyEtherWallet es una interfaz gratuita, de código abierto, del lado del cliente.', + ONBOARD_welcome_content__6: 'Te permitimos interactuar directamente con la cadena de bloques mientras permaneces en control total de tus teclas & tus fondos', + ONBOARD_welcome_content__7: '**Usted** y **solo usted** son responsables de su seguridad.', + ONBOARD_welcome_content__8: 'No podemos recuperar sus fondos ni congelar su cuenta si visita un sitio de phishing o pierde su clave privada.', + ONBOARD_bank_title: 'MyEtherWallet no es un banco', + ONBOARD_bank_content__1: 'Cuando abre una cuenta en un banco o exchange, crean una cuenta para usted en su sistema.', + ONBOARD_bank_content__2: 'El banco realiza un seguimiento de su información personal, contraseñas de cuenta, saldos, transacciones y, en última instancia, su dinero.', + ONBOARD_bank_content__3: 'El banco cobra tarifas para administrar su cuenta y proporcionar servicios, como el reembolso de transacciones cuando le roban su tarjeta.', + ONBOARD_bank_content__4: 'El banco le permite escribir un cheque o cargar su tarjeta de débito para enviar dinero, conectarse a Internet para verificar su saldo, restablecer su contraseña y obtener una nueva tarjeta de débito si la pierde.', + ONBOARD_bank_content__5: 'Usted tiene una cuenta *con el banco o exchange* y ellos deciden cuánto dinero puede enviar, dónde puede enviarlo y cuánto tiempo puede conservar un depósito sospechoso. Todo por una comisión.', + ONBOARD_welcome_title__alt: 'Introducción', + ONBOARD_interface_title: 'MyEtherWallet es una Interfaz', + ONBOARD_interface_content__1: 'Cuando crea una cuenta en MyEtherWallet está generando un conjunto criptográfico de números: su clave privada y su clave pública (dirección).', + ONBOARD_interface_content__2: 'El manejo de sus llaves ocurre completamente en su computadora, dentro de su navegador.', + ONBOARD_interface_content__3: 'Nunca transmitimos, recibimos ni almacenamos su clave privada, contraseña u otra información de cuenta.', + ONBOARD_interface_content__4: 'No cobramos una comisión de transacción.', + ONBOARD_interface_content__5: 'Simplemente está utilizando nuestra **interfaz** para interactuar **directamente con la cadena de bloques**.', + ONBOARD_interface_content__6: 'Si envía su *clave pública (dirección)* a alguien, pueden enviarle ETH o tokens. 👍', + ONBOARD_interface_content__7: 'Si envía su *clave privada* a alguien, ahora tiene el control total de su cuenta. 👎', + ONBOARD_bank_title__alt: 'MEW no es un banco', + ONBOARD_blockchain_title__alt: '¿Qué es una Blockchain?', + ONBOARD_blockchain_skip: 'Ya sé lo que es una cadena de bloques...', + ONBOARD_blockchain_title: 'Espera, ¿Qué es una Blockchain?', + ONBOARD_blockchain_content__1: 'El blockchain es como una gran hoja de cálculo global descentralizada.', + ONBOARD_blockchain_content__2: 'Realiza un seguimiento de quién envió cuántas monedas a quién, y cuál es el saldo de cada cuenta.', + ONBOARD_blockchain_content__3: 'Es almacenado y mantenido por miles de personas (mineros) en todo el mundo que tienen computadoras especiales.', + ONBOARD_blockchain_content__4: 'Los bloques en el blockchain se componen de todas las transacciones individuales enviadas desde MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity y en cualquier otro lugar.', + ONBOARD_blockchain_content__5: 'Cuando vea su saldo en MyEtherWallet.com o vea sus transacciones en [etherscan.io] (https://etherscan.io), verá datos en la cadena de bloques, no en nuestros sistemas personales.', + ONBOARD_blockchain_content__6: 'De nuevo: **no somos un banco**.', + ONBOARD_interface_title__alt: 'MEW es una Interfaz', + ONBOARD_why_title__alt: 'Pero ... ¿por qué importa esto?', + ONBOARD_why_title: '¿Por qué me haces leer todo esto?', + ONBOARD_why_content__1: 'Porque necesitamos que entiendas que **no podemos** ...', + ONBOARD_why_content__2: 'Acceder a tu cuenta o enviar sus fondos por usted X.', + ONBOARD_why_content__3: 'Recupere o cambie su clave privada.', + ONBOARD_why_content__4: 'Recupera o restablece tu contraseña.', + ONBOARD_why_content__5: 'Invertir, cancelar o reembolsar transacciones.', + ONBOARD_why_content__6: 'Congelar cuentas.', + ONBOARD_why_content__7: '**Usted** y **solo usted** son responsables de su seguridad.', + ONBOARD_why_content__8: 'Sea diligente para mantener su clave privada y contraseña seguras. A veces, su clave privada se denomina frase mnemotécnica, archivo de almacén de claves, archivo UTC, archivo JSON, archivo de cartera.', + ONBOARD_why_content__9: 'Si pierde su clave privada o contraseña, nadie puede recuperarla.', + ONBOARD_why_content__10: 'Si ingresa su clave privada en un sitio web de phishing, tendrá **todos sus fondos tomados**.' +}, _defineProperty(_es$data, 'ONBOARD_blockchain_title__alt', '¿Qué es una Blockchain?'), _defineProperty(_es$data, 'ONBOARD_point_title__alt', '¿De qué sirve MEW entonces?'), _defineProperty(_es$data, 'ONBOARD_whymew_title', 'Si MyEtherWallet no puede hacer esas cosas, ¿para qyé sirve?'), _defineProperty(_es$data, 'ONBOARD_whymew_content__1', 'Porque ese es el punto de la descentralización y la cadena de bloques.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__2', 'No tiene que depender de su banco, gobierno u otra persona cuando desee mover sus fondos.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__3', 'No tiene que depender de la seguridad de un exchange o banco para mantener sus fondos seguros.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__4', 'Si no encuentras estas cosas valiosas, pregúntate por qué crees que las cadenas de bloques y las criptomonedas son valiosas.😉'), _defineProperty(_es$data, 'ONBOARD_whymew_content__5', 'Si no te gusta como suena esto, considera usar [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__6', 'Si tiene miedo pero quiere usar MEW, [consiga una billetera de hardware](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.'), _defineProperty(_es$data, 'ONBOARD_why_title__alt', 'Pero.. ¿por qué?'), _defineProperty(_es$data, 'ONBOARD_secure_title', 'Cómo protegerse y proteger sus fondos'), _defineProperty(_es$data, 'ONBOARD_secure_1_title', 'Cómo protegerse de los phishers'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__1', 'Phishers le envía un mensaje con un enlace a un sitio web que se parece a MyEtherWallet, EtherDelta, Paypal o a su banco, pero no es el sitio web real. Le roban su información y luego le roban su dinero.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__2', 'Instala [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__3', 'Siempre revisa la URL: `https://www.myetherwallet.com`.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__4', 'Siempre asegúrese de que la barra de URL tenga `MYETHERWALLET INC` en verde.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__5', 'No confíe en los mensajes o enlaces que se le envían al azar por correo electrónico, Slack, Reddit, Twitter, etc.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__6', 'Siempre navegue directamente a un sitio antes de ingresar información. No ingrese información después de hacer clic en un enlace de un mensaje o correo electrónico.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__7', '[Instala un AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).'), _defineProperty(_es$data, 'ONBOARD_point_title__alt_2', '¿Para qué sirve?'), _defineProperty(_es$data, 'ONBOARD_secure_2_title', 'Cómo protegerse de las estafas'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__1', 'La gente intentará conseguir que les des dinero a cambio de nada.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__2', 'Si es demasiado bueno para ser verdad, probablemente lo sea.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__3', 'Investigue antes de enviar dinero a alguien o algún proyecto. Busque información en una variedad de sitios web y foros. Sé cauteloso.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__4', 'Haga preguntas cuando no entiende algo o no parece correcto.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__5', 'No permita que el miedo, el FUD o el FOMO ganen al sentido común. Si algo es muy urgente, pregúntese "¿por qué?". Puede ser para crear FOMO o evitar que investigue.'), _defineProperty(_es$data, 'ONBOARD_secure_3_title__alt', 'Phuck Phishers'), _defineProperty(_es$data, 'ONBOARD_secure_3_title', 'Cómo protegerse de la pérdida'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__1', 'Si pierde su clave privada o contraseña, se perderá para siempre. No lo pierdas'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__2', 'Haga una copia de seguridad de su clave privada y contraseña. NO lo guarde solo en su computadora. Imprima en un pedazo de papel o guárdelo en un dispositivo USB.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__3', 'Guarde este papel o unidad USB en una ubicación física diferente. Una copia de seguridad no es útil si es destruida por un incendio o una inundación junto con su computadora portátil.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__4', 'No almacene su clave privada en Dropbox, Google Drive u otro almacenamiento en la nube. Si esa cuenta se ve comprometida, sus fondos serán robados.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__5', 'Si tiene más de 1 semana de valor de criptomoneda, obtenga una billetera de hardware. No hay excusas. Vale la pena. Lo prometo.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__6', '[¡Aún más consejos de seguridad!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)'), _defineProperty(_es$data, 'ONBOARD_secure_2_title__alt_2', 'Timo estafas'), _defineProperty(_es$data, 'ONBOARD_final_title__alt', '¡Un clic más y listo! 🤘'), _defineProperty(_es$data, 'ONBOARD_final_title', 'Muy bien, ¡ya terminé de sermonearte!'), _defineProperty(_es$data, 'ONBOARD_final_subtitle', 'Perdón por ser así. ¡Adelante!'), _defineProperty(_es$data, 'ONBOARD_final_content__1', 'Crear una billetera'), _defineProperty(_es$data, 'ONBOARD_final_content__2', 'Obtener una billetera hardware'), _defineProperty(_es$data, 'ONBOARD_final_content__3', 'Cómo configurar MEW + MetaMask'), _defineProperty(_es$data, 'ONBOARD_final_content__4', 'Cómo ejecutar MEW Offline / Locally'), _defineProperty(_es$data, 'ONBOARD_final_content__5', 'Cómo enviar a través deLedger hardware wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__6', 'Cómo enviar a través de TREZOR hardware wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__7', 'Cómo enviar a través de MetaMask'), _defineProperty(_es$data, 'ONBOARD_final_content__8', 'Conozca más o contáctenos'), _defineProperty(_es$data, 'ONBOARD_final_content__9', 'OMG, please just let me send FFS.'), _defineProperty(_es$data, 'ONBOARD_resume', 'Parece que no terminaste de leer estas diapositivas la última vez. Consejo: termine de leer las diapositivas 😉'), _defineProperty(_es$data, 'x_CancelReplaceTx', 'Cancelar o reemplazar transacción'), _defineProperty(_es$data, 'x_CancelTx', 'Cancelar transacción'), _defineProperty(_es$data, 'x_PasswordDesc', 'Esta contraseña * encripta * tu clave privada. Esto no es una semilla para generar tus claves. **Necesitarás esta contraseña + tu clave privada para desbloquear tu cartera.**'), _defineProperty(_es$data, 'x_ReadMore', 'Leer más'), _defineProperty(_es$data, 'x_ReplaceTx', 'Reemplazar transacción'), _defineProperty(_es$data, 'x_TransHash', 'Hash de la transacción'), _defineProperty(_es$data, 'x_TXFee', 'TX Fee'), _defineProperty(_es$data, 'x_TxHash', 'TX Hash'), _defineProperty(_es$data, 'NAV_CheckTxStatus', 'Comprobar estado de transacción'), _defineProperty(_es$data, 'NAV_TxStatus', 'Estado de transacción'), _defineProperty(_es$data, 'tx_Details', 'Detalles de la transacción'), _defineProperty(_es$data, 'tx_Summary', 'En momentos de alto volumen (como por ejemplo durante las ICOs) las transacciones pueden quedarse pendientes durante horas o incluso días. Esta herramienta te proporciona la posibilidad de encontrar y "cancelar" / reemplazar estas transacciones. ** Esto es algo que normalmente no puedes hacer. No se debe confiar en esta herramienta. Solamente funcionará cuando los pools de transacciones estén llenos. [Por favor, lee más sobre esta herramienta aquí.](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)**'), _defineProperty(_es$data, 'tx_notFound', 'Transacción no encontrada'), _defineProperty(_es$data, 'tx_notFound_1', 'Esta transacción no se puede encontrar en el pool de transacciones del nodo al que estás conectado.'), _defineProperty(_es$data, 'tx_notFound_2', 'Si acabas de enviar la transacción, por favor espera 15 segundos y pulsa de nuevo el botón "Comprobar estado de transacción". '), _defineProperty(_es$data, 'tx_notFound_3', 'Podría encontrarse todavía en el pool de transacciones de otro nodo diferente, esperando ser minado.'), _defineProperty(_es$data, 'tx_notFound_4', 'Por favor usa el desplegable en la parte superior derecha y selecciona un nodo ETH diferente (ej. `ETH (Etherscan.io)` o `ETH (Infura.io)` o `ETH (MyEtherWallet)`) y comprueba de nuevo.'), _defineProperty(_es$data, 'tx_foundInPending', 'Transacción pendiente encontrada'), _defineProperty(_es$data, 'tx_foundInPending_1', 'Tu transacción se ha encontrado en el pool de transacciones del nodo al que te encuentras conectado. '), _defineProperty(_es$data, 'tx_foundInPending_2', 'Actualmente está pendiente (esperando ser minada). '), _defineProperty(_es$data, 'tx_foundInPending_3', 'Existe la posibilidad de que puedas "cancelar" o reemplazar esta transacción. Desbloquea tu cartera debajo.'), _defineProperty(_es$data, 'tx_FoundOnChain', 'Transacción encontrada'), _defineProperty(_es$data, 'tx_FoundOnChain_1', 'Tu transacción ha sido minada con éxito y se encuentra en la cadena de bloques.'), _defineProperty(_es$data, 'tx_FoundOnChain_2', '**If you see a red `( ! )`, a `BAD INSTRUCTION` or `OUT OF GAS` error message**, it means that the transaction was not successfully *sent*. You cannot cancel or replace this transaction. Instead, send a new transaction. If you received an "Out of Gas" error, you should double the gas limit you specified originally.'), _defineProperty(_es$data, 'tx_FoundOnChain_3', '**If you do not see any errors, your transaction was successfully sent.** Your ETH or Tokens are where you sent them. If you cannot see this ETH or Tokens credited in your other wallet / exchange account, and it has been 24+ hours since you sent, please [contact that service](https://myetherwallet.github.io/knowledge-base/diving-deeper/ethereum-list-of-support-and-communities.html). Send them the *link* to your transaction and ask them, nicely, to look into your situation.'), _defineProperty(_es$data, 'GEN_Help_1', 'Usa tu'), _defineProperty(_es$data, 'GEN_Help_2', 'para acceder a tu cuenta.'), _defineProperty(_es$data, 'GEN_Help_3', 'Tu dispositivo * is * tu cartera.'), _defineProperty(_es$data, 'GEN_Help_4', 'Guías y FAQ'), _defineProperty(_es$data, 'GEN_Help_5', 'Cómo crear una cartera'), _defineProperty(_es$data, 'GEN_Help_6', 'Empezando'), _defineProperty(_es$data, 'GEN_Help_7', 'Manténgalo seguro · Haga una copia de seguridad · No lo comparta con nadie · No lo pierda · No se puede recuperar si lo pierde.'), _defineProperty(_es$data, 'GEN_Help_8', 'No descarga un archivo?'), _defineProperty(_es$data, 'GEN_Help_9', 'Intenta utilizando Google Chrome '), _defineProperty(_es$data, 'GEN_Help_10', 'Haga clic derecho y guarde el archivo como. Nombre del archivo: '), _defineProperty(_es$data, 'GEN_Help_11', 'No abras este archivo en tu computadora '), _defineProperty(_es$data, 'GEN_Help_12', 'Úselo para desbloquear su billetera a través de MyEtherWallet (o Mist, Geth, Parity y otros clientes de billetera). '), _defineProperty(_es$data, 'GEN_Help_13', 'Cómo hacer una copia de seguridad de su archivo de Keystore '), _defineProperty(_es$data, 'GEN_Help_14', '¿Qué son estos diferentes formatos? '), _defineProperty(_es$data, 'GEN_Help_15', 'Evitando la pérdida o robo de tus fondos.'), _defineProperty(_es$data, 'GEN_Help_16', '¿Qué son estos diferentes formatos?'), _defineProperty(_es$data, 'GEN_Help_17', '¿Por qué debería?'), _defineProperty(_es$data, 'GEN_Help_18', 'Para tener una copia de seguridad secundaria.'), _defineProperty(_es$data, 'GEN_Help_19', 'En caso de que olvide su contraseña.'), _defineProperty(_es$data, 'GEN_Help_20', 'Almacenamiento en frio'), _defineProperty(_es$data, 'GET_ConfButton', 'Entiendo. Continuar.'), _defineProperty(_es$data, 'GEN_Label_5', 'Guarde su `clave privada`.'), _defineProperty(_es$data, 'GEN_Unlock', 'Desbloquea tu cartera para ver tu dirección'), _defineProperty(_es$data, 'GAS_PRICE_Desc', 'El precio del gas es la cantidad que paga por unidad de gas. `Tarifa de TX = precio de gas * límite de gas` y se paga a los mineros por incluir su TX en un bloque. Mayor el precio del gas = transacción más rápida, pero más costosa. El valor predeterminado es `41 GWEI`.'), _defineProperty(_es$data, 'GAS_LIMIT_Desc', 'El límite de gas es la cantidad de gas a enviar con su TX. `Tarifa de TX` = precio de gas * límite de gas y se paga a los mineros por incluir su TX en un bloque. Al aumentar este número, tu TX no se extrae más rápido. Enviando ETH = `21000`. Envío de Tokens = ~ `200000`.'), _defineProperty(_es$data, 'NONCE_Desc', 'El nonce es el número de transacciones enviadas desde una dirección determinada. Asegura que las transacciones se envíen en orden y no más de una vez.'), _defineProperty(_es$data, 'TXFEE_Desc', 'La tarifa de TX se paga a los mineros por incluir su TX en un bloque. Es el `límite de gas` * `precio del gas`. [Puede convertir GWEI -> ETH aquí](https://www.myetherwallet.com/helpers.html)'), _defineProperty(_es$data, 'NAV_AddWallet', 'Añadir cartera '), _defineProperty(_es$data, 'NAV_BulkGenerate', 'Generar en masa '), _defineProperty(_es$data, 'NAV_Contact', 'Contacto '), _defineProperty(_es$data, 'NAV_Contracts', 'Contratos '), _defineProperty(_es$data, 'NAV_DeployContract', 'Desplegar contrato '), _defineProperty(_es$data, 'NAV_ENS', 'ENS'), _defineProperty(_es$data, 'NAV_GenerateWallet_alt', 'Nueva cartera '), _defineProperty(_es$data, 'NAV_GenerateWallet', 'Generar cartera '), _defineProperty(_es$data, 'NAV_Help', 'Ayuda '), _defineProperty(_es$data, 'NAV_InteractContract', 'Interactuar con un contrato '), _defineProperty(_es$data, 'NAV_Multisig', 'Multifirma '), _defineProperty(_es$data, 'NAV_MyWallets', 'Mis carteras '), _defineProperty(_es$data, 'NAV_Offline', 'Enviar sin conexión '), _defineProperty(_es$data, 'NAV_SendEther', 'Enviar ether y tokens '), _defineProperty(_es$data, 'NAV_SendTokens', 'Enviar tokens '), _defineProperty(_es$data, 'NAV_SignMsg', 'Firmar mensaje '), _defineProperty(_es$data, 'NAV_Swap', 'Intercambiar '), _defineProperty(_es$data, 'NAV_ViewWallet', 'Ver información de las carteras '), _defineProperty(_es$data, 'NAV_YourWallets', 'Tus carteras '), _defineProperty(_es$data, 'x_Access', 'Access '), _defineProperty(_es$data, 'x_AddessDesc', 'Tu dirección también se conoce como tu `número de cuenta` o tu `clave pública`. Es lo que compartes con otras personas para que te puedan enviar Ether o tokens. Busca el icono de colores de tu dirección. Asegúrate de que coincide con tu cartera de papel y siempre que introduzcas tu dirección en cualquier sitio. Puedes pensar en esto como tu "número de cuenta" o tu "clave pública". Es lo que le das a la gente para que te puedan enviar ether. Ese icono es una forma fácil de reconocer tu dirección. '), _defineProperty(_es$data, 'x_Address', 'Tu dirección '), _defineProperty(_es$data, 'x_Cancel', 'Cancelar '), _defineProperty(_es$data, 'x_CSV', 'Archivo CSV (sin encriptar) '), _defineProperty(_es$data, 'x_Download', 'Descargar '), _defineProperty(_es$data, 'x_Json', 'Archivo JSON (sin encriptar) '), _defineProperty(_es$data, 'x_JsonDesc', 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu archivo JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña. '), _defineProperty(_es$data, 'x_Keystore', 'Archivo Keystore (UTC / JSON · Recomendado · Encriptado) '), _defineProperty(_es$data, 'x_Keystore2', 'Archivo Keystore (UTC / JSON) '), _defineProperty(_es$data, 'x_KeystoreDesc', 'Este archivo Keystore/JSON concuerda con el formato usado por Mist para una fácil importación en el futuro. Es el archivo recomendado para descargar y guardar como copia de seguridad. '), _defineProperty(_es$data, 'x_MetaMask', 'MetaMask / Mist '), _defineProperty(_es$data, 'x_Mnemonic', 'Frase mnemotécnica '), _defineProperty(_es$data, 'x_ParityPhrase', 'Frase de Parity '), _defineProperty(_es$data, 'x_Password', 'Contraseña '), _defineProperty(_es$data, 'x_Print', 'Imprimir Cartera de Papel '), _defineProperty(_es$data, 'x_PrintDesc', 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora! '), _defineProperty(_es$data, 'x_PrintShort', 'Imprimir '), _defineProperty(_es$data, 'x_PrivKey', 'Clave Privada (sin encriptar) '), _defineProperty(_es$data, 'x_PrivKey2', 'Clave Privada '), _defineProperty(_es$data, 'x_PrivKeyDesc', 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas. '), _defineProperty(_es$data, 'x_Save', 'Guardar '), _defineProperty(_es$data, 'x_TXT', 'Archivo TXT (sin encriptar) '), _defineProperty(_es$data, 'x_Wallet', 'Cartera '), _defineProperty(_es$data, 'MEW_Warning_1', 'Comprueba siempre la URL antes de acceder a tu cartera o crear una cartera nueva. ¡Ten cuidado con los sitios falsos (phishing)! '), _defineProperty(_es$data, 'CX_Warning_1', 'Asegúrate de tener **copias de seguridad externas** de cualquier cartera que almacenes aquí. Pueden ocurrir muchas cosas que te hagan perder los datos de esta extensión de Chrome; esto incluye desinstalar y volver a instalar la extensión. Esta extensión es un modo de acceder fácilmente a tus carteras, **no** una manera de respaldarlas. '), _defineProperty(_es$data, 'MEW_Tagline', 'Cartera Ether JavaScript de código abierto ejecutado en el cliente '), _defineProperty(_es$data, 'CX_Tagline', 'Cartera Ether JavaScript de código abierto ejecutado en el cliente extensión Chrome '), _defineProperty(_es$data, 'FOOTER_1', 'Una herramienta de código abierto JavaScript que se ejecuta en el lado del cliente, para generar carteras y enviar transacciones Ethereum. '), _defineProperty(_es$data, 'FOOTER_1b', 'Creado por '), _defineProperty(_es$data, 'FOOTER_2', 'Se agradecen las donaciones: '), _defineProperty(_es$data, 'FOOTER_3', 'Generación de carteras en el cliente por '), _defineProperty(_es$data, 'FOOTER_4', 'Renuncia de responsabilidad '), _defineProperty(_es$data, 'sidebar_AccountInfo', 'Información de la cuenta '), _defineProperty(_es$data, 'sidebar_AccountAddr', 'Dirección de la cuenta '), _defineProperty(_es$data, 'sidebar_AccountBal', 'Saldo de la cuenta '), _defineProperty(_es$data, 'sidebar_TokenBal', 'Saldos de tokens '), _defineProperty(_es$data, 'sidebar_Equiv', 'Valores equivalentes '), _defineProperty(_es$data, 'sidebar_TransHistory', 'Historial de transacciones '), _defineProperty(_es$data, 'sidebar_donation', 'MyEtherWallet es un servicio gratuito y de código abierto dedicado a tu privacidad y seguridad. Cuantas más donaciones recibimos, más tiempo dedicamos creando nuevas características, escuchando vuestros comentarios y proporcionando lo que queréis. Sólo somos dos personas intentando cambiar el mundo. ¿Nos ayudas? '), _defineProperty(_es$data, 'sidebar_donate', 'Donar '), _defineProperty(_es$data, 'sidebar_thanks', '¡¡¡GRACIAS!!! '), _defineProperty(_es$data, 'sidebar_DisplayOnTrezor', 'Mostrar dirección en TREZOR'), _defineProperty(_es$data, 'sidebar_DisplayOnLedger', 'Mostrar dirección en Ledger'), _defineProperty(_es$data, 'decrypt_Access', '¿Cómo te gustaría acceder a tu cartera? '), _defineProperty(_es$data, 'decrypt_Title', 'Elige el formato de tu clave privada: '), _defineProperty(_es$data, 'decrypt_Select', 'Elige una cartera: '), _defineProperty(_es$data, 'ADD_Label_1', '¿Qué quieres hacer? '), _defineProperty(_es$data, 'ADD_Radio_1', 'Generar nueva cartera '), _defineProperty(_es$data, 'ADD_Radio_2', 'Elige tu archivo de cartera (Keystore / JSON) '), _defineProperty(_es$data, 'ADD_Radio_2_alt', 'Elige tu archivo de cartera '), _defineProperty(_es$data, 'ADD_Radio_2_short', 'ELIGE ARCHIVO DE CARTERA... '), _defineProperty(_es$data, 'ADD_Radio_3', 'Pega o escribe tu clave privada '), _defineProperty(_es$data, 'ADD_Radio_4', 'Añade una cuenta para supervisar '), _defineProperty(_es$data, 'ADD_Radio_5', 'Pega o escribe tu mnemotécnico '), _defineProperty(_es$data, 'ADD_Radio_5_Path', 'Elige la ruta de derivación HD '), _defineProperty(_es$data, 'ADD_Radio_5_woTrezor', '(Jaxx, Metamask, Exodus, imToken)'), _defineProperty(_es$data, 'ADD_Radio_5_withTrezor', '(Jaxx, Metamask, Exodus, imToken, TREZOR)'), _defineProperty(_es$data, 'ADD_Radio_5_PathAlternative', '(Ledger)'), _defineProperty(_es$data, 'ADD_Radio_5_PathTrezor', '(TREZOR)'), _defineProperty(_es$data, 'ADD_Radio_5_PathCustom', 'Personalizado'), _defineProperty(_es$data, 'ADD_Label_2', 'Crear un alias: '), _defineProperty(_es$data, 'ADD_Label_3', 'Tu cartera está encriptada. Introduce tu contraseña '), _defineProperty(_es$data, 'ADD_Label_4', 'Añade una cuenta para supervisar '), _defineProperty(_es$data, 'ADD_Warning_1', 'Puedes añadir una cuenta para supervisar en la pestaña de carteras sin cargar una clave privada. Esto ** no ** significa que tengas acceso a la cartera, ni puedes transferir ether desde ésta. '), _defineProperty(_es$data, 'ADD_Label_5', 'Introduce la dirección '), _defineProperty(_es$data, 'ADD_Label_6', 'Desbloquea tu cartera '), _defineProperty(_es$data, 'ADD_Label_6_short', 'Desbloquear '), _defineProperty(_es$data, 'ADD_Label_7', 'Añadir cuenta '), _defineProperty(_es$data, 'ADD_Label_8', 'Contraseña (opcional): '), _defineProperty(_es$data, 'GEN_desc', 'Si quieres generar varias carteras, puedes hacerlo aquí '), _defineProperty(_es$data, 'GEN_Label_1', 'Introduce una contraseña fuerte (mínimo 9 caracteres) '), _defineProperty(_es$data, 'GEN_Placeholder_1', '¡NO olvides guardar esto! '), _defineProperty(_es$data, 'GEN_SuccessMsg', '¡Enhorabuena! Se ha generado tu cartera. '), _defineProperty(_es$data, 'GEN_Label_2', 'Guarda tu Keystore. No olvides tu contraseña. '), _defineProperty(_es$data, 'GEN_Label_3', 'Guarda tu dirección. '), _defineProperty(_es$data, 'GEN_Label_4', 'Opcional: Imprime tu cartera en papel o guarda una versión en código QR. '), _defineProperty(_es$data, 'BULK_Label_1', 'Cantidad de carteras a generar '), _defineProperty(_es$data, 'BULK_Label_2', 'Generar carteras '), _defineProperty(_es$data, 'BULK_SuccessMsg', '¡Enhorabuena! Se han generado tus carteras. '), _defineProperty(_es$data, 'SEND_addr', 'Dirección de destino '), _defineProperty(_es$data, 'SEND_amount', 'Cantidad a enviar '), _defineProperty(_es$data, 'SEND_amount_short', 'Cantidad '), _defineProperty(_es$data, 'SEND_custom', 'Personalizado '), _defineProperty(_es$data, 'SEND_gas', 'Gas '), _defineProperty(_es$data, 'SEND_TransferTotal', 'Enviar todo el saldo '), _defineProperty(_es$data, 'SEND_generate', 'Generar transacción '), _defineProperty(_es$data, 'SEND_raw', 'Transacción en bruto '), _defineProperty(_es$data, 'SEND_signed', 'Transacción firmada '), _defineProperty(_es$data, 'SEND_trans', 'Enviar transacción '), _defineProperty(_es$data, 'SEND_custom', 'Añadir token personalizado '), _defineProperty(_es$data, 'SENDModal_Title', '¡Atención! '), _defineProperty(_es$data, 'SENDModal_Content_1', 'Vas a enviar '), _defineProperty(_es$data, 'SENDModal_Content_2', 'a la dirección '), _defineProperty(_es$data, 'SENDModal_Content_3', '¿Estás seguro de que quieres hacer esto? '), _defineProperty(_es$data, 'SENDModal_Content_4', 'NOTA: Si recibes un error, es muy probable que necesites añadir ether a tu cuenta para cubrir el coste en gas de enviar tokens. Gas se paga en ether. '), _defineProperty(_es$data, 'SENDModal_No', 'No, sácame de aquí. '), _defineProperty(_es$data, 'SENDModal_Yes', 'Sí, estoy seguro. Hacer la transacción. '), _defineProperty(_es$data, 'TOKEN_Addr', 'Token Contact Dirección '), _defineProperty(_es$data, 'TOKEN_Symbol', 'Símbolo del token '), _defineProperty(_es$data, 'TOKEN_Dec', 'Decimales '), _defineProperty(_es$data, 'TOKEN_hide', 'Ocultar tokens '), _defineProperty(_es$data, 'TOKEN_show', 'Mostrar todos los tokens '), _defineProperty(_es$data, 'TRANS_desc', 'Si quieres enviar tokens, utiliza la página "Enviar tokens" en lugar de esta. '), _defineProperty(_es$data, 'TRANS_warning', 'Si utilizas las funciones "Sólo ETH" o "Sólo ETC" estás enviando a través de un contrato. Algunos servicios tienen problemas aceptando estas transacciones. Leer más. '), _defineProperty(_es$data, 'TRANS_advanced', '+Avanzado: Añadir datos '), _defineProperty(_es$data, 'TRANS_data', 'Datos '), _defineProperty(_es$data, 'TRANS_gas', 'Límite de gas '), _defineProperty(_es$data, 'TRANS_sendInfo', 'Una transacción estándar que utiliza 21000 gas cuesta 0.000441 ETH. Utilizamos un precio de gas de 0.000000021 ETH, ligeramente por encima del mínimo, para asegurarnos de que se mina con rapidez. Nosotros no recibimos ninguna comisión por la transacción. '), _defineProperty(_es$data, 'TRANSModal_Title', 'Transacciones "Sólo ETH" y "Sólo ETC" '), _defineProperty(_es$data, 'TRANSModal_Content_0', 'Una nota sobre las distintas transacciones y servicios: '), _defineProperty(_es$data, 'TRANSModal_Content_1', '**ETH (transacción estándar): ** Esto genera una transacción predeterminada directamente de una dirección a otra. Utiliza gas predeterminado de 21000. Es probable que cualquier transacción de ETH enviada mediante este método se reproduzca (replay) en la cadena ETC. '), _defineProperty(_es$data, 'TRANSModal_Content_2', '**Sólo ETH: ** Esto envía a través del [contrato de protección contra replay de Timon Rapp (según recomienda VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) de modo que envías solamente en la cadena **ETH**. '), _defineProperty(_es$data, 'TRANSModal_Content_3', '**Sólo ETC: ** Esto envía a través del [contrato de protección contra replay de Timon Rapp (según recomienda VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) de modo que envías solamente en la cadena **ETC**. '), _defineProperty(_es$data, 'TRANSModal_Content_4', '**Coinbase y ShapeShift: ** Envía solamente utilizando transacción estándar. Si envías utilizando los contratos "Sólo ETH" o "Sólo ETC", será necesario que contactes con su equipo de soporte para que añadan manualmente el saldo o te lo devuelvan. [También puedes probar la herramienta de "split" de Shapeshift.](https://split.shapeshift.io/) '), _defineProperty(_es$data, 'TRANSModal_Content_5', '**Kraken y Poloniex:** No se conocen problemas. Usa cualquiera. '), _defineProperty(_es$data, 'TRANSModal_Yes', 'Bien, ahora lo entiendo. '), _defineProperty(_es$data, 'TRANSModal_No', 'Estoy más confundido. Ayuda, por favor. '), _defineProperty(_es$data, 'OFFLINE_Title', 'Generar y enviar transacción sin conexión '), _defineProperty(_es$data, 'OFFLINE_Desc', 'Se puede generar transacciones sin conexión en tres pasos. Debes hacer los pasos 1 y 3 en un equipo online y el paso 2 en un equipo sin conexión y aislado. Esto asegura que tus claves privadas no estén en contacto con un equipo con conexión a Internet. '), _defineProperty(_es$data, 'OFFLLINE_Step1_Title', 'Paso 1: generar información (equipo conexión) '), _defineProperty(_es$data, 'OFFLINE_Step1_Button', 'Generar información '), _defineProperty(_es$data, 'OFFLINE_Step1_Label_1', 'Dirección de origen '), _defineProperty(_es$data, 'OFFLINE_Step1_Label_2', 'Nota: Esta es la dirección de origen, no la dirección de destino. El nonce se genera desde la cuenta que origina la transacción. Si se está utilizando un equipo aislado, será la dirección de la cuenta de almacenaje en frío. '), _defineProperty(_es$data, 'OFFLINE_Step2_Title', 'Paso 2: generar transacción (equipo sin conexión) '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_1', 'Dirección de destino '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_2', 'Valor / Cantidad a enviar '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_3', 'Precio del gas '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_3b', 'Esto se ha mostrado en el Paso 1 en tu equipo con conexión. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_4', 'Límite de gas '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_4b', '21000 es el límite de gas predeterminado. Cuando envías contratos o datos adicionales, puede que esto necesite ser diferente. El gas no utilizado se te devolverá. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_5', 'Nonce '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_5b', 'Esto se indicó en el Paso 1 en tu equipo con conexión. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_6', 'Datos '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_6b', 'Opcional. Los datos se utilizan habitualmente al enviar transacciones a contratos. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_7', 'Introduce / elige tu Clave Privada / JSON. '), _defineProperty(_es$data, 'OFFLINE_Step3_Title', 'Paso 3: Enviar / Publicar transacción (con conexión) '), _defineProperty(_es$data, 'OFFLINE_Step3_Label_1', 'Pega aquí la transacción firmada del paso 2 y pulsa el botón "ENVIAR TRANSACCIÓN". '), _defineProperty(_es$data, 'DEP_generate', 'Generar Bytecode '), _defineProperty(_es$data, 'DEP_generated', 'Bytecode generado '), _defineProperty(_es$data, 'DEP_signtx', 'Firmar transacción '), _defineProperty(_es$data, 'DEP_interface', 'Interfaz generada '), _defineProperty(_es$data, 'MYWAL_Nick', 'Alias de cartera '), _defineProperty(_es$data, 'MYWAL_Address', 'Dirección de cartera '), _defineProperty(_es$data, 'MYWAL_Bal', 'Saldo '), _defineProperty(_es$data, 'MYWAL_Edit', 'Editar '), _defineProperty(_es$data, 'MYWAL_View', 'Ver '), _defineProperty(_es$data, 'MYWAL_Remove', 'Eliminar '), _defineProperty(_es$data, 'MYWAL_RemoveWal', 'Eliminar cartera: '), _defineProperty(_es$data, 'MYWAL_WatchOnly', 'Tus cuentas de sólo visualización '), _defineProperty(_es$data, 'MYWAL_Viewing', 'Viendo cartera '), _defineProperty(_es$data, 'MYWAL_Hide', 'Ocultar información de cartera '), _defineProperty(_es$data, 'MYWAL_Edit_2', 'Editar cartera '), _defineProperty(_es$data, 'MYWAL_Name', 'Nombre de la cartera '), _defineProperty(_es$data, 'MYWAL_Content_1', '¡Atención! Estás a punto de eliminar tu cartera '), _defineProperty(_es$data, 'MYWAL_Content_2', 'Asegúrate de haber **guardado tu clave privada y/o archivo almacén de clave y la contraseña** antes de eliminarlo. '), _defineProperty(_es$data, 'MYWAL_Content_3', 'Si en el futuro quieres utilizar esta cartera con MyEtherWallet CX, tendrás que volver a añadirla manualmente utilizando Clave Privada/JSON y contraseña. '), _defineProperty(_es$data, 'VIEWWALLET_Subtitle', 'Esto te permite descargar múltiples versiones de claves privadas e imprimir de nuevo tu cartera en papel. Puede que te interese hacer esto para [importar tu cuenta en Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si quieres comprobar tu saldo, recomendamos utilizar un explorador de blockchain como [etherscan.io](https://etherscan.io/). '), _defineProperty(_es$data, 'VIEWWALLET_Subtitle_Short', 'Esto te permite descargar múltiples versiones de claves privadas e imprimir de nuevo tu cartera en papel. '), _defineProperty(_es$data, 'VIEWWALLET_SuccessMsg', '¡Enhorabuena! Estos son los detalles de tu cartera. '), _defineProperty(_es$data, 'VIEWWALLET_ShowPrivKey', '(mostrar)'), _defineProperty(_es$data, 'VIEWWALLET_HidePrivKey', '(ocultar)'), _defineProperty(_es$data, 'CX_error_1', 'No tienes ninguna cartera guardada. ¡Haz clic en ["Añadir cartera"](/cx-wallet.html#add-wallet) para añadir una! '), _defineProperty(_es$data, 'CX_quicksend', 'Enviar '), _defineProperty(_es$data, 'NODE_Title', 'Configurar nodo personalizado'), _defineProperty(_es$data, 'NODE_Subtitle', 'Para conectar a un nodo local...'), _defineProperty(_es$data, 'NODE_Warning', 'Tu nodo debe ser HTTPS para poder conectar a él desde MyEtherWallet.com. Para conectarte a cualquier nodo, puedes [descargar el repositorio de MyEtherWallet y ejecutarlo localmente](https://github.com/kvhnuke/etherwallet/releases/latest). También puedes conseguir un certificado SSL gratuito a través de [Let\'s Encrypt](https://letsencrypt.org/)'), _defineProperty(_es$data, 'NODE_Name', 'Nombre del nodo'), _defineProperty(_es$data, 'NODE_Port', 'Puerto del nodo'), _defineProperty(_es$data, 'NODE_CTA', 'Guardar y usar nodo personalizado'), _defineProperty(_es$data, 'CONTRACT_Title', 'Dirección del contrato '), _defineProperty(_es$data, 'CONTRACT_Title_2', 'Seleccionar contrato existente '), _defineProperty(_es$data, 'CONTRACT_Json', 'Interfaz ABI / JSON '), _defineProperty(_es$data, 'CONTRACT_Interact_Title', 'Leer/escribir contrato '), _defineProperty(_es$data, 'CONTRACT_Interact_CTA', 'Seleccionar una función '), _defineProperty(_es$data, 'CONTRACT_ByteCode', 'Byte Code '), _defineProperty(_es$data, 'CONTRACT_Read', 'LEER '), _defineProperty(_es$data, 'CONTRACT_Write', 'ESCRIBIR '), _defineProperty(_es$data, 'SWAP_rates', "Tipos de cambio actuales "), _defineProperty(_es$data, 'SWAP_init_1', "Quiero cambiar mis "), _defineProperty(_es$data, 'SWAP_init_2', " por "), _defineProperty(_es$data, 'SWAP_init_CTA', "Continuar"), _defineProperty(_es$data, 'SWAP_information', "Tu información "), _defineProperty(_es$data, 'SWAP_send_amt', "Cantidad a enviar "), _defineProperty(_es$data, 'SWAP_rec_amt', "Cantidad a recibir "), _defineProperty(_es$data, 'SWAP_your_rate', "Tu tipo de cambio "), _defineProperty(_es$data, 'SWAP_rec_add', "Tu dirección de destino "), _defineProperty(_es$data, 'SWAP_start_CTA', "Iniciar intercambio "), _defineProperty(_es$data, 'SWAP_ref_num', "Tu número de referencia "), _defineProperty(_es$data, 'SWAP_time', "Tiempo restante para enviar "), _defineProperty(_es$data, 'SWAP_elapsed', "Time elapsed since sent "), _defineProperty(_es$data, 'SWAP_progress_1', "Pedido iniciado "), _defineProperty(_es$data, 'SWAP_progress_2', "Esperando recibir tus "), _defineProperty(_es$data, 'SWAP_progress_3', "¡Recibido! "), _defineProperty(_es$data, 'SWAP_progress_4', "Enviando tu {{orderResult.output.currency}} "), _defineProperty(_es$data, 'SWAP_progress_5', "Pedido completado "), _defineProperty(_es$data, 'SWAP_order_CTA', "Por favor, envía "), _defineProperty(_es$data, 'SWAP_unlock', "Desbloquea tu cartera para enviar ETH o tokens directamente desde esta página. "), _defineProperty(_es$data, 'MSG_message', 'Mensaje '), _defineProperty(_es$data, 'MSG_date', 'Fecha '), _defineProperty(_es$data, 'MSG_signature', 'Firma '), _defineProperty(_es$data, 'MSG_verify', 'Verificar mensaje '), _defineProperty(_es$data, 'MSG_info1', 'Incluye la fecha actual para que la firma no se pueda volver a utilizar en otra fecha. '), _defineProperty(_es$data, 'MSG_info2', 'Incluye tu apodo y dónde utilizas ese apodo para que otra persona no lo pueda utilizar. '), _defineProperty(_es$data, 'MSG_info3', 'Incluye una razón específica para el mensaje para que no se pueda volver a utilizar con otra finalidad. '), _defineProperty(_es$data, 'MNEM_1', 'Selecciona la dirección con la que deseas interactuar. '), _defineProperty(_es$data, 'MNEM_2', 'Tu mnemotécnico HD único proporciona acceso a una serie de carteras o direcciones. Por favor, elige la dirección con la que quieres interactuar ahora. '), _defineProperty(_es$data, 'MNEM_more', 'Más direcciones '), _defineProperty(_es$data, 'MNEM_prev', 'Direcciones anteriores '), _defineProperty(_es$data, 'x_Ledger', 'Ledger Wallet '), _defineProperty(_es$data, 'ADD_Ledger_1', 'Conecta tu Ledger Wallet '), _defineProperty(_es$data, 'ADD_Ledger_2', 'Inicia la aplicacin Ethereum (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_2_Exp', 'Inicia la aplicacin Expanse (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_2_Ubq', 'Inicia la aplicacin Ubiq (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_3', 'Comprueba que "Browser Support" está activado en "Settings" '), _defineProperty(_es$data, 'ADD_Ledger_4', 'Si no encuentras la opción "Browser Support" en "Settings", asegúrate de tener instalado el [Firmware >1.2](https://www.ledgerwallet.com/apps/manager) '), _defineProperty(_es$data, 'ADD_Ledger_0a', 'Volver a abrir MyEtherWallet en una conexión segura (SSL) '), _defineProperty(_es$data, 'ADD_Ledger_0b', 'Volver a abrir MyEtherWallet usando [Chrome](https://www.google.com/chrome/browser/desktop/) u [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_Ledger_scan', 'Conectar a Ledger Wallet '), _defineProperty(_es$data, 'ADD_MetaMask', 'Connectar a MetaMask '), _defineProperty(_es$data, 'x_Trezor', 'TREZOR '), _defineProperty(_es$data, 'ADD_Trezor_scan', 'Conectar a TREZOR '), _defineProperty(_es$data, 'ADD_Trezor_select', 'Esto es una semilla TREZOR '), _defineProperty(_es$data, 'x_DigitalBitbox', 'Digital Bitbox '), _defineProperty(_es$data, 'ADD_DigitalBitbox_0a', 'Volver a abrir MyEtherWallet en una conexión segura (SSL) '), _defineProperty(_es$data, 'ADD_DigitalBitbox_0b', 'Volver a abrir MyEtherWallet usando [Chrome](https://www.google.com/chrome/browser/desktop/) u [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_DigitalBitbox_scan', 'Conectar a Digital Bitbox '), _defineProperty(_es$data, 'x_Secalot', 'Secalot '), _defineProperty(_es$data, 'ADD_Secalot_0a', 'Re-open MyEtherWallet on a secure (SSL) connection '), _defineProperty(_es$data, 'ADD_Secalot_0b', 'Re-open MyEtherWallet using [Chrome](https://www.google.com/chrome/browser/desktop/) or [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_Secalot_scan', 'Connect your Secalot '), _defineProperty(_es$data, 'ERROR_0', '(error_01) Introduce una cantidad válida. Please enter a valid amount.'), _defineProperty(_es$data, 'ERROR_1', '(error_02) Tu contraseña debe tener al menos 9 caracteres. Por favor utiliza una contraseña fuerte. Your password must be at least 9 characters. Please ensure it is a strong password.'), _defineProperty(_es$data, 'ERROR_2', '(error_03) Lo sentimos. No reconocemos este tipo de archivo de cartera. Sorry! We don\'t recognize this type of wallet file.'), _defineProperty(_es$data, 'ERROR_3', '(error_04) Este no es un archivo de cartera válido. This is not a valid wallet file.'), _defineProperty(_es$data, 'ERROR_4', '(error_05) Esta unidad no existe. Por favor utiliza una de las siguientes unidades This unit doesn\'t exists, please use the one of the following units'), _defineProperty(_es$data, 'ERROR_5', '(error_06) Introduce una Dirección válida. Please enter a valid address.'), _defineProperty(_es$data, 'ERROR_6', '(error_07) Introduce una Contraseña válida. Please enter a valid password.'), _defineProperty(_es$data, 'ERROR_7', '(error_08) Introduce una Cantidad válida. (Must be integer. Try 0-18.) Please enter valid decimals (Must be an integer. Try 0-18.)'), _defineProperty(_es$data, 'ERROR_8', '(error_09) Introduce un Límite de gas válido. (Must be integer. Try 21000-4000000.) Please enter a valid gas limit (Must be an integer. Try 21000-4000000.)'), _defineProperty(_es$data, 'ERROR_9', '(error_10) Introduce un Valor de datos válido. (Must be hex.) Please enter a valid data value (Must be hex.)'), _defineProperty(_es$data, 'ERROR_10', '(error_11) Introduce una Cantidad de gas válida. (Must be integer. Try 20 GWEI / 20000000000 WEI.) Please enter a valid gas price. (Must be an integer. Try 20 GWEI / 20000000000 WEI.)'), _defineProperty(_es$data, 'ERROR_11', '(error_12) Introduce un Nonce válido. (Must be integer.) Please enter a valid nonce (Must be an integer.)'), _defineProperty(_es$data, 'ERROR_12', '(error_13) Introduce una Transacción firmada válida. Invalid signed transaction.'), _defineProperty(_es$data, 'ERROR_13', '(error_14) Ya existe una cartera con este alias. A wallet with this nickname already exists.'), _defineProperty(_es$data, 'ERROR_14', '(error_15) Cartera no encontrada. Wallet not found.'), _defineProperty(_es$data, 'ERROR_15', '(error_16) No parece que exista todavía una propuesta con este ID o hay un error al leer esta propuesta. Whoops. It doesn\'t look like a proposal with this ID exists yet or there is an error reading this proposal.'), _defineProperty(_es$data, 'ERROR_16', '(error_17) Ya hay almacenada una cartera con esta dirección. Por favor comprueba la página de carteras. A wallet with this address already exists in storage. Please check your wallets page.'), _defineProperty(_es$data, 'ERROR_17', '(error_18) Fondos no suficientes para gas * precio + valor. Es necesario tener al menos 0.01 ether en tu cuenta para cubrir el coste del gas. Añade algo de ether e inténtalo de nuevo. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'ERROR_18', '(error_19) Sería necesario utilizar todo el gas en esta transacción. Esto significa que ya has votado en esta propuesta o que el periodo de debate ha concluido. All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.'), _defineProperty(_es$data, 'ERROR_19', '(error_20) Introduce un Símbolo válido Please enter a valid symbol'), _defineProperty(_es$data, 'ERROR_20', '(error_21) No es un token ERC-20 válido Not a valid ERC-20 token'), _defineProperty(_es$data, 'ERROR_21', '(error_22) No se ha podido estimar el gas. No hay suficientes fondos en la cuenta, o el contrato de destino ha devuelto un error. Puedes ajustar el gas manualmente y continuar. Puede que el mensaje de error al enviar contenga más información. Could not estimate gas. There are not enough funds in the account, or the receiving contract address would throw an error. Feel free to manually set the gas and proceed. The error message upon sending may be more informative.'), _defineProperty(_es$data, 'ERROR_22', '(error_23) Introduce un nombre de nodo válido Please enter a valid node name'), _defineProperty(_es$data, 'ERROR_23', '(error_24) Introduce una URL válida. Si estás en HTTPS, tu URL debe ser HTTPS Please enter a valid URL. If you are on https, your URL must be https'), _defineProperty(_es$data, 'ERROR_24', '(error_25) Introduce un puerto válido Please enter a valid port.'), _defineProperty(_es$data, 'ERROR_25', '(error_26) Introduce un chain ID válido Please enter a valid chain ID.'), _defineProperty(_es$data, 'ERROR_26', '(error_27) Introduce un ABI válido Please enter a valid ABI.'), _defineProperty(_es$data, 'ERROR_27', '(error_28) Cantidad mínima 0.01 Minimum amount: 0.01. Max amount:'), _defineProperty(_es$data, 'ERROR_28', '(error_29) **Necesitas tu archivo Keystore/JSON y la contraseña** (o clave privada) para acceder a esta cartera en el futuro. Por favor ¡guárdala y respáldala externamente! No hay modo de recuperar una cartera si no la guardas. Lee la [página de ayuda](https://www.myetherwallet.com/#help) para instrucciones. You need this `Keystore File + Password` or the `Private Key` (next page) to access this wallet in the future. '), _defineProperty(_es$data, 'ERROR_29', '(error_30) Introduce un user & password válido. Please enter a valid user and password.'), _defineProperty(_es$data, 'ERROR_30', '(error_31) Introduce un name válido (7+ characters, limited punctuation) Please enter a valid name (7+ characters, limited punctuation)'), _defineProperty(_es$data, 'ERROR_31', '(error_32) Introduce un secret phrase válido. Please enter a valid secret phrase.'), _defineProperty(_es$data, 'ERROR_32', '(error_33) Could not connect to the node. Refresh your page, try a different node (upper right corner), check your firewall settings. If custom node, check your configs.Could not connect to the node. Refresh your page, try a different node (top-right corner), check your firewall settings. If custom node, check your configs.'), _defineProperty(_es$data, 'ERROR_33', '(error_34) The wallet you have unlocked does not match the owner\'s address. The wallet you have unlocked does not match the owner\'s address.'), _defineProperty(_es$data, 'ERROR_34', '(error_35) The name you are attempting to reveal does not match the name you have entered. The name you are attempting to reveal does not match the name you have entered.'), _defineProperty(_es$data, 'ERROR_35', '(error_36) Input address is not checksummed. More infoInput address is not checksummed. What does that mean?'), _defineProperty(_es$data, 'ERROR_36', '(error_37) Enter valid TX hashPlease enter a valid TX hash'), _defineProperty(_es$data, 'ERROR_37', '(error_38) Enter valid hex string (0-9, a-f)Please enter valid hex string. Hex only contains: 0x, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, a, b, c, d, e, f'), _defineProperty(_es$data, 'ERROR_38', '(error_39) Offer must have either price or reserve set to more than 0'), _defineProperty(_es$data, 'ERROR_39', '(error_40) Bid must be more than the specified minimum'), _defineProperty(_es$data, 'GETH_Balance', '(geth-01) Saldo insuficiente. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'GETH_Cheap', '(geth-02) Precio de gas demasiado bajo para aceptación. Gas price too low for acceptance. Try raising the gas price to 21 GWEI via the dropdown in top-right.'), _defineProperty(_es$data, 'GETH_GasLimit', '(geth-03) Sobrepasa el límite de gas del bloque. Exceeds block gas limit. Transaction cost exceeds current gas limit. Limit: (d+), got: (d+). Please lower the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again. [Learn More](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)'), _defineProperty(_es$data, 'GETH_InsufficientFunds', '(geth-04) Fondos no suficientes para gas * precio + valor. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'GETH_IntrinsicGas', '(geth-05) Gas intrínseco demasiado bajo. Intrinsic gas too low. Try raising the gas price to 21 GWEI via the dropdown in top-right or the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again.'), _defineProperty(_es$data, 'GETH_InvalidSender', '(geth-06) Remitente no válido. Invalid sender.'), _defineProperty(_es$data, 'GETH_NegativeValue', '(geth-07) Valor negativo. Negative value.'), _defineProperty(_es$data, 'GETH_Nonce', "(geth-08) Nonce demasiado bajo. This TX's [nonce](https://myetherwallet.github.io/knowledge-base/transactions/what-is-nonce.html) is too low. Try incrementing the nonce by pressing the Generate button again, or [replace the pending transaction](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)."), _defineProperty(_es$data, 'GETH_NonExistentAccount', '(geth-09) La cuenta no existe o tiene un saldo insuficiente. Account does not exist or account balance too low'), _defineProperty(_es$data, 'PARITY_AlreadyImported', "(parity-01) A transaction with the same hash was already imported. It was probably already broadcast. To avoid duplicate transactions, check your address on [etherscan.io](https://etherscan.io) & wait 10 minutes before attempting to send again. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_GasLimitExceeded', "(parity-02) Transaction cost exceeds current gas limit. Limit: (d+), got: (d+). Please lower the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again. [Learn More](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)"), _defineProperty(_es$data, 'PARITY_InsufficientBalance', "(parity-03) Insufficient balance. The account you tried to send transaction from does not have enough funds. If you believe this is in error, try using the 'Send Entire Balance' button, or pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_InsufficientGasPrice', "(parity-04) There is another transaction with same nonce in the queue, or the transaction fee is too low. Try incrementing the nonce by clicking the Generate button again. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_InvalidGasLimit', "(parity-05) Supplied gas limit is beyond limit. Try lowering the gas limit to 21000. [Learn More.](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)"), _defineProperty(_es$data, 'PARITY_LimitReached', "(parity-06) There are too many transactions in the queue. Your transaction was dropped due to limit. Try increasing the gas price. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_Old', "(parity-07) There is already a transaction with this [nonce](https://myetherwallet.github.io/knowledge-base/transactions/what-is-nonce.html). Try incrementing the nonce by pressing the Generate button again, or [replace the pending transaction](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)."), _defineProperty(_es$data, 'PARITY_TooCheapToReplace', "(parity-08) TX Fee is too low. It does not satisfy your node's minimal fee (minimal: (d+), got: (d+)). Try increasing the gas price and/or gas limit. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'SUCCESS_1', 'Dirección válida '), _defineProperty(_es$data, 'SUCCESS_2', 'Cartera descifrada con éxito '), _defineProperty(_es$data, 'SUCCESS_3', 'Your TX has been broadcast to the network. This does not mean it has been mined & sent. During times of extreme volume, it may take 3+ hours to send. 1) Check your TX below. 2) If it is pending for hours or disappears, use the Check TX Status Page to replace. 3) Use [ETH Gas Station](https://ethgasstation.info/) to see what gas price is optimal. 4) Save your TX Hash in case you need it later: '), _defineProperty(_es$data, 'SUCCESS_4', 'Se ha añadido tu cartera '), _defineProperty(_es$data, 'SUCCESS_5', 'Archivo seleccionado '), _defineProperty(_es$data, 'SUCCESS_6', 'You are successfully connected '), _defineProperty(_es$data, 'SUCCESS_7', 'Message Signature Verified'), _defineProperty(_es$data, 'WARN_Send_Link', 'Has llegado aquí a través de un enlace que ya tiene rellenados la dirección, cantidad, gas, campos de datos o el tipo de transacción (modo de envío). Puedes cambiar cualquier parámetro antes de enviar. Desbloquea tu cartera para comenzar. '), _defineProperty(_es$data, 'translate_version', '0.3 '), _defineProperty(_es$data, 'Translator_Desc', 'Gracias a nuestros traductores '), _defineProperty(_es$data, 'TranslatorName_1', 'Ignacio Fernández del Álamo · '), _defineProperty(_es$data, 'TranslatorAddr_1', ''), _defineProperty(_es$data, 'TranslatorName_2', 'Carlos Lizarraga Rodrigo '), _defineProperty(_es$data, 'TranslatorAddr_2', ''), _defineProperty(_es$data, 'TranslatorName_3', 'Mario Campo Saurat '), _defineProperty(_es$data, 'TranslatorAddr_3', '0xf66949e931c53eB90da51A886E2b0520A83B1edE'), _defineProperty(_es$data, 'TranslatorName_4', ''), _defineProperty(_es$data, 'TranslatorAddr_4', ''), _defineProperty(_es$data, 'TranslatorName_5', ''), _defineProperty(_es$data, 'TranslatorAddr_5', ''), _defineProperty(_es$data, 'HELP_Warning', 'Si creaste una cartera -o- descargaste el repositorio antes del **31 de diciembre de 2015**, por favor comprueba tus carteras y descarga una nueva versión del repositorio. Haz clic para más información. '), _defineProperty(_es$data, 'HELP_Desc', '¿Echas algo en falta? ¿Tienes alguna otra pregunta? [Contacta con nosotros](mailto:support@myetherwallet.com) y no solamente contestaremos tu pregunta, sino que mejoraremos esta página para que sea más útil en el futuro. '), _defineProperty(_es$data, 'HELP_Remind_Title', 'Algunos recordatorios '), _defineProperty(_es$data, 'HELP_Remind_Desc_1', '**Ethereum, MyEtherWallet.com y MyEtherWallet CX, así como algunas de las librerías JavaScript que utilizamos están en desarrollo activo.** Aunque hemos testeado ampliamente y decenas de miles de carteras han sido creadas exitosamente por personas en todo el planeta, siempre existe la remota posibilidad de que ocurra algo inesperado que haga que se pierdan tus ETH. Por favor no inviertas más de lo que estés dispuesto a perder y, por favor, sé cuidadoso. Si algo ocurriera, lo lamentamos, pero **no somos responsables del Ether perdido**. '), _defineProperty(_es$data, 'HELP_Remind_Desc_2', 'MyEtherWallet.com y MyEtherWallet CX no son "carteras web". No estás creando una cuenta ni nos estás entregando tus Ether para que los guardemos. Toda tu información nunca abandona tu equipo o tu navegador. Te facilitamos que puedas crear, guardar y acceder a tu información e interactuar con la blockchain. '), _defineProperty(_es$data, 'HELP_Remind_Desc_3', 'Si no guardas tu clave privada y contraseña, no hay modo alguno de recuperar el acceso a tu cartera o a los fondos que ésta contiene. ¡Haz copias de seguridad en múltiples ubicaciones físicas, no solamente en tu equipo! '), _defineProperty(_es$data, 'HELP_0_Title', '0) Soy nuevo. ¿Qué hago? '), _defineProperty(_es$data, 'HELP_0_Desc_1', 'MyEtherWallet te permite generar nuevas carteras para poder almacenar tu Ether por tu cuenta en lugar de en una casa de cambio. Este proceso tiene lugar por completo en tu equipo, no en nuestros servidores. Por lo tanto, cuando generes una nueva cartera, **eres responsable de hacer una copia de seguridad**. '), _defineProperty(_es$data, 'HELP_0_Desc_2', 'Crear una nueva cartera. '), _defineProperty(_es$data, 'HELP_0_Desc_3', 'Hacer una copia de seguridad de la cartera. '), _defineProperty(_es$data, 'HELP_0_Desc_4', 'Comprobar que tienes acceso a esta nueva cartera y has guardado correctamente toda la información necesaria. '), _defineProperty(_es$data, 'HELP_0_Desc_5', 'Transferir Ether a la nueva cartera. '), _defineProperty(_es$data, 'HELP_1_Title', '1) ¿Cómo creo una nueva cartera? '), _defineProperty(_es$data, 'HELP_1_Desc_1', 'Ir a la página "Generar cartera". '), _defineProperty(_es$data, 'HELP_1_Desc_2', 'Ir a la página "Añadir cartera" y seleccionar "Generar nueva cartera" '), _defineProperty(_es$data, 'HELP_1_Desc_3', 'Introducir una contraseña fuerte. Si crees que puedes olvidarla, guárdala en un lugar seguro. Necesitarás esta contraseña para enviar transacciones. '), _defineProperty(_es$data, 'HELP_1_Desc_4', 'Haz clic en "GENERAR". '), _defineProperty(_es$data, 'HELP_1_Desc_5', 'Ahora se ha generado tu cartera. '), _defineProperty(_es$data, 'HELP_2a_Title', '¿Cómo guardo/respaldo mi cartera? '), _defineProperty(_es$data, 'HELP_2a_Desc_1', 'Deberías siempre respaldar tu cartera externamente y en varias ubicaciones físicas (como una unidad USB o en una hoja de papel). '), _defineProperty(_es$data, 'HELP_2a_Desc_2', 'Guardar la dirección. Puedes mantenerla en privado o compartirla con otras personas. De ese modo, otras personas te podrán enviar ether. '), _defineProperty(_es$data, 'HELP_2a_Desc_3', 'Guarda las versiones de tu clave privada. No la compartas con nadie. ¡Tu clave privada es necesaria cuando quieras tener acceso a tu ether para enviarlo! Hay tres tipos de claves privadas: '), _defineProperty(_es$data, 'HELP_2a_Desc_4', 'Pon tu dirección, las versiones de la clave privada y la versión PDF de tu cartera en papel en una carpeta. Guárdala en tu equipo y en una unidad USB. '), _defineProperty(_es$data, 'HELP_2a_Desc_5', 'Imprime la cartera si dispones de impresora. En caso contrario, escribe tu clave privada y tu dirección en una hoja de papel. Almacénalas en un lugar seguro y separado de tu equipo y de la unidad USB. '), _defineProperty(_es$data, 'HELP_2a_Desc_6', 'Recuerda, debes evitar la pérdida de las claves y la contraseña frente a una pérdida o fallo en tu unidad de disco duro, unidad USB u hoja de papel. Debes tener en cuenta también la posibilidad de pérdida o daño en una zona amplia (piensa en un incendio o una inundación). '), _defineProperty(_es$data, 'HELP_2b_Title', '2b) ¿Cómo almaceno con seguridad/sin conexión/en frío con MyEtherWallet? '), _defineProperty(_es$data, 'HELP_2b_Desc_1', 'Ve a nuestro github: [https://github.com/kvhnuke/etherwallet/releases/latest](https://github.com/kvhnuke/etherwallet/releases/latest). '), _defineProperty(_es$data, 'HELP_2b_Desc_2', 'Haz clic en `etherwallet-vX.X.X.X.zip` en la parte inferior. '), _defineProperty(_es$data, 'HELP_2b_Desc_3', 'Mueve el ZIP a un equipo aislado de internet (airgapped). '), _defineProperty(_es$data, 'HELP_2b_Desc_4', 'Descomprímelo y haz doble clic en `index.html`. '), _defineProperty(_es$data, 'HELP_2b_Desc_5', 'Genera una cartera con una contraseña fuerte. '), _defineProperty(_es$data, 'HELP_2b_Desc_6', 'Guarda la dirección. Guarda versiones de la clave privaa. Guarda la contraseña si crees que es posible que no la recuerdes siempre en el futuro.. '), _defineProperty(_es$data, 'HELP_2b_Desc_7', 'Almacena los papeles / USBs en múltiples ubicaciones separadas físicamente. '), _defineProperty(_es$data, 'HELP_2b_Desc_8', 'Ve a la página "Ver Información de las Carteras" y teclea to clave privada / contraseña para asegurarte de que son correctos y puedes acceder a tu cartera. Comprueba que la dirección que has escrito coincide. '), _defineProperty(_es$data, 'HELP_3_Title', '3) ¿Cómo verifico que tengo acceso a mi nueva cartera? '), _defineProperty(_es$data, 'HELP_3_Desc_1', '**Antes de enviar ether a tu nueva cartera,** deberías asegurarte de que tienes acceso a ésta. '), _defineProperty(_es$data, 'HELP_3_Desc_2', 'Ve a la página "Ver Información de las Carteras". '), _defineProperty(_es$data, 'HELP_3_Desc_3', 'Ve a la página "Ver Información de las Carteras" de MyEtherWallet.com. '), _defineProperty(_es$data, 'HELP_3_Desc_4', 'Selecciona tu archivo de cartera -o- tu clave privada y desloquea tu cartera. '), _defineProperty(_es$data, 'HELP_3_Desc_5', 'Si la cartera está cifrada aparecerá automáticamente una caja de texto. Introduce la contraseña. '), _defineProperty(_es$data, 'HELP_3_Desc_6', 'Haz clic en el botón "Desbloquear cartera". '), _defineProperty(_es$data, 'HELP_3_Desc_7', 'Debería mostrarse la información de tu cartera. Puedes encontrar la dirección de tu cuenta al lado de un icono circular de colores. Este icono es una representación visual de tu dirección. Asegúrate de que esta dirección coincide con la dirección que has guardado en tu archivo de texto y con la que está en tu cartera de papel. '), _defineProperty(_es$data, 'HELP_3_Desc_8', 'Si planeas guardar una cantidad elevada de ether, te recomendamos que primero envíes una cantidad pequeña de ether desde tu nueva cartera antes de ingresar una cantidad elevada. Envía 0.001 ether a tu nueva cartera, accede a tu cartera, envía los 0.001 ether desde tu cartera a otra dirección y asegúrate de que todo funciona bien. '), _defineProperty(_es$data, 'HELP_4_Title', '4) ¿Cómo envío ether de una cartera a otra? '), _defineProperty(_es$data, 'HELP_4_Desc_1', 'Si planeas mover una gran cantidad de ether, deberías probar primero a enviar una pequeña cantidad a tu cartera para asegurarte de que todo funciona según lo esperado. '), _defineProperty(_es$data, 'HELP_4_Desc_2', 'Ve a la página "Enviar Ether y Tokens". '), _defineProperty(_es$data, 'HELP_4_Desc_3', 'Selecciona tu archivo de cartera -o- tu clave privada y desbloquea tu cartera. '), _defineProperty(_es$data, 'HELP_4_Desc_4', 'Si la cartera está cifrada aparecerá automáticamente una caja de texto. Introduce la contraseña. '), _defineProperty(_es$data, 'HELP_4_Desc_5', 'Haz clic en el botón "Desbloquear cartera". '), _defineProperty(_es$data, 'HELP_4_Desc_6', 'Introduce la dirección a la que deseas enviar ether en el campo "Dirección de destino:". '), _defineProperty(_es$data, 'HELP_4_Desc_7', 'Introduce la cantidad que deseas enviar. También puedes hacer clic en "Enviar todo el saldo" si quieres enviar todo el saldo de la cartera. '), _defineProperty(_es$data, 'HELP_4_Desc_9', 'Haz clic en "Generar transacción". '), _defineProperty(_es$data, 'HELP_4_Desc_10', 'Aparecerán dos campos más. Esto es tu navegador generando la transacción. '), _defineProperty(_es$data, 'HELP_4_Desc_11', 'Haz clic en el botón azul "Enviar transacción" que está inmediatamente debajo. '), _defineProperty(_es$data, 'HELP_4_Desc_12', 'Aparecerá un cuadro emergente. Verifica que la cantidad y la dirección a la que estás enviando son correctos. Entonces, haz clic en el botón "Sí, estoy seguro. Hacer la transacción.". '), _defineProperty(_es$data, 'HELP_4_Desc_13', 'Se enviará la transacción y se mostrará el ID de transacción. Puedes hacer clic en el ID de transacción para verla en la cadena de bloques. '), _defineProperty(_es$data, 'HELP_4CX_Title', '4) ¿Cómo envío ether utilizando MyEtherWallet CX? '), _defineProperty(_es$data, 'HELP_4CX_Desc_1', 'Antes de nada, necesitas añadir una cartera. Una vez hecho, tienes dos opciones: la función "Enviar" del icono de la extensión de Chrome o la página "Enviar Ether y Tokens". '), _defineProperty(_es$data, 'HELP_4CX_Desc_2', 'Envío: '), _defineProperty(_es$data, 'HELP_4CX_Desc_3', 'Haz clic en el icono de la extensión de Chrome. '), _defineProperty(_es$data, 'HELP_4CX_Desc_4', 'Haz clic en el botón Click the "Enviar" button. '), _defineProperty(_es$data, 'HELP_4CX_Desc_5', 'Elige la cartera desde la que quieres enviar. '), _defineProperty(_es$data, 'HELP_4CX_Desc_6', 'Introduce la dirección a la que deseas enviar en el campo "Dirección de destino:". '), _defineProperty(_es$data, 'HELP_4CX_Desc_7', 'Introduce la cantidad que deseas enviar. También puedes hacer clic en "Enviar todo el saldo" si quieres enviar todo el saldo de la cartera. '), _defineProperty(_es$data, 'HELP_4CX_Desc_8', 'Haz clic en "Enviar transacción". '), _defineProperty(_es$data, 'HELP_4CX_Desc_9', 'Comprueba que la dirección y la cantidad que estás enviando son correctos. '), _defineProperty(_es$data, 'HELP_4CX_Desc_10', 'Introduce la contraseña para la cartera. '), _defineProperty(_es$data, 'HELP_4CX_Desc_11', 'Haz clic en "Enviar transacción". '), _defineProperty(_es$data, 'HELP_4CX_Desc_12', 'Utilizando la página "Enviar Ether y Tokens" '), _defineProperty(_es$data, 'HELP_5_Title', '5) ¿Cómo ejecuto MyEtherWallet.com sin conexión/localmente? '), _defineProperty(_es$data, 'HELP_5_Desc_1', 'Puedes ejecutar MyEtherWallet.com en tu equipo en lugar de desde los servidores de GitHub. Puedes generar una cartera totalmente sin conexión y enviar transacciones desde la página "Transacción sin conexión". '), _defineProperty(_es$data, 'HELP_5_Desc_7', 'MyEtherWallet.com is now running entirely on your computer. '), _defineProperty(_es$data, 'HELP_5_Desc_8', 'Por si no tienes costumbre, es necesario guardar la carpeta completa para ejecutar la página web, no solamente `index.html`. No modifiques ni muevas nada dentro de la carpeta. Si estás guardando una copia del repositorio MyEtherWallet para el futuro, recomendamos guardar únicamente el fichero ZIP para poder estar seguro de que el contenido permanezca intacto. '), _defineProperty(_es$data, 'HELP_5_Desc_9', 'Debido a que estamos constantemente actualizando MyEtherWallet.com, recomendamos que actualices periódicamente tu versión guardada del repositorio. '), _defineProperty(_es$data, 'HELP_5CX_Title', '5) ¿Cómo puedo instalar esta extensión desde el repositorio en lugar de desde la Chrome Store? '), _defineProperty(_es$data, 'HELP_5CX_Desc_2', 'Click on `chrome-extension-vX.X.X.X.zip` and unzip it. '), _defineProperty(_es$data, 'HELP_5CX_Desc_3', 'Go to Google Chrome and find you settings (in the menu in the upper right). '), _defineProperty(_es$data, 'HELP_5CX_Desc_4', 'Click "Extensions" on the left. '), _defineProperty(_es$data, 'HELP_5CX_Desc_5', 'Check the "Developer Mode" button at the top of that page. '), _defineProperty(_es$data, 'HELP_5CX_Desc_6', 'Click the "Load unpacked extension..." button. '), _defineProperty(_es$data, 'HELP_5CX_Desc_7', 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select". '), _defineProperty(_es$data, 'HELP_5CX_Desc_8', 'The extension should now show up in your extensions and in your Chrome Extension bar. '), _defineProperty(_es$data, 'HELP_7_Title', '7) ¿Cómo envío tokens y añado tokens personalizados? '), _defineProperty(_es$data, 'HELP_7_Desc_0', '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token. '), _defineProperty(_es$data, 'HELP_7_Desc_1', 'Navigate to the "Enviar ether y tokens" page. '), _defineProperty(_es$data, 'HELP_7_Desc_2', 'Desbloquea tu cartera. '), _defineProperty(_es$data, 'HELP_7_Desc_3', 'Enter the address you would like to send to in the "To Address:" field. '), _defineProperty(_es$data, 'HELP_7_Desc_4', 'Enter the amount you would like to send. '), _defineProperty(_es$data, 'HELP_7_Desc_5', 'Select which token you would like to send. '), _defineProperty(_es$data, 'HELP_7_Desc_6', 'If you do not see the token listed: '), _defineProperty(_es$data, 'HELP_7_Desc_7', 'Click "Custom". '), _defineProperty(_es$data, 'HELP_7_Desc_8', 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist. '), _defineProperty(_es$data, 'HELP_7_Desc_9', 'Click "Save". '), _defineProperty(_es$data, 'HELP_7_Desc_10', 'You can now send that token as well as see it\'s balance in the sidebar. '), _defineProperty(_es$data, 'HELP_7_Desc_11', 'Click "Generate Transaction". '), _defineProperty(_es$data, 'HELP_7_Desc_12', 'A couple more fields will appear. This is your browser generating the transaction. '), _defineProperty(_es$data, 'HELP_7_Desc_13', 'Click the blue "Send Transaction" button below that. '), _defineProperty(_es$data, 'HELP_7_Desc_14', 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button. '), _defineProperty(_es$data, 'HELP_7_Desc_15', 'The transaction will be submitted. The TX Hash will display. You can click that TX Hash to see it on the blockchain. '), _defineProperty(_es$data, 'HELP_8_Title', '8) ¿Qué ocurre si vuestro sitio web deja de funcionar? '), _defineProperty(_es$data, 'HELP_8_Desc_1', 'MyEtherWallet no es una cartera web. No tienes un login y nunca se graba nada en nuestros servidores. You don\'t have a login and nothing ever gets saved to our servers. Simplemente es una interfaz que te permite interactuar con la cadena de bloques. '), _defineProperty(_es$data, 'HELP_8_Desc_2', 'Si MyEtherWallet.com desapareciera, tendrías que encontrar otra manera de poder hacer lo que haces con nosotros (como por ejemplo obtener geth o Ethereum Wallet / Mist). Pero no necesitarías retirar tus ether de MyEtherWallet porque no están en MyEtherWallet. Están en la cartera que hayas generado a través de nuestro sitio. '), _defineProperty(_es$data, 'HELP_8_Desc_3', 'Puedes importar tu clave privada sin cifrar y tus archivos en formato Geth/Mist (cifrados) directamente en geth / Ethereum Wallet / Mist con mucha facilidad actualmente. Ver más abajo la pregunta #12. '), _defineProperty(_es$data, 'HELP_8_Desc_4', 'Además, la probabilidad de que cerremos MyEtherWallet es casi nula. No nos cuesta prácticamente nada mantenerlo ya que no almacenamos ninguna información. Si borramos el dominio, continúa estando disponible y siempre lo estará en [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puedes descargar desde ahí el archivo ZIP y ejecutarlo localmente. '), _defineProperty(_es$data, 'HELP_8CX_Title', '8) ¿Qué ocurre si MyEtherWallet CX desaparece? '), _defineProperty(_es$data, 'HELP_8CX_Desc_1', 'En primer lugar, los datos se guardan en tu equipo, no en nuestros servidores. Sabemos que puede parecer confuso, pero si miras nuestra extensión de Chrome, NO estás mirando a algo almacenado en nuestros servidores en alguna parte - todo se guarda en tu equipo. '), _defineProperty(_es$data, 'HELP_8CX_Desc_2', 'Dicho esto, es **muy importante** que respaldes toda tu información para todas las nuevas carteras generadas con MyEtherWallet CX. De este modo, si algo le ocurre a MyEtherWallet CX o a tu equipo, seguirás teniendo toda la información necesaria para poder acceder a tus ether. Ver la pregunta #2a sobre cómo respaldar tus carteras. '), _defineProperty(_es$data, 'HELP_8CX_Desc_3', 'Si por algún motivo MyEtherWallet CX desaparece de Chrome Store, puedes encontrar el código fuente en Github y cargarlo manualmente. Ver #5 más arriba. '), _defineProperty(_es$data, 'HELP_9_Title', '9) Is the "Enviar ether y tokens" page offline? '), _defineProperty(_es$data, 'HELP_9_Desc_1', 'No. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times. '), _defineProperty(_es$data, 'HELP_10_Title', '10) ¿Cómo hago una transacción sin conexión? '), _defineProperty(_es$data, 'HELP_10_Desc_1', 'Navigate to the "Offline Transaction" page via your online computer. '), _defineProperty(_es$data, 'HELP_10_Desc_2', 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price. '), _defineProperty(_es$data, 'HELP_10_Desc_3', 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send. '), _defineProperty(_es$data, 'HELP_10_Desc_4', 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1. '), _defineProperty(_es$data, 'HELP_10_Desc_5', 'Enter the "NONCE" as it was displayed to you on your online computer in step #1. '), _defineProperty(_es$data, 'HELP_10_Desc_6', 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you. '), _defineProperty(_es$data, 'HELP_10_Desc_7', 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format. '), _defineProperty(_es$data, 'HELP_10_Desc_8', 'Select your wallet file -or- your private key and unlock your wallet. '), _defineProperty(_es$data, 'HELP_10_Desc_9', 'Press the "GENERATE SIGNED TRANSACTION" button. '), _defineProperty(_es$data, 'HELP_10_Desc_10', 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. '), _defineProperty(_es$data, 'HELP_10_Desc_11', 'On your online computer, paste the signed transaction into the text field in step #3 and click "Enviar Ether y Tokens". This will broadcast your transaction. '), _defineProperty(_es$data, 'HELP_12_Title', '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist? '), _defineProperty(_es$data, 'HELP_12_Desc_1', 'Using an Geth/Mist JSON file from MyEtherWallet v2+.... '), _defineProperty(_es$data, 'HELP_12_Desc_2', 'Go to the "View Wallet Info" page. '), _defineProperty(_es$data, 'HELP_12_Desc_3', 'Unlock your wallet using your **encrypted** private key or JSON file. '), _defineProperty(_es$data, 'HELP_12_Desc_4', 'Go to the "My Wallets" page. '), _defineProperty(_es$data, 'HELP_12_Desc_5', 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. '), _defineProperty(_es$data, 'HELP_12_Desc_6', 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file. '), _defineProperty(_es$data, 'HELP_12_Desc_7', 'Open the Ethereum Wallet application. '), _defineProperty(_es$data, 'HELP_12_Desc_8', 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts" '), _defineProperty(_es$data, 'HELP_12_Desc_9', 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder. '), _defineProperty(_es$data, 'HELP_12_Desc_10', 'Your account should show up immediately under "Accounts." '), _defineProperty(_es$data, 'HELP_12_Desc_11', 'Using your unencrypted private key... '), _defineProperty(_es$data, 'HELP_12_Desc_12', 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page. '), _defineProperty(_es$data, 'HELP_12_Desc_13', 'Select your wallet file -or- enter/paste your private key to unlock your wallet. '), _defineProperty(_es$data, 'HELP_12_Desc_14', 'Copy Your Private Key (unencrypted). '), _defineProperty(_es$data, 'HELP_12_Desc_15', 'If you are on a Mac: '), _defineProperty(_es$data, 'HELP_12_Desc_15b', 'If you are on a PC: '), _defineProperty(_es$data, 'HELP_12_Desc_16', 'Open Text Edit and paste this private key. '), _defineProperty(_es$data, 'HELP_12_Desc_17', 'Go to the menu bar and click "Format" -> "Make Plain Text". '), _defineProperty(_es$data, 'HELP_12_Desc_18', 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog. '), _defineProperty(_es$data, 'HELP_12_Desc_19', 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_20', 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. '), _defineProperty(_es$data, 'HELP_12_Desc_21', 'After successful import, delete `nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_22', 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". '), _defineProperty(_es$data, 'HELP_12_Desc_23', 'Open Notepad & paste the private key '), _defineProperty(_es$data, 'HELP_12_Desc_24', 'Save the file as `nothing_special_delete_me.txt` at `C:` '), _defineProperty(_es$data, 'HELP_12_Desc_25', 'Run the command, `geth account import C:\\nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_26', 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. '), _defineProperty(_es$data, 'HELP_12_Desc_27', 'After successful import, delete `nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_28', 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". '), _defineProperty(_es$data, 'HELP_13_Title', '13) What does "Insufficient funds. Account you try to send transaction from does not have enough funds. Required XXXXXXXXXXXXXXXXXXX and got: XXXXXXXXXXXXXXXX." Mean? '), _defineProperty(_es$data, 'HELP_13_Desc_1', 'This means you do not have enough Ether in your account to cover the cost of gas. Each transaction (including token and contract transactions) require gas and that gas is paid in Ether. The number displayed is the amount required to cover the cost of the transaction in Wei. Take that number, divide by `1000000000000000000`, and subtract the amount of Ether you were trying to send (if you were attempting to send Ether). This will give you the amount of Ether you need to send to that account to make the transaction. '), _defineProperty(_es$data, 'HELP_14_Title', '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe? '), _defineProperty(_es$data, 'HELP_14_Desc_1', 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto). '), _defineProperty(_es$data, 'HELP_15_Title', '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan) '), _defineProperty(_es$data, 'HELP_15_Desc_1', 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it. '), _defineProperty(_es$data, 'HELP_16_Title', '16) How do I check the balance of my account? '), _defineProperty(_es$data, 'HELP_16_Desc_1', 'You can use a blockchain explorer like [etherscan.io](https://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](https://etherscan.io/address/0xDECAF9CD2367cdbb726E904cD6397eDFcAe6068D) looks like on etherscan.io '), _defineProperty(_es$data, 'HELP_17_Title', '17) Why isn\'t my balance showing up when I unlock my wallet? '), _defineProperty(_es$data, 'HELP_17_Desc_1', 'This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io '), _defineProperty(_es$data, 'HELP_18_Title', '18) Where is my geth wallet file? '), _defineProperty(_es$data, 'HELP_19_Title', '19) Where is my Mist wallet file? '), _defineProperty(_es$data, 'HELP_19_Desc_1', 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored. '), _defineProperty(_es$data, 'HELP_20_Title', '20) Where is my pre-sale wallet file? '), _defineProperty(_es$data, 'HELP_20_Desc_1', 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale. '), _defineProperty(_es$data, 'HELP_21_Title', '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? '), _defineProperty(_es$data, 'HELP_21_Desc_1', 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no. '), _defineProperty(_es$data, 'HELP_21_Desc_2', 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts. '), _defineProperty(_es$data, 'HELP_21_Desc_3', 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems. '), _defineProperty(_es$data, 'HELP_21_Desc_4', 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password. '), _defineProperty(_es$data, 'HELP_21_Desc_5', 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match. '), _defineProperty(_es$data, 'HELP_21_Desc_6', 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion. '), _defineProperty(_es$data, 'HELP_21_Desc_7', '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space. '), _defineProperty(_es$data, 'HELP_21_Desc_8', 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day. '), _defineProperty(_es$data, 'HELP_SecCX_Title', 'Seguridad - MyEtherWallet CX '), _defineProperty(_es$data, 'HELP_SecCX_Desc_1', '¿Dónde está guardando mi información esta extensión? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_2', 'La información que guardas en esta extensión de Chrome se guarda por medio de [chrome.storage](http://chrome.storage/). - este es el mismo lugar en el que se guardan tus contraseñas cuando guardas tus contraseñas en Chrome. '), _defineProperty(_es$data, 'HELP_SecCX_Desc_3', '¿Qué información se guarda? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_4', 'La dirección, alias y clave privada se guardan en chrome.storage. La clave privada se cifra utilizando la contraseña que introdujiste al añadir la cartra. El alias y la dirección de la cartera no están cifrados. '), _defineProperty(_es$data, 'HELP_SecCX_Desc_5', '¿Por qué no se cifran el alias y la dirección de la cartera? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_6', 'Si cifráramos estos ítems, sería necesario que introduzcas una contraseña cada vez que quisieras comprobar el saldo de tu cuenta o vizualizar los alias. Si esto te preocupa, te recomendamos que utilices MyEtherWallet.com en lugar de esta extensión de Chrome. '), _defineProperty(_es$data, 'HELP_Sec_Title', 'Seguridad '), _defineProperty(_es$data, 'HELP_Sec_Desc_1', 'Si una de tus primeras preguntas es "¿Por qué debería confiar en estas personas?, se trata de algo bueno. Esperamos que lo que sigue te sirva de ayuda para disminuir tus preocupaciones. '), _defineProperty(_es$data, 'HELP_Sec_Desc_2', 'Hemos estado funcionando desde agosto de 2015. Si buscas ["myetherwallet" en reddit](https://www.reddit.com/search?q=myetherwallet), puedes encontrar numerosas personas que nos utilizan con gran éxito. '), _defineProperty(_es$data, 'HELP_Sec_Desc_3', 'No vamos a quitarte tu dinero ni a robar tus claves privadas. No hay código malicioso en este sitio. De hecho, las páginas "Generar Cartera" se ejecutan por completo en el cliente. Esto significa que todo el código se ejecuta en ** tu ordenador** y nunca se graba o se transmite a ningún lugar. '), _defineProperty(_es$data, 'HELP_Sec_Desc_4', 'Comprueba la URL -- Este sitio se sirve a través de GitHub y puedes ver el código fuente aquí: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) a [https://www.myetherwallet.com](https://www.myetherwallet.com). '), _defineProperty(_es$data, 'HELP_Sec_Desc_5', 'Para generar carteras, puedes descargar el [código fuente](https://github.com/kvhnuke/etherwallet/releases/latest). Ver #5 más arriba. '), _defineProperty(_es$data, 'HELP_Sec_Desc_6', 'Haz una prueba y observa qué actividad de red ocurre. La manera más fácil de hacer esto es hacer clic con el botón derecho en la página y hacer clic en "inspeccionar elemento". Ve a la pestaña "Red". Genera una cartera de prueba. Verás que no hay actividad de red. Puede que veas algo que aparece como data:image/gif y data:image/png. Se trata de los códigos QR generándose en tu ordenador y por tu ordenador. No se ha transferido ni un solo byte. '), _defineProperty(_es$data, 'HELP_Sec_Desc_8', 'Si no te encuentras cómodo utilizando esta herramienta, no la utilices bajo ningún concepto. Hemos creado esta herramienta como una manera útil para que la gente pueda generar carteras y hacer transacciones sin tener que utilizar la línea de comandos o ejecutar un nodo completo. De nuevo, por favor contáctanos si tienes inquietudes y responderemos lo más pronto posible. ¡Gracias! '), _defineProperty(_es$data, 'HELP_FAQ_Title', 'Más respuestas útiles a preguntas frecuentes '), _defineProperty(_es$data, 'HELP_Contact_Title', 'Maneras de contactar con nosotros'), _es$data); module.exports = es; -},{}],126:[function(require,module,exports){ +},{}],132:[function(require,module,exports){ // Farsi / Persian Last sync with en.js : commit f025c496254b8ce69660b682f90ec3dc5a12caa8 'use strict'; @@ -25221,7 +25527,7 @@ fa.data = (_fa$data = { module.exports = fa; -},{}],127:[function(require,module,exports){ +},{}],133:[function(require,module,exports){ // Finnish 'use strict'; @@ -25386,7 +25692,7 @@ fi.data = (_fi$data = { module.exports = fi; -},{}],128:[function(require,module,exports){ +},{}],134:[function(require,module,exports){ // French 'use strict'; @@ -25551,7 +25857,7 @@ fr.data = (_fr$data = { module.exports = fr; -},{}],129:[function(require,module,exports){ +},{}],135:[function(require,module,exports){ //Kreyol 'use strict'; @@ -25716,7 +26022,7 @@ ht.data = (_ht$data = { module.exports = ht; -},{}],130:[function(require,module,exports){ +},{}],136:[function(require,module,exports){ // Hungarian 'use strict'; @@ -25881,7 +26187,7 @@ hu.data = (_hu$data = { module.exports = hu; -},{}],131:[function(require,module,exports){ +},{}],137:[function(require,module,exports){ // Indonesian 'use strict'; @@ -26046,7 +26352,7 @@ id.data = (_id$data = { module.exports = id; -},{}],132:[function(require,module,exports){ +},{}],138:[function(require,module,exports){ // Italian // Last sync with en.js : commit ff3b9cb53afbdf9936d4655f0a0af210f926daef 'use strict'; @@ -26212,7 +26518,7 @@ it.data = (_it$data = { module.exports = it; -},{}],133:[function(require,module,exports){ +},{}],139:[function(require,module,exports){ // Japanese 'use strict'; @@ -26381,7 +26687,7 @@ ja.data = (_ja$data = { module.exports = ja; -},{}],134:[function(require,module,exports){ +},{}],140:[function(require,module,exports){ // Korean 'use strict'; @@ -26546,7 +26852,7 @@ ko.data = (_ko$data = { module.exports = ko; -},{}],135:[function(require,module,exports){ +},{}],141:[function(require,module,exports){ // Dutch 'use strict'; @@ -26711,7 +27017,7 @@ nl.data = (_nl$data = { module.exports = nl; -},{}],136:[function(require,module,exports){ +},{}],142:[function(require,module,exports){ // Norwegian 'use strict'; @@ -26876,7 +27182,7 @@ no.data = (_no$data = { module.exports = no; -},{}],137:[function(require,module,exports){ +},{}],143:[function(require,module,exports){ // Polish 'use strict'; @@ -27041,7 +27347,7 @@ pl.data = (_pl$data = { module.exports = pl; -},{}],138:[function(require,module,exports){ +},{}],144:[function(require,module,exports){ // Portuguese 'use strict'; @@ -27206,7 +27512,7 @@ pt.data = (_pt$data = { module.exports = pt; -},{}],139:[function(require,module,exports){ +},{}],145:[function(require,module,exports){ // Russian 'use strict'; @@ -27371,7 +27677,7 @@ ru.data = (_ru$data = { module.exports = ru; -},{}],140:[function(require,module,exports){ +},{}],146:[function(require,module,exports){ // English 'use strict'; @@ -27536,7 +27842,7 @@ th.data = (_th$data = { module.exports = th; -},{}],141:[function(require,module,exports){ +},{}],147:[function(require,module,exports){ // Turkish 'use strict'; @@ -27701,7 +28007,7 @@ tr.data = (_tr$data = { module.exports = tr; -},{}],142:[function(require,module,exports){ +},{}],148:[function(require,module,exports){ 'use strict'; var ca = require('./ca'); @@ -27767,7 +28073,7 @@ translate.marked = function (data) { }; module.exports = translate; -},{"./ca":121,"./de":122,"./el":123,"./en":124,"./es":125,"./fa":126,"./fi":127,"./fr":128,"./ht":129,"./hu":130,"./id":131,"./it":132,"./ja":133,"./ko":134,"./nl":135,"./no":136,"./pl":137,"./pt":138,"./ru":139,"./th":140,"./tr":141,"./vi":143,"./zhcn":144,"./zhtw":145}],143:[function(require,module,exports){ +},{"./ca":127,"./de":128,"./el":129,"./en":130,"./es":131,"./fa":132,"./fi":133,"./fr":134,"./ht":135,"./hu":136,"./id":137,"./it":138,"./ja":139,"./ko":140,"./nl":141,"./no":142,"./pl":143,"./pt":144,"./ru":145,"./th":146,"./tr":147,"./vi":149,"./zhcn":150,"./zhtw":151}],149:[function(require,module,exports){ // Vietnamese 'use strict'; @@ -27932,7 +28238,7 @@ vi.data = (_vi$data = { module.exports = vi; -},{}],144:[function(require,module,exports){ +},{}],150:[function(require,module,exports){ // simplified Chinese, zh-CN, 简体中文 'use strict'; @@ -28097,7 +28403,7 @@ zhcn.data = (_zhcn$data = { module.exports = zhcn; -},{}],145:[function(require,module,exports){ +},{}],151:[function(require,module,exports){ // Traditional Chinese 繁體中文 - zh-tw.js 'use strict'; @@ -28262,7 +28568,7 @@ zhtw.data = (_zhtw$data = { module.exports = zhtw; -},{}],146:[function(require,module,exports){ +},{}],152:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -28562,6 +28868,7 @@ uiFuncs.notifier = { var duration = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 7000; msg = msg.message ? msg.message : msg; + console.log(msg); //todo remove dev item // Danger messages can be translated based on the type of node msg = globalFuncs.getEthNodeMsg(msg); this.addAlert("danger", msg, duration); @@ -28600,7 +28907,7 @@ uiFuncs.notifier = { module.exports = uiFuncs; }).call(this,require("buffer").Buffer) -},{"buffer":219}],147:[function(require,module,exports){ +},{"buffer":225}],153:[function(require,module,exports){ 'use strict'; var validator = function validator() {}; @@ -28677,7 +28984,7 @@ validator.isValidURL = function (str) { }; module.exports = validator; -},{}],148:[function(require,module,exports){ +},{}],154:[function(require,module,exports){ 'use strict'; var Wallet = require('./myetherwallet.js'); @@ -28733,7 +29040,7 @@ Web3Wallet.prototype.getV3Filename = function (timestamp) { module.exports = Web3Wallet; -},{"./myetherwallet.js":74}],149:[function(require,module,exports){ +},{"./myetherwallet.js":77}],155:[function(require,module,exports){ 'use strict'; /** @@ -32828,13 +33135,13 @@ module.exports = Web3Wallet; }).info({ angularVersion: '1.6.8' }).directive('ngAnimateSwap', ngAnimateSwapDirective).directive('ngAnimateChildren', $$AnimateChildrenDirective).factory('$$rAFScheduler', $$rAFSchedulerFactory).provider('$$animateQueue', $$AnimateQueueProvider).provider('$$animation', $$AnimationProvider).provider('$animateCss', $AnimateCssProvider).provider('$$animateCssDriver', $$AnimateCssDriverProvider).provider('$$animateJs', $$AnimateJsProvider).provider('$$animateJsDriver', $$AnimateJsDriverProvider); })(window, window.angular); -},{}],150:[function(require,module,exports){ +},{}],156:[function(require,module,exports){ 'use strict'; require('./angular-animate'); module.exports = 'ngAnimate'; -},{"./angular-animate":149}],151:[function(require,module,exports){ +},{"./angular-animate":155}],157:[function(require,module,exports){ 'use strict'; /** @@ -33593,13 +33900,13 @@ module.exports = 'ngAnimate'; }]); })(window, window.angular); -},{}],152:[function(require,module,exports){ +},{}],158:[function(require,module,exports){ 'use strict'; require('./angular-sanitize'); module.exports = 'ngSanitize'; -},{"./angular-sanitize":151}],153:[function(require,module,exports){ +},{"./angular-sanitize":157}],159:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -33654,7 +33961,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return 'pascalprecht.translate'; }); -},{}],154:[function(require,module,exports){ +},{}],160:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37422,7 +37729,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return 'pascalprecht.translate'; }); -},{}],155:[function(require,module,exports){ +},{}],161:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -71048,13 +71355,13 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol !window.angular.$$csp().noInlineStyle && window.angular.element(document.head).prepend(''); -},{}],156:[function(require,module,exports){ +},{}],162:[function(require,module,exports){ 'use strict'; require('./angular'); module.exports = angular; -},{"./angular":155}],157:[function(require,module,exports){ +},{"./angular":161}],163:[function(require,module,exports){ 'use strict'; var asn1 = exports; @@ -71067,7 +71374,7 @@ asn1.constants = require('./asn1/constants'); asn1.decoders = require('./asn1/decoders'); asn1.encoders = require('./asn1/encoders'); -},{"./asn1/api":158,"./asn1/base":160,"./asn1/constants":164,"./asn1/decoders":166,"./asn1/encoders":169,"bn.js":186}],158:[function(require,module,exports){ +},{"./asn1/api":164,"./asn1/base":166,"./asn1/constants":170,"./asn1/decoders":172,"./asn1/encoders":175,"bn.js":192}],164:[function(require,module,exports){ 'use strict'; var asn1 = require('../asn1'); @@ -71126,7 +71433,7 @@ Entity.prototype.encode = function encode(data, enc, /* internal */reporter) { return this._getEncoder(enc).encode(data, reporter); }; -},{"../asn1":157,"inherits":608,"vm":695}],159:[function(require,module,exports){ +},{"../asn1":163,"inherits":614,"vm":701}],165:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -71234,7 +71541,7 @@ EncoderBuffer.prototype.join = function join(out, offset) { return out; }; -},{"../base":160,"buffer":219,"inherits":608}],160:[function(require,module,exports){ +},{"../base":166,"buffer":225,"inherits":614}],166:[function(require,module,exports){ 'use strict'; var base = exports; @@ -71244,7 +71551,7 @@ base.DecoderBuffer = require('./buffer').DecoderBuffer; base.EncoderBuffer = require('./buffer').EncoderBuffer; base.Node = require('./node'); -},{"./buffer":159,"./node":161,"./reporter":162}],161:[function(require,module,exports){ +},{"./buffer":165,"./node":167,"./reporter":168}],167:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -71773,7 +72080,7 @@ Node.prototype._isPrintstr = function isPrintstr(str) { ); }; -},{"../base":160,"minimalistic-assert":625}],162:[function(require,module,exports){ +},{"../base":166,"minimalistic-assert":631}],168:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -71893,7 +72200,7 @@ ReporterError.prototype.rethrow = function rethrow(msg) { return this; }; -},{"inherits":608}],163:[function(require,module,exports){ +},{"inherits":614}],169:[function(require,module,exports){ 'use strict'; var constants = require('../constants'); @@ -71939,7 +72246,7 @@ exports.tag = { }; exports.tagByName = constants._reverse(exports.tag); -},{"../constants":164}],164:[function(require,module,exports){ +},{"../constants":170}],170:[function(require,module,exports){ 'use strict'; var constants = exports; @@ -71961,7 +72268,7 @@ constants._reverse = function reverse(map) { constants.der = require('./der'); -},{"./der":163}],165:[function(require,module,exports){ +},{"./der":169}],171:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -72239,7 +72546,7 @@ function derDecodeLen(buf, primitive, fail) { return len; } -},{"../../asn1":157,"inherits":608}],166:[function(require,module,exports){ +},{"../../asn1":163,"inherits":614}],172:[function(require,module,exports){ 'use strict'; var decoders = exports; @@ -72247,7 +72554,7 @@ var decoders = exports; decoders.der = require('./der'); decoders.pem = require('./pem'); -},{"./der":165,"./pem":167}],167:[function(require,module,exports){ +},{"./der":171,"./pem":173}],173:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -72295,7 +72602,7 @@ PEMDecoder.prototype.decode = function decode(data, options) { return DERDecoder.prototype.decode.call(this, input, options); }; -},{"./der":165,"buffer":219,"inherits":608}],168:[function(require,module,exports){ +},{"./der":171,"buffer":225,"inherits":614}],174:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -72540,7 +72847,7 @@ function encodeTag(tag, primitive, cls, reporter) { return res; } -},{"../../asn1":157,"buffer":219,"inherits":608}],169:[function(require,module,exports){ +},{"../../asn1":163,"buffer":225,"inherits":614}],175:[function(require,module,exports){ 'use strict'; var encoders = exports; @@ -72548,7 +72855,7 @@ var encoders = exports; encoders.der = require('./der'); encoders.pem = require('./pem'); -},{"./der":168,"./pem":170}],170:[function(require,module,exports){ +},{"./der":174,"./pem":176}],176:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -72573,7 +72880,7 @@ PEMEncoder.prototype.encode = function encode(data, options) { return out.join('\n'); }; -},{"./der":168,"inherits":608}],171:[function(require,module,exports){ +},{"./der":174,"inherits":614}],177:[function(require,module,exports){ (function (global){ 'use strict'; @@ -73048,7 +73355,7 @@ var objectKeys = Object.keys || function (obj) { }; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"util/":689}],172:[function(require,module,exports){ +},{"util/":695}],178:[function(require,module,exports){ (function (global){ "use strict"; @@ -73080,7 +73387,7 @@ define(String.prototype, "padRight", "".padEnd); }); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"core-js/fn/regexp/escape":222,"core-js/shim":545,"regenerator-runtime/runtime":173}],173:[function(require,module,exports){ +},{"core-js/fn/regexp/escape":228,"core-js/shim":551,"regenerator-runtime/runtime":179}],179:[function(require,module,exports){ (function (global){ "use strict"; @@ -73790,7 +74097,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol (typeof global === "undefined" ? "undefined" : _typeof(global)) === "object" ? global : (typeof window === "undefined" ? "undefined" : _typeof(window)) === "object" ? window : (typeof self === "undefined" ? "undefined" : _typeof(self)) === "object" ? self : undefined); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],174:[function(require,module,exports){ +},{}],180:[function(require,module,exports){ 'use strict'; exports.byteLength = byteLength; @@ -73906,7 +74213,7 @@ function fromByteArray(uint8) { return parts.join(''); } -},{}],175:[function(require,module,exports){ +},{}],181:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -76637,7 +76944,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol } })(undefined); -},{}],176:[function(require,module,exports){ +},{}],182:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -76795,7 +77102,7 @@ module.exports = { } }; -},{"./wordlists/chinese_simplified.json":177,"./wordlists/chinese_traditional.json":178,"./wordlists/english.json":179,"./wordlists/french.json":180,"./wordlists/italian.json":181,"./wordlists/japanese.json":182,"./wordlists/korean.json":183,"./wordlists/spanish.json":184,"create-hash":548,"pbkdf2":632,"randombytes":645,"safe-buffer":662,"unorm":684}],177:[function(require,module,exports){ +},{"./wordlists/chinese_simplified.json":183,"./wordlists/chinese_traditional.json":184,"./wordlists/english.json":185,"./wordlists/french.json":186,"./wordlists/italian.json":187,"./wordlists/japanese.json":188,"./wordlists/korean.json":189,"./wordlists/spanish.json":190,"create-hash":554,"pbkdf2":638,"randombytes":651,"safe-buffer":668,"unorm":690}],183:[function(require,module,exports){ module.exports=[ "的", "一", @@ -78847,7 +79154,7 @@ module.exports=[ "歇" ] -},{}],178:[function(require,module,exports){ +},{}],184:[function(require,module,exports){ module.exports=[ "的", "一", @@ -80899,7 +81206,7 @@ module.exports=[ "歇" ] -},{}],179:[function(require,module,exports){ +},{}],185:[function(require,module,exports){ module.exports=[ "abandon", "ability", @@ -82951,7 +83258,7 @@ module.exports=[ "zoo" ] -},{}],180:[function(require,module,exports){ +},{}],186:[function(require,module,exports){ module.exports=[ "abaisser", "abandon", @@ -85003,7 +85310,7 @@ module.exports=[ "zoologie" ] -},{}],181:[function(require,module,exports){ +},{}],187:[function(require,module,exports){ module.exports=[ "abaco", "abbaglio", @@ -87055,7 +87362,7 @@ module.exports=[ "zuppa" ] -},{}],182:[function(require,module,exports){ +},{}],188:[function(require,module,exports){ module.exports=[ "あいこくしん", "あいさつ", @@ -89107,7 +89414,7 @@ module.exports=[ "われる" ] -},{}],183:[function(require,module,exports){ +},{}],189:[function(require,module,exports){ module.exports=[ "가격", "가끔", @@ -91159,7 +91466,7 @@ module.exports=[ "힘껏" ] -},{}],184:[function(require,module,exports){ +},{}],190:[function(require,module,exports){ module.exports=[ "ábaco", "abdomen", @@ -93211,7 +93518,7 @@ module.exports=[ "zurdo" ] -},{}],185:[function(require,module,exports){ +},{}],191:[function(require,module,exports){ 'use strict'; // Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki @@ -93328,7 +93635,7 @@ module.exports = { encode: encode }; -},{"safe-buffer":662}],186:[function(require,module,exports){ +},{"safe-buffer":668}],192:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -96693,7 +97000,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol }; })(typeof module === 'undefined' || module, undefined); -},{"buffer":188}],187:[function(require,module,exports){ +},{"buffer":194}],193:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -96760,10 +97067,10 @@ if ((typeof self === 'undefined' ? 'undefined' : _typeof(self)) === 'object') { } catch (e) {} } -},{"crypto":188}],188:[function(require,module,exports){ +},{"crypto":194}],194:[function(require,module,exports){ "use strict"; -},{}],189:[function(require,module,exports){ +},{}],195:[function(require,module,exports){ 'use strict'; // based on the aes implimentation in triple sec @@ -96983,7 +97290,7 @@ AES.prototype.scrub = function () { module.exports.AES = AES; -},{"safe-buffer":662}],190:[function(require,module,exports){ +},{"safe-buffer":668}],196:[function(require,module,exports){ 'use strict'; var aes = require('./aes'); @@ -97104,7 +97411,7 @@ StreamCipher.prototype.setAAD = function setAAD(buf) { module.exports = StreamCipher; -},{"./aes":189,"./ghash":194,"./incr32":195,"buffer-xor":218,"cipher-base":220,"inherits":608,"safe-buffer":662}],191:[function(require,module,exports){ +},{"./aes":195,"./ghash":200,"./incr32":201,"buffer-xor":224,"cipher-base":226,"inherits":614,"safe-buffer":668}],197:[function(require,module,exports){ 'use strict'; var ciphers = require('./encrypter'); @@ -97121,7 +97428,7 @@ exports.createDecipher = exports.Decipher = deciphers.createDecipher; exports.createDecipheriv = exports.Decipheriv = deciphers.createDecipheriv; exports.listCiphers = exports.getCiphers = getCiphers; -},{"./decrypter":192,"./encrypter":193,"./modes/list.json":203}],192:[function(require,module,exports){ +},{"./decrypter":198,"./encrypter":199,"./modes/list.json":209}],198:[function(require,module,exports){ 'use strict'; var AuthCipher = require('./authCipher'); @@ -97246,7 +97553,7 @@ function createDecipher(suite, password) { exports.createDecipher = createDecipher; exports.createDecipheriv = createDecipheriv; -},{"./aes":189,"./authCipher":190,"./modes":202,"./streamCipher":205,"cipher-base":220,"evp_bytestokey":588,"inherits":608,"safe-buffer":662}],193:[function(require,module,exports){ +},{"./aes":195,"./authCipher":196,"./modes":208,"./streamCipher":211,"cipher-base":226,"evp_bytestokey":594,"inherits":614,"safe-buffer":668}],199:[function(require,module,exports){ 'use strict'; var MODES = require('./modes'); @@ -97364,7 +97671,7 @@ function createCipher(suite, password) { exports.createCipheriv = createCipheriv; exports.createCipher = createCipher; -},{"./aes":189,"./authCipher":190,"./modes":202,"./streamCipher":205,"cipher-base":220,"evp_bytestokey":588,"inherits":608,"safe-buffer":662}],194:[function(require,module,exports){ +},{"./aes":195,"./authCipher":196,"./modes":208,"./streamCipher":211,"cipher-base":226,"evp_bytestokey":594,"inherits":614,"safe-buffer":668}],200:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -97452,7 +97759,7 @@ GHASH.prototype.final = function (abl, bl) { module.exports = GHASH; -},{"safe-buffer":662}],195:[function(require,module,exports){ +},{"safe-buffer":668}],201:[function(require,module,exports){ "use strict"; function incr32(iv) { @@ -97471,7 +97778,7 @@ function incr32(iv) { } module.exports = incr32; -},{}],196:[function(require,module,exports){ +},{}],202:[function(require,module,exports){ 'use strict'; var xor = require('buffer-xor'); @@ -97492,7 +97799,7 @@ exports.decrypt = function (self, block) { return xor(out, pad); }; -},{"buffer-xor":218}],197:[function(require,module,exports){ +},{"buffer-xor":224}],203:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -97529,7 +97836,7 @@ exports.encrypt = function (self, data, decrypt) { return out; }; -},{"buffer-xor":218,"safe-buffer":662}],198:[function(require,module,exports){ +},{"buffer-xor":224,"safe-buffer":668}],204:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -97575,7 +97882,7 @@ exports.encrypt = function (self, chunk, decrypt) { return out; }; -},{"safe-buffer":662}],199:[function(require,module,exports){ +},{"safe-buffer":668}],205:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -97601,7 +97908,7 @@ exports.encrypt = function (self, chunk, decrypt) { return out; }; -},{"safe-buffer":662}],200:[function(require,module,exports){ +},{"safe-buffer":668}],206:[function(require,module,exports){ 'use strict'; var xor = require('buffer-xor'); @@ -97632,7 +97939,7 @@ exports.encrypt = function (self, chunk) { return xor(chunk, pad); }; -},{"../incr32":195,"buffer-xor":218,"safe-buffer":662}],201:[function(require,module,exports){ +},{"../incr32":201,"buffer-xor":224,"safe-buffer":668}],207:[function(require,module,exports){ "use strict"; exports.encrypt = function (self, block) { @@ -97643,7 +97950,7 @@ exports.decrypt = function (self, block) { return self._cipher.decryptBlock(block); }; -},{}],202:[function(require,module,exports){ +},{}],208:[function(require,module,exports){ 'use strict'; var modeModules = { @@ -97665,7 +97972,7 @@ for (var key in modes) { module.exports = modes; -},{"./cbc":196,"./cfb":197,"./cfb1":198,"./cfb8":199,"./ctr":200,"./ecb":201,"./list.json":203,"./ofb":204}],203:[function(require,module,exports){ +},{"./cbc":202,"./cfb":203,"./cfb1":204,"./cfb8":205,"./ctr":206,"./ecb":207,"./list.json":209,"./ofb":210}],209:[function(require,module,exports){ module.exports={ "aes-128-ecb": { "cipher": "AES", @@ -97858,7 +98165,7 @@ module.exports={ } } -},{}],204:[function(require,module,exports){ +},{}],210:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -97880,7 +98187,7 @@ exports.encrypt = function (self, chunk) { }; }).call(this,require("buffer").Buffer) -},{"buffer":219,"buffer-xor":218}],205:[function(require,module,exports){ +},{"buffer":225,"buffer-xor":224}],211:[function(require,module,exports){ 'use strict'; var aes = require('./aes'); @@ -97911,7 +98218,7 @@ StreamCipher.prototype._final = function () { module.exports = StreamCipher; -},{"./aes":189,"cipher-base":220,"inherits":608,"safe-buffer":662}],206:[function(require,module,exports){ +},{"./aes":195,"cipher-base":226,"inherits":614,"safe-buffer":668}],212:[function(require,module,exports){ 'use strict'; var ebtk = require('evp_bytestokey'); @@ -97988,7 +98295,7 @@ function getCiphers() { } exports.listCiphers = exports.getCiphers = getCiphers; -},{"browserify-aes/browser":191,"browserify-aes/modes":202,"browserify-des":207,"browserify-des/modes":208,"evp_bytestokey":588}],207:[function(require,module,exports){ +},{"browserify-aes/browser":197,"browserify-aes/modes":208,"browserify-des":213,"browserify-des/modes":214,"evp_bytestokey":594}],213:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -98037,7 +98344,7 @@ DES.prototype._final = function () { }; }).call(this,require("buffer").Buffer) -},{"buffer":219,"cipher-base":220,"des.js":554,"inherits":608}],208:[function(require,module,exports){ +},{"buffer":225,"cipher-base":226,"des.js":560,"inherits":614}],214:[function(require,module,exports){ 'use strict'; exports['des-ecb'] = { @@ -98065,7 +98372,7 @@ exports['des-ede'] = { iv: 0 }; -},{}],209:[function(require,module,exports){ +},{}],215:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -98110,12 +98417,12 @@ function getr(priv) { } }).call(this,require("buffer").Buffer) -},{"bn.js":186,"buffer":219,"randombytes":645}],210:[function(require,module,exports){ +},{"bn.js":192,"buffer":225,"randombytes":651}],216:[function(require,module,exports){ 'use strict'; module.exports = require('./browser/algorithms.json'); -},{"./browser/algorithms.json":211}],211:[function(require,module,exports){ +},{"./browser/algorithms.json":217}],217:[function(require,module,exports){ module.exports={ "sha224WithRSAEncryption": { "sign": "rsa", @@ -98269,7 +98576,7 @@ module.exports={ } } -},{}],212:[function(require,module,exports){ +},{}],218:[function(require,module,exports){ module.exports={ "1.3.132.0.10": "secp256k1", "1.3.132.0.33": "p224", @@ -98279,7 +98586,7 @@ module.exports={ "1.3.132.0.35": "p521" } -},{}],213:[function(require,module,exports){ +},{}],219:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -98376,7 +98683,7 @@ module.exports = { }; }).call(this,require("buffer").Buffer) -},{"./algorithms.json":211,"./sign":214,"./verify":215,"buffer":219,"create-hash":548,"inherits":608,"stream":679}],214:[function(require,module,exports){ +},{"./algorithms.json":217,"./sign":220,"./verify":221,"buffer":225,"create-hash":554,"inherits":614,"stream":685}],220:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -98528,7 +98835,7 @@ module.exports.getKey = getKey; module.exports.makeKey = makeKey; }).call(this,require("buffer").Buffer) -},{"./curves.json":212,"bn.js":186,"browserify-rsa":209,"buffer":219,"create-hmac":551,"elliptic":567,"parse-asn1":631}],215:[function(require,module,exports){ +},{"./curves.json":218,"bn.js":192,"browserify-rsa":215,"buffer":225,"create-hmac":557,"elliptic":573,"parse-asn1":637}],221:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -98613,7 +98920,7 @@ function checkValue(b, q) { module.exports = verify; }).call(this,require("buffer").Buffer) -},{"./curves.json":212,"bn.js":186,"buffer":219,"elliptic":567,"parse-asn1":631}],216:[function(require,module,exports){ +},{"./curves.json":218,"bn.js":192,"buffer":225,"elliptic":573,"parse-asn1":637}],222:[function(require,module,exports){ (function (global){ 'use strict'; @@ -99146,7 +99453,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol })(undefined); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],217:[function(require,module,exports){ +},{}],223:[function(require,module,exports){ 'use strict'; // Base58 encoding/decoding @@ -99240,7 +99547,7 @@ module.exports = { decode: decode }; -},{}],218:[function(require,module,exports){ +},{}],224:[function(require,module,exports){ (function (Buffer){ "use strict"; @@ -99256,7 +99563,7 @@ module.exports = function xor(a, b) { }; }).call(this,require("buffer").Buffer) -},{"buffer":219}],219:[function(require,module,exports){ +},{"buffer":225}],225:[function(require,module,exports){ /*! * The buffer module from node.js, for the browser. * @@ -100922,7 +101229,7 @@ function numberIsNaN(obj) { return obj !== obj; // eslint-disable-line no-self-compare } -},{"base64-js":174,"ieee754":606}],220:[function(require,module,exports){ +},{"base64-js":180,"ieee754":612}],226:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -101025,7 +101332,7 @@ CipherBase.prototype._toString = function (value, enc, fin) { module.exports = CipherBase; -},{"inherits":608,"safe-buffer":662,"stream":679,"string_decoder":681}],221:[function(require,module,exports){ +},{"inherits":614,"safe-buffer":668,"stream":685,"string_decoder":687}],227:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -101124,13 +101431,13 @@ module.exports = { }; }).call(this,require("buffer").Buffer) -},{"bs58":217,"buffer":219,"create-hash":548}],222:[function(require,module,exports){ +},{"bs58":223,"buffer":225,"create-hash":554}],228:[function(require,module,exports){ 'use strict'; require('../../modules/core.regexp.escape'); module.exports = require('../../modules/_core').RegExp.escape; -},{"../../modules/_core":243,"../../modules/core.regexp.escape":348}],223:[function(require,module,exports){ +},{"../../modules/_core":249,"../../modules/core.regexp.escape":354}],229:[function(require,module,exports){ 'use strict'; module.exports = function (it) { @@ -101138,7 +101445,7 @@ module.exports = function (it) { return it; }; -},{}],224:[function(require,module,exports){ +},{}],230:[function(require,module,exports){ 'use strict'; var cof = require('./_cof'); @@ -101147,7 +101454,7 @@ module.exports = function (it, msg) { return +it; }; -},{"./_cof":238}],225:[function(require,module,exports){ +},{"./_cof":244}],231:[function(require,module,exports){ 'use strict'; // 22.1.3.31 Array.prototype[@@unscopables] @@ -101158,7 +101465,7 @@ module.exports = function (key) { ArrayProto[UNSCOPABLES][key] = true; }; -},{"./_hide":262,"./_wks":346}],226:[function(require,module,exports){ +},{"./_hide":268,"./_wks":352}],232:[function(require,module,exports){ 'use strict'; module.exports = function (it, Constructor, name, forbiddenField) { @@ -101167,7 +101474,7 @@ module.exports = function (it, Constructor, name, forbiddenField) { }return it; }; -},{}],227:[function(require,module,exports){ +},{}],233:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -101176,7 +101483,7 @@ module.exports = function (it) { return it; }; -},{"./_is-object":271}],228:[function(require,module,exports){ +},{"./_is-object":277}],234:[function(require,module,exports){ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) 'use strict'; @@ -101204,7 +101511,7 @@ module.exports = [].copyWithin || function copyWithin(target /* = 0 */, start /* }return O; }; -},{"./_to-absolute-index":331,"./_to-length":335,"./_to-object":336}],229:[function(require,module,exports){ +},{"./_to-absolute-index":337,"./_to-length":341,"./_to-object":342}],235:[function(require,module,exports){ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) 'use strict'; @@ -101223,7 +101530,7 @@ module.exports = function fill(value /* , start = 0, end = @length */) { }return O; }; -},{"./_to-absolute-index":331,"./_to-length":335,"./_to-object":336}],230:[function(require,module,exports){ +},{"./_to-absolute-index":337,"./_to-length":341,"./_to-object":342}],236:[function(require,module,exports){ 'use strict'; var forOf = require('./_for-of'); @@ -101234,7 +101541,7 @@ module.exports = function (iter, ITERATOR) { return result; }; -},{"./_for-of":259}],231:[function(require,module,exports){ +},{"./_for-of":265}],237:[function(require,module,exports){ 'use strict'; // false -> Array#indexOf @@ -101263,7 +101570,7 @@ module.exports = function (IS_INCLUDES) { }; }; -},{"./_to-absolute-index":331,"./_to-iobject":334,"./_to-length":335}],232:[function(require,module,exports){ +},{"./_to-absolute-index":337,"./_to-iobject":340,"./_to-length":341}],238:[function(require,module,exports){ 'use strict'; // 0 -> Array#forEach @@ -101316,7 +101623,7 @@ module.exports = function (TYPE, $create) { }; }; -},{"./_array-species-create":235,"./_ctx":245,"./_iobject":267,"./_to-length":335,"./_to-object":336}],233:[function(require,module,exports){ +},{"./_array-species-create":241,"./_ctx":251,"./_iobject":273,"./_to-length":341,"./_to-object":342}],239:[function(require,module,exports){ 'use strict'; var aFunction = require('./_a-function'); @@ -101349,7 +101656,7 @@ module.exports = function (that, callbackfn, aLen, memo, isRight) { }return memo; }; -},{"./_a-function":223,"./_iobject":267,"./_to-length":335,"./_to-object":336}],234:[function(require,module,exports){ +},{"./_a-function":229,"./_iobject":273,"./_to-length":341,"./_to-object":342}],240:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -101369,7 +101676,7 @@ module.exports = function (original) { }return C === undefined ? Array : C; }; -},{"./_is-array":269,"./_is-object":271,"./_wks":346}],235:[function(require,module,exports){ +},{"./_is-array":275,"./_is-object":277,"./_wks":352}],241:[function(require,module,exports){ 'use strict'; // 9.4.2.3 ArraySpeciesCreate(originalArray, length) @@ -101379,7 +101686,7 @@ module.exports = function (original, length) { return new (speciesConstructor(original))(length); }; -},{"./_array-species-constructor":234}],236:[function(require,module,exports){ +},{"./_array-species-constructor":240}],242:[function(require,module,exports){ 'use strict'; var aFunction = require('./_a-function'); @@ -101408,7 +101715,7 @@ module.exports = Function.bind || function bind(that /* , ...args */) { return bound; }; -},{"./_a-function":223,"./_invoke":266,"./_is-object":271}],237:[function(require,module,exports){ +},{"./_a-function":229,"./_invoke":272,"./_is-object":277}],243:[function(require,module,exports){ 'use strict'; // getting tag from 19.1.3.6 Object.prototype.toString() @@ -101437,7 +101744,7 @@ module.exports = function (it) { : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B; }; -},{"./_cof":238,"./_wks":346}],238:[function(require,module,exports){ +},{"./_cof":244,"./_wks":352}],244:[function(require,module,exports){ "use strict"; var toString = {}.toString; @@ -101446,7 +101753,7 @@ module.exports = function (it) { return toString.call(it).slice(8, -1); }; -},{}],239:[function(require,module,exports){ +},{}],245:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp').f; @@ -101596,7 +101903,7 @@ module.exports = { } }; -},{"./_an-instance":226,"./_ctx":245,"./_descriptors":249,"./_for-of":259,"./_iter-define":275,"./_iter-step":277,"./_meta":285,"./_object-create":290,"./_object-dp":291,"./_redefine-all":310,"./_set-species":317,"./_validate-collection":343}],240:[function(require,module,exports){ +},{"./_an-instance":232,"./_ctx":251,"./_descriptors":255,"./_for-of":265,"./_iter-define":281,"./_iter-step":283,"./_meta":291,"./_object-create":296,"./_object-dp":297,"./_redefine-all":316,"./_set-species":323,"./_validate-collection":349}],246:[function(require,module,exports){ 'use strict'; // https://github.com/DavidBruant/Map-Set.prototype.toJSON @@ -101609,7 +101916,7 @@ module.exports = function (NAME) { }; }; -},{"./_array-from-iterable":230,"./_classof":237}],241:[function(require,module,exports){ +},{"./_array-from-iterable":236,"./_classof":243}],247:[function(require,module,exports){ 'use strict'; var redefineAll = require('./_redefine-all'); @@ -101695,7 +102002,7 @@ module.exports = { ufstore: uncaughtFrozenStore }; -},{"./_an-instance":226,"./_an-object":227,"./_array-methods":232,"./_for-of":259,"./_has":261,"./_is-object":271,"./_meta":285,"./_redefine-all":310,"./_validate-collection":343}],242:[function(require,module,exports){ +},{"./_an-instance":232,"./_an-object":233,"./_array-methods":238,"./_for-of":265,"./_has":267,"./_is-object":277,"./_meta":291,"./_redefine-all":316,"./_validate-collection":349}],248:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -101789,13 +102096,13 @@ module.exports = function (NAME, wrapper, methods, common, IS_MAP, IS_WEAK) { return C; }; -},{"./_an-instance":226,"./_export":253,"./_fails":255,"./_for-of":259,"./_global":260,"./_inherit-if-required":265,"./_is-object":271,"./_iter-detect":276,"./_meta":285,"./_redefine":311,"./_redefine-all":310,"./_set-to-string-tag":318}],243:[function(require,module,exports){ +},{"./_an-instance":232,"./_export":259,"./_fails":261,"./_for-of":265,"./_global":266,"./_inherit-if-required":271,"./_is-object":277,"./_iter-detect":282,"./_meta":291,"./_redefine":317,"./_redefine-all":316,"./_set-to-string-tag":324}],249:[function(require,module,exports){ 'use strict'; var core = module.exports = { version: '2.5.3' }; if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef -},{}],244:[function(require,module,exports){ +},{}],250:[function(require,module,exports){ 'use strict'; var $defineProperty = require('./_object-dp'); @@ -101805,7 +102112,7 @@ module.exports = function (object, index, value) { if (index in object) $defineProperty.f(object, index, createDesc(0, value));else object[index] = value; }; -},{"./_object-dp":291,"./_property-desc":309}],245:[function(require,module,exports){ +},{"./_object-dp":297,"./_property-desc":315}],251:[function(require,module,exports){ 'use strict'; // optional / simple context binding @@ -101832,7 +102139,7 @@ module.exports = function (fn, that, length) { }; }; -},{"./_a-function":223}],246:[function(require,module,exports){ +},{"./_a-function":229}],252:[function(require,module,exports){ 'use strict'; // 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString() @@ -101858,7 +102165,7 @@ module.exports = fails(function () { return s + ('00000' + Math.abs(y)).slice(s ? -6 : -4) + '-' + lz(d.getUTCMonth() + 1) + '-' + lz(d.getUTCDate()) + 'T' + lz(d.getUTCHours()) + ':' + lz(d.getUTCMinutes()) + ':' + lz(d.getUTCSeconds()) + '.' + (m > 99 ? m : '0' + lz(m)) + 'Z'; } : $toISOString; -},{"./_fails":255}],247:[function(require,module,exports){ +},{"./_fails":261}],253:[function(require,module,exports){ 'use strict'; var anObject = require('./_an-object'); @@ -101870,7 +102177,7 @@ module.exports = function (hint) { return toPrimitive(anObject(this), hint != NUMBER); }; -},{"./_an-object":227,"./_to-primitive":337}],248:[function(require,module,exports){ +},{"./_an-object":233,"./_to-primitive":343}],254:[function(require,module,exports){ "use strict"; // 7.2.1 RequireObjectCoercible(argument) @@ -101879,7 +102186,7 @@ module.exports = function (it) { return it; }; -},{}],249:[function(require,module,exports){ +},{}],255:[function(require,module,exports){ 'use strict'; // Thank's IE8 for his funny defineProperty @@ -101889,7 +102196,7 @@ module.exports = !require('./_fails')(function () { } }).a != 7; }); -},{"./_fails":255}],250:[function(require,module,exports){ +},{"./_fails":261}],256:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -101900,13 +102207,13 @@ module.exports = function (it) { return is ? document.createElement(it) : {}; }; -},{"./_global":260,"./_is-object":271}],251:[function(require,module,exports){ +},{"./_global":266,"./_is-object":277}],257:[function(require,module,exports){ 'use strict'; // IE 8- don't enum bug keys module.exports = 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'.split(','); -},{}],252:[function(require,module,exports){ +},{}],258:[function(require,module,exports){ 'use strict'; // all enumerable object keys, includes symbols @@ -101927,7 +102234,7 @@ module.exports = function (it) { }return result; }; -},{"./_object-gops":297,"./_object-keys":300,"./_object-pie":301}],253:[function(require,module,exports){ +},{"./_object-gops":303,"./_object-keys":306,"./_object-pie":307}],259:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -101974,7 +102281,7 @@ $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; -},{"./_core":243,"./_ctx":245,"./_global":260,"./_hide":262,"./_redefine":311}],254:[function(require,module,exports){ +},{"./_core":249,"./_ctx":251,"./_global":266,"./_hide":268,"./_redefine":317}],260:[function(require,module,exports){ 'use strict'; var MATCH = require('./_wks')('match'); @@ -101990,7 +102297,7 @@ module.exports = function (KEY) { }return true; }; -},{"./_wks":346}],255:[function(require,module,exports){ +},{"./_wks":352}],261:[function(require,module,exports){ "use strict"; module.exports = function (exec) { @@ -102001,7 +102308,7 @@ module.exports = function (exec) { } }; -},{}],256:[function(require,module,exports){ +},{}],262:[function(require,module,exports){ 'use strict'; var hide = require('./_hide'); @@ -102037,7 +102344,7 @@ module.exports = function (KEY, length, exec) { } }; -},{"./_defined":248,"./_fails":255,"./_hide":262,"./_redefine":311,"./_wks":346}],257:[function(require,module,exports){ +},{"./_defined":254,"./_fails":261,"./_hide":268,"./_redefine":317,"./_wks":352}],263:[function(require,module,exports){ 'use strict'; // 21.2.5.3 get RegExp.prototype.flags @@ -102053,7 +102360,7 @@ module.exports = function () { return result; }; -},{"./_an-object":227}],258:[function(require,module,exports){ +},{"./_an-object":233}],264:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-flatMap/#sec-FlattenIntoArray @@ -102095,7 +102402,7 @@ function flattenIntoArray(target, original, source, sourceLen, start, depth, map module.exports = flattenIntoArray; -},{"./_ctx":245,"./_is-array":269,"./_is-object":271,"./_to-length":335,"./_wks":346}],259:[function(require,module,exports){ +},{"./_ctx":251,"./_is-array":275,"./_is-object":277,"./_to-length":341,"./_wks":352}],265:[function(require,module,exports){ 'use strict'; var ctx = require('./_ctx'); @@ -102126,7 +102433,7 @@ var _exports = module.exports = function (iterable, entries, fn, that, ITERATOR) _exports.BREAK = BREAK; _exports.RETURN = RETURN; -},{"./_an-object":227,"./_ctx":245,"./_is-array-iter":268,"./_iter-call":273,"./_to-length":335,"./core.get-iterator-method":347}],260:[function(require,module,exports){ +},{"./_an-object":233,"./_ctx":251,"./_is-array-iter":274,"./_iter-call":279,"./_to-length":341,"./core.get-iterator-method":353}],266:[function(require,module,exports){ 'use strict'; // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 @@ -102135,7 +102442,7 @@ var global = module.exports = typeof window != 'undefined' && window.Math == Mat : Function('return this')(); if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef -},{}],261:[function(require,module,exports){ +},{}],267:[function(require,module,exports){ "use strict"; var hasOwnProperty = {}.hasOwnProperty; @@ -102143,7 +102450,7 @@ module.exports = function (it, key) { return hasOwnProperty.call(it, key); }; -},{}],262:[function(require,module,exports){ +},{}],268:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp'); @@ -102155,13 +102462,13 @@ module.exports = require('./_descriptors') ? function (object, key, value) { return object; }; -},{"./_descriptors":249,"./_object-dp":291,"./_property-desc":309}],263:[function(require,module,exports){ +},{"./_descriptors":255,"./_object-dp":297,"./_property-desc":315}],269:[function(require,module,exports){ 'use strict'; var document = require('./_global').document; module.exports = document && document.documentElement; -},{"./_global":260}],264:[function(require,module,exports){ +},{"./_global":266}],270:[function(require,module,exports){ 'use strict'; module.exports = !require('./_descriptors') && !require('./_fails')(function () { @@ -102170,7 +102477,7 @@ module.exports = !require('./_descriptors') && !require('./_fails')(function () } }).a != 7; }); -},{"./_descriptors":249,"./_dom-create":250,"./_fails":255}],265:[function(require,module,exports){ +},{"./_descriptors":255,"./_dom-create":256,"./_fails":261}],271:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -102183,7 +102490,7 @@ module.exports = function (that, target, C) { }return that; }; -},{"./_is-object":271,"./_set-proto":316}],266:[function(require,module,exports){ +},{"./_is-object":277,"./_set-proto":322}],272:[function(require,module,exports){ "use strict"; // fast apply, http://jsperf.lnkit.com/fast-apply/5 @@ -102203,7 +102510,7 @@ module.exports = function (fn, args, that) { }return fn.apply(that, args); }; -},{}],267:[function(require,module,exports){ +},{}],273:[function(require,module,exports){ 'use strict'; // fallback for non-array-like ES3 and non-enumerable old V8 strings @@ -102213,7 +102520,7 @@ module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) { return cof(it) == 'String' ? it.split('') : Object(it); }; -},{"./_cof":238}],268:[function(require,module,exports){ +},{"./_cof":244}],274:[function(require,module,exports){ 'use strict'; // check on default Array iterator @@ -102225,7 +102532,7 @@ module.exports = function (it) { return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it); }; -},{"./_iterators":278,"./_wks":346}],269:[function(require,module,exports){ +},{"./_iterators":284,"./_wks":352}],275:[function(require,module,exports){ 'use strict'; // 7.2.2 IsArray(argument) @@ -102234,7 +102541,7 @@ module.exports = Array.isArray || function isArray(arg) { return cof(arg) == 'Array'; }; -},{"./_cof":238}],270:[function(require,module,exports){ +},{"./_cof":244}],276:[function(require,module,exports){ 'use strict'; // 20.1.2.3 Number.isInteger(number) @@ -102244,7 +102551,7 @@ module.exports = function isInteger(it) { return !isObject(it) && isFinite(it) && floor(it) === it; }; -},{"./_is-object":271}],271:[function(require,module,exports){ +},{"./_is-object":277}],277:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -102253,7 +102560,7 @@ module.exports = function (it) { return (typeof it === 'undefined' ? 'undefined' : _typeof(it)) === 'object' ? it !== null : typeof it === 'function'; }; -},{}],272:[function(require,module,exports){ +},{}],278:[function(require,module,exports){ 'use strict'; // 7.2.8 IsRegExp(argument) @@ -102265,7 +102572,7 @@ module.exports = function (it) { return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp'); }; -},{"./_cof":238,"./_is-object":271,"./_wks":346}],273:[function(require,module,exports){ +},{"./_cof":244,"./_is-object":277,"./_wks":352}],279:[function(require,module,exports){ 'use strict'; // call something on iterator step with safe closing on error @@ -102281,7 +102588,7 @@ module.exports = function (iterator, fn, value, entries) { } }; -},{"./_an-object":227}],274:[function(require,module,exports){ +},{"./_an-object":233}],280:[function(require,module,exports){ 'use strict'; var create = require('./_object-create'); @@ -102299,7 +102606,7 @@ module.exports = function (Constructor, NAME, next) { setToStringTag(Constructor, NAME + ' Iterator'); }; -},{"./_hide":262,"./_object-create":290,"./_property-desc":309,"./_set-to-string-tag":318,"./_wks":346}],275:[function(require,module,exports){ +},{"./_hide":268,"./_object-create":296,"./_property-desc":315,"./_set-to-string-tag":324,"./_wks":352}],281:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library'); @@ -102384,7 +102691,7 @@ module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE return methods; }; -},{"./_export":253,"./_has":261,"./_hide":262,"./_iter-create":274,"./_iterators":278,"./_library":279,"./_object-gpo":298,"./_redefine":311,"./_set-to-string-tag":318,"./_wks":346}],276:[function(require,module,exports){ +},{"./_export":259,"./_has":267,"./_hide":268,"./_iter-create":280,"./_iterators":284,"./_library":285,"./_object-gpo":304,"./_redefine":317,"./_set-to-string-tag":324,"./_wks":352}],282:[function(require,module,exports){ 'use strict'; var ITERATOR = require('./_wks')('iterator'); @@ -102418,24 +102725,24 @@ module.exports = function (exec, skipClosing) { return safe; }; -},{"./_wks":346}],277:[function(require,module,exports){ +},{"./_wks":352}],283:[function(require,module,exports){ "use strict"; module.exports = function (done, value) { return { value: value, done: !!done }; }; -},{}],278:[function(require,module,exports){ +},{}],284:[function(require,module,exports){ "use strict"; module.exports = {}; -},{}],279:[function(require,module,exports){ +},{}],285:[function(require,module,exports){ "use strict"; module.exports = false; -},{}],280:[function(require,module,exports){ +},{}],286:[function(require,module,exports){ "use strict"; // 20.2.2.14 Math.expm1(x) @@ -102448,7 +102755,7 @@ module.exports = !$expm1 return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1; } : $expm1; -},{}],281:[function(require,module,exports){ +},{}],287:[function(require,module,exports){ 'use strict'; // 20.2.2.16 Math.fround(x) @@ -102475,7 +102782,7 @@ module.exports = Math.fround || function fround(x) { return $sign * result; }; -},{"./_math-sign":284}],282:[function(require,module,exports){ +},{"./_math-sign":290}],288:[function(require,module,exports){ "use strict"; // 20.2.2.20 Math.log1p(x) @@ -102483,7 +102790,7 @@ module.exports = Math.log1p || function log1p(x) { return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x); }; -},{}],283:[function(require,module,exports){ +},{}],289:[function(require,module,exports){ "use strict"; // https://rwaldron.github.io/proposal-math-extensions/ @@ -102503,7 +102810,7 @@ module.exports = Math.scale || function scale(x, inLow, inHigh, outLow, outHigh) return (x - inLow) * (outHigh - outLow) / (inHigh - inLow) + outLow; }; -},{}],284:[function(require,module,exports){ +},{}],290:[function(require,module,exports){ "use strict"; // 20.2.2.28 Math.sign(x) @@ -102512,7 +102819,7 @@ module.exports = Math.sign || function sign(x) { return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; }; -},{}],285:[function(require,module,exports){ +},{}],291:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -102571,7 +102878,7 @@ var meta = module.exports = { onFreeze: onFreeze }; -},{"./_fails":255,"./_has":261,"./_is-object":271,"./_object-dp":291,"./_uid":341}],286:[function(require,module,exports){ +},{"./_fails":261,"./_has":267,"./_is-object":277,"./_object-dp":297,"./_uid":347}],292:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -102630,7 +102937,7 @@ module.exports = { exp: exp }; -},{"./_export":253,"./_shared":320,"./es6.map":378,"./es6.weak-map":484}],287:[function(require,module,exports){ +},{"./_export":259,"./_shared":326,"./es6.map":384,"./es6.weak-map":490}],293:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -102701,7 +103008,7 @@ module.exports = function () { }; }; -},{"./_cof":238,"./_global":260,"./_task":330}],288:[function(require,module,exports){ +},{"./_cof":244,"./_global":266,"./_task":336}],294:[function(require,module,exports){ 'use strict'; // 25.4.1.5 NewPromiseCapability(C) @@ -102722,7 +103029,7 @@ module.exports.f = function (C) { return new PromiseCapability(C); }; -},{"./_a-function":223}],289:[function(require,module,exports){ +},{"./_a-function":229}],295:[function(require,module,exports){ 'use strict'; // 19.1.2.1 Object.assign(target, source, ...) @@ -102764,7 +103071,7 @@ module.exports = !$assign || require('./_fails')(function () { }return T; } : $assign; -},{"./_fails":255,"./_iobject":267,"./_object-gops":297,"./_object-keys":300,"./_object-pie":301,"./_to-object":336}],290:[function(require,module,exports){ +},{"./_fails":261,"./_iobject":273,"./_object-gops":303,"./_object-keys":306,"./_object-pie":307,"./_to-object":342}],296:[function(require,module,exports){ 'use strict'; // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) @@ -102810,7 +103117,7 @@ module.exports = Object.create || function create(O, Properties) { return Properties === undefined ? result : dPs(result, Properties); }; -},{"./_an-object":227,"./_dom-create":250,"./_enum-bug-keys":251,"./_html":263,"./_object-dps":292,"./_shared-key":319}],291:[function(require,module,exports){ +},{"./_an-object":233,"./_dom-create":256,"./_enum-bug-keys":257,"./_html":269,"./_object-dps":298,"./_shared-key":325}],297:[function(require,module,exports){ 'use strict'; var anObject = require('./_an-object'); @@ -102830,7 +103137,7 @@ exports.f = require('./_descriptors') ? Object.defineProperty : function defineP return O; }; -},{"./_an-object":227,"./_descriptors":249,"./_ie8-dom-define":264,"./_to-primitive":337}],292:[function(require,module,exports){ +},{"./_an-object":233,"./_descriptors":255,"./_ie8-dom-define":270,"./_to-primitive":343}],298:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp'); @@ -102848,7 +103155,7 @@ module.exports = require('./_descriptors') ? Object.defineProperties : function }return O; }; -},{"./_an-object":227,"./_descriptors":249,"./_object-dp":291,"./_object-keys":300}],293:[function(require,module,exports){ +},{"./_an-object":233,"./_descriptors":255,"./_object-dp":297,"./_object-keys":306}],299:[function(require,module,exports){ 'use strict'; // Forced replacement prototype accessors methods @@ -102860,7 +103167,7 @@ module.exports = require('./_library') || !require('./_fails')(function () { delete require('./_global')[K]; }); -},{"./_fails":255,"./_global":260,"./_library":279}],294:[function(require,module,exports){ +},{"./_fails":261,"./_global":266,"./_library":285}],300:[function(require,module,exports){ 'use strict'; var pIE = require('./_object-pie'); @@ -102880,7 +103187,7 @@ exports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]); }; -},{"./_descriptors":249,"./_has":261,"./_ie8-dom-define":264,"./_object-pie":301,"./_property-desc":309,"./_to-iobject":334,"./_to-primitive":337}],295:[function(require,module,exports){ +},{"./_descriptors":255,"./_has":267,"./_ie8-dom-define":270,"./_object-pie":307,"./_property-desc":315,"./_to-iobject":340,"./_to-primitive":343}],301:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -102904,7 +103211,7 @@ module.exports.f = function getOwnPropertyNames(it) { return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it)); }; -},{"./_object-gopn":296,"./_to-iobject":334}],296:[function(require,module,exports){ +},{"./_object-gopn":302,"./_to-iobject":340}],302:[function(require,module,exports){ 'use strict'; // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) @@ -102915,12 +103222,12 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { return $keys(O, hiddenKeys); }; -},{"./_enum-bug-keys":251,"./_object-keys-internal":299}],297:[function(require,module,exports){ +},{"./_enum-bug-keys":257,"./_object-keys-internal":305}],303:[function(require,module,exports){ "use strict"; exports.f = Object.getOwnPropertySymbols; -},{}],298:[function(require,module,exports){ +},{}],304:[function(require,module,exports){ 'use strict'; // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) @@ -102937,7 +103244,7 @@ module.exports = Object.getPrototypeOf || function (O) { }return O instanceof Object ? ObjectProto : null; }; -},{"./_has":261,"./_shared-key":319,"./_to-object":336}],299:[function(require,module,exports){ +},{"./_has":267,"./_shared-key":325,"./_to-object":342}],305:[function(require,module,exports){ 'use strict'; var has = require('./_has'); @@ -102960,7 +103267,7 @@ module.exports = function (object, names) { }return result; }; -},{"./_array-includes":231,"./_has":261,"./_shared-key":319,"./_to-iobject":334}],300:[function(require,module,exports){ +},{"./_array-includes":237,"./_has":267,"./_shared-key":325,"./_to-iobject":340}],306:[function(require,module,exports){ 'use strict'; // 19.1.2.14 / 15.2.3.14 Object.keys(O) @@ -102971,12 +103278,12 @@ module.exports = Object.keys || function keys(O) { return $keys(O, enumBugKeys); }; -},{"./_enum-bug-keys":251,"./_object-keys-internal":299}],301:[function(require,module,exports){ +},{"./_enum-bug-keys":257,"./_object-keys-internal":305}],307:[function(require,module,exports){ "use strict"; exports.f = {}.propertyIsEnumerable; -},{}],302:[function(require,module,exports){ +},{}],308:[function(require,module,exports){ 'use strict'; // most Object methods by ES6 should accept primitives @@ -102992,7 +103299,7 @@ module.exports = function (KEY, exec) { }), 'Object', exp); }; -},{"./_core":243,"./_export":253,"./_fails":255}],303:[function(require,module,exports){ +},{"./_core":249,"./_export":259,"./_fails":261}],309:[function(require,module,exports){ 'use strict'; var getKeys = require('./_object-keys'); @@ -103014,7 +103321,7 @@ module.exports = function (isEntries) { }; }; -},{"./_object-keys":300,"./_object-pie":301,"./_to-iobject":334}],304:[function(require,module,exports){ +},{"./_object-keys":306,"./_object-pie":307,"./_to-iobject":340}],310:[function(require,module,exports){ 'use strict'; // all object keys, includes non-enumerable and symbols @@ -103028,7 +103335,7 @@ module.exports = Reflect && Reflect.ownKeys || function ownKeys(it) { return getSymbols ? keys.concat(getSymbols(it)) : keys; }; -},{"./_an-object":227,"./_global":260,"./_object-gopn":296,"./_object-gops":297}],305:[function(require,module,exports){ +},{"./_an-object":233,"./_global":266,"./_object-gopn":302,"./_object-gops":303}],311:[function(require,module,exports){ 'use strict'; var $parseFloat = require('./_global').parseFloat; @@ -103040,7 +103347,7 @@ module.exports = 1 / $parseFloat(require('./_string-ws') + '-0') !== -Infinity ? return result === 0 && string.charAt(0) == '-' ? -0 : result; } : $parseFloat; -},{"./_global":260,"./_string-trim":328,"./_string-ws":329}],306:[function(require,module,exports){ +},{"./_global":266,"./_string-trim":334,"./_string-ws":335}],312:[function(require,module,exports){ 'use strict'; var $parseInt = require('./_global').parseInt; @@ -103053,7 +103360,7 @@ module.exports = $parseInt(ws + '08') !== 8 || $parseInt(ws + '0x16') !== 22 ? f return $parseInt(string, radix >>> 0 || (hex.test(string) ? 16 : 10)); } : $parseInt; -},{"./_global":260,"./_string-trim":328,"./_string-ws":329}],307:[function(require,module,exports){ +},{"./_global":266,"./_string-trim":334,"./_string-ws":335}],313:[function(require,module,exports){ "use strict"; module.exports = function (exec) { @@ -103064,7 +103371,7 @@ module.exports = function (exec) { } }; -},{}],308:[function(require,module,exports){ +},{}],314:[function(require,module,exports){ 'use strict'; var anObject = require('./_an-object'); @@ -103080,7 +103387,7 @@ module.exports = function (C, x) { return promiseCapability.promise; }; -},{"./_an-object":227,"./_is-object":271,"./_new-promise-capability":288}],309:[function(require,module,exports){ +},{"./_an-object":233,"./_is-object":277,"./_new-promise-capability":294}],315:[function(require,module,exports){ "use strict"; module.exports = function (bitmap, value) { @@ -103092,7 +103399,7 @@ module.exports = function (bitmap, value) { }; }; -},{}],310:[function(require,module,exports){ +},{}],316:[function(require,module,exports){ 'use strict'; var redefine = require('./_redefine'); @@ -103102,7 +103409,7 @@ module.exports = function (target, src, safe) { }return target; }; -},{"./_redefine":311}],311:[function(require,module,exports){ +},{"./_redefine":317}],317:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -103137,7 +103444,7 @@ require('./_core').inspectSource = function (it) { return typeof this == 'function' && this[SRC] || $toString.call(this); }); -},{"./_core":243,"./_global":260,"./_has":261,"./_hide":262,"./_uid":341}],312:[function(require,module,exports){ +},{"./_core":249,"./_global":266,"./_has":267,"./_hide":268,"./_uid":347}],318:[function(require,module,exports){ "use strict"; module.exports = function (regExp, replace) { @@ -103149,7 +103456,7 @@ module.exports = function (regExp, replace) { }; }; -},{}],313:[function(require,module,exports){ +},{}],319:[function(require,module,exports){ "use strict"; // 7.2.9 SameValue(x, y) @@ -103158,7 +103465,7 @@ module.exports = Object.is || function is(x, y) { return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y; }; -},{}],314:[function(require,module,exports){ +},{}],320:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/ @@ -103189,7 +103496,7 @@ module.exports = function (COLLECTION) { } }); }; -},{"./_a-function":223,"./_ctx":245,"./_export":253,"./_for-of":259}],315:[function(require,module,exports){ +},{"./_a-function":229,"./_ctx":251,"./_export":259,"./_for-of":265}],321:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/ @@ -103205,7 +103512,7 @@ module.exports = function (COLLECTION) { } }); }; -},{"./_export":253}],316:[function(require,module,exports){ +},{"./_export":259}],322:[function(require,module,exports){ 'use strict'; // Works with __proto__ only. Old v8 can't work with null proto objects. @@ -103235,7 +103542,7 @@ module.exports = { check: check }; -},{"./_an-object":227,"./_ctx":245,"./_is-object":271,"./_object-gopd":294}],317:[function(require,module,exports){ +},{"./_an-object":233,"./_ctx":251,"./_is-object":277,"./_object-gopd":300}],323:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -103253,7 +103560,7 @@ module.exports = function (KEY) { }); }; -},{"./_descriptors":249,"./_global":260,"./_object-dp":291,"./_wks":346}],318:[function(require,module,exports){ +},{"./_descriptors":255,"./_global":266,"./_object-dp":297,"./_wks":352}],324:[function(require,module,exports){ 'use strict'; var def = require('./_object-dp').f; @@ -103264,7 +103571,7 @@ module.exports = function (it, tag, stat) { if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag }); }; -},{"./_has":261,"./_object-dp":291,"./_wks":346}],319:[function(require,module,exports){ +},{"./_has":267,"./_object-dp":297,"./_wks":352}],325:[function(require,module,exports){ 'use strict'; var shared = require('./_shared')('keys'); @@ -103273,7 +103580,7 @@ module.exports = function (key) { return shared[key] || (shared[key] = uid(key)); }; -},{"./_shared":320,"./_uid":341}],320:[function(require,module,exports){ +},{"./_shared":326,"./_uid":347}],326:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -103283,7 +103590,7 @@ module.exports = function (key) { return store[key] || (store[key] = {}); }; -},{"./_global":260}],321:[function(require,module,exports){ +},{"./_global":266}],327:[function(require,module,exports){ 'use strict'; // 7.3.20 SpeciesConstructor(O, defaultConstructor) @@ -103296,7 +103603,7 @@ module.exports = function (O, D) { return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S); }; -},{"./_a-function":223,"./_an-object":227,"./_wks":346}],322:[function(require,module,exports){ +},{"./_a-function":229,"./_an-object":233,"./_wks":352}],328:[function(require,module,exports){ 'use strict'; var fails = require('./_fails'); @@ -103308,7 +103615,7 @@ module.exports = function (method, arg) { }); }; -},{"./_fails":255}],323:[function(require,module,exports){ +},{"./_fails":261}],329:[function(require,module,exports){ 'use strict'; var toInteger = require('./_to-integer'); @@ -103327,7 +103634,7 @@ module.exports = function (TO_STRING) { }; }; -},{"./_defined":248,"./_to-integer":333}],324:[function(require,module,exports){ +},{"./_defined":254,"./_to-integer":339}],330:[function(require,module,exports){ 'use strict'; // helper for String#{startsWith, endsWith, includes} @@ -103339,7 +103646,7 @@ module.exports = function (that, searchString, NAME) { return String(defined(that)); }; -},{"./_defined":248,"./_is-regexp":272}],325:[function(require,module,exports){ +},{"./_defined":254,"./_is-regexp":278}],331:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -103362,7 +103669,7 @@ module.exports = function (NAME, exec) { }), 'String', O); }; -},{"./_defined":248,"./_export":253,"./_fails":255}],326:[function(require,module,exports){ +},{"./_defined":254,"./_export":259,"./_fails":261}],332:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-string-pad-start-end @@ -103382,7 +103689,7 @@ module.exports = function (that, maxLength, fillString, left) { return left ? stringFiller + S : S + stringFiller; }; -},{"./_defined":248,"./_string-repeat":327,"./_to-length":335}],327:[function(require,module,exports){ +},{"./_defined":254,"./_string-repeat":333,"./_to-length":341}],333:[function(require,module,exports){ 'use strict'; var toInteger = require('./_to-integer'); @@ -103398,7 +103705,7 @@ module.exports = function repeat(count) { }return res; }; -},{"./_defined":248,"./_to-integer":333}],328:[function(require,module,exports){ +},{"./_defined":254,"./_to-integer":339}],334:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -103432,12 +103739,12 @@ var trim = exporter.trim = function (string, TYPE) { module.exports = exporter; -},{"./_defined":248,"./_export":253,"./_fails":255,"./_string-ws":329}],329:[function(require,module,exports){ +},{"./_defined":254,"./_export":259,"./_fails":261,"./_string-ws":335}],335:[function(require,module,exports){ 'use strict'; module.exports = '\t\n\x0B\f\r \xA0\u1680\u180E\u2000\u2001\u2002\u2003' + '\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; -},{}],330:[function(require,module,exports){ +},{}],336:[function(require,module,exports){ 'use strict'; var ctx = require('./_ctx'); @@ -103526,7 +103833,7 @@ module.exports = { clear: clearTask }; -},{"./_cof":238,"./_ctx":245,"./_dom-create":250,"./_global":260,"./_html":263,"./_invoke":266}],331:[function(require,module,exports){ +},{"./_cof":244,"./_ctx":251,"./_dom-create":256,"./_global":266,"./_html":269,"./_invoke":272}],337:[function(require,module,exports){ 'use strict'; var toInteger = require('./_to-integer'); @@ -103537,7 +103844,7 @@ module.exports = function (index, length) { return index < 0 ? max(index + length, 0) : min(index, length); }; -},{"./_to-integer":333}],332:[function(require,module,exports){ +},{"./_to-integer":339}],338:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/ecma262/#sec-toindex @@ -103551,7 +103858,7 @@ module.exports = function (it) { return length; }; -},{"./_to-integer":333,"./_to-length":335}],333:[function(require,module,exports){ +},{"./_to-integer":339,"./_to-length":341}],339:[function(require,module,exports){ "use strict"; // 7.1.4 ToInteger @@ -103561,7 +103868,7 @@ module.exports = function (it) { return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); }; -},{}],334:[function(require,module,exports){ +},{}],340:[function(require,module,exports){ 'use strict'; // to indexed object, toObject with fallback for non-array-like ES3 strings @@ -103571,7 +103878,7 @@ module.exports = function (it) { return IObject(defined(it)); }; -},{"./_defined":248,"./_iobject":267}],335:[function(require,module,exports){ +},{"./_defined":254,"./_iobject":273}],341:[function(require,module,exports){ 'use strict'; // 7.1.15 ToLength @@ -103581,7 +103888,7 @@ module.exports = function (it) { return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 }; -},{"./_to-integer":333}],336:[function(require,module,exports){ +},{"./_to-integer":339}],342:[function(require,module,exports){ 'use strict'; // 7.1.13 ToObject(argument) @@ -103590,7 +103897,7 @@ module.exports = function (it) { return Object(defined(it)); }; -},{"./_defined":248}],337:[function(require,module,exports){ +},{"./_defined":254}],343:[function(require,module,exports){ 'use strict'; // 7.1.1 ToPrimitive(input [, PreferredType]) @@ -103606,7 +103913,7 @@ module.exports = function (it, S) { throw TypeError("Can't convert object to primitive value"); }; -},{"./_is-object":271}],338:[function(require,module,exports){ +},{"./_is-object":277}],344:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -104091,7 +104398,7 @@ if (require('./_descriptors')) { }; } else module.exports = function () {/* empty */}; -},{"./_an-instance":226,"./_array-copy-within":228,"./_array-fill":229,"./_array-includes":231,"./_array-methods":232,"./_classof":237,"./_ctx":245,"./_descriptors":249,"./_export":253,"./_fails":255,"./_global":260,"./_has":261,"./_hide":262,"./_is-array-iter":268,"./_is-object":271,"./_iter-detect":276,"./_iterators":278,"./_library":279,"./_object-create":290,"./_object-dp":291,"./_object-gopd":294,"./_object-gopn":296,"./_object-gpo":298,"./_property-desc":309,"./_redefine-all":310,"./_set-species":317,"./_species-constructor":321,"./_to-absolute-index":331,"./_to-index":332,"./_to-integer":333,"./_to-length":335,"./_to-object":336,"./_to-primitive":337,"./_typed":340,"./_typed-buffer":339,"./_uid":341,"./_wks":346,"./core.get-iterator-method":347,"./es6.array.iterator":359}],339:[function(require,module,exports){ +},{"./_an-instance":232,"./_array-copy-within":234,"./_array-fill":235,"./_array-includes":237,"./_array-methods":238,"./_classof":243,"./_ctx":251,"./_descriptors":255,"./_export":259,"./_fails":261,"./_global":266,"./_has":267,"./_hide":268,"./_is-array-iter":274,"./_is-object":277,"./_iter-detect":282,"./_iterators":284,"./_library":285,"./_object-create":296,"./_object-dp":297,"./_object-gopd":300,"./_object-gopn":302,"./_object-gpo":304,"./_property-desc":315,"./_redefine-all":316,"./_set-species":323,"./_species-constructor":327,"./_to-absolute-index":337,"./_to-index":338,"./_to-integer":339,"./_to-length":341,"./_to-object":342,"./_to-primitive":343,"./_typed":346,"./_typed-buffer":345,"./_uid":347,"./_wks":352,"./core.get-iterator-method":353,"./es6.array.iterator":365}],345:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -104374,7 +104681,7 @@ hide($DataView[PROTOTYPE], $typed.VIEW, true); exports[ARRAY_BUFFER] = $ArrayBuffer; exports[DATA_VIEW] = $DataView; -},{"./_an-instance":226,"./_array-fill":229,"./_descriptors":249,"./_fails":255,"./_global":260,"./_hide":262,"./_library":279,"./_object-dp":291,"./_object-gopn":296,"./_redefine-all":310,"./_set-to-string-tag":318,"./_to-index":332,"./_to-integer":333,"./_to-length":335,"./_typed":340}],340:[function(require,module,exports){ +},{"./_an-instance":232,"./_array-fill":235,"./_descriptors":255,"./_fails":261,"./_global":266,"./_hide":268,"./_library":285,"./_object-dp":297,"./_object-gopn":302,"./_redefine-all":316,"./_set-to-string-tag":324,"./_to-index":338,"./_to-integer":339,"./_to-length":341,"./_typed":346}],346:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -104404,7 +104711,7 @@ module.exports = { VIEW: VIEW }; -},{"./_global":260,"./_hide":262,"./_uid":341}],341:[function(require,module,exports){ +},{"./_global":266,"./_hide":268,"./_uid":347}],347:[function(require,module,exports){ 'use strict'; var id = 0; @@ -104413,7 +104720,7 @@ module.exports = function (key) { return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); }; -},{}],342:[function(require,module,exports){ +},{}],348:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -104421,7 +104728,7 @@ var navigator = global.navigator; module.exports = navigator && navigator.userAgent || ''; -},{"./_global":260}],343:[function(require,module,exports){ +},{"./_global":266}],349:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -104430,7 +104737,7 @@ module.exports = function (it, TYPE) { return it; }; -},{"./_is-object":271}],344:[function(require,module,exports){ +},{"./_is-object":277}],350:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -104443,12 +104750,12 @@ module.exports = function (name) { if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) }); }; -},{"./_core":243,"./_global":260,"./_library":279,"./_object-dp":291,"./_wks-ext":345}],345:[function(require,module,exports){ +},{"./_core":249,"./_global":266,"./_library":285,"./_object-dp":297,"./_wks-ext":351}],351:[function(require,module,exports){ 'use strict'; exports.f = require('./_wks'); -},{"./_wks":346}],346:[function(require,module,exports){ +},{"./_wks":352}],352:[function(require,module,exports){ 'use strict'; var store = require('./_shared')('wks'); @@ -104462,7 +104769,7 @@ var $exports = module.exports = function (name) { $exports.store = store; -},{"./_global":260,"./_shared":320,"./_uid":341}],347:[function(require,module,exports){ +},{"./_global":266,"./_shared":326,"./_uid":347}],353:[function(require,module,exports){ 'use strict'; var classof = require('./_classof'); @@ -104472,7 +104779,7 @@ module.exports = require('./_core').getIteratorMethod = function (it) { if (it != undefined) return it[ITERATOR] || it['@@iterator'] || Iterators[classof(it)]; }; -},{"./_classof":237,"./_core":243,"./_iterators":278,"./_wks":346}],348:[function(require,module,exports){ +},{"./_classof":243,"./_core":249,"./_iterators":284,"./_wks":352}],354:[function(require,module,exports){ 'use strict'; // https://github.com/benjamingr/RexExp.escape @@ -104483,7 +104790,7 @@ $export($export.S, 'RegExp', { escape: function escape(it) { return $re(it); } }); -},{"./_export":253,"./_replacer":312}],349:[function(require,module,exports){ +},{"./_export":259,"./_replacer":318}],355:[function(require,module,exports){ 'use strict'; // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) @@ -104493,7 +104800,7 @@ $export($export.P, 'Array', { copyWithin: require('./_array-copy-within') }); require('./_add-to-unscopables')('copyWithin'); -},{"./_add-to-unscopables":225,"./_array-copy-within":228,"./_export":253}],350:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-copy-within":234,"./_export":259}],356:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104506,7 +104813,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].every, true), 'A } }); -},{"./_array-methods":232,"./_export":253,"./_strict-method":322}],351:[function(require,module,exports){ +},{"./_array-methods":238,"./_export":259,"./_strict-method":328}],357:[function(require,module,exports){ 'use strict'; // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) @@ -104516,7 +104823,7 @@ $export($export.P, 'Array', { fill: require('./_array-fill') }); require('./_add-to-unscopables')('fill'); -},{"./_add-to-unscopables":225,"./_array-fill":229,"./_export":253}],352:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-fill":235,"./_export":259}],358:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104529,7 +104836,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].filter, true), ' } }); -},{"./_array-methods":232,"./_export":253,"./_strict-method":322}],353:[function(require,module,exports){ +},{"./_array-methods":238,"./_export":259,"./_strict-method":328}],359:[function(require,module,exports){ 'use strict'; // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined) @@ -104548,7 +104855,7 @@ $export($export.P + $export.F * forced, 'Array', { }); require('./_add-to-unscopables')(KEY); -},{"./_add-to-unscopables":225,"./_array-methods":232,"./_export":253}],354:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-methods":238,"./_export":259}],360:[function(require,module,exports){ 'use strict'; // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined) @@ -104567,7 +104874,7 @@ $export($export.P + $export.F * forced, 'Array', { }); require('./_add-to-unscopables')(KEY); -},{"./_add-to-unscopables":225,"./_array-methods":232,"./_export":253}],355:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-methods":238,"./_export":259}],361:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104581,7 +104888,7 @@ $export($export.P + $export.F * !STRICT, 'Array', { } }); -},{"./_array-methods":232,"./_export":253,"./_strict-method":322}],356:[function(require,module,exports){ +},{"./_array-methods":238,"./_export":259,"./_strict-method":328}],362:[function(require,module,exports){ 'use strict'; var ctx = require('./_ctx'); @@ -104623,7 +104930,7 @@ $export($export.S + $export.F * !require('./_iter-detect')(function (iter) { } }); -},{"./_create-property":244,"./_ctx":245,"./_export":253,"./_is-array-iter":268,"./_iter-call":273,"./_iter-detect":276,"./_to-length":335,"./_to-object":336,"./core.get-iterator-method":347}],357:[function(require,module,exports){ +},{"./_create-property":250,"./_ctx":251,"./_export":259,"./_is-array-iter":274,"./_iter-call":279,"./_iter-detect":282,"./_to-length":341,"./_to-object":342,"./core.get-iterator-method":353}],363:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104640,7 +104947,7 @@ $export($export.P + $export.F * (NEGATIVE_ZERO || !require('./_strict-method')($ } }); -},{"./_array-includes":231,"./_export":253,"./_strict-method":322}],358:[function(require,module,exports){ +},{"./_array-includes":237,"./_export":259,"./_strict-method":328}],364:[function(require,module,exports){ 'use strict'; // 22.1.2.2 / 15.4.3.2 Array.isArray(arg) @@ -104648,7 +104955,7 @@ var $export = require('./_export'); $export($export.S, 'Array', { isArray: require('./_is-array') }); -},{"./_export":253,"./_is-array":269}],359:[function(require,module,exports){ +},{"./_export":259,"./_is-array":275}],365:[function(require,module,exports){ 'use strict'; var addToUnscopables = require('./_add-to-unscopables'); @@ -104685,7 +104992,7 @@ addToUnscopables('keys'); addToUnscopables('values'); addToUnscopables('entries'); -},{"./_add-to-unscopables":225,"./_iter-define":275,"./_iter-step":277,"./_iterators":278,"./_to-iobject":334}],360:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_iter-define":281,"./_iter-step":283,"./_iterators":284,"./_to-iobject":340}],366:[function(require,module,exports){ 'use strict'; // 22.1.3.13 Array.prototype.join(separator) @@ -104700,7 +105007,7 @@ $export($export.P + $export.F * (require('./_iobject') != Object || !require('./ } }); -},{"./_export":253,"./_iobject":267,"./_strict-method":322,"./_to-iobject":334}],361:[function(require,module,exports){ +},{"./_export":259,"./_iobject":273,"./_strict-method":328,"./_to-iobject":340}],367:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104726,7 +105033,7 @@ $export($export.P + $export.F * (NEGATIVE_ZERO || !require('./_strict-method')($ } }); -},{"./_export":253,"./_strict-method":322,"./_to-integer":333,"./_to-iobject":334,"./_to-length":335}],362:[function(require,module,exports){ +},{"./_export":259,"./_strict-method":328,"./_to-integer":339,"./_to-iobject":340,"./_to-length":341}],368:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104739,7 +105046,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].map, true), 'Arr } }); -},{"./_array-methods":232,"./_export":253,"./_strict-method":322}],363:[function(require,module,exports){ +},{"./_array-methods":238,"./_export":259,"./_strict-method":328}],369:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104762,7 +105069,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_create-property":244,"./_export":253,"./_fails":255}],364:[function(require,module,exports){ +},{"./_create-property":250,"./_export":259,"./_fails":261}],370:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104775,7 +105082,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].reduceRight, tru } }); -},{"./_array-reduce":233,"./_export":253,"./_strict-method":322}],365:[function(require,module,exports){ +},{"./_array-reduce":239,"./_export":259,"./_strict-method":328}],371:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104788,7 +105095,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].reduce, true), ' } }); -},{"./_array-reduce":233,"./_export":253,"./_strict-method":322}],366:[function(require,module,exports){ +},{"./_array-reduce":239,"./_export":259,"./_strict-method":328}],372:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104818,7 +105125,7 @@ $export($export.P + $export.F * require('./_fails')(function () { } }); -},{"./_cof":238,"./_export":253,"./_fails":255,"./_html":263,"./_to-absolute-index":331,"./_to-length":335}],367:[function(require,module,exports){ +},{"./_cof":244,"./_export":259,"./_fails":261,"./_html":269,"./_to-absolute-index":337,"./_to-length":341}],373:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104831,7 +105138,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].some, true), 'Ar } }); -},{"./_array-methods":232,"./_export":253,"./_strict-method":322}],368:[function(require,module,exports){ +},{"./_array-methods":238,"./_export":259,"./_strict-method":328}],374:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104855,12 +105162,12 @@ $export($export.P + $export.F * (fails(function () { } }); -},{"./_a-function":223,"./_export":253,"./_fails":255,"./_strict-method":322,"./_to-object":336}],369:[function(require,module,exports){ +},{"./_a-function":229,"./_export":259,"./_fails":261,"./_strict-method":328,"./_to-object":342}],375:[function(require,module,exports){ 'use strict'; require('./_set-species')('Array'); -},{"./_set-species":317}],370:[function(require,module,exports){ +},{"./_set-species":323}],376:[function(require,module,exports){ 'use strict'; // 20.3.3.1 / 15.9.4.4 Date.now() @@ -104870,7 +105177,7 @@ $export($export.S, 'Date', { now: function now() { return new Date().getTime(); } }); -},{"./_export":253}],371:[function(require,module,exports){ +},{"./_export":259}],377:[function(require,module,exports){ 'use strict'; // 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString() @@ -104882,7 +105189,7 @@ $export($export.P + $export.F * (Date.prototype.toISOString !== toISOString), 'D toISOString: toISOString }); -},{"./_date-to-iso-string":246,"./_export":253}],372:[function(require,module,exports){ +},{"./_date-to-iso-string":252,"./_export":259}],378:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104902,7 +105209,7 @@ $export($export.P + $export.F * require('./_fails')(function () { } }); -},{"./_export":253,"./_fails":255,"./_to-object":336,"./_to-primitive":337}],373:[function(require,module,exports){ +},{"./_export":259,"./_fails":261,"./_to-object":342,"./_to-primitive":343}],379:[function(require,module,exports){ 'use strict'; var TO_PRIMITIVE = require('./_wks')('toPrimitive'); @@ -104910,7 +105217,7 @@ var proto = Date.prototype; if (!(TO_PRIMITIVE in proto)) require('./_hide')(proto, TO_PRIMITIVE, require('./_date-to-primitive')); -},{"./_date-to-primitive":247,"./_hide":262,"./_wks":346}],374:[function(require,module,exports){ +},{"./_date-to-primitive":253,"./_hide":268,"./_wks":352}],380:[function(require,module,exports){ 'use strict'; var DateProto = Date.prototype; @@ -104926,7 +105233,7 @@ if (new Date(NaN) + '' != INVALID_DATE) { }); } -},{"./_redefine":311}],375:[function(require,module,exports){ +},{"./_redefine":317}],381:[function(require,module,exports){ 'use strict'; // 19.2.3.2 / 15.3.4.5 Function.prototype.bind(thisArg, args...) @@ -104934,7 +105241,7 @@ var $export = require('./_export'); $export($export.P, 'Function', { bind: require('./_bind') }); -},{"./_bind":236,"./_export":253}],376:[function(require,module,exports){ +},{"./_bind":242,"./_export":259}],382:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -104951,7 +105258,7 @@ if (!(HAS_INSTANCE in FunctionProto)) require('./_object-dp').f(FunctionProto, H }return false; } }); -},{"./_is-object":271,"./_object-dp":291,"./_object-gpo":298,"./_wks":346}],377:[function(require,module,exports){ +},{"./_is-object":277,"./_object-dp":297,"./_object-gpo":304,"./_wks":352}],383:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp').f; @@ -104971,7 +105278,7 @@ NAME in FProto || require('./_descriptors') && dP(FProto, NAME, { } }); -},{"./_descriptors":249,"./_object-dp":291}],378:[function(require,module,exports){ +},{"./_descriptors":255,"./_object-dp":297}],384:[function(require,module,exports){ 'use strict'; var strong = require('./_collection-strong'); @@ -104995,7 +105302,7 @@ module.exports = require('./_collection')(MAP, function (get) { } }, strong, true); -},{"./_collection":242,"./_collection-strong":239,"./_validate-collection":343}],379:[function(require,module,exports){ +},{"./_collection":248,"./_collection-strong":245,"./_validate-collection":349}],385:[function(require,module,exports){ 'use strict'; // 20.2.2.3 Math.acosh(x) @@ -105014,7 +105321,7 @@ $export($export.S + $export.F * !($acosh } }); -},{"./_export":253,"./_math-log1p":282}],380:[function(require,module,exports){ +},{"./_export":259,"./_math-log1p":288}],386:[function(require,module,exports){ 'use strict'; // 20.2.2.5 Math.asinh(x) @@ -105028,7 +105335,7 @@ function asinh(x) { // Tor Browser bug: Math.asinh(0) -> -0 $export($export.S + $export.F * !($asinh && 1 / $asinh(0) > 0), 'Math', { asinh: asinh }); -},{"./_export":253}],381:[function(require,module,exports){ +},{"./_export":259}],387:[function(require,module,exports){ 'use strict'; // 20.2.2.7 Math.atanh(x) @@ -105042,7 +105349,7 @@ $export($export.S + $export.F * !($atanh && 1 / $atanh(-0) < 0), 'Math', { } }); -},{"./_export":253}],382:[function(require,module,exports){ +},{"./_export":259}],388:[function(require,module,exports){ 'use strict'; // 20.2.2.9 Math.cbrt(x) @@ -105055,7 +105362,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253,"./_math-sign":284}],383:[function(require,module,exports){ +},{"./_export":259,"./_math-sign":290}],389:[function(require,module,exports){ 'use strict'; // 20.2.2.11 Math.clz32(x) @@ -105067,7 +105374,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],384:[function(require,module,exports){ +},{"./_export":259}],390:[function(require,module,exports){ 'use strict'; // 20.2.2.12 Math.cosh(x) @@ -105080,7 +105387,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],385:[function(require,module,exports){ +},{"./_export":259}],391:[function(require,module,exports){ 'use strict'; // 20.2.2.14 Math.expm1(x) @@ -105089,7 +105396,7 @@ var $expm1 = require('./_math-expm1'); $export($export.S + $export.F * ($expm1 != Math.expm1), 'Math', { expm1: $expm1 }); -},{"./_export":253,"./_math-expm1":280}],386:[function(require,module,exports){ +},{"./_export":259,"./_math-expm1":286}],392:[function(require,module,exports){ 'use strict'; // 20.2.2.16 Math.fround(x) @@ -105097,7 +105404,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { fround: require('./_math-fround') }); -},{"./_export":253,"./_math-fround":281}],387:[function(require,module,exports){ +},{"./_export":259,"./_math-fround":287}],393:[function(require,module,exports){ 'use strict'; // 20.2.2.17 Math.hypot([value1[, value2[, … ]]]) @@ -105127,7 +105434,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],388:[function(require,module,exports){ +},{"./_export":259}],394:[function(require,module,exports){ 'use strict'; // 20.2.2.18 Math.imul(x, y) @@ -105148,7 +105455,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_export":253,"./_fails":255}],389:[function(require,module,exports){ +},{"./_export":259,"./_fails":261}],395:[function(require,module,exports){ 'use strict'; // 20.2.2.21 Math.log10(x) @@ -105160,7 +105467,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],390:[function(require,module,exports){ +},{"./_export":259}],396:[function(require,module,exports){ 'use strict'; // 20.2.2.20 Math.log1p(x) @@ -105168,7 +105475,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { log1p: require('./_math-log1p') }); -},{"./_export":253,"./_math-log1p":282}],391:[function(require,module,exports){ +},{"./_export":259,"./_math-log1p":288}],397:[function(require,module,exports){ 'use strict'; // 20.2.2.22 Math.log2(x) @@ -105180,7 +105487,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],392:[function(require,module,exports){ +},{"./_export":259}],398:[function(require,module,exports){ 'use strict'; // 20.2.2.28 Math.sign(x) @@ -105188,7 +105495,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { sign: require('./_math-sign') }); -},{"./_export":253,"./_math-sign":284}],393:[function(require,module,exports){ +},{"./_export":259,"./_math-sign":290}],399:[function(require,module,exports){ 'use strict'; // 20.2.2.30 Math.sinh(x) @@ -105205,7 +105512,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_export":253,"./_fails":255,"./_math-expm1":280}],394:[function(require,module,exports){ +},{"./_export":259,"./_fails":261,"./_math-expm1":286}],400:[function(require,module,exports){ 'use strict'; // 20.2.2.33 Math.tanh(x) @@ -105221,7 +105528,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253,"./_math-expm1":280}],395:[function(require,module,exports){ +},{"./_export":259,"./_math-expm1":286}],401:[function(require,module,exports){ 'use strict'; // 20.2.2.34 Math.trunc(x) @@ -105233,7 +105540,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],396:[function(require,module,exports){ +},{"./_export":259}],402:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -105307,7 +105614,7 @@ if (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) { require('./_redefine')(global, NUMBER, $Number); } -},{"./_cof":238,"./_descriptors":249,"./_fails":255,"./_global":260,"./_has":261,"./_inherit-if-required":265,"./_object-create":290,"./_object-dp":291,"./_object-gopd":294,"./_object-gopn":296,"./_redefine":311,"./_string-trim":328,"./_to-primitive":337}],397:[function(require,module,exports){ +},{"./_cof":244,"./_descriptors":255,"./_fails":261,"./_global":266,"./_has":267,"./_inherit-if-required":271,"./_object-create":296,"./_object-dp":297,"./_object-gopd":300,"./_object-gopn":302,"./_redefine":317,"./_string-trim":334,"./_to-primitive":343}],403:[function(require,module,exports){ 'use strict'; // 20.1.2.1 Number.EPSILON @@ -105315,7 +105622,7 @@ var $export = require('./_export'); $export($export.S, 'Number', { EPSILON: Math.pow(2, -52) }); -},{"./_export":253}],398:[function(require,module,exports){ +},{"./_export":259}],404:[function(require,module,exports){ 'use strict'; // 20.1.2.2 Number.isFinite(number) @@ -105328,7 +105635,7 @@ $export($export.S, 'Number', { } }); -},{"./_export":253,"./_global":260}],399:[function(require,module,exports){ +},{"./_export":259,"./_global":266}],405:[function(require,module,exports){ 'use strict'; // 20.1.2.3 Number.isInteger(number) @@ -105336,7 +105643,7 @@ var $export = require('./_export'); $export($export.S, 'Number', { isInteger: require('./_is-integer') }); -},{"./_export":253,"./_is-integer":270}],400:[function(require,module,exports){ +},{"./_export":259,"./_is-integer":276}],406:[function(require,module,exports){ 'use strict'; // 20.1.2.4 Number.isNaN(number) @@ -105349,7 +105656,7 @@ $export($export.S, 'Number', { } }); -},{"./_export":253}],401:[function(require,module,exports){ +},{"./_export":259}],407:[function(require,module,exports){ 'use strict'; // 20.1.2.5 Number.isSafeInteger(number) @@ -105363,7 +105670,7 @@ $export($export.S, 'Number', { } }); -},{"./_export":253,"./_is-integer":270}],402:[function(require,module,exports){ +},{"./_export":259,"./_is-integer":276}],408:[function(require,module,exports){ 'use strict'; // 20.1.2.6 Number.MAX_SAFE_INTEGER @@ -105371,7 +105678,7 @@ var $export = require('./_export'); $export($export.S, 'Number', { MAX_SAFE_INTEGER: 0x1fffffffffffff }); -},{"./_export":253}],403:[function(require,module,exports){ +},{"./_export":259}],409:[function(require,module,exports){ 'use strict'; // 20.1.2.10 Number.MIN_SAFE_INTEGER @@ -105379,7 +105686,7 @@ var $export = require('./_export'); $export($export.S, 'Number', { MIN_SAFE_INTEGER: -0x1fffffffffffff }); -},{"./_export":253}],404:[function(require,module,exports){ +},{"./_export":259}],410:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105387,7 +105694,7 @@ var $parseFloat = require('./_parse-float'); // 20.1.2.12 Number.parseFloat(string) $export($export.S + $export.F * (Number.parseFloat != $parseFloat), 'Number', { parseFloat: $parseFloat }); -},{"./_export":253,"./_parse-float":305}],405:[function(require,module,exports){ +},{"./_export":259,"./_parse-float":311}],411:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105395,7 +105702,7 @@ var $parseInt = require('./_parse-int'); // 20.1.2.13 Number.parseInt(string, radix) $export($export.S + $export.F * (Number.parseInt != $parseInt), 'Number', { parseInt: $parseInt }); -},{"./_export":253,"./_parse-int":306}],406:[function(require,module,exports){ +},{"./_export":259,"./_parse-int":312}],412:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105507,7 +105814,7 @@ $export($export.P + $export.F * (!!$toFixed && (0.00008.toFixed(3) !== '0.000' | } }); -},{"./_a-number-value":224,"./_export":253,"./_fails":255,"./_string-repeat":327,"./_to-integer":333}],407:[function(require,module,exports){ +},{"./_a-number-value":230,"./_export":259,"./_fails":261,"./_string-repeat":333,"./_to-integer":339}],413:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105528,7 +105835,7 @@ $export($export.P + $export.F * ($fails(function () { } }); -},{"./_a-number-value":224,"./_export":253,"./_fails":255}],408:[function(require,module,exports){ +},{"./_a-number-value":230,"./_export":259,"./_fails":261}],414:[function(require,module,exports){ 'use strict'; // 19.1.3.1 Object.assign(target, source) @@ -105536,28 +105843,28 @@ var $export = require('./_export'); $export($export.S + $export.F, 'Object', { assign: require('./_object-assign') }); -},{"./_export":253,"./_object-assign":289}],409:[function(require,module,exports){ +},{"./_export":259,"./_object-assign":295}],415:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) $export($export.S, 'Object', { create: require('./_object-create') }); -},{"./_export":253,"./_object-create":290}],410:[function(require,module,exports){ +},{"./_export":259,"./_object-create":296}],416:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); // 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties) $export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperties: require('./_object-dps') }); -},{"./_descriptors":249,"./_export":253,"./_object-dps":292}],411:[function(require,module,exports){ +},{"./_descriptors":255,"./_export":259,"./_object-dps":298}],417:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes) $export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperty: require('./_object-dp').f }); -},{"./_descriptors":249,"./_export":253,"./_object-dp":291}],412:[function(require,module,exports){ +},{"./_descriptors":255,"./_export":259,"./_object-dp":297}],418:[function(require,module,exports){ 'use strict'; // 19.1.2.5 Object.freeze(O) @@ -105570,7 +105877,7 @@ require('./_object-sap')('freeze', function ($freeze) { }; }); -},{"./_is-object":271,"./_meta":285,"./_object-sap":302}],413:[function(require,module,exports){ +},{"./_is-object":277,"./_meta":291,"./_object-sap":308}],419:[function(require,module,exports){ 'use strict'; // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P) @@ -105583,7 +105890,7 @@ require('./_object-sap')('getOwnPropertyDescriptor', function () { }; }); -},{"./_object-gopd":294,"./_object-sap":302,"./_to-iobject":334}],414:[function(require,module,exports){ +},{"./_object-gopd":300,"./_object-sap":308,"./_to-iobject":340}],420:[function(require,module,exports){ 'use strict'; // 19.1.2.7 Object.getOwnPropertyNames(O) @@ -105591,7 +105898,7 @@ require('./_object-sap')('getOwnPropertyNames', function () { return require('./_object-gopn-ext').f; }); -},{"./_object-gopn-ext":295,"./_object-sap":302}],415:[function(require,module,exports){ +},{"./_object-gopn-ext":301,"./_object-sap":308}],421:[function(require,module,exports){ 'use strict'; // 19.1.2.9 Object.getPrototypeOf(O) @@ -105604,7 +105911,7 @@ require('./_object-sap')('getPrototypeOf', function () { }; }); -},{"./_object-gpo":298,"./_object-sap":302,"./_to-object":336}],416:[function(require,module,exports){ +},{"./_object-gpo":304,"./_object-sap":308,"./_to-object":342}],422:[function(require,module,exports){ 'use strict'; // 19.1.2.11 Object.isExtensible(O) @@ -105616,7 +105923,7 @@ require('./_object-sap')('isExtensible', function ($isExtensible) { }; }); -},{"./_is-object":271,"./_object-sap":302}],417:[function(require,module,exports){ +},{"./_is-object":277,"./_object-sap":308}],423:[function(require,module,exports){ 'use strict'; // 19.1.2.12 Object.isFrozen(O) @@ -105628,7 +105935,7 @@ require('./_object-sap')('isFrozen', function ($isFrozen) { }; }); -},{"./_is-object":271,"./_object-sap":302}],418:[function(require,module,exports){ +},{"./_is-object":277,"./_object-sap":308}],424:[function(require,module,exports){ 'use strict'; // 19.1.2.13 Object.isSealed(O) @@ -105640,14 +105947,14 @@ require('./_object-sap')('isSealed', function ($isSealed) { }; }); -},{"./_is-object":271,"./_object-sap":302}],419:[function(require,module,exports){ +},{"./_is-object":277,"./_object-sap":308}],425:[function(require,module,exports){ 'use strict'; // 19.1.3.10 Object.is(value1, value2) var $export = require('./_export'); $export($export.S, 'Object', { is: require('./_same-value') }); -},{"./_export":253,"./_same-value":313}],420:[function(require,module,exports){ +},{"./_export":259,"./_same-value":319}],426:[function(require,module,exports){ 'use strict'; // 19.1.2.14 Object.keys(O) @@ -105660,7 +105967,7 @@ require('./_object-sap')('keys', function () { }; }); -},{"./_object-keys":300,"./_object-sap":302,"./_to-object":336}],421:[function(require,module,exports){ +},{"./_object-keys":306,"./_object-sap":308,"./_to-object":342}],427:[function(require,module,exports){ 'use strict'; // 19.1.2.15 Object.preventExtensions(O) @@ -105673,7 +105980,7 @@ require('./_object-sap')('preventExtensions', function ($preventExtensions) { }; }); -},{"./_is-object":271,"./_meta":285,"./_object-sap":302}],422:[function(require,module,exports){ +},{"./_is-object":277,"./_meta":291,"./_object-sap":308}],428:[function(require,module,exports){ 'use strict'; // 19.1.2.17 Object.seal(O) @@ -105686,14 +105993,14 @@ require('./_object-sap')('seal', function ($seal) { }; }); -},{"./_is-object":271,"./_meta":285,"./_object-sap":302}],423:[function(require,module,exports){ +},{"./_is-object":277,"./_meta":291,"./_object-sap":308}],429:[function(require,module,exports){ 'use strict'; // 19.1.3.19 Object.setPrototypeOf(O, proto) var $export = require('./_export'); $export($export.S, 'Object', { setPrototypeOf: require('./_set-proto').set }); -},{"./_export":253,"./_set-proto":316}],424:[function(require,module,exports){ +},{"./_export":259,"./_set-proto":322}],430:[function(require,module,exports){ 'use strict'; // 19.1.3.6 Object.prototype.toString() @@ -105706,7 +106013,7 @@ if (test + '' != '[object z]') { }, true); } -},{"./_classof":237,"./_redefine":311,"./_wks":346}],425:[function(require,module,exports){ +},{"./_classof":243,"./_redefine":317,"./_wks":352}],431:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105714,7 +106021,7 @@ var $parseFloat = require('./_parse-float'); // 18.2.4 parseFloat(string) $export($export.G + $export.F * (parseFloat != $parseFloat), { parseFloat: $parseFloat }); -},{"./_export":253,"./_parse-float":305}],426:[function(require,module,exports){ +},{"./_export":259,"./_parse-float":311}],432:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105722,7 +106029,7 @@ var $parseInt = require('./_parse-int'); // 18.2.5 parseInt(string, radix) $export($export.G + $export.F * (parseInt != $parseInt), { parseInt: $parseInt }); -},{"./_export":253,"./_parse-int":306}],427:[function(require,module,exports){ +},{"./_export":259,"./_parse-int":312}],433:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library'); @@ -105997,7 +106304,7 @@ $export($export.S + $export.F * !(USE_NATIVE && require('./_iter-detect')(functi } }); -},{"./_a-function":223,"./_an-instance":226,"./_classof":237,"./_core":243,"./_ctx":245,"./_export":253,"./_for-of":259,"./_global":260,"./_is-object":271,"./_iter-detect":276,"./_library":279,"./_microtask":287,"./_new-promise-capability":288,"./_perform":307,"./_promise-resolve":308,"./_redefine-all":310,"./_set-species":317,"./_set-to-string-tag":318,"./_species-constructor":321,"./_task":330,"./_wks":346}],428:[function(require,module,exports){ +},{"./_a-function":229,"./_an-instance":232,"./_classof":243,"./_core":249,"./_ctx":251,"./_export":259,"./_for-of":265,"./_global":266,"./_is-object":277,"./_iter-detect":282,"./_library":285,"./_microtask":293,"./_new-promise-capability":294,"./_perform":313,"./_promise-resolve":314,"./_redefine-all":316,"./_set-species":323,"./_set-to-string-tag":324,"./_species-constructor":327,"./_task":336,"./_wks":352}],434:[function(require,module,exports){ 'use strict'; // 26.1.1 Reflect.apply(target, thisArgument, argumentsList) @@ -106017,7 +106324,7 @@ $export($export.S + $export.F * !require('./_fails')(function () { } }); -},{"./_a-function":223,"./_an-object":227,"./_export":253,"./_fails":255,"./_global":260}],429:[function(require,module,exports){ +},{"./_a-function":229,"./_an-object":233,"./_export":259,"./_fails":261,"./_global":266}],435:[function(require,module,exports){ 'use strict'; // 26.1.2 Reflect.construct(target, argumentsList [, newTarget]) @@ -106073,7 +106380,7 @@ $export($export.S + $export.F * (NEW_TARGET_BUG || ARGS_BUG), 'Reflect', { } }); -},{"./_a-function":223,"./_an-object":227,"./_bind":236,"./_export":253,"./_fails":255,"./_global":260,"./_is-object":271,"./_object-create":290}],430:[function(require,module,exports){ +},{"./_a-function":229,"./_an-object":233,"./_bind":242,"./_export":259,"./_fails":261,"./_global":266,"./_is-object":277,"./_object-create":296}],436:[function(require,module,exports){ 'use strict'; // 26.1.3 Reflect.defineProperty(target, propertyKey, attributes) @@ -106100,7 +106407,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_an-object":227,"./_export":253,"./_fails":255,"./_object-dp":291,"./_to-primitive":337}],431:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_fails":261,"./_object-dp":297,"./_to-primitive":343}],437:[function(require,module,exports){ 'use strict'; // 26.1.4 Reflect.deleteProperty(target, propertyKey) @@ -106115,7 +106422,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253,"./_object-gopd":294}],432:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_object-gopd":300}],438:[function(require,module,exports){ 'use strict'; // 26.1.5 Reflect.enumerate(target) @@ -106146,7 +106453,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253,"./_iter-create":274}],433:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_iter-create":280}],439:[function(require,module,exports){ 'use strict'; // 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey) @@ -106160,7 +106467,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253,"./_object-gopd":294}],434:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_object-gopd":300}],440:[function(require,module,exports){ 'use strict'; // 26.1.8 Reflect.getPrototypeOf(target) @@ -106174,7 +106481,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253,"./_object-gpo":298}],435:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_object-gpo":304}],441:[function(require,module,exports){ 'use strict'; // 26.1.6 Reflect.get(target, propertyKey [, receiver]) @@ -106195,7 +106502,7 @@ function get(target, propertyKey /* , receiver */) { $export($export.S, 'Reflect', { get: get }); -},{"./_an-object":227,"./_export":253,"./_has":261,"./_is-object":271,"./_object-gopd":294,"./_object-gpo":298}],436:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_has":267,"./_is-object":277,"./_object-gopd":300,"./_object-gpo":304}],442:[function(require,module,exports){ 'use strict'; // 26.1.9 Reflect.has(target, propertyKey) @@ -106207,7 +106514,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_export":253}],437:[function(require,module,exports){ +},{"./_export":259}],443:[function(require,module,exports){ 'use strict'; // 26.1.10 Reflect.isExtensible(target) @@ -106222,7 +106529,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253}],438:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259}],444:[function(require,module,exports){ 'use strict'; // 26.1.11 Reflect.ownKeys(target) @@ -106230,7 +106537,7 @@ var $export = require('./_export'); $export($export.S, 'Reflect', { ownKeys: require('./_own-keys') }); -},{"./_export":253,"./_own-keys":304}],439:[function(require,module,exports){ +},{"./_export":259,"./_own-keys":310}],445:[function(require,module,exports){ 'use strict'; // 26.1.12 Reflect.preventExtensions(target) @@ -106250,7 +106557,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253}],440:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259}],446:[function(require,module,exports){ 'use strict'; // 26.1.14 Reflect.setPrototypeOf(target, proto) @@ -106269,7 +106576,7 @@ if (setProto) $export($export.S, 'Reflect', { } }); -},{"./_export":253,"./_set-proto":316}],441:[function(require,module,exports){ +},{"./_export":259,"./_set-proto":322}],447:[function(require,module,exports){ 'use strict'; // 26.1.13 Reflect.set(target, propertyKey, V [, receiver]) @@ -106304,7 +106611,7 @@ function set(target, propertyKey, V /* , receiver */) { $export($export.S, 'Reflect', { set: set }); -},{"./_an-object":227,"./_export":253,"./_has":261,"./_is-object":271,"./_object-dp":291,"./_object-gopd":294,"./_object-gpo":298,"./_property-desc":309}],442:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_has":267,"./_is-object":277,"./_object-dp":297,"./_object-gopd":300,"./_object-gpo":304,"./_property-desc":315}],448:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -106352,7 +106659,7 @@ if (require('./_descriptors') && (!CORRECT_NEW || require('./_fails')(function ( require('./_set-species')('RegExp'); -},{"./_descriptors":249,"./_fails":255,"./_flags":257,"./_global":260,"./_inherit-if-required":265,"./_is-regexp":272,"./_object-dp":291,"./_object-gopn":296,"./_redefine":311,"./_set-species":317,"./_wks":346}],443:[function(require,module,exports){ +},{"./_descriptors":255,"./_fails":261,"./_flags":263,"./_global":266,"./_inherit-if-required":271,"./_is-regexp":278,"./_object-dp":297,"./_object-gopn":302,"./_redefine":317,"./_set-species":323,"./_wks":352}],449:[function(require,module,exports){ 'use strict'; // 21.2.5.3 get RegExp.prototype.flags() @@ -106361,7 +106668,7 @@ if (require('./_descriptors') && /./g.flags != 'g') require('./_object-dp').f(Re get: require('./_flags') }); -},{"./_descriptors":249,"./_flags":257,"./_object-dp":291}],444:[function(require,module,exports){ +},{"./_descriptors":255,"./_flags":263,"./_object-dp":297}],450:[function(require,module,exports){ 'use strict'; // @@match logic @@ -106376,7 +106683,7 @@ require('./_fix-re-wks')('match', 1, function (defined, MATCH, $match) { }, $match]; }); -},{"./_fix-re-wks":256}],445:[function(require,module,exports){ +},{"./_fix-re-wks":262}],451:[function(require,module,exports){ 'use strict'; // @@replace logic @@ -106391,7 +106698,7 @@ require('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace) { }, $replace]; }); -},{"./_fix-re-wks":256}],446:[function(require,module,exports){ +},{"./_fix-re-wks":262}],452:[function(require,module,exports){ 'use strict'; // @@search logic @@ -106406,7 +106713,7 @@ require('./_fix-re-wks')('search', 1, function (defined, SEARCH, $search) { }, $search]; }); -},{"./_fix-re-wks":256}],447:[function(require,module,exports){ +},{"./_fix-re-wks":262}],453:[function(require,module,exports){ 'use strict'; // @@split logic @@ -106474,7 +106781,7 @@ require('./_fix-re-wks')('split', 2, function (defined, SPLIT, $split) { }, $split]; }); -},{"./_fix-re-wks":256,"./_is-regexp":272}],448:[function(require,module,exports){ +},{"./_fix-re-wks":262,"./_is-regexp":278}],454:[function(require,module,exports){ 'use strict'; require('./es6.regexp.flags'); @@ -106503,7 +106810,7 @@ if (require('./_fails')(function () { }); } -},{"./_an-object":227,"./_descriptors":249,"./_fails":255,"./_flags":257,"./_redefine":311,"./es6.regexp.flags":443}],449:[function(require,module,exports){ +},{"./_an-object":233,"./_descriptors":255,"./_fails":261,"./_flags":263,"./_redefine":317,"./es6.regexp.flags":449}],455:[function(require,module,exports){ 'use strict'; var strong = require('./_collection-strong'); @@ -106522,7 +106829,7 @@ module.exports = require('./_collection')(SET, function (get) { } }, strong); -},{"./_collection":242,"./_collection-strong":239,"./_validate-collection":343}],450:[function(require,module,exports){ +},{"./_collection":248,"./_collection-strong":245,"./_validate-collection":349}],456:[function(require,module,exports){ 'use strict'; // B.2.3.2 String.prototype.anchor(name) @@ -106532,7 +106839,7 @@ require('./_string-html')('anchor', function (createHTML) { }; }); -},{"./_string-html":325}],451:[function(require,module,exports){ +},{"./_string-html":331}],457:[function(require,module,exports){ 'use strict'; // B.2.3.3 String.prototype.big() @@ -106542,7 +106849,7 @@ require('./_string-html')('big', function (createHTML) { }; }); -},{"./_string-html":325}],452:[function(require,module,exports){ +},{"./_string-html":331}],458:[function(require,module,exports){ 'use strict'; // B.2.3.4 String.prototype.blink() @@ -106552,7 +106859,7 @@ require('./_string-html')('blink', function (createHTML) { }; }); -},{"./_string-html":325}],453:[function(require,module,exports){ +},{"./_string-html":331}],459:[function(require,module,exports){ 'use strict'; // B.2.3.5 String.prototype.bold() @@ -106562,7 +106869,7 @@ require('./_string-html')('bold', function (createHTML) { }; }); -},{"./_string-html":325}],454:[function(require,module,exports){ +},{"./_string-html":331}],460:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -106574,7 +106881,7 @@ $export($export.P, 'String', { } }); -},{"./_export":253,"./_string-at":323}],455:[function(require,module,exports){ +},{"./_export":259,"./_string-at":329}],461:[function(require,module,exports){ // 21.1.3.6 String.prototype.endsWith(searchString [, endPosition]) 'use strict'; @@ -106595,7 +106902,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(ENDS_WITH), 'Strin } }); -},{"./_export":253,"./_fails-is-regexp":254,"./_string-context":324,"./_to-length":335}],456:[function(require,module,exports){ +},{"./_export":259,"./_fails-is-regexp":260,"./_string-context":330,"./_to-length":341}],462:[function(require,module,exports){ 'use strict'; // B.2.3.6 String.prototype.fixed() @@ -106605,7 +106912,7 @@ require('./_string-html')('fixed', function (createHTML) { }; }); -},{"./_string-html":325}],457:[function(require,module,exports){ +},{"./_string-html":331}],463:[function(require,module,exports){ 'use strict'; // B.2.3.7 String.prototype.fontcolor(color) @@ -106615,7 +106922,7 @@ require('./_string-html')('fontcolor', function (createHTML) { }; }); -},{"./_string-html":325}],458:[function(require,module,exports){ +},{"./_string-html":331}],464:[function(require,module,exports){ 'use strict'; // B.2.3.8 String.prototype.fontsize(size) @@ -106625,7 +106932,7 @@ require('./_string-html')('fontsize', function (createHTML) { }; }); -},{"./_string-html":325}],459:[function(require,module,exports){ +},{"./_string-html":331}],465:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -106650,7 +106957,7 @@ $export($export.S + $export.F * (!!$fromCodePoint && $fromCodePoint.length != 1) } }); -},{"./_export":253,"./_to-absolute-index":331}],460:[function(require,module,exports){ +},{"./_export":259,"./_to-absolute-index":337}],466:[function(require,module,exports){ // 21.1.3.7 String.prototype.includes(searchString, position = 0) 'use strict'; @@ -106664,7 +106971,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(INCLUDES), 'String } }); -},{"./_export":253,"./_fails-is-regexp":254,"./_string-context":324}],461:[function(require,module,exports){ +},{"./_export":259,"./_fails-is-regexp":260,"./_string-context":330}],467:[function(require,module,exports){ 'use strict'; // B.2.3.9 String.prototype.italics() @@ -106674,7 +106981,7 @@ require('./_string-html')('italics', function (createHTML) { }; }); -},{"./_string-html":325}],462:[function(require,module,exports){ +},{"./_string-html":331}],468:[function(require,module,exports){ 'use strict'; var $at = require('./_string-at')(true); @@ -106694,7 +107001,7 @@ require('./_iter-define')(String, 'String', function (iterated) { return { value: point, done: false }; }); -},{"./_iter-define":275,"./_string-at":323}],463:[function(require,module,exports){ +},{"./_iter-define":281,"./_string-at":329}],469:[function(require,module,exports){ 'use strict'; // B.2.3.10 String.prototype.link(url) @@ -106704,7 +107011,7 @@ require('./_string-html')('link', function (createHTML) { }; }); -},{"./_string-html":325}],464:[function(require,module,exports){ +},{"./_string-html":331}],470:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -106726,7 +107033,7 @@ $export($export.S, 'String', { } }); -},{"./_export":253,"./_to-iobject":334,"./_to-length":335}],465:[function(require,module,exports){ +},{"./_export":259,"./_to-iobject":340,"./_to-length":341}],471:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -106736,7 +107043,7 @@ $export($export.P, 'String', { repeat: require('./_string-repeat') }); -},{"./_export":253,"./_string-repeat":327}],466:[function(require,module,exports){ +},{"./_export":259,"./_string-repeat":333}],472:[function(require,module,exports){ 'use strict'; // B.2.3.11 String.prototype.small() @@ -106746,7 +107053,7 @@ require('./_string-html')('small', function (createHTML) { }; }); -},{"./_string-html":325}],467:[function(require,module,exports){ +},{"./_string-html":331}],473:[function(require,module,exports){ // 21.1.3.18 String.prototype.startsWith(searchString [, position ]) 'use strict'; @@ -106765,7 +107072,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(STARTS_WITH), 'Str } }); -},{"./_export":253,"./_fails-is-regexp":254,"./_string-context":324,"./_to-length":335}],468:[function(require,module,exports){ +},{"./_export":259,"./_fails-is-regexp":260,"./_string-context":330,"./_to-length":341}],474:[function(require,module,exports){ 'use strict'; // B.2.3.12 String.prototype.strike() @@ -106775,7 +107082,7 @@ require('./_string-html')('strike', function (createHTML) { }; }); -},{"./_string-html":325}],469:[function(require,module,exports){ +},{"./_string-html":331}],475:[function(require,module,exports){ 'use strict'; // B.2.3.13 String.prototype.sub() @@ -106785,7 +107092,7 @@ require('./_string-html')('sub', function (createHTML) { }; }); -},{"./_string-html":325}],470:[function(require,module,exports){ +},{"./_string-html":331}],476:[function(require,module,exports){ 'use strict'; // B.2.3.14 String.prototype.sup() @@ -106795,7 +107102,7 @@ require('./_string-html')('sup', function (createHTML) { }; }); -},{"./_string-html":325}],471:[function(require,module,exports){ +},{"./_string-html":331}],477:[function(require,module,exports){ 'use strict'; // 21.1.3.25 String.prototype.trim() @@ -106805,7 +107112,7 @@ require('./_string-trim')('trim', function ($trim) { }; }); -},{"./_string-trim":328}],472:[function(require,module,exports){ +},{"./_string-trim":334}],478:[function(require,module,exports){ 'use strict'; // ECMAScript 6 symbols shim @@ -107051,7 +107358,7 @@ setToStringTag(Math, 'Math', true); // 24.3.3 JSON[@@toStringTag] setToStringTag(global.JSON, 'JSON', true); -},{"./_an-object":227,"./_descriptors":249,"./_enum-keys":252,"./_export":253,"./_fails":255,"./_global":260,"./_has":261,"./_hide":262,"./_is-array":269,"./_is-object":271,"./_library":279,"./_meta":285,"./_object-create":290,"./_object-dp":291,"./_object-gopd":294,"./_object-gopn":296,"./_object-gopn-ext":295,"./_object-gops":297,"./_object-keys":300,"./_object-pie":301,"./_property-desc":309,"./_redefine":311,"./_set-to-string-tag":318,"./_shared":320,"./_to-iobject":334,"./_to-primitive":337,"./_uid":341,"./_wks":346,"./_wks-define":344,"./_wks-ext":345}],473:[function(require,module,exports){ +},{"./_an-object":233,"./_descriptors":255,"./_enum-keys":258,"./_export":259,"./_fails":261,"./_global":266,"./_has":267,"./_hide":268,"./_is-array":275,"./_is-object":277,"./_library":285,"./_meta":291,"./_object-create":296,"./_object-dp":297,"./_object-gopd":300,"./_object-gopn":302,"./_object-gopn-ext":301,"./_object-gops":303,"./_object-keys":306,"./_object-pie":307,"./_property-desc":315,"./_redefine":317,"./_set-to-string-tag":324,"./_shared":326,"./_to-iobject":340,"./_to-primitive":343,"./_uid":347,"./_wks":352,"./_wks-define":350,"./_wks-ext":351}],479:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107100,7 +107407,7 @@ $export($export.P + $export.U + $export.F * require('./_fails')(function () { require('./_set-species')(ARRAY_BUFFER); -},{"./_an-object":227,"./_export":253,"./_fails":255,"./_global":260,"./_is-object":271,"./_set-species":317,"./_species-constructor":321,"./_to-absolute-index":331,"./_to-length":335,"./_typed":340,"./_typed-buffer":339}],474:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_fails":261,"./_global":266,"./_is-object":277,"./_set-species":323,"./_species-constructor":327,"./_to-absolute-index":337,"./_to-length":341,"./_typed":346,"./_typed-buffer":345}],480:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107108,7 +107415,7 @@ $export($export.G + $export.W + $export.F * !require('./_typed').ABV, { DataView: require('./_typed-buffer').DataView }); -},{"./_export":253,"./_typed":340,"./_typed-buffer":339}],475:[function(require,module,exports){ +},{"./_export":259,"./_typed":346,"./_typed-buffer":345}],481:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Float32', 4, function (init) { @@ -107117,7 +107424,7 @@ require('./_typed-array')('Float32', 4, function (init) { }; }); -},{"./_typed-array":338}],476:[function(require,module,exports){ +},{"./_typed-array":344}],482:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Float64', 8, function (init) { @@ -107126,7 +107433,7 @@ require('./_typed-array')('Float64', 8, function (init) { }; }); -},{"./_typed-array":338}],477:[function(require,module,exports){ +},{"./_typed-array":344}],483:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Int16', 2, function (init) { @@ -107135,7 +107442,7 @@ require('./_typed-array')('Int16', 2, function (init) { }; }); -},{"./_typed-array":338}],478:[function(require,module,exports){ +},{"./_typed-array":344}],484:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Int32', 4, function (init) { @@ -107144,7 +107451,7 @@ require('./_typed-array')('Int32', 4, function (init) { }; }); -},{"./_typed-array":338}],479:[function(require,module,exports){ +},{"./_typed-array":344}],485:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Int8', 1, function (init) { @@ -107153,7 +107460,7 @@ require('./_typed-array')('Int8', 1, function (init) { }; }); -},{"./_typed-array":338}],480:[function(require,module,exports){ +},{"./_typed-array":344}],486:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Uint16', 2, function (init) { @@ -107162,7 +107469,7 @@ require('./_typed-array')('Uint16', 2, function (init) { }; }); -},{"./_typed-array":338}],481:[function(require,module,exports){ +},{"./_typed-array":344}],487:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Uint32', 4, function (init) { @@ -107171,7 +107478,7 @@ require('./_typed-array')('Uint32', 4, function (init) { }; }); -},{"./_typed-array":338}],482:[function(require,module,exports){ +},{"./_typed-array":344}],488:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Uint8', 1, function (init) { @@ -107180,7 +107487,7 @@ require('./_typed-array')('Uint8', 1, function (init) { }; }); -},{"./_typed-array":338}],483:[function(require,module,exports){ +},{"./_typed-array":344}],489:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Uint8', 1, function (init) { @@ -107189,7 +107496,7 @@ require('./_typed-array')('Uint8', 1, function (init) { }; }, true); -},{"./_typed-array":338}],484:[function(require,module,exports){ +},{"./_typed-array":344}],490:[function(require,module,exports){ 'use strict'; var each = require('./_array-methods')(0); @@ -107253,7 +107560,7 @@ if (fails(function () { }); } -},{"./_array-methods":232,"./_collection":242,"./_collection-weak":241,"./_fails":255,"./_is-object":271,"./_meta":285,"./_object-assign":289,"./_redefine":311,"./_validate-collection":343}],485:[function(require,module,exports){ +},{"./_array-methods":238,"./_collection":248,"./_collection-weak":247,"./_fails":261,"./_is-object":277,"./_meta":291,"./_object-assign":295,"./_redefine":317,"./_validate-collection":349}],491:[function(require,module,exports){ 'use strict'; var weak = require('./_collection-weak'); @@ -107272,7 +107579,7 @@ require('./_collection')(WEAK_SET, function (get) { } }, weak, false, true); -},{"./_collection":242,"./_collection-weak":241,"./_validate-collection":343}],486:[function(require,module,exports){ +},{"./_collection":248,"./_collection-weak":247,"./_validate-collection":349}],492:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-flatMap/#sec-Array.prototype.flatMap @@ -107297,7 +107604,7 @@ $export($export.P, 'Array', { require('./_add-to-unscopables')('flatMap'); -},{"./_a-function":223,"./_add-to-unscopables":225,"./_array-species-create":235,"./_export":253,"./_flatten-into-array":258,"./_to-length":335,"./_to-object":336}],487:[function(require,module,exports){ +},{"./_a-function":229,"./_add-to-unscopables":231,"./_array-species-create":241,"./_export":259,"./_flatten-into-array":264,"./_to-length":341,"./_to-object":342}],493:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-flatMap/#sec-Array.prototype.flatten @@ -107321,7 +107628,7 @@ $export($export.P, 'Array', { require('./_add-to-unscopables')('flatten'); -},{"./_add-to-unscopables":225,"./_array-species-create":235,"./_export":253,"./_flatten-into-array":258,"./_to-integer":333,"./_to-length":335,"./_to-object":336}],488:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-species-create":241,"./_export":259,"./_flatten-into-array":264,"./_to-integer":339,"./_to-length":341,"./_to-object":342}],494:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/Array.prototype.includes @@ -107336,7 +107643,7 @@ $export($export.P, 'Array', { require('./_add-to-unscopables')('includes'); -},{"./_add-to-unscopables":225,"./_array-includes":231,"./_export":253}],489:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-includes":237,"./_export":259}],495:[function(require,module,exports){ 'use strict'; // https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-09/sept-25.md#510-globalasap-for-enqueuing-a-microtask @@ -107352,7 +107659,7 @@ $export($export.G, { } }); -},{"./_cof":238,"./_export":253,"./_global":260,"./_microtask":287}],490:[function(require,module,exports){ +},{"./_cof":244,"./_export":259,"./_global":266,"./_microtask":293}],496:[function(require,module,exports){ 'use strict'; // https://github.com/ljharb/proposal-is-error @@ -107365,7 +107672,7 @@ $export($export.S, 'Error', { } }); -},{"./_cof":238,"./_export":253}],491:[function(require,module,exports){ +},{"./_cof":244,"./_export":259}],497:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-global @@ -107373,19 +107680,19 @@ var $export = require('./_export'); $export($export.G, { global: require('./_global') }); -},{"./_export":253,"./_global":260}],492:[function(require,module,exports){ +},{"./_export":259,"./_global":266}],498:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-map.from require('./_set-collection-from')('Map'); -},{"./_set-collection-from":314}],493:[function(require,module,exports){ +},{"./_set-collection-from":320}],499:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-map.of require('./_set-collection-of')('Map'); -},{"./_set-collection-of":315}],494:[function(require,module,exports){ +},{"./_set-collection-of":321}],500:[function(require,module,exports){ 'use strict'; // https://github.com/DavidBruant/Map-Set.prototype.toJSON @@ -107393,7 +107700,7 @@ var $export = require('./_export'); $export($export.P + $export.R, 'Map', { toJSON: require('./_collection-to-json')('Map') }); -},{"./_collection-to-json":240,"./_export":253}],495:[function(require,module,exports){ +},{"./_collection-to-json":246,"./_export":259}],501:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107405,7 +107712,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],496:[function(require,module,exports){ +},{"./_export":259}],502:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107413,7 +107720,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { DEG_PER_RAD: Math.PI / 180 }); -},{"./_export":253}],497:[function(require,module,exports){ +},{"./_export":259}],503:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107426,7 +107733,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],498:[function(require,module,exports){ +},{"./_export":259}],504:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107440,7 +107747,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253,"./_math-fround":281,"./_math-scale":283}],499:[function(require,module,exports){ +},{"./_export":259,"./_math-fround":287,"./_math-scale":289}],505:[function(require,module,exports){ 'use strict'; // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 @@ -107455,7 +107762,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],500:[function(require,module,exports){ +},{"./_export":259}],506:[function(require,module,exports){ 'use strict'; // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 @@ -107475,7 +107782,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],501:[function(require,module,exports){ +},{"./_export":259}],507:[function(require,module,exports){ 'use strict'; // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 @@ -107490,7 +107797,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],502:[function(require,module,exports){ +},{"./_export":259}],508:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107498,7 +107805,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { RAD_PER_DEG: 180 / Math.PI }); -},{"./_export":253}],503:[function(require,module,exports){ +},{"./_export":259}],509:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107511,7 +107818,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],504:[function(require,module,exports){ +},{"./_export":259}],510:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107519,7 +107826,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { scale: require('./_math-scale') }); -},{"./_export":253,"./_math-scale":283}],505:[function(require,module,exports){ +},{"./_export":259,"./_math-scale":289}],511:[function(require,module,exports){ 'use strict'; // http://jfbastien.github.io/papers/Math.signbit.html @@ -107530,7 +107837,7 @@ $export($export.S, 'Math', { signbit: function signbit(x) { return (x = +x) != x ? x : x == 0 ? 1 / x == Infinity : x > 0; } }); -},{"./_export":253}],506:[function(require,module,exports){ +},{"./_export":259}],512:[function(require,module,exports){ 'use strict'; // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 @@ -107550,7 +107857,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],507:[function(require,module,exports){ +},{"./_export":259}],513:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107565,7 +107872,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_a-function":223,"./_descriptors":249,"./_export":253,"./_object-dp":291,"./_object-forced-pam":293,"./_to-object":336}],508:[function(require,module,exports){ +},{"./_a-function":229,"./_descriptors":255,"./_export":259,"./_object-dp":297,"./_object-forced-pam":299,"./_to-object":342}],514:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107580,7 +107887,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_a-function":223,"./_descriptors":249,"./_export":253,"./_object-dp":291,"./_object-forced-pam":293,"./_to-object":336}],509:[function(require,module,exports){ +},{"./_a-function":229,"./_descriptors":255,"./_export":259,"./_object-dp":297,"./_object-forced-pam":299,"./_to-object":342}],515:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-object-values-entries @@ -107593,7 +107900,7 @@ $export($export.S, 'Object', { } }); -},{"./_export":253,"./_object-to-array":303}],510:[function(require,module,exports){ +},{"./_export":259,"./_object-to-array":309}],516:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-object-getownpropertydescriptors @@ -107619,7 +107926,7 @@ $export($export.S, 'Object', { } }); -},{"./_create-property":244,"./_export":253,"./_object-gopd":294,"./_own-keys":304,"./_to-iobject":334}],511:[function(require,module,exports){ +},{"./_create-property":250,"./_export":259,"./_object-gopd":300,"./_own-keys":310,"./_to-iobject":340}],517:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107640,7 +107947,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_descriptors":249,"./_export":253,"./_object-forced-pam":293,"./_object-gopd":294,"./_object-gpo":298,"./_to-object":336,"./_to-primitive":337}],512:[function(require,module,exports){ +},{"./_descriptors":255,"./_export":259,"./_object-forced-pam":299,"./_object-gopd":300,"./_object-gpo":304,"./_to-object":342,"./_to-primitive":343}],518:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107661,7 +107968,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_descriptors":249,"./_export":253,"./_object-forced-pam":293,"./_object-gopd":294,"./_object-gpo":298,"./_to-object":336,"./_to-primitive":337}],513:[function(require,module,exports){ +},{"./_descriptors":255,"./_export":259,"./_object-forced-pam":299,"./_object-gopd":300,"./_object-gpo":304,"./_to-object":342,"./_to-primitive":343}],519:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-object-values-entries @@ -107674,7 +107981,7 @@ $export($export.S, 'Object', { } }); -},{"./_export":253,"./_object-to-array":303}],514:[function(require,module,exports){ +},{"./_export":259,"./_object-to-array":309}],520:[function(require,module,exports){ 'use strict'; // https://github.com/zenparsing/es-observable @@ -107886,7 +108193,7 @@ $export($export.G, { Observable: $Observable }); require('./_set-species')('Observable'); -},{"./_a-function":223,"./_an-instance":226,"./_an-object":227,"./_core":243,"./_export":253,"./_for-of":259,"./_global":260,"./_hide":262,"./_microtask":287,"./_redefine-all":310,"./_set-species":317,"./_wks":346}],515:[function(require,module,exports){ +},{"./_a-function":229,"./_an-instance":232,"./_an-object":233,"./_core":249,"./_export":259,"./_for-of":265,"./_global":266,"./_hide":268,"./_microtask":293,"./_redefine-all":316,"./_set-species":323,"./_wks":352}],521:[function(require,module,exports){ // https://github.com/tc39/proposal-promise-finally 'use strict'; @@ -107910,7 +108217,7 @@ $export($export.P + $export.R, 'Promise', { 'finally': function _finally(onFinal } : onFinally); } }); -},{"./_core":243,"./_export":253,"./_global":260,"./_promise-resolve":308,"./_species-constructor":321}],516:[function(require,module,exports){ +},{"./_core":249,"./_export":259,"./_global":266,"./_promise-resolve":314,"./_species-constructor":327}],522:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-promise-try @@ -107925,7 +108232,7 @@ $export($export.S, 'Promise', { 'try': function _try(callbackfn) { return promiseCapability.promise; } }); -},{"./_export":253,"./_new-promise-capability":288,"./_perform":307}],517:[function(require,module,exports){ +},{"./_export":259,"./_new-promise-capability":294,"./_perform":313}],523:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -107937,7 +108244,7 @@ metadata.exp({ defineMetadata: function defineMetadata(metadataKey, metadataValu ordinaryDefineOwnMetadata(metadataKey, metadataValue, anObject(target), toMetaKey(targetKey)); } }); -},{"./_an-object":227,"./_metadata":286}],518:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292}],524:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -107956,7 +108263,7 @@ metadata.exp({ deleteMetadata: function deleteMetadata(metadataKey, target /* , return !!targetMetadata.size || store['delete'](target); } }); -},{"./_an-object":227,"./_metadata":286}],519:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292}],525:[function(require,module,exports){ 'use strict'; var Set = require('./es6.set'); @@ -107979,7 +108286,7 @@ metadata.exp({ getMetadataKeys: function getMetadataKeys(target /* , targetKey * return ordinaryMetadataKeys(anObject(target), arguments.length < 2 ? undefined : toMetaKey(arguments[1])); } }); -},{"./_an-object":227,"./_array-from-iterable":230,"./_metadata":286,"./_object-gpo":298,"./es6.set":449}],520:[function(require,module,exports){ +},{"./_an-object":233,"./_array-from-iterable":236,"./_metadata":292,"./_object-gpo":304,"./es6.set":455}],526:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -108000,7 +108307,7 @@ metadata.exp({ getMetadata: function getMetadata(metadataKey, target /* , target return ordinaryGetMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":227,"./_metadata":286,"./_object-gpo":298}],521:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292,"./_object-gpo":304}],527:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -108012,7 +108319,7 @@ metadata.exp({ getOwnMetadataKeys: function getOwnMetadataKeys(target /* , targe return ordinaryOwnMetadataKeys(anObject(target), arguments.length < 2 ? undefined : toMetaKey(arguments[1])); } }); -},{"./_an-object":227,"./_metadata":286}],522:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292}],528:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -108024,7 +108331,7 @@ metadata.exp({ getOwnMetadata: function getOwnMetadata(metadataKey, target /* , return ordinaryGetOwnMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":227,"./_metadata":286}],523:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292}],529:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -108044,7 +108351,7 @@ metadata.exp({ hasMetadata: function hasMetadata(metadataKey, target /* , target return ordinaryHasMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":227,"./_metadata":286,"./_object-gpo":298}],524:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292,"./_object-gpo":304}],530:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -108056,7 +108363,7 @@ metadata.exp({ hasOwnMetadata: function hasOwnMetadata(metadataKey, target /* , return ordinaryHasOwnMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":227,"./_metadata":286}],525:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292}],531:[function(require,module,exports){ 'use strict'; var $metadata = require('./_metadata'); @@ -108071,19 +108378,19 @@ $metadata.exp({ metadata: function metadata(metadataKey, metadataValue) { }; } }); -},{"./_a-function":223,"./_an-object":227,"./_metadata":286}],526:[function(require,module,exports){ +},{"./_a-function":229,"./_an-object":233,"./_metadata":292}],532:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-set.from require('./_set-collection-from')('Set'); -},{"./_set-collection-from":314}],527:[function(require,module,exports){ +},{"./_set-collection-from":320}],533:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-set.of require('./_set-collection-of')('Set'); -},{"./_set-collection-of":315}],528:[function(require,module,exports){ +},{"./_set-collection-of":321}],534:[function(require,module,exports){ 'use strict'; // https://github.com/DavidBruant/Map-Set.prototype.toJSON @@ -108091,7 +108398,7 @@ var $export = require('./_export'); $export($export.P + $export.R, 'Set', { toJSON: require('./_collection-to-json')('Set') }); -},{"./_collection-to-json":240,"./_export":253}],529:[function(require,module,exports){ +},{"./_collection-to-json":246,"./_export":259}],535:[function(require,module,exports){ 'use strict'; // https://github.com/mathiasbynens/String.prototype.at @@ -108104,7 +108411,7 @@ $export($export.P, 'String', { } }); -},{"./_export":253,"./_string-at":323}],530:[function(require,module,exports){ +},{"./_export":259,"./_string-at":329}],536:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/String.prototype.matchAll/ @@ -108137,7 +108444,7 @@ $export($export.P, 'String', { } }); -},{"./_defined":248,"./_export":253,"./_flags":257,"./_is-regexp":272,"./_iter-create":274,"./_to-length":335}],531:[function(require,module,exports){ +},{"./_defined":254,"./_export":259,"./_flags":263,"./_is-regexp":278,"./_iter-create":280,"./_to-length":341}],537:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-string-pad-start-end @@ -108152,7 +108459,7 @@ $export($export.P + $export.F * /Version\/10\.\d+(\.\d+)? Safari\//.test(userAge } }); -},{"./_export":253,"./_string-pad":326,"./_user-agent":342}],532:[function(require,module,exports){ +},{"./_export":259,"./_string-pad":332,"./_user-agent":348}],538:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-string-pad-start-end @@ -108167,7 +108474,7 @@ $export($export.P + $export.F * /Version\/10\.\d+(\.\d+)? Safari\//.test(userAge } }); -},{"./_export":253,"./_string-pad":326,"./_user-agent":342}],533:[function(require,module,exports){ +},{"./_export":259,"./_string-pad":332,"./_user-agent":348}],539:[function(require,module,exports){ 'use strict'; // https://github.com/sebmarkbage/ecmascript-string-left-right-trim @@ -108177,7 +108484,7 @@ require('./_string-trim')('trimLeft', function ($trim) { }; }, 'trimStart'); -},{"./_string-trim":328}],534:[function(require,module,exports){ +},{"./_string-trim":334}],540:[function(require,module,exports){ 'use strict'; // https://github.com/sebmarkbage/ecmascript-string-left-right-trim @@ -108187,17 +108494,17 @@ require('./_string-trim')('trimRight', function ($trim) { }; }, 'trimEnd'); -},{"./_string-trim":328}],535:[function(require,module,exports){ +},{"./_string-trim":334}],541:[function(require,module,exports){ 'use strict'; require('./_wks-define')('asyncIterator'); -},{"./_wks-define":344}],536:[function(require,module,exports){ +},{"./_wks-define":350}],542:[function(require,module,exports){ 'use strict'; require('./_wks-define')('observable'); -},{"./_wks-define":344}],537:[function(require,module,exports){ +},{"./_wks-define":350}],543:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-global @@ -108205,31 +108512,31 @@ var $export = require('./_export'); $export($export.S, 'System', { global: require('./_global') }); -},{"./_export":253,"./_global":260}],538:[function(require,module,exports){ +},{"./_export":259,"./_global":266}],544:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.from require('./_set-collection-from')('WeakMap'); -},{"./_set-collection-from":314}],539:[function(require,module,exports){ +},{"./_set-collection-from":320}],545:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.of require('./_set-collection-of')('WeakMap'); -},{"./_set-collection-of":315}],540:[function(require,module,exports){ +},{"./_set-collection-of":321}],546:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.from require('./_set-collection-from')('WeakSet'); -},{"./_set-collection-from":314}],541:[function(require,module,exports){ +},{"./_set-collection-from":320}],547:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.of require('./_set-collection-of')('WeakSet'); -},{"./_set-collection-of":315}],542:[function(require,module,exports){ +},{"./_set-collection-of":321}],548:[function(require,module,exports){ 'use strict'; var $iterators = require('./es6.array.iterator'); @@ -108293,7 +108600,7 @@ for (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++ } } -},{"./_global":260,"./_hide":262,"./_iterators":278,"./_object-keys":300,"./_redefine":311,"./_wks":346,"./es6.array.iterator":359}],543:[function(require,module,exports){ +},{"./_global":266,"./_hide":268,"./_iterators":284,"./_object-keys":306,"./_redefine":317,"./_wks":352,"./es6.array.iterator":365}],549:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -108303,7 +108610,7 @@ $export($export.G + $export.B, { clearImmediate: $task.clear }); -},{"./_export":253,"./_task":330}],544:[function(require,module,exports){ +},{"./_export":259,"./_task":336}],550:[function(require,module,exports){ 'use strict'; // ie9- setTimeout & setInterval additional parameters fix @@ -108327,7 +108634,7 @@ $export($export.G + $export.B + $export.F * MSIE, { setInterval: wrap(global.setInterval) }); -},{"./_export":253,"./_global":260,"./_user-agent":342}],545:[function(require,module,exports){ +},{"./_export":259,"./_global":266,"./_user-agent":348}],551:[function(require,module,exports){ 'use strict'; require('./modules/es6.symbol'); @@ -108528,7 +108835,7 @@ require('./modules/web.immediate'); require('./modules/web.dom.iterable'); module.exports = require('./modules/_core'); -},{"./modules/_core":243,"./modules/es6.array.copy-within":349,"./modules/es6.array.every":350,"./modules/es6.array.fill":351,"./modules/es6.array.filter":352,"./modules/es6.array.find":354,"./modules/es6.array.find-index":353,"./modules/es6.array.for-each":355,"./modules/es6.array.from":356,"./modules/es6.array.index-of":357,"./modules/es6.array.is-array":358,"./modules/es6.array.iterator":359,"./modules/es6.array.join":360,"./modules/es6.array.last-index-of":361,"./modules/es6.array.map":362,"./modules/es6.array.of":363,"./modules/es6.array.reduce":365,"./modules/es6.array.reduce-right":364,"./modules/es6.array.slice":366,"./modules/es6.array.some":367,"./modules/es6.array.sort":368,"./modules/es6.array.species":369,"./modules/es6.date.now":370,"./modules/es6.date.to-iso-string":371,"./modules/es6.date.to-json":372,"./modules/es6.date.to-primitive":373,"./modules/es6.date.to-string":374,"./modules/es6.function.bind":375,"./modules/es6.function.has-instance":376,"./modules/es6.function.name":377,"./modules/es6.map":378,"./modules/es6.math.acosh":379,"./modules/es6.math.asinh":380,"./modules/es6.math.atanh":381,"./modules/es6.math.cbrt":382,"./modules/es6.math.clz32":383,"./modules/es6.math.cosh":384,"./modules/es6.math.expm1":385,"./modules/es6.math.fround":386,"./modules/es6.math.hypot":387,"./modules/es6.math.imul":388,"./modules/es6.math.log10":389,"./modules/es6.math.log1p":390,"./modules/es6.math.log2":391,"./modules/es6.math.sign":392,"./modules/es6.math.sinh":393,"./modules/es6.math.tanh":394,"./modules/es6.math.trunc":395,"./modules/es6.number.constructor":396,"./modules/es6.number.epsilon":397,"./modules/es6.number.is-finite":398,"./modules/es6.number.is-integer":399,"./modules/es6.number.is-nan":400,"./modules/es6.number.is-safe-integer":401,"./modules/es6.number.max-safe-integer":402,"./modules/es6.number.min-safe-integer":403,"./modules/es6.number.parse-float":404,"./modules/es6.number.parse-int":405,"./modules/es6.number.to-fixed":406,"./modules/es6.number.to-precision":407,"./modules/es6.object.assign":408,"./modules/es6.object.create":409,"./modules/es6.object.define-properties":410,"./modules/es6.object.define-property":411,"./modules/es6.object.freeze":412,"./modules/es6.object.get-own-property-descriptor":413,"./modules/es6.object.get-own-property-names":414,"./modules/es6.object.get-prototype-of":415,"./modules/es6.object.is":419,"./modules/es6.object.is-extensible":416,"./modules/es6.object.is-frozen":417,"./modules/es6.object.is-sealed":418,"./modules/es6.object.keys":420,"./modules/es6.object.prevent-extensions":421,"./modules/es6.object.seal":422,"./modules/es6.object.set-prototype-of":423,"./modules/es6.object.to-string":424,"./modules/es6.parse-float":425,"./modules/es6.parse-int":426,"./modules/es6.promise":427,"./modules/es6.reflect.apply":428,"./modules/es6.reflect.construct":429,"./modules/es6.reflect.define-property":430,"./modules/es6.reflect.delete-property":431,"./modules/es6.reflect.enumerate":432,"./modules/es6.reflect.get":435,"./modules/es6.reflect.get-own-property-descriptor":433,"./modules/es6.reflect.get-prototype-of":434,"./modules/es6.reflect.has":436,"./modules/es6.reflect.is-extensible":437,"./modules/es6.reflect.own-keys":438,"./modules/es6.reflect.prevent-extensions":439,"./modules/es6.reflect.set":441,"./modules/es6.reflect.set-prototype-of":440,"./modules/es6.regexp.constructor":442,"./modules/es6.regexp.flags":443,"./modules/es6.regexp.match":444,"./modules/es6.regexp.replace":445,"./modules/es6.regexp.search":446,"./modules/es6.regexp.split":447,"./modules/es6.regexp.to-string":448,"./modules/es6.set":449,"./modules/es6.string.anchor":450,"./modules/es6.string.big":451,"./modules/es6.string.blink":452,"./modules/es6.string.bold":453,"./modules/es6.string.code-point-at":454,"./modules/es6.string.ends-with":455,"./modules/es6.string.fixed":456,"./modules/es6.string.fontcolor":457,"./modules/es6.string.fontsize":458,"./modules/es6.string.from-code-point":459,"./modules/es6.string.includes":460,"./modules/es6.string.italics":461,"./modules/es6.string.iterator":462,"./modules/es6.string.link":463,"./modules/es6.string.raw":464,"./modules/es6.string.repeat":465,"./modules/es6.string.small":466,"./modules/es6.string.starts-with":467,"./modules/es6.string.strike":468,"./modules/es6.string.sub":469,"./modules/es6.string.sup":470,"./modules/es6.string.trim":471,"./modules/es6.symbol":472,"./modules/es6.typed.array-buffer":473,"./modules/es6.typed.data-view":474,"./modules/es6.typed.float32-array":475,"./modules/es6.typed.float64-array":476,"./modules/es6.typed.int16-array":477,"./modules/es6.typed.int32-array":478,"./modules/es6.typed.int8-array":479,"./modules/es6.typed.uint16-array":480,"./modules/es6.typed.uint32-array":481,"./modules/es6.typed.uint8-array":482,"./modules/es6.typed.uint8-clamped-array":483,"./modules/es6.weak-map":484,"./modules/es6.weak-set":485,"./modules/es7.array.flat-map":486,"./modules/es7.array.flatten":487,"./modules/es7.array.includes":488,"./modules/es7.asap":489,"./modules/es7.error.is-error":490,"./modules/es7.global":491,"./modules/es7.map.from":492,"./modules/es7.map.of":493,"./modules/es7.map.to-json":494,"./modules/es7.math.clamp":495,"./modules/es7.math.deg-per-rad":496,"./modules/es7.math.degrees":497,"./modules/es7.math.fscale":498,"./modules/es7.math.iaddh":499,"./modules/es7.math.imulh":500,"./modules/es7.math.isubh":501,"./modules/es7.math.rad-per-deg":502,"./modules/es7.math.radians":503,"./modules/es7.math.scale":504,"./modules/es7.math.signbit":505,"./modules/es7.math.umulh":506,"./modules/es7.object.define-getter":507,"./modules/es7.object.define-setter":508,"./modules/es7.object.entries":509,"./modules/es7.object.get-own-property-descriptors":510,"./modules/es7.object.lookup-getter":511,"./modules/es7.object.lookup-setter":512,"./modules/es7.object.values":513,"./modules/es7.observable":514,"./modules/es7.promise.finally":515,"./modules/es7.promise.try":516,"./modules/es7.reflect.define-metadata":517,"./modules/es7.reflect.delete-metadata":518,"./modules/es7.reflect.get-metadata":520,"./modules/es7.reflect.get-metadata-keys":519,"./modules/es7.reflect.get-own-metadata":522,"./modules/es7.reflect.get-own-metadata-keys":521,"./modules/es7.reflect.has-metadata":523,"./modules/es7.reflect.has-own-metadata":524,"./modules/es7.reflect.metadata":525,"./modules/es7.set.from":526,"./modules/es7.set.of":527,"./modules/es7.set.to-json":528,"./modules/es7.string.at":529,"./modules/es7.string.match-all":530,"./modules/es7.string.pad-end":531,"./modules/es7.string.pad-start":532,"./modules/es7.string.trim-left":533,"./modules/es7.string.trim-right":534,"./modules/es7.symbol.async-iterator":535,"./modules/es7.symbol.observable":536,"./modules/es7.system.global":537,"./modules/es7.weak-map.from":538,"./modules/es7.weak-map.of":539,"./modules/es7.weak-set.from":540,"./modules/es7.weak-set.of":541,"./modules/web.dom.iterable":542,"./modules/web.immediate":543,"./modules/web.timers":544}],546:[function(require,module,exports){ +},{"./modules/_core":249,"./modules/es6.array.copy-within":355,"./modules/es6.array.every":356,"./modules/es6.array.fill":357,"./modules/es6.array.filter":358,"./modules/es6.array.find":360,"./modules/es6.array.find-index":359,"./modules/es6.array.for-each":361,"./modules/es6.array.from":362,"./modules/es6.array.index-of":363,"./modules/es6.array.is-array":364,"./modules/es6.array.iterator":365,"./modules/es6.array.join":366,"./modules/es6.array.last-index-of":367,"./modules/es6.array.map":368,"./modules/es6.array.of":369,"./modules/es6.array.reduce":371,"./modules/es6.array.reduce-right":370,"./modules/es6.array.slice":372,"./modules/es6.array.some":373,"./modules/es6.array.sort":374,"./modules/es6.array.species":375,"./modules/es6.date.now":376,"./modules/es6.date.to-iso-string":377,"./modules/es6.date.to-json":378,"./modules/es6.date.to-primitive":379,"./modules/es6.date.to-string":380,"./modules/es6.function.bind":381,"./modules/es6.function.has-instance":382,"./modules/es6.function.name":383,"./modules/es6.map":384,"./modules/es6.math.acosh":385,"./modules/es6.math.asinh":386,"./modules/es6.math.atanh":387,"./modules/es6.math.cbrt":388,"./modules/es6.math.clz32":389,"./modules/es6.math.cosh":390,"./modules/es6.math.expm1":391,"./modules/es6.math.fround":392,"./modules/es6.math.hypot":393,"./modules/es6.math.imul":394,"./modules/es6.math.log10":395,"./modules/es6.math.log1p":396,"./modules/es6.math.log2":397,"./modules/es6.math.sign":398,"./modules/es6.math.sinh":399,"./modules/es6.math.tanh":400,"./modules/es6.math.trunc":401,"./modules/es6.number.constructor":402,"./modules/es6.number.epsilon":403,"./modules/es6.number.is-finite":404,"./modules/es6.number.is-integer":405,"./modules/es6.number.is-nan":406,"./modules/es6.number.is-safe-integer":407,"./modules/es6.number.max-safe-integer":408,"./modules/es6.number.min-safe-integer":409,"./modules/es6.number.parse-float":410,"./modules/es6.number.parse-int":411,"./modules/es6.number.to-fixed":412,"./modules/es6.number.to-precision":413,"./modules/es6.object.assign":414,"./modules/es6.object.create":415,"./modules/es6.object.define-properties":416,"./modules/es6.object.define-property":417,"./modules/es6.object.freeze":418,"./modules/es6.object.get-own-property-descriptor":419,"./modules/es6.object.get-own-property-names":420,"./modules/es6.object.get-prototype-of":421,"./modules/es6.object.is":425,"./modules/es6.object.is-extensible":422,"./modules/es6.object.is-frozen":423,"./modules/es6.object.is-sealed":424,"./modules/es6.object.keys":426,"./modules/es6.object.prevent-extensions":427,"./modules/es6.object.seal":428,"./modules/es6.object.set-prototype-of":429,"./modules/es6.object.to-string":430,"./modules/es6.parse-float":431,"./modules/es6.parse-int":432,"./modules/es6.promise":433,"./modules/es6.reflect.apply":434,"./modules/es6.reflect.construct":435,"./modules/es6.reflect.define-property":436,"./modules/es6.reflect.delete-property":437,"./modules/es6.reflect.enumerate":438,"./modules/es6.reflect.get":441,"./modules/es6.reflect.get-own-property-descriptor":439,"./modules/es6.reflect.get-prototype-of":440,"./modules/es6.reflect.has":442,"./modules/es6.reflect.is-extensible":443,"./modules/es6.reflect.own-keys":444,"./modules/es6.reflect.prevent-extensions":445,"./modules/es6.reflect.set":447,"./modules/es6.reflect.set-prototype-of":446,"./modules/es6.regexp.constructor":448,"./modules/es6.regexp.flags":449,"./modules/es6.regexp.match":450,"./modules/es6.regexp.replace":451,"./modules/es6.regexp.search":452,"./modules/es6.regexp.split":453,"./modules/es6.regexp.to-string":454,"./modules/es6.set":455,"./modules/es6.string.anchor":456,"./modules/es6.string.big":457,"./modules/es6.string.blink":458,"./modules/es6.string.bold":459,"./modules/es6.string.code-point-at":460,"./modules/es6.string.ends-with":461,"./modules/es6.string.fixed":462,"./modules/es6.string.fontcolor":463,"./modules/es6.string.fontsize":464,"./modules/es6.string.from-code-point":465,"./modules/es6.string.includes":466,"./modules/es6.string.italics":467,"./modules/es6.string.iterator":468,"./modules/es6.string.link":469,"./modules/es6.string.raw":470,"./modules/es6.string.repeat":471,"./modules/es6.string.small":472,"./modules/es6.string.starts-with":473,"./modules/es6.string.strike":474,"./modules/es6.string.sub":475,"./modules/es6.string.sup":476,"./modules/es6.string.trim":477,"./modules/es6.symbol":478,"./modules/es6.typed.array-buffer":479,"./modules/es6.typed.data-view":480,"./modules/es6.typed.float32-array":481,"./modules/es6.typed.float64-array":482,"./modules/es6.typed.int16-array":483,"./modules/es6.typed.int32-array":484,"./modules/es6.typed.int8-array":485,"./modules/es6.typed.uint16-array":486,"./modules/es6.typed.uint32-array":487,"./modules/es6.typed.uint8-array":488,"./modules/es6.typed.uint8-clamped-array":489,"./modules/es6.weak-map":490,"./modules/es6.weak-set":491,"./modules/es7.array.flat-map":492,"./modules/es7.array.flatten":493,"./modules/es7.array.includes":494,"./modules/es7.asap":495,"./modules/es7.error.is-error":496,"./modules/es7.global":497,"./modules/es7.map.from":498,"./modules/es7.map.of":499,"./modules/es7.map.to-json":500,"./modules/es7.math.clamp":501,"./modules/es7.math.deg-per-rad":502,"./modules/es7.math.degrees":503,"./modules/es7.math.fscale":504,"./modules/es7.math.iaddh":505,"./modules/es7.math.imulh":506,"./modules/es7.math.isubh":507,"./modules/es7.math.rad-per-deg":508,"./modules/es7.math.radians":509,"./modules/es7.math.scale":510,"./modules/es7.math.signbit":511,"./modules/es7.math.umulh":512,"./modules/es7.object.define-getter":513,"./modules/es7.object.define-setter":514,"./modules/es7.object.entries":515,"./modules/es7.object.get-own-property-descriptors":516,"./modules/es7.object.lookup-getter":517,"./modules/es7.object.lookup-setter":518,"./modules/es7.object.values":519,"./modules/es7.observable":520,"./modules/es7.promise.finally":521,"./modules/es7.promise.try":522,"./modules/es7.reflect.define-metadata":523,"./modules/es7.reflect.delete-metadata":524,"./modules/es7.reflect.get-metadata":526,"./modules/es7.reflect.get-metadata-keys":525,"./modules/es7.reflect.get-own-metadata":528,"./modules/es7.reflect.get-own-metadata-keys":527,"./modules/es7.reflect.has-metadata":529,"./modules/es7.reflect.has-own-metadata":530,"./modules/es7.reflect.metadata":531,"./modules/es7.set.from":532,"./modules/es7.set.of":533,"./modules/es7.set.to-json":534,"./modules/es7.string.at":535,"./modules/es7.string.match-all":536,"./modules/es7.string.pad-end":537,"./modules/es7.string.pad-start":538,"./modules/es7.string.trim-left":539,"./modules/es7.string.trim-right":540,"./modules/es7.symbol.async-iterator":541,"./modules/es7.symbol.observable":542,"./modules/es7.system.global":543,"./modules/es7.weak-map.from":544,"./modules/es7.weak-map.of":545,"./modules/es7.weak-set.from":546,"./modules/es7.weak-set.of":547,"./modules/web.dom.iterable":548,"./modules/web.immediate":549,"./modules/web.timers":550}],552:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -108639,7 +108946,7 @@ function objectToString(o) { } }).call(this,{"isBuffer":require("../../is-buffer/index.js")}) -},{"../../is-buffer/index.js":609}],547:[function(require,module,exports){ +},{"../../is-buffer/index.js":615}],553:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -108767,7 +109074,7 @@ function formatReturnValue(bn, enc, len) { } }).call(this,require("buffer").Buffer) -},{"bn.js":186,"buffer":219,"elliptic":567}],548:[function(require,module,exports){ +},{"bn.js":192,"buffer":225,"elliptic":573}],554:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -108824,7 +109131,7 @@ module.exports = function createHash(alg) { }; }).call(this,require("buffer").Buffer) -},{"./md5":550,"buffer":219,"cipher-base":220,"inherits":608,"ripemd160":660,"sha.js":671}],549:[function(require,module,exports){ +},{"./md5":556,"buffer":225,"cipher-base":226,"inherits":614,"ripemd160":666,"sha.js":677}],555:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -108859,7 +109166,7 @@ module.exports = function hash(buf, fn) { }; }).call(this,require("buffer").Buffer) -},{"buffer":219}],550:[function(require,module,exports){ +},{"buffer":225}],556:[function(require,module,exports){ 'use strict'; /* * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message @@ -109012,7 +109319,7 @@ module.exports = function md5(buf) { return makeHash(buf, core_md5); }; -},{"./make-hash":549}],551:[function(require,module,exports){ +},{"./make-hash":555}],557:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -109077,7 +109384,7 @@ module.exports = function createHmac(alg, key) { return new Hmac(alg, key); }; -},{"./legacy":552,"cipher-base":220,"create-hash/md5":550,"inherits":608,"ripemd160":660,"safe-buffer":662,"sha.js":671}],552:[function(require,module,exports){ +},{"./legacy":558,"cipher-base":226,"create-hash/md5":556,"inherits":614,"ripemd160":666,"safe-buffer":668,"sha.js":677}],558:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -109126,7 +109433,7 @@ Hmac.prototype._final = function () { }; module.exports = Hmac; -},{"cipher-base":220,"inherits":608,"safe-buffer":662}],553:[function(require,module,exports){ +},{"cipher-base":226,"inherits":614,"safe-buffer":668}],559:[function(require,module,exports){ 'use strict'; exports.randomBytes = exports.rng = exports.pseudoRandomBytes = exports.prng = require('randombytes'); @@ -109221,7 +109528,7 @@ exports.constants = { 'POINT_CONVERSION_HYBRID': 6 }; -},{"browserify-cipher":206,"browserify-sign":213,"browserify-sign/algos":210,"create-ecdh":547,"create-hash":548,"create-hmac":551,"diffie-hellman":563,"pbkdf2":632,"public-encrypt":639,"randombytes":645,"randomfill":646}],554:[function(require,module,exports){ +},{"browserify-cipher":212,"browserify-sign":219,"browserify-sign/algos":216,"create-ecdh":553,"create-hash":554,"create-hmac":557,"diffie-hellman":569,"pbkdf2":638,"public-encrypt":645,"randombytes":651,"randomfill":652}],560:[function(require,module,exports){ 'use strict'; exports.utils = require('./des/utils'); @@ -109230,7 +109537,7 @@ exports.DES = require('./des/des'); exports.CBC = require('./des/cbc'); exports.EDE = require('./des/ede'); -},{"./des/cbc":555,"./des/cipher":556,"./des/des":557,"./des/ede":558,"./des/utils":559}],555:[function(require,module,exports){ +},{"./des/cbc":561,"./des/cipher":562,"./des/des":563,"./des/ede":564,"./des/utils":565}],561:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -109298,7 +109605,7 @@ proto._update = function _update(inp, inOff, out, outOff) { } }; -},{"inherits":608,"minimalistic-assert":625}],556:[function(require,module,exports){ +},{"inherits":614,"minimalistic-assert":631}],562:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -109425,7 +109732,7 @@ Cipher.prototype._finalDecrypt = function _finalDecrypt() { return this._unpad(out); }; -},{"minimalistic-assert":625}],557:[function(require,module,exports){ +},{"minimalistic-assert":631}],563:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -109562,7 +109869,7 @@ DES.prototype._decrypt = function _decrypt(state, lStart, rStart, out, off) { utils.rip(l, r, out, off); }; -},{"../des":554,"inherits":608,"minimalistic-assert":625}],558:[function(require,module,exports){ +},{"../des":560,"inherits":614,"minimalistic-assert":631}],564:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -109611,7 +109918,7 @@ EDE.prototype._update = function _update(inp, inOff, out, outOff) { EDE.prototype._pad = DES.prototype._pad; EDE.prototype._unpad = DES.prototype._unpad; -},{"../des":554,"inherits":608,"minimalistic-assert":625}],559:[function(require,module,exports){ +},{"../des":560,"inherits":614,"minimalistic-assert":631}],565:[function(require,module,exports){ 'use strict'; exports.readUInt32BE = function readUInt32BE(bytes, off) { @@ -109817,7 +110124,7 @@ exports.padSplit = function padSplit(num, size, group) { }return out.join(' '); }; -},{}],560:[function(require,module,exports){ +},{}],566:[function(require,module,exports){ 'use strict'; var detectBrowser = require('./lib/detectBrowser'); @@ -109830,7 +110137,7 @@ if (typeof navigator !== 'undefined' && navigator) { module.exports = detectBrowser(agent); -},{"./lib/detectBrowser":561}],561:[function(require,module,exports){ +},{"./lib/detectBrowser":567}],567:[function(require,module,exports){ 'use strict'; var detectOS = require('./detectOS.js'); @@ -109858,7 +110165,7 @@ module.exports = function detectBrowser(userAgentString) { }).filter(Boolean).shift(); }; -},{"./detectOS.js":562}],562:[function(require,module,exports){ +},{"./detectOS.js":568}],568:[function(require,module,exports){ 'use strict'; module.exports = function detectOS(userAgentString) { @@ -109948,7 +110255,7 @@ module.exports = function detectOS(userAgentString) { return detected && detected[0] ? detected[0].name : null; }; -},{}],563:[function(require,module,exports){ +},{}],569:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -109996,7 +110303,7 @@ exports.DiffieHellmanGroup = exports.createDiffieHellmanGroup = exports.getDiffi exports.createDiffieHellman = exports.DiffieHellman = createDiffieHellman; }).call(this,require("buffer").Buffer) -},{"./lib/dh":564,"./lib/generatePrime":565,"./lib/primes.json":566,"buffer":219}],564:[function(require,module,exports){ +},{"./lib/dh":570,"./lib/generatePrime":571,"./lib/primes.json":572,"buffer":225}],570:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -110163,7 +110470,7 @@ function formatReturnValue(bn, enc) { } }).call(this,require("buffer").Buffer) -},{"./generatePrime":565,"bn.js":186,"buffer":219,"miller-rabin":624,"randombytes":645}],565:[function(require,module,exports){ +},{"./generatePrime":571,"bn.js":192,"buffer":225,"miller-rabin":630,"randombytes":651}],571:[function(require,module,exports){ 'use strict'; var randomBytes = require('randombytes'); @@ -110264,7 +110571,7 @@ function findPrime(bits, gen) { } } -},{"bn.js":186,"miller-rabin":624,"randombytes":645}],566:[function(require,module,exports){ +},{"bn.js":192,"miller-rabin":630,"randombytes":651}],572:[function(require,module,exports){ module.exports={ "modp1": { "gen": "02", @@ -110299,7 +110606,7 @@ module.exports={ "prime": "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff" } } -},{}],567:[function(require,module,exports){ +},{}],573:[function(require,module,exports){ 'use strict'; var elliptic = exports; @@ -110314,7 +110621,7 @@ elliptic.curves = require('./elliptic/curves'); elliptic.ec = require('./elliptic/ec'); elliptic.eddsa = require('./elliptic/eddsa'); -},{"../package.json":582,"./elliptic/curve":570,"./elliptic/curves":573,"./elliptic/ec":574,"./elliptic/eddsa":577,"./elliptic/utils":581,"brorand":187}],568:[function(require,module,exports){ +},{"../package.json":588,"./elliptic/curve":576,"./elliptic/curves":579,"./elliptic/ec":580,"./elliptic/eddsa":583,"./elliptic/utils":587,"brorand":193}],574:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -110646,7 +110953,7 @@ BasePoint.prototype.dblp = function dblp(k) { }return r; }; -},{"../../elliptic":567,"bn.js":186}],569:[function(require,module,exports){ +},{"../../elliptic":573,"bn.js":192}],575:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -111034,7 +111341,7 @@ Point.prototype.eqXToP = function eqXToP(x) { Point.prototype.toP = Point.prototype.normalize; Point.prototype.mixedAdd = Point.prototype.add; -},{"../../elliptic":567,"../curve":570,"bn.js":186,"inherits":608}],570:[function(require,module,exports){ +},{"../../elliptic":573,"../curve":576,"bn.js":192,"inherits":614}],576:[function(require,module,exports){ 'use strict'; var curve = exports; @@ -111044,7 +111351,7 @@ curve.short = require('./short'); curve.mont = require('./mont'); curve.edwards = require('./edwards'); -},{"./base":568,"./edwards":569,"./mont":571,"./short":572}],571:[function(require,module,exports){ +},{"./base":574,"./edwards":575,"./mont":577,"./short":578}],577:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -111221,7 +111528,7 @@ Point.prototype.getX = function getX() { return this.x.fromRed(); }; -},{"../../elliptic":567,"../curve":570,"bn.js":186,"inherits":608}],572:[function(require,module,exports){ +},{"../../elliptic":573,"../curve":576,"bn.js":192,"inherits":614}],578:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -112086,7 +112393,7 @@ JPoint.prototype.isInfinity = function isInfinity() { return this.z.cmpn(0) === 0; }; -},{"../../elliptic":567,"../curve":570,"bn.js":186,"inherits":608}],573:[function(require,module,exports){ +},{"../../elliptic":573,"../curve":576,"bn.js":192,"inherits":614}],579:[function(require,module,exports){ 'use strict'; var curves = exports; @@ -112244,7 +112551,7 @@ defineCurve('secp256k1', { g: ['79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798', '483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8', pre] }); -},{"../elliptic":567,"./precomputed/secp256k1":580,"hash.js":590}],574:[function(require,module,exports){ +},{"../elliptic":573,"./precomputed/secp256k1":586,"hash.js":596}],580:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -112462,7 +112769,7 @@ EC.prototype.getKeyRecoveryParam = function (e, signature, Q, enc) { throw new Error('Unable to find valid recovery factor'); }; -},{"../../elliptic":567,"./key":575,"./signature":576,"bn.js":186,"hmac-drbg":603}],575:[function(require,module,exports){ +},{"../../elliptic":573,"./key":581,"./signature":582,"bn.js":192,"hmac-drbg":609}],581:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -112569,7 +112876,7 @@ KeyPair.prototype.inspect = function inspect() { return ''; }; -},{"../../elliptic":567,"bn.js":186}],576:[function(require,module,exports){ +},{"../../elliptic":573,"bn.js":192}],582:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -112699,7 +113006,7 @@ Signature.prototype.toDER = function toDER(enc) { return utils.encode(res, enc); }; -},{"../../elliptic":567,"bn.js":186}],577:[function(require,module,exports){ +},{"../../elliptic":573,"bn.js":192}],583:[function(require,module,exports){ 'use strict'; var hash = require('hash.js'); @@ -112816,7 +113123,7 @@ EDDSA.prototype.isPoint = function isPoint(val) { return val instanceof this.pointClass; }; -},{"../../elliptic":567,"./key":578,"./signature":579,"hash.js":590}],578:[function(require,module,exports){ +},{"../../elliptic":573,"./key":584,"./signature":585,"hash.js":596}],584:[function(require,module,exports){ 'use strict'; var elliptic = require('../../elliptic'); @@ -112908,7 +113215,7 @@ KeyPair.prototype.getPublic = function getPublic(enc) { module.exports = KeyPair; -},{"../../elliptic":567}],579:[function(require,module,exports){ +},{"../../elliptic":573}],585:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -112975,7 +113282,7 @@ Signature.prototype.toHex = function toHex() { module.exports = Signature; -},{"../../elliptic":567,"bn.js":186}],580:[function(require,module,exports){ +},{"../../elliptic":573,"bn.js":192}],586:[function(require,module,exports){ 'use strict'; module.exports = { @@ -112989,7 +113296,7 @@ module.exports = { } }; -},{}],581:[function(require,module,exports){ +},{}],587:[function(require,module,exports){ 'use strict'; var utils = exports; @@ -113092,7 +113399,7 @@ function intFromLE(bytes) { } utils.intFromLE = intFromLE; -},{"bn.js":186,"minimalistic-assert":625,"minimalistic-crypto-utils":626}],582:[function(require,module,exports){ +},{"bn.js":192,"minimalistic-assert":631,"minimalistic-crypto-utils":632}],588:[function(require,module,exports){ module.exports={ "_args": [ [ @@ -113186,7 +113493,7 @@ module.exports={ "version": "6.4.0" } -},{}],583:[function(require,module,exports){ +},{}],589:[function(require,module,exports){ module.exports={ "genesisGasLimit": { "v": 5000, @@ -113423,7 +113730,7 @@ module.exports={ } } -},{}],584:[function(require,module,exports){ +},{}],590:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -113745,7 +114052,7 @@ var Transaction = function () { module.exports = Transaction; }).call(this,require("buffer").Buffer) -},{"buffer":219,"ethereum-common/params.json":583,"ethereumjs-util":585}],585:[function(require,module,exports){ +},{"buffer":225,"ethereum-common/params.json":589,"ethereumjs-util":591}],591:[function(require,module,exports){ 'use strict'; var _typeof2 = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -114445,7 +114752,7 @@ exports.defineProperties = function (self, fields, data) { } }; -},{"assert":171,"bn.js":186,"create-hash":548,"ethjs-util":586,"keccak":613,"rlp":661,"safe-buffer":662,"secp256k1":664}],586:[function(require,module,exports){ +},{"assert":177,"bn.js":192,"create-hash":554,"ethjs-util":592,"keccak":619,"rlp":667,"safe-buffer":668,"secp256k1":670}],592:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -114671,7 +114978,7 @@ module.exports = { }; }).call(this,require("buffer").Buffer) -},{"buffer":219,"is-hex-prefixed":610,"strip-hex-prefix":682}],587:[function(require,module,exports){ +},{"buffer":225,"is-hex-prefixed":616,"strip-hex-prefix":688}],593:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -114946,7 +115253,7 @@ function isUndefined(arg) { return arg === void 0; } -},{}],588:[function(require,module,exports){ +},{}],594:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -114995,7 +115302,7 @@ function EVP_BytesToKey(password, salt, keyBits, ivLen) { module.exports = EVP_BytesToKey; -},{"md5.js":622,"safe-buffer":662}],589:[function(require,module,exports){ +},{"md5.js":628,"safe-buffer":668}],595:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -115084,7 +115391,7 @@ HashBase.prototype._digest = function () { module.exports = HashBase; }).call(this,require("buffer").Buffer) -},{"buffer":219,"inherits":608,"stream":679}],590:[function(require,module,exports){ +},{"buffer":225,"inherits":614,"stream":685}],596:[function(require,module,exports){ 'use strict'; var hash = exports; @@ -115103,7 +115410,7 @@ hash.sha384 = hash.sha.sha384; hash.sha512 = hash.sha.sha512; hash.ripemd160 = hash.ripemd.ripemd160; -},{"./hash/common":591,"./hash/hmac":592,"./hash/ripemd":593,"./hash/sha":594,"./hash/utils":601}],591:[function(require,module,exports){ +},{"./hash/common":597,"./hash/hmac":598,"./hash/ripemd":599,"./hash/sha":600,"./hash/utils":607}],597:[function(require,module,exports){ 'use strict'; var utils = require('./utils'); @@ -115193,7 +115500,7 @@ BlockHash.prototype._pad = function pad() { return res; }; -},{"./utils":601,"minimalistic-assert":625}],592:[function(require,module,exports){ +},{"./utils":607,"minimalistic-assert":631}],598:[function(require,module,exports){ 'use strict'; var utils = require('./utils'); @@ -115239,7 +115546,7 @@ Hmac.prototype.digest = function digest(enc) { return this.outer.digest(enc); }; -},{"./utils":601,"minimalistic-assert":625}],593:[function(require,module,exports){ +},{"./utils":607,"minimalistic-assert":631}],599:[function(require,module,exports){ 'use strict'; var utils = require('./utils'); @@ -115324,7 +115631,7 @@ var s = [11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8, 7, 6, 8, 13, 11 var sh = [8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6, 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11, 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5, 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8, 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11]; -},{"./common":591,"./utils":601}],594:[function(require,module,exports){ +},{"./common":597,"./utils":607}],600:[function(require,module,exports){ 'use strict'; exports.sha1 = require('./sha/1'); @@ -115333,7 +115640,7 @@ exports.sha256 = require('./sha/256'); exports.sha384 = require('./sha/384'); exports.sha512 = require('./sha/512'); -},{"./sha/1":595,"./sha/224":596,"./sha/256":597,"./sha/384":598,"./sha/512":599}],595:[function(require,module,exports){ +},{"./sha/1":601,"./sha/224":602,"./sha/256":603,"./sha/384":604,"./sha/512":605}],601:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115398,7 +115705,7 @@ SHA1.prototype._digest = function digest(enc) { if (enc === 'hex') return utils.toHex32(this.h, 'big');else return utils.split32(this.h, 'big'); }; -},{"../common":591,"../utils":601,"./common":600}],596:[function(require,module,exports){ +},{"../common":597,"../utils":607,"./common":606}],602:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115423,7 +115730,7 @@ SHA224.prototype._digest = function digest(enc) { if (enc === 'hex') return utils.toHex32(this.h.slice(0, 7), 'big');else return utils.split32(this.h.slice(0, 7), 'big'); }; -},{"../utils":601,"./256":597}],597:[function(require,module,exports){ +},{"../utils":607,"./256":603}],603:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115505,7 +115812,7 @@ SHA256.prototype._digest = function digest(enc) { if (enc === 'hex') return utils.toHex32(this.h, 'big');else return utils.split32(this.h, 'big'); }; -},{"../common":591,"../utils":601,"./common":600,"minimalistic-assert":625}],598:[function(require,module,exports){ +},{"../common":597,"../utils":607,"./common":606,"minimalistic-assert":631}],604:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115530,7 +115837,7 @@ SHA384.prototype._digest = function digest(enc) { if (enc === 'hex') return utils.toHex32(this.h.slice(0, 12), 'big');else return utils.split32(this.h.slice(0, 12), 'big'); }; -},{"../utils":601,"./512":599}],599:[function(require,module,exports){ +},{"../utils":607,"./512":605}],605:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115779,7 +116086,7 @@ function g1_512_lo(xh, xl) { return r; } -},{"../common":591,"../utils":601,"minimalistic-assert":625}],600:[function(require,module,exports){ +},{"../common":597,"../utils":607,"minimalistic-assert":631}],606:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115827,7 +116134,7 @@ function g1_256(x) { } exports.g1_256 = g1_256; -},{"../utils":601}],601:[function(require,module,exports){ +},{"../utils":607}],607:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -116053,7 +116360,7 @@ function shr64_lo(ah, al, num) { } exports.shr64_lo = shr64_lo; -},{"inherits":608,"minimalistic-assert":625}],602:[function(require,module,exports){ +},{"inherits":614,"minimalistic-assert":631}],608:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -116294,7 +116601,7 @@ HDKey.HARDENED_OFFSET = HARDENED_OFFSET; module.exports = HDKey; }).call(this,require("buffer").Buffer) -},{"assert":171,"buffer":219,"coinstring":221,"crypto":553,"secp256k1":664}],603:[function(require,module,exports){ +},{"assert":177,"buffer":225,"coinstring":227,"crypto":559,"secp256k1":670}],609:[function(require,module,exports){ 'use strict'; var hash = require('hash.js'); @@ -116397,7 +116704,7 @@ HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) { return utils.encode(res, enc); }; -},{"hash.js":590,"minimalistic-assert":625,"minimalistic-crypto-utils":626}],604:[function(require,module,exports){ +},{"hash.js":596,"minimalistic-assert":631,"minimalistic-crypto-utils":632}],610:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -116437,7 +116744,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol }; }); -},{}],605:[function(require,module,exports){ +},{}],611:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -116594,7 +116901,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol }; }); -},{"./idna-map":604,"punycode":216}],606:[function(require,module,exports){ +},{"./idna-map":610,"punycode":222}],612:[function(require,module,exports){ "use strict"; exports.read = function (buffer, offset, isLE, mLen, nBytes) { @@ -116682,7 +116989,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { buffer[offset + i - d] |= s * 128; }; -},{}],607:[function(require,module,exports){ +},{}],613:[function(require,module,exports){ "use strict"; var indexOf = [].indexOf; @@ -116695,7 +117002,7 @@ module.exports = function (arr, obj) { return -1; }; -},{}],608:[function(require,module,exports){ +},{}],614:[function(require,module,exports){ 'use strict'; if (typeof Object.create === 'function') { @@ -116722,7 +117029,7 @@ if (typeof Object.create === 'function') { }; } -},{}],609:[function(require,module,exports){ +},{}],615:[function(require,module,exports){ 'use strict'; /*! @@ -116747,7 +117054,7 @@ function isSlowBuffer(obj) { return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0)); } -},{}],610:[function(require,module,exports){ +},{}],616:[function(require,module,exports){ "use strict"; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -116766,7 +117073,7 @@ module.exports = function isHexPrefixed(str) { return str.slice(0, 2) === '0x'; }; -},{}],611:[function(require,module,exports){ +},{}],617:[function(require,module,exports){ 'use strict'; var toString = {}.toString; @@ -116775,7 +117082,7 @@ module.exports = Array.isArray || function (arr) { return toString.call(arr) == '[object Array]'; }; -},{}],612:[function(require,module,exports){ +},{}],618:[function(require,module,exports){ /* A JavaScript implementation of the SHA family of hashes, as defined in FIPS PUB 180-2 as well as the corresponding HMAC implementation @@ -117028,12 +117335,12 @@ module.exports = Array.isArray || function (arr) { }) : "undefined" !== typeof exports ? "undefined" !== typeof module && module.exports ? module.exports = exports = z : exports = z : U.jsSHA = z; })(undefined); -},{}],613:[function(require,module,exports){ +},{}],619:[function(require,module,exports){ 'use strict'; module.exports = require('./lib/api')(require('./lib/keccak')); -},{"./lib/api":614,"./lib/keccak":618}],614:[function(require,module,exports){ +},{"./lib/api":620,"./lib/keccak":624}],620:[function(require,module,exports){ 'use strict'; var createKeccak = require('./keccak'); @@ -117075,7 +117382,7 @@ module.exports = function (KeccakState) { }; }; -},{"./keccak":615,"./shake":616}],615:[function(require,module,exports){ +},{"./keccak":621,"./shake":622}],621:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -117162,7 +117469,7 @@ module.exports = function (KeccakState) { return Keccak; }; -},{"inherits":608,"safe-buffer":662,"stream":679}],616:[function(require,module,exports){ +},{"inherits":614,"safe-buffer":668,"stream":685}],622:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -117240,7 +117547,7 @@ module.exports = function (KeccakState) { return Shake; }; -},{"inherits":608,"safe-buffer":662,"stream":679}],617:[function(require,module,exports){ +},{"inherits":614,"safe-buffer":668,"stream":685}],623:[function(require,module,exports){ 'use strict'; var P1600_ROUND_CONSTANTS = [1, 0, 32898, 0, 32906, 2147483648, 2147516416, 2147483648, 32907, 0, 2147483649, 0, 2147516545, 2147483648, 32777, 2147483648, 138, 0, 136, 0, 2147516425, 0, 2147483658, 0, 2147516555, 0, 139, 2147483648, 32905, 2147483648, 32771, 2147483648, 32770, 2147483648, 128, 2147483648, 32778, 0, 2147483658, 2147483648, 2147516545, 2147483648, 32896, 2147483648, 2147483649, 0, 2147516424, 2147483648]; @@ -117430,7 +117737,7 @@ exports.p1600 = function (s) { } }; -},{}],618:[function(require,module,exports){ +},{}],624:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -117499,7 +117806,7 @@ Keccak.prototype.copy = function (dest) { module.exports = Keccak; -},{"./keccak-state-unroll":617,"safe-buffer":662}],619:[function(require,module,exports){ +},{"./keccak-state-unroll":623,"safe-buffer":668}],625:[function(require,module,exports){ /* eslint-disable no-nested-ternary */ 'use strict'; @@ -117587,7 +117894,7 @@ module.exports = function (a, b) { return ret; }; -},{}],620:[function(require,module,exports){ +},{}],626:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -117696,7 +118003,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return Levenshtein; }); -},{}],621:[function(require,module,exports){ +},{}],627:[function(require,module,exports){ (function (global){ 'use strict'; @@ -118916,7 +119223,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol }()); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],622:[function(require,module,exports){ +},{}],628:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -119066,7 +119373,7 @@ function fnI(a, b, c, d, m, k, s) { module.exports = MD5; }).call(this,require("buffer").Buffer) -},{"buffer":219,"hash-base":623,"inherits":608}],623:[function(require,module,exports){ +},{"buffer":225,"hash-base":629,"inherits":614}],629:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -119165,7 +119472,7 @@ HashBase.prototype._digest = function () { module.exports = HashBase; -},{"inherits":608,"safe-buffer":662,"stream":679}],624:[function(require,module,exports){ +},{"inherits":614,"safe-buffer":668,"stream":685}],630:[function(require,module,exports){ 'use strict'; var bn = require('bn.js'); @@ -119273,7 +119580,7 @@ MillerRabin.prototype.getDivisor = function getDivisor(n, k) { return false; }; -},{"bn.js":186,"brorand":187}],625:[function(require,module,exports){ +},{"bn.js":192,"brorand":193}],631:[function(require,module,exports){ 'use strict'; module.exports = assert; @@ -119286,7 +119593,7 @@ assert.equal = function assertEqual(l, r, msg) { if (l != r) throw new Error(msg || 'Assertion failed: ' + l + ' != ' + r); }; -},{}],626:[function(require,module,exports){ +},{}],632:[function(require,module,exports){ 'use strict'; var utils = exports; @@ -119335,7 +119642,7 @@ utils.encode = function encode(arr, enc) { if (enc === 'hex') return toHex(arr);else return arr; }; -},{}],627:[function(require,module,exports){ +},{}],633:[function(require,module,exports){ module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb", "2.16.840.1.101.3.4.1.2": "aes-128-cbc", "2.16.840.1.101.3.4.1.3": "aes-128-ofb", @@ -119349,7 +119656,7 @@ module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb", "2.16.840.1.101.3.4.1.43": "aes-256-ofb", "2.16.840.1.101.3.4.1.44": "aes-256-cfb" } -},{}],628:[function(require,module,exports){ +},{}],634:[function(require,module,exports){ // from https://github.com/indutny/self-signed/blob/gh-pages/lib/asn1.js // Fedor, you are amazing. 'use strict'; @@ -119411,7 +119718,7 @@ exports.signature = asn1.define('signature', function () { this.seq().obj(this.key('r').int(), this.key('s').int()); }); -},{"./certificate":629,"asn1.js":157}],629:[function(require,module,exports){ +},{"./certificate":635,"asn1.js":163}],635:[function(require,module,exports){ // from https://github.com/Rantanen/node-dtls/blob/25a7dc861bda38cfeac93a723500eea4f0ac2e86/Certificate.js // thanks to @Rantanen @@ -119470,7 +119777,7 @@ var X509Certificate = asn.define('X509Certificate', function () { module.exports = X509Certificate; -},{"asn1.js":157}],630:[function(require,module,exports){ +},{"asn1.js":163}],636:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -119506,7 +119813,7 @@ module.exports = function (okey, password) { }; }).call(this,require("buffer").Buffer) -},{"browserify-aes":191,"buffer":219,"evp_bytestokey":588}],631:[function(require,module,exports){ +},{"browserify-aes":197,"buffer":225,"evp_bytestokey":594}],637:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -119623,14 +119930,14 @@ function decrypt(data, password) { } }).call(this,require("buffer").Buffer) -},{"./aesid.json":627,"./asn1":628,"./fixProc":630,"browserify-aes":191,"buffer":219,"pbkdf2":632}],632:[function(require,module,exports){ +},{"./aesid.json":633,"./asn1":634,"./fixProc":636,"browserify-aes":197,"buffer":225,"pbkdf2":638}],638:[function(require,module,exports){ 'use strict'; exports.pbkdf2 = require('./lib/async'); exports.pbkdf2Sync = require('./lib/sync'); -},{"./lib/async":633,"./lib/sync":636}],633:[function(require,module,exports){ +},{"./lib/async":639,"./lib/sync":642}],639:[function(require,module,exports){ (function (process,global){ 'use strict'; @@ -119731,7 +120038,7 @@ module.exports = function (password, salt, iterations, keylen, digest, callback) }; }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./default-encoding":634,"./precondition":635,"./sync":636,"_process":638,"safe-buffer":662}],634:[function(require,module,exports){ +},{"./default-encoding":640,"./precondition":641,"./sync":642,"_process":644,"safe-buffer":668}],640:[function(require,module,exports){ (function (process){ 'use strict'; @@ -119747,7 +120054,7 @@ if (process.browser) { module.exports = defaultEncoding; }).call(this,require('_process')) -},{"_process":638}],635:[function(require,module,exports){ +},{"_process":644}],641:[function(require,module,exports){ 'use strict'; var MAX_ALLOC = Math.pow(2, 30) - 1; // default in iojs @@ -119770,7 +120077,7 @@ module.exports = function (iterations, keylen) { } }; -},{}],636:[function(require,module,exports){ +},{}],642:[function(require,module,exports){ 'use strict'; var md5 = require('create-hash/md5'); @@ -119877,7 +120184,7 @@ function pbkdf2(password, salt, iterations, keylen, digest) { module.exports = pbkdf2; -},{"./default-encoding":634,"./precondition":635,"create-hash/md5":550,"ripemd160":660,"safe-buffer":662,"sha.js":671}],637:[function(require,module,exports){ +},{"./default-encoding":640,"./precondition":641,"create-hash/md5":556,"ripemd160":666,"safe-buffer":668,"sha.js":677}],643:[function(require,module,exports){ (function (process){ 'use strict'; @@ -119922,7 +120229,7 @@ function nextTick(fn, arg1, arg2, arg3) { } }).call(this,require('_process')) -},{"_process":638}],638:[function(require,module,exports){ +},{"_process":644}],644:[function(require,module,exports){ 'use strict'; // shim for using process in browser @@ -120111,7 +120418,7 @@ process.umask = function () { return 0; }; -},{}],639:[function(require,module,exports){ +},{}],645:[function(require,module,exports){ 'use strict'; exports.publicEncrypt = require('./publicEncrypt'); @@ -120125,7 +120432,7 @@ exports.publicDecrypt = function publicDecrypt(key, buf) { return exports.privateDecrypt(key, buf, true); }; -},{"./privateDecrypt":641,"./publicEncrypt":642}],640:[function(require,module,exports){ +},{"./privateDecrypt":647,"./publicEncrypt":648}],646:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -120148,7 +120455,7 @@ function i2ops(c) { } }).call(this,require("buffer").Buffer) -},{"buffer":219,"create-hash":548}],641:[function(require,module,exports){ +},{"buffer":225,"create-hash":554}],647:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -120262,7 +120569,7 @@ function compare(a, b) { } }).call(this,require("buffer").Buffer) -},{"./mgf":640,"./withPublic":643,"./xor":644,"bn.js":186,"browserify-rsa":209,"buffer":219,"create-hash":548,"parse-asn1":631}],642:[function(require,module,exports){ +},{"./mgf":646,"./withPublic":649,"./xor":650,"bn.js":192,"browserify-rsa":215,"buffer":225,"create-hash":554,"parse-asn1":637}],648:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -120363,7 +120670,7 @@ function nonZero(len, crypto) { } }).call(this,require("buffer").Buffer) -},{"./mgf":640,"./withPublic":643,"./xor":644,"bn.js":186,"browserify-rsa":209,"buffer":219,"create-hash":548,"parse-asn1":631,"randombytes":645}],643:[function(require,module,exports){ +},{"./mgf":646,"./withPublic":649,"./xor":650,"bn.js":192,"browserify-rsa":215,"buffer":225,"create-hash":554,"parse-asn1":637,"randombytes":651}],649:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -120375,7 +120682,7 @@ function withPublic(paddedMsg, key) { module.exports = withPublic; }).call(this,require("buffer").Buffer) -},{"bn.js":186,"buffer":219}],644:[function(require,module,exports){ +},{"bn.js":192,"buffer":225}],650:[function(require,module,exports){ "use strict"; module.exports = function xor(a, b) { @@ -120387,7 +120694,7 @@ module.exports = function xor(a, b) { return a; }; -},{}],645:[function(require,module,exports){ +},{}],651:[function(require,module,exports){ (function (process,global){ 'use strict'; @@ -120430,7 +120737,7 @@ function randomBytes(size, cb) { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"_process":638,"safe-buffer":662}],646:[function(require,module,exports){ +},{"_process":644,"safe-buffer":668}],652:[function(require,module,exports){ (function (process,global){ 'use strict'; @@ -120544,12 +120851,12 @@ function randomFillSync(buf, offset, size) { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"_process":638,"randombytes":645,"safe-buffer":662}],647:[function(require,module,exports){ +},{"_process":644,"randombytes":651,"safe-buffer":668}],653:[function(require,module,exports){ 'use strict'; module.exports = require('./lib/_stream_duplex.js'); -},{"./lib/_stream_duplex.js":648}],648:[function(require,module,exports){ +},{"./lib/_stream_duplex.js":654}],654:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -120675,7 +120982,7 @@ function forEach(xs, f) { } } -},{"./_stream_readable":650,"./_stream_writable":652,"core-util-is":546,"inherits":608,"process-nextick-args":637}],649:[function(require,module,exports){ +},{"./_stream_readable":656,"./_stream_writable":658,"core-util-is":552,"inherits":614,"process-nextick-args":643}],655:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -120724,7 +121031,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { cb(null, chunk); }; -},{"./_stream_transform":651,"core-util-is":546,"inherits":608}],650:[function(require,module,exports){ +},{"./_stream_transform":657,"core-util-is":552,"inherits":614}],656:[function(require,module,exports){ (function (process,global){ // Copyright Joyent, Inc. and other Node contributors. // @@ -121735,7 +122042,7 @@ function indexOf(xs, x) { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./_stream_duplex":648,"./internal/streams/BufferList":653,"./internal/streams/destroy":654,"./internal/streams/stream":655,"_process":638,"core-util-is":546,"events":587,"inherits":608,"isarray":611,"process-nextick-args":637,"safe-buffer":662,"string_decoder/":681,"util":188}],651:[function(require,module,exports){ +},{"./_stream_duplex":654,"./internal/streams/BufferList":659,"./internal/streams/destroy":660,"./internal/streams/stream":661,"_process":644,"core-util-is":552,"events":593,"inherits":614,"isarray":617,"process-nextick-args":643,"safe-buffer":668,"string_decoder/":687,"util":194}],657:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -121951,7 +122258,7 @@ function done(stream, er, data) { return stream.push(null); } -},{"./_stream_duplex":648,"core-util-is":546,"inherits":608}],652:[function(require,module,exports){ +},{"./_stream_duplex":654,"core-util-is":552,"inherits":614}],658:[function(require,module,exports){ (function (process,global){ // Copyright Joyent, Inc. and other Node contributors. // @@ -122619,7 +122926,7 @@ Writable.prototype._destroy = function (err, cb) { }; }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./_stream_duplex":648,"./internal/streams/destroy":654,"./internal/streams/stream":655,"_process":638,"core-util-is":546,"inherits":608,"process-nextick-args":637,"safe-buffer":662,"util-deprecate":686}],653:[function(require,module,exports){ +},{"./_stream_duplex":654,"./internal/streams/destroy":660,"./internal/streams/stream":661,"_process":644,"core-util-is":552,"inherits":614,"process-nextick-args":643,"safe-buffer":668,"util-deprecate":692}],659:[function(require,module,exports){ 'use strict'; /**/ @@ -122699,7 +123006,7 @@ module.exports = function () { return BufferList; }(); -},{"safe-buffer":662}],654:[function(require,module,exports){ +},{"safe-buffer":668}],660:[function(require,module,exports){ 'use strict'; /**/ @@ -122773,17 +123080,17 @@ module.exports = { undestroy: undestroy }; -},{"process-nextick-args":637}],655:[function(require,module,exports){ +},{"process-nextick-args":643}],661:[function(require,module,exports){ 'use strict'; module.exports = require('events').EventEmitter; -},{"events":587}],656:[function(require,module,exports){ +},{"events":593}],662:[function(require,module,exports){ 'use strict'; module.exports = require('./readable').PassThrough; -},{"./readable":657}],657:[function(require,module,exports){ +},{"./readable":663}],663:[function(require,module,exports){ 'use strict'; exports = module.exports = require('./lib/_stream_readable.js'); @@ -122794,17 +123101,17 @@ exports.Duplex = require('./lib/_stream_duplex.js'); exports.Transform = require('./lib/_stream_transform.js'); exports.PassThrough = require('./lib/_stream_passthrough.js'); -},{"./lib/_stream_duplex.js":648,"./lib/_stream_passthrough.js":649,"./lib/_stream_readable.js":650,"./lib/_stream_transform.js":651,"./lib/_stream_writable.js":652}],658:[function(require,module,exports){ +},{"./lib/_stream_duplex.js":654,"./lib/_stream_passthrough.js":655,"./lib/_stream_readable.js":656,"./lib/_stream_transform.js":657,"./lib/_stream_writable.js":658}],664:[function(require,module,exports){ 'use strict'; module.exports = require('./readable').Transform; -},{"./readable":657}],659:[function(require,module,exports){ +},{"./readable":663}],665:[function(require,module,exports){ 'use strict'; module.exports = require('./lib/_stream_writable.js'); -},{"./lib/_stream_writable.js":652}],660:[function(require,module,exports){ +},{"./lib/_stream_writable.js":658}],666:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -123100,7 +123407,7 @@ function fn5(a, b, c, d, e, m, k, s) { module.exports = RIPEMD160; }).call(this,require("buffer").Buffer) -},{"buffer":219,"hash-base":589,"inherits":608}],661:[function(require,module,exports){ +},{"buffer":225,"hash-base":595,"inherits":614}],667:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -123335,7 +123642,7 @@ function toBuffer(v) { } }).call(this,require("buffer").Buffer) -},{"assert":171,"buffer":219}],662:[function(require,module,exports){ +},{"assert":177,"buffer":225}],668:[function(require,module,exports){ 'use strict'; /* eslint-disable node/no-deprecated-api */ @@ -123401,7 +123708,7 @@ SafeBuffer.allocUnsafeSlow = function (size) { return buffer.SlowBuffer(size); }; -},{"buffer":219}],663:[function(require,module,exports){ +},{"buffer":225}],669:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -123587,12 +123894,12 @@ function arraycopy(src, srcPos, dest, destPos, length) { module.exports = scrypt; }).call(this,require("buffer").Buffer) -},{"buffer":219,"crypto":553}],664:[function(require,module,exports){ +},{"buffer":225,"crypto":559}],670:[function(require,module,exports){ 'use strict'; module.exports = require('./lib')(require('./lib/elliptic')); -},{"./lib":668,"./lib/elliptic":667}],665:[function(require,module,exports){ +},{"./lib":674,"./lib/elliptic":673}],671:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -123641,7 +123948,7 @@ exports.isNumberInInterval = function (number, x, y, message) { }; }).call(this,{"isBuffer":require("../../is-buffer/index.js")}) -},{"../../is-buffer/index.js":609}],666:[function(require,module,exports){ +},{"../../is-buffer/index.js":615}],672:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -123807,7 +124114,7 @@ exports.signatureImportLax = function (sig) { return { r: r, s: s }; }; -},{"bip66":185,"safe-buffer":662}],667:[function(require,module,exports){ +},{"bip66":191,"safe-buffer":668}],673:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -124053,7 +124360,7 @@ exports.ecdhUnsafe = function (publicKey, privateKey, compressed) { return Buffer.from(pair.pub.mul(scalar).encode(true, compressed)); }; -},{"../messages.json":669,"bn.js":186,"create-hash":548,"elliptic":567,"safe-buffer":662}],668:[function(require,module,exports){ +},{"../messages.json":675,"bn.js":192,"create-hash":554,"elliptic":573,"safe-buffer":668}],674:[function(require,module,exports){ 'use strict'; var assert = require('./assert'); @@ -124287,7 +124594,7 @@ module.exports = function (secp256k1) { }; }; -},{"./assert":665,"./der":666,"./messages.json":669}],669:[function(require,module,exports){ +},{"./assert":671,"./der":672,"./messages.json":675}],675:[function(require,module,exports){ module.exports={ "COMPRESSED_TYPE_INVALID": "compressed should be a boolean", "EC_PRIVATE_KEY_TYPE_INVALID": "private key should be a Buffer", @@ -124325,7 +124632,7 @@ module.exports={ "TWEAK_LENGTH_INVALID": "tweak length is invalid" } -},{}],670:[function(require,module,exports){ +},{}],676:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -124410,7 +124717,7 @@ Hash.prototype._update = function () { module.exports = Hash; -},{"safe-buffer":662}],671:[function(require,module,exports){ +},{"safe-buffer":668}],677:[function(require,module,exports){ 'use strict'; var _exports = module.exports = function SHA(algorithm) { @@ -124429,7 +124736,7 @@ _exports.sha256 = require('./sha256'); _exports.sha384 = require('./sha384'); _exports.sha512 = require('./sha512'); -},{"./sha":672,"./sha1":673,"./sha224":674,"./sha256":675,"./sha384":676,"./sha512":677}],672:[function(require,module,exports){ +},{"./sha":678,"./sha1":679,"./sha224":680,"./sha256":681,"./sha384":682,"./sha512":683}],678:[function(require,module,exports){ 'use strict'; /* @@ -124526,7 +124833,7 @@ Sha.prototype._hash = function () { module.exports = Sha; -},{"./hash":670,"inherits":608,"safe-buffer":662}],673:[function(require,module,exports){ +},{"./hash":676,"inherits":614,"safe-buffer":668}],679:[function(require,module,exports){ 'use strict'; /* @@ -124628,7 +124935,7 @@ Sha1.prototype._hash = function () { module.exports = Sha1; -},{"./hash":670,"inherits":608,"safe-buffer":662}],674:[function(require,module,exports){ +},{"./hash":676,"inherits":614,"safe-buffer":668}],680:[function(require,module,exports){ 'use strict'; /** @@ -124685,7 +124992,7 @@ Sha224.prototype._hash = function () { module.exports = Sha224; -},{"./hash":670,"./sha256":675,"inherits":608,"safe-buffer":662}],675:[function(require,module,exports){ +},{"./hash":676,"./sha256":681,"inherits":614,"safe-buffer":668}],681:[function(require,module,exports){ 'use strict'; /** @@ -124808,7 +125115,7 @@ Sha256.prototype._hash = function () { module.exports = Sha256; -},{"./hash":670,"inherits":608,"safe-buffer":662}],676:[function(require,module,exports){ +},{"./hash":676,"inherits":614,"safe-buffer":668}],682:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -124869,7 +125176,7 @@ Sha384.prototype._hash = function () { module.exports = Sha384; -},{"./hash":670,"./sha512":677,"inherits":608,"safe-buffer":662}],677:[function(require,module,exports){ +},{"./hash":676,"./sha512":683,"inherits":614,"safe-buffer":668}],683:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -125092,7 +125399,7 @@ Sha512.prototype._hash = function () { module.exports = Sha512; -},{"./hash":670,"inherits":608,"safe-buffer":662}],678:[function(require,module,exports){ +},{"./hash":676,"inherits":614,"safe-buffer":668}],684:[function(require,module,exports){ "use strict"; var distance = require("leven"); @@ -125105,7 +125412,7 @@ module.exports = function (a, b) { return (longest - d) / longest; }; -},{"leven":619}],679:[function(require,module,exports){ +},{"leven":625}],685:[function(require,module,exports){ 'use strict'; // Copyright Joyent, Inc. and other Node contributors. @@ -125233,7 +125540,7 @@ Stream.prototype.pipe = function (dest, options) { return dest; }; -},{"events":587,"inherits":608,"readable-stream/duplex.js":647,"readable-stream/passthrough.js":656,"readable-stream/readable.js":657,"readable-stream/transform.js":658,"readable-stream/writable.js":659}],680:[function(require,module,exports){ +},{"events":593,"inherits":614,"readable-stream/duplex.js":653,"readable-stream/passthrough.js":662,"readable-stream/readable.js":663,"readable-stream/transform.js":664,"readable-stream/writable.js":665}],686:[function(require,module,exports){ 'use strict'; // Generated by CoffeeScript 1.8.0 @@ -125351,7 +125658,7 @@ Stream.prototype.pipe = function (dest, options) { } }).call(undefined); -},{}],681:[function(require,module,exports){ +},{}],687:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -125625,7 +125932,7 @@ function simpleEnd(buf) { return buf && buf.length ? this.write(buf) : ''; } -},{"safe-buffer":662}],682:[function(require,module,exports){ +},{"safe-buffer":668}],688:[function(require,module,exports){ 'use strict'; var isHexPrefixed = require('is-hex-prefixed'); @@ -125643,12 +125950,12 @@ module.exports = function stripHexPrefix(str) { return isHexPrefixed(str) ? str.slice(2) : str; }; -},{"is-hex-prefixed":610}],683:[function(require,module,exports){ +},{"is-hex-prefixed":616}],689:[function(require,module,exports){ "use strict"; module.exports = { 97: { "value": "0061", "name": "LATIN SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0041", "lowercase_mapping": "", "titlecase_mapping": "0041", "symbol": "\x61" }, 98: { "value": "0062", "name": "LATIN SMALL LETTER B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0042", "lowercase_mapping": "", "titlecase_mapping": "0042", "symbol": "\x62" }, 99: { "value": "0063", "name": "LATIN SMALL LETTER C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0043", "lowercase_mapping": "", "titlecase_mapping": "0043", "symbol": "\x63" }, 100: { "value": "0064", "name": "LATIN SMALL LETTER D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0044", "lowercase_mapping": "", "titlecase_mapping": "0044", "symbol": "\x64" }, 101: { "value": "0065", "name": "LATIN SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0045", "lowercase_mapping": "", "titlecase_mapping": "0045", "symbol": "\x65" }, 102: { "value": "0066", "name": "LATIN SMALL LETTER F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0046", "lowercase_mapping": "", "titlecase_mapping": "0046", "symbol": "\x66" }, 103: { "value": "0067", "name": "LATIN SMALL LETTER G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0047", "lowercase_mapping": "", "titlecase_mapping": "0047", "symbol": "\x67" }, 104: { "value": "0068", "name": "LATIN SMALL LETTER H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0048", "lowercase_mapping": "", "titlecase_mapping": "0048", "symbol": "\x68" }, 105: { "value": "0069", "name": "LATIN SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0049", "lowercase_mapping": "", "titlecase_mapping": "0049", "symbol": "\x69" }, 106: { "value": "006A", "name": "LATIN SMALL LETTER J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004A", "lowercase_mapping": "", "titlecase_mapping": "004A", "symbol": "\x6A" }, 107: { "value": "006B", "name": "LATIN SMALL LETTER K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004B", "lowercase_mapping": "", "titlecase_mapping": "004B", "symbol": "\x6B" }, 108: { "value": "006C", "name": "LATIN SMALL LETTER L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004C", "lowercase_mapping": "", "titlecase_mapping": "004C", "symbol": "\x6C" }, 109: { "value": "006D", "name": "LATIN SMALL LETTER M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004D", "lowercase_mapping": "", "titlecase_mapping": "004D", "symbol": "\x6D" }, 110: { "value": "006E", "name": "LATIN SMALL LETTER N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004E", "lowercase_mapping": "", "titlecase_mapping": "004E", "symbol": "\x6E" }, 111: { "value": "006F", "name": "LATIN SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004F", "lowercase_mapping": "", "titlecase_mapping": "004F", "symbol": "\x6F" }, 112: { "value": "0070", "name": "LATIN SMALL LETTER P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0050", "lowercase_mapping": "", "titlecase_mapping": "0050", "symbol": "\x70" }, 113: { "value": "0071", "name": "LATIN SMALL LETTER Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0051", "lowercase_mapping": "", "titlecase_mapping": "0051", "symbol": "\x71" }, 114: { "value": "0072", "name": "LATIN SMALL LETTER R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0052", "lowercase_mapping": "", "titlecase_mapping": "0052", "symbol": "\x72" }, 115: { "value": "0073", "name": "LATIN SMALL LETTER S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0053", "lowercase_mapping": "", "titlecase_mapping": "0053", "symbol": "\x73" }, 116: { "value": "0074", "name": "LATIN SMALL LETTER T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0054", "lowercase_mapping": "", "titlecase_mapping": "0054", "symbol": "\x74" }, 117: { "value": "0075", "name": "LATIN SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0055", "lowercase_mapping": "", "titlecase_mapping": "0055", "symbol": "\x75" }, 118: { "value": "0076", "name": "LATIN SMALL LETTER V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0056", "lowercase_mapping": "", "titlecase_mapping": "0056", "symbol": "\x76" }, 119: { "value": "0077", "name": "LATIN SMALL LETTER W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0057", "lowercase_mapping": "", "titlecase_mapping": "0057", "symbol": "\x77" }, 120: { "value": "0078", "name": "LATIN SMALL LETTER X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0058", "lowercase_mapping": "", "titlecase_mapping": "0058", "symbol": "\x78" }, 121: { "value": "0079", "name": "LATIN SMALL LETTER Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0059", "lowercase_mapping": "", "titlecase_mapping": "0059", "symbol": "\x79" }, 122: { "value": "007A", "name": "LATIN SMALL LETTER Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "005A", "lowercase_mapping": "", "titlecase_mapping": "005A", "symbol": "\x7A" }, 181: { "value": "00B5", "name": "MICRO SIGN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039C", "lowercase_mapping": "", "titlecase_mapping": "039C", "symbol": "\xB5" }, 223: { "value": "00DF", "name": "LATIN SMALL LETTER SHARP S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\xDF" }, 224: { "value": "00E0", "name": "LATIN SMALL LETTER A WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A GRAVE", "comment": "", "uppercase_mapping": "00C0", "lowercase_mapping": "", "titlecase_mapping": "00C0", "symbol": "\xE0" }, 225: { "value": "00E1", "name": "LATIN SMALL LETTER A WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A ACUTE", "comment": "", "uppercase_mapping": "00C1", "lowercase_mapping": "", "titlecase_mapping": "00C1", "symbol": "\xE1" }, 226: { "value": "00E2", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A CIRCUMFLEX", "comment": "", "uppercase_mapping": "00C2", "lowercase_mapping": "", "titlecase_mapping": "00C2", "symbol": "\xE2" }, 227: { "value": "00E3", "name": "LATIN SMALL LETTER A WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A TILDE", "comment": "", "uppercase_mapping": "00C3", "lowercase_mapping": "", "titlecase_mapping": "00C3", "symbol": "\xE3" }, 228: { "value": "00E4", "name": "LATIN SMALL LETTER A WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A DIAERESIS", "comment": "", "uppercase_mapping": "00C4", "lowercase_mapping": "", "titlecase_mapping": "00C4", "symbol": "\xE4" }, 229: { "value": "00E5", "name": "LATIN SMALL LETTER A WITH RING ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 030A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A RING", "comment": "", "uppercase_mapping": "00C5", "lowercase_mapping": "", "titlecase_mapping": "00C5", "symbol": "\xE5" }, 230: { "value": "00E6", "name": "LATIN SMALL LETTER AE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A E", "comment": "", "uppercase_mapping": "00C6", "lowercase_mapping": "", "titlecase_mapping": "00C6", "symbol": "\xE6" }, 231: { "value": "00E7", "name": "LATIN SMALL LETTER C WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0063 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C CEDILLA", "comment": "", "uppercase_mapping": "00C7", "lowercase_mapping": "", "titlecase_mapping": "00C7", "symbol": "\xE7" }, 232: { "value": "00E8", "name": "LATIN SMALL LETTER E WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E GRAVE", "comment": "", "uppercase_mapping": "00C8", "lowercase_mapping": "", "titlecase_mapping": "00C8", "symbol": "\xE8" }, 233: { "value": "00E9", "name": "LATIN SMALL LETTER E WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E ACUTE", "comment": "", "uppercase_mapping": "00C9", "lowercase_mapping": "", "titlecase_mapping": "00C9", "symbol": "\xE9" }, 234: { "value": "00EA", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E CIRCUMFLEX", "comment": "", "uppercase_mapping": "00CA", "lowercase_mapping": "", "titlecase_mapping": "00CA", "symbol": "\xEA" }, 235: { "value": "00EB", "name": "LATIN SMALL LETTER E WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E DIAERESIS", "comment": "", "uppercase_mapping": "00CB", "lowercase_mapping": "", "titlecase_mapping": "00CB", "symbol": "\xEB" }, 236: { "value": "00EC", "name": "LATIN SMALL LETTER I WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I GRAVE", "comment": "", "uppercase_mapping": "00CC", "lowercase_mapping": "", "titlecase_mapping": "00CC", "symbol": "\xEC" }, 237: { "value": "00ED", "name": "LATIN SMALL LETTER I WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I ACUTE", "comment": "", "uppercase_mapping": "00CD", "lowercase_mapping": "", "titlecase_mapping": "00CD", "symbol": "\xED" }, 238: { "value": "00EE", "name": "LATIN SMALL LETTER I WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I CIRCUMFLEX", "comment": "", "uppercase_mapping": "00CE", "lowercase_mapping": "", "titlecase_mapping": "00CE", "symbol": "\xEE" }, 239: { "value": "00EF", "name": "LATIN SMALL LETTER I WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I DIAERESIS", "comment": "", "uppercase_mapping": "00CF", "lowercase_mapping": "", "titlecase_mapping": "00CF", "symbol": "\xEF" }, 240: { "value": "00F0", "name": "LATIN SMALL LETTER ETH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "00D0", "lowercase_mapping": "", "titlecase_mapping": "00D0", "symbol": "\xF0" }, 241: { "value": "00F1", "name": "LATIN SMALL LETTER N WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N TILDE", "comment": "", "uppercase_mapping": "00D1", "lowercase_mapping": "", "titlecase_mapping": "00D1", "symbol": "\xF1" }, 242: { "value": "00F2", "name": "LATIN SMALL LETTER O WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O GRAVE", "comment": "", "uppercase_mapping": "00D2", "lowercase_mapping": "", "titlecase_mapping": "00D2", "symbol": "\xF2" }, 243: { "value": "00F3", "name": "LATIN SMALL LETTER O WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O ACUTE", "comment": "", "uppercase_mapping": "00D3", "lowercase_mapping": "", "titlecase_mapping": "00D3", "symbol": "\xF3" }, 244: { "value": "00F4", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O CIRCUMFLEX", "comment": "", "uppercase_mapping": "00D4", "lowercase_mapping": "", "titlecase_mapping": "00D4", "symbol": "\xF4" }, 245: { "value": "00F5", "name": "LATIN SMALL LETTER O WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O TILDE", "comment": "", "uppercase_mapping": "00D5", "lowercase_mapping": "", "titlecase_mapping": "00D5", "symbol": "\xF5" }, 246: { "value": "00F6", "name": "LATIN SMALL LETTER O WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O DIAERESIS", "comment": "", "uppercase_mapping": "00D6", "lowercase_mapping": "", "titlecase_mapping": "00D6", "symbol": "\xF6" }, 248: { "value": "00F8", "name": "LATIN SMALL LETTER O WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O SLASH", "comment": "", "uppercase_mapping": "00D8", "lowercase_mapping": "", "titlecase_mapping": "00D8", "symbol": "\xF8" }, 249: { "value": "00F9", "name": "LATIN SMALL LETTER U WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U GRAVE", "comment": "", "uppercase_mapping": "00D9", "lowercase_mapping": "", "titlecase_mapping": "00D9", "symbol": "\xF9" }, 250: { "value": "00FA", "name": "LATIN SMALL LETTER U WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U ACUTE", "comment": "", "uppercase_mapping": "00DA", "lowercase_mapping": "", "titlecase_mapping": "00DA", "symbol": "\xFA" }, 251: { "value": "00FB", "name": "LATIN SMALL LETTER U WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U CIRCUMFLEX", "comment": "", "uppercase_mapping": "00DB", "lowercase_mapping": "", "titlecase_mapping": "00DB", "symbol": "\xFB" }, 252: { "value": "00FC", "name": "LATIN SMALL LETTER U WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DIAERESIS", "comment": "", "uppercase_mapping": "00DC", "lowercase_mapping": "", "titlecase_mapping": "00DC", "symbol": "\xFC" }, 253: { "value": "00FD", "name": "LATIN SMALL LETTER Y WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Y ACUTE", "comment": "", "uppercase_mapping": "00DD", "lowercase_mapping": "", "titlecase_mapping": "00DD", "symbol": "\xFD" }, 254: { "value": "00FE", "name": "LATIN SMALL LETTER THORN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "00DE", "lowercase_mapping": "", "titlecase_mapping": "00DE", "symbol": "\xFE" }, 255: { "value": "00FF", "name": "LATIN SMALL LETTER Y WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Y DIAERESIS", "comment": "", "uppercase_mapping": "0178", "lowercase_mapping": "", "titlecase_mapping": "0178", "symbol": "\xFF" }, 257: { "value": "0101", "name": "LATIN SMALL LETTER A WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A MACRON", "comment": "", "uppercase_mapping": "0100", "lowercase_mapping": "", "titlecase_mapping": "0100", "symbol": "\u0101" }, 259: { "value": "0103", "name": "LATIN SMALL LETTER A WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A BREVE", "comment": "", "uppercase_mapping": "0102", "lowercase_mapping": "", "titlecase_mapping": "0102", "symbol": "\u0103" }, 261: { "value": "0105", "name": "LATIN SMALL LETTER A WITH OGONEK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0328", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A OGONEK", "comment": "", "uppercase_mapping": "0104", "lowercase_mapping": "", "titlecase_mapping": "0104", "symbol": "\u0105" }, 263: { "value": "0107", "name": "LATIN SMALL LETTER C WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0063 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C ACUTE", "comment": "", "uppercase_mapping": "0106", "lowercase_mapping": "", "titlecase_mapping": "0106", "symbol": "\u0107" }, 265: { "value": "0109", "name": "LATIN SMALL LETTER C WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0063 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C CIRCUMFLEX", "comment": "", "uppercase_mapping": "0108", "lowercase_mapping": "", "titlecase_mapping": "0108", "symbol": "\u0109" }, 267: { "value": "010B", "name": "LATIN SMALL LETTER C WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0063 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C DOT", "comment": "", "uppercase_mapping": "010A", "lowercase_mapping": "", "titlecase_mapping": "010A", "symbol": "\u010B" }, 269: { "value": "010D", "name": "LATIN SMALL LETTER C WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0063 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C HACEK", "comment": "", "uppercase_mapping": "010C", "lowercase_mapping": "", "titlecase_mapping": "010C", "symbol": "\u010D" }, 271: { "value": "010F", "name": "LATIN SMALL LETTER D WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D HACEK", "comment": "", "uppercase_mapping": "010E", "lowercase_mapping": "", "titlecase_mapping": "010E", "symbol": "\u010F" }, 273: { "value": "0111", "name": "LATIN SMALL LETTER D WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D BAR", "comment": "", "uppercase_mapping": "0110", "lowercase_mapping": "", "titlecase_mapping": "0110", "symbol": "\u0111" }, 275: { "value": "0113", "name": "LATIN SMALL LETTER E WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E MACRON", "comment": "", "uppercase_mapping": "0112", "lowercase_mapping": "", "titlecase_mapping": "0112", "symbol": "\u0113" }, 277: { "value": "0115", "name": "LATIN SMALL LETTER E WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E BREVE", "comment": "", "uppercase_mapping": "0114", "lowercase_mapping": "", "titlecase_mapping": "0114", "symbol": "\u0115" }, 279: { "value": "0117", "name": "LATIN SMALL LETTER E WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E DOT", "comment": "", "uppercase_mapping": "0116", "lowercase_mapping": "", "titlecase_mapping": "0116", "symbol": "\u0117" }, 281: { "value": "0119", "name": "LATIN SMALL LETTER E WITH OGONEK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0328", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E OGONEK", "comment": "", "uppercase_mapping": "0118", "lowercase_mapping": "", "titlecase_mapping": "0118", "symbol": "\u0119" }, 283: { "value": "011B", "name": "LATIN SMALL LETTER E WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E HACEK", "comment": "", "uppercase_mapping": "011A", "lowercase_mapping": "", "titlecase_mapping": "011A", "symbol": "\u011B" }, 285: { "value": "011D", "name": "LATIN SMALL LETTER G WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G CIRCUMFLEX", "comment": "", "uppercase_mapping": "011C", "lowercase_mapping": "", "titlecase_mapping": "011C", "symbol": "\u011D" }, 287: { "value": "011F", "name": "LATIN SMALL LETTER G WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G BREVE", "comment": "", "uppercase_mapping": "011E", "lowercase_mapping": "", "titlecase_mapping": "011E", "symbol": "\u011F" }, 289: { "value": "0121", "name": "LATIN SMALL LETTER G WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G DOT", "comment": "", "uppercase_mapping": "0120", "lowercase_mapping": "", "titlecase_mapping": "0120", "symbol": "\u0121" }, 291: { "value": "0123", "name": "LATIN SMALL LETTER G WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G CEDILLA", "comment": "", "uppercase_mapping": "0122", "lowercase_mapping": "", "titlecase_mapping": "0122", "symbol": "\u0123" }, 293: { "value": "0125", "name": "LATIN SMALL LETTER H WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER H CIRCUMFLEX", "comment": "", "uppercase_mapping": "0124", "lowercase_mapping": "", "titlecase_mapping": "0124", "symbol": "\u0125" }, 295: { "value": "0127", "name": "LATIN SMALL LETTER H WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER H BAR", "comment": "", "uppercase_mapping": "0126", "lowercase_mapping": "", "titlecase_mapping": "0126", "symbol": "\u0127" }, 297: { "value": "0129", "name": "LATIN SMALL LETTER I WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I TILDE", "comment": "", "uppercase_mapping": "0128", "lowercase_mapping": "", "titlecase_mapping": "0128", "symbol": "\u0129" }, 299: { "value": "012B", "name": "LATIN SMALL LETTER I WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I MACRON", "comment": "", "uppercase_mapping": "012A", "lowercase_mapping": "", "titlecase_mapping": "012A", "symbol": "\u012B" }, 301: { "value": "012D", "name": "LATIN SMALL LETTER I WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I BREVE", "comment": "", "uppercase_mapping": "012C", "lowercase_mapping": "", "titlecase_mapping": "012C", "symbol": "\u012D" }, 303: { "value": "012F", "name": "LATIN SMALL LETTER I WITH OGONEK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0328", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I OGONEK", "comment": "", "uppercase_mapping": "012E", "lowercase_mapping": "", "titlecase_mapping": "012E", "symbol": "\u012F" }, 305: { "value": "0131", "name": "LATIN SMALL LETTER DOTLESS I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0049", "lowercase_mapping": "", "titlecase_mapping": "0049", "symbol": "\u0131" }, 307: { "value": "0133", "name": "LATIN SMALL LIGATURE IJ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I J", "comment": "", "uppercase_mapping": "0132", "lowercase_mapping": "", "titlecase_mapping": "0132", "symbol": "\u0133" }, 309: { "value": "0135", "name": "LATIN SMALL LETTER J WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006A 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER J CIRCUMFLEX", "comment": "", "uppercase_mapping": "0134", "lowercase_mapping": "", "titlecase_mapping": "0134", "symbol": "\u0135" }, 311: { "value": "0137", "name": "LATIN SMALL LETTER K WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006B 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER K CEDILLA", "comment": "", "uppercase_mapping": "0136", "lowercase_mapping": "", "titlecase_mapping": "0136", "symbol": "\u0137" }, 312: { "value": "0138", "name": "LATIN SMALL LETTER KRA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0138" }, 314: { "value": "013A", "name": "LATIN SMALL LETTER L WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L ACUTE", "comment": "", "uppercase_mapping": "0139", "lowercase_mapping": "", "titlecase_mapping": "0139", "symbol": "\u013A" }, 316: { "value": "013C", "name": "LATIN SMALL LETTER L WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L CEDILLA", "comment": "", "uppercase_mapping": "013B", "lowercase_mapping": "", "titlecase_mapping": "013B", "symbol": "\u013C" }, 318: { "value": "013E", "name": "LATIN SMALL LETTER L WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L HACEK", "comment": "", "uppercase_mapping": "013D", "lowercase_mapping": "", "titlecase_mapping": "013D", "symbol": "\u013E" }, 320: { "value": "0140", "name": "LATIN SMALL LETTER L WITH MIDDLE DOT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C 00B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "013F", "lowercase_mapping": "", "titlecase_mapping": "013F", "symbol": "\u0140" }, 322: { "value": "0142", "name": "LATIN SMALL LETTER L WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L SLASH", "comment": "", "uppercase_mapping": "0141", "lowercase_mapping": "", "titlecase_mapping": "0141", "symbol": "\u0142" }, 324: { "value": "0144", "name": "LATIN SMALL LETTER N WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N ACUTE", "comment": "", "uppercase_mapping": "0143", "lowercase_mapping": "", "titlecase_mapping": "0143", "symbol": "\u0144" }, 326: { "value": "0146", "name": "LATIN SMALL LETTER N WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N CEDILLA", "comment": "", "uppercase_mapping": "0145", "lowercase_mapping": "", "titlecase_mapping": "0145", "symbol": "\u0146" }, 328: { "value": "0148", "name": "LATIN SMALL LETTER N WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N HACEK", "comment": "", "uppercase_mapping": "0147", "lowercase_mapping": "", "titlecase_mapping": "0147", "symbol": "\u0148" }, 329: { "value": "0149", "name": "LATIN SMALL LETTER N PRECEDED BY APOSTROPHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 02BC 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER APOSTROPHE N", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0149" }, 331: { "value": "014B", "name": "LATIN SMALL LETTER ENG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "014A", "lowercase_mapping": "", "titlecase_mapping": "014A", "symbol": "\u014B" }, 333: { "value": "014D", "name": "LATIN SMALL LETTER O WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O MACRON", "comment": "", "uppercase_mapping": "014C", "lowercase_mapping": "", "titlecase_mapping": "014C", "symbol": "\u014D" }, 335: { "value": "014F", "name": "LATIN SMALL LETTER O WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O BREVE", "comment": "", "uppercase_mapping": "014E", "lowercase_mapping": "", "titlecase_mapping": "014E", "symbol": "\u014F" }, 337: { "value": "0151", "name": "LATIN SMALL LETTER O WITH DOUBLE ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 030B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O DOUBLE ACUTE", "comment": "", "uppercase_mapping": "0150", "lowercase_mapping": "", "titlecase_mapping": "0150", "symbol": "\u0151" }, 339: { "value": "0153", "name": "LATIN SMALL LIGATURE OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O E", "comment": "", "uppercase_mapping": "0152", "lowercase_mapping": "", "titlecase_mapping": "0152", "symbol": "\u0153" }, 341: { "value": "0155", "name": "LATIN SMALL LETTER R WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER R ACUTE", "comment": "", "uppercase_mapping": "0154", "lowercase_mapping": "", "titlecase_mapping": "0154", "symbol": "\u0155" }, 343: { "value": "0157", "name": "LATIN SMALL LETTER R WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER R CEDILLA", "comment": "", "uppercase_mapping": "0156", "lowercase_mapping": "", "titlecase_mapping": "0156", "symbol": "\u0157" }, 345: { "value": "0159", "name": "LATIN SMALL LETTER R WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER R HACEK", "comment": "", "uppercase_mapping": "0158", "lowercase_mapping": "", "titlecase_mapping": "0158", "symbol": "\u0159" }, 347: { "value": "015B", "name": "LATIN SMALL LETTER S WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER S ACUTE", "comment": "", "uppercase_mapping": "015A", "lowercase_mapping": "", "titlecase_mapping": "015A", "symbol": "\u015B" }, 349: { "value": "015D", "name": "LATIN SMALL LETTER S WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER S CIRCUMFLEX", "comment": "", "uppercase_mapping": "015C", "lowercase_mapping": "", "titlecase_mapping": "015C", "symbol": "\u015D" }, 351: { "value": "015F", "name": "LATIN SMALL LETTER S WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER S CEDILLA", "comment": "", "uppercase_mapping": "015E", "lowercase_mapping": "", "titlecase_mapping": "015E", "symbol": "\u015F" }, 353: { "value": "0161", "name": "LATIN SMALL LETTER S WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER S HACEK", "comment": "", "uppercase_mapping": "0160", "lowercase_mapping": "", "titlecase_mapping": "0160", "symbol": "\u0161" }, 355: { "value": "0163", "name": "LATIN SMALL LETTER T WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T CEDILLA", "comment": "", "uppercase_mapping": "0162", "lowercase_mapping": "", "titlecase_mapping": "0162", "symbol": "\u0163" }, 357: { "value": "0165", "name": "LATIN SMALL LETTER T WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T HACEK", "comment": "", "uppercase_mapping": "0164", "lowercase_mapping": "", "titlecase_mapping": "0164", "symbol": "\u0165" }, 359: { "value": "0167", "name": "LATIN SMALL LETTER T WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T BAR", "comment": "", "uppercase_mapping": "0166", "lowercase_mapping": "", "titlecase_mapping": "0166", "symbol": "\u0167" }, 361: { "value": "0169", "name": "LATIN SMALL LETTER U WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U TILDE", "comment": "", "uppercase_mapping": "0168", "lowercase_mapping": "", "titlecase_mapping": "0168", "symbol": "\u0169" }, 363: { "value": "016B", "name": "LATIN SMALL LETTER U WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U MACRON", "comment": "", "uppercase_mapping": "016A", "lowercase_mapping": "", "titlecase_mapping": "016A", "symbol": "\u016B" }, 365: { "value": "016D", "name": "LATIN SMALL LETTER U WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U BREVE", "comment": "", "uppercase_mapping": "016C", "lowercase_mapping": "", "titlecase_mapping": "016C", "symbol": "\u016D" }, 367: { "value": "016F", "name": "LATIN SMALL LETTER U WITH RING ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 030A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U RING", "comment": "", "uppercase_mapping": "016E", "lowercase_mapping": "", "titlecase_mapping": "016E", "symbol": "\u016F" }, 369: { "value": "0171", "name": "LATIN SMALL LETTER U WITH DOUBLE ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 030B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DOUBLE ACUTE", "comment": "", "uppercase_mapping": "0170", "lowercase_mapping": "", "titlecase_mapping": "0170", "symbol": "\u0171" }, 371: { "value": "0173", "name": "LATIN SMALL LETTER U WITH OGONEK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0328", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U OGONEK", "comment": "", "uppercase_mapping": "0172", "lowercase_mapping": "", "titlecase_mapping": "0172", "symbol": "\u0173" }, 373: { "value": "0175", "name": "LATIN SMALL LETTER W WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER W CIRCUMFLEX", "comment": "", "uppercase_mapping": "0174", "lowercase_mapping": "", "titlecase_mapping": "0174", "symbol": "\u0175" }, 375: { "value": "0177", "name": "LATIN SMALL LETTER Y WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Y CIRCUMFLEX", "comment": "", "uppercase_mapping": "0176", "lowercase_mapping": "", "titlecase_mapping": "0176", "symbol": "\u0177" }, 378: { "value": "017A", "name": "LATIN SMALL LETTER Z WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z ACUTE", "comment": "", "uppercase_mapping": "0179", "lowercase_mapping": "", "titlecase_mapping": "0179", "symbol": "\u017A" }, 380: { "value": "017C", "name": "LATIN SMALL LETTER Z WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z DOT", "comment": "", "uppercase_mapping": "017B", "lowercase_mapping": "", "titlecase_mapping": "017B", "symbol": "\u017C" }, 382: { "value": "017E", "name": "LATIN SMALL LETTER Z WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z HACEK", "comment": "", "uppercase_mapping": "017D", "lowercase_mapping": "", "titlecase_mapping": "017D", "symbol": "\u017E" }, 383: { "value": "017F", "name": "LATIN SMALL LETTER LONG S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0053", "lowercase_mapping": "", "titlecase_mapping": "0053", "symbol": "\u017F" }, 384: { "value": "0180", "name": "LATIN SMALL LETTER B WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER B BAR", "comment": "", "uppercase_mapping": "0243", "lowercase_mapping": "", "titlecase_mapping": "0243", "symbol": "\u0180" }, 387: { "value": "0183", "name": "LATIN SMALL LETTER B WITH TOPBAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER B TOPBAR", "comment": "", "uppercase_mapping": "0182", "lowercase_mapping": "", "titlecase_mapping": "0182", "symbol": "\u0183" }, 389: { "value": "0185", "name": "LATIN SMALL LETTER TONE SIX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0184", "lowercase_mapping": "", "titlecase_mapping": "0184", "symbol": "\u0185" }, 392: { "value": "0188", "name": "LATIN SMALL LETTER C WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C HOOK", "comment": "", "uppercase_mapping": "0187", "lowercase_mapping": "", "titlecase_mapping": "0187", "symbol": "\u0188" }, 396: { "value": "018C", "name": "LATIN SMALL LETTER D WITH TOPBAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D TOPBAR", "comment": "", "uppercase_mapping": "018B", "lowercase_mapping": "", "titlecase_mapping": "018B", "symbol": "\u018C" }, 397: { "value": "018D", "name": "LATIN SMALL LETTER TURNED DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u018D" }, 402: { "value": "0192", "name": "LATIN SMALL LETTER F WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER SCRIPT F", "comment": "", "uppercase_mapping": "0191", "lowercase_mapping": "", "titlecase_mapping": "0191", "symbol": "\u0192" }, 405: { "value": "0195", "name": "LATIN SMALL LETTER HV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER H V", "comment": "", "uppercase_mapping": "01F6", "lowercase_mapping": "", "titlecase_mapping": "01F6", "symbol": "\u0195" }, 409: { "value": "0199", "name": "LATIN SMALL LETTER K WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER K HOOK", "comment": "", "uppercase_mapping": "0198", "lowercase_mapping": "", "titlecase_mapping": "0198", "symbol": "\u0199" }, 410: { "value": "019A", "name": "LATIN SMALL LETTER L WITH BAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER BARRED L", "comment": "", "uppercase_mapping": "023D", "lowercase_mapping": "", "titlecase_mapping": "023D", "symbol": "\u019A" }, 411: { "value": "019B", "name": "LATIN SMALL LETTER LAMBDA WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER BARRED LAMBDA", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u019B" }, 414: { "value": "019E", "name": "LATIN SMALL LETTER N WITH LONG RIGHT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0220", "lowercase_mapping": "", "titlecase_mapping": "0220", "symbol": "\u019E" }, 417: { "value": "01A1", "name": "LATIN SMALL LETTER O WITH HORN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 031B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O HORN", "comment": "", "uppercase_mapping": "01A0", "lowercase_mapping": "", "titlecase_mapping": "01A0", "symbol": "\u01A1" }, 419: { "value": "01A3", "name": "LATIN SMALL LETTER OI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O I", "comment": "", "uppercase_mapping": "01A2", "lowercase_mapping": "", "titlecase_mapping": "01A2", "symbol": "\u01A3" }, 421: { "value": "01A5", "name": "LATIN SMALL LETTER P WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER P HOOK", "comment": "", "uppercase_mapping": "01A4", "lowercase_mapping": "", "titlecase_mapping": "01A4", "symbol": "\u01A5" }, 424: { "value": "01A8", "name": "LATIN SMALL LETTER TONE TWO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01A7", "lowercase_mapping": "", "titlecase_mapping": "01A7", "symbol": "\u01A8" }, 426: { "value": "01AA", "name": "LATIN LETTER REVERSED ESH LOOP", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u01AA" }, 427: { "value": "01AB", "name": "LATIN SMALL LETTER T WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T PALATAL HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u01AB" }, 429: { "value": "01AD", "name": "LATIN SMALL LETTER T WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T HOOK", "comment": "", "uppercase_mapping": "01AC", "lowercase_mapping": "", "titlecase_mapping": "01AC", "symbol": "\u01AD" }, 432: { "value": "01B0", "name": "LATIN SMALL LETTER U WITH HORN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 031B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U HORN", "comment": "", "uppercase_mapping": "01AF", "lowercase_mapping": "", "titlecase_mapping": "01AF", "symbol": "\u01B0" }, 436: { "value": "01B4", "name": "LATIN SMALL LETTER Y WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Y HOOK", "comment": "", "uppercase_mapping": "01B3", "lowercase_mapping": "", "titlecase_mapping": "01B3", "symbol": "\u01B4" }, 438: { "value": "01B6", "name": "LATIN SMALL LETTER Z WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z BAR", "comment": "", "uppercase_mapping": "01B5", "lowercase_mapping": "", "titlecase_mapping": "01B5", "symbol": "\u01B6" }, 441: { "value": "01B9", "name": "LATIN SMALL LETTER EZH REVERSED", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER REVERSED YOGH", "comment": "", "uppercase_mapping": "01B8", "lowercase_mapping": "", "titlecase_mapping": "01B8", "symbol": "\u01B9" }, 442: { "value": "01BA", "name": "LATIN SMALL LETTER EZH WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER YOGH WITH TAIL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u01BA" }, 445: { "value": "01BD", "name": "LATIN SMALL LETTER TONE FIVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01BC", "lowercase_mapping": "", "titlecase_mapping": "01BC", "symbol": "\u01BD" }, 446: { "value": "01BE", "name": "LATIN LETTER INVERTED GLOTTAL STOP WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER INVERTED GLOTTAL STOP BAR", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u01BE" }, 447: { "value": "01BF", "name": "LATIN LETTER WYNN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01F7", "lowercase_mapping": "", "titlecase_mapping": "01F7", "symbol": "\u01BF" }, 454: { "value": "01C6", "name": "LATIN SMALL LETTER DZ WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064 017E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D Z HACEK", "comment": "", "uppercase_mapping": "01C4", "lowercase_mapping": "", "titlecase_mapping": "01C5", "symbol": "\u01C6" }, 457: { "value": "01C9", "name": "LATIN SMALL LETTER LJ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L J", "comment": "", "uppercase_mapping": "01C7", "lowercase_mapping": "", "titlecase_mapping": "01C8", "symbol": "\u01C9" }, 460: { "value": "01CC", "name": "LATIN SMALL LETTER NJ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N J", "comment": "", "uppercase_mapping": "01CA", "lowercase_mapping": "", "titlecase_mapping": "01CB", "symbol": "\u01CC" }, 462: { "value": "01CE", "name": "LATIN SMALL LETTER A WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A HACEK", "comment": "", "uppercase_mapping": "01CD", "lowercase_mapping": "", "titlecase_mapping": "01CD", "symbol": "\u01CE" }, 464: { "value": "01D0", "name": "LATIN SMALL LETTER I WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I HACEK", "comment": "", "uppercase_mapping": "01CF", "lowercase_mapping": "", "titlecase_mapping": "01CF", "symbol": "\u01D0" }, 466: { "value": "01D2", "name": "LATIN SMALL LETTER O WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O HACEK", "comment": "", "uppercase_mapping": "01D1", "lowercase_mapping": "", "titlecase_mapping": "01D1", "symbol": "\u01D2" }, 468: { "value": "01D4", "name": "LATIN SMALL LETTER U WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U HACEK", "comment": "", "uppercase_mapping": "01D3", "lowercase_mapping": "", "titlecase_mapping": "01D3", "symbol": "\u01D4" }, 470: { "value": "01D6", "name": "LATIN SMALL LETTER U WITH DIAERESIS AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00FC 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DIAERESIS MACRON", "comment": "", "uppercase_mapping": "01D5", "lowercase_mapping": "", "titlecase_mapping": "01D5", "symbol": "\u01D6" }, 472: { "value": "01D8", "name": "LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00FC 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DIAERESIS ACUTE", "comment": "", "uppercase_mapping": "01D7", "lowercase_mapping": "", "titlecase_mapping": "01D7", "symbol": "\u01D8" }, 474: { "value": "01DA", "name": "LATIN SMALL LETTER U WITH DIAERESIS AND CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00FC 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DIAERESIS HACEK", "comment": "", "uppercase_mapping": "01D9", "lowercase_mapping": "", "titlecase_mapping": "01D9", "symbol": "\u01DA" }, 476: { "value": "01DC", "name": "LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00FC 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DIAERESIS GRAVE", "comment": "", "uppercase_mapping": "01DB", "lowercase_mapping": "", "titlecase_mapping": "01DB", "symbol": "\u01DC" }, 477: { "value": "01DD", "name": "LATIN SMALL LETTER TURNED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "018E", "lowercase_mapping": "", "titlecase_mapping": "018E", "symbol": "\u01DD" }, 479: { "value": "01DF", "name": "LATIN SMALL LETTER A WITH DIAERESIS AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E4 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A DIAERESIS MACRON", "comment": "", "uppercase_mapping": "01DE", "lowercase_mapping": "", "titlecase_mapping": "01DE", "symbol": "\u01DF" }, 481: { "value": "01E1", "name": "LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0227 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A DOT MACRON", "comment": "", "uppercase_mapping": "01E0", "lowercase_mapping": "", "titlecase_mapping": "01E0", "symbol": "\u01E1" }, 483: { "value": "01E3", "name": "LATIN SMALL LETTER AE WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E6 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A E MACRON", "comment": "", "uppercase_mapping": "01E2", "lowercase_mapping": "", "titlecase_mapping": "01E2", "symbol": "\u01E3" }, 485: { "value": "01E5", "name": "LATIN SMALL LETTER G WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G BAR", "comment": "", "uppercase_mapping": "01E4", "lowercase_mapping": "", "titlecase_mapping": "01E4", "symbol": "\u01E5" }, 487: { "value": "01E7", "name": "LATIN SMALL LETTER G WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G HACEK", "comment": "", "uppercase_mapping": "01E6", "lowercase_mapping": "", "titlecase_mapping": "01E6", "symbol": "\u01E7" }, 489: { "value": "01E9", "name": "LATIN SMALL LETTER K WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006B 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER K HACEK", "comment": "", "uppercase_mapping": "01E8", "lowercase_mapping": "", "titlecase_mapping": "01E8", "symbol": "\u01E9" }, 491: { "value": "01EB", "name": "LATIN SMALL LETTER O WITH OGONEK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0328", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O OGONEK", "comment": "", "uppercase_mapping": "01EA", "lowercase_mapping": "", "titlecase_mapping": "01EA", "symbol": "\u01EB" }, 493: { "value": "01ED", "name": "LATIN SMALL LETTER O WITH OGONEK AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01EB 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O OGONEK MACRON", "comment": "", "uppercase_mapping": "01EC", "lowercase_mapping": "", "titlecase_mapping": "01EC", "symbol": "\u01ED" }, 495: { "value": "01EF", "name": "LATIN SMALL LETTER EZH WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0292 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER YOGH HACEK", "comment": "", "uppercase_mapping": "01EE", "lowercase_mapping": "", "titlecase_mapping": "01EE", "symbol": "\u01EF" }, 496: { "value": "01F0", "name": "LATIN SMALL LETTER J WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006A 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER J HACEK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u01F0" }, 499: { "value": "01F3", "name": "LATIN SMALL LETTER DZ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01F1", "lowercase_mapping": "", "titlecase_mapping": "01F2", "symbol": "\u01F3" }, 501: { "value": "01F5", "name": "LATIN SMALL LETTER G WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01F4", "lowercase_mapping": "", "titlecase_mapping": "01F4", "symbol": "\u01F5" }, 505: { "value": "01F9", "name": "LATIN SMALL LETTER N WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01F8", "lowercase_mapping": "", "titlecase_mapping": "01F8", "symbol": "\u01F9" }, 507: { "value": "01FB", "name": "LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E5 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01FA", "lowercase_mapping": "", "titlecase_mapping": "01FA", "symbol": "\u01FB" }, 509: { "value": "01FD", "name": "LATIN SMALL LETTER AE WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E6 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01FC", "lowercase_mapping": "", "titlecase_mapping": "01FC", "symbol": "\u01FD" }, 511: { "value": "01FF", "name": "LATIN SMALL LETTER O WITH STROKE AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F8 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01FE", "lowercase_mapping": "", "titlecase_mapping": "01FE", "symbol": "\u01FF" }, 513: { "value": "0201", "name": "LATIN SMALL LETTER A WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0200", "lowercase_mapping": "", "titlecase_mapping": "0200", "symbol": "\u0201" }, 515: { "value": "0203", "name": "LATIN SMALL LETTER A WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0202", "lowercase_mapping": "", "titlecase_mapping": "0202", "symbol": "\u0203" }, 517: { "value": "0205", "name": "LATIN SMALL LETTER E WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0204", "lowercase_mapping": "", "titlecase_mapping": "0204", "symbol": "\u0205" }, 519: { "value": "0207", "name": "LATIN SMALL LETTER E WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0206", "lowercase_mapping": "", "titlecase_mapping": "0206", "symbol": "\u0207" }, 521: { "value": "0209", "name": "LATIN SMALL LETTER I WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0208", "lowercase_mapping": "", "titlecase_mapping": "0208", "symbol": "\u0209" }, 523: { "value": "020B", "name": "LATIN SMALL LETTER I WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "020A", "lowercase_mapping": "", "titlecase_mapping": "020A", "symbol": "\u020B" }, 525: { "value": "020D", "name": "LATIN SMALL LETTER O WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "020C", "lowercase_mapping": "", "titlecase_mapping": "020C", "symbol": "\u020D" }, 527: { "value": "020F", "name": "LATIN SMALL LETTER O WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "020E", "lowercase_mapping": "", "titlecase_mapping": "020E", "symbol": "\u020F" }, 529: { "value": "0211", "name": "LATIN SMALL LETTER R WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0210", "lowercase_mapping": "", "titlecase_mapping": "0210", "symbol": "\u0211" }, 531: { "value": "0213", "name": "LATIN SMALL LETTER R WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0212", "lowercase_mapping": "", "titlecase_mapping": "0212", "symbol": "\u0213" }, 533: { "value": "0215", "name": "LATIN SMALL LETTER U WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0214", "lowercase_mapping": "", "titlecase_mapping": "0214", "symbol": "\u0215" }, 535: { "value": "0217", "name": "LATIN SMALL LETTER U WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0216", "lowercase_mapping": "", "titlecase_mapping": "0216", "symbol": "\u0217" }, 537: { "value": "0219", "name": "LATIN SMALL LETTER S WITH COMMA BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0326", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0218", "lowercase_mapping": "", "titlecase_mapping": "0218", "symbol": "\u0219" }, 539: { "value": "021B", "name": "LATIN SMALL LETTER T WITH COMMA BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0326", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "021A", "lowercase_mapping": "", "titlecase_mapping": "021A", "symbol": "\u021B" }, 541: { "value": "021D", "name": "LATIN SMALL LETTER YOGH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "021C", "lowercase_mapping": "", "titlecase_mapping": "021C", "symbol": "\u021D" }, 543: { "value": "021F", "name": "LATIN SMALL LETTER H WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "021E", "lowercase_mapping": "", "titlecase_mapping": "021E", "symbol": "\u021F" }, 545: { "value": "0221", "name": "LATIN SMALL LETTER D WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0221" }, 547: { "value": "0223", "name": "LATIN SMALL LETTER OU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0222", "lowercase_mapping": "", "titlecase_mapping": "0222", "symbol": "\u0223" }, 549: { "value": "0225", "name": "LATIN SMALL LETTER Z WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0224", "lowercase_mapping": "", "titlecase_mapping": "0224", "symbol": "\u0225" }, 551: { "value": "0227", "name": "LATIN SMALL LETTER A WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0226", "lowercase_mapping": "", "titlecase_mapping": "0226", "symbol": "\u0227" }, 553: { "value": "0229", "name": "LATIN SMALL LETTER E WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0228", "lowercase_mapping": "", "titlecase_mapping": "0228", "symbol": "\u0229" }, 555: { "value": "022B", "name": "LATIN SMALL LETTER O WITH DIAERESIS AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F6 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "022A", "lowercase_mapping": "", "titlecase_mapping": "022A", "symbol": "\u022B" }, 557: { "value": "022D", "name": "LATIN SMALL LETTER O WITH TILDE AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F5 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "022C", "lowercase_mapping": "", "titlecase_mapping": "022C", "symbol": "\u022D" }, 559: { "value": "022F", "name": "LATIN SMALL LETTER O WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "022E", "lowercase_mapping": "", "titlecase_mapping": "022E", "symbol": "\u022F" }, 561: { "value": "0231", "name": "LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "022F 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0230", "lowercase_mapping": "", "titlecase_mapping": "0230", "symbol": "\u0231" }, 563: { "value": "0233", "name": "LATIN SMALL LETTER Y WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0232", "lowercase_mapping": "", "titlecase_mapping": "0232", "symbol": "\u0233" }, 564: { "value": "0234", "name": "LATIN SMALL LETTER L WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0234" }, 565: { "value": "0235", "name": "LATIN SMALL LETTER N WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0235" }, 566: { "value": "0236", "name": "LATIN SMALL LETTER T WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0236" }, 567: { "value": "0237", "name": "LATIN SMALL LETTER DOTLESS J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0237" }, 568: { "value": "0238", "name": "LATIN SMALL LETTER DB DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0238" }, 569: { "value": "0239", "name": "LATIN SMALL LETTER QP DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0239" }, 572: { "value": "023C", "name": "LATIN SMALL LETTER C WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "023B", "lowercase_mapping": "", "titlecase_mapping": "023B", "symbol": "\u023C" }, 575: { "value": "023F", "name": "LATIN SMALL LETTER S WITH SWASH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C7E", "lowercase_mapping": "", "titlecase_mapping": "2C7E", "symbol": "\u023F" }, 576: { "value": "0240", "name": "LATIN SMALL LETTER Z WITH SWASH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C7F", "lowercase_mapping": "", "titlecase_mapping": "2C7F", "symbol": "\u0240" }, 578: { "value": "0242", "name": "LATIN SMALL LETTER GLOTTAL STOP", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0241", "lowercase_mapping": "", "titlecase_mapping": "0241", "symbol": "\u0242" }, 583: { "value": "0247", "name": "LATIN SMALL LETTER E WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0246", "lowercase_mapping": "", "titlecase_mapping": "0246", "symbol": "\u0247" }, 585: { "value": "0249", "name": "LATIN SMALL LETTER J WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0248", "lowercase_mapping": "", "titlecase_mapping": "0248", "symbol": "\u0249" }, 587: { "value": "024B", "name": "LATIN SMALL LETTER Q WITH HOOK TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "024A", "lowercase_mapping": "", "titlecase_mapping": "024A", "symbol": "\u024B" }, 589: { "value": "024D", "name": "LATIN SMALL LETTER R WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "024C", "lowercase_mapping": "", "titlecase_mapping": "024C", "symbol": "\u024D" }, 591: { "value": "024F", "name": "LATIN SMALL LETTER Y WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "024E", "lowercase_mapping": "", "titlecase_mapping": "024E", "symbol": "\u024F" }, 592: { "value": "0250", "name": "LATIN SMALL LETTER TURNED A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C6F", "lowercase_mapping": "", "titlecase_mapping": "2C6F", "symbol": "\u0250" }, 593: { "value": "0251", "name": "LATIN SMALL LETTER ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER SCRIPT A", "comment": "", "uppercase_mapping": "2C6D", "lowercase_mapping": "", "titlecase_mapping": "2C6D", "symbol": "\u0251" }, 594: { "value": "0252", "name": "LATIN SMALL LETTER TURNED ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER TURNED SCRIPT A", "comment": "", "uppercase_mapping": "2C70", "lowercase_mapping": "", "titlecase_mapping": "2C70", "symbol": "\u0252" }, 595: { "value": "0253", "name": "LATIN SMALL LETTER B WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER B HOOK", "comment": "", "uppercase_mapping": "0181", "lowercase_mapping": "", "titlecase_mapping": "0181", "symbol": "\u0253" }, 596: { "value": "0254", "name": "LATIN SMALL LETTER OPEN O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0186", "lowercase_mapping": "", "titlecase_mapping": "0186", "symbol": "\u0254" }, 597: { "value": "0255", "name": "LATIN SMALL LETTER C WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0255" }, 598: { "value": "0256", "name": "LATIN SMALL LETTER D WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D RETROFLEX HOOK", "comment": "", "uppercase_mapping": "0189", "lowercase_mapping": "", "titlecase_mapping": "0189", "symbol": "\u0256" }, 599: { "value": "0257", "name": "LATIN SMALL LETTER D WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D HOOK", "comment": "", "uppercase_mapping": "018A", "lowercase_mapping": "", "titlecase_mapping": "018A", "symbol": "\u0257" }, 600: { "value": "0258", "name": "LATIN SMALL LETTER REVERSED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0258" }, 601: { "value": "0259", "name": "LATIN SMALL LETTER SCHWA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "018F", "lowercase_mapping": "", "titlecase_mapping": "018F", "symbol": "\u0259" }, 602: { "value": "025A", "name": "LATIN SMALL LETTER SCHWA WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER SCHWA HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u025A" }, 603: { "value": "025B", "name": "LATIN SMALL LETTER OPEN E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER EPSILON", "comment": "", "uppercase_mapping": "0190", "lowercase_mapping": "", "titlecase_mapping": "0190", "symbol": "\u025B" }, 604: { "value": "025C", "name": "LATIN SMALL LETTER REVERSED OPEN E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER REVERSED EPSILON", "comment": "", "uppercase_mapping": "A7AB", "lowercase_mapping": "", "titlecase_mapping": "A7AB", "symbol": "\u025C" }, 605: { "value": "025D", "name": "LATIN SMALL LETTER REVERSED OPEN E WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER REVERSED EPSILON HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u025D" }, 606: { "value": "025E", "name": "LATIN SMALL LETTER CLOSED REVERSED OPEN E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER CLOSED REVERSED EPSILON", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u025E" }, 607: { "value": "025F", "name": "LATIN SMALL LETTER DOTLESS J WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER DOTLESS J BAR", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u025F" }, 608: { "value": "0260", "name": "LATIN SMALL LETTER G WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G HOOK", "comment": "", "uppercase_mapping": "0193", "lowercase_mapping": "", "titlecase_mapping": "0193", "symbol": "\u0260" }, 609: { "value": "0261", "name": "LATIN SMALL LETTER SCRIPT G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7AC", "lowercase_mapping": "", "titlecase_mapping": "A7AC", "symbol": "\u0261" }, 610: { "value": "0262", "name": "LATIN LETTER SMALL CAPITAL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0262" }, 611: { "value": "0263", "name": "LATIN SMALL LETTER GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0194", "lowercase_mapping": "", "titlecase_mapping": "0194", "symbol": "\u0263" }, 612: { "value": "0264", "name": "LATIN SMALL LETTER RAMS HORN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER BABY GAMMA", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0264" }, 613: { "value": "0265", "name": "LATIN SMALL LETTER TURNED H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A78D", "lowercase_mapping": "", "titlecase_mapping": "A78D", "symbol": "\u0265" }, 614: { "value": "0266", "name": "LATIN SMALL LETTER H WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER H HOOK", "comment": "", "uppercase_mapping": "A7AA", "lowercase_mapping": "", "titlecase_mapping": "A7AA", "symbol": "\u0266" }, 615: { "value": "0267", "name": "LATIN SMALL LETTER HENG WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER HENG HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0267" }, 616: { "value": "0268", "name": "LATIN SMALL LETTER I WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER BARRED I", "comment": "", "uppercase_mapping": "0197", "lowercase_mapping": "", "titlecase_mapping": "0197", "symbol": "\u0268" }, 617: { "value": "0269", "name": "LATIN SMALL LETTER IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0196", "lowercase_mapping": "", "titlecase_mapping": "0196", "symbol": "\u0269" }, 618: { "value": "026A", "name": "LATIN LETTER SMALL CAPITAL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7AE", "lowercase_mapping": "", "titlecase_mapping": "A7AE", "symbol": "\u026A" }, 619: { "value": "026B", "name": "LATIN SMALL LETTER L WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C62", "lowercase_mapping": "", "titlecase_mapping": "2C62", "symbol": "\u026B" }, 620: { "value": "026C", "name": "LATIN SMALL LETTER L WITH BELT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L BELT", "comment": "", "uppercase_mapping": "A7AD", "lowercase_mapping": "", "titlecase_mapping": "A7AD", "symbol": "\u026C" }, 621: { "value": "026D", "name": "LATIN SMALL LETTER L WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L RETROFLEX HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u026D" }, 622: { "value": "026E", "name": "LATIN SMALL LETTER LEZH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L YOGH", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u026E" }, 623: { "value": "026F", "name": "LATIN SMALL LETTER TURNED M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "019C", "lowercase_mapping": "", "titlecase_mapping": "019C", "symbol": "\u026F" }, 624: { "value": "0270", "name": "LATIN SMALL LETTER TURNED M WITH LONG LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0270" }, 625: { "value": "0271", "name": "LATIN SMALL LETTER M WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER M HOOK", "comment": "", "uppercase_mapping": "2C6E", "lowercase_mapping": "", "titlecase_mapping": "2C6E", "symbol": "\u0271" }, 626: { "value": "0272", "name": "LATIN SMALL LETTER N WITH LEFT HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N HOOK", "comment": "", "uppercase_mapping": "019D", "lowercase_mapping": "", "titlecase_mapping": "019D", "symbol": "\u0272" }, 627: { "value": "0273", "name": "LATIN SMALL LETTER N WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N RETROFLEX HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0273" }, 628: { "value": "0274", "name": "LATIN LETTER SMALL CAPITAL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0274" }, 629: { "value": "0275", "name": "LATIN SMALL LETTER BARRED O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "019F", "lowercase_mapping": "", "titlecase_mapping": "019F", "symbol": "\u0275" }, 630: { "value": "0276", "name": "LATIN LETTER SMALL CAPITAL OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER SMALL CAPITAL O E", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0276" }, 631: { "value": "0277", "name": "LATIN SMALL LETTER CLOSED OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0277" }, 632: { "value": "0278", "name": "LATIN SMALL LETTER PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0278" }, 633: { "value": "0279", "name": "LATIN SMALL LETTER TURNED R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0279" }, 634: { "value": "027A", "name": "LATIN SMALL LETTER TURNED R WITH LONG LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u027A" }, 635: { "value": "027B", "name": "LATIN SMALL LETTER TURNED R WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER TURNED R HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u027B" }, 636: { "value": "027C", "name": "LATIN SMALL LETTER R WITH LONG LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u027C" }, 637: { "value": "027D", "name": "LATIN SMALL LETTER R WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER R HOOK", "comment": "", "uppercase_mapping": "2C64", "lowercase_mapping": "", "titlecase_mapping": "2C64", "symbol": "\u027D" }, 638: { "value": "027E", "name": "LATIN SMALL LETTER R WITH FISHHOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER FISHHOOK R", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u027E" }, 639: { "value": "027F", "name": "LATIN SMALL LETTER REVERSED R WITH FISHHOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER REVERSED FISHHOOK R", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u027F" }, 640: { "value": "0280", "name": "LATIN LETTER SMALL CAPITAL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01A6", "lowercase_mapping": "", "titlecase_mapping": "01A6", "symbol": "\u0280" }, 641: { "value": "0281", "name": "LATIN LETTER SMALL CAPITAL INVERTED R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0281" }, 642: { "value": "0282", "name": "LATIN SMALL LETTER S WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER S HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0282" }, 643: { "value": "0283", "name": "LATIN SMALL LETTER ESH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01A9", "lowercase_mapping": "", "titlecase_mapping": "01A9", "symbol": "\u0283" }, 644: { "value": "0284", "name": "LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER DOTLESS J BAR HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0284" }, 645: { "value": "0285", "name": "LATIN SMALL LETTER SQUAT REVERSED ESH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0285" }, 646: { "value": "0286", "name": "LATIN SMALL LETTER ESH WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER ESH CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0286" }, 647: { "value": "0287", "name": "LATIN SMALL LETTER TURNED T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7B1", "lowercase_mapping": "", "titlecase_mapping": "A7B1", "symbol": "\u0287" }, 648: { "value": "0288", "name": "LATIN SMALL LETTER T WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T RETROFLEX HOOK", "comment": "", "uppercase_mapping": "01AE", "lowercase_mapping": "", "titlecase_mapping": "01AE", "symbol": "\u0288" }, 649: { "value": "0289", "name": "LATIN SMALL LETTER U BAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0244", "lowercase_mapping": "", "titlecase_mapping": "0244", "symbol": "\u0289" }, 650: { "value": "028A", "name": "LATIN SMALL LETTER UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01B1", "lowercase_mapping": "", "titlecase_mapping": "01B1", "symbol": "\u028A" }, 651: { "value": "028B", "name": "LATIN SMALL LETTER V WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER SCRIPT V", "comment": "", "uppercase_mapping": "01B2", "lowercase_mapping": "", "titlecase_mapping": "01B2", "symbol": "\u028B" }, 652: { "value": "028C", "name": "LATIN SMALL LETTER TURNED V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0245", "lowercase_mapping": "", "titlecase_mapping": "0245", "symbol": "\u028C" }, 653: { "value": "028D", "name": "LATIN SMALL LETTER TURNED W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u028D" }, 654: { "value": "028E", "name": "LATIN SMALL LETTER TURNED Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u028E" }, 655: { "value": "028F", "name": "LATIN LETTER SMALL CAPITAL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u028F" }, 656: { "value": "0290", "name": "LATIN SMALL LETTER Z WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z RETROFLEX HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0290" }, 657: { "value": "0291", "name": "LATIN SMALL LETTER Z WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0291" }, 658: { "value": "0292", "name": "LATIN SMALL LETTER EZH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER YOGH", "comment": "", "uppercase_mapping": "01B7", "lowercase_mapping": "", "titlecase_mapping": "01B7", "symbol": "\u0292" }, 659: { "value": "0293", "name": "LATIN SMALL LETTER EZH WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER YOGH CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0293" }, 661: { "value": "0295", "name": "LATIN LETTER PHARYNGEAL VOICED FRICATIVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER REVERSED GLOTTAL STOP", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0295" }, 662: { "value": "0296", "name": "LATIN LETTER INVERTED GLOTTAL STOP", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0296" }, 663: { "value": "0297", "name": "LATIN LETTER STRETCHED C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0297" }, 664: { "value": "0298", "name": "LATIN LETTER BILABIAL CLICK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER BULLSEYE", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0298" }, 665: { "value": "0299", "name": "LATIN LETTER SMALL CAPITAL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0299" }, 666: { "value": "029A", "name": "LATIN SMALL LETTER CLOSED OPEN E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER CLOSED EPSILON", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u029A" }, 667: { "value": "029B", "name": "LATIN LETTER SMALL CAPITAL G WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER SMALL CAPITAL G HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u029B" }, 668: { "value": "029C", "name": "LATIN LETTER SMALL CAPITAL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u029C" }, 669: { "value": "029D", "name": "LATIN SMALL LETTER J WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER CROSSED-TAIL J", "comment": "", "uppercase_mapping": "A7B2", "lowercase_mapping": "", "titlecase_mapping": "A7B2", "symbol": "\u029D" }, 670: { "value": "029E", "name": "LATIN SMALL LETTER TURNED K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7B0", "lowercase_mapping": "", "titlecase_mapping": "A7B0", "symbol": "\u029E" }, 671: { "value": "029F", "name": "LATIN LETTER SMALL CAPITAL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u029F" }, 672: { "value": "02A0", "name": "LATIN SMALL LETTER Q WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Q HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A0" }, 673: { "value": "02A1", "name": "LATIN LETTER GLOTTAL STOP WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER GLOTTAL STOP BAR", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A1" }, 674: { "value": "02A2", "name": "LATIN LETTER REVERSED GLOTTAL STOP WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER REVERSED GLOTTAL STOP BAR", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A2" }, 675: { "value": "02A3", "name": "LATIN SMALL LETTER DZ DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D Z", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A3" }, 676: { "value": "02A4", "name": "LATIN SMALL LETTER DEZH DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D YOGH", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A4" }, 677: { "value": "02A5", "name": "LATIN SMALL LETTER DZ DIGRAPH WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D Z CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A5" }, 678: { "value": "02A6", "name": "LATIN SMALL LETTER TS DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T S", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A6" }, 679: { "value": "02A7", "name": "LATIN SMALL LETTER TESH DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T ESH", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A7" }, 680: { "value": "02A8", "name": "LATIN SMALL LETTER TC DIGRAPH WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T C CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A8" }, 681: { "value": "02A9", "name": "LATIN SMALL LETTER FENG DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A9" }, 682: { "value": "02AA", "name": "LATIN SMALL LETTER LS DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AA" }, 683: { "value": "02AB", "name": "LATIN SMALL LETTER LZ DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AB" }, 684: { "value": "02AC", "name": "LATIN LETTER BILABIAL PERCUSSIVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AC" }, 685: { "value": "02AD", "name": "LATIN LETTER BIDENTAL PERCUSSIVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AD" }, 686: { "value": "02AE", "name": "LATIN SMALL LETTER TURNED H WITH FISHHOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AE" }, 687: { "value": "02AF", "name": "LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AF" }, 881: { "value": "0371", "name": "GREEK SMALL LETTER HETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0370", "lowercase_mapping": "", "titlecase_mapping": "0370", "symbol": "\u0371" }, 883: { "value": "0373", "name": "GREEK SMALL LETTER ARCHAIC SAMPI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0372", "lowercase_mapping": "", "titlecase_mapping": "0372", "symbol": "\u0373" }, 887: { "value": "0377", "name": "GREEK SMALL LETTER PAMPHYLIAN DIGAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0376", "lowercase_mapping": "", "titlecase_mapping": "0376", "symbol": "\u0377" }, 891: { "value": "037B", "name": "GREEK SMALL REVERSED LUNATE SIGMA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03FD", "lowercase_mapping": "", "titlecase_mapping": "03FD", "symbol": "\u037B" }, 892: { "value": "037C", "name": "GREEK SMALL DOTTED LUNATE SIGMA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03FE", "lowercase_mapping": "", "titlecase_mapping": "03FE", "symbol": "\u037C" }, 893: { "value": "037D", "name": "GREEK SMALL REVERSED DOTTED LUNATE SIGMA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03FF", "lowercase_mapping": "", "titlecase_mapping": "03FF", "symbol": "\u037D" }, 912: { "value": "0390", "name": "GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CA 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER IOTA DIAERESIS TONOS", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0390" }, 940: { "value": "03AC", "name": "GREEK SMALL LETTER ALPHA WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER ALPHA TONOS", "comment": "", "uppercase_mapping": "0386", "lowercase_mapping": "", "titlecase_mapping": "0386", "symbol": "\u03AC" }, 941: { "value": "03AD", "name": "GREEK SMALL LETTER EPSILON WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B5 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER EPSILON TONOS", "comment": "", "uppercase_mapping": "0388", "lowercase_mapping": "", "titlecase_mapping": "0388", "symbol": "\u03AD" }, 942: { "value": "03AE", "name": "GREEK SMALL LETTER ETA WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER ETA TONOS", "comment": "", "uppercase_mapping": "0389", "lowercase_mapping": "", "titlecase_mapping": "0389", "symbol": "\u03AE" }, 943: { "value": "03AF", "name": "GREEK SMALL LETTER IOTA WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER IOTA TONOS", "comment": "", "uppercase_mapping": "038A", "lowercase_mapping": "", "titlecase_mapping": "038A", "symbol": "\u03AF" }, 944: { "value": "03B0", "name": "GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CB 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER UPSILON DIAERESIS TONOS", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u03B0" }, 945: { "value": "03B1", "name": "GREEK SMALL LETTER ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0391", "lowercase_mapping": "", "titlecase_mapping": "0391", "symbol": "\u03B1" }, 946: { "value": "03B2", "name": "GREEK SMALL LETTER BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0392", "lowercase_mapping": "", "titlecase_mapping": "0392", "symbol": "\u03B2" }, 947: { "value": "03B3", "name": "GREEK SMALL LETTER GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0393", "lowercase_mapping": "", "titlecase_mapping": "0393", "symbol": "\u03B3" }, 948: { "value": "03B4", "name": "GREEK SMALL LETTER DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0394", "lowercase_mapping": "", "titlecase_mapping": "0394", "symbol": "\u03B4" }, 949: { "value": "03B5", "name": "GREEK SMALL LETTER EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0395", "lowercase_mapping": "", "titlecase_mapping": "0395", "symbol": "\u03B5" }, 950: { "value": "03B6", "name": "GREEK SMALL LETTER ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0396", "lowercase_mapping": "", "titlecase_mapping": "0396", "symbol": "\u03B6" }, 951: { "value": "03B7", "name": "GREEK SMALL LETTER ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0397", "lowercase_mapping": "", "titlecase_mapping": "0397", "symbol": "\u03B7" }, 952: { "value": "03B8", "name": "GREEK SMALL LETTER THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0398", "lowercase_mapping": "", "titlecase_mapping": "0398", "symbol": "\u03B8" }, 953: { "value": "03B9", "name": "GREEK SMALL LETTER IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0399", "lowercase_mapping": "", "titlecase_mapping": "0399", "symbol": "\u03B9" }, 954: { "value": "03BA", "name": "GREEK SMALL LETTER KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039A", "lowercase_mapping": "", "titlecase_mapping": "039A", "symbol": "\u03BA" }, 955: { "value": "03BB", "name": "GREEK SMALL LETTER LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER LAMBDA", "comment": "", "uppercase_mapping": "039B", "lowercase_mapping": "", "titlecase_mapping": "039B", "symbol": "\u03BB" }, 956: { "value": "03BC", "name": "GREEK SMALL LETTER MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039C", "lowercase_mapping": "", "titlecase_mapping": "039C", "symbol": "\u03BC" }, 957: { "value": "03BD", "name": "GREEK SMALL LETTER NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039D", "lowercase_mapping": "", "titlecase_mapping": "039D", "symbol": "\u03BD" }, 958: { "value": "03BE", "name": "GREEK SMALL LETTER XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039E", "lowercase_mapping": "", "titlecase_mapping": "039E", "symbol": "\u03BE" }, 959: { "value": "03BF", "name": "GREEK SMALL LETTER OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039F", "lowercase_mapping": "", "titlecase_mapping": "039F", "symbol": "\u03BF" }, 960: { "value": "03C0", "name": "GREEK SMALL LETTER PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A0", "lowercase_mapping": "", "titlecase_mapping": "03A0", "symbol": "\u03C0" }, 961: { "value": "03C1", "name": "GREEK SMALL LETTER RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A1", "lowercase_mapping": "", "titlecase_mapping": "03A1", "symbol": "\u03C1" }, 962: { "value": "03C2", "name": "GREEK SMALL LETTER FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A3", "lowercase_mapping": "", "titlecase_mapping": "03A3", "symbol": "\u03C2" }, 963: { "value": "03C3", "name": "GREEK SMALL LETTER SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A3", "lowercase_mapping": "", "titlecase_mapping": "03A3", "symbol": "\u03C3" }, 964: { "value": "03C4", "name": "GREEK SMALL LETTER TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A4", "lowercase_mapping": "", "titlecase_mapping": "03A4", "symbol": "\u03C4" }, 965: { "value": "03C5", "name": "GREEK SMALL LETTER UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A5", "lowercase_mapping": "", "titlecase_mapping": "03A5", "symbol": "\u03C5" }, 966: { "value": "03C6", "name": "GREEK SMALL LETTER PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A6", "lowercase_mapping": "", "titlecase_mapping": "03A6", "symbol": "\u03C6" }, 967: { "value": "03C7", "name": "GREEK SMALL LETTER CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A7", "lowercase_mapping": "", "titlecase_mapping": "03A7", "symbol": "\u03C7" }, 968: { "value": "03C8", "name": "GREEK SMALL LETTER PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A8", "lowercase_mapping": "", "titlecase_mapping": "03A8", "symbol": "\u03C8" }, 969: { "value": "03C9", "name": "GREEK SMALL LETTER OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A9", "lowercase_mapping": "", "titlecase_mapping": "03A9", "symbol": "\u03C9" }, 970: { "value": "03CA", "name": "GREEK SMALL LETTER IOTA WITH DIALYTIKA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER IOTA DIAERESIS", "comment": "", "uppercase_mapping": "03AA", "lowercase_mapping": "", "titlecase_mapping": "03AA", "symbol": "\u03CA" }, 971: { "value": "03CB", "name": "GREEK SMALL LETTER UPSILON WITH DIALYTIKA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER UPSILON DIAERESIS", "comment": "", "uppercase_mapping": "03AB", "lowercase_mapping": "", "titlecase_mapping": "03AB", "symbol": "\u03CB" }, 972: { "value": "03CC", "name": "GREEK SMALL LETTER OMICRON WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03BF 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER OMICRON TONOS", "comment": "", "uppercase_mapping": "038C", "lowercase_mapping": "", "titlecase_mapping": "038C", "symbol": "\u03CC" }, 973: { "value": "03CD", "name": "GREEK SMALL LETTER UPSILON WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER UPSILON TONOS", "comment": "", "uppercase_mapping": "038E", "lowercase_mapping": "", "titlecase_mapping": "038E", "symbol": "\u03CD" }, 974: { "value": "03CE", "name": "GREEK SMALL LETTER OMEGA WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER OMEGA TONOS", "comment": "", "uppercase_mapping": "038F", "lowercase_mapping": "", "titlecase_mapping": "038F", "symbol": "\u03CE" }, 976: { "value": "03D0", "name": "GREEK BETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER CURLED BETA", "comment": "", "uppercase_mapping": "0392", "lowercase_mapping": "", "titlecase_mapping": "0392", "symbol": "\u03D0" }, 977: { "value": "03D1", "name": "GREEK THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER SCRIPT THETA", "comment": "", "uppercase_mapping": "0398", "lowercase_mapping": "", "titlecase_mapping": "0398", "symbol": "\u03D1" }, 981: { "value": "03D5", "name": "GREEK PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER SCRIPT PHI", "comment": "", "uppercase_mapping": "03A6", "lowercase_mapping": "", "titlecase_mapping": "03A6", "symbol": "\u03D5" }, 982: { "value": "03D6", "name": "GREEK PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER OMEGA PI", "comment": "", "uppercase_mapping": "03A0", "lowercase_mapping": "", "titlecase_mapping": "03A0", "symbol": "\u03D6" }, 983: { "value": "03D7", "name": "GREEK KAI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03CF", "lowercase_mapping": "", "titlecase_mapping": "03CF", "symbol": "\u03D7" }, 985: { "value": "03D9", "name": "GREEK SMALL LETTER ARCHAIC KOPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03D8", "lowercase_mapping": "", "titlecase_mapping": "03D8", "symbol": "\u03D9" }, 987: { "value": "03DB", "name": "GREEK SMALL LETTER STIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03DA", "lowercase_mapping": "", "titlecase_mapping": "03DA", "symbol": "\u03DB" }, 989: { "value": "03DD", "name": "GREEK SMALL LETTER DIGAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03DC", "lowercase_mapping": "", "titlecase_mapping": "03DC", "symbol": "\u03DD" }, 991: { "value": "03DF", "name": "GREEK SMALL LETTER KOPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03DE", "lowercase_mapping": "", "titlecase_mapping": "03DE", "symbol": "\u03DF" }, 993: { "value": "03E1", "name": "GREEK SMALL LETTER SAMPI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03E0", "lowercase_mapping": "", "titlecase_mapping": "03E0", "symbol": "\u03E1" }, 995: { "value": "03E3", "name": "COPTIC SMALL LETTER SHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER SHEI", "comment": "", "uppercase_mapping": "03E2", "lowercase_mapping": "", "titlecase_mapping": "03E2", "symbol": "\u03E3" }, 997: { "value": "03E5", "name": "COPTIC SMALL LETTER FEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER FEI", "comment": "", "uppercase_mapping": "03E4", "lowercase_mapping": "", "titlecase_mapping": "03E4", "symbol": "\u03E5" }, 999: { "value": "03E7", "name": "COPTIC SMALL LETTER KHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER KHEI", "comment": "", "uppercase_mapping": "03E6", "lowercase_mapping": "", "titlecase_mapping": "03E6", "symbol": "\u03E7" }, 1001: { "value": "03E9", "name": "COPTIC SMALL LETTER HORI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER HORI", "comment": "", "uppercase_mapping": "03E8", "lowercase_mapping": "", "titlecase_mapping": "03E8", "symbol": "\u03E9" }, 1003: { "value": "03EB", "name": "COPTIC SMALL LETTER GANGIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER GANGIA", "comment": "", "uppercase_mapping": "03EA", "lowercase_mapping": "", "titlecase_mapping": "03EA", "symbol": "\u03EB" }, 1005: { "value": "03ED", "name": "COPTIC SMALL LETTER SHIMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER SHIMA", "comment": "", "uppercase_mapping": "03EC", "lowercase_mapping": "", "titlecase_mapping": "03EC", "symbol": "\u03ED" }, 1007: { "value": "03EF", "name": "COPTIC SMALL LETTER DEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER DEI", "comment": "", "uppercase_mapping": "03EE", "lowercase_mapping": "", "titlecase_mapping": "03EE", "symbol": "\u03EF" }, 1008: { "value": "03F0", "name": "GREEK KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER SCRIPT KAPPA", "comment": "", "uppercase_mapping": "039A", "lowercase_mapping": "", "titlecase_mapping": "039A", "symbol": "\u03F0" }, 1009: { "value": "03F1", "name": "GREEK RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER TAILED RHO", "comment": "", "uppercase_mapping": "03A1", "lowercase_mapping": "", "titlecase_mapping": "03A1", "symbol": "\u03F1" }, 1010: { "value": "03F2", "name": "GREEK LUNATE SIGMA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER LUNATE SIGMA", "comment": "", "uppercase_mapping": "03F9", "lowercase_mapping": "", "titlecase_mapping": "03F9", "symbol": "\u03F2" }, 1011: { "value": "03F3", "name": "GREEK LETTER YOT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "037F", "lowercase_mapping": "", "titlecase_mapping": "037F", "symbol": "\u03F3" }, 1013: { "value": "03F5", "name": "GREEK LUNATE EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0395", "lowercase_mapping": "", "titlecase_mapping": "0395", "symbol": "\u03F5" }, 1016: { "value": "03F8", "name": "GREEK SMALL LETTER SHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03F7", "lowercase_mapping": "", "titlecase_mapping": "03F7", "symbol": "\u03F8" }, 1019: { "value": "03FB", "name": "GREEK SMALL LETTER SAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03FA", "lowercase_mapping": "", "titlecase_mapping": "03FA", "symbol": "\u03FB" }, 1020: { "value": "03FC", "name": "GREEK RHO WITH STROKE SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u03FC" }, 1072: { "value": "0430", "name": "CYRILLIC SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0410", "lowercase_mapping": "", "titlecase_mapping": "0410", "symbol": "\u0430" }, 1073: { "value": "0431", "name": "CYRILLIC SMALL LETTER BE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0411", "lowercase_mapping": "", "titlecase_mapping": "0411", "symbol": "\u0431" }, 1074: { "value": "0432", "name": "CYRILLIC SMALL LETTER VE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0412", "lowercase_mapping": "", "titlecase_mapping": "0412", "symbol": "\u0432" }, 1075: { "value": "0433", "name": "CYRILLIC SMALL LETTER GHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER GE", "comment": "", "uppercase_mapping": "0413", "lowercase_mapping": "", "titlecase_mapping": "0413", "symbol": "\u0433" }, 1076: { "value": "0434", "name": "CYRILLIC SMALL LETTER DE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0414", "lowercase_mapping": "", "titlecase_mapping": "0414", "symbol": "\u0434" }, 1077: { "value": "0435", "name": "CYRILLIC SMALL LETTER IE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0415", "lowercase_mapping": "", "titlecase_mapping": "0415", "symbol": "\u0435" }, 1078: { "value": "0436", "name": "CYRILLIC SMALL LETTER ZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0416", "lowercase_mapping": "", "titlecase_mapping": "0416", "symbol": "\u0436" }, 1079: { "value": "0437", "name": "CYRILLIC SMALL LETTER ZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0417", "lowercase_mapping": "", "titlecase_mapping": "0417", "symbol": "\u0437" }, 1080: { "value": "0438", "name": "CYRILLIC SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER II", "comment": "", "uppercase_mapping": "0418", "lowercase_mapping": "", "titlecase_mapping": "0418", "symbol": "\u0438" }, 1081: { "value": "0439", "name": "CYRILLIC SMALL LETTER SHORT I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0438 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER SHORT II", "comment": "", "uppercase_mapping": "0419", "lowercase_mapping": "", "titlecase_mapping": "0419", "symbol": "\u0439" }, 1082: { "value": "043A", "name": "CYRILLIC SMALL LETTER KA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041A", "lowercase_mapping": "", "titlecase_mapping": "041A", "symbol": "\u043A" }, 1083: { "value": "043B", "name": "CYRILLIC SMALL LETTER EL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041B", "lowercase_mapping": "", "titlecase_mapping": "041B", "symbol": "\u043B" }, 1084: { "value": "043C", "name": "CYRILLIC SMALL LETTER EM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041C", "lowercase_mapping": "", "titlecase_mapping": "041C", "symbol": "\u043C" }, 1085: { "value": "043D", "name": "CYRILLIC SMALL LETTER EN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041D", "lowercase_mapping": "", "titlecase_mapping": "041D", "symbol": "\u043D" }, 1086: { "value": "043E", "name": "CYRILLIC SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041E", "lowercase_mapping": "", "titlecase_mapping": "041E", "symbol": "\u043E" }, 1087: { "value": "043F", "name": "CYRILLIC SMALL LETTER PE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041F", "lowercase_mapping": "", "titlecase_mapping": "041F", "symbol": "\u043F" }, 1088: { "value": "0440", "name": "CYRILLIC SMALL LETTER ER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0420", "lowercase_mapping": "", "titlecase_mapping": "0420", "symbol": "\u0440" }, 1089: { "value": "0441", "name": "CYRILLIC SMALL LETTER ES", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0421", "lowercase_mapping": "", "titlecase_mapping": "0421", "symbol": "\u0441" }, 1090: { "value": "0442", "name": "CYRILLIC SMALL LETTER TE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0422", "lowercase_mapping": "", "titlecase_mapping": "0422", "symbol": "\u0442" }, 1091: { "value": "0443", "name": "CYRILLIC SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0423", "lowercase_mapping": "", "titlecase_mapping": "0423", "symbol": "\u0443" }, 1092: { "value": "0444", "name": "CYRILLIC SMALL LETTER EF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0424", "lowercase_mapping": "", "titlecase_mapping": "0424", "symbol": "\u0444" }, 1093: { "value": "0445", "name": "CYRILLIC SMALL LETTER HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KHA", "comment": "", "uppercase_mapping": "0425", "lowercase_mapping": "", "titlecase_mapping": "0425", "symbol": "\u0445" }, 1094: { "value": "0446", "name": "CYRILLIC SMALL LETTER TSE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0426", "lowercase_mapping": "", "titlecase_mapping": "0426", "symbol": "\u0446" }, 1095: { "value": "0447", "name": "CYRILLIC SMALL LETTER CHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0427", "lowercase_mapping": "", "titlecase_mapping": "0427", "symbol": "\u0447" }, 1096: { "value": "0448", "name": "CYRILLIC SMALL LETTER SHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0428", "lowercase_mapping": "", "titlecase_mapping": "0428", "symbol": "\u0448" }, 1097: { "value": "0449", "name": "CYRILLIC SMALL LETTER SHCHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0429", "lowercase_mapping": "", "titlecase_mapping": "0429", "symbol": "\u0449" }, 1098: { "value": "044A", "name": "CYRILLIC SMALL LETTER HARD SIGN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "042A", "lowercase_mapping": "", "titlecase_mapping": "042A", "symbol": "\u044A" }, 1099: { "value": "044B", "name": "CYRILLIC SMALL LETTER YERU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER YERI", "comment": "", "uppercase_mapping": "042B", "lowercase_mapping": "", "titlecase_mapping": "042B", "symbol": "\u044B" }, 1100: { "value": "044C", "name": "CYRILLIC SMALL LETTER SOFT SIGN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "042C", "lowercase_mapping": "", "titlecase_mapping": "042C", "symbol": "\u044C" }, 1101: { "value": "044D", "name": "CYRILLIC SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER REVERSED E", "comment": "", "uppercase_mapping": "042D", "lowercase_mapping": "", "titlecase_mapping": "042D", "symbol": "\u044D" }, 1102: { "value": "044E", "name": "CYRILLIC SMALL LETTER YU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER IU", "comment": "", "uppercase_mapping": "042E", "lowercase_mapping": "", "titlecase_mapping": "042E", "symbol": "\u044E" }, 1103: { "value": "044F", "name": "CYRILLIC SMALL LETTER YA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER IA", "comment": "", "uppercase_mapping": "042F", "lowercase_mapping": "", "titlecase_mapping": "042F", "symbol": "\u044F" }, 1104: { "value": "0450", "name": "CYRILLIC SMALL LETTER IE WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0435 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0400", "lowercase_mapping": "", "titlecase_mapping": "0400", "symbol": "\u0450" }, 1105: { "value": "0451", "name": "CYRILLIC SMALL LETTER IO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0435 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0401", "lowercase_mapping": "", "titlecase_mapping": "0401", "symbol": "\u0451" }, 1106: { "value": "0452", "name": "CYRILLIC SMALL LETTER DJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0402", "lowercase_mapping": "", "titlecase_mapping": "0402", "symbol": "\u0452" }, 1107: { "value": "0453", "name": "CYRILLIC SMALL LETTER GJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0433 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0403", "lowercase_mapping": "", "titlecase_mapping": "0403", "symbol": "\u0453" }, 1108: { "value": "0454", "name": "CYRILLIC SMALL LETTER UKRAINIAN IE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER E", "comment": "", "uppercase_mapping": "0404", "lowercase_mapping": "", "titlecase_mapping": "0404", "symbol": "\u0454" }, 1109: { "value": "0455", "name": "CYRILLIC SMALL LETTER DZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0405", "lowercase_mapping": "", "titlecase_mapping": "0405", "symbol": "\u0455" }, 1110: { "value": "0456", "name": "CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER I", "comment": "", "uppercase_mapping": "0406", "lowercase_mapping": "", "titlecase_mapping": "0406", "symbol": "\u0456" }, 1111: { "value": "0457", "name": "CYRILLIC SMALL LETTER YI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0456 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0407", "lowercase_mapping": "", "titlecase_mapping": "0407", "symbol": "\u0457" }, 1112: { "value": "0458", "name": "CYRILLIC SMALL LETTER JE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0408", "lowercase_mapping": "", "titlecase_mapping": "0408", "symbol": "\u0458" }, 1113: { "value": "0459", "name": "CYRILLIC SMALL LETTER LJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0409", "lowercase_mapping": "", "titlecase_mapping": "0409", "symbol": "\u0459" }, 1114: { "value": "045A", "name": "CYRILLIC SMALL LETTER NJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040A", "lowercase_mapping": "", "titlecase_mapping": "040A", "symbol": "\u045A" }, 1115: { "value": "045B", "name": "CYRILLIC SMALL LETTER TSHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040B", "lowercase_mapping": "", "titlecase_mapping": "040B", "symbol": "\u045B" }, 1116: { "value": "045C", "name": "CYRILLIC SMALL LETTER KJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "043A 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040C", "lowercase_mapping": "", "titlecase_mapping": "040C", "symbol": "\u045C" }, 1117: { "value": "045D", "name": "CYRILLIC SMALL LETTER I WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0438 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040D", "lowercase_mapping": "", "titlecase_mapping": "040D", "symbol": "\u045D" }, 1118: { "value": "045E", "name": "CYRILLIC SMALL LETTER SHORT U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0443 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040E", "lowercase_mapping": "", "titlecase_mapping": "040E", "symbol": "\u045E" }, 1119: { "value": "045F", "name": "CYRILLIC SMALL LETTER DZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040F", "lowercase_mapping": "", "titlecase_mapping": "040F", "symbol": "\u045F" }, 1121: { "value": "0461", "name": "CYRILLIC SMALL LETTER OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0460", "lowercase_mapping": "", "titlecase_mapping": "0460", "symbol": "\u0461" }, 1123: { "value": "0463", "name": "CYRILLIC SMALL LETTER YAT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0462", "lowercase_mapping": "", "titlecase_mapping": "0462", "symbol": "\u0463" }, 1125: { "value": "0465", "name": "CYRILLIC SMALL LETTER IOTIFIED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0464", "lowercase_mapping": "", "titlecase_mapping": "0464", "symbol": "\u0465" }, 1127: { "value": "0467", "name": "CYRILLIC SMALL LETTER LITTLE YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0466", "lowercase_mapping": "", "titlecase_mapping": "0466", "symbol": "\u0467" }, 1129: { "value": "0469", "name": "CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0468", "lowercase_mapping": "", "titlecase_mapping": "0468", "symbol": "\u0469" }, 1131: { "value": "046B", "name": "CYRILLIC SMALL LETTER BIG YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "046A", "lowercase_mapping": "", "titlecase_mapping": "046A", "symbol": "\u046B" }, 1133: { "value": "046D", "name": "CYRILLIC SMALL LETTER IOTIFIED BIG YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "046C", "lowercase_mapping": "", "titlecase_mapping": "046C", "symbol": "\u046D" }, 1135: { "value": "046F", "name": "CYRILLIC SMALL LETTER KSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "046E", "lowercase_mapping": "", "titlecase_mapping": "046E", "symbol": "\u046F" }, 1137: { "value": "0471", "name": "CYRILLIC SMALL LETTER PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0470", "lowercase_mapping": "", "titlecase_mapping": "0470", "symbol": "\u0471" }, 1139: { "value": "0473", "name": "CYRILLIC SMALL LETTER FITA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0472", "lowercase_mapping": "", "titlecase_mapping": "0472", "symbol": "\u0473" }, 1141: { "value": "0475", "name": "CYRILLIC SMALL LETTER IZHITSA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0474", "lowercase_mapping": "", "titlecase_mapping": "0474", "symbol": "\u0475" }, 1143: { "value": "0477", "name": "CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0475 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER IZHITSA DOUBLE GRAVE", "comment": "", "uppercase_mapping": "0476", "lowercase_mapping": "", "titlecase_mapping": "0476", "symbol": "\u0477" }, 1145: { "value": "0479", "name": "CYRILLIC SMALL LETTER UK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER UK DIGRAPH", "comment": "", "uppercase_mapping": "0478", "lowercase_mapping": "", "titlecase_mapping": "0478", "symbol": "\u0479" }, 1147: { "value": "047B", "name": "CYRILLIC SMALL LETTER ROUND OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "047A", "lowercase_mapping": "", "titlecase_mapping": "047A", "symbol": "\u047B" }, 1149: { "value": "047D", "name": "CYRILLIC SMALL LETTER OMEGA WITH TITLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER OMEGA TITLO", "comment": "", "uppercase_mapping": "047C", "lowercase_mapping": "", "titlecase_mapping": "047C", "symbol": "\u047D" }, 1151: { "value": "047F", "name": "CYRILLIC SMALL LETTER OT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "047E", "lowercase_mapping": "", "titlecase_mapping": "047E", "symbol": "\u047F" }, 1153: { "value": "0481", "name": "CYRILLIC SMALL LETTER KOPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0480", "lowercase_mapping": "", "titlecase_mapping": "0480", "symbol": "\u0481" }, 1163: { "value": "048B", "name": "CYRILLIC SMALL LETTER SHORT I WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "048A", "lowercase_mapping": "", "titlecase_mapping": "048A", "symbol": "\u048B" }, 1165: { "value": "048D", "name": "CYRILLIC SMALL LETTER SEMISOFT SIGN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "048C", "lowercase_mapping": "", "titlecase_mapping": "048C", "symbol": "\u048D" }, 1167: { "value": "048F", "name": "CYRILLIC SMALL LETTER ER WITH TICK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "048E", "lowercase_mapping": "", "titlecase_mapping": "048E", "symbol": "\u048F" }, 1169: { "value": "0491", "name": "CYRILLIC SMALL LETTER GHE WITH UPTURN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER GE WITH UPTURN", "comment": "", "uppercase_mapping": "0490", "lowercase_mapping": "", "titlecase_mapping": "0490", "symbol": "\u0491" }, 1171: { "value": "0493", "name": "CYRILLIC SMALL LETTER GHE WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER GE BAR", "comment": "", "uppercase_mapping": "0492", "lowercase_mapping": "", "titlecase_mapping": "0492", "symbol": "\u0493" }, 1173: { "value": "0495", "name": "CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER GE HOOK", "comment": "", "uppercase_mapping": "0494", "lowercase_mapping": "", "titlecase_mapping": "0494", "symbol": "\u0495" }, 1175: { "value": "0497", "name": "CYRILLIC SMALL LETTER ZHE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER ZHE WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "0496", "lowercase_mapping": "", "titlecase_mapping": "0496", "symbol": "\u0497" }, 1177: { "value": "0499", "name": "CYRILLIC SMALL LETTER ZE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER ZE CEDILLA", "comment": "", "uppercase_mapping": "0498", "lowercase_mapping": "", "titlecase_mapping": "0498", "symbol": "\u0499" }, 1179: { "value": "049B", "name": "CYRILLIC SMALL LETTER KA WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KA WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "049A", "lowercase_mapping": "", "titlecase_mapping": "049A", "symbol": "\u049B" }, 1181: { "value": "049D", "name": "CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KA VERTICAL BAR", "comment": "", "uppercase_mapping": "049C", "lowercase_mapping": "", "titlecase_mapping": "049C", "symbol": "\u049D" }, 1183: { "value": "049F", "name": "CYRILLIC SMALL LETTER KA WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KA BAR", "comment": "", "uppercase_mapping": "049E", "lowercase_mapping": "", "titlecase_mapping": "049E", "symbol": "\u049F" }, 1185: { "value": "04A1", "name": "CYRILLIC SMALL LETTER BASHKIR KA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER REVERSED GE KA", "comment": "", "uppercase_mapping": "04A0", "lowercase_mapping": "", "titlecase_mapping": "04A0", "symbol": "\u04A1" }, 1187: { "value": "04A3", "name": "CYRILLIC SMALL LETTER EN WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER EN WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "04A2", "lowercase_mapping": "", "titlecase_mapping": "04A2", "symbol": "\u04A3" }, 1189: { "value": "04A5", "name": "CYRILLIC SMALL LIGATURE EN GHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER EN GE", "comment": "", "uppercase_mapping": "04A4", "lowercase_mapping": "", "titlecase_mapping": "04A4", "symbol": "\u04A5" }, 1191: { "value": "04A7", "name": "CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER PE HOOK", "comment": "", "uppercase_mapping": "04A6", "lowercase_mapping": "", "titlecase_mapping": "04A6", "symbol": "\u04A7" }, 1193: { "value": "04A9", "name": "CYRILLIC SMALL LETTER ABKHASIAN HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER O HOOK", "comment": "", "uppercase_mapping": "04A8", "lowercase_mapping": "", "titlecase_mapping": "04A8", "symbol": "\u04A9" }, 1195: { "value": "04AB", "name": "CYRILLIC SMALL LETTER ES WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER ES CEDILLA", "comment": "", "uppercase_mapping": "04AA", "lowercase_mapping": "", "titlecase_mapping": "04AA", "symbol": "\u04AB" }, 1197: { "value": "04AD", "name": "CYRILLIC SMALL LETTER TE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER TE WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "04AC", "lowercase_mapping": "", "titlecase_mapping": "04AC", "symbol": "\u04AD" }, 1199: { "value": "04AF", "name": "CYRILLIC SMALL LETTER STRAIGHT U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04AE", "lowercase_mapping": "", "titlecase_mapping": "04AE", "symbol": "\u04AF" }, 1201: { "value": "04B1", "name": "CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER STRAIGHT U BAR", "comment": "", "uppercase_mapping": "04B0", "lowercase_mapping": "", "titlecase_mapping": "04B0", "symbol": "\u04B1" }, 1203: { "value": "04B3", "name": "CYRILLIC SMALL LETTER HA WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KHA WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "04B2", "lowercase_mapping": "", "titlecase_mapping": "04B2", "symbol": "\u04B3" }, 1205: { "value": "04B5", "name": "CYRILLIC SMALL LIGATURE TE TSE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER TE TSE", "comment": "", "uppercase_mapping": "04B4", "lowercase_mapping": "", "titlecase_mapping": "04B4", "symbol": "\u04B5" }, 1207: { "value": "04B7", "name": "CYRILLIC SMALL LETTER CHE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER CHE WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "04B6", "lowercase_mapping": "", "titlecase_mapping": "04B6", "symbol": "\u04B7" }, 1209: { "value": "04B9", "name": "CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER CHE VERTICAL BAR", "comment": "", "uppercase_mapping": "04B8", "lowercase_mapping": "", "titlecase_mapping": "04B8", "symbol": "\u04B9" }, 1211: { "value": "04BB", "name": "CYRILLIC SMALL LETTER SHHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER H", "comment": "", "uppercase_mapping": "04BA", "lowercase_mapping": "", "titlecase_mapping": "04BA", "symbol": "\u04BB" }, 1213: { "value": "04BD", "name": "CYRILLIC SMALL LETTER ABKHASIAN CHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER IE HOOK", "comment": "", "uppercase_mapping": "04BC", "lowercase_mapping": "", "titlecase_mapping": "04BC", "symbol": "\u04BD" }, 1215: { "value": "04BF", "name": "CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER IE HOOK OGONEK", "comment": "", "uppercase_mapping": "04BE", "lowercase_mapping": "", "titlecase_mapping": "04BE", "symbol": "\u04BF" }, 1218: { "value": "04C2", "name": "CYRILLIC SMALL LETTER ZHE WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0436 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER SHORT ZHE", "comment": "", "uppercase_mapping": "04C1", "lowercase_mapping": "", "titlecase_mapping": "04C1", "symbol": "\u04C2" }, 1220: { "value": "04C4", "name": "CYRILLIC SMALL LETTER KA WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KA HOOK", "comment": "", "uppercase_mapping": "04C3", "lowercase_mapping": "", "titlecase_mapping": "04C3", "symbol": "\u04C4" }, 1222: { "value": "04C6", "name": "CYRILLIC SMALL LETTER EL WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04C5", "lowercase_mapping": "", "titlecase_mapping": "04C5", "symbol": "\u04C6" }, 1224: { "value": "04C8", "name": "CYRILLIC SMALL LETTER EN WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER EN HOOK", "comment": "", "uppercase_mapping": "04C7", "lowercase_mapping": "", "titlecase_mapping": "04C7", "symbol": "\u04C8" }, 1226: { "value": "04CA", "name": "CYRILLIC SMALL LETTER EN WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04C9", "lowercase_mapping": "", "titlecase_mapping": "04C9", "symbol": "\u04CA" }, 1228: { "value": "04CC", "name": "CYRILLIC SMALL LETTER KHAKASSIAN CHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER CHE WITH LEFT DESCENDER", "comment": "", "uppercase_mapping": "04CB", "lowercase_mapping": "", "titlecase_mapping": "04CB", "symbol": "\u04CC" }, 1230: { "value": "04CE", "name": "CYRILLIC SMALL LETTER EM WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04CD", "lowercase_mapping": "", "titlecase_mapping": "04CD", "symbol": "\u04CE" }, 1231: { "value": "04CF", "name": "CYRILLIC SMALL LETTER PALOCHKA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04C0", "lowercase_mapping": "", "titlecase_mapping": "04C0", "symbol": "\u04CF" }, 1233: { "value": "04D1", "name": "CYRILLIC SMALL LETTER A WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0430 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04D0", "lowercase_mapping": "", "titlecase_mapping": "04D0", "symbol": "\u04D1" }, 1235: { "value": "04D3", "name": "CYRILLIC SMALL LETTER A WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0430 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04D2", "lowercase_mapping": "", "titlecase_mapping": "04D2", "symbol": "\u04D3" }, 1237: { "value": "04D5", "name": "CYRILLIC SMALL LIGATURE A IE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04D4", "lowercase_mapping": "", "titlecase_mapping": "04D4", "symbol": "\u04D5" }, 1239: { "value": "04D7", "name": "CYRILLIC SMALL LETTER IE WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0435 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04D6", "lowercase_mapping": "", "titlecase_mapping": "04D6", "symbol": "\u04D7" }, 1241: { "value": "04D9", "name": "CYRILLIC SMALL LETTER SCHWA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04D8", "lowercase_mapping": "", "titlecase_mapping": "04D8", "symbol": "\u04D9" }, 1243: { "value": "04DB", "name": "CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "04D9 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04DA", "lowercase_mapping": "", "titlecase_mapping": "04DA", "symbol": "\u04DB" }, 1245: { "value": "04DD", "name": "CYRILLIC SMALL LETTER ZHE WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0436 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04DC", "lowercase_mapping": "", "titlecase_mapping": "04DC", "symbol": "\u04DD" }, 1247: { "value": "04DF", "name": "CYRILLIC SMALL LETTER ZE WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0437 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04DE", "lowercase_mapping": "", "titlecase_mapping": "04DE", "symbol": "\u04DF" }, 1249: { "value": "04E1", "name": "CYRILLIC SMALL LETTER ABKHASIAN DZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04E0", "lowercase_mapping": "", "titlecase_mapping": "04E0", "symbol": "\u04E1" }, 1251: { "value": "04E3", "name": "CYRILLIC SMALL LETTER I WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0438 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04E2", "lowercase_mapping": "", "titlecase_mapping": "04E2", "symbol": "\u04E3" }, 1253: { "value": "04E5", "name": "CYRILLIC SMALL LETTER I WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0438 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04E4", "lowercase_mapping": "", "titlecase_mapping": "04E4", "symbol": "\u04E5" }, 1255: { "value": "04E7", "name": "CYRILLIC SMALL LETTER O WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "043E 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04E6", "lowercase_mapping": "", "titlecase_mapping": "04E6", "symbol": "\u04E7" }, 1257: { "value": "04E9", "name": "CYRILLIC SMALL LETTER BARRED O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04E8", "lowercase_mapping": "", "titlecase_mapping": "04E8", "symbol": "\u04E9" }, 1259: { "value": "04EB", "name": "CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "04E9 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04EA", "lowercase_mapping": "", "titlecase_mapping": "04EA", "symbol": "\u04EB" }, 1261: { "value": "04ED", "name": "CYRILLIC SMALL LETTER E WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "044D 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04EC", "lowercase_mapping": "", "titlecase_mapping": "04EC", "symbol": "\u04ED" }, 1263: { "value": "04EF", "name": "CYRILLIC SMALL LETTER U WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0443 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04EE", "lowercase_mapping": "", "titlecase_mapping": "04EE", "symbol": "\u04EF" }, 1265: { "value": "04F1", "name": "CYRILLIC SMALL LETTER U WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0443 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04F0", "lowercase_mapping": "", "titlecase_mapping": "04F0", "symbol": "\u04F1" }, 1267: { "value": "04F3", "name": "CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0443 030B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04F2", "lowercase_mapping": "", "titlecase_mapping": "04F2", "symbol": "\u04F3" }, 1269: { "value": "04F5", "name": "CYRILLIC SMALL LETTER CHE WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0447 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04F4", "lowercase_mapping": "", "titlecase_mapping": "04F4", "symbol": "\u04F5" }, 1271: { "value": "04F7", "name": "CYRILLIC SMALL LETTER GHE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04F6", "lowercase_mapping": "", "titlecase_mapping": "04F6", "symbol": "\u04F7" }, 1273: { "value": "04F9", "name": "CYRILLIC SMALL LETTER YERU WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "044B 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04F8", "lowercase_mapping": "", "titlecase_mapping": "04F8", "symbol": "\u04F9" }, 1275: { "value": "04FB", "name": "CYRILLIC SMALL LETTER GHE WITH STROKE AND HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04FA", "lowercase_mapping": "", "titlecase_mapping": "04FA", "symbol": "\u04FB" }, 1277: { "value": "04FD", "name": "CYRILLIC SMALL LETTER HA WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04FC", "lowercase_mapping": "", "titlecase_mapping": "04FC", "symbol": "\u04FD" }, 1279: { "value": "04FF", "name": "CYRILLIC SMALL LETTER HA WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04FE", "lowercase_mapping": "", "titlecase_mapping": "04FE", "symbol": "\u04FF" }, 1281: { "value": "0501", "name": "CYRILLIC SMALL LETTER KOMI DE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0500", "lowercase_mapping": "", "titlecase_mapping": "0500", "symbol": "\u0501" }, 1283: { "value": "0503", "name": "CYRILLIC SMALL LETTER KOMI DJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0502", "lowercase_mapping": "", "titlecase_mapping": "0502", "symbol": "\u0503" }, 1285: { "value": "0505", "name": "CYRILLIC SMALL LETTER KOMI ZJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0504", "lowercase_mapping": "", "titlecase_mapping": "0504", "symbol": "\u0505" }, 1287: { "value": "0507", "name": "CYRILLIC SMALL LETTER KOMI DZJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0506", "lowercase_mapping": "", "titlecase_mapping": "0506", "symbol": "\u0507" }, 1289: { "value": "0509", "name": "CYRILLIC SMALL LETTER KOMI LJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0508", "lowercase_mapping": "", "titlecase_mapping": "0508", "symbol": "\u0509" }, 1291: { "value": "050B", "name": "CYRILLIC SMALL LETTER KOMI NJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "050A", "lowercase_mapping": "", "titlecase_mapping": "050A", "symbol": "\u050B" }, 1293: { "value": "050D", "name": "CYRILLIC SMALL LETTER KOMI SJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "050C", "lowercase_mapping": "", "titlecase_mapping": "050C", "symbol": "\u050D" }, 1295: { "value": "050F", "name": "CYRILLIC SMALL LETTER KOMI TJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "050E", "lowercase_mapping": "", "titlecase_mapping": "050E", "symbol": "\u050F" }, 1297: { "value": "0511", "name": "CYRILLIC SMALL LETTER REVERSED ZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0510", "lowercase_mapping": "", "titlecase_mapping": "0510", "symbol": "\u0511" }, 1299: { "value": "0513", "name": "CYRILLIC SMALL LETTER EL WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0512", "lowercase_mapping": "", "titlecase_mapping": "0512", "symbol": "\u0513" }, 1301: { "value": "0515", "name": "CYRILLIC SMALL LETTER LHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0514", "lowercase_mapping": "", "titlecase_mapping": "0514", "symbol": "\u0515" }, 1303: { "value": "0517", "name": "CYRILLIC SMALL LETTER RHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0516", "lowercase_mapping": "", "titlecase_mapping": "0516", "symbol": "\u0517" }, 1305: { "value": "0519", "name": "CYRILLIC SMALL LETTER YAE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0518", "lowercase_mapping": "", "titlecase_mapping": "0518", "symbol": "\u0519" }, 1307: { "value": "051B", "name": "CYRILLIC SMALL LETTER QA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "051A", "lowercase_mapping": "", "titlecase_mapping": "051A", "symbol": "\u051B" }, 1309: { "value": "051D", "name": "CYRILLIC SMALL LETTER WE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "051C", "lowercase_mapping": "", "titlecase_mapping": "051C", "symbol": "\u051D" }, 1311: { "value": "051F", "name": "CYRILLIC SMALL LETTER ALEUT KA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "051E", "lowercase_mapping": "", "titlecase_mapping": "051E", "symbol": "\u051F" }, 1313: { "value": "0521", "name": "CYRILLIC SMALL LETTER EL WITH MIDDLE HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0520", "lowercase_mapping": "", "titlecase_mapping": "0520", "symbol": "\u0521" }, 1315: { "value": "0523", "name": "CYRILLIC SMALL LETTER EN WITH MIDDLE HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0522", "lowercase_mapping": "", "titlecase_mapping": "0522", "symbol": "\u0523" }, 1317: { "value": "0525", "name": "CYRILLIC SMALL LETTER PE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0524", "lowercase_mapping": "", "titlecase_mapping": "0524", "symbol": "\u0525" }, 1319: { "value": "0527", "name": "CYRILLIC SMALL LETTER SHHA WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0526", "lowercase_mapping": "", "titlecase_mapping": "0526", "symbol": "\u0527" }, 1321: { "value": "0529", "name": "CYRILLIC SMALL LETTER EN WITH LEFT HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0528", "lowercase_mapping": "", "titlecase_mapping": "0528", "symbol": "\u0529" }, 1323: { "value": "052B", "name": "CYRILLIC SMALL LETTER DZZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "052A", "lowercase_mapping": "", "titlecase_mapping": "052A", "symbol": "\u052B" }, 1325: { "value": "052D", "name": "CYRILLIC SMALL LETTER DCHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "052C", "lowercase_mapping": "", "titlecase_mapping": "052C", "symbol": "\u052D" }, 1327: { "value": "052F", "name": "CYRILLIC SMALL LETTER EL WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "052E", "lowercase_mapping": "", "titlecase_mapping": "052E", "symbol": "\u052F" }, 1377: { "value": "0561", "name": "ARMENIAN SMALL LETTER AYB", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0531", "lowercase_mapping": "", "titlecase_mapping": "0531", "symbol": "\u0561" }, 1378: { "value": "0562", "name": "ARMENIAN SMALL LETTER BEN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0532", "lowercase_mapping": "", "titlecase_mapping": "0532", "symbol": "\u0562" }, 1379: { "value": "0563", "name": "ARMENIAN SMALL LETTER GIM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0533", "lowercase_mapping": "", "titlecase_mapping": "0533", "symbol": "\u0563" }, 1380: { "value": "0564", "name": "ARMENIAN SMALL LETTER DA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0534", "lowercase_mapping": "", "titlecase_mapping": "0534", "symbol": "\u0564" }, 1381: { "value": "0565", "name": "ARMENIAN SMALL LETTER ECH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0535", "lowercase_mapping": "", "titlecase_mapping": "0535", "symbol": "\u0565" }, 1382: { "value": "0566", "name": "ARMENIAN SMALL LETTER ZA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0536", "lowercase_mapping": "", "titlecase_mapping": "0536", "symbol": "\u0566" }, 1383: { "value": "0567", "name": "ARMENIAN SMALL LETTER EH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0537", "lowercase_mapping": "", "titlecase_mapping": "0537", "symbol": "\u0567" }, 1384: { "value": "0568", "name": "ARMENIAN SMALL LETTER ET", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0538", "lowercase_mapping": "", "titlecase_mapping": "0538", "symbol": "\u0568" }, 1385: { "value": "0569", "name": "ARMENIAN SMALL LETTER TO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0539", "lowercase_mapping": "", "titlecase_mapping": "0539", "symbol": "\u0569" }, 1386: { "value": "056A", "name": "ARMENIAN SMALL LETTER ZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053A", "lowercase_mapping": "", "titlecase_mapping": "053A", "symbol": "\u056A" }, 1387: { "value": "056B", "name": "ARMENIAN SMALL LETTER INI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053B", "lowercase_mapping": "", "titlecase_mapping": "053B", "symbol": "\u056B" }, 1388: { "value": "056C", "name": "ARMENIAN SMALL LETTER LIWN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053C", "lowercase_mapping": "", "titlecase_mapping": "053C", "symbol": "\u056C" }, 1389: { "value": "056D", "name": "ARMENIAN SMALL LETTER XEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053D", "lowercase_mapping": "", "titlecase_mapping": "053D", "symbol": "\u056D" }, 1390: { "value": "056E", "name": "ARMENIAN SMALL LETTER CA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053E", "lowercase_mapping": "", "titlecase_mapping": "053E", "symbol": "\u056E" }, 1391: { "value": "056F", "name": "ARMENIAN SMALL LETTER KEN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053F", "lowercase_mapping": "", "titlecase_mapping": "053F", "symbol": "\u056F" }, 1392: { "value": "0570", "name": "ARMENIAN SMALL LETTER HO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0540", "lowercase_mapping": "", "titlecase_mapping": "0540", "symbol": "\u0570" }, 1393: { "value": "0571", "name": "ARMENIAN SMALL LETTER JA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0541", "lowercase_mapping": "", "titlecase_mapping": "0541", "symbol": "\u0571" }, 1394: { "value": "0572", "name": "ARMENIAN SMALL LETTER GHAD", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "ARMENIAN SMALL LETTER LAD", "comment": "", "uppercase_mapping": "0542", "lowercase_mapping": "", "titlecase_mapping": "0542", "symbol": "\u0572" }, 1395: { "value": "0573", "name": "ARMENIAN SMALL LETTER CHEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0543", "lowercase_mapping": "", "titlecase_mapping": "0543", "symbol": "\u0573" }, 1396: { "value": "0574", "name": "ARMENIAN SMALL LETTER MEN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0544", "lowercase_mapping": "", "titlecase_mapping": "0544", "symbol": "\u0574" }, 1397: { "value": "0575", "name": "ARMENIAN SMALL LETTER YI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0545", "lowercase_mapping": "", "titlecase_mapping": "0545", "symbol": "\u0575" }, 1398: { "value": "0576", "name": "ARMENIAN SMALL LETTER NOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0546", "lowercase_mapping": "", "titlecase_mapping": "0546", "symbol": "\u0576" }, 1399: { "value": "0577", "name": "ARMENIAN SMALL LETTER SHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0547", "lowercase_mapping": "", "titlecase_mapping": "0547", "symbol": "\u0577" }, 1400: { "value": "0578", "name": "ARMENIAN SMALL LETTER VO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0548", "lowercase_mapping": "", "titlecase_mapping": "0548", "symbol": "\u0578" }, 1401: { "value": "0579", "name": "ARMENIAN SMALL LETTER CHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0549", "lowercase_mapping": "", "titlecase_mapping": "0549", "symbol": "\u0579" }, 1402: { "value": "057A", "name": "ARMENIAN SMALL LETTER PEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054A", "lowercase_mapping": "", "titlecase_mapping": "054A", "symbol": "\u057A" }, 1403: { "value": "057B", "name": "ARMENIAN SMALL LETTER JHEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054B", "lowercase_mapping": "", "titlecase_mapping": "054B", "symbol": "\u057B" }, 1404: { "value": "057C", "name": "ARMENIAN SMALL LETTER RA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054C", "lowercase_mapping": "", "titlecase_mapping": "054C", "symbol": "\u057C" }, 1405: { "value": "057D", "name": "ARMENIAN SMALL LETTER SEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054D", "lowercase_mapping": "", "titlecase_mapping": "054D", "symbol": "\u057D" }, 1406: { "value": "057E", "name": "ARMENIAN SMALL LETTER VEW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054E", "lowercase_mapping": "", "titlecase_mapping": "054E", "symbol": "\u057E" }, 1407: { "value": "057F", "name": "ARMENIAN SMALL LETTER TIWN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054F", "lowercase_mapping": "", "titlecase_mapping": "054F", "symbol": "\u057F" }, 1408: { "value": "0580", "name": "ARMENIAN SMALL LETTER REH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0550", "lowercase_mapping": "", "titlecase_mapping": "0550", "symbol": "\u0580" }, 1409: { "value": "0581", "name": "ARMENIAN SMALL LETTER CO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0551", "lowercase_mapping": "", "titlecase_mapping": "0551", "symbol": "\u0581" }, 1410: { "value": "0582", "name": "ARMENIAN SMALL LETTER YIWN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0552", "lowercase_mapping": "", "titlecase_mapping": "0552", "symbol": "\u0582" }, 1411: { "value": "0583", "name": "ARMENIAN SMALL LETTER PIWR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0553", "lowercase_mapping": "", "titlecase_mapping": "0553", "symbol": "\u0583" }, 1412: { "value": "0584", "name": "ARMENIAN SMALL LETTER KEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0554", "lowercase_mapping": "", "titlecase_mapping": "0554", "symbol": "\u0584" }, 1413: { "value": "0585", "name": "ARMENIAN SMALL LETTER OH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0555", "lowercase_mapping": "", "titlecase_mapping": "0555", "symbol": "\u0585" }, 1414: { "value": "0586", "name": "ARMENIAN SMALL LETTER FEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0556", "lowercase_mapping": "", "titlecase_mapping": "0556", "symbol": "\u0586" }, 1415: { "value": "0587", "name": "ARMENIAN SMALL LIGATURE ECH YIWN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0565 0582", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0587" }, 5112: { "value": "13F8", "name": "CHEROKEE SMALL LETTER YE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F0", "lowercase_mapping": "", "titlecase_mapping": "13F0", "symbol": "\u13F8" }, 5113: { "value": "13F9", "name": "CHEROKEE SMALL LETTER YI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F1", "lowercase_mapping": "", "titlecase_mapping": "13F1", "symbol": "\u13F9" }, 5114: { "value": "13FA", "name": "CHEROKEE SMALL LETTER YO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F2", "lowercase_mapping": "", "titlecase_mapping": "13F2", "symbol": "\u13FA" }, 5115: { "value": "13FB", "name": "CHEROKEE SMALL LETTER YU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F3", "lowercase_mapping": "", "titlecase_mapping": "13F3", "symbol": "\u13FB" }, 5116: { "value": "13FC", "name": "CHEROKEE SMALL LETTER YV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F4", "lowercase_mapping": "", "titlecase_mapping": "13F4", "symbol": "\u13FC" }, 5117: { "value": "13FD", "name": "CHEROKEE SMALL LETTER MV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F5", "lowercase_mapping": "", "titlecase_mapping": "13F5", "symbol": "\u13FD" }, 7296: { "value": "1C80", "name": "CYRILLIC SMALL LETTER ROUNDED VE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0412", "lowercase_mapping": "", "titlecase_mapping": "0412", "symbol": "\u1C80" }, 7297: { "value": "1C81", "name": "CYRILLIC SMALL LETTER LONG-LEGGED DE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0414", "lowercase_mapping": "", "titlecase_mapping": "0414", "symbol": "\u1C81" }, 7298: { "value": "1C82", "name": "CYRILLIC SMALL LETTER NARROW O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041E", "lowercase_mapping": "", "titlecase_mapping": "041E", "symbol": "\u1C82" }, 7299: { "value": "1C83", "name": "CYRILLIC SMALL LETTER WIDE ES", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0421", "lowercase_mapping": "", "titlecase_mapping": "0421", "symbol": "\u1C83" }, 7300: { "value": "1C84", "name": "CYRILLIC SMALL LETTER TALL TE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0422", "lowercase_mapping": "", "titlecase_mapping": "0422", "symbol": "\u1C84" }, 7301: { "value": "1C85", "name": "CYRILLIC SMALL LETTER THREE-LEGGED TE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0422", "lowercase_mapping": "", "titlecase_mapping": "0422", "symbol": "\u1C85" }, 7302: { "value": "1C86", "name": "CYRILLIC SMALL LETTER TALL HARD SIGN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "042A", "lowercase_mapping": "", "titlecase_mapping": "042A", "symbol": "\u1C86" }, 7303: { "value": "1C87", "name": "CYRILLIC SMALL LETTER TALL YAT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0462", "lowercase_mapping": "", "titlecase_mapping": "0462", "symbol": "\u1C87" }, 7304: { "value": "1C88", "name": "CYRILLIC SMALL LETTER UNBLENDED UK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A64A", "lowercase_mapping": "", "titlecase_mapping": "A64A", "symbol": "\u1C88" }, 7424: { "value": "1D00", "name": "LATIN LETTER SMALL CAPITAL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D00" }, 7425: { "value": "1D01", "name": "LATIN LETTER SMALL CAPITAL AE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D01" }, 7426: { "value": "1D02", "name": "LATIN SMALL LETTER TURNED AE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D02" }, 7427: { "value": "1D03", "name": "LATIN LETTER SMALL CAPITAL BARRED B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D03" }, 7428: { "value": "1D04", "name": "LATIN LETTER SMALL CAPITAL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D04" }, 7429: { "value": "1D05", "name": "LATIN LETTER SMALL CAPITAL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D05" }, 7430: { "value": "1D06", "name": "LATIN LETTER SMALL CAPITAL ETH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D06" }, 7431: { "value": "1D07", "name": "LATIN LETTER SMALL CAPITAL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D07" }, 7432: { "value": "1D08", "name": "LATIN SMALL LETTER TURNED OPEN E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D08" }, 7433: { "value": "1D09", "name": "LATIN SMALL LETTER TURNED I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D09" }, 7434: { "value": "1D0A", "name": "LATIN LETTER SMALL CAPITAL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0A" }, 7435: { "value": "1D0B", "name": "LATIN LETTER SMALL CAPITAL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0B" }, 7436: { "value": "1D0C", "name": "LATIN LETTER SMALL CAPITAL L WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0C" }, 7437: { "value": "1D0D", "name": "LATIN LETTER SMALL CAPITAL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0D" }, 7438: { "value": "1D0E", "name": "LATIN LETTER SMALL CAPITAL REVERSED N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0E" }, 7439: { "value": "1D0F", "name": "LATIN LETTER SMALL CAPITAL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0F" }, 7440: { "value": "1D10", "name": "LATIN LETTER SMALL CAPITAL OPEN O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D10" }, 7441: { "value": "1D11", "name": "LATIN SMALL LETTER SIDEWAYS O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D11" }, 7442: { "value": "1D12", "name": "LATIN SMALL LETTER SIDEWAYS OPEN O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D12" }, 7443: { "value": "1D13", "name": "LATIN SMALL LETTER SIDEWAYS O WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D13" }, 7444: { "value": "1D14", "name": "LATIN SMALL LETTER TURNED OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D14" }, 7445: { "value": "1D15", "name": "LATIN LETTER SMALL CAPITAL OU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D15" }, 7446: { "value": "1D16", "name": "LATIN SMALL LETTER TOP HALF O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D16" }, 7447: { "value": "1D17", "name": "LATIN SMALL LETTER BOTTOM HALF O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D17" }, 7448: { "value": "1D18", "name": "LATIN LETTER SMALL CAPITAL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D18" }, 7449: { "value": "1D19", "name": "LATIN LETTER SMALL CAPITAL REVERSED R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D19" }, 7450: { "value": "1D1A", "name": "LATIN LETTER SMALL CAPITAL TURNED R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1A" }, 7451: { "value": "1D1B", "name": "LATIN LETTER SMALL CAPITAL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1B" }, 7452: { "value": "1D1C", "name": "LATIN LETTER SMALL CAPITAL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1C" }, 7453: { "value": "1D1D", "name": "LATIN SMALL LETTER SIDEWAYS U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1D" }, 7454: { "value": "1D1E", "name": "LATIN SMALL LETTER SIDEWAYS DIAERESIZED U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1E" }, 7455: { "value": "1D1F", "name": "LATIN SMALL LETTER SIDEWAYS TURNED M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1F" }, 7456: { "value": "1D20", "name": "LATIN LETTER SMALL CAPITAL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D20" }, 7457: { "value": "1D21", "name": "LATIN LETTER SMALL CAPITAL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D21" }, 7458: { "value": "1D22", "name": "LATIN LETTER SMALL CAPITAL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D22" }, 7459: { "value": "1D23", "name": "LATIN LETTER SMALL CAPITAL EZH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D23" }, 7460: { "value": "1D24", "name": "LATIN LETTER VOICED LARYNGEAL SPIRANT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D24" }, 7461: { "value": "1D25", "name": "LATIN LETTER AIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D25" }, 7462: { "value": "1D26", "name": "GREEK LETTER SMALL CAPITAL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D26" }, 7463: { "value": "1D27", "name": "GREEK LETTER SMALL CAPITAL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D27" }, 7464: { "value": "1D28", "name": "GREEK LETTER SMALL CAPITAL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D28" }, 7465: { "value": "1D29", "name": "GREEK LETTER SMALL CAPITAL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D29" }, 7466: { "value": "1D2A", "name": "GREEK LETTER SMALL CAPITAL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D2A" }, 7467: { "value": "1D2B", "name": "CYRILLIC LETTER SMALL CAPITAL EL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D2B" }, 7531: { "value": "1D6B", "name": "LATIN SMALL LETTER UE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D6B" }, 7532: { "value": "1D6C", "name": "LATIN SMALL LETTER B WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D6C" }, 7533: { "value": "1D6D", "name": "LATIN SMALL LETTER D WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D6D" }, 7534: { "value": "1D6E", "name": "LATIN SMALL LETTER F WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D6E" }, 7535: { "value": "1D6F", "name": "LATIN SMALL LETTER M WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D6F" }, 7536: { "value": "1D70", "name": "LATIN SMALL LETTER N WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D70" }, 7537: { "value": "1D71", "name": "LATIN SMALL LETTER P WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D71" }, 7538: { "value": "1D72", "name": "LATIN SMALL LETTER R WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D72" }, 7539: { "value": "1D73", "name": "LATIN SMALL LETTER R WITH FISHHOOK AND MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D73" }, 7540: { "value": "1D74", "name": "LATIN SMALL LETTER S WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D74" }, 7541: { "value": "1D75", "name": "LATIN SMALL LETTER T WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D75" }, 7542: { "value": "1D76", "name": "LATIN SMALL LETTER Z WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D76" }, 7543: { "value": "1D77", "name": "LATIN SMALL LETTER TURNED G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D77" }, 7545: { "value": "1D79", "name": "LATIN SMALL LETTER INSULAR G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A77D", "lowercase_mapping": "", "titlecase_mapping": "A77D", "symbol": "\u1D79" }, 7546: { "value": "1D7A", "name": "LATIN SMALL LETTER TH WITH STRIKETHROUGH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D7A" }, 7547: { "value": "1D7B", "name": "LATIN SMALL CAPITAL LETTER I WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D7B" }, 7548: { "value": "1D7C", "name": "LATIN SMALL LETTER IOTA WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D7C" }, 7549: { "value": "1D7D", "name": "LATIN SMALL LETTER P WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C63", "lowercase_mapping": "", "titlecase_mapping": "2C63", "symbol": "\u1D7D" }, 7550: { "value": "1D7E", "name": "LATIN SMALL CAPITAL LETTER U WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D7E" }, 7551: { "value": "1D7F", "name": "LATIN SMALL LETTER UPSILON WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D7F" }, 7552: { "value": "1D80", "name": "LATIN SMALL LETTER B WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D80" }, 7553: { "value": "1D81", "name": "LATIN SMALL LETTER D WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D81" }, 7554: { "value": "1D82", "name": "LATIN SMALL LETTER F WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D82" }, 7555: { "value": "1D83", "name": "LATIN SMALL LETTER G WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D83" }, 7556: { "value": "1D84", "name": "LATIN SMALL LETTER K WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D84" }, 7557: { "value": "1D85", "name": "LATIN SMALL LETTER L WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D85" }, 7558: { "value": "1D86", "name": "LATIN SMALL LETTER M WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D86" }, 7559: { "value": "1D87", "name": "LATIN SMALL LETTER N WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D87" }, 7560: { "value": "1D88", "name": "LATIN SMALL LETTER P WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D88" }, 7561: { "value": "1D89", "name": "LATIN SMALL LETTER R WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D89" }, 7562: { "value": "1D8A", "name": "LATIN SMALL LETTER S WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8A" }, 7563: { "value": "1D8B", "name": "LATIN SMALL LETTER ESH WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8B" }, 7564: { "value": "1D8C", "name": "LATIN SMALL LETTER V WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8C" }, 7565: { "value": "1D8D", "name": "LATIN SMALL LETTER X WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8D" }, 7566: { "value": "1D8E", "name": "LATIN SMALL LETTER Z WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8E" }, 7567: { "value": "1D8F", "name": "LATIN SMALL LETTER A WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8F" }, 7568: { "value": "1D90", "name": "LATIN SMALL LETTER ALPHA WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D90" }, 7569: { "value": "1D91", "name": "LATIN SMALL LETTER D WITH HOOK AND TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D91" }, 7570: { "value": "1D92", "name": "LATIN SMALL LETTER E WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D92" }, 7571: { "value": "1D93", "name": "LATIN SMALL LETTER OPEN E WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D93" }, 7572: { "value": "1D94", "name": "LATIN SMALL LETTER REVERSED OPEN E WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D94" }, 7573: { "value": "1D95", "name": "LATIN SMALL LETTER SCHWA WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D95" }, 7574: { "value": "1D96", "name": "LATIN SMALL LETTER I WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D96" }, 7575: { "value": "1D97", "name": "LATIN SMALL LETTER OPEN O WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D97" }, 7576: { "value": "1D98", "name": "LATIN SMALL LETTER ESH WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D98" }, 7577: { "value": "1D99", "name": "LATIN SMALL LETTER U WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D99" }, 7578: { "value": "1D9A", "name": "LATIN SMALL LETTER EZH WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D9A" }, 7681: { "value": "1E01", "name": "LATIN SMALL LETTER A WITH RING BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0325", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E00", "lowercase_mapping": "", "titlecase_mapping": "1E00", "symbol": "\u1E01" }, 7683: { "value": "1E03", "name": "LATIN SMALL LETTER B WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0062 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E02", "lowercase_mapping": "", "titlecase_mapping": "1E02", "symbol": "\u1E03" }, 7685: { "value": "1E05", "name": "LATIN SMALL LETTER B WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0062 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E04", "lowercase_mapping": "", "titlecase_mapping": "1E04", "symbol": "\u1E05" }, 7687: { "value": "1E07", "name": "LATIN SMALL LETTER B WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0062 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E06", "lowercase_mapping": "", "titlecase_mapping": "1E06", "symbol": "\u1E07" }, 7689: { "value": "1E09", "name": "LATIN SMALL LETTER C WITH CEDILLA AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E7 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E08", "lowercase_mapping": "", "titlecase_mapping": "1E08", "symbol": "\u1E09" }, 7691: { "value": "1E0B", "name": "LATIN SMALL LETTER D WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E0A", "lowercase_mapping": "", "titlecase_mapping": "1E0A", "symbol": "\u1E0B" }, 7693: { "value": "1E0D", "name": "LATIN SMALL LETTER D WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E0C", "lowercase_mapping": "", "titlecase_mapping": "1E0C", "symbol": "\u1E0D" }, 7695: { "value": "1E0F", "name": "LATIN SMALL LETTER D WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E0E", "lowercase_mapping": "", "titlecase_mapping": "1E0E", "symbol": "\u1E0F" }, 7697: { "value": "1E11", "name": "LATIN SMALL LETTER D WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E10", "lowercase_mapping": "", "titlecase_mapping": "1E10", "symbol": "\u1E11" }, 7699: { "value": "1E13", "name": "LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E12", "lowercase_mapping": "", "titlecase_mapping": "1E12", "symbol": "\u1E13" }, 7701: { "value": "1E15", "name": "LATIN SMALL LETTER E WITH MACRON AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0113 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E14", "lowercase_mapping": "", "titlecase_mapping": "1E14", "symbol": "\u1E15" }, 7703: { "value": "1E17", "name": "LATIN SMALL LETTER E WITH MACRON AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0113 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E16", "lowercase_mapping": "", "titlecase_mapping": "1E16", "symbol": "\u1E17" }, 7705: { "value": "1E19", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E18", "lowercase_mapping": "", "titlecase_mapping": "1E18", "symbol": "\u1E19" }, 7707: { "value": "1E1B", "name": "LATIN SMALL LETTER E WITH TILDE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0330", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E1A", "lowercase_mapping": "", "titlecase_mapping": "1E1A", "symbol": "\u1E1B" }, 7709: { "value": "1E1D", "name": "LATIN SMALL LETTER E WITH CEDILLA AND BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0229 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E1C", "lowercase_mapping": "", "titlecase_mapping": "1E1C", "symbol": "\u1E1D" }, 7711: { "value": "1E1F", "name": "LATIN SMALL LETTER F WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0066 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E1E", "lowercase_mapping": "", "titlecase_mapping": "1E1E", "symbol": "\u1E1F" }, 7713: { "value": "1E21", "name": "LATIN SMALL LETTER G WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E20", "lowercase_mapping": "", "titlecase_mapping": "1E20", "symbol": "\u1E21" }, 7715: { "value": "1E23", "name": "LATIN SMALL LETTER H WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E22", "lowercase_mapping": "", "titlecase_mapping": "1E22", "symbol": "\u1E23" }, 7717: { "value": "1E25", "name": "LATIN SMALL LETTER H WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E24", "lowercase_mapping": "", "titlecase_mapping": "1E24", "symbol": "\u1E25" }, 7719: { "value": "1E27", "name": "LATIN SMALL LETTER H WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E26", "lowercase_mapping": "", "titlecase_mapping": "1E26", "symbol": "\u1E27" }, 7721: { "value": "1E29", "name": "LATIN SMALL LETTER H WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E28", "lowercase_mapping": "", "titlecase_mapping": "1E28", "symbol": "\u1E29" }, 7723: { "value": "1E2B", "name": "LATIN SMALL LETTER H WITH BREVE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 032E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E2A", "lowercase_mapping": "", "titlecase_mapping": "1E2A", "symbol": "\u1E2B" }, 7725: { "value": "1E2D", "name": "LATIN SMALL LETTER I WITH TILDE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0330", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E2C", "lowercase_mapping": "", "titlecase_mapping": "1E2C", "symbol": "\u1E2D" }, 7727: { "value": "1E2F", "name": "LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00EF 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E2E", "lowercase_mapping": "", "titlecase_mapping": "1E2E", "symbol": "\u1E2F" }, 7729: { "value": "1E31", "name": "LATIN SMALL LETTER K WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006B 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E30", "lowercase_mapping": "", "titlecase_mapping": "1E30", "symbol": "\u1E31" }, 7731: { "value": "1E33", "name": "LATIN SMALL LETTER K WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006B 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E32", "lowercase_mapping": "", "titlecase_mapping": "1E32", "symbol": "\u1E33" }, 7733: { "value": "1E35", "name": "LATIN SMALL LETTER K WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006B 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E34", "lowercase_mapping": "", "titlecase_mapping": "1E34", "symbol": "\u1E35" }, 7735: { "value": "1E37", "name": "LATIN SMALL LETTER L WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E36", "lowercase_mapping": "", "titlecase_mapping": "1E36", "symbol": "\u1E37" }, 7737: { "value": "1E39", "name": "LATIN SMALL LETTER L WITH DOT BELOW AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1E37 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E38", "lowercase_mapping": "", "titlecase_mapping": "1E38", "symbol": "\u1E39" }, 7739: { "value": "1E3B", "name": "LATIN SMALL LETTER L WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E3A", "lowercase_mapping": "", "titlecase_mapping": "1E3A", "symbol": "\u1E3B" }, 7741: { "value": "1E3D", "name": "LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E3C", "lowercase_mapping": "", "titlecase_mapping": "1E3C", "symbol": "\u1E3D" }, 7743: { "value": "1E3F", "name": "LATIN SMALL LETTER M WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006D 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E3E", "lowercase_mapping": "", "titlecase_mapping": "1E3E", "symbol": "\u1E3F" }, 7745: { "value": "1E41", "name": "LATIN SMALL LETTER M WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006D 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E40", "lowercase_mapping": "", "titlecase_mapping": "1E40", "symbol": "\u1E41" }, 7747: { "value": "1E43", "name": "LATIN SMALL LETTER M WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006D 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E42", "lowercase_mapping": "", "titlecase_mapping": "1E42", "symbol": "\u1E43" }, 7749: { "value": "1E45", "name": "LATIN SMALL LETTER N WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E44", "lowercase_mapping": "", "titlecase_mapping": "1E44", "symbol": "\u1E45" }, 7751: { "value": "1E47", "name": "LATIN SMALL LETTER N WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E46", "lowercase_mapping": "", "titlecase_mapping": "1E46", "symbol": "\u1E47" }, 7753: { "value": "1E49", "name": "LATIN SMALL LETTER N WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E48", "lowercase_mapping": "", "titlecase_mapping": "1E48", "symbol": "\u1E49" }, 7755: { "value": "1E4B", "name": "LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E4A", "lowercase_mapping": "", "titlecase_mapping": "1E4A", "symbol": "\u1E4B" }, 7757: { "value": "1E4D", "name": "LATIN SMALL LETTER O WITH TILDE AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F5 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E4C", "lowercase_mapping": "", "titlecase_mapping": "1E4C", "symbol": "\u1E4D" }, 7759: { "value": "1E4F", "name": "LATIN SMALL LETTER O WITH TILDE AND DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F5 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E4E", "lowercase_mapping": "", "titlecase_mapping": "1E4E", "symbol": "\u1E4F" }, 7761: { "value": "1E51", "name": "LATIN SMALL LETTER O WITH MACRON AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "014D 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E50", "lowercase_mapping": "", "titlecase_mapping": "1E50", "symbol": "\u1E51" }, 7763: { "value": "1E53", "name": "LATIN SMALL LETTER O WITH MACRON AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "014D 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E52", "lowercase_mapping": "", "titlecase_mapping": "1E52", "symbol": "\u1E53" }, 7765: { "value": "1E55", "name": "LATIN SMALL LETTER P WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0070 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E54", "lowercase_mapping": "", "titlecase_mapping": "1E54", "symbol": "\u1E55" }, 7767: { "value": "1E57", "name": "LATIN SMALL LETTER P WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0070 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E56", "lowercase_mapping": "", "titlecase_mapping": "1E56", "symbol": "\u1E57" }, 7769: { "value": "1E59", "name": "LATIN SMALL LETTER R WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E58", "lowercase_mapping": "", "titlecase_mapping": "1E58", "symbol": "\u1E59" }, 7771: { "value": "1E5B", "name": "LATIN SMALL LETTER R WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E5A", "lowercase_mapping": "", "titlecase_mapping": "1E5A", "symbol": "\u1E5B" }, 7773: { "value": "1E5D", "name": "LATIN SMALL LETTER R WITH DOT BELOW AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1E5B 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E5C", "lowercase_mapping": "", "titlecase_mapping": "1E5C", "symbol": "\u1E5D" }, 7775: { "value": "1E5F", "name": "LATIN SMALL LETTER R WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E5E", "lowercase_mapping": "", "titlecase_mapping": "1E5E", "symbol": "\u1E5F" }, 7777: { "value": "1E61", "name": "LATIN SMALL LETTER S WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E60", "lowercase_mapping": "", "titlecase_mapping": "1E60", "symbol": "\u1E61" }, 7779: { "value": "1E63", "name": "LATIN SMALL LETTER S WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E62", "lowercase_mapping": "", "titlecase_mapping": "1E62", "symbol": "\u1E63" }, 7781: { "value": "1E65", "name": "LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "015B 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E64", "lowercase_mapping": "", "titlecase_mapping": "1E64", "symbol": "\u1E65" }, 7783: { "value": "1E67", "name": "LATIN SMALL LETTER S WITH CARON AND DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0161 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E66", "lowercase_mapping": "", "titlecase_mapping": "1E66", "symbol": "\u1E67" }, 7785: { "value": "1E69", "name": "LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1E63 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E68", "lowercase_mapping": "", "titlecase_mapping": "1E68", "symbol": "\u1E69" }, 7787: { "value": "1E6B", "name": "LATIN SMALL LETTER T WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E6A", "lowercase_mapping": "", "titlecase_mapping": "1E6A", "symbol": "\u1E6B" }, 7789: { "value": "1E6D", "name": "LATIN SMALL LETTER T WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E6C", "lowercase_mapping": "", "titlecase_mapping": "1E6C", "symbol": "\u1E6D" }, 7791: { "value": "1E6F", "name": "LATIN SMALL LETTER T WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E6E", "lowercase_mapping": "", "titlecase_mapping": "1E6E", "symbol": "\u1E6F" }, 7793: { "value": "1E71", "name": "LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E70", "lowercase_mapping": "", "titlecase_mapping": "1E70", "symbol": "\u1E71" }, 7795: { "value": "1E73", "name": "LATIN SMALL LETTER U WITH DIAERESIS BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0324", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E72", "lowercase_mapping": "", "titlecase_mapping": "1E72", "symbol": "\u1E73" }, 7797: { "value": "1E75", "name": "LATIN SMALL LETTER U WITH TILDE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0330", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E74", "lowercase_mapping": "", "titlecase_mapping": "1E74", "symbol": "\u1E75" }, 7799: { "value": "1E77", "name": "LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E76", "lowercase_mapping": "", "titlecase_mapping": "1E76", "symbol": "\u1E77" }, 7801: { "value": "1E79", "name": "LATIN SMALL LETTER U WITH TILDE AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0169 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E78", "lowercase_mapping": "", "titlecase_mapping": "1E78", "symbol": "\u1E79" }, 7803: { "value": "1E7B", "name": "LATIN SMALL LETTER U WITH MACRON AND DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "016B 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E7A", "lowercase_mapping": "", "titlecase_mapping": "1E7A", "symbol": "\u1E7B" }, 7805: { "value": "1E7D", "name": "LATIN SMALL LETTER V WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0076 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E7C", "lowercase_mapping": "", "titlecase_mapping": "1E7C", "symbol": "\u1E7D" }, 7807: { "value": "1E7F", "name": "LATIN SMALL LETTER V WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0076 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E7E", "lowercase_mapping": "", "titlecase_mapping": "1E7E", "symbol": "\u1E7F" }, 7809: { "value": "1E81", "name": "LATIN SMALL LETTER W WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E80", "lowercase_mapping": "", "titlecase_mapping": "1E80", "symbol": "\u1E81" }, 7811: { "value": "1E83", "name": "LATIN SMALL LETTER W WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E82", "lowercase_mapping": "", "titlecase_mapping": "1E82", "symbol": "\u1E83" }, 7813: { "value": "1E85", "name": "LATIN SMALL LETTER W WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E84", "lowercase_mapping": "", "titlecase_mapping": "1E84", "symbol": "\u1E85" }, 7815: { "value": "1E87", "name": "LATIN SMALL LETTER W WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E86", "lowercase_mapping": "", "titlecase_mapping": "1E86", "symbol": "\u1E87" }, 7817: { "value": "1E89", "name": "LATIN SMALL LETTER W WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E88", "lowercase_mapping": "", "titlecase_mapping": "1E88", "symbol": "\u1E89" }, 7819: { "value": "1E8B", "name": "LATIN SMALL LETTER X WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0078 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E8A", "lowercase_mapping": "", "titlecase_mapping": "1E8A", "symbol": "\u1E8B" }, 7821: { "value": "1E8D", "name": "LATIN SMALL LETTER X WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0078 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E8C", "lowercase_mapping": "", "titlecase_mapping": "1E8C", "symbol": "\u1E8D" }, 7823: { "value": "1E8F", "name": "LATIN SMALL LETTER Y WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E8E", "lowercase_mapping": "", "titlecase_mapping": "1E8E", "symbol": "\u1E8F" }, 7825: { "value": "1E91", "name": "LATIN SMALL LETTER Z WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90", "lowercase_mapping": "", "titlecase_mapping": "1E90", "symbol": "\u1E91" }, 7827: { "value": "1E93", "name": "LATIN SMALL LETTER Z WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E92", "lowercase_mapping": "", "titlecase_mapping": "1E92", "symbol": "\u1E93" }, 7829: { "value": "1E95", "name": "LATIN SMALL LETTER Z WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E94", "lowercase_mapping": "", "titlecase_mapping": "1E94", "symbol": "\u1E95" }, 7830: { "value": "1E96", "name": "LATIN SMALL LETTER H WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E96" }, 7831: { "value": "1E97", "name": "LATIN SMALL LETTER T WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E97" }, 7832: { "value": "1E98", "name": "LATIN SMALL LETTER W WITH RING ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 030A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E98" }, 7833: { "value": "1E99", "name": "LATIN SMALL LETTER Y WITH RING ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 030A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E99" }, 7834: { "value": "1E9A", "name": "LATIN SMALL LETTER A WITH RIGHT HALF RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061 02BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E9A" }, 7835: { "value": "1E9B", "name": "LATIN SMALL LETTER LONG S WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "017F 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E60", "lowercase_mapping": "", "titlecase_mapping": "1E60", "symbol": "\u1E9B" }, 7836: { "value": "1E9C", "name": "LATIN SMALL LETTER LONG S WITH DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E9C" }, 7837: { "value": "1E9D", "name": "LATIN SMALL LETTER LONG S WITH HIGH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E9D" }, 7839: { "value": "1E9F", "name": "LATIN SMALL LETTER DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E9F" }, 7841: { "value": "1EA1", "name": "LATIN SMALL LETTER A WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EA0", "lowercase_mapping": "", "titlecase_mapping": "1EA0", "symbol": "\u1EA1" }, 7843: { "value": "1EA3", "name": "LATIN SMALL LETTER A WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EA2", "lowercase_mapping": "", "titlecase_mapping": "1EA2", "symbol": "\u1EA3" }, 7845: { "value": "1EA5", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E2 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EA4", "lowercase_mapping": "", "titlecase_mapping": "1EA4", "symbol": "\u1EA5" }, 7847: { "value": "1EA7", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E2 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EA6", "lowercase_mapping": "", "titlecase_mapping": "1EA6", "symbol": "\u1EA7" }, 7849: { "value": "1EA9", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E2 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EA8", "lowercase_mapping": "", "titlecase_mapping": "1EA8", "symbol": "\u1EA9" }, 7851: { "value": "1EAB", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E2 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EAA", "lowercase_mapping": "", "titlecase_mapping": "1EAA", "symbol": "\u1EAB" }, 7853: { "value": "1EAD", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1EA1 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EAC", "lowercase_mapping": "", "titlecase_mapping": "1EAC", "symbol": "\u1EAD" }, 7855: { "value": "1EAF", "name": "LATIN SMALL LETTER A WITH BREVE AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0103 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EAE", "lowercase_mapping": "", "titlecase_mapping": "1EAE", "symbol": "\u1EAF" }, 7857: { "value": "1EB1", "name": "LATIN SMALL LETTER A WITH BREVE AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0103 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EB0", "lowercase_mapping": "", "titlecase_mapping": "1EB0", "symbol": "\u1EB1" }, 7859: { "value": "1EB3", "name": "LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0103 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EB2", "lowercase_mapping": "", "titlecase_mapping": "1EB2", "symbol": "\u1EB3" }, 7861: { "value": "1EB5", "name": "LATIN SMALL LETTER A WITH BREVE AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0103 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EB4", "lowercase_mapping": "", "titlecase_mapping": "1EB4", "symbol": "\u1EB5" }, 7863: { "value": "1EB7", "name": "LATIN SMALL LETTER A WITH BREVE AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1EA1 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EB6", "lowercase_mapping": "", "titlecase_mapping": "1EB6", "symbol": "\u1EB7" }, 7865: { "value": "1EB9", "name": "LATIN SMALL LETTER E WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EB8", "lowercase_mapping": "", "titlecase_mapping": "1EB8", "symbol": "\u1EB9" }, 7867: { "value": "1EBB", "name": "LATIN SMALL LETTER E WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EBA", "lowercase_mapping": "", "titlecase_mapping": "1EBA", "symbol": "\u1EBB" }, 7869: { "value": "1EBD", "name": "LATIN SMALL LETTER E WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EBC", "lowercase_mapping": "", "titlecase_mapping": "1EBC", "symbol": "\u1EBD" }, 7871: { "value": "1EBF", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00EA 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EBE", "lowercase_mapping": "", "titlecase_mapping": "1EBE", "symbol": "\u1EBF" }, 7873: { "value": "1EC1", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00EA 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EC0", "lowercase_mapping": "", "titlecase_mapping": "1EC0", "symbol": "\u1EC1" }, 7875: { "value": "1EC3", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00EA 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EC2", "lowercase_mapping": "", "titlecase_mapping": "1EC2", "symbol": "\u1EC3" }, 7877: { "value": "1EC5", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00EA 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EC4", "lowercase_mapping": "", "titlecase_mapping": "1EC4", "symbol": "\u1EC5" }, 7879: { "value": "1EC7", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1EB9 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EC6", "lowercase_mapping": "", "titlecase_mapping": "1EC6", "symbol": "\u1EC7" }, 7881: { "value": "1EC9", "name": "LATIN SMALL LETTER I WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EC8", "lowercase_mapping": "", "titlecase_mapping": "1EC8", "symbol": "\u1EC9" }, 7883: { "value": "1ECB", "name": "LATIN SMALL LETTER I WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ECA", "lowercase_mapping": "", "titlecase_mapping": "1ECA", "symbol": "\u1ECB" }, 7885: { "value": "1ECD", "name": "LATIN SMALL LETTER O WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ECC", "lowercase_mapping": "", "titlecase_mapping": "1ECC", "symbol": "\u1ECD" }, 7887: { "value": "1ECF", "name": "LATIN SMALL LETTER O WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ECE", "lowercase_mapping": "", "titlecase_mapping": "1ECE", "symbol": "\u1ECF" }, 7889: { "value": "1ED1", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F4 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ED0", "lowercase_mapping": "", "titlecase_mapping": "1ED0", "symbol": "\u1ED1" }, 7891: { "value": "1ED3", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F4 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ED2", "lowercase_mapping": "", "titlecase_mapping": "1ED2", "symbol": "\u1ED3" }, 7893: { "value": "1ED5", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F4 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ED4", "lowercase_mapping": "", "titlecase_mapping": "1ED4", "symbol": "\u1ED5" }, 7895: { "value": "1ED7", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F4 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ED6", "lowercase_mapping": "", "titlecase_mapping": "1ED6", "symbol": "\u1ED7" }, 7897: { "value": "1ED9", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1ECD 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ED8", "lowercase_mapping": "", "titlecase_mapping": "1ED8", "symbol": "\u1ED9" }, 7899: { "value": "1EDB", "name": "LATIN SMALL LETTER O WITH HORN AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01A1 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EDA", "lowercase_mapping": "", "titlecase_mapping": "1EDA", "symbol": "\u1EDB" }, 7901: { "value": "1EDD", "name": "LATIN SMALL LETTER O WITH HORN AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01A1 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EDC", "lowercase_mapping": "", "titlecase_mapping": "1EDC", "symbol": "\u1EDD" }, 7903: { "value": "1EDF", "name": "LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01A1 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EDE", "lowercase_mapping": "", "titlecase_mapping": "1EDE", "symbol": "\u1EDF" }, 7905: { "value": "1EE1", "name": "LATIN SMALL LETTER O WITH HORN AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01A1 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EE0", "lowercase_mapping": "", "titlecase_mapping": "1EE0", "symbol": "\u1EE1" }, 7907: { "value": "1EE3", "name": "LATIN SMALL LETTER O WITH HORN AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01A1 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EE2", "lowercase_mapping": "", "titlecase_mapping": "1EE2", "symbol": "\u1EE3" }, 7909: { "value": "1EE5", "name": "LATIN SMALL LETTER U WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EE4", "lowercase_mapping": "", "titlecase_mapping": "1EE4", "symbol": "\u1EE5" }, 7911: { "value": "1EE7", "name": "LATIN SMALL LETTER U WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EE6", "lowercase_mapping": "", "titlecase_mapping": "1EE6", "symbol": "\u1EE7" }, 7913: { "value": "1EE9", "name": "LATIN SMALL LETTER U WITH HORN AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01B0 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EE8", "lowercase_mapping": "", "titlecase_mapping": "1EE8", "symbol": "\u1EE9" }, 7915: { "value": "1EEB", "name": "LATIN SMALL LETTER U WITH HORN AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01B0 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EEA", "lowercase_mapping": "", "titlecase_mapping": "1EEA", "symbol": "\u1EEB" }, 7917: { "value": "1EED", "name": "LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01B0 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EEC", "lowercase_mapping": "", "titlecase_mapping": "1EEC", "symbol": "\u1EED" }, 7919: { "value": "1EEF", "name": "LATIN SMALL LETTER U WITH HORN AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01B0 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EEE", "lowercase_mapping": "", "titlecase_mapping": "1EEE", "symbol": "\u1EEF" }, 7921: { "value": "1EF1", "name": "LATIN SMALL LETTER U WITH HORN AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01B0 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EF0", "lowercase_mapping": "", "titlecase_mapping": "1EF0", "symbol": "\u1EF1" }, 7923: { "value": "1EF3", "name": "LATIN SMALL LETTER Y WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EF2", "lowercase_mapping": "", "titlecase_mapping": "1EF2", "symbol": "\u1EF3" }, 7925: { "value": "1EF5", "name": "LATIN SMALL LETTER Y WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EF4", "lowercase_mapping": "", "titlecase_mapping": "1EF4", "symbol": "\u1EF5" }, 7927: { "value": "1EF7", "name": "LATIN SMALL LETTER Y WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EF6", "lowercase_mapping": "", "titlecase_mapping": "1EF6", "symbol": "\u1EF7" }, 7929: { "value": "1EF9", "name": "LATIN SMALL LETTER Y WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EF8", "lowercase_mapping": "", "titlecase_mapping": "1EF8", "symbol": "\u1EF9" }, 7931: { "value": "1EFB", "name": "LATIN SMALL LETTER MIDDLE-WELSH LL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EFA", "lowercase_mapping": "", "titlecase_mapping": "1EFA", "symbol": "\u1EFB" }, 7933: { "value": "1EFD", "name": "LATIN SMALL LETTER MIDDLE-WELSH V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EFC", "lowercase_mapping": "", "titlecase_mapping": "1EFC", "symbol": "\u1EFD" }, 7935: { "value": "1EFF", "name": "LATIN SMALL LETTER Y WITH LOOP", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EFE", "lowercase_mapping": "", "titlecase_mapping": "1EFE", "symbol": "\u1EFF" }, 7936: { "value": "1F00", "name": "GREEK SMALL LETTER ALPHA WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F08", "lowercase_mapping": "", "titlecase_mapping": "1F08", "symbol": "\u1F00" }, 7937: { "value": "1F01", "name": "GREEK SMALL LETTER ALPHA WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F09", "lowercase_mapping": "", "titlecase_mapping": "1F09", "symbol": "\u1F01" }, 7938: { "value": "1F02", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F00 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0A", "lowercase_mapping": "", "titlecase_mapping": "1F0A", "symbol": "\u1F02" }, 7939: { "value": "1F03", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F01 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0B", "lowercase_mapping": "", "titlecase_mapping": "1F0B", "symbol": "\u1F03" }, 7940: { "value": "1F04", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F00 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0C", "lowercase_mapping": "", "titlecase_mapping": "1F0C", "symbol": "\u1F04" }, 7941: { "value": "1F05", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F01 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0D", "lowercase_mapping": "", "titlecase_mapping": "1F0D", "symbol": "\u1F05" }, 7942: { "value": "1F06", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F00 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0E", "lowercase_mapping": "", "titlecase_mapping": "1F0E", "symbol": "\u1F06" }, 7943: { "value": "1F07", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F01 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0F", "lowercase_mapping": "", "titlecase_mapping": "1F0F", "symbol": "\u1F07" }, 7952: { "value": "1F10", "name": "GREEK SMALL LETTER EPSILON WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B5 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F18", "lowercase_mapping": "", "titlecase_mapping": "1F18", "symbol": "\u1F10" }, 7953: { "value": "1F11", "name": "GREEK SMALL LETTER EPSILON WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B5 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F19", "lowercase_mapping": "", "titlecase_mapping": "1F19", "symbol": "\u1F11" }, 7954: { "value": "1F12", "name": "GREEK SMALL LETTER EPSILON WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F10 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F1A", "lowercase_mapping": "", "titlecase_mapping": "1F1A", "symbol": "\u1F12" }, 7955: { "value": "1F13", "name": "GREEK SMALL LETTER EPSILON WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F11 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F1B", "lowercase_mapping": "", "titlecase_mapping": "1F1B", "symbol": "\u1F13" }, 7956: { "value": "1F14", "name": "GREEK SMALL LETTER EPSILON WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F10 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F1C", "lowercase_mapping": "", "titlecase_mapping": "1F1C", "symbol": "\u1F14" }, 7957: { "value": "1F15", "name": "GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F11 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F1D", "lowercase_mapping": "", "titlecase_mapping": "1F1D", "symbol": "\u1F15" }, 7968: { "value": "1F20", "name": "GREEK SMALL LETTER ETA WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F28", "lowercase_mapping": "", "titlecase_mapping": "1F28", "symbol": "\u1F20" }, 7969: { "value": "1F21", "name": "GREEK SMALL LETTER ETA WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F29", "lowercase_mapping": "", "titlecase_mapping": "1F29", "symbol": "\u1F21" }, 7970: { "value": "1F22", "name": "GREEK SMALL LETTER ETA WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F20 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2A", "lowercase_mapping": "", "titlecase_mapping": "1F2A", "symbol": "\u1F22" }, 7971: { "value": "1F23", "name": "GREEK SMALL LETTER ETA WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F21 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2B", "lowercase_mapping": "", "titlecase_mapping": "1F2B", "symbol": "\u1F23" }, 7972: { "value": "1F24", "name": "GREEK SMALL LETTER ETA WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F20 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2C", "lowercase_mapping": "", "titlecase_mapping": "1F2C", "symbol": "\u1F24" }, 7973: { "value": "1F25", "name": "GREEK SMALL LETTER ETA WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F21 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2D", "lowercase_mapping": "", "titlecase_mapping": "1F2D", "symbol": "\u1F25" }, 7974: { "value": "1F26", "name": "GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F20 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2E", "lowercase_mapping": "", "titlecase_mapping": "1F2E", "symbol": "\u1F26" }, 7975: { "value": "1F27", "name": "GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F21 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2F", "lowercase_mapping": "", "titlecase_mapping": "1F2F", "symbol": "\u1F27" }, 7984: { "value": "1F30", "name": "GREEK SMALL LETTER IOTA WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F38", "lowercase_mapping": "", "titlecase_mapping": "1F38", "symbol": "\u1F30" }, 7985: { "value": "1F31", "name": "GREEK SMALL LETTER IOTA WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F39", "lowercase_mapping": "", "titlecase_mapping": "1F39", "symbol": "\u1F31" }, 7986: { "value": "1F32", "name": "GREEK SMALL LETTER IOTA WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F30 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3A", "lowercase_mapping": "", "titlecase_mapping": "1F3A", "symbol": "\u1F32" }, 7987: { "value": "1F33", "name": "GREEK SMALL LETTER IOTA WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F31 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3B", "lowercase_mapping": "", "titlecase_mapping": "1F3B", "symbol": "\u1F33" }, 7988: { "value": "1F34", "name": "GREEK SMALL LETTER IOTA WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F30 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3C", "lowercase_mapping": "", "titlecase_mapping": "1F3C", "symbol": "\u1F34" }, 7989: { "value": "1F35", "name": "GREEK SMALL LETTER IOTA WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F31 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3D", "lowercase_mapping": "", "titlecase_mapping": "1F3D", "symbol": "\u1F35" }, 7990: { "value": "1F36", "name": "GREEK SMALL LETTER IOTA WITH PSILI AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F30 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3E", "lowercase_mapping": "", "titlecase_mapping": "1F3E", "symbol": "\u1F36" }, 7991: { "value": "1F37", "name": "GREEK SMALL LETTER IOTA WITH DASIA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F31 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3F", "lowercase_mapping": "", "titlecase_mapping": "1F3F", "symbol": "\u1F37" }, 8000: { "value": "1F40", "name": "GREEK SMALL LETTER OMICRON WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03BF 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F48", "lowercase_mapping": "", "titlecase_mapping": "1F48", "symbol": "\u1F40" }, 8001: { "value": "1F41", "name": "GREEK SMALL LETTER OMICRON WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03BF 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F49", "lowercase_mapping": "", "titlecase_mapping": "1F49", "symbol": "\u1F41" }, 8002: { "value": "1F42", "name": "GREEK SMALL LETTER OMICRON WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F40 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F4A", "lowercase_mapping": "", "titlecase_mapping": "1F4A", "symbol": "\u1F42" }, 8003: { "value": "1F43", "name": "GREEK SMALL LETTER OMICRON WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F41 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F4B", "lowercase_mapping": "", "titlecase_mapping": "1F4B", "symbol": "\u1F43" }, 8004: { "value": "1F44", "name": "GREEK SMALL LETTER OMICRON WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F40 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F4C", "lowercase_mapping": "", "titlecase_mapping": "1F4C", "symbol": "\u1F44" }, 8005: { "value": "1F45", "name": "GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F41 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F4D", "lowercase_mapping": "", "titlecase_mapping": "1F4D", "symbol": "\u1F45" }, 8016: { "value": "1F50", "name": "GREEK SMALL LETTER UPSILON WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1F50" }, 8017: { "value": "1F51", "name": "GREEK SMALL LETTER UPSILON WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F59", "lowercase_mapping": "", "titlecase_mapping": "1F59", "symbol": "\u1F51" }, 8018: { "value": "1F52", "name": "GREEK SMALL LETTER UPSILON WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F50 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1F52" }, 8019: { "value": "1F53", "name": "GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F51 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F5B", "lowercase_mapping": "", "titlecase_mapping": "1F5B", "symbol": "\u1F53" }, 8020: { "value": "1F54", "name": "GREEK SMALL LETTER UPSILON WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F50 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1F54" }, 8021: { "value": "1F55", "name": "GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F51 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F5D", "lowercase_mapping": "", "titlecase_mapping": "1F5D", "symbol": "\u1F55" }, 8022: { "value": "1F56", "name": "GREEK SMALL LETTER UPSILON WITH PSILI AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F50 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1F56" }, 8023: { "value": "1F57", "name": "GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F51 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F5F", "lowercase_mapping": "", "titlecase_mapping": "1F5F", "symbol": "\u1F57" }, 8032: { "value": "1F60", "name": "GREEK SMALL LETTER OMEGA WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F68", "lowercase_mapping": "", "titlecase_mapping": "1F68", "symbol": "\u1F60" }, 8033: { "value": "1F61", "name": "GREEK SMALL LETTER OMEGA WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F69", "lowercase_mapping": "", "titlecase_mapping": "1F69", "symbol": "\u1F61" }, 8034: { "value": "1F62", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F60 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6A", "lowercase_mapping": "", "titlecase_mapping": "1F6A", "symbol": "\u1F62" }, 8035: { "value": "1F63", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F61 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6B", "lowercase_mapping": "", "titlecase_mapping": "1F6B", "symbol": "\u1F63" }, 8036: { "value": "1F64", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F60 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6C", "lowercase_mapping": "", "titlecase_mapping": "1F6C", "symbol": "\u1F64" }, 8037: { "value": "1F65", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F61 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6D", "lowercase_mapping": "", "titlecase_mapping": "1F6D", "symbol": "\u1F65" }, 8038: { "value": "1F66", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F60 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6E", "lowercase_mapping": "", "titlecase_mapping": "1F6E", "symbol": "\u1F66" }, 8039: { "value": "1F67", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F61 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6F", "lowercase_mapping": "", "titlecase_mapping": "1F6F", "symbol": "\u1F67" }, 8048: { "value": "1F70", "name": "GREEK SMALL LETTER ALPHA WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FBA", "lowercase_mapping": "", "titlecase_mapping": "1FBA", "symbol": "\u1F70" }, 8049: { "value": "1F71", "name": "GREEK SMALL LETTER ALPHA WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FBB", "lowercase_mapping": "", "titlecase_mapping": "1FBB", "symbol": "\u1F71" }, 8050: { "value": "1F72", "name": "GREEK SMALL LETTER EPSILON WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B5 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FC8", "lowercase_mapping": "", "titlecase_mapping": "1FC8", "symbol": "\u1F72" }, 8051: { "value": "1F73", "name": "GREEK SMALL LETTER EPSILON WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FC9", "lowercase_mapping": "", "titlecase_mapping": "1FC9", "symbol": "\u1F73" }, 8052: { "value": "1F74", "name": "GREEK SMALL LETTER ETA WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FCA", "lowercase_mapping": "", "titlecase_mapping": "1FCA", "symbol": "\u1F74" }, 8053: { "value": "1F75", "name": "GREEK SMALL LETTER ETA WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FCB", "lowercase_mapping": "", "titlecase_mapping": "1FCB", "symbol": "\u1F75" }, 8054: { "value": "1F76", "name": "GREEK SMALL LETTER IOTA WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FDA", "lowercase_mapping": "", "titlecase_mapping": "1FDA", "symbol": "\u1F76" }, 8055: { "value": "1F77", "name": "GREEK SMALL LETTER IOTA WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FDB", "lowercase_mapping": "", "titlecase_mapping": "1FDB", "symbol": "\u1F77" }, 8056: { "value": "1F78", "name": "GREEK SMALL LETTER OMICRON WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03BF 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FF8", "lowercase_mapping": "", "titlecase_mapping": "1FF8", "symbol": "\u1F78" }, 8057: { "value": "1F79", "name": "GREEK SMALL LETTER OMICRON WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FF9", "lowercase_mapping": "", "titlecase_mapping": "1FF9", "symbol": "\u1F79" }, 8058: { "value": "1F7A", "name": "GREEK SMALL LETTER UPSILON WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FEA", "lowercase_mapping": "", "titlecase_mapping": "1FEA", "symbol": "\u1F7A" }, 8059: { "value": "1F7B", "name": "GREEK SMALL LETTER UPSILON WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FEB", "lowercase_mapping": "", "titlecase_mapping": "1FEB", "symbol": "\u1F7B" }, 8060: { "value": "1F7C", "name": "GREEK SMALL LETTER OMEGA WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FFA", "lowercase_mapping": "", "titlecase_mapping": "1FFA", "symbol": "\u1F7C" }, 8061: { "value": "1F7D", "name": "GREEK SMALL LETTER OMEGA WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FFB", "lowercase_mapping": "", "titlecase_mapping": "1FFB", "symbol": "\u1F7D" }, 8064: { "value": "1F80", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F00 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F88", "lowercase_mapping": "", "titlecase_mapping": "1F88", "symbol": "\u1F80" }, 8065: { "value": "1F81", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F01 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F89", "lowercase_mapping": "", "titlecase_mapping": "1F89", "symbol": "\u1F81" }, 8066: { "value": "1F82", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F02 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8A", "lowercase_mapping": "", "titlecase_mapping": "1F8A", "symbol": "\u1F82" }, 8067: { "value": "1F83", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F03 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8B", "lowercase_mapping": "", "titlecase_mapping": "1F8B", "symbol": "\u1F83" }, 8068: { "value": "1F84", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F04 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8C", "lowercase_mapping": "", "titlecase_mapping": "1F8C", "symbol": "\u1F84" }, 8069: { "value": "1F85", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F05 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8D", "lowercase_mapping": "", "titlecase_mapping": "1F8D", "symbol": "\u1F85" }, 8070: { "value": "1F86", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F06 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8E", "lowercase_mapping": "", "titlecase_mapping": "1F8E", "symbol": "\u1F86" }, 8071: { "value": "1F87", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F07 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8F", "lowercase_mapping": "", "titlecase_mapping": "1F8F", "symbol": "\u1F87" }, 8080: { "value": "1F90", "name": "GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F20 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F98", "lowercase_mapping": "", "titlecase_mapping": "1F98", "symbol": "\u1F90" }, 8081: { "value": "1F91", "name": "GREEK SMALL LETTER ETA WITH DASIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F21 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F99", "lowercase_mapping": "", "titlecase_mapping": "1F99", "symbol": "\u1F91" }, 8082: { "value": "1F92", "name": "GREEK SMALL LETTER ETA WITH PSILI AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F22 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9A", "lowercase_mapping": "", "titlecase_mapping": "1F9A", "symbol": "\u1F92" }, 8083: { "value": "1F93", "name": "GREEK SMALL LETTER ETA WITH DASIA AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F23 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9B", "lowercase_mapping": "", "titlecase_mapping": "1F9B", "symbol": "\u1F93" }, 8084: { "value": "1F94", "name": "GREEK SMALL LETTER ETA WITH PSILI AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F24 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9C", "lowercase_mapping": "", "titlecase_mapping": "1F9C", "symbol": "\u1F94" }, 8085: { "value": "1F95", "name": "GREEK SMALL LETTER ETA WITH DASIA AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F25 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9D", "lowercase_mapping": "", "titlecase_mapping": "1F9D", "symbol": "\u1F95" }, 8086: { "value": "1F96", "name": "GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F26 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9E", "lowercase_mapping": "", "titlecase_mapping": "1F9E", "symbol": "\u1F96" }, 8087: { "value": "1F97", "name": "GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F27 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9F", "lowercase_mapping": "", "titlecase_mapping": "1F9F", "symbol": "\u1F97" }, 8096: { "value": "1FA0", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F60 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FA8", "lowercase_mapping": "", "titlecase_mapping": "1FA8", "symbol": "\u1FA0" }, 8097: { "value": "1FA1", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F61 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FA9", "lowercase_mapping": "", "titlecase_mapping": "1FA9", "symbol": "\u1FA1" }, 8098: { "value": "1FA2", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F62 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAA", "lowercase_mapping": "", "titlecase_mapping": "1FAA", "symbol": "\u1FA2" }, 8099: { "value": "1FA3", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F63 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAB", "lowercase_mapping": "", "titlecase_mapping": "1FAB", "symbol": "\u1FA3" }, 8100: { "value": "1FA4", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F64 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAC", "lowercase_mapping": "", "titlecase_mapping": "1FAC", "symbol": "\u1FA4" }, 8101: { "value": "1FA5", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F65 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAD", "lowercase_mapping": "", "titlecase_mapping": "1FAD", "symbol": "\u1FA5" }, 8102: { "value": "1FA6", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F66 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAE", "lowercase_mapping": "", "titlecase_mapping": "1FAE", "symbol": "\u1FA6" }, 8103: { "value": "1FA7", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F67 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAF", "lowercase_mapping": "", "titlecase_mapping": "1FAF", "symbol": "\u1FA7" }, 8112: { "value": "1FB0", "name": "GREEK SMALL LETTER ALPHA WITH VRACHY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FB8", "lowercase_mapping": "", "titlecase_mapping": "1FB8", "symbol": "\u1FB0" }, 8113: { "value": "1FB1", "name": "GREEK SMALL LETTER ALPHA WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FB9", "lowercase_mapping": "", "titlecase_mapping": "1FB9", "symbol": "\u1FB1" }, 8114: { "value": "1FB2", "name": "GREEK SMALL LETTER ALPHA WITH VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F70 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FB2" }, 8115: { "value": "1FB3", "name": "GREEK SMALL LETTER ALPHA WITH YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FBC", "lowercase_mapping": "", "titlecase_mapping": "1FBC", "symbol": "\u1FB3" }, 8116: { "value": "1FB4", "name": "GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AC 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FB4" }, 8118: { "value": "1FB6", "name": "GREEK SMALL LETTER ALPHA WITH PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FB6" }, 8119: { "value": "1FB7", "name": "GREEK SMALL LETTER ALPHA WITH PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1FB6 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FB7" }, 8126: { "value": "1FBE", "name": "GREEK PROSGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0399", "lowercase_mapping": "", "titlecase_mapping": "0399", "symbol": "\u1FBE" }, 8130: { "value": "1FC2", "name": "GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F74 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FC2" }, 8131: { "value": "1FC3", "name": "GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FCC", "lowercase_mapping": "", "titlecase_mapping": "1FCC", "symbol": "\u1FC3" }, 8132: { "value": "1FC4", "name": "GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AE 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FC4" }, 8134: { "value": "1FC6", "name": "GREEK SMALL LETTER ETA WITH PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FC6" }, 8135: { "value": "1FC7", "name": "GREEK SMALL LETTER ETA WITH PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1FC6 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FC7" }, 8144: { "value": "1FD0", "name": "GREEK SMALL LETTER IOTA WITH VRACHY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FD8", "lowercase_mapping": "", "titlecase_mapping": "1FD8", "symbol": "\u1FD0" }, 8145: { "value": "1FD1", "name": "GREEK SMALL LETTER IOTA WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FD9", "lowercase_mapping": "", "titlecase_mapping": "1FD9", "symbol": "\u1FD1" }, 8146: { "value": "1FD2", "name": "GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CA 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FD2" }, 8147: { "value": "1FD3", "name": "GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0390", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FD3" }, 8150: { "value": "1FD6", "name": "GREEK SMALL LETTER IOTA WITH PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FD6" }, 8151: { "value": "1FD7", "name": "GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CA 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FD7" }, 8160: { "value": "1FE0", "name": "GREEK SMALL LETTER UPSILON WITH VRACHY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FE8", "lowercase_mapping": "", "titlecase_mapping": "1FE8", "symbol": "\u1FE0" }, 8161: { "value": "1FE1", "name": "GREEK SMALL LETTER UPSILON WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FE9", "lowercase_mapping": "", "titlecase_mapping": "1FE9", "symbol": "\u1FE1" }, 8162: { "value": "1FE2", "name": "GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CB 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FE2" }, 8163: { "value": "1FE3", "name": "GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FE3" }, 8164: { "value": "1FE4", "name": "GREEK SMALL LETTER RHO WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C1 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FE4" }, 8165: { "value": "1FE5", "name": "GREEK SMALL LETTER RHO WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C1 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FEC", "lowercase_mapping": "", "titlecase_mapping": "1FEC", "symbol": "\u1FE5" }, 8166: { "value": "1FE6", "name": "GREEK SMALL LETTER UPSILON WITH PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FE6" }, 8167: { "value": "1FE7", "name": "GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CB 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FE7" }, 8178: { "value": "1FF2", "name": "GREEK SMALL LETTER OMEGA WITH VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F7C 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FF2" }, 8179: { "value": "1FF3", "name": "GREEK SMALL LETTER OMEGA WITH YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FFC", "lowercase_mapping": "", "titlecase_mapping": "1FFC", "symbol": "\u1FF3" }, 8180: { "value": "1FF4", "name": "GREEK SMALL LETTER OMEGA WITH OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CE 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FF4" }, 8182: { "value": "1FF6", "name": "GREEK SMALL LETTER OMEGA WITH PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FF6" }, 8183: { "value": "1FF7", "name": "GREEK SMALL LETTER OMEGA WITH PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1FF6 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FF7" }, 8458: { "value": "210A", "name": "SCRIPT SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u210A" }, 8462: { "value": "210E", "name": "PLANCK CONSTANT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u210E" }, 8463: { "value": "210F", "name": "PLANCK CONSTANT OVER TWO PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0127", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "PLANCK CONSTANT OVER 2 PI", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u210F" }, 8467: { "value": "2113", "name": "SCRIPT SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2113" }, 8495: { "value": "212F", "name": "SCRIPT SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u212F" }, 8500: { "value": "2134", "name": "SCRIPT SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2134" }, 8505: { "value": "2139", "name": "INFORMATION SOURCE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2139" }, 8508: { "value": "213C", "name": "DOUBLE-STRUCK SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u213C" }, 8509: { "value": "213D", "name": "DOUBLE-STRUCK SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u213D" }, 8518: { "value": "2146", "name": "DOUBLE-STRUCK ITALIC SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2146" }, 8519: { "value": "2147", "name": "DOUBLE-STRUCK ITALIC SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2147" }, 8520: { "value": "2148", "name": "DOUBLE-STRUCK ITALIC SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2148" }, 8521: { "value": "2149", "name": "DOUBLE-STRUCK ITALIC SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2149" }, 8526: { "value": "214E", "name": "TURNED SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2132", "lowercase_mapping": "", "titlecase_mapping": "2132", "symbol": "\u214E" }, 8580: { "value": "2184", "name": "LATIN SMALL LETTER REVERSED C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2183", "lowercase_mapping": "", "titlecase_mapping": "2183", "symbol": "\u2184" }, 11312: { "value": "2C30", "name": "GLAGOLITIC SMALL LETTER AZU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C00", "lowercase_mapping": "", "titlecase_mapping": "2C00", "symbol": "\u2C30" }, 11313: { "value": "2C31", "name": "GLAGOLITIC SMALL LETTER BUKY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C01", "lowercase_mapping": "", "titlecase_mapping": "2C01", "symbol": "\u2C31" }, 11314: { "value": "2C32", "name": "GLAGOLITIC SMALL LETTER VEDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C02", "lowercase_mapping": "", "titlecase_mapping": "2C02", "symbol": "\u2C32" }, 11315: { "value": "2C33", "name": "GLAGOLITIC SMALL LETTER GLAGOLI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C03", "lowercase_mapping": "", "titlecase_mapping": "2C03", "symbol": "\u2C33" }, 11316: { "value": "2C34", "name": "GLAGOLITIC SMALL LETTER DOBRO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C04", "lowercase_mapping": "", "titlecase_mapping": "2C04", "symbol": "\u2C34" }, 11317: { "value": "2C35", "name": "GLAGOLITIC SMALL LETTER YESTU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C05", "lowercase_mapping": "", "titlecase_mapping": "2C05", "symbol": "\u2C35" }, 11318: { "value": "2C36", "name": "GLAGOLITIC SMALL LETTER ZHIVETE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C06", "lowercase_mapping": "", "titlecase_mapping": "2C06", "symbol": "\u2C36" }, 11319: { "value": "2C37", "name": "GLAGOLITIC SMALL LETTER DZELO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C07", "lowercase_mapping": "", "titlecase_mapping": "2C07", "symbol": "\u2C37" }, 11320: { "value": "2C38", "name": "GLAGOLITIC SMALL LETTER ZEMLJA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C08", "lowercase_mapping": "", "titlecase_mapping": "2C08", "symbol": "\u2C38" }, 11321: { "value": "2C39", "name": "GLAGOLITIC SMALL LETTER IZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C09", "lowercase_mapping": "", "titlecase_mapping": "2C09", "symbol": "\u2C39" }, 11322: { "value": "2C3A", "name": "GLAGOLITIC SMALL LETTER INITIAL IZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0A", "lowercase_mapping": "", "titlecase_mapping": "2C0A", "symbol": "\u2C3A" }, 11323: { "value": "2C3B", "name": "GLAGOLITIC SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0B", "lowercase_mapping": "", "titlecase_mapping": "2C0B", "symbol": "\u2C3B" }, 11324: { "value": "2C3C", "name": "GLAGOLITIC SMALL LETTER DJERVI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0C", "lowercase_mapping": "", "titlecase_mapping": "2C0C", "symbol": "\u2C3C" }, 11325: { "value": "2C3D", "name": "GLAGOLITIC SMALL LETTER KAKO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0D", "lowercase_mapping": "", "titlecase_mapping": "2C0D", "symbol": "\u2C3D" }, 11326: { "value": "2C3E", "name": "GLAGOLITIC SMALL LETTER LJUDIJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0E", "lowercase_mapping": "", "titlecase_mapping": "2C0E", "symbol": "\u2C3E" }, 11327: { "value": "2C3F", "name": "GLAGOLITIC SMALL LETTER MYSLITE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0F", "lowercase_mapping": "", "titlecase_mapping": "2C0F", "symbol": "\u2C3F" }, 11328: { "value": "2C40", "name": "GLAGOLITIC SMALL LETTER NASHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C10", "lowercase_mapping": "", "titlecase_mapping": "2C10", "symbol": "\u2C40" }, 11329: { "value": "2C41", "name": "GLAGOLITIC SMALL LETTER ONU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C11", "lowercase_mapping": "", "titlecase_mapping": "2C11", "symbol": "\u2C41" }, 11330: { "value": "2C42", "name": "GLAGOLITIC SMALL LETTER POKOJI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C12", "lowercase_mapping": "", "titlecase_mapping": "2C12", "symbol": "\u2C42" }, 11331: { "value": "2C43", "name": "GLAGOLITIC SMALL LETTER RITSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C13", "lowercase_mapping": "", "titlecase_mapping": "2C13", "symbol": "\u2C43" }, 11332: { "value": "2C44", "name": "GLAGOLITIC SMALL LETTER SLOVO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C14", "lowercase_mapping": "", "titlecase_mapping": "2C14", "symbol": "\u2C44" }, 11333: { "value": "2C45", "name": "GLAGOLITIC SMALL LETTER TVRIDO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C15", "lowercase_mapping": "", "titlecase_mapping": "2C15", "symbol": "\u2C45" }, 11334: { "value": "2C46", "name": "GLAGOLITIC SMALL LETTER UKU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C16", "lowercase_mapping": "", "titlecase_mapping": "2C16", "symbol": "\u2C46" }, 11335: { "value": "2C47", "name": "GLAGOLITIC SMALL LETTER FRITU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C17", "lowercase_mapping": "", "titlecase_mapping": "2C17", "symbol": "\u2C47" }, 11336: { "value": "2C48", "name": "GLAGOLITIC SMALL LETTER HERU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C18", "lowercase_mapping": "", "titlecase_mapping": "2C18", "symbol": "\u2C48" }, 11337: { "value": "2C49", "name": "GLAGOLITIC SMALL LETTER OTU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C19", "lowercase_mapping": "", "titlecase_mapping": "2C19", "symbol": "\u2C49" }, 11338: { "value": "2C4A", "name": "GLAGOLITIC SMALL LETTER PE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1A", "lowercase_mapping": "", "titlecase_mapping": "2C1A", "symbol": "\u2C4A" }, 11339: { "value": "2C4B", "name": "GLAGOLITIC SMALL LETTER SHTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1B", "lowercase_mapping": "", "titlecase_mapping": "2C1B", "symbol": "\u2C4B" }, 11340: { "value": "2C4C", "name": "GLAGOLITIC SMALL LETTER TSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1C", "lowercase_mapping": "", "titlecase_mapping": "2C1C", "symbol": "\u2C4C" }, 11341: { "value": "2C4D", "name": "GLAGOLITIC SMALL LETTER CHRIVI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1D", "lowercase_mapping": "", "titlecase_mapping": "2C1D", "symbol": "\u2C4D" }, 11342: { "value": "2C4E", "name": "GLAGOLITIC SMALL LETTER SHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1E", "lowercase_mapping": "", "titlecase_mapping": "2C1E", "symbol": "\u2C4E" }, 11343: { "value": "2C4F", "name": "GLAGOLITIC SMALL LETTER YERU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1F", "lowercase_mapping": "", "titlecase_mapping": "2C1F", "symbol": "\u2C4F" }, 11344: { "value": "2C50", "name": "GLAGOLITIC SMALL LETTER YERI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C20", "lowercase_mapping": "", "titlecase_mapping": "2C20", "symbol": "\u2C50" }, 11345: { "value": "2C51", "name": "GLAGOLITIC SMALL LETTER YATI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C21", "lowercase_mapping": "", "titlecase_mapping": "2C21", "symbol": "\u2C51" }, 11346: { "value": "2C52", "name": "GLAGOLITIC SMALL LETTER SPIDERY HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C22", "lowercase_mapping": "", "titlecase_mapping": "2C22", "symbol": "\u2C52" }, 11347: { "value": "2C53", "name": "GLAGOLITIC SMALL LETTER YU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C23", "lowercase_mapping": "", "titlecase_mapping": "2C23", "symbol": "\u2C53" }, 11348: { "value": "2C54", "name": "GLAGOLITIC SMALL LETTER SMALL YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C24", "lowercase_mapping": "", "titlecase_mapping": "2C24", "symbol": "\u2C54" }, 11349: { "value": "2C55", "name": "GLAGOLITIC SMALL LETTER SMALL YUS WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C25", "lowercase_mapping": "", "titlecase_mapping": "2C25", "symbol": "\u2C55" }, 11350: { "value": "2C56", "name": "GLAGOLITIC SMALL LETTER YO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C26", "lowercase_mapping": "", "titlecase_mapping": "2C26", "symbol": "\u2C56" }, 11351: { "value": "2C57", "name": "GLAGOLITIC SMALL LETTER IOTATED SMALL YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C27", "lowercase_mapping": "", "titlecase_mapping": "2C27", "symbol": "\u2C57" }, 11352: { "value": "2C58", "name": "GLAGOLITIC SMALL LETTER BIG YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C28", "lowercase_mapping": "", "titlecase_mapping": "2C28", "symbol": "\u2C58" }, 11353: { "value": "2C59", "name": "GLAGOLITIC SMALL LETTER IOTATED BIG YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C29", "lowercase_mapping": "", "titlecase_mapping": "2C29", "symbol": "\u2C59" }, 11354: { "value": "2C5A", "name": "GLAGOLITIC SMALL LETTER FITA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C2A", "lowercase_mapping": "", "titlecase_mapping": "2C2A", "symbol": "\u2C5A" }, 11355: { "value": "2C5B", "name": "GLAGOLITIC SMALL LETTER IZHITSA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C2B", "lowercase_mapping": "", "titlecase_mapping": "2C2B", "symbol": "\u2C5B" }, 11356: { "value": "2C5C", "name": "GLAGOLITIC SMALL LETTER SHTAPIC", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C2C", "lowercase_mapping": "", "titlecase_mapping": "2C2C", "symbol": "\u2C5C" }, 11357: { "value": "2C5D", "name": "GLAGOLITIC SMALL LETTER TROKUTASTI A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C2D", "lowercase_mapping": "", "titlecase_mapping": "2C2D", "symbol": "\u2C5D" }, 11358: { "value": "2C5E", "name": "GLAGOLITIC SMALL LETTER LATINATE MYSLITE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C2E", "lowercase_mapping": "", "titlecase_mapping": "2C2E", "symbol": "\u2C5E" }, 11361: { "value": "2C61", "name": "LATIN SMALL LETTER L WITH DOUBLE BAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C60", "lowercase_mapping": "", "titlecase_mapping": "2C60", "symbol": "\u2C61" }, 11365: { "value": "2C65", "name": "LATIN SMALL LETTER A WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "023A", "lowercase_mapping": "", "titlecase_mapping": "023A", "symbol": "\u2C65" }, 11366: { "value": "2C66", "name": "LATIN SMALL LETTER T WITH DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "023E", "lowercase_mapping": "", "titlecase_mapping": "023E", "symbol": "\u2C66" }, 11368: { "value": "2C68", "name": "LATIN SMALL LETTER H WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C67", "lowercase_mapping": "", "titlecase_mapping": "2C67", "symbol": "\u2C68" }, 11370: { "value": "2C6A", "name": "LATIN SMALL LETTER K WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C69", "lowercase_mapping": "", "titlecase_mapping": "2C69", "symbol": "\u2C6A" }, 11372: { "value": "2C6C", "name": "LATIN SMALL LETTER Z WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C6B", "lowercase_mapping": "", "titlecase_mapping": "2C6B", "symbol": "\u2C6C" }, 11377: { "value": "2C71", "name": "LATIN SMALL LETTER V WITH RIGHT HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C71" }, 11379: { "value": "2C73", "name": "LATIN SMALL LETTER W WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C72", "lowercase_mapping": "", "titlecase_mapping": "2C72", "symbol": "\u2C73" }, 11380: { "value": "2C74", "name": "LATIN SMALL LETTER V WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C74" }, 11382: { "value": "2C76", "name": "LATIN SMALL LETTER HALF H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C75", "lowercase_mapping": "", "titlecase_mapping": "2C75", "symbol": "\u2C76" }, 11383: { "value": "2C77", "name": "LATIN SMALL LETTER TAILLESS PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C77" }, 11384: { "value": "2C78", "name": "LATIN SMALL LETTER E WITH NOTCH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C78" }, 11385: { "value": "2C79", "name": "LATIN SMALL LETTER TURNED R WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C79" }, 11386: { "value": "2C7A", "name": "LATIN SMALL LETTER O WITH LOW RING INSIDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C7A" }, 11387: { "value": "2C7B", "name": "LATIN LETTER SMALL CAPITAL TURNED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C7B" }, 11393: { "value": "2C81", "name": "COPTIC SMALL LETTER ALFA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C80", "lowercase_mapping": "", "titlecase_mapping": "2C80", "symbol": "\u2C81" }, 11395: { "value": "2C83", "name": "COPTIC SMALL LETTER VIDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C82", "lowercase_mapping": "", "titlecase_mapping": "2C82", "symbol": "\u2C83" }, 11397: { "value": "2C85", "name": "COPTIC SMALL LETTER GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C84", "lowercase_mapping": "", "titlecase_mapping": "2C84", "symbol": "\u2C85" }, 11399: { "value": "2C87", "name": "COPTIC SMALL LETTER DALDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C86", "lowercase_mapping": "", "titlecase_mapping": "2C86", "symbol": "\u2C87" }, 11401: { "value": "2C89", "name": "COPTIC SMALL LETTER EIE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C88", "lowercase_mapping": "", "titlecase_mapping": "2C88", "symbol": "\u2C89" }, 11403: { "value": "2C8B", "name": "COPTIC SMALL LETTER SOU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C8A", "lowercase_mapping": "", "titlecase_mapping": "2C8A", "symbol": "\u2C8B" }, 11405: { "value": "2C8D", "name": "COPTIC SMALL LETTER ZATA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C8C", "lowercase_mapping": "", "titlecase_mapping": "2C8C", "symbol": "\u2C8D" }, 11407: { "value": "2C8F", "name": "COPTIC SMALL LETTER HATE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C8E", "lowercase_mapping": "", "titlecase_mapping": "2C8E", "symbol": "\u2C8F" }, 11409: { "value": "2C91", "name": "COPTIC SMALL LETTER THETHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C90", "lowercase_mapping": "", "titlecase_mapping": "2C90", "symbol": "\u2C91" }, 11411: { "value": "2C93", "name": "COPTIC SMALL LETTER IAUDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C92", "lowercase_mapping": "", "titlecase_mapping": "2C92", "symbol": "\u2C93" }, 11413: { "value": "2C95", "name": "COPTIC SMALL LETTER KAPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C94", "lowercase_mapping": "", "titlecase_mapping": "2C94", "symbol": "\u2C95" }, 11415: { "value": "2C97", "name": "COPTIC SMALL LETTER LAULA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C96", "lowercase_mapping": "", "titlecase_mapping": "2C96", "symbol": "\u2C97" }, 11417: { "value": "2C99", "name": "COPTIC SMALL LETTER MI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C98", "lowercase_mapping": "", "titlecase_mapping": "2C98", "symbol": "\u2C99" }, 11419: { "value": "2C9B", "name": "COPTIC SMALL LETTER NI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C9A", "lowercase_mapping": "", "titlecase_mapping": "2C9A", "symbol": "\u2C9B" }, 11421: { "value": "2C9D", "name": "COPTIC SMALL LETTER KSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C9C", "lowercase_mapping": "", "titlecase_mapping": "2C9C", "symbol": "\u2C9D" }, 11423: { "value": "2C9F", "name": "COPTIC SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C9E", "lowercase_mapping": "", "titlecase_mapping": "2C9E", "symbol": "\u2C9F" }, 11425: { "value": "2CA1", "name": "COPTIC SMALL LETTER PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CA0", "lowercase_mapping": "", "titlecase_mapping": "2CA0", "symbol": "\u2CA1" }, 11427: { "value": "2CA3", "name": "COPTIC SMALL LETTER RO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CA2", "lowercase_mapping": "", "titlecase_mapping": "2CA2", "symbol": "\u2CA3" }, 11429: { "value": "2CA5", "name": "COPTIC SMALL LETTER SIMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CA4", "lowercase_mapping": "", "titlecase_mapping": "2CA4", "symbol": "\u2CA5" }, 11431: { "value": "2CA7", "name": "COPTIC SMALL LETTER TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CA6", "lowercase_mapping": "", "titlecase_mapping": "2CA6", "symbol": "\u2CA7" }, 11433: { "value": "2CA9", "name": "COPTIC SMALL LETTER UA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CA8", "lowercase_mapping": "", "titlecase_mapping": "2CA8", "symbol": "\u2CA9" }, 11435: { "value": "2CAB", "name": "COPTIC SMALL LETTER FI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CAA", "lowercase_mapping": "", "titlecase_mapping": "2CAA", "symbol": "\u2CAB" }, 11437: { "value": "2CAD", "name": "COPTIC SMALL LETTER KHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CAC", "lowercase_mapping": "", "titlecase_mapping": "2CAC", "symbol": "\u2CAD" }, 11439: { "value": "2CAF", "name": "COPTIC SMALL LETTER PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CAE", "lowercase_mapping": "", "titlecase_mapping": "2CAE", "symbol": "\u2CAF" }, 11441: { "value": "2CB1", "name": "COPTIC SMALL LETTER OOU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CB0", "lowercase_mapping": "", "titlecase_mapping": "2CB0", "symbol": "\u2CB1" }, 11443: { "value": "2CB3", "name": "COPTIC SMALL LETTER DIALECT-P ALEF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CB2", "lowercase_mapping": "", "titlecase_mapping": "2CB2", "symbol": "\u2CB3" }, 11445: { "value": "2CB5", "name": "COPTIC SMALL LETTER OLD COPTIC AIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CB4", "lowercase_mapping": "", "titlecase_mapping": "2CB4", "symbol": "\u2CB5" }, 11447: { "value": "2CB7", "name": "COPTIC SMALL LETTER CRYPTOGRAMMIC EIE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CB6", "lowercase_mapping": "", "titlecase_mapping": "2CB6", "symbol": "\u2CB7" }, 11449: { "value": "2CB9", "name": "COPTIC SMALL LETTER DIALECT-P KAPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CB8", "lowercase_mapping": "", "titlecase_mapping": "2CB8", "symbol": "\u2CB9" }, 11451: { "value": "2CBB", "name": "COPTIC SMALL LETTER DIALECT-P NI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CBA", "lowercase_mapping": "", "titlecase_mapping": "2CBA", "symbol": "\u2CBB" }, 11453: { "value": "2CBD", "name": "COPTIC SMALL LETTER CRYPTOGRAMMIC NI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CBC", "lowercase_mapping": "", "titlecase_mapping": "2CBC", "symbol": "\u2CBD" }, 11455: { "value": "2CBF", "name": "COPTIC SMALL LETTER OLD COPTIC OOU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CBE", "lowercase_mapping": "", "titlecase_mapping": "2CBE", "symbol": "\u2CBF" }, 11457: { "value": "2CC1", "name": "COPTIC SMALL LETTER SAMPI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CC0", "lowercase_mapping": "", "titlecase_mapping": "2CC0", "symbol": "\u2CC1" }, 11459: { "value": "2CC3", "name": "COPTIC SMALL LETTER CROSSED SHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CC2", "lowercase_mapping": "", "titlecase_mapping": "2CC2", "symbol": "\u2CC3" }, 11461: { "value": "2CC5", "name": "COPTIC SMALL LETTER OLD COPTIC SHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CC4", "lowercase_mapping": "", "titlecase_mapping": "2CC4", "symbol": "\u2CC5" }, 11463: { "value": "2CC7", "name": "COPTIC SMALL LETTER OLD COPTIC ESH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CC6", "lowercase_mapping": "", "titlecase_mapping": "2CC6", "symbol": "\u2CC7" }, 11465: { "value": "2CC9", "name": "COPTIC SMALL LETTER AKHMIMIC KHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CC8", "lowercase_mapping": "", "titlecase_mapping": "2CC8", "symbol": "\u2CC9" }, 11467: { "value": "2CCB", "name": "COPTIC SMALL LETTER DIALECT-P HORI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CCA", "lowercase_mapping": "", "titlecase_mapping": "2CCA", "symbol": "\u2CCB" }, 11469: { "value": "2CCD", "name": "COPTIC SMALL LETTER OLD COPTIC HORI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CCC", "lowercase_mapping": "", "titlecase_mapping": "2CCC", "symbol": "\u2CCD" }, 11471: { "value": "2CCF", "name": "COPTIC SMALL LETTER OLD COPTIC HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CCE", "lowercase_mapping": "", "titlecase_mapping": "2CCE", "symbol": "\u2CCF" }, 11473: { "value": "2CD1", "name": "COPTIC SMALL LETTER L-SHAPED HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CD0", "lowercase_mapping": "", "titlecase_mapping": "2CD0", "symbol": "\u2CD1" }, 11475: { "value": "2CD3", "name": "COPTIC SMALL LETTER OLD COPTIC HEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CD2", "lowercase_mapping": "", "titlecase_mapping": "2CD2", "symbol": "\u2CD3" }, 11477: { "value": "2CD5", "name": "COPTIC SMALL LETTER OLD COPTIC HAT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CD4", "lowercase_mapping": "", "titlecase_mapping": "2CD4", "symbol": "\u2CD5" }, 11479: { "value": "2CD7", "name": "COPTIC SMALL LETTER OLD COPTIC GANGIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CD6", "lowercase_mapping": "", "titlecase_mapping": "2CD6", "symbol": "\u2CD7" }, 11481: { "value": "2CD9", "name": "COPTIC SMALL LETTER OLD COPTIC DJA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CD8", "lowercase_mapping": "", "titlecase_mapping": "2CD8", "symbol": "\u2CD9" }, 11483: { "value": "2CDB", "name": "COPTIC SMALL LETTER OLD COPTIC SHIMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CDA", "lowercase_mapping": "", "titlecase_mapping": "2CDA", "symbol": "\u2CDB" }, 11485: { "value": "2CDD", "name": "COPTIC SMALL LETTER OLD NUBIAN SHIMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CDC", "lowercase_mapping": "", "titlecase_mapping": "2CDC", "symbol": "\u2CDD" }, 11487: { "value": "2CDF", "name": "COPTIC SMALL LETTER OLD NUBIAN NGI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CDE", "lowercase_mapping": "", "titlecase_mapping": "2CDE", "symbol": "\u2CDF" }, 11489: { "value": "2CE1", "name": "COPTIC SMALL LETTER OLD NUBIAN NYI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CE0", "lowercase_mapping": "", "titlecase_mapping": "2CE0", "symbol": "\u2CE1" }, 11491: { "value": "2CE3", "name": "COPTIC SMALL LETTER OLD NUBIAN WAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CE2", "lowercase_mapping": "", "titlecase_mapping": "2CE2", "symbol": "\u2CE3" }, 11492: { "value": "2CE4", "name": "COPTIC SYMBOL KAI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2CE4" }, 11500: { "value": "2CEC", "name": "COPTIC SMALL LETTER CRYPTOGRAMMIC SHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CEB", "lowercase_mapping": "", "titlecase_mapping": "2CEB", "symbol": "\u2CEC" }, 11502: { "value": "2CEE", "name": "COPTIC SMALL LETTER CRYPTOGRAMMIC GANGIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CED", "lowercase_mapping": "", "titlecase_mapping": "2CED", "symbol": "\u2CEE" }, 11507: { "value": "2CF3", "name": "COPTIC SMALL LETTER BOHAIRIC KHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CF2", "lowercase_mapping": "", "titlecase_mapping": "2CF2", "symbol": "\u2CF3" }, 11520: { "value": "2D00", "name": "GEORGIAN SMALL LETTER AN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A0", "lowercase_mapping": "", "titlecase_mapping": "10A0", "symbol": "\u2D00" }, 11521: { "value": "2D01", "name": "GEORGIAN SMALL LETTER BAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A1", "lowercase_mapping": "", "titlecase_mapping": "10A1", "symbol": "\u2D01" }, 11522: { "value": "2D02", "name": "GEORGIAN SMALL LETTER GAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A2", "lowercase_mapping": "", "titlecase_mapping": "10A2", "symbol": "\u2D02" }, 11523: { "value": "2D03", "name": "GEORGIAN SMALL LETTER DON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A3", "lowercase_mapping": "", "titlecase_mapping": "10A3", "symbol": "\u2D03" }, 11524: { "value": "2D04", "name": "GEORGIAN SMALL LETTER EN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A4", "lowercase_mapping": "", "titlecase_mapping": "10A4", "symbol": "\u2D04" }, 11525: { "value": "2D05", "name": "GEORGIAN SMALL LETTER VIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A5", "lowercase_mapping": "", "titlecase_mapping": "10A5", "symbol": "\u2D05" }, 11526: { "value": "2D06", "name": "GEORGIAN SMALL LETTER ZEN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A6", "lowercase_mapping": "", "titlecase_mapping": "10A6", "symbol": "\u2D06" }, 11527: { "value": "2D07", "name": "GEORGIAN SMALL LETTER TAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A7", "lowercase_mapping": "", "titlecase_mapping": "10A7", "symbol": "\u2D07" }, 11528: { "value": "2D08", "name": "GEORGIAN SMALL LETTER IN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A8", "lowercase_mapping": "", "titlecase_mapping": "10A8", "symbol": "\u2D08" }, 11529: { "value": "2D09", "name": "GEORGIAN SMALL LETTER KAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A9", "lowercase_mapping": "", "titlecase_mapping": "10A9", "symbol": "\u2D09" }, 11530: { "value": "2D0A", "name": "GEORGIAN SMALL LETTER LAS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AA", "lowercase_mapping": "", "titlecase_mapping": "10AA", "symbol": "\u2D0A" }, 11531: { "value": "2D0B", "name": "GEORGIAN SMALL LETTER MAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AB", "lowercase_mapping": "", "titlecase_mapping": "10AB", "symbol": "\u2D0B" }, 11532: { "value": "2D0C", "name": "GEORGIAN SMALL LETTER NAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AC", "lowercase_mapping": "", "titlecase_mapping": "10AC", "symbol": "\u2D0C" }, 11533: { "value": "2D0D", "name": "GEORGIAN SMALL LETTER ON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AD", "lowercase_mapping": "", "titlecase_mapping": "10AD", "symbol": "\u2D0D" }, 11534: { "value": "2D0E", "name": "GEORGIAN SMALL LETTER PAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AE", "lowercase_mapping": "", "titlecase_mapping": "10AE", "symbol": "\u2D0E" }, 11535: { "value": "2D0F", "name": "GEORGIAN SMALL LETTER ZHAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AF", "lowercase_mapping": "", "titlecase_mapping": "10AF", "symbol": "\u2D0F" }, 11536: { "value": "2D10", "name": "GEORGIAN SMALL LETTER RAE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B0", "lowercase_mapping": "", "titlecase_mapping": "10B0", "symbol": "\u2D10" }, 11537: { "value": "2D11", "name": "GEORGIAN SMALL LETTER SAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B1", "lowercase_mapping": "", "titlecase_mapping": "10B1", "symbol": "\u2D11" }, 11538: { "value": "2D12", "name": "GEORGIAN SMALL LETTER TAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B2", "lowercase_mapping": "", "titlecase_mapping": "10B2", "symbol": "\u2D12" }, 11539: { "value": "2D13", "name": "GEORGIAN SMALL LETTER UN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B3", "lowercase_mapping": "", "titlecase_mapping": "10B3", "symbol": "\u2D13" }, 11540: { "value": "2D14", "name": "GEORGIAN SMALL LETTER PHAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B4", "lowercase_mapping": "", "titlecase_mapping": "10B4", "symbol": "\u2D14" }, 11541: { "value": "2D15", "name": "GEORGIAN SMALL LETTER KHAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B5", "lowercase_mapping": "", "titlecase_mapping": "10B5", "symbol": "\u2D15" }, 11542: { "value": "2D16", "name": "GEORGIAN SMALL LETTER GHAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B6", "lowercase_mapping": "", "titlecase_mapping": "10B6", "symbol": "\u2D16" }, 11543: { "value": "2D17", "name": "GEORGIAN SMALL LETTER QAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B7", "lowercase_mapping": "", "titlecase_mapping": "10B7", "symbol": "\u2D17" }, 11544: { "value": "2D18", "name": "GEORGIAN SMALL LETTER SHIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B8", "lowercase_mapping": "", "titlecase_mapping": "10B8", "symbol": "\u2D18" }, 11545: { "value": "2D19", "name": "GEORGIAN SMALL LETTER CHIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B9", "lowercase_mapping": "", "titlecase_mapping": "10B9", "symbol": "\u2D19" }, 11546: { "value": "2D1A", "name": "GEORGIAN SMALL LETTER CAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BA", "lowercase_mapping": "", "titlecase_mapping": "10BA", "symbol": "\u2D1A" }, 11547: { "value": "2D1B", "name": "GEORGIAN SMALL LETTER JIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BB", "lowercase_mapping": "", "titlecase_mapping": "10BB", "symbol": "\u2D1B" }, 11548: { "value": "2D1C", "name": "GEORGIAN SMALL LETTER CIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BC", "lowercase_mapping": "", "titlecase_mapping": "10BC", "symbol": "\u2D1C" }, 11549: { "value": "2D1D", "name": "GEORGIAN SMALL LETTER CHAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BD", "lowercase_mapping": "", "titlecase_mapping": "10BD", "symbol": "\u2D1D" }, 11550: { "value": "2D1E", "name": "GEORGIAN SMALL LETTER XAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BE", "lowercase_mapping": "", "titlecase_mapping": "10BE", "symbol": "\u2D1E" }, 11551: { "value": "2D1F", "name": "GEORGIAN SMALL LETTER JHAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BF", "lowercase_mapping": "", "titlecase_mapping": "10BF", "symbol": "\u2D1F" }, 11552: { "value": "2D20", "name": "GEORGIAN SMALL LETTER HAE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C0", "lowercase_mapping": "", "titlecase_mapping": "10C0", "symbol": "\u2D20" }, 11553: { "value": "2D21", "name": "GEORGIAN SMALL LETTER HE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C1", "lowercase_mapping": "", "titlecase_mapping": "10C1", "symbol": "\u2D21" }, 11554: { "value": "2D22", "name": "GEORGIAN SMALL LETTER HIE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C2", "lowercase_mapping": "", "titlecase_mapping": "10C2", "symbol": "\u2D22" }, 11555: { "value": "2D23", "name": "GEORGIAN SMALL LETTER WE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C3", "lowercase_mapping": "", "titlecase_mapping": "10C3", "symbol": "\u2D23" }, 11556: { "value": "2D24", "name": "GEORGIAN SMALL LETTER HAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C4", "lowercase_mapping": "", "titlecase_mapping": "10C4", "symbol": "\u2D24" }, 11557: { "value": "2D25", "name": "GEORGIAN SMALL LETTER HOE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C5", "lowercase_mapping": "", "titlecase_mapping": "10C5", "symbol": "\u2D25" }, 11559: { "value": "2D27", "name": "GEORGIAN SMALL LETTER YN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C7", "lowercase_mapping": "", "titlecase_mapping": "10C7", "symbol": "\u2D27" }, 11565: { "value": "2D2D", "name": "GEORGIAN SMALL LETTER AEN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CD", "lowercase_mapping": "", "titlecase_mapping": "10CD", "symbol": "\u2D2D" }, 42561: { "value": "A641", "name": "CYRILLIC SMALL LETTER ZEMLYA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A640", "lowercase_mapping": "", "titlecase_mapping": "A640", "symbol": "\uA641" }, 42563: { "value": "A643", "name": "CYRILLIC SMALL LETTER DZELO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A642", "lowercase_mapping": "", "titlecase_mapping": "A642", "symbol": "\uA643" }, 42565: { "value": "A645", "name": "CYRILLIC SMALL LETTER REVERSED DZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A644", "lowercase_mapping": "", "titlecase_mapping": "A644", "symbol": "\uA645" }, 42567: { "value": "A647", "name": "CYRILLIC SMALL LETTER IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A646", "lowercase_mapping": "", "titlecase_mapping": "A646", "symbol": "\uA647" }, 42569: { "value": "A649", "name": "CYRILLIC SMALL LETTER DJERV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A648", "lowercase_mapping": "", "titlecase_mapping": "A648", "symbol": "\uA649" }, 42571: { "value": "A64B", "name": "CYRILLIC SMALL LETTER MONOGRAPH UK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A64A", "lowercase_mapping": "", "titlecase_mapping": "A64A", "symbol": "\uA64B" }, 42573: { "value": "A64D", "name": "CYRILLIC SMALL LETTER BROAD OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A64C", "lowercase_mapping": "", "titlecase_mapping": "A64C", "symbol": "\uA64D" }, 42575: { "value": "A64F", "name": "CYRILLIC SMALL LETTER NEUTRAL YER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A64E", "lowercase_mapping": "", "titlecase_mapping": "A64E", "symbol": "\uA64F" }, 42577: { "value": "A651", "name": "CYRILLIC SMALL LETTER YERU WITH BACK YER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A650", "lowercase_mapping": "", "titlecase_mapping": "A650", "symbol": "\uA651" }, 42579: { "value": "A653", "name": "CYRILLIC SMALL LETTER IOTIFIED YAT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A652", "lowercase_mapping": "", "titlecase_mapping": "A652", "symbol": "\uA653" }, 42581: { "value": "A655", "name": "CYRILLIC SMALL LETTER REVERSED YU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A654", "lowercase_mapping": "", "titlecase_mapping": "A654", "symbol": "\uA655" }, 42583: { "value": "A657", "name": "CYRILLIC SMALL LETTER IOTIFIED A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A656", "lowercase_mapping": "", "titlecase_mapping": "A656", "symbol": "\uA657" }, 42585: { "value": "A659", "name": "CYRILLIC SMALL LETTER CLOSED LITTLE YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A658", "lowercase_mapping": "", "titlecase_mapping": "A658", "symbol": "\uA659" }, 42587: { "value": "A65B", "name": "CYRILLIC SMALL LETTER BLENDED YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A65A", "lowercase_mapping": "", "titlecase_mapping": "A65A", "symbol": "\uA65B" }, 42589: { "value": "A65D", "name": "CYRILLIC SMALL LETTER IOTIFIED CLOSED LITTLE YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A65C", "lowercase_mapping": "", "titlecase_mapping": "A65C", "symbol": "\uA65D" }, 42591: { "value": "A65F", "name": "CYRILLIC SMALL LETTER YN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A65E", "lowercase_mapping": "", "titlecase_mapping": "A65E", "symbol": "\uA65F" }, 42593: { "value": "A661", "name": "CYRILLIC SMALL LETTER REVERSED TSE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A660", "lowercase_mapping": "", "titlecase_mapping": "A660", "symbol": "\uA661" }, 42595: { "value": "A663", "name": "CYRILLIC SMALL LETTER SOFT DE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A662", "lowercase_mapping": "", "titlecase_mapping": "A662", "symbol": "\uA663" }, 42597: { "value": "A665", "name": "CYRILLIC SMALL LETTER SOFT EL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A664", "lowercase_mapping": "", "titlecase_mapping": "A664", "symbol": "\uA665" }, 42599: { "value": "A667", "name": "CYRILLIC SMALL LETTER SOFT EM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A666", "lowercase_mapping": "", "titlecase_mapping": "A666", "symbol": "\uA667" }, 42601: { "value": "A669", "name": "CYRILLIC SMALL LETTER MONOCULAR O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A668", "lowercase_mapping": "", "titlecase_mapping": "A668", "symbol": "\uA669" }, 42603: { "value": "A66B", "name": "CYRILLIC SMALL LETTER BINOCULAR O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A66A", "lowercase_mapping": "", "titlecase_mapping": "A66A", "symbol": "\uA66B" }, 42605: { "value": "A66D", "name": "CYRILLIC SMALL LETTER DOUBLE MONOCULAR O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A66C", "lowercase_mapping": "", "titlecase_mapping": "A66C", "symbol": "\uA66D" }, 42625: { "value": "A681", "name": "CYRILLIC SMALL LETTER DWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A680", "lowercase_mapping": "", "titlecase_mapping": "A680", "symbol": "\uA681" }, 42627: { "value": "A683", "name": "CYRILLIC SMALL LETTER DZWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A682", "lowercase_mapping": "", "titlecase_mapping": "A682", "symbol": "\uA683" }, 42629: { "value": "A685", "name": "CYRILLIC SMALL LETTER ZHWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A684", "lowercase_mapping": "", "titlecase_mapping": "A684", "symbol": "\uA685" }, 42631: { "value": "A687", "name": "CYRILLIC SMALL LETTER CCHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A686", "lowercase_mapping": "", "titlecase_mapping": "A686", "symbol": "\uA687" }, 42633: { "value": "A689", "name": "CYRILLIC SMALL LETTER DZZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A688", "lowercase_mapping": "", "titlecase_mapping": "A688", "symbol": "\uA689" }, 42635: { "value": "A68B", "name": "CYRILLIC SMALL LETTER TE WITH MIDDLE HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A68A", "lowercase_mapping": "", "titlecase_mapping": "A68A", "symbol": "\uA68B" }, 42637: { "value": "A68D", "name": "CYRILLIC SMALL LETTER TWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A68C", "lowercase_mapping": "", "titlecase_mapping": "A68C", "symbol": "\uA68D" }, 42639: { "value": "A68F", "name": "CYRILLIC SMALL LETTER TSWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A68E", "lowercase_mapping": "", "titlecase_mapping": "A68E", "symbol": "\uA68F" }, 42641: { "value": "A691", "name": "CYRILLIC SMALL LETTER TSSE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A690", "lowercase_mapping": "", "titlecase_mapping": "A690", "symbol": "\uA691" }, 42643: { "value": "A693", "name": "CYRILLIC SMALL LETTER TCHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A692", "lowercase_mapping": "", "titlecase_mapping": "A692", "symbol": "\uA693" }, 42645: { "value": "A695", "name": "CYRILLIC SMALL LETTER HWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A694", "lowercase_mapping": "", "titlecase_mapping": "A694", "symbol": "\uA695" }, 42647: { "value": "A697", "name": "CYRILLIC SMALL LETTER SHWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A696", "lowercase_mapping": "", "titlecase_mapping": "A696", "symbol": "\uA697" }, 42649: { "value": "A699", "name": "CYRILLIC SMALL LETTER DOUBLE O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A698", "lowercase_mapping": "", "titlecase_mapping": "A698", "symbol": "\uA699" }, 42651: { "value": "A69B", "name": "CYRILLIC SMALL LETTER CROSSED O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A69A", "lowercase_mapping": "", "titlecase_mapping": "A69A", "symbol": "\uA69B" }, 42787: { "value": "A723", "name": "LATIN SMALL LETTER EGYPTOLOGICAL ALEF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A722", "lowercase_mapping": "", "titlecase_mapping": "A722", "symbol": "\uA723" }, 42789: { "value": "A725", "name": "LATIN SMALL LETTER EGYPTOLOGICAL AIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A724", "lowercase_mapping": "", "titlecase_mapping": "A724", "symbol": "\uA725" }, 42791: { "value": "A727", "name": "LATIN SMALL LETTER HENG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A726", "lowercase_mapping": "", "titlecase_mapping": "A726", "symbol": "\uA727" }, 42793: { "value": "A729", "name": "LATIN SMALL LETTER TZ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A728", "lowercase_mapping": "", "titlecase_mapping": "A728", "symbol": "\uA729" }, 42795: { "value": "A72B", "name": "LATIN SMALL LETTER TRESILLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A72A", "lowercase_mapping": "", "titlecase_mapping": "A72A", "symbol": "\uA72B" }, 42797: { "value": "A72D", "name": "LATIN SMALL LETTER CUATRILLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A72C", "lowercase_mapping": "", "titlecase_mapping": "A72C", "symbol": "\uA72D" }, 42799: { "value": "A72F", "name": "LATIN SMALL LETTER CUATRILLO WITH COMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A72E", "lowercase_mapping": "", "titlecase_mapping": "A72E", "symbol": "\uA72F" }, 42800: { "value": "A730", "name": "LATIN LETTER SMALL CAPITAL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA730" }, 42801: { "value": "A731", "name": "LATIN LETTER SMALL CAPITAL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA731" }, 42803: { "value": "A733", "name": "LATIN SMALL LETTER AA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A732", "lowercase_mapping": "", "titlecase_mapping": "A732", "symbol": "\uA733" }, 42805: { "value": "A735", "name": "LATIN SMALL LETTER AO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A734", "lowercase_mapping": "", "titlecase_mapping": "A734", "symbol": "\uA735" }, 42807: { "value": "A737", "name": "LATIN SMALL LETTER AU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A736", "lowercase_mapping": "", "titlecase_mapping": "A736", "symbol": "\uA737" }, 42809: { "value": "A739", "name": "LATIN SMALL LETTER AV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A738", "lowercase_mapping": "", "titlecase_mapping": "A738", "symbol": "\uA739" }, 42811: { "value": "A73B", "name": "LATIN SMALL LETTER AV WITH HORIZONTAL BAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A73A", "lowercase_mapping": "", "titlecase_mapping": "A73A", "symbol": "\uA73B" }, 42813: { "value": "A73D", "name": "LATIN SMALL LETTER AY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A73C", "lowercase_mapping": "", "titlecase_mapping": "A73C", "symbol": "\uA73D" }, 42815: { "value": "A73F", "name": "LATIN SMALL LETTER REVERSED C WITH DOT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A73E", "lowercase_mapping": "", "titlecase_mapping": "A73E", "symbol": "\uA73F" }, 42817: { "value": "A741", "name": "LATIN SMALL LETTER K WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A740", "lowercase_mapping": "", "titlecase_mapping": "A740", "symbol": "\uA741" }, 42819: { "value": "A743", "name": "LATIN SMALL LETTER K WITH DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A742", "lowercase_mapping": "", "titlecase_mapping": "A742", "symbol": "\uA743" }, 42821: { "value": "A745", "name": "LATIN SMALL LETTER K WITH STROKE AND DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A744", "lowercase_mapping": "", "titlecase_mapping": "A744", "symbol": "\uA745" }, 42823: { "value": "A747", "name": "LATIN SMALL LETTER BROKEN L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A746", "lowercase_mapping": "", "titlecase_mapping": "A746", "symbol": "\uA747" }, 42825: { "value": "A749", "name": "LATIN SMALL LETTER L WITH HIGH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A748", "lowercase_mapping": "", "titlecase_mapping": "A748", "symbol": "\uA749" }, 42827: { "value": "A74B", "name": "LATIN SMALL LETTER O WITH LONG STROKE OVERLAY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A74A", "lowercase_mapping": "", "titlecase_mapping": "A74A", "symbol": "\uA74B" }, 42829: { "value": "A74D", "name": "LATIN SMALL LETTER O WITH LOOP", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A74C", "lowercase_mapping": "", "titlecase_mapping": "A74C", "symbol": "\uA74D" }, 42831: { "value": "A74F", "name": "LATIN SMALL LETTER OO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A74E", "lowercase_mapping": "", "titlecase_mapping": "A74E", "symbol": "\uA74F" }, 42833: { "value": "A751", "name": "LATIN SMALL LETTER P WITH STROKE THROUGH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A750", "lowercase_mapping": "", "titlecase_mapping": "A750", "symbol": "\uA751" }, 42835: { "value": "A753", "name": "LATIN SMALL LETTER P WITH FLOURISH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A752", "lowercase_mapping": "", "titlecase_mapping": "A752", "symbol": "\uA753" }, 42837: { "value": "A755", "name": "LATIN SMALL LETTER P WITH SQUIRREL TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A754", "lowercase_mapping": "", "titlecase_mapping": "A754", "symbol": "\uA755" }, 42839: { "value": "A757", "name": "LATIN SMALL LETTER Q WITH STROKE THROUGH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A756", "lowercase_mapping": "", "titlecase_mapping": "A756", "symbol": "\uA757" }, 42841: { "value": "A759", "name": "LATIN SMALL LETTER Q WITH DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A758", "lowercase_mapping": "", "titlecase_mapping": "A758", "symbol": "\uA759" }, 42843: { "value": "A75B", "name": "LATIN SMALL LETTER R ROTUNDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A75A", "lowercase_mapping": "", "titlecase_mapping": "A75A", "symbol": "\uA75B" }, 42845: { "value": "A75D", "name": "LATIN SMALL LETTER RUM ROTUNDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A75C", "lowercase_mapping": "", "titlecase_mapping": "A75C", "symbol": "\uA75D" }, 42847: { "value": "A75F", "name": "LATIN SMALL LETTER V WITH DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A75E", "lowercase_mapping": "", "titlecase_mapping": "A75E", "symbol": "\uA75F" }, 42849: { "value": "A761", "name": "LATIN SMALL LETTER VY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A760", "lowercase_mapping": "", "titlecase_mapping": "A760", "symbol": "\uA761" }, 42851: { "value": "A763", "name": "LATIN SMALL LETTER VISIGOTHIC Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A762", "lowercase_mapping": "", "titlecase_mapping": "A762", "symbol": "\uA763" }, 42853: { "value": "A765", "name": "LATIN SMALL LETTER THORN WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A764", "lowercase_mapping": "", "titlecase_mapping": "A764", "symbol": "\uA765" }, 42855: { "value": "A767", "name": "LATIN SMALL LETTER THORN WITH STROKE THROUGH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A766", "lowercase_mapping": "", "titlecase_mapping": "A766", "symbol": "\uA767" }, 42857: { "value": "A769", "name": "LATIN SMALL LETTER VEND", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A768", "lowercase_mapping": "", "titlecase_mapping": "A768", "symbol": "\uA769" }, 42859: { "value": "A76B", "name": "LATIN SMALL LETTER ET", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A76A", "lowercase_mapping": "", "titlecase_mapping": "A76A", "symbol": "\uA76B" }, 42861: { "value": "A76D", "name": "LATIN SMALL LETTER IS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A76C", "lowercase_mapping": "", "titlecase_mapping": "A76C", "symbol": "\uA76D" }, 42863: { "value": "A76F", "name": "LATIN SMALL LETTER CON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A76E", "lowercase_mapping": "", "titlecase_mapping": "A76E", "symbol": "\uA76F" }, 42865: { "value": "A771", "name": "LATIN SMALL LETTER DUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA771" }, 42866: { "value": "A772", "name": "LATIN SMALL LETTER LUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA772" }, 42867: { "value": "A773", "name": "LATIN SMALL LETTER MUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA773" }, 42868: { "value": "A774", "name": "LATIN SMALL LETTER NUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA774" }, 42869: { "value": "A775", "name": "LATIN SMALL LETTER RUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA775" }, 42870: { "value": "A776", "name": "LATIN LETTER SMALL CAPITAL RUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA776" }, 42871: { "value": "A777", "name": "LATIN SMALL LETTER TUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA777" }, 42872: { "value": "A778", "name": "LATIN SMALL LETTER UM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA778" }, 42874: { "value": "A77A", "name": "LATIN SMALL LETTER INSULAR D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A779", "lowercase_mapping": "", "titlecase_mapping": "A779", "symbol": "\uA77A" }, 42876: { "value": "A77C", "name": "LATIN SMALL LETTER INSULAR F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A77B", "lowercase_mapping": "", "titlecase_mapping": "A77B", "symbol": "\uA77C" }, 42879: { "value": "A77F", "name": "LATIN SMALL LETTER TURNED INSULAR G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A77E", "lowercase_mapping": "", "titlecase_mapping": "A77E", "symbol": "\uA77F" }, 42881: { "value": "A781", "name": "LATIN SMALL LETTER TURNED L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A780", "lowercase_mapping": "", "titlecase_mapping": "A780", "symbol": "\uA781" }, 42883: { "value": "A783", "name": "LATIN SMALL LETTER INSULAR R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A782", "lowercase_mapping": "", "titlecase_mapping": "A782", "symbol": "\uA783" }, 42885: { "value": "A785", "name": "LATIN SMALL LETTER INSULAR S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A784", "lowercase_mapping": "", "titlecase_mapping": "A784", "symbol": "\uA785" }, 42887: { "value": "A787", "name": "LATIN SMALL LETTER INSULAR T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A786", "lowercase_mapping": "", "titlecase_mapping": "A786", "symbol": "\uA787" }, 42892: { "value": "A78C", "name": "LATIN SMALL LETTER SALTILLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A78B", "lowercase_mapping": "", "titlecase_mapping": "A78B", "symbol": "\uA78C" }, 42894: { "value": "A78E", "name": "LATIN SMALL LETTER L WITH RETROFLEX HOOK AND BELT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA78E" }, 42897: { "value": "A791", "name": "LATIN SMALL LETTER N WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A790", "lowercase_mapping": "", "titlecase_mapping": "A790", "symbol": "\uA791" }, 42899: { "value": "A793", "name": "LATIN SMALL LETTER C WITH BAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A792", "lowercase_mapping": "", "titlecase_mapping": "A792", "symbol": "\uA793" }, 42900: { "value": "A794", "name": "LATIN SMALL LETTER C WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA794" }, 42901: { "value": "A795", "name": "LATIN SMALL LETTER H WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA795" }, 42903: { "value": "A797", "name": "LATIN SMALL LETTER B WITH FLOURISH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A796", "lowercase_mapping": "", "titlecase_mapping": "A796", "symbol": "\uA797" }, 42905: { "value": "A799", "name": "LATIN SMALL LETTER F WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A798", "lowercase_mapping": "", "titlecase_mapping": "A798", "symbol": "\uA799" }, 42907: { "value": "A79B", "name": "LATIN SMALL LETTER VOLAPUK AE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A79A", "lowercase_mapping": "", "titlecase_mapping": "A79A", "symbol": "\uA79B" }, 42909: { "value": "A79D", "name": "LATIN SMALL LETTER VOLAPUK OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A79C", "lowercase_mapping": "", "titlecase_mapping": "A79C", "symbol": "\uA79D" }, 42911: { "value": "A79F", "name": "LATIN SMALL LETTER VOLAPUK UE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A79E", "lowercase_mapping": "", "titlecase_mapping": "A79E", "symbol": "\uA79F" }, 42913: { "value": "A7A1", "name": "LATIN SMALL LETTER G WITH OBLIQUE STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7A0", "lowercase_mapping": "", "titlecase_mapping": "A7A0", "symbol": "\uA7A1" }, 42915: { "value": "A7A3", "name": "LATIN SMALL LETTER K WITH OBLIQUE STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7A2", "lowercase_mapping": "", "titlecase_mapping": "A7A2", "symbol": "\uA7A3" }, 42917: { "value": "A7A5", "name": "LATIN SMALL LETTER N WITH OBLIQUE STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7A4", "lowercase_mapping": "", "titlecase_mapping": "A7A4", "symbol": "\uA7A5" }, 42919: { "value": "A7A7", "name": "LATIN SMALL LETTER R WITH OBLIQUE STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7A6", "lowercase_mapping": "", "titlecase_mapping": "A7A6", "symbol": "\uA7A7" }, 42921: { "value": "A7A9", "name": "LATIN SMALL LETTER S WITH OBLIQUE STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7A8", "lowercase_mapping": "", "titlecase_mapping": "A7A8", "symbol": "\uA7A9" }, 42933: { "value": "A7B5", "name": "LATIN SMALL LETTER BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7B4", "lowercase_mapping": "", "titlecase_mapping": "A7B4", "symbol": "\uA7B5" }, 42935: { "value": "A7B7", "name": "LATIN SMALL LETTER OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7B6", "lowercase_mapping": "", "titlecase_mapping": "A7B6", "symbol": "\uA7B7" }, 43002: { "value": "A7FA", "name": "LATIN LETTER SMALL CAPITAL TURNED M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA7FA" }, 43824: { "value": "AB30", "name": "LATIN SMALL LETTER BARRED ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB30" }, 43825: { "value": "AB31", "name": "LATIN SMALL LETTER A REVERSED-SCHWA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB31" }, 43826: { "value": "AB32", "name": "LATIN SMALL LETTER BLACKLETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB32" }, 43827: { "value": "AB33", "name": "LATIN SMALL LETTER BARRED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB33" }, 43828: { "value": "AB34", "name": "LATIN SMALL LETTER E WITH FLOURISH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB34" }, 43829: { "value": "AB35", "name": "LATIN SMALL LETTER LENIS F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB35" }, 43830: { "value": "AB36", "name": "LATIN SMALL LETTER SCRIPT G WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB36" }, 43831: { "value": "AB37", "name": "LATIN SMALL LETTER L WITH INVERTED LAZY S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB37" }, 43832: { "value": "AB38", "name": "LATIN SMALL LETTER L WITH DOUBLE MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB38" }, 43833: { "value": "AB39", "name": "LATIN SMALL LETTER L WITH MIDDLE RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB39" }, 43834: { "value": "AB3A", "name": "LATIN SMALL LETTER M WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3A" }, 43835: { "value": "AB3B", "name": "LATIN SMALL LETTER N WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3B" }, 43836: { "value": "AB3C", "name": "LATIN SMALL LETTER ENG WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3C" }, 43837: { "value": "AB3D", "name": "LATIN SMALL LETTER BLACKLETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3D" }, 43838: { "value": "AB3E", "name": "LATIN SMALL LETTER BLACKLETTER O WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3E" }, 43839: { "value": "AB3F", "name": "LATIN SMALL LETTER OPEN O WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3F" }, 43840: { "value": "AB40", "name": "LATIN SMALL LETTER INVERTED OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB40" }, 43841: { "value": "AB41", "name": "LATIN SMALL LETTER TURNED OE WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB41" }, 43842: { "value": "AB42", "name": "LATIN SMALL LETTER TURNED OE WITH HORIZONTAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB42" }, 43843: { "value": "AB43", "name": "LATIN SMALL LETTER TURNED O OPEN-O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB43" }, 43844: { "value": "AB44", "name": "LATIN SMALL LETTER TURNED O OPEN-O WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB44" }, 43845: { "value": "AB45", "name": "LATIN SMALL LETTER STIRRUP R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB45" }, 43846: { "value": "AB46", "name": "LATIN LETTER SMALL CAPITAL R WITH RIGHT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB46" }, 43847: { "value": "AB47", "name": "LATIN SMALL LETTER R WITHOUT HANDLE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB47" }, 43848: { "value": "AB48", "name": "LATIN SMALL LETTER DOUBLE R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB48" }, 43849: { "value": "AB49", "name": "LATIN SMALL LETTER R WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB49" }, 43850: { "value": "AB4A", "name": "LATIN SMALL LETTER DOUBLE R WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4A" }, 43851: { "value": "AB4B", "name": "LATIN SMALL LETTER SCRIPT R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4B" }, 43852: { "value": "AB4C", "name": "LATIN SMALL LETTER SCRIPT R WITH RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4C" }, 43853: { "value": "AB4D", "name": "LATIN SMALL LETTER BASELINE ESH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4D" }, 43854: { "value": "AB4E", "name": "LATIN SMALL LETTER U WITH SHORT RIGHT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4E" }, 43855: { "value": "AB4F", "name": "LATIN SMALL LETTER U BAR WITH SHORT RIGHT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4F" }, 43856: { "value": "AB50", "name": "LATIN SMALL LETTER UI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB50" }, 43857: { "value": "AB51", "name": "LATIN SMALL LETTER TURNED UI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB51" }, 43858: { "value": "AB52", "name": "LATIN SMALL LETTER U WITH LEFT HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB52" }, 43859: { "value": "AB53", "name": "LATIN SMALL LETTER CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7B3", "lowercase_mapping": "", "titlecase_mapping": "A7B3", "symbol": "\uAB53" }, 43860: { "value": "AB54", "name": "LATIN SMALL LETTER CHI WITH LOW RIGHT RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB54" }, 43861: { "value": "AB55", "name": "LATIN SMALL LETTER CHI WITH LOW LEFT SERIF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB55" }, 43862: { "value": "AB56", "name": "LATIN SMALL LETTER X WITH LOW RIGHT RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB56" }, 43863: { "value": "AB57", "name": "LATIN SMALL LETTER X WITH LONG LEFT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB57" }, 43864: { "value": "AB58", "name": "LATIN SMALL LETTER X WITH LONG LEFT LEG AND LOW RIGHT RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB58" }, 43865: { "value": "AB59", "name": "LATIN SMALL LETTER X WITH LONG LEFT LEG WITH SERIF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB59" }, 43866: { "value": "AB5A", "name": "LATIN SMALL LETTER Y WITH SHORT RIGHT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB5A" }, 43872: { "value": "AB60", "name": "LATIN SMALL LETTER SAKHA YAT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB60" }, 43873: { "value": "AB61", "name": "LATIN SMALL LETTER IOTIFIED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB61" }, 43874: { "value": "AB62", "name": "LATIN SMALL LETTER OPEN OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB62" }, 43875: { "value": "AB63", "name": "LATIN SMALL LETTER UO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB63" }, 43876: { "value": "AB64", "name": "LATIN SMALL LETTER INVERTED ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB64" }, 43877: { "value": "AB65", "name": "GREEK LETTER SMALL CAPITAL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB65" }, 43888: { "value": "AB70", "name": "CHEROKEE SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A0", "lowercase_mapping": "", "titlecase_mapping": "13A0", "symbol": "\uAB70" }, 43889: { "value": "AB71", "name": "CHEROKEE SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A1", "lowercase_mapping": "", "titlecase_mapping": "13A1", "symbol": "\uAB71" }, 43890: { "value": "AB72", "name": "CHEROKEE SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A2", "lowercase_mapping": "", "titlecase_mapping": "13A2", "symbol": "\uAB72" }, 43891: { "value": "AB73", "name": "CHEROKEE SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A3", "lowercase_mapping": "", "titlecase_mapping": "13A3", "symbol": "\uAB73" }, 43892: { "value": "AB74", "name": "CHEROKEE SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A4", "lowercase_mapping": "", "titlecase_mapping": "13A4", "symbol": "\uAB74" }, 43893: { "value": "AB75", "name": "CHEROKEE SMALL LETTER V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A5", "lowercase_mapping": "", "titlecase_mapping": "13A5", "symbol": "\uAB75" }, 43894: { "value": "AB76", "name": "CHEROKEE SMALL LETTER GA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A6", "lowercase_mapping": "", "titlecase_mapping": "13A6", "symbol": "\uAB76" }, 43895: { "value": "AB77", "name": "CHEROKEE SMALL LETTER KA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A7", "lowercase_mapping": "", "titlecase_mapping": "13A7", "symbol": "\uAB77" }, 43896: { "value": "AB78", "name": "CHEROKEE SMALL LETTER GE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A8", "lowercase_mapping": "", "titlecase_mapping": "13A8", "symbol": "\uAB78" }, 43897: { "value": "AB79", "name": "CHEROKEE SMALL LETTER GI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A9", "lowercase_mapping": "", "titlecase_mapping": "13A9", "symbol": "\uAB79" }, 43898: { "value": "AB7A", "name": "CHEROKEE SMALL LETTER GO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AA", "lowercase_mapping": "", "titlecase_mapping": "13AA", "symbol": "\uAB7A" }, 43899: { "value": "AB7B", "name": "CHEROKEE SMALL LETTER GU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AB", "lowercase_mapping": "", "titlecase_mapping": "13AB", "symbol": "\uAB7B" }, 43900: { "value": "AB7C", "name": "CHEROKEE SMALL LETTER GV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AC", "lowercase_mapping": "", "titlecase_mapping": "13AC", "symbol": "\uAB7C" }, 43901: { "value": "AB7D", "name": "CHEROKEE SMALL LETTER HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AD", "lowercase_mapping": "", "titlecase_mapping": "13AD", "symbol": "\uAB7D" }, 43902: { "value": "AB7E", "name": "CHEROKEE SMALL LETTER HE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AE", "lowercase_mapping": "", "titlecase_mapping": "13AE", "symbol": "\uAB7E" }, 43903: { "value": "AB7F", "name": "CHEROKEE SMALL LETTER HI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AF", "lowercase_mapping": "", "titlecase_mapping": "13AF", "symbol": "\uAB7F" }, 43904: { "value": "AB80", "name": "CHEROKEE SMALL LETTER HO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B0", "lowercase_mapping": "", "titlecase_mapping": "13B0", "symbol": "\uAB80" }, 43905: { "value": "AB81", "name": "CHEROKEE SMALL LETTER HU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B1", "lowercase_mapping": "", "titlecase_mapping": "13B1", "symbol": "\uAB81" }, 43906: { "value": "AB82", "name": "CHEROKEE SMALL LETTER HV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B2", "lowercase_mapping": "", "titlecase_mapping": "13B2", "symbol": "\uAB82" }, 43907: { "value": "AB83", "name": "CHEROKEE SMALL LETTER LA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B3", "lowercase_mapping": "", "titlecase_mapping": "13B3", "symbol": "\uAB83" }, 43908: { "value": "AB84", "name": "CHEROKEE SMALL LETTER LE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B4", "lowercase_mapping": "", "titlecase_mapping": "13B4", "symbol": "\uAB84" }, 43909: { "value": "AB85", "name": "CHEROKEE SMALL LETTER LI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B5", "lowercase_mapping": "", "titlecase_mapping": "13B5", "symbol": "\uAB85" }, 43910: { "value": "AB86", "name": "CHEROKEE SMALL LETTER LO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B6", "lowercase_mapping": "", "titlecase_mapping": "13B6", "symbol": "\uAB86" }, 43911: { "value": "AB87", "name": "CHEROKEE SMALL LETTER LU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B7", "lowercase_mapping": "", "titlecase_mapping": "13B7", "symbol": "\uAB87" }, 43912: { "value": "AB88", "name": "CHEROKEE SMALL LETTER LV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B8", "lowercase_mapping": "", "titlecase_mapping": "13B8", "symbol": "\uAB88" }, 43913: { "value": "AB89", "name": "CHEROKEE SMALL LETTER MA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B9", "lowercase_mapping": "", "titlecase_mapping": "13B9", "symbol": "\uAB89" }, 43914: { "value": "AB8A", "name": "CHEROKEE SMALL LETTER ME", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BA", "lowercase_mapping": "", "titlecase_mapping": "13BA", "symbol": "\uAB8A" }, 43915: { "value": "AB8B", "name": "CHEROKEE SMALL LETTER MI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BB", "lowercase_mapping": "", "titlecase_mapping": "13BB", "symbol": "\uAB8B" }, 43916: { "value": "AB8C", "name": "CHEROKEE SMALL LETTER MO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BC", "lowercase_mapping": "", "titlecase_mapping": "13BC", "symbol": "\uAB8C" }, 43917: { "value": "AB8D", "name": "CHEROKEE SMALL LETTER MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BD", "lowercase_mapping": "", "titlecase_mapping": "13BD", "symbol": "\uAB8D" }, 43918: { "value": "AB8E", "name": "CHEROKEE SMALL LETTER NA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BE", "lowercase_mapping": "", "titlecase_mapping": "13BE", "symbol": "\uAB8E" }, 43919: { "value": "AB8F", "name": "CHEROKEE SMALL LETTER HNA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BF", "lowercase_mapping": "", "titlecase_mapping": "13BF", "symbol": "\uAB8F" }, 43920: { "value": "AB90", "name": "CHEROKEE SMALL LETTER NAH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C0", "lowercase_mapping": "", "titlecase_mapping": "13C0", "symbol": "\uAB90" }, 43921: { "value": "AB91", "name": "CHEROKEE SMALL LETTER NE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C1", "lowercase_mapping": "", "titlecase_mapping": "13C1", "symbol": "\uAB91" }, 43922: { "value": "AB92", "name": "CHEROKEE SMALL LETTER NI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C2", "lowercase_mapping": "", "titlecase_mapping": "13C2", "symbol": "\uAB92" }, 43923: { "value": "AB93", "name": "CHEROKEE SMALL LETTER NO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C3", "lowercase_mapping": "", "titlecase_mapping": "13C3", "symbol": "\uAB93" }, 43924: { "value": "AB94", "name": "CHEROKEE SMALL LETTER NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C4", "lowercase_mapping": "", "titlecase_mapping": "13C4", "symbol": "\uAB94" }, 43925: { "value": "AB95", "name": "CHEROKEE SMALL LETTER NV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C5", "lowercase_mapping": "", "titlecase_mapping": "13C5", "symbol": "\uAB95" }, 43926: { "value": "AB96", "name": "CHEROKEE SMALL LETTER QUA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C6", "lowercase_mapping": "", "titlecase_mapping": "13C6", "symbol": "\uAB96" }, 43927: { "value": "AB97", "name": "CHEROKEE SMALL LETTER QUE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C7", "lowercase_mapping": "", "titlecase_mapping": "13C7", "symbol": "\uAB97" }, 43928: { "value": "AB98", "name": "CHEROKEE SMALL LETTER QUI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C8", "lowercase_mapping": "", "titlecase_mapping": "13C8", "symbol": "\uAB98" }, 43929: { "value": "AB99", "name": "CHEROKEE SMALL LETTER QUO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C9", "lowercase_mapping": "", "titlecase_mapping": "13C9", "symbol": "\uAB99" }, 43930: { "value": "AB9A", "name": "CHEROKEE SMALL LETTER QUU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CA", "lowercase_mapping": "", "titlecase_mapping": "13CA", "symbol": "\uAB9A" }, 43931: { "value": "AB9B", "name": "CHEROKEE SMALL LETTER QUV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CB", "lowercase_mapping": "", "titlecase_mapping": "13CB", "symbol": "\uAB9B" }, 43932: { "value": "AB9C", "name": "CHEROKEE SMALL LETTER SA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CC", "lowercase_mapping": "", "titlecase_mapping": "13CC", "symbol": "\uAB9C" }, 43933: { "value": "AB9D", "name": "CHEROKEE SMALL LETTER S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CD", "lowercase_mapping": "", "titlecase_mapping": "13CD", "symbol": "\uAB9D" }, 43934: { "value": "AB9E", "name": "CHEROKEE SMALL LETTER SE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CE", "lowercase_mapping": "", "titlecase_mapping": "13CE", "symbol": "\uAB9E" }, 43935: { "value": "AB9F", "name": "CHEROKEE SMALL LETTER SI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CF", "lowercase_mapping": "", "titlecase_mapping": "13CF", "symbol": "\uAB9F" }, 43936: { "value": "ABA0", "name": "CHEROKEE SMALL LETTER SO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D0", "lowercase_mapping": "", "titlecase_mapping": "13D0", "symbol": "\uABA0" }, 43937: { "value": "ABA1", "name": "CHEROKEE SMALL LETTER SU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D1", "lowercase_mapping": "", "titlecase_mapping": "13D1", "symbol": "\uABA1" }, 43938: { "value": "ABA2", "name": "CHEROKEE SMALL LETTER SV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D2", "lowercase_mapping": "", "titlecase_mapping": "13D2", "symbol": "\uABA2" }, 43939: { "value": "ABA3", "name": "CHEROKEE SMALL LETTER DA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D3", "lowercase_mapping": "", "titlecase_mapping": "13D3", "symbol": "\uABA3" }, 43940: { "value": "ABA4", "name": "CHEROKEE SMALL LETTER TA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D4", "lowercase_mapping": "", "titlecase_mapping": "13D4", "symbol": "\uABA4" }, 43941: { "value": "ABA5", "name": "CHEROKEE SMALL LETTER DE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D5", "lowercase_mapping": "", "titlecase_mapping": "13D5", "symbol": "\uABA5" }, 43942: { "value": "ABA6", "name": "CHEROKEE SMALL LETTER TE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D6", "lowercase_mapping": "", "titlecase_mapping": "13D6", "symbol": "\uABA6" }, 43943: { "value": "ABA7", "name": "CHEROKEE SMALL LETTER DI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D7", "lowercase_mapping": "", "titlecase_mapping": "13D7", "symbol": "\uABA7" }, 43944: { "value": "ABA8", "name": "CHEROKEE SMALL LETTER TI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D8", "lowercase_mapping": "", "titlecase_mapping": "13D8", "symbol": "\uABA8" }, 43945: { "value": "ABA9", "name": "CHEROKEE SMALL LETTER DO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D9", "lowercase_mapping": "", "titlecase_mapping": "13D9", "symbol": "\uABA9" }, 43946: { "value": "ABAA", "name": "CHEROKEE SMALL LETTER DU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DA", "lowercase_mapping": "", "titlecase_mapping": "13DA", "symbol": "\uABAA" }, 43947: { "value": "ABAB", "name": "CHEROKEE SMALL LETTER DV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DB", "lowercase_mapping": "", "titlecase_mapping": "13DB", "symbol": "\uABAB" }, 43948: { "value": "ABAC", "name": "CHEROKEE SMALL LETTER DLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DC", "lowercase_mapping": "", "titlecase_mapping": "13DC", "symbol": "\uABAC" }, 43949: { "value": "ABAD", "name": "CHEROKEE SMALL LETTER TLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DD", "lowercase_mapping": "", "titlecase_mapping": "13DD", "symbol": "\uABAD" }, 43950: { "value": "ABAE", "name": "CHEROKEE SMALL LETTER TLE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DE", "lowercase_mapping": "", "titlecase_mapping": "13DE", "symbol": "\uABAE" }, 43951: { "value": "ABAF", "name": "CHEROKEE SMALL LETTER TLI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DF", "lowercase_mapping": "", "titlecase_mapping": "13DF", "symbol": "\uABAF" }, 43952: { "value": "ABB0", "name": "CHEROKEE SMALL LETTER TLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E0", "lowercase_mapping": "", "titlecase_mapping": "13E0", "symbol": "\uABB0" }, 43953: { "value": "ABB1", "name": "CHEROKEE SMALL LETTER TLU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E1", "lowercase_mapping": "", "titlecase_mapping": "13E1", "symbol": "\uABB1" }, 43954: { "value": "ABB2", "name": "CHEROKEE SMALL LETTER TLV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E2", "lowercase_mapping": "", "titlecase_mapping": "13E2", "symbol": "\uABB2" }, 43955: { "value": "ABB3", "name": "CHEROKEE SMALL LETTER TSA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E3", "lowercase_mapping": "", "titlecase_mapping": "13E3", "symbol": "\uABB3" }, 43956: { "value": "ABB4", "name": "CHEROKEE SMALL LETTER TSE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E4", "lowercase_mapping": "", "titlecase_mapping": "13E4", "symbol": "\uABB4" }, 43957: { "value": "ABB5", "name": "CHEROKEE SMALL LETTER TSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E5", "lowercase_mapping": "", "titlecase_mapping": "13E5", "symbol": "\uABB5" }, 43958: { "value": "ABB6", "name": "CHEROKEE SMALL LETTER TSO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E6", "lowercase_mapping": "", "titlecase_mapping": "13E6", "symbol": "\uABB6" }, 43959: { "value": "ABB7", "name": "CHEROKEE SMALL LETTER TSU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E7", "lowercase_mapping": "", "titlecase_mapping": "13E7", "symbol": "\uABB7" }, 43960: { "value": "ABB8", "name": "CHEROKEE SMALL LETTER TSV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E8", "lowercase_mapping": "", "titlecase_mapping": "13E8", "symbol": "\uABB8" }, 43961: { "value": "ABB9", "name": "CHEROKEE SMALL LETTER WA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E9", "lowercase_mapping": "", "titlecase_mapping": "13E9", "symbol": "\uABB9" }, 43962: { "value": "ABBA", "name": "CHEROKEE SMALL LETTER WE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13EA", "lowercase_mapping": "", "titlecase_mapping": "13EA", "symbol": "\uABBA" }, 43963: { "value": "ABBB", "name": "CHEROKEE SMALL LETTER WI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13EB", "lowercase_mapping": "", "titlecase_mapping": "13EB", "symbol": "\uABBB" }, 43964: { "value": "ABBC", "name": "CHEROKEE SMALL LETTER WO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13EC", "lowercase_mapping": "", "titlecase_mapping": "13EC", "symbol": "\uABBC" }, 43965: { "value": "ABBD", "name": "CHEROKEE SMALL LETTER WU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13ED", "lowercase_mapping": "", "titlecase_mapping": "13ED", "symbol": "\uABBD" }, 43966: { "value": "ABBE", "name": "CHEROKEE SMALL LETTER WV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13EE", "lowercase_mapping": "", "titlecase_mapping": "13EE", "symbol": "\uABBE" }, 43967: { "value": "ABBF", "name": "CHEROKEE SMALL LETTER YA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13EF", "lowercase_mapping": "", "titlecase_mapping": "13EF", "symbol": "\uABBF" }, 64256: { "value": "FB00", "name": "LATIN SMALL LIGATURE FF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB00" }, 64257: { "value": "FB01", "name": "LATIN SMALL LIGATURE FI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB01" }, 64258: { "value": "FB02", "name": "LATIN SMALL LIGATURE FL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB02" }, 64259: { "value": "FB03", "name": "LATIN SMALL LIGATURE FFI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066 0066 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB03" }, 64260: { "value": "FB04", "name": "LATIN SMALL LIGATURE FFL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066 0066 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB04" }, 64261: { "value": "FB05", "name": "LATIN SMALL LIGATURE LONG S T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 017F 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB05" }, 64262: { "value": "FB06", "name": "LATIN SMALL LIGATURE ST", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB06" }, 64275: { "value": "FB13", "name": "ARMENIAN SMALL LIGATURE MEN NOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0574 0576", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB13" }, 64276: { "value": "FB14", "name": "ARMENIAN SMALL LIGATURE MEN ECH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0574 0565", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB14" }, 64277: { "value": "FB15", "name": "ARMENIAN SMALL LIGATURE MEN INI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0574 056B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB15" }, 64278: { "value": "FB16", "name": "ARMENIAN SMALL LIGATURE VEW NOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 057E 0576", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB16" }, 64279: { "value": "FB17", "name": "ARMENIAN SMALL LIGATURE MEN XEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0574 056D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB17" }, 65345: { "value": "FF41", "name": "FULLWIDTH LATIN SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF21", "lowercase_mapping": "", "titlecase_mapping": "FF21", "symbol": "\uFF41" }, 65346: { "value": "FF42", "name": "FULLWIDTH LATIN SMALL LETTER B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF22", "lowercase_mapping": "", "titlecase_mapping": "FF22", "symbol": "\uFF42" }, 65347: { "value": "FF43", "name": "FULLWIDTH LATIN SMALL LETTER C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF23", "lowercase_mapping": "", "titlecase_mapping": "FF23", "symbol": "\uFF43" }, 65348: { "value": "FF44", "name": "FULLWIDTH LATIN SMALL LETTER D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF24", "lowercase_mapping": "", "titlecase_mapping": "FF24", "symbol": "\uFF44" }, 65349: { "value": "FF45", "name": "FULLWIDTH LATIN SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF25", "lowercase_mapping": "", "titlecase_mapping": "FF25", "symbol": "\uFF45" }, 65350: { "value": "FF46", "name": "FULLWIDTH LATIN SMALL LETTER F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF26", "lowercase_mapping": "", "titlecase_mapping": "FF26", "symbol": "\uFF46" }, 65351: { "value": "FF47", "name": "FULLWIDTH LATIN SMALL LETTER G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF27", "lowercase_mapping": "", "titlecase_mapping": "FF27", "symbol": "\uFF47" }, 65352: { "value": "FF48", "name": "FULLWIDTH LATIN SMALL LETTER H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF28", "lowercase_mapping": "", "titlecase_mapping": "FF28", "symbol": "\uFF48" }, 65353: { "value": "FF49", "name": "FULLWIDTH LATIN SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF29", "lowercase_mapping": "", "titlecase_mapping": "FF29", "symbol": "\uFF49" }, 65354: { "value": "FF4A", "name": "FULLWIDTH LATIN SMALL LETTER J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2A", "lowercase_mapping": "", "titlecase_mapping": "FF2A", "symbol": "\uFF4A" }, 65355: { "value": "FF4B", "name": "FULLWIDTH LATIN SMALL LETTER K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2B", "lowercase_mapping": "", "titlecase_mapping": "FF2B", "symbol": "\uFF4B" }, 65356: { "value": "FF4C", "name": "FULLWIDTH LATIN SMALL LETTER L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2C", "lowercase_mapping": "", "titlecase_mapping": "FF2C", "symbol": "\uFF4C" }, 65357: { "value": "FF4D", "name": "FULLWIDTH LATIN SMALL LETTER M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2D", "lowercase_mapping": "", "titlecase_mapping": "FF2D", "symbol": "\uFF4D" }, 65358: { "value": "FF4E", "name": "FULLWIDTH LATIN SMALL LETTER N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2E", "lowercase_mapping": "", "titlecase_mapping": "FF2E", "symbol": "\uFF4E" }, 65359: { "value": "FF4F", "name": "FULLWIDTH LATIN SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2F", "lowercase_mapping": "", "titlecase_mapping": "FF2F", "symbol": "\uFF4F" }, 65360: { "value": "FF50", "name": "FULLWIDTH LATIN SMALL LETTER P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF30", "lowercase_mapping": "", "titlecase_mapping": "FF30", "symbol": "\uFF50" }, 65361: { "value": "FF51", "name": "FULLWIDTH LATIN SMALL LETTER Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF31", "lowercase_mapping": "", "titlecase_mapping": "FF31", "symbol": "\uFF51" }, 65362: { "value": "FF52", "name": "FULLWIDTH LATIN SMALL LETTER R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF32", "lowercase_mapping": "", "titlecase_mapping": "FF32", "symbol": "\uFF52" }, 65363: { "value": "FF53", "name": "FULLWIDTH LATIN SMALL LETTER S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF33", "lowercase_mapping": "", "titlecase_mapping": "FF33", "symbol": "\uFF53" }, 65364: { "value": "FF54", "name": "FULLWIDTH LATIN SMALL LETTER T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF34", "lowercase_mapping": "", "titlecase_mapping": "FF34", "symbol": "\uFF54" }, 65365: { "value": "FF55", "name": "FULLWIDTH LATIN SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF35", "lowercase_mapping": "", "titlecase_mapping": "FF35", "symbol": "\uFF55" }, 65366: { "value": "FF56", "name": "FULLWIDTH LATIN SMALL LETTER V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF36", "lowercase_mapping": "", "titlecase_mapping": "FF36", "symbol": "\uFF56" }, 65367: { "value": "FF57", "name": "FULLWIDTH LATIN SMALL LETTER W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF37", "lowercase_mapping": "", "titlecase_mapping": "FF37", "symbol": "\uFF57" }, 65368: { "value": "FF58", "name": "FULLWIDTH LATIN SMALL LETTER X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF38", "lowercase_mapping": "", "titlecase_mapping": "FF38", "symbol": "\uFF58" }, 65369: { "value": "FF59", "name": "FULLWIDTH LATIN SMALL LETTER Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF39", "lowercase_mapping": "", "titlecase_mapping": "FF39", "symbol": "\uFF59" }, 65370: { "value": "FF5A", "name": "FULLWIDTH LATIN SMALL LETTER Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF3A", "lowercase_mapping": "", "titlecase_mapping": "FF3A", "symbol": "\uFF5A" }, 66600: { "value": "10428", "name": "DESERET SMALL LETTER LONG I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10400", "lowercase_mapping": "", "titlecase_mapping": "10400", "symbol": "\u0428" }, 66601: { "value": "10429", "name": "DESERET SMALL LETTER LONG E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10401", "lowercase_mapping": "", "titlecase_mapping": "10401", "symbol": "\u0429" }, 66602: { "value": "1042A", "name": "DESERET SMALL LETTER LONG A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10402", "lowercase_mapping": "", "titlecase_mapping": "10402", "symbol": "\u042A" }, 66603: { "value": "1042B", "name": "DESERET SMALL LETTER LONG AH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10403", "lowercase_mapping": "", "titlecase_mapping": "10403", "symbol": "\u042B" }, 66604: { "value": "1042C", "name": "DESERET SMALL LETTER LONG O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10404", "lowercase_mapping": "", "titlecase_mapping": "10404", "symbol": "\u042C" }, 66605: { "value": "1042D", "name": "DESERET SMALL LETTER LONG OO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10405", "lowercase_mapping": "", "titlecase_mapping": "10405", "symbol": "\u042D" }, 66606: { "value": "1042E", "name": "DESERET SMALL LETTER SHORT I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10406", "lowercase_mapping": "", "titlecase_mapping": "10406", "symbol": "\u042E" }, 66607: { "value": "1042F", "name": "DESERET SMALL LETTER SHORT E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10407", "lowercase_mapping": "", "titlecase_mapping": "10407", "symbol": "\u042F" }, 66608: { "value": "10430", "name": "DESERET SMALL LETTER SHORT A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10408", "lowercase_mapping": "", "titlecase_mapping": "10408", "symbol": "\u0430" }, 66609: { "value": "10431", "name": "DESERET SMALL LETTER SHORT AH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10409", "lowercase_mapping": "", "titlecase_mapping": "10409", "symbol": "\u0431" }, 66610: { "value": "10432", "name": "DESERET SMALL LETTER SHORT O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040A", "lowercase_mapping": "", "titlecase_mapping": "1040A", "symbol": "\u0432" }, 66611: { "value": "10433", "name": "DESERET SMALL LETTER SHORT OO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040B", "lowercase_mapping": "", "titlecase_mapping": "1040B", "symbol": "\u0433" }, 66612: { "value": "10434", "name": "DESERET SMALL LETTER AY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040C", "lowercase_mapping": "", "titlecase_mapping": "1040C", "symbol": "\u0434" }, 66613: { "value": "10435", "name": "DESERET SMALL LETTER OW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040D", "lowercase_mapping": "", "titlecase_mapping": "1040D", "symbol": "\u0435" }, 66614: { "value": "10436", "name": "DESERET SMALL LETTER WU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040E", "lowercase_mapping": "", "titlecase_mapping": "1040E", "symbol": "\u0436" }, 66615: { "value": "10437", "name": "DESERET SMALL LETTER YEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040F", "lowercase_mapping": "", "titlecase_mapping": "1040F", "symbol": "\u0437" }, 66616: { "value": "10438", "name": "DESERET SMALL LETTER H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10410", "lowercase_mapping": "", "titlecase_mapping": "10410", "symbol": "\u0438" }, 66617: { "value": "10439", "name": "DESERET SMALL LETTER PEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10411", "lowercase_mapping": "", "titlecase_mapping": "10411", "symbol": "\u0439" }, 66618: { "value": "1043A", "name": "DESERET SMALL LETTER BEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10412", "lowercase_mapping": "", "titlecase_mapping": "10412", "symbol": "\u043A" }, 66619: { "value": "1043B", "name": "DESERET SMALL LETTER TEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10413", "lowercase_mapping": "", "titlecase_mapping": "10413", "symbol": "\u043B" }, 66620: { "value": "1043C", "name": "DESERET SMALL LETTER DEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10414", "lowercase_mapping": "", "titlecase_mapping": "10414", "symbol": "\u043C" }, 66621: { "value": "1043D", "name": "DESERET SMALL LETTER CHEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10415", "lowercase_mapping": "", "titlecase_mapping": "10415", "symbol": "\u043D" }, 66622: { "value": "1043E", "name": "DESERET SMALL LETTER JEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10416", "lowercase_mapping": "", "titlecase_mapping": "10416", "symbol": "\u043E" }, 66623: { "value": "1043F", "name": "DESERET SMALL LETTER KAY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10417", "lowercase_mapping": "", "titlecase_mapping": "10417", "symbol": "\u043F" }, 66624: { "value": "10440", "name": "DESERET SMALL LETTER GAY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10418", "lowercase_mapping": "", "titlecase_mapping": "10418", "symbol": "\u0440" }, 66625: { "value": "10441", "name": "DESERET SMALL LETTER EF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10419", "lowercase_mapping": "", "titlecase_mapping": "10419", "symbol": "\u0441" }, 66626: { "value": "10442", "name": "DESERET SMALL LETTER VEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041A", "lowercase_mapping": "", "titlecase_mapping": "1041A", "symbol": "\u0442" }, 66627: { "value": "10443", "name": "DESERET SMALL LETTER ETH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041B", "lowercase_mapping": "", "titlecase_mapping": "1041B", "symbol": "\u0443" }, 66628: { "value": "10444", "name": "DESERET SMALL LETTER THEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041C", "lowercase_mapping": "", "titlecase_mapping": "1041C", "symbol": "\u0444" }, 66629: { "value": "10445", "name": "DESERET SMALL LETTER ES", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041D", "lowercase_mapping": "", "titlecase_mapping": "1041D", "symbol": "\u0445" }, 66630: { "value": "10446", "name": "DESERET SMALL LETTER ZEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041E", "lowercase_mapping": "", "titlecase_mapping": "1041E", "symbol": "\u0446" }, 66631: { "value": "10447", "name": "DESERET SMALL LETTER ESH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041F", "lowercase_mapping": "", "titlecase_mapping": "1041F", "symbol": "\u0447" }, 66632: { "value": "10448", "name": "DESERET SMALL LETTER ZHEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10420", "lowercase_mapping": "", "titlecase_mapping": "10420", "symbol": "\u0448" }, 66633: { "value": "10449", "name": "DESERET SMALL LETTER ER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10421", "lowercase_mapping": "", "titlecase_mapping": "10421", "symbol": "\u0449" }, 66634: { "value": "1044A", "name": "DESERET SMALL LETTER EL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10422", "lowercase_mapping": "", "titlecase_mapping": "10422", "symbol": "\u044A" }, 66635: { "value": "1044B", "name": "DESERET SMALL LETTER EM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10423", "lowercase_mapping": "", "titlecase_mapping": "10423", "symbol": "\u044B" }, 66636: { "value": "1044C", "name": "DESERET SMALL LETTER EN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10424", "lowercase_mapping": "", "titlecase_mapping": "10424", "symbol": "\u044C" }, 66637: { "value": "1044D", "name": "DESERET SMALL LETTER ENG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10425", "lowercase_mapping": "", "titlecase_mapping": "10425", "symbol": "\u044D" }, 66638: { "value": "1044E", "name": "DESERET SMALL LETTER OI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10426", "lowercase_mapping": "", "titlecase_mapping": "10426", "symbol": "\u044E" }, 66639: { "value": "1044F", "name": "DESERET SMALL LETTER EW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10427", "lowercase_mapping": "", "titlecase_mapping": "10427", "symbol": "\u044F" }, 66776: { "value": "104D8", "name": "OSAGE SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B0", "lowercase_mapping": "", "titlecase_mapping": "104B0", "symbol": "\u04D8" }, 66777: { "value": "104D9", "name": "OSAGE SMALL LETTER AI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B1", "lowercase_mapping": "", "titlecase_mapping": "104B1", "symbol": "\u04D9" }, 66778: { "value": "104DA", "name": "OSAGE SMALL LETTER AIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B2", "lowercase_mapping": "", "titlecase_mapping": "104B2", "symbol": "\u04DA" }, 66779: { "value": "104DB", "name": "OSAGE SMALL LETTER AH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B3", "lowercase_mapping": "", "titlecase_mapping": "104B3", "symbol": "\u04DB" }, 66780: { "value": "104DC", "name": "OSAGE SMALL LETTER BRA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B4", "lowercase_mapping": "", "titlecase_mapping": "104B4", "symbol": "\u04DC" }, 66781: { "value": "104DD", "name": "OSAGE SMALL LETTER CHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B5", "lowercase_mapping": "", "titlecase_mapping": "104B5", "symbol": "\u04DD" }, 66782: { "value": "104DE", "name": "OSAGE SMALL LETTER EHCHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B6", "lowercase_mapping": "", "titlecase_mapping": "104B6", "symbol": "\u04DE" }, 66783: { "value": "104DF", "name": "OSAGE SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B7", "lowercase_mapping": "", "titlecase_mapping": "104B7", "symbol": "\u04DF" }, 66784: { "value": "104E0", "name": "OSAGE SMALL LETTER EIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B8", "lowercase_mapping": "", "titlecase_mapping": "104B8", "symbol": "\u04E0" }, 66785: { "value": "104E1", "name": "OSAGE SMALL LETTER HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B9", "lowercase_mapping": "", "titlecase_mapping": "104B9", "symbol": "\u04E1" }, 66786: { "value": "104E2", "name": "OSAGE SMALL LETTER HYA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BA", "lowercase_mapping": "", "titlecase_mapping": "104BA", "symbol": "\u04E2" }, 66787: { "value": "104E3", "name": "OSAGE SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BB", "lowercase_mapping": "", "titlecase_mapping": "104BB", "symbol": "\u04E3" }, 66788: { "value": "104E4", "name": "OSAGE SMALL LETTER KA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BC", "lowercase_mapping": "", "titlecase_mapping": "104BC", "symbol": "\u04E4" }, 66789: { "value": "104E5", "name": "OSAGE SMALL LETTER EHKA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BD", "lowercase_mapping": "", "titlecase_mapping": "104BD", "symbol": "\u04E5" }, 66790: { "value": "104E6", "name": "OSAGE SMALL LETTER KYA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BE", "lowercase_mapping": "", "titlecase_mapping": "104BE", "symbol": "\u04E6" }, 66791: { "value": "104E7", "name": "OSAGE SMALL LETTER LA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BF", "lowercase_mapping": "", "titlecase_mapping": "104BF", "symbol": "\u04E7" }, 66792: { "value": "104E8", "name": "OSAGE SMALL LETTER MA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C0", "lowercase_mapping": "", "titlecase_mapping": "104C0", "symbol": "\u04E8" }, 66793: { "value": "104E9", "name": "OSAGE SMALL LETTER NA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C1", "lowercase_mapping": "", "titlecase_mapping": "104C1", "symbol": "\u04E9" }, 66794: { "value": "104EA", "name": "OSAGE SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C2", "lowercase_mapping": "", "titlecase_mapping": "104C2", "symbol": "\u04EA" }, 66795: { "value": "104EB", "name": "OSAGE SMALL LETTER OIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C3", "lowercase_mapping": "", "titlecase_mapping": "104C3", "symbol": "\u04EB" }, 66796: { "value": "104EC", "name": "OSAGE SMALL LETTER PA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C4", "lowercase_mapping": "", "titlecase_mapping": "104C4", "symbol": "\u04EC" }, 66797: { "value": "104ED", "name": "OSAGE SMALL LETTER EHPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C5", "lowercase_mapping": "", "titlecase_mapping": "104C5", "symbol": "\u04ED" }, 66798: { "value": "104EE", "name": "OSAGE SMALL LETTER SA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C6", "lowercase_mapping": "", "titlecase_mapping": "104C6", "symbol": "\u04EE" }, 66799: { "value": "104EF", "name": "OSAGE SMALL LETTER SHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C7", "lowercase_mapping": "", "titlecase_mapping": "104C7", "symbol": "\u04EF" }, 66800: { "value": "104F0", "name": "OSAGE SMALL LETTER TA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C8", "lowercase_mapping": "", "titlecase_mapping": "104C8", "symbol": "\u04F0" }, 66801: { "value": "104F1", "name": "OSAGE SMALL LETTER EHTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C9", "lowercase_mapping": "", "titlecase_mapping": "104C9", "symbol": "\u04F1" }, 66802: { "value": "104F2", "name": "OSAGE SMALL LETTER TSA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CA", "lowercase_mapping": "", "titlecase_mapping": "104CA", "symbol": "\u04F2" }, 66803: { "value": "104F3", "name": "OSAGE SMALL LETTER EHTSA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CB", "lowercase_mapping": "", "titlecase_mapping": "104CB", "symbol": "\u04F3" }, 66804: { "value": "104F4", "name": "OSAGE SMALL LETTER TSHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CC", "lowercase_mapping": "", "titlecase_mapping": "104CC", "symbol": "\u04F4" }, 66805: { "value": "104F5", "name": "OSAGE SMALL LETTER DHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CD", "lowercase_mapping": "", "titlecase_mapping": "104CD", "symbol": "\u04F5" }, 66806: { "value": "104F6", "name": "OSAGE SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CE", "lowercase_mapping": "", "titlecase_mapping": "104CE", "symbol": "\u04F6" }, 66807: { "value": "104F7", "name": "OSAGE SMALL LETTER WA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CF", "lowercase_mapping": "", "titlecase_mapping": "104CF", "symbol": "\u04F7" }, 66808: { "value": "104F8", "name": "OSAGE SMALL LETTER KHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104D0", "lowercase_mapping": "", "titlecase_mapping": "104D0", "symbol": "\u04F8" }, 66809: { "value": "104F9", "name": "OSAGE SMALL LETTER GHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104D1", "lowercase_mapping": "", "titlecase_mapping": "104D1", "symbol": "\u04F9" }, 66810: { "value": "104FA", "name": "OSAGE SMALL LETTER ZA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104D2", "lowercase_mapping": "", "titlecase_mapping": "104D2", "symbol": "\u04FA" }, 66811: { "value": "104FB", "name": "OSAGE SMALL LETTER ZHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104D3", "lowercase_mapping": "", "titlecase_mapping": "104D3", "symbol": "\u04FB" }, 68800: { "value": "10CC0", "name": "OLD HUNGARIAN SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C80", "lowercase_mapping": "", "titlecase_mapping": "10C80", "symbol": "\u0CC0" }, 68801: { "value": "10CC1", "name": "OLD HUNGARIAN SMALL LETTER AA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C81", "lowercase_mapping": "", "titlecase_mapping": "10C81", "symbol": "\u0CC1" }, 68802: { "value": "10CC2", "name": "OLD HUNGARIAN SMALL LETTER EB", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C82", "lowercase_mapping": "", "titlecase_mapping": "10C82", "symbol": "\u0CC2" }, 68803: { "value": "10CC3", "name": "OLD HUNGARIAN SMALL LETTER AMB", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C83", "lowercase_mapping": "", "titlecase_mapping": "10C83", "symbol": "\u0CC3" }, 68804: { "value": "10CC4", "name": "OLD HUNGARIAN SMALL LETTER EC", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C84", "lowercase_mapping": "", "titlecase_mapping": "10C84", "symbol": "\u0CC4" }, 68805: { "value": "10CC5", "name": "OLD HUNGARIAN SMALL LETTER ENC", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C85", "lowercase_mapping": "", "titlecase_mapping": "10C85", "symbol": "\u0CC5" }, 68806: { "value": "10CC6", "name": "OLD HUNGARIAN SMALL LETTER ECS", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C86", "lowercase_mapping": "", "titlecase_mapping": "10C86", "symbol": "\u0CC6" }, 68807: { "value": "10CC7", "name": "OLD HUNGARIAN SMALL LETTER ED", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C87", "lowercase_mapping": "", "titlecase_mapping": "10C87", "symbol": "\u0CC7" }, 68808: { "value": "10CC8", "name": "OLD HUNGARIAN SMALL LETTER AND", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C88", "lowercase_mapping": "", "titlecase_mapping": "10C88", "symbol": "\u0CC8" }, 68809: { "value": "10CC9", "name": "OLD HUNGARIAN SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C89", "lowercase_mapping": "", "titlecase_mapping": "10C89", "symbol": "\u0CC9" }, 68810: { "value": "10CCA", "name": "OLD HUNGARIAN SMALL LETTER CLOSE E", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8A", "lowercase_mapping": "", "titlecase_mapping": "10C8A", "symbol": "\u0CCA" }, 68811: { "value": "10CCB", "name": "OLD HUNGARIAN SMALL LETTER EE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8B", "lowercase_mapping": "", "titlecase_mapping": "10C8B", "symbol": "\u0CCB" }, 68812: { "value": "10CCC", "name": "OLD HUNGARIAN SMALL LETTER EF", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8C", "lowercase_mapping": "", "titlecase_mapping": "10C8C", "symbol": "\u0CCC" }, 68813: { "value": "10CCD", "name": "OLD HUNGARIAN SMALL LETTER EG", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8D", "lowercase_mapping": "", "titlecase_mapping": "10C8D", "symbol": "\u0CCD" }, 68814: { "value": "10CCE", "name": "OLD HUNGARIAN SMALL LETTER EGY", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8E", "lowercase_mapping": "", "titlecase_mapping": "10C8E", "symbol": "\u0CCE" }, 68815: { "value": "10CCF", "name": "OLD HUNGARIAN SMALL LETTER EH", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8F", "lowercase_mapping": "", "titlecase_mapping": "10C8F", "symbol": "\u0CCF" }, 68816: { "value": "10CD0", "name": "OLD HUNGARIAN SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C90", "lowercase_mapping": "", "titlecase_mapping": "10C90", "symbol": "\u0CD0" }, 68817: { "value": "10CD1", "name": "OLD HUNGARIAN SMALL LETTER II", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C91", "lowercase_mapping": "", "titlecase_mapping": "10C91", "symbol": "\u0CD1" }, 68818: { "value": "10CD2", "name": "OLD HUNGARIAN SMALL LETTER EJ", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C92", "lowercase_mapping": "", "titlecase_mapping": "10C92", "symbol": "\u0CD2" }, 68819: { "value": "10CD3", "name": "OLD HUNGARIAN SMALL LETTER EK", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C93", "lowercase_mapping": "", "titlecase_mapping": "10C93", "symbol": "\u0CD3" }, 68820: { "value": "10CD4", "name": "OLD HUNGARIAN SMALL LETTER AK", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C94", "lowercase_mapping": "", "titlecase_mapping": "10C94", "symbol": "\u0CD4" }, 68821: { "value": "10CD5", "name": "OLD HUNGARIAN SMALL LETTER UNK", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C95", "lowercase_mapping": "", "titlecase_mapping": "10C95", "symbol": "\u0CD5" }, 68822: { "value": "10CD6", "name": "OLD HUNGARIAN SMALL LETTER EL", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C96", "lowercase_mapping": "", "titlecase_mapping": "10C96", "symbol": "\u0CD6" }, 68823: { "value": "10CD7", "name": "OLD HUNGARIAN SMALL LETTER ELY", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C97", "lowercase_mapping": "", "titlecase_mapping": "10C97", "symbol": "\u0CD7" }, 68824: { "value": "10CD8", "name": "OLD HUNGARIAN SMALL LETTER EM", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C98", "lowercase_mapping": "", "titlecase_mapping": "10C98", "symbol": "\u0CD8" }, 68825: { "value": "10CD9", "name": "OLD HUNGARIAN SMALL LETTER EN", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C99", "lowercase_mapping": "", "titlecase_mapping": "10C99", "symbol": "\u0CD9" }, 68826: { "value": "10CDA", "name": "OLD HUNGARIAN SMALL LETTER ENY", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9A", "lowercase_mapping": "", "titlecase_mapping": "10C9A", "symbol": "\u0CDA" }, 68827: { "value": "10CDB", "name": "OLD HUNGARIAN SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9B", "lowercase_mapping": "", "titlecase_mapping": "10C9B", "symbol": "\u0CDB" }, 68828: { "value": "10CDC", "name": "OLD HUNGARIAN SMALL LETTER OO", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9C", "lowercase_mapping": "", "titlecase_mapping": "10C9C", "symbol": "\u0CDC" }, 68829: { "value": "10CDD", "name": "OLD HUNGARIAN SMALL LETTER NIKOLSBURG OE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9D", "lowercase_mapping": "", "titlecase_mapping": "10C9D", "symbol": "\u0CDD" }, 68830: { "value": "10CDE", "name": "OLD HUNGARIAN SMALL LETTER RUDIMENTA OE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9E", "lowercase_mapping": "", "titlecase_mapping": "10C9E", "symbol": "\u0CDE" }, 68831: { "value": "10CDF", "name": "OLD HUNGARIAN SMALL LETTER OEE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9F", "lowercase_mapping": "", "titlecase_mapping": "10C9F", "symbol": "\u0CDF" }, 68832: { "value": "10CE0", "name": "OLD HUNGARIAN SMALL LETTER EP", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA0", "lowercase_mapping": "", "titlecase_mapping": "10CA0", "symbol": "\u0CE0" }, 68833: { "value": "10CE1", "name": "OLD HUNGARIAN SMALL LETTER EMP", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA1", "lowercase_mapping": "", "titlecase_mapping": "10CA1", "symbol": "\u0CE1" }, 68834: { "value": "10CE2", "name": "OLD HUNGARIAN SMALL LETTER ER", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA2", "lowercase_mapping": "", "titlecase_mapping": "10CA2", "symbol": "\u0CE2" }, 68835: { "value": "10CE3", "name": "OLD HUNGARIAN SMALL LETTER SHORT ER", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA3", "lowercase_mapping": "", "titlecase_mapping": "10CA3", "symbol": "\u0CE3" }, 68836: { "value": "10CE4", "name": "OLD HUNGARIAN SMALL LETTER ES", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA4", "lowercase_mapping": "", "titlecase_mapping": "10CA4", "symbol": "\u0CE4" }, 68837: { "value": "10CE5", "name": "OLD HUNGARIAN SMALL LETTER ESZ", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA5", "lowercase_mapping": "", "titlecase_mapping": "10CA5", "symbol": "\u0CE5" }, 68838: { "value": "10CE6", "name": "OLD HUNGARIAN SMALL LETTER ET", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA6", "lowercase_mapping": "", "titlecase_mapping": "10CA6", "symbol": "\u0CE6" }, 68839: { "value": "10CE7", "name": "OLD HUNGARIAN SMALL LETTER ENT", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA7", "lowercase_mapping": "", "titlecase_mapping": "10CA7", "symbol": "\u0CE7" }, 68840: { "value": "10CE8", "name": "OLD HUNGARIAN SMALL LETTER ETY", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA8", "lowercase_mapping": "", "titlecase_mapping": "10CA8", "symbol": "\u0CE8" }, 68841: { "value": "10CE9", "name": "OLD HUNGARIAN SMALL LETTER ECH", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA9", "lowercase_mapping": "", "titlecase_mapping": "10CA9", "symbol": "\u0CE9" }, 68842: { "value": "10CEA", "name": "OLD HUNGARIAN SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAA", "lowercase_mapping": "", "titlecase_mapping": "10CAA", "symbol": "\u0CEA" }, 68843: { "value": "10CEB", "name": "OLD HUNGARIAN SMALL LETTER UU", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAB", "lowercase_mapping": "", "titlecase_mapping": "10CAB", "symbol": "\u0CEB" }, 68844: { "value": "10CEC", "name": "OLD HUNGARIAN SMALL LETTER NIKOLSBURG UE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAC", "lowercase_mapping": "", "titlecase_mapping": "10CAC", "symbol": "\u0CEC" }, 68845: { "value": "10CED", "name": "OLD HUNGARIAN SMALL LETTER RUDIMENTA UE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAD", "lowercase_mapping": "", "titlecase_mapping": "10CAD", "symbol": "\u0CED" }, 68846: { "value": "10CEE", "name": "OLD HUNGARIAN SMALL LETTER EV", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAE", "lowercase_mapping": "", "titlecase_mapping": "10CAE", "symbol": "\u0CEE" }, 68847: { "value": "10CEF", "name": "OLD HUNGARIAN SMALL LETTER EZ", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAF", "lowercase_mapping": "", "titlecase_mapping": "10CAF", "symbol": "\u0CEF" }, 68848: { "value": "10CF0", "name": "OLD HUNGARIAN SMALL LETTER EZS", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CB0", "lowercase_mapping": "", "titlecase_mapping": "10CB0", "symbol": "\u0CF0" }, 68849: { "value": "10CF1", "name": "OLD HUNGARIAN SMALL LETTER ENT-SHAPED SIGN", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CB1", "lowercase_mapping": "", "titlecase_mapping": "10CB1", "symbol": "\u0CF1" }, 68850: { "value": "10CF2", "name": "OLD HUNGARIAN SMALL LETTER US", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CB2", "lowercase_mapping": "", "titlecase_mapping": "10CB2", "symbol": "\u0CF2" }, 71872: { "value": "118C0", "name": "WARANG CITI SMALL LETTER NGAA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A0", "lowercase_mapping": "", "titlecase_mapping": "118A0", "symbol": "\u18C0" }, 71873: { "value": "118C1", "name": "WARANG CITI SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A1", "lowercase_mapping": "", "titlecase_mapping": "118A1", "symbol": "\u18C1" }, 71874: { "value": "118C2", "name": "WARANG CITI SMALL LETTER WI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A2", "lowercase_mapping": "", "titlecase_mapping": "118A2", "symbol": "\u18C2" }, 71875: { "value": "118C3", "name": "WARANG CITI SMALL LETTER YU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A3", "lowercase_mapping": "", "titlecase_mapping": "118A3", "symbol": "\u18C3" }, 71876: { "value": "118C4", "name": "WARANG CITI SMALL LETTER YA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A4", "lowercase_mapping": "", "titlecase_mapping": "118A4", "symbol": "\u18C4" }, 71877: { "value": "118C5", "name": "WARANG CITI SMALL LETTER YO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A5", "lowercase_mapping": "", "titlecase_mapping": "118A5", "symbol": "\u18C5" }, 71878: { "value": "118C6", "name": "WARANG CITI SMALL LETTER II", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A6", "lowercase_mapping": "", "titlecase_mapping": "118A6", "symbol": "\u18C6" }, 71879: { "value": "118C7", "name": "WARANG CITI SMALL LETTER UU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A7", "lowercase_mapping": "", "titlecase_mapping": "118A7", "symbol": "\u18C7" }, 71880: { "value": "118C8", "name": "WARANG CITI SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A8", "lowercase_mapping": "", "titlecase_mapping": "118A8", "symbol": "\u18C8" }, 71881: { "value": "118C9", "name": "WARANG CITI SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A9", "lowercase_mapping": "", "titlecase_mapping": "118A9", "symbol": "\u18C9" }, 71882: { "value": "118CA", "name": "WARANG CITI SMALL LETTER ANG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AA", "lowercase_mapping": "", "titlecase_mapping": "118AA", "symbol": "\u18CA" }, 71883: { "value": "118CB", "name": "WARANG CITI SMALL LETTER GA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AB", "lowercase_mapping": "", "titlecase_mapping": "118AB", "symbol": "\u18CB" }, 71884: { "value": "118CC", "name": "WARANG CITI SMALL LETTER KO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AC", "lowercase_mapping": "", "titlecase_mapping": "118AC", "symbol": "\u18CC" }, 71885: { "value": "118CD", "name": "WARANG CITI SMALL LETTER ENY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AD", "lowercase_mapping": "", "titlecase_mapping": "118AD", "symbol": "\u18CD" }, 71886: { "value": "118CE", "name": "WARANG CITI SMALL LETTER YUJ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AE", "lowercase_mapping": "", "titlecase_mapping": "118AE", "symbol": "\u18CE" }, 71887: { "value": "118CF", "name": "WARANG CITI SMALL LETTER UC", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AF", "lowercase_mapping": "", "titlecase_mapping": "118AF", "symbol": "\u18CF" }, 71888: { "value": "118D0", "name": "WARANG CITI SMALL LETTER ENN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B0", "lowercase_mapping": "", "titlecase_mapping": "118B0", "symbol": "\u18D0" }, 71889: { "value": "118D1", "name": "WARANG CITI SMALL LETTER ODD", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B1", "lowercase_mapping": "", "titlecase_mapping": "118B1", "symbol": "\u18D1" }, 71890: { "value": "118D2", "name": "WARANG CITI SMALL LETTER TTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B2", "lowercase_mapping": "", "titlecase_mapping": "118B2", "symbol": "\u18D2" }, 71891: { "value": "118D3", "name": "WARANG CITI SMALL LETTER NUNG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B3", "lowercase_mapping": "", "titlecase_mapping": "118B3", "symbol": "\u18D3" }, 71892: { "value": "118D4", "name": "WARANG CITI SMALL LETTER DA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B4", "lowercase_mapping": "", "titlecase_mapping": "118B4", "symbol": "\u18D4" }, 71893: { "value": "118D5", "name": "WARANG CITI SMALL LETTER AT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B5", "lowercase_mapping": "", "titlecase_mapping": "118B5", "symbol": "\u18D5" }, 71894: { "value": "118D6", "name": "WARANG CITI SMALL LETTER AM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B6", "lowercase_mapping": "", "titlecase_mapping": "118B6", "symbol": "\u18D6" }, 71895: { "value": "118D7", "name": "WARANG CITI SMALL LETTER BU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B7", "lowercase_mapping": "", "titlecase_mapping": "118B7", "symbol": "\u18D7" }, 71896: { "value": "118D8", "name": "WARANG CITI SMALL LETTER PU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B8", "lowercase_mapping": "", "titlecase_mapping": "118B8", "symbol": "\u18D8" }, 71897: { "value": "118D9", "name": "WARANG CITI SMALL LETTER HIYO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B9", "lowercase_mapping": "", "titlecase_mapping": "118B9", "symbol": "\u18D9" }, 71898: { "value": "118DA", "name": "WARANG CITI SMALL LETTER HOLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BA", "lowercase_mapping": "", "titlecase_mapping": "118BA", "symbol": "\u18DA" }, 71899: { "value": "118DB", "name": "WARANG CITI SMALL LETTER HORR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BB", "lowercase_mapping": "", "titlecase_mapping": "118BB", "symbol": "\u18DB" }, 71900: { "value": "118DC", "name": "WARANG CITI SMALL LETTER HAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BC", "lowercase_mapping": "", "titlecase_mapping": "118BC", "symbol": "\u18DC" }, 71901: { "value": "118DD", "name": "WARANG CITI SMALL LETTER SSUU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BD", "lowercase_mapping": "", "titlecase_mapping": "118BD", "symbol": "\u18DD" }, 71902: { "value": "118DE", "name": "WARANG CITI SMALL LETTER SII", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BE", "lowercase_mapping": "", "titlecase_mapping": "118BE", "symbol": "\u18DE" }, 71903: { "value": "118DF", "name": "WARANG CITI SMALL LETTER VIYO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BF", "lowercase_mapping": "", "titlecase_mapping": "118BF", "symbol": "\u18DF" }, 119834: { "value": "1D41A", "name": "MATHEMATICAL BOLD SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41A" }, 119835: { "value": "1D41B", "name": "MATHEMATICAL BOLD SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41B" }, 119836: { "value": "1D41C", "name": "MATHEMATICAL BOLD SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41C" }, 119837: { "value": "1D41D", "name": "MATHEMATICAL BOLD SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41D" }, 119838: { "value": "1D41E", "name": "MATHEMATICAL BOLD SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41E" }, 119839: { "value": "1D41F", "name": "MATHEMATICAL BOLD SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41F" }, 119840: { "value": "1D420", "name": "MATHEMATICAL BOLD SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD420" }, 119841: { "value": "1D421", "name": "MATHEMATICAL BOLD SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD421" }, 119842: { "value": "1D422", "name": "MATHEMATICAL BOLD SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD422" }, 119843: { "value": "1D423", "name": "MATHEMATICAL BOLD SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD423" }, 119844: { "value": "1D424", "name": "MATHEMATICAL BOLD SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD424" }, 119845: { "value": "1D425", "name": "MATHEMATICAL BOLD SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD425" }, 119846: { "value": "1D426", "name": "MATHEMATICAL BOLD SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD426" }, 119847: { "value": "1D427", "name": "MATHEMATICAL BOLD SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD427" }, 119848: { "value": "1D428", "name": "MATHEMATICAL BOLD SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD428" }, 119849: { "value": "1D429", "name": "MATHEMATICAL BOLD SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD429" }, 119850: { "value": "1D42A", "name": "MATHEMATICAL BOLD SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42A" }, 119851: { "value": "1D42B", "name": "MATHEMATICAL BOLD SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42B" }, 119852: { "value": "1D42C", "name": "MATHEMATICAL BOLD SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42C" }, 119853: { "value": "1D42D", "name": "MATHEMATICAL BOLD SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42D" }, 119854: { "value": "1D42E", "name": "MATHEMATICAL BOLD SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42E" }, 119855: { "value": "1D42F", "name": "MATHEMATICAL BOLD SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42F" }, 119856: { "value": "1D430", "name": "MATHEMATICAL BOLD SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD430" }, 119857: { "value": "1D431", "name": "MATHEMATICAL BOLD SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD431" }, 119858: { "value": "1D432", "name": "MATHEMATICAL BOLD SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD432" }, 119859: { "value": "1D433", "name": "MATHEMATICAL BOLD SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD433" }, 119886: { "value": "1D44E", "name": "MATHEMATICAL ITALIC SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD44E" }, 119887: { "value": "1D44F", "name": "MATHEMATICAL ITALIC SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD44F" }, 119888: { "value": "1D450", "name": "MATHEMATICAL ITALIC SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD450" }, 119889: { "value": "1D451", "name": "MATHEMATICAL ITALIC SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD451" }, 119890: { "value": "1D452", "name": "MATHEMATICAL ITALIC SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD452" }, 119891: { "value": "1D453", "name": "MATHEMATICAL ITALIC SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD453" }, 119892: { "value": "1D454", "name": "MATHEMATICAL ITALIC SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD454" }, 119894: { "value": "1D456", "name": "MATHEMATICAL ITALIC SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD456" }, 119895: { "value": "1D457", "name": "MATHEMATICAL ITALIC SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD457" }, 119896: { "value": "1D458", "name": "MATHEMATICAL ITALIC SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD458" }, 119897: { "value": "1D459", "name": "MATHEMATICAL ITALIC SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD459" }, 119898: { "value": "1D45A", "name": "MATHEMATICAL ITALIC SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45A" }, 119899: { "value": "1D45B", "name": "MATHEMATICAL ITALIC SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45B" }, 119900: { "value": "1D45C", "name": "MATHEMATICAL ITALIC SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45C" }, 119901: { "value": "1D45D", "name": "MATHEMATICAL ITALIC SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45D" }, 119902: { "value": "1D45E", "name": "MATHEMATICAL ITALIC SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45E" }, 119903: { "value": "1D45F", "name": "MATHEMATICAL ITALIC SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45F" }, 119904: { "value": "1D460", "name": "MATHEMATICAL ITALIC SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD460" }, 119905: { "value": "1D461", "name": "MATHEMATICAL ITALIC SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD461" }, 119906: { "value": "1D462", "name": "MATHEMATICAL ITALIC SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD462" }, 119907: { "value": "1D463", "name": "MATHEMATICAL ITALIC SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD463" }, 119908: { "value": "1D464", "name": "MATHEMATICAL ITALIC SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD464" }, 119909: { "value": "1D465", "name": "MATHEMATICAL ITALIC SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD465" }, 119910: { "value": "1D466", "name": "MATHEMATICAL ITALIC SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD466" }, 119911: { "value": "1D467", "name": "MATHEMATICAL ITALIC SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD467" }, 119938: { "value": "1D482", "name": "MATHEMATICAL BOLD ITALIC SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD482" }, 119939: { "value": "1D483", "name": "MATHEMATICAL BOLD ITALIC SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD483" }, 119940: { "value": "1D484", "name": "MATHEMATICAL BOLD ITALIC SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD484" }, 119941: { "value": "1D485", "name": "MATHEMATICAL BOLD ITALIC SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD485" }, 119942: { "value": "1D486", "name": "MATHEMATICAL BOLD ITALIC SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD486" }, 119943: { "value": "1D487", "name": "MATHEMATICAL BOLD ITALIC SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD487" }, 119944: { "value": "1D488", "name": "MATHEMATICAL BOLD ITALIC SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD488" }, 119945: { "value": "1D489", "name": "MATHEMATICAL BOLD ITALIC SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD489" }, 119946: { "value": "1D48A", "name": "MATHEMATICAL BOLD ITALIC SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48A" }, 119947: { "value": "1D48B", "name": "MATHEMATICAL BOLD ITALIC SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48B" }, 119948: { "value": "1D48C", "name": "MATHEMATICAL BOLD ITALIC SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48C" }, 119949: { "value": "1D48D", "name": "MATHEMATICAL BOLD ITALIC SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48D" }, 119950: { "value": "1D48E", "name": "MATHEMATICAL BOLD ITALIC SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48E" }, 119951: { "value": "1D48F", "name": "MATHEMATICAL BOLD ITALIC SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48F" }, 119952: { "value": "1D490", "name": "MATHEMATICAL BOLD ITALIC SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD490" }, 119953: { "value": "1D491", "name": "MATHEMATICAL BOLD ITALIC SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD491" }, 119954: { "value": "1D492", "name": "MATHEMATICAL BOLD ITALIC SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD492" }, 119955: { "value": "1D493", "name": "MATHEMATICAL BOLD ITALIC SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD493" }, 119956: { "value": "1D494", "name": "MATHEMATICAL BOLD ITALIC SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD494" }, 119957: { "value": "1D495", "name": "MATHEMATICAL BOLD ITALIC SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD495" }, 119958: { "value": "1D496", "name": "MATHEMATICAL BOLD ITALIC SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD496" }, 119959: { "value": "1D497", "name": "MATHEMATICAL BOLD ITALIC SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD497" }, 119960: { "value": "1D498", "name": "MATHEMATICAL BOLD ITALIC SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD498" }, 119961: { "value": "1D499", "name": "MATHEMATICAL BOLD ITALIC SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD499" }, 119962: { "value": "1D49A", "name": "MATHEMATICAL BOLD ITALIC SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD49A" }, 119963: { "value": "1D49B", "name": "MATHEMATICAL BOLD ITALIC SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD49B" }, 119990: { "value": "1D4B6", "name": "MATHEMATICAL SCRIPT SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4B6" }, 119991: { "value": "1D4B7", "name": "MATHEMATICAL SCRIPT SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4B7" }, 119992: { "value": "1D4B8", "name": "MATHEMATICAL SCRIPT SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4B8" }, 119993: { "value": "1D4B9", "name": "MATHEMATICAL SCRIPT SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4B9" }, 119995: { "value": "1D4BB", "name": "MATHEMATICAL SCRIPT SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4BB" }, 119997: { "value": "1D4BD", "name": "MATHEMATICAL SCRIPT SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4BD" }, 119998: { "value": "1D4BE", "name": "MATHEMATICAL SCRIPT SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4BE" }, 119999: { "value": "1D4BF", "name": "MATHEMATICAL SCRIPT SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4BF" }, 120000: { "value": "1D4C0", "name": "MATHEMATICAL SCRIPT SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C0" }, 120001: { "value": "1D4C1", "name": "MATHEMATICAL SCRIPT SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C1" }, 120002: { "value": "1D4C2", "name": "MATHEMATICAL SCRIPT SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C2" }, 120003: { "value": "1D4C3", "name": "MATHEMATICAL SCRIPT SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C3" }, 120005: { "value": "1D4C5", "name": "MATHEMATICAL SCRIPT SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C5" }, 120006: { "value": "1D4C6", "name": "MATHEMATICAL SCRIPT SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C6" }, 120007: { "value": "1D4C7", "name": "MATHEMATICAL SCRIPT SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C7" }, 120008: { "value": "1D4C8", "name": "MATHEMATICAL SCRIPT SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C8" }, 120009: { "value": "1D4C9", "name": "MATHEMATICAL SCRIPT SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C9" }, 120010: { "value": "1D4CA", "name": "MATHEMATICAL SCRIPT SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CA" }, 120011: { "value": "1D4CB", "name": "MATHEMATICAL SCRIPT SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CB" }, 120012: { "value": "1D4CC", "name": "MATHEMATICAL SCRIPT SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CC" }, 120013: { "value": "1D4CD", "name": "MATHEMATICAL SCRIPT SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CD" }, 120014: { "value": "1D4CE", "name": "MATHEMATICAL SCRIPT SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CE" }, 120015: { "value": "1D4CF", "name": "MATHEMATICAL SCRIPT SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CF" }, 120042: { "value": "1D4EA", "name": "MATHEMATICAL BOLD SCRIPT SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4EA" }, 120043: { "value": "1D4EB", "name": "MATHEMATICAL BOLD SCRIPT SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4EB" }, 120044: { "value": "1D4EC", "name": "MATHEMATICAL BOLD SCRIPT SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4EC" }, 120045: { "value": "1D4ED", "name": "MATHEMATICAL BOLD SCRIPT SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4ED" }, 120046: { "value": "1D4EE", "name": "MATHEMATICAL BOLD SCRIPT SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4EE" }, 120047: { "value": "1D4EF", "name": "MATHEMATICAL BOLD SCRIPT SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4EF" }, 120048: { "value": "1D4F0", "name": "MATHEMATICAL BOLD SCRIPT SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F0" }, 120049: { "value": "1D4F1", "name": "MATHEMATICAL BOLD SCRIPT SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F1" }, 120050: { "value": "1D4F2", "name": "MATHEMATICAL BOLD SCRIPT SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F2" }, 120051: { "value": "1D4F3", "name": "MATHEMATICAL BOLD SCRIPT SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F3" }, 120052: { "value": "1D4F4", "name": "MATHEMATICAL BOLD SCRIPT SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F4" }, 120053: { "value": "1D4F5", "name": "MATHEMATICAL BOLD SCRIPT SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F5" }, 120054: { "value": "1D4F6", "name": "MATHEMATICAL BOLD SCRIPT SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F6" }, 120055: { "value": "1D4F7", "name": "MATHEMATICAL BOLD SCRIPT SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F7" }, 120056: { "value": "1D4F8", "name": "MATHEMATICAL BOLD SCRIPT SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F8" }, 120057: { "value": "1D4F9", "name": "MATHEMATICAL BOLD SCRIPT SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F9" }, 120058: { "value": "1D4FA", "name": "MATHEMATICAL BOLD SCRIPT SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FA" }, 120059: { "value": "1D4FB", "name": "MATHEMATICAL BOLD SCRIPT SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FB" }, 120060: { "value": "1D4FC", "name": "MATHEMATICAL BOLD SCRIPT SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FC" }, 120061: { "value": "1D4FD", "name": "MATHEMATICAL BOLD SCRIPT SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FD" }, 120062: { "value": "1D4FE", "name": "MATHEMATICAL BOLD SCRIPT SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FE" }, 120063: { "value": "1D4FF", "name": "MATHEMATICAL BOLD SCRIPT SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FF" }, 120064: { "value": "1D500", "name": "MATHEMATICAL BOLD SCRIPT SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD500" }, 120065: { "value": "1D501", "name": "MATHEMATICAL BOLD SCRIPT SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD501" }, 120066: { "value": "1D502", "name": "MATHEMATICAL BOLD SCRIPT SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD502" }, 120067: { "value": "1D503", "name": "MATHEMATICAL BOLD SCRIPT SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD503" }, 120094: { "value": "1D51E", "name": "MATHEMATICAL FRAKTUR SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD51E" }, 120095: { "value": "1D51F", "name": "MATHEMATICAL FRAKTUR SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD51F" }, 120096: { "value": "1D520", "name": "MATHEMATICAL FRAKTUR SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD520" }, 120097: { "value": "1D521", "name": "MATHEMATICAL FRAKTUR SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD521" }, 120098: { "value": "1D522", "name": "MATHEMATICAL FRAKTUR SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD522" }, 120099: { "value": "1D523", "name": "MATHEMATICAL FRAKTUR SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD523" }, 120100: { "value": "1D524", "name": "MATHEMATICAL FRAKTUR SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD524" }, 120101: { "value": "1D525", "name": "MATHEMATICAL FRAKTUR SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD525" }, 120102: { "value": "1D526", "name": "MATHEMATICAL FRAKTUR SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD526" }, 120103: { "value": "1D527", "name": "MATHEMATICAL FRAKTUR SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD527" }, 120104: { "value": "1D528", "name": "MATHEMATICAL FRAKTUR SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD528" }, 120105: { "value": "1D529", "name": "MATHEMATICAL FRAKTUR SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD529" }, 120106: { "value": "1D52A", "name": "MATHEMATICAL FRAKTUR SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52A" }, 120107: { "value": "1D52B", "name": "MATHEMATICAL FRAKTUR SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52B" }, 120108: { "value": "1D52C", "name": "MATHEMATICAL FRAKTUR SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52C" }, 120109: { "value": "1D52D", "name": "MATHEMATICAL FRAKTUR SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52D" }, 120110: { "value": "1D52E", "name": "MATHEMATICAL FRAKTUR SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52E" }, 120111: { "value": "1D52F", "name": "MATHEMATICAL FRAKTUR SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52F" }, 120112: { "value": "1D530", "name": "MATHEMATICAL FRAKTUR SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD530" }, 120113: { "value": "1D531", "name": "MATHEMATICAL FRAKTUR SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD531" }, 120114: { "value": "1D532", "name": "MATHEMATICAL FRAKTUR SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD532" }, 120115: { "value": "1D533", "name": "MATHEMATICAL FRAKTUR SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD533" }, 120116: { "value": "1D534", "name": "MATHEMATICAL FRAKTUR SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD534" }, 120117: { "value": "1D535", "name": "MATHEMATICAL FRAKTUR SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD535" }, 120118: { "value": "1D536", "name": "MATHEMATICAL FRAKTUR SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD536" }, 120119: { "value": "1D537", "name": "MATHEMATICAL FRAKTUR SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD537" }, 120146: { "value": "1D552", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD552" }, 120147: { "value": "1D553", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD553" }, 120148: { "value": "1D554", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD554" }, 120149: { "value": "1D555", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD555" }, 120150: { "value": "1D556", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD556" }, 120151: { "value": "1D557", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD557" }, 120152: { "value": "1D558", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD558" }, 120153: { "value": "1D559", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD559" }, 120154: { "value": "1D55A", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55A" }, 120155: { "value": "1D55B", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55B" }, 120156: { "value": "1D55C", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55C" }, 120157: { "value": "1D55D", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55D" }, 120158: { "value": "1D55E", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55E" }, 120159: { "value": "1D55F", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55F" }, 120160: { "value": "1D560", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD560" }, 120161: { "value": "1D561", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD561" }, 120162: { "value": "1D562", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD562" }, 120163: { "value": "1D563", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD563" }, 120164: { "value": "1D564", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD564" }, 120165: { "value": "1D565", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD565" }, 120166: { "value": "1D566", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD566" }, 120167: { "value": "1D567", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD567" }, 120168: { "value": "1D568", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD568" }, 120169: { "value": "1D569", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD569" }, 120170: { "value": "1D56A", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD56A" }, 120171: { "value": "1D56B", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD56B" }, 120198: { "value": "1D586", "name": "MATHEMATICAL BOLD FRAKTUR SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD586" }, 120199: { "value": "1D587", "name": "MATHEMATICAL BOLD FRAKTUR SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD587" }, 120200: { "value": "1D588", "name": "MATHEMATICAL BOLD FRAKTUR SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD588" }, 120201: { "value": "1D589", "name": "MATHEMATICAL BOLD FRAKTUR SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD589" }, 120202: { "value": "1D58A", "name": "MATHEMATICAL BOLD FRAKTUR SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58A" }, 120203: { "value": "1D58B", "name": "MATHEMATICAL BOLD FRAKTUR SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58B" }, 120204: { "value": "1D58C", "name": "MATHEMATICAL BOLD FRAKTUR SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58C" }, 120205: { "value": "1D58D", "name": "MATHEMATICAL BOLD FRAKTUR SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58D" }, 120206: { "value": "1D58E", "name": "MATHEMATICAL BOLD FRAKTUR SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58E" }, 120207: { "value": "1D58F", "name": "MATHEMATICAL BOLD FRAKTUR SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58F" }, 120208: { "value": "1D590", "name": "MATHEMATICAL BOLD FRAKTUR SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD590" }, 120209: { "value": "1D591", "name": "MATHEMATICAL BOLD FRAKTUR SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD591" }, 120210: { "value": "1D592", "name": "MATHEMATICAL BOLD FRAKTUR SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD592" }, 120211: { "value": "1D593", "name": "MATHEMATICAL BOLD FRAKTUR SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD593" }, 120212: { "value": "1D594", "name": "MATHEMATICAL BOLD FRAKTUR SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD594" }, 120213: { "value": "1D595", "name": "MATHEMATICAL BOLD FRAKTUR SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD595" }, 120214: { "value": "1D596", "name": "MATHEMATICAL BOLD FRAKTUR SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD596" }, 120215: { "value": "1D597", "name": "MATHEMATICAL BOLD FRAKTUR SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD597" }, 120216: { "value": "1D598", "name": "MATHEMATICAL BOLD FRAKTUR SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD598" }, 120217: { "value": "1D599", "name": "MATHEMATICAL BOLD FRAKTUR SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD599" }, 120218: { "value": "1D59A", "name": "MATHEMATICAL BOLD FRAKTUR SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59A" }, 120219: { "value": "1D59B", "name": "MATHEMATICAL BOLD FRAKTUR SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59B" }, 120220: { "value": "1D59C", "name": "MATHEMATICAL BOLD FRAKTUR SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59C" }, 120221: { "value": "1D59D", "name": "MATHEMATICAL BOLD FRAKTUR SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59D" }, 120222: { "value": "1D59E", "name": "MATHEMATICAL BOLD FRAKTUR SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59E" }, 120223: { "value": "1D59F", "name": "MATHEMATICAL BOLD FRAKTUR SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59F" }, 120250: { "value": "1D5BA", "name": "MATHEMATICAL SANS-SERIF SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BA" }, 120251: { "value": "1D5BB", "name": "MATHEMATICAL SANS-SERIF SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BB" }, 120252: { "value": "1D5BC", "name": "MATHEMATICAL SANS-SERIF SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BC" }, 120253: { "value": "1D5BD", "name": "MATHEMATICAL SANS-SERIF SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BD" }, 120254: { "value": "1D5BE", "name": "MATHEMATICAL SANS-SERIF SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BE" }, 120255: { "value": "1D5BF", "name": "MATHEMATICAL SANS-SERIF SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BF" }, 120256: { "value": "1D5C0", "name": "MATHEMATICAL SANS-SERIF SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C0" }, 120257: { "value": "1D5C1", "name": "MATHEMATICAL SANS-SERIF SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C1" }, 120258: { "value": "1D5C2", "name": "MATHEMATICAL SANS-SERIF SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C2" }, 120259: { "value": "1D5C3", "name": "MATHEMATICAL SANS-SERIF SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C3" }, 120260: { "value": "1D5C4", "name": "MATHEMATICAL SANS-SERIF SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C4" }, 120261: { "value": "1D5C5", "name": "MATHEMATICAL SANS-SERIF SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C5" }, 120262: { "value": "1D5C6", "name": "MATHEMATICAL SANS-SERIF SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C6" }, 120263: { "value": "1D5C7", "name": "MATHEMATICAL SANS-SERIF SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C7" }, 120264: { "value": "1D5C8", "name": "MATHEMATICAL SANS-SERIF SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C8" }, 120265: { "value": "1D5C9", "name": "MATHEMATICAL SANS-SERIF SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C9" }, 120266: { "value": "1D5CA", "name": "MATHEMATICAL SANS-SERIF SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CA" }, 120267: { "value": "1D5CB", "name": "MATHEMATICAL SANS-SERIF SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CB" }, 120268: { "value": "1D5CC", "name": "MATHEMATICAL SANS-SERIF SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CC" }, 120269: { "value": "1D5CD", "name": "MATHEMATICAL SANS-SERIF SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CD" }, 120270: { "value": "1D5CE", "name": "MATHEMATICAL SANS-SERIF SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CE" }, 120271: { "value": "1D5CF", "name": "MATHEMATICAL SANS-SERIF SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CF" }, 120272: { "value": "1D5D0", "name": "MATHEMATICAL SANS-SERIF SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5D0" }, 120273: { "value": "1D5D1", "name": "MATHEMATICAL SANS-SERIF SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5D1" }, 120274: { "value": "1D5D2", "name": "MATHEMATICAL SANS-SERIF SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5D2" }, 120275: { "value": "1D5D3", "name": "MATHEMATICAL SANS-SERIF SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5D3" }, 120302: { "value": "1D5EE", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5EE" }, 120303: { "value": "1D5EF", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5EF" }, 120304: { "value": "1D5F0", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F0" }, 120305: { "value": "1D5F1", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F1" }, 120306: { "value": "1D5F2", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F2" }, 120307: { "value": "1D5F3", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F3" }, 120308: { "value": "1D5F4", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F4" }, 120309: { "value": "1D5F5", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F5" }, 120310: { "value": "1D5F6", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F6" }, 120311: { "value": "1D5F7", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F7" }, 120312: { "value": "1D5F8", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F8" }, 120313: { "value": "1D5F9", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F9" }, 120314: { "value": "1D5FA", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FA" }, 120315: { "value": "1D5FB", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FB" }, 120316: { "value": "1D5FC", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FC" }, 120317: { "value": "1D5FD", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FD" }, 120318: { "value": "1D5FE", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FE" }, 120319: { "value": "1D5FF", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FF" }, 120320: { "value": "1D600", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD600" }, 120321: { "value": "1D601", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD601" }, 120322: { "value": "1D602", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD602" }, 120323: { "value": "1D603", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD603" }, 120324: { "value": "1D604", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD604" }, 120325: { "value": "1D605", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD605" }, 120326: { "value": "1D606", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD606" }, 120327: { "value": "1D607", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD607" }, 120354: { "value": "1D622", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD622" }, 120355: { "value": "1D623", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD623" }, 120356: { "value": "1D624", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD624" }, 120357: { "value": "1D625", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD625" }, 120358: { "value": "1D626", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD626" }, 120359: { "value": "1D627", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD627" }, 120360: { "value": "1D628", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD628" }, 120361: { "value": "1D629", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD629" }, 120362: { "value": "1D62A", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62A" }, 120363: { "value": "1D62B", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62B" }, 120364: { "value": "1D62C", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62C" }, 120365: { "value": "1D62D", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62D" }, 120366: { "value": "1D62E", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62E" }, 120367: { "value": "1D62F", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62F" }, 120368: { "value": "1D630", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD630" }, 120369: { "value": "1D631", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD631" }, 120370: { "value": "1D632", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD632" }, 120371: { "value": "1D633", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD633" }, 120372: { "value": "1D634", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD634" }, 120373: { "value": "1D635", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD635" }, 120374: { "value": "1D636", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD636" }, 120375: { "value": "1D637", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD637" }, 120376: { "value": "1D638", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD638" }, 120377: { "value": "1D639", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD639" }, 120378: { "value": "1D63A", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD63A" }, 120379: { "value": "1D63B", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD63B" }, 120406: { "value": "1D656", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD656" }, 120407: { "value": "1D657", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD657" }, 120408: { "value": "1D658", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD658" }, 120409: { "value": "1D659", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD659" }, 120410: { "value": "1D65A", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65A" }, 120411: { "value": "1D65B", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65B" }, 120412: { "value": "1D65C", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65C" }, 120413: { "value": "1D65D", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65D" }, 120414: { "value": "1D65E", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65E" }, 120415: { "value": "1D65F", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65F" }, 120416: { "value": "1D660", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD660" }, 120417: { "value": "1D661", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD661" }, 120418: { "value": "1D662", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD662" }, 120419: { "value": "1D663", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD663" }, 120420: { "value": "1D664", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD664" }, 120421: { "value": "1D665", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD665" }, 120422: { "value": "1D666", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD666" }, 120423: { "value": "1D667", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD667" }, 120424: { "value": "1D668", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD668" }, 120425: { "value": "1D669", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD669" }, 120426: { "value": "1D66A", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66A" }, 120427: { "value": "1D66B", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66B" }, 120428: { "value": "1D66C", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66C" }, 120429: { "value": "1D66D", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66D" }, 120430: { "value": "1D66E", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66E" }, 120431: { "value": "1D66F", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66F" }, 120458: { "value": "1D68A", "name": "MATHEMATICAL MONOSPACE SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68A" }, 120459: { "value": "1D68B", "name": "MATHEMATICAL MONOSPACE SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68B" }, 120460: { "value": "1D68C", "name": "MATHEMATICAL MONOSPACE SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68C" }, 120461: { "value": "1D68D", "name": "MATHEMATICAL MONOSPACE SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68D" }, 120462: { "value": "1D68E", "name": "MATHEMATICAL MONOSPACE SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68E" }, 120463: { "value": "1D68F", "name": "MATHEMATICAL MONOSPACE SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68F" }, 120464: { "value": "1D690", "name": "MATHEMATICAL MONOSPACE SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD690" }, 120465: { "value": "1D691", "name": "MATHEMATICAL MONOSPACE SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD691" }, 120466: { "value": "1D692", "name": "MATHEMATICAL MONOSPACE SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD692" }, 120467: { "value": "1D693", "name": "MATHEMATICAL MONOSPACE SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD693" }, 120468: { "value": "1D694", "name": "MATHEMATICAL MONOSPACE SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD694" }, 120469: { "value": "1D695", "name": "MATHEMATICAL MONOSPACE SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD695" }, 120470: { "value": "1D696", "name": "MATHEMATICAL MONOSPACE SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD696" }, 120471: { "value": "1D697", "name": "MATHEMATICAL MONOSPACE SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD697" }, 120472: { "value": "1D698", "name": "MATHEMATICAL MONOSPACE SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD698" }, 120473: { "value": "1D699", "name": "MATHEMATICAL MONOSPACE SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD699" }, 120474: { "value": "1D69A", "name": "MATHEMATICAL MONOSPACE SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69A" }, 120475: { "value": "1D69B", "name": "MATHEMATICAL MONOSPACE SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69B" }, 120476: { "value": "1D69C", "name": "MATHEMATICAL MONOSPACE SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69C" }, 120477: { "value": "1D69D", "name": "MATHEMATICAL MONOSPACE SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69D" }, 120478: { "value": "1D69E", "name": "MATHEMATICAL MONOSPACE SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69E" }, 120479: { "value": "1D69F", "name": "MATHEMATICAL MONOSPACE SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69F" }, 120480: { "value": "1D6A0", "name": "MATHEMATICAL MONOSPACE SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A0" }, 120481: { "value": "1D6A1", "name": "MATHEMATICAL MONOSPACE SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A1" }, 120482: { "value": "1D6A2", "name": "MATHEMATICAL MONOSPACE SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A2" }, 120483: { "value": "1D6A3", "name": "MATHEMATICAL MONOSPACE SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A3" }, 120484: { "value": "1D6A4", "name": "MATHEMATICAL ITALIC SMALL DOTLESS I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0131", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A4" }, 120485: { "value": "1D6A5", "name": "MATHEMATICAL ITALIC SMALL DOTLESS J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0237", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A5" }, 120514: { "value": "1D6C2", "name": "MATHEMATICAL BOLD SMALL ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C2" }, 120515: { "value": "1D6C3", "name": "MATHEMATICAL BOLD SMALL BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C3" }, 120516: { "value": "1D6C4", "name": "MATHEMATICAL BOLD SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C4" }, 120517: { "value": "1D6C5", "name": "MATHEMATICAL BOLD SMALL DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C5" }, 120518: { "value": "1D6C6", "name": "MATHEMATICAL BOLD SMALL EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C6" }, 120519: { "value": "1D6C7", "name": "MATHEMATICAL BOLD SMALL ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C7" }, 120520: { "value": "1D6C8", "name": "MATHEMATICAL BOLD SMALL ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C8" }, 120521: { "value": "1D6C9", "name": "MATHEMATICAL BOLD SMALL THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C9" }, 120522: { "value": "1D6CA", "name": "MATHEMATICAL BOLD SMALL IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CA" }, 120523: { "value": "1D6CB", "name": "MATHEMATICAL BOLD SMALL KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CB" }, 120524: { "value": "1D6CC", "name": "MATHEMATICAL BOLD SMALL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BB", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CC" }, 120525: { "value": "1D6CD", "name": "MATHEMATICAL BOLD SMALL MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CD" }, 120526: { "value": "1D6CE", "name": "MATHEMATICAL BOLD SMALL NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CE" }, 120527: { "value": "1D6CF", "name": "MATHEMATICAL BOLD SMALL XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CF" }, 120528: { "value": "1D6D0", "name": "MATHEMATICAL BOLD SMALL OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D0" }, 120529: { "value": "1D6D1", "name": "MATHEMATICAL BOLD SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D1" }, 120530: { "value": "1D6D2", "name": "MATHEMATICAL BOLD SMALL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D2" }, 120531: { "value": "1D6D3", "name": "MATHEMATICAL BOLD SMALL FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D3" }, 120532: { "value": "1D6D4", "name": "MATHEMATICAL BOLD SMALL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D4" }, 120533: { "value": "1D6D5", "name": "MATHEMATICAL BOLD SMALL TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D5" }, 120534: { "value": "1D6D6", "name": "MATHEMATICAL BOLD SMALL UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D6" }, 120535: { "value": "1D6D7", "name": "MATHEMATICAL BOLD SMALL PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D7" }, 120536: { "value": "1D6D8", "name": "MATHEMATICAL BOLD SMALL CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D8" }, 120537: { "value": "1D6D9", "name": "MATHEMATICAL BOLD SMALL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D9" }, 120538: { "value": "1D6DA", "name": "MATHEMATICAL BOLD SMALL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6DA" }, 120540: { "value": "1D6DC", "name": "MATHEMATICAL BOLD EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6DC" }, 120541: { "value": "1D6DD", "name": "MATHEMATICAL BOLD THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6DD" }, 120542: { "value": "1D6DE", "name": "MATHEMATICAL BOLD KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6DE" }, 120543: { "value": "1D6DF", "name": "MATHEMATICAL BOLD PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6DF" }, 120544: { "value": "1D6E0", "name": "MATHEMATICAL BOLD RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6E0" }, 120545: { "value": "1D6E1", "name": "MATHEMATICAL BOLD PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6E1" }, 120572: { "value": "1D6FC", "name": "MATHEMATICAL ITALIC SMALL ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6FC" }, 120573: { "value": "1D6FD", "name": "MATHEMATICAL ITALIC SMALL BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6FD" }, 120574: { "value": "1D6FE", "name": "MATHEMATICAL ITALIC SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6FE" }, 120575: { "value": "1D6FF", "name": "MATHEMATICAL ITALIC SMALL DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6FF" }, 120576: { "value": "1D700", "name": "MATHEMATICAL ITALIC SMALL EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD700" }, 120577: { "value": "1D701", "name": "MATHEMATICAL ITALIC SMALL ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD701" }, 120578: { "value": "1D702", "name": "MATHEMATICAL ITALIC SMALL ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD702" }, 120579: { "value": "1D703", "name": "MATHEMATICAL ITALIC SMALL THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD703" }, 120580: { "value": "1D704", "name": "MATHEMATICAL ITALIC SMALL IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD704" }, 120581: { "value": "1D705", "name": "MATHEMATICAL ITALIC SMALL KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD705" }, 120582: { "value": "1D706", "name": "MATHEMATICAL ITALIC SMALL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BB", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD706" }, 120583: { "value": "1D707", "name": "MATHEMATICAL ITALIC SMALL MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD707" }, 120584: { "value": "1D708", "name": "MATHEMATICAL ITALIC SMALL NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD708" }, 120585: { "value": "1D709", "name": "MATHEMATICAL ITALIC SMALL XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD709" }, 120586: { "value": "1D70A", "name": "MATHEMATICAL ITALIC SMALL OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70A" }, 120587: { "value": "1D70B", "name": "MATHEMATICAL ITALIC SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70B" }, 120588: { "value": "1D70C", "name": "MATHEMATICAL ITALIC SMALL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70C" }, 120589: { "value": "1D70D", "name": "MATHEMATICAL ITALIC SMALL FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70D" }, 120590: { "value": "1D70E", "name": "MATHEMATICAL ITALIC SMALL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70E" }, 120591: { "value": "1D70F", "name": "MATHEMATICAL ITALIC SMALL TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70F" }, 120592: { "value": "1D710", "name": "MATHEMATICAL ITALIC SMALL UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD710" }, 120593: { "value": "1D711", "name": "MATHEMATICAL ITALIC SMALL PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD711" }, 120594: { "value": "1D712", "name": "MATHEMATICAL ITALIC SMALL CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD712" }, 120595: { "value": "1D713", "name": "MATHEMATICAL ITALIC SMALL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD713" }, 120596: { "value": "1D714", "name": "MATHEMATICAL ITALIC SMALL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD714" }, 120598: { "value": "1D716", "name": "MATHEMATICAL ITALIC EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD716" }, 120599: { "value": "1D717", "name": "MATHEMATICAL ITALIC THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD717" }, 120600: { "value": "1D718", "name": "MATHEMATICAL ITALIC KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD718" }, 120601: { "value": "1D719", "name": "MATHEMATICAL ITALIC PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD719" }, 120602: { "value": "1D71A", "name": "MATHEMATICAL ITALIC RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD71A" }, 120603: { "value": "1D71B", "name": "MATHEMATICAL ITALIC PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD71B" }, 120630: { "value": "1D736", "name": "MATHEMATICAL BOLD ITALIC SMALL ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD736" }, 120631: { "value": "1D737", "name": "MATHEMATICAL BOLD ITALIC SMALL BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD737" }, 120632: { "value": "1D738", "name": "MATHEMATICAL BOLD ITALIC SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD738" }, 120633: { "value": "1D739", "name": "MATHEMATICAL BOLD ITALIC SMALL DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD739" }, 120634: { "value": "1D73A", "name": "MATHEMATICAL BOLD ITALIC SMALL EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73A" }, 120635: { "value": "1D73B", "name": "MATHEMATICAL BOLD ITALIC SMALL ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73B" }, 120636: { "value": "1D73C", "name": "MATHEMATICAL BOLD ITALIC SMALL ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73C" }, 120637: { "value": "1D73D", "name": "MATHEMATICAL BOLD ITALIC SMALL THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73D" }, 120638: { "value": "1D73E", "name": "MATHEMATICAL BOLD ITALIC SMALL IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73E" }, 120639: { "value": "1D73F", "name": "MATHEMATICAL BOLD ITALIC SMALL KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73F" }, 120640: { "value": "1D740", "name": "MATHEMATICAL BOLD ITALIC SMALL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BB", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD740" }, 120641: { "value": "1D741", "name": "MATHEMATICAL BOLD ITALIC SMALL MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD741" }, 120642: { "value": "1D742", "name": "MATHEMATICAL BOLD ITALIC SMALL NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD742" }, 120643: { "value": "1D743", "name": "MATHEMATICAL BOLD ITALIC SMALL XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD743" }, 120644: { "value": "1D744", "name": "MATHEMATICAL BOLD ITALIC SMALL OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD744" }, 120645: { "value": "1D745", "name": "MATHEMATICAL BOLD ITALIC SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD745" }, 120646: { "value": "1D746", "name": "MATHEMATICAL BOLD ITALIC SMALL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD746" }, 120647: { "value": "1D747", "name": "MATHEMATICAL BOLD ITALIC SMALL FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD747" }, 120648: { "value": "1D748", "name": "MATHEMATICAL BOLD ITALIC SMALL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD748" }, 120649: { "value": "1D749", "name": "MATHEMATICAL BOLD ITALIC SMALL TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD749" }, 120650: { "value": "1D74A", "name": "MATHEMATICAL BOLD ITALIC SMALL UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD74A" }, 120651: { "value": "1D74B", "name": "MATHEMATICAL BOLD ITALIC SMALL PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD74B" }, 120652: { "value": "1D74C", "name": "MATHEMATICAL BOLD ITALIC SMALL CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD74C" }, 120653: { "value": "1D74D", "name": "MATHEMATICAL BOLD ITALIC SMALL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD74D" }, 120654: { "value": "1D74E", "name": "MATHEMATICAL BOLD ITALIC SMALL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD74E" }, 120656: { "value": "1D750", "name": "MATHEMATICAL BOLD ITALIC EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD750" }, 120657: { "value": "1D751", "name": "MATHEMATICAL BOLD ITALIC THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD751" }, 120658: { "value": "1D752", "name": "MATHEMATICAL BOLD ITALIC KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD752" }, 120659: { "value": "1D753", "name": "MATHEMATICAL BOLD ITALIC PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD753" }, 120660: { "value": "1D754", "name": "MATHEMATICAL BOLD ITALIC RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD754" }, 120661: { "value": "1D755", "name": "MATHEMATICAL BOLD ITALIC PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD755" }, 120688: { "value": "1D770", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD770" }, 120689: { "value": "1D771", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD771" }, 120690: { "value": "1D772", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD772" }, 120691: { "value": "1D773", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD773" }, 120692: { "value": "1D774", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD774" }, 120693: { "value": "1D775", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD775" }, 120694: { "value": "1D776", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD776" }, 120695: { "value": "1D777", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD777" }, 120696: { "value": "1D778", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD778" }, 120697: { "value": "1D779", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD779" }, 120698: { "value": "1D77A", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BB", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77A" }, 120699: { "value": "1D77B", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77B" }, 120700: { "value": "1D77C", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77C" }, 120701: { "value": "1D77D", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77D" }, 120702: { "value": "1D77E", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77E" }, 120703: { "value": "1D77F", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77F" }, 120704: { "value": "1D780", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD780" }, 120705: { "value": "1D781", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD781" }, 120706: { "value": "1D782", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD782" }, 120707: { "value": "1D783", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD783" }, 120708: { "value": "1D784", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD784" }, 120709: { "value": "1D785", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD785" }, 120710: { "value": "1D786", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD786" }, 120711: { "value": "1D787", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD787" }, 120712: { "value": "1D788", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD788" }, 120714: { "value": "1D78A", "name": "MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78A" }, 120715: { "value": "1D78B", "name": "MATHEMATICAL SANS-SERIF BOLD THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78B" }, 120716: { "value": "1D78C", "name": "MATHEMATICAL SANS-SERIF BOLD KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78C" }, 120717: { "value": "1D78D", "name": "MATHEMATICAL SANS-SERIF BOLD PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78D" }, 120718: { "value": "1D78E", "name": "MATHEMATICAL SANS-SERIF BOLD RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78E" }, 120719: { "value": "1D78F", "name": "MATHEMATICAL SANS-SERIF BOLD PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78F" }, 120746: { "value": "1D7AA", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AA" }, 120747: { "value": "1D7AB", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AB" }, 120748: { "value": "1D7AC", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AC" }, 120749: { "value": "1D7AD", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AD" }, 120750: { "value": "1D7AE", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AE" }, 120751: { "value": "1D7AF", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AF" }, 120752: { "value": "1D7B0", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B0" }, 120753: { "value": "1D7B1", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B1" }, 120754: { "value": "1D7B2", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B2" }, 120755: { "value": "1D7B3", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B3" }, 120756: { "value": "1D7B4", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BB", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B4" }, 120757: { "value": "1D7B5", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B5" }, 120758: { "value": "1D7B6", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B6" }, 120759: { "value": "1D7B7", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B7" }, 120760: { "value": "1D7B8", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B8" }, 120761: { "value": "1D7B9", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B9" }, 120762: { "value": "1D7BA", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BA" }, 120763: { "value": "1D7BB", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BB" }, 120764: { "value": "1D7BC", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BC" }, 120765: { "value": "1D7BD", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BD" }, 120766: { "value": "1D7BE", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BE" }, 120767: { "value": "1D7BF", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BF" }, 120768: { "value": "1D7C0", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C0" }, 120769: { "value": "1D7C1", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C1" }, 120770: { "value": "1D7C2", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C2" }, 120772: { "value": "1D7C4", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C4" }, 120773: { "value": "1D7C5", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C5" }, 120774: { "value": "1D7C6", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C6" }, 120775: { "value": "1D7C7", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C7" }, 120776: { "value": "1D7C8", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C8" }, 120777: { "value": "1D7C9", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C9" }, 120779: { "value": "1D7CB", "name": "MATHEMATICAL BOLD SMALL DIGAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03DD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7CB" }, 125218: { "value": "1E922", "name": "ADLAM SMALL LETTER ALIF", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E900", "lowercase_mapping": "", "titlecase_mapping": "1E900", "symbol": "\uE922" }, 125219: { "value": "1E923", "name": "ADLAM SMALL LETTER DAALI", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E901", "lowercase_mapping": "", "titlecase_mapping": "1E901", "symbol": "\uE923" }, 125220: { "value": "1E924", "name": "ADLAM SMALL LETTER LAAM", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E902", "lowercase_mapping": "", "titlecase_mapping": "1E902", "symbol": "\uE924" }, 125221: { "value": "1E925", "name": "ADLAM SMALL LETTER MIIM", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E903", "lowercase_mapping": "", "titlecase_mapping": "1E903", "symbol": "\uE925" }, 125222: { "value": "1E926", "name": "ADLAM SMALL LETTER BA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E904", "lowercase_mapping": "", "titlecase_mapping": "1E904", "symbol": "\uE926" }, 125223: { "value": "1E927", "name": "ADLAM SMALL LETTER SINNYIIYHE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E905", "lowercase_mapping": "", "titlecase_mapping": "1E905", "symbol": "\uE927" }, 125224: { "value": "1E928", "name": "ADLAM SMALL LETTER PE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E906", "lowercase_mapping": "", "titlecase_mapping": "1E906", "symbol": "\uE928" }, 125225: { "value": "1E929", "name": "ADLAM SMALL LETTER BHE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E907", "lowercase_mapping": "", "titlecase_mapping": "1E907", "symbol": "\uE929" }, 125226: { "value": "1E92A", "name": "ADLAM SMALL LETTER RA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E908", "lowercase_mapping": "", "titlecase_mapping": "1E908", "symbol": "\uE92A" }, 125227: { "value": "1E92B", "name": "ADLAM SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E909", "lowercase_mapping": "", "titlecase_mapping": "1E909", "symbol": "\uE92B" }, 125228: { "value": "1E92C", "name": "ADLAM SMALL LETTER FA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90A", "lowercase_mapping": "", "titlecase_mapping": "1E90A", "symbol": "\uE92C" }, 125229: { "value": "1E92D", "name": "ADLAM SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90B", "lowercase_mapping": "", "titlecase_mapping": "1E90B", "symbol": "\uE92D" }, 125230: { "value": "1E92E", "name": "ADLAM SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90C", "lowercase_mapping": "", "titlecase_mapping": "1E90C", "symbol": "\uE92E" }, 125231: { "value": "1E92F", "name": "ADLAM SMALL LETTER DHA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90D", "lowercase_mapping": "", "titlecase_mapping": "1E90D", "symbol": "\uE92F" }, 125232: { "value": "1E930", "name": "ADLAM SMALL LETTER YHE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90E", "lowercase_mapping": "", "titlecase_mapping": "1E90E", "symbol": "\uE930" }, 125233: { "value": "1E931", "name": "ADLAM SMALL LETTER WAW", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90F", "lowercase_mapping": "", "titlecase_mapping": "1E90F", "symbol": "\uE931" }, 125234: { "value": "1E932", "name": "ADLAM SMALL LETTER NUN", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E910", "lowercase_mapping": "", "titlecase_mapping": "1E910", "symbol": "\uE932" }, 125235: { "value": "1E933", "name": "ADLAM SMALL LETTER KAF", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E911", "lowercase_mapping": "", "titlecase_mapping": "1E911", "symbol": "\uE933" }, 125236: { "value": "1E934", "name": "ADLAM SMALL LETTER YA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E912", "lowercase_mapping": "", "titlecase_mapping": "1E912", "symbol": "\uE934" }, 125237: { "value": "1E935", "name": "ADLAM SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E913", "lowercase_mapping": "", "titlecase_mapping": "1E913", "symbol": "\uE935" }, 125238: { "value": "1E936", "name": "ADLAM SMALL LETTER JIIM", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E914", "lowercase_mapping": "", "titlecase_mapping": "1E914", "symbol": "\uE936" }, 125239: { "value": "1E937", "name": "ADLAM SMALL LETTER CHI", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E915", "lowercase_mapping": "", "titlecase_mapping": "1E915", "symbol": "\uE937" }, 125240: { "value": "1E938", "name": "ADLAM SMALL LETTER HA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E916", "lowercase_mapping": "", "titlecase_mapping": "1E916", "symbol": "\uE938" }, 125241: { "value": "1E939", "name": "ADLAM SMALL LETTER QAAF", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E917", "lowercase_mapping": "", "titlecase_mapping": "1E917", "symbol": "\uE939" }, 125242: { "value": "1E93A", "name": "ADLAM SMALL LETTER GA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E918", "lowercase_mapping": "", "titlecase_mapping": "1E918", "symbol": "\uE93A" }, 125243: { "value": "1E93B", "name": "ADLAM SMALL LETTER NYA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E919", "lowercase_mapping": "", "titlecase_mapping": "1E919", "symbol": "\uE93B" }, 125244: { "value": "1E93C", "name": "ADLAM SMALL LETTER TU", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91A", "lowercase_mapping": "", "titlecase_mapping": "1E91A", "symbol": "\uE93C" }, 125245: { "value": "1E93D", "name": "ADLAM SMALL LETTER NHA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91B", "lowercase_mapping": "", "titlecase_mapping": "1E91B", "symbol": "\uE93D" }, 125246: { "value": "1E93E", "name": "ADLAM SMALL LETTER VA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91C", "lowercase_mapping": "", "titlecase_mapping": "1E91C", "symbol": "\uE93E" }, 125247: { "value": "1E93F", "name": "ADLAM SMALL LETTER KHA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91D", "lowercase_mapping": "", "titlecase_mapping": "1E91D", "symbol": "\uE93F" }, 125248: { "value": "1E940", "name": "ADLAM SMALL LETTER GBE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91E", "lowercase_mapping": "", "titlecase_mapping": "1E91E", "symbol": "\uE940" }, 125249: { "value": "1E941", "name": "ADLAM SMALL LETTER ZAL", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91F", "lowercase_mapping": "", "titlecase_mapping": "1E91F", "symbol": "\uE941" }, 125250: { "value": "1E942", "name": "ADLAM SMALL LETTER KPO", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E920", "lowercase_mapping": "", "titlecase_mapping": "1E920", "symbol": "\uE942" }, 125251: { "value": "1E943", "name": "ADLAM SMALL LETTER SHA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E921", "lowercase_mapping": "", "titlecase_mapping": "1E921", "symbol": "\uE943" } }; -},{}],684:[function(require,module,exports){ +},{}],690:[function(require,module,exports){ "use strict"; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -126098,7 +126405,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol } })(undefined); -},{}],685:[function(require,module,exports){ +},{}],691:[function(require,module,exports){ (function (global){ 'use strict'; @@ -126346,7 +126653,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol })(undefined); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],686:[function(require,module,exports){ +},{}],692:[function(require,module,exports){ (function (global){ 'use strict'; @@ -126418,9 +126725,9 @@ function config(name) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],687:[function(require,module,exports){ -arguments[4][608][0].apply(exports,arguments) -},{"dup":608}],688:[function(require,module,exports){ +},{}],693:[function(require,module,exports){ +arguments[4][614][0].apply(exports,arguments) +},{"dup":614}],694:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -126429,7 +126736,7 @@ module.exports = function isBuffer(arg) { return arg && (typeof arg === 'undefined' ? 'undefined' : _typeof(arg)) === 'object' && typeof arg.copy === 'function' && typeof arg.fill === 'function' && typeof arg.readUInt8 === 'function'; }; -},{}],689:[function(require,module,exports){ +},{}],695:[function(require,module,exports){ (function (process,global){ 'use strict'; @@ -126981,7 +127288,7 @@ function hasOwnProperty(obj, prop) { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./support/isBuffer":688,"_process":638,"inherits":687}],690:[function(require,module,exports){ +},{"./support/isBuffer":694,"_process":644,"inherits":693}],696:[function(require,module,exports){ 'use strict'; var v1 = require('./v1'); @@ -126993,7 +127300,7 @@ uuid.v4 = v4; module.exports = uuid; -},{"./v1":693,"./v4":694}],691:[function(require,module,exports){ +},{"./v1":699,"./v4":700}],697:[function(require,module,exports){ 'use strict'; /** @@ -127013,7 +127320,7 @@ function bytesToUuid(buf, offset) { module.exports = bytesToUuid; -},{}],692:[function(require,module,exports){ +},{}],698:[function(require,module,exports){ (function (global){ "use strict"; @@ -127052,7 +127359,7 @@ if (!rng) { module.exports = rng; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],693:[function(require,module,exports){ +},{}],699:[function(require,module,exports){ 'use strict'; var rng = require('./lib/rng'); @@ -127154,7 +127461,7 @@ function v1(options, buf, offset) { module.exports = v1; -},{"./lib/bytesToUuid":691,"./lib/rng":692}],694:[function(require,module,exports){ +},{"./lib/bytesToUuid":697,"./lib/rng":698}],700:[function(require,module,exports){ 'use strict'; var rng = require('./lib/rng'); @@ -127187,7 +127494,7 @@ function v4(options, buf, offset) { module.exports = v4; -},{"./lib/bytesToUuid":691,"./lib/rng":692}],695:[function(require,module,exports){ +},{"./lib/bytesToUuid":697,"./lib/rng":698}],701:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -127327,7 +127634,7 @@ exports.createContext = Script.createContext = function (context) { return copy; }; -},{"indexof":607}],696:[function(require,module,exports){ +},{"indexof":613}],702:[function(require,module,exports){ 'use strict'; // Base58 encoding/decoding @@ -127389,7 +127696,7 @@ exports.createContext = Script.createContext = function (context) { } })(typeof module !== 'undefined' && typeof module.exports !== 'undefined'); -},{}],697:[function(require,module,exports){ +},{}],703:[function(require,module,exports){ 'use strict'; (function (isNode) { @@ -127428,7 +127735,7 @@ exports.createContext = Script.createContext = function (context) { } })(typeof module !== 'undefined' && typeof module.exports !== 'undefined'); -},{"jssha":612}],698:[function(require,module,exports){ +},{"jssha":618}],704:[function(require,module,exports){ 'use strict'; (function (isNode) { @@ -127507,7 +127814,7 @@ exports.createContext = Script.createContext = function (context) { } })(typeof module !== 'undefined' && typeof module.exports !== 'undefined'); -},{}],699:[function(require,module,exports){ +},{}],705:[function(require,module,exports){ 'use strict'; (function (isNode) { @@ -127577,7 +127884,7 @@ exports.createContext = Script.createContext = function (context) { } })(typeof module !== 'undefined' && typeof module.exports !== 'undefined'); -},{"./base58":696,"./crypto_utils":697,"./currencies":698}],700:[function(require,module,exports){ +},{"./base58":702,"./crypto_utils":703,"./currencies":704}],706:[function(require,module,exports){ 'use strict'; /* @@ -128641,4 +128948,4 @@ exports.uriFragmentInHTMLData = exports.uriComponentInHTMLData; */ exports.uriFragmentInHTMLComment = exports.uriComponentInHTMLComment; -},{}]},{},[73]); +},{}]},{},[76]); diff --git a/chrome-extension/manifest.json b/chrome-extension/manifest.json index f4f462905b..eecf634ce4 100644 --- a/chrome-extension/manifest.json +++ b/chrome-extension/manifest.json @@ -1,6 +1,6 @@ { "name": "MyEtherWallet", - "version": "3.21.08", + "version": "3.21.09", "manifest_version": 2, "description": "MyEtherWallet Chrome Extension", "homepage_url": "https://www.myetherwallet.com/", diff --git a/chrome-extension/phishing.html b/chrome-extension/phishing.html index c81b6ba0e7..575d3ff416 100644 --- a/chrome-extension/phishing.html +++ b/chrome-extension/phishing.html @@ -98,13 +98,13 @@ MyEtherWallet -

    3.21.08

    +

    3.21.09

    - + diff --git a/dist/contest.html b/dist/contest.html index cb5760b5a6..e339205cf8 100644 --- a/dist/contest.html +++ b/dist/contest.html @@ -98,13 +98,13 @@ MyEtherWallet -

    3.21.08

    +

    3.21.09

    - + @@ -330,13 +330,11 @@

    MEW 100K Followers Contest Official Rules

    NO PURCHASE IS NECESSARY TO ENTER OR WIN. A PURCHASE DOES NOT INCREASE THE CHANCES OF WINNING.

    1. - Eligibility: This Campaign is open only to those - who sign up at the who complete + Eligibility: This Campaign is open only to those who complete the contest requirements and who send an email containing the name, email, telephone, city and country of residence, along with a link to their video or blog post to contests@myetherwallet.com - and who are 21 years or older - as of the date of entry.The Campaign is only open to legal residents of to + and who are 21 years or older as of the date of entry.The Campaign is only open to legal residents of to all countries, and is void where prohibited by law. Employees of MyEtherWallet Inc, its affiliates, subsidiaries, advertising and promotion agencies, and suppliers, (collectively the “Employees”), and immediate family members and/or those @@ -353,10 +351,8 @@

      MEW 100K Followers Contest Official Rules

    2. Campaign Period: Entries will be accepted online starting on April 12 at - 12:01am PDT and ending 7 days after the 100,000 Twitter follower threshold - has been reached. The final date will be announced on Twitter with all - entries being required to be received no later than 11:59pm PDT on the - date specified. + 12:01am PDT and ending on May 31, 2018 at 11:59pm. MyEtherWallet Inc reserves + the right to extend this date for whatever reason.
    3. How to Enter: The Campaign must be entered by submitting an email @@ -375,7 +371,7 @@

      MEW 100K Followers Contest Official Rules

    4. Prizes: The Winner(s) of the Campaign (the “Winner”) will receive First, Second & Third Prize: Macbook Pro, or MS Surface Pro + top 25 prizes - (approx $2600 value);Top 25:Ledger Hardware wallet w/MEW Gear Pack; + (approx $2600 value); Top 25: Ledger Hardware wallet w/MEW Gear Pack; Next 25: MEW Premium Gear Pack; Bottom 25: Standard MEW Gear Pack. Actual/appraised value may differ at time of prize award. The specifics of the prize shall be solely determined by MyEtherWallet Inc. No cash or @@ -403,7 +399,10 @@

      MEW 100K Followers Contest Official Rules

      contacted, is ineligible, fails to claim the prize within 5 days from the time award notification was sent, or fails to timely return a completed and executed declaration and release as required, the prize may be forfeited - and an alternate Winner selected. Receipt by Winner of the prize offered in + and an alternate Winner selected. Should fewer than 100 entries be received, + entrants will be evaluated on the criteria outlined in the contest announcement + and these Official Rules, and prizes will be limited to only those entrants. + Receipt by Winner of the prize offered in this Campaign is conditioned upon compliance with any and all federal, state, and local laws and regulations. ANY VIOLATION OF THESE OFFICIAL RULES BY WINNER (AT MYETHERWALLET’S SOLE DISCRETION) WILL RESULT IN WINNER’S DISQUALIFICATION AS @@ -412,14 +411,14 @@

      MEW 100K Followers Contest Official Rules

    5. Rights Granted by You: By entering this content (e.g., photo, video, text, etc.), You understand and agree that MyEtherWallet, Inc , anyone acting on behalf of - MyEtherWallet, Inc, andMyEtherWallet, Inc’s licensees, successors, and assigns, + MyEtherWallet, Inc, andMyEtherWallet, Inc’s licensees, successors, and assigns, shall have the right, where permitted by law, to print, publish, broadcast, distribute, and use in any media now known or hereafter developed, in perpetuity and throughout the World, without limitation, your entry, name, portrait, picture, voice, likeness, image, statements about the Campaign, and biographical information for news, publicity, information, trade, advertising, public relations, and promotional purposes. without any further compensation, notice, review, - or consent. Optional verbiage for Contests: By entering this content, You + or consent. By entering this contest, You represent and warrant that your entry is an original work of authorship, and does not violate any third party’s proprietary or intellectual property rights. If your entry infringes upon the intellectual property right of @@ -429,14 +428,14 @@

      MEW 100K Followers Contest Official Rules

      shall, at your sole expense, defend or settle against such claims. You shall indemnify, defend, and hold harmless MyEtherWallet, Inc from and against any suit, proceeding, claims, liability, loss, damage, costs or expense, which - MyEtherWallet, Inc may incur, suffer, or be required to pay arising out of + MyEtherWallet, Inc may incur, suffer, or be required to pay arising out of such infringement or suspected infringement of any third party’s right.
    6. Terms & Conditions: MyEtherWallet, Inc reserves the right, in its sole discretion, to cancel, terminate, modify or suspend the Campaign should virus, bug, non-authorized human intervention, fraud, or other cause beyond - MyEtherWallet’s control corrupt or affect the administration, security, + MyEtherWallet’s control corrupt or affect the administration, security, fairness, or proper conduct of the Campaign. In such case, MyEtherWallet, Inc may select the Winner from all eligible entries received prior to and/or after (if appropriate) the action taken by MyEtherWallet, Inc.MyEtherWallet, Inc diff --git a/dist/helpers.html b/dist/helpers.html index c40a6f917a..d5f4946f3e 100644 --- a/dist/helpers.html +++ b/dist/helpers.html @@ -98,13 +98,13 @@ MyEtherWallet -

      3.21.08

      +

      3.21.09

      - + diff --git a/dist/index.html b/dist/index.html index 2b333bb4fa..f12652f07d 100644 --- a/dist/index.html +++ b/dist/index.html @@ -98,13 +98,13 @@ MyEtherWallet -

      3.21.08

      +

      3.21.09

      - + @@ -2318,11 +2318,18 @@

      {{swapOrder.swapRate | number: 6}} {{swapOrder.swapPair}}

      3

      {{kyberOrderResult.input.currency}} Received!

      + + + + + + +
      4

      - Sending your {{kyberOrderResult.output.currency}} -
      + + Broadcasting your {{kyberOrderResult.output.currency}} order

      @@ -2541,7 +2548,7 @@

      - +- + +-
      Advanced
      @@ -2661,6 +2668,62 @@
      Advanced
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Data:

      {{parsedKyberTokenTx.data}}

      Token Approval Reset Transaction
      + Why? The swap will fail to execute if token approval is not reset to 0.
      To Address:{{parsedKyberResetTokenTx.to}} +
      + The token ({{swapOrder.fromCoin}}) contract address. +
      From Address:{{parsedKyberResetTokenTx.from}}
      Amount to Send:0 ETH
      Current Approve Value:{{kyberTransaction.currentTokenApprovalValue}} {{swapOrder.fromCoin}}
      Account Balance:{{parsedKyberResetTokenTx.balance}}
      Network:{{ajaxReq.type}} by {{ajaxReq.service}}
      Gas Limit:{{parsedKyberResetTokenTx.gasLimit}}
      Gas Price:{{parsedKyberResetTokenTx.gasPrice.gwei}} GWEI + ({{parsedKyberResetTokenTx.gasPrice.eth}} ETH) +
      Max TX Fee: {{parsedKyberTokenTx.txFee.eth}} ETH + ({{parsedKyberResetTokenTx.txFee.gwei}} GWEI) +
      Nonce:{{parsedKyberResetTokenTx.nonce}}
      Data:

      {{parsedKyberResetTokenTx.data}}

      @@ -2886,33 +2949,53 @@

      {{swapOrder.swapRate | number: 6}} {{swapOrder.swapPair}}

      Transaction Hash(es):
      -
      - + +
      Track your swap transaction:

      - Waiting for token authorization {{tick}}
      - Do Not Navigate Away or Close Your Browser + Your Swap Waiting for token authorization {{tick}}
      +
      Do Not Navigate Away or Close Your Browser
      +
      {{kyberTransaction.tokenTxHash}}
      +
      -
      {{orderResult.progress.timeMessage}}
      - View your token authorization transaction: + Track your token authorization transaction: + +
      +
      + Preparing Token State for Token Authorization {{tick}}
      +
      +
      {{kyberTransaction.tokenApproveTxHash}}
      + + + +
      + + Track your token approval reset transaction: + + +
      {{kyberTransaction.tokenResetTxHash}}
      +
      +
      + + +
      Track your swap transaction: @@ -2922,8 +3005,13 @@
      {{kyberTransaction.tokenApproveTxHash}}
      {{kyberTransaction.ethTxHash}}
      + +
      +
      diff --git a/dist/js/etherwallet-master.js b/dist/js/etherwallet-master.js index 1efe1f19a8..76e43633fd 100644 --- a/dist/js/etherwallet-master.js +++ b/dist/js/etherwallet-master.js @@ -2,6 +2,12 @@ module.exports=[] },{}],2:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],3:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],4:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],5:[function(require,module,exports){ module.exports=[ { "name": "Select a contract...", @@ -34,7 +40,7 @@ module.exports=[ } ] -},{}],3:[function(require,module,exports){ +},{}],6:[function(require,module,exports){ module.exports=[ { "name": "Select a contract...", "address": "", "abi": "" }, { @@ -163,6 +169,11 @@ module.exports=[ "abi": '[{"constant":false,"inputs":[{"name":"_startPresaleTime","type":"uint256"},{"name":"_endPresaleTime","type":"uint256"},{"name":"_startDayOneTime","type":"uint256"},{"name":"_endDayOneTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"}],"name":"updateDates","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockedTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_EARLYSALE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endPresaleTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalVested","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"claimLockedTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"vaultAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"onTransfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pauseContribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_PRESALE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalizeSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuedEarlySale","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"makeTransferable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_ethAmounts","type":"uint256[]"}],"name":"handleEarlySaleBuyers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_free","type":"uint256[]"},{"name":"_locked","type":"uint256[]"},{"name":"_cliffs","type":"uint256[]"}],"name":"handleExternalBuyers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"finalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"resumeContribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"startPresaleTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeTokenController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"onApprove","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_DAY_ONE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"proxyPayment","outputs":[{"name":"success","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"totalIssued","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endDayOneTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startDayOneTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_startPresaleTime","type":"uint256"},{"name":"_endPresaleTime","type":"uint256"},{"name":"_startDayOneTime","type":"uint256"},{"name":"_endDayOneTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"},{"name":"_vaultAddress","type":"address"},{"name":"_tokenAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]' }, + { + "name": "DetherToken", + "address": "0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190", + "abi": '[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":true,"name":"_value","type":"uint256"},{"indexed":false,"name":"_data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]' + }, { "name": "DGD Crowdsale / Claim", "address": "0xF0160428a8552AC9bB7E050D90eEADE4DDD52843", @@ -222,6 +233,12 @@ module.exports=[ "abi": '[{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"claimed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"time","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint128"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"foundersAllocation","outputs":[{"name":"","type":"uint128"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"day","type":"uint256"}],"name":"claim","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"foundersKey","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"userBuys","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"day","type":"uint256"}],"name":"createOnDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"freeze","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"keys","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"dailyTotals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"openTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"EOS","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"today","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"authority","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"eos","type":"address"}],"name":"initialize","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"createFirstDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"claimAll","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"timestamp","type":"uint256"}],"name":"dayFor","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"day","type":"uint256"},{"name":"limit","type":"uint256"}],"name":"buyWithLimit","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"collect","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"numberOfDays","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"key","type":"string"}],"name":"register","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"createPerDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_numberOfDays","type":"uint256"},{"name":"_totalSupply","type":"uint128"},{"name":"_openTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_foundersAllocation","type":"uint128"},{"name":"_foundersKey","type":"string"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"window","type":"uint256"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"window","type":"uint256"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"key","type":"string"}],"name":"LogRegister","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogCollect","type":"event"},{"anonymous":false,"inputs":[],"name":"LogFreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"}]' }, + { + "name": "eProxy (ePRX)", + "address": "0x147b51d82a6038607895e11C4191431335b257E3", + "abi": + '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"swapProxyTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"issuingTokenOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_spender","type":"address"},{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"TransferFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_Owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amountOffered","type":"uint256"},{"indexed":false,"name":"_amountReceived","type":"uint256"}],"name":"SwappedTokens","type":"event"}]' + }, { "name": "EtherDelta (02/09/2017)", "address": "0x8d12A197cB00D4747a1fe03395095ce2A5CC6819", @@ -355,6 +372,11 @@ module.exports=[ "address": "0x83c451371EF470D206cf011405D89f6ccb0e915e", "abi": '[{"constant":true,"inputs":[],"name":"hasClosed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"get_time_locked_contract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"contributions","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hasStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"closingTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"capReached","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"caps","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"release_all","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"getUserCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isFinalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"openingTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"getUserContribution","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"}]' }, + { + "name": "Nebula Ai Token", + "address": "0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D", + "abi": '[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"time_locked_reclaim_addresses","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"release_all","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"get_time_locked_contract_size","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token_unlock_time","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]' + }, { "name": "Nimiq Network Interim Token", "address": "0xcfb98637bcae43C13323EAa1731cED2B716962fD", @@ -429,6 +451,12 @@ module.exports=[ "abi": '[{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"dividendsOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_ethereumToSpend","type":"uint256"}],"name":"calculateTokensReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokensToSell","type":"uint256"}],"name":"calculateEthereumReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"onlyAmbassadors","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"administrators","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakingRequirement","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_includeReferralBonus","type":"bool"}],"name":"myDividends","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthereumBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"setStakingRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_identifier","type":"bytes32"},{"name":"_status","type":"bool"}],"name":"setAdministrator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"myTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"disableInitialStage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_toAddress","type":"address"},{"name":"_amountOfTokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_referredBy","type":"address"}],"name":"buy","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"reinvest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"incomingEthereum","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"},{"indexed":true,"name":"referredBy","type":"address"}],"name":"onTokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"tokensBurned","type":"uint256"},{"indexed":false,"name":"ethereumEarned","type":"uint256"}],"name":"onTokenSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumReinvested","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"}],"name":"onReinvestment","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumWithdrawn","type":"uint256"}],"name":"onWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"}]' }, + { + "name": "Proxy Token (PRXY)", + "address": "0x81BE91c7E74Ad0957B4156F782263e7B0B88cF7b", + "abi": + '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_cloneTokenName","type":"string"},{"name":"_cloneDecimalUnits","type":"uint8"},{"name":"_cloneTokenSymbol","type":"string"},{"name":"_snapshotBlock","type":"uint256"},{"name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_cloneToken","type":"address"},{"indexed":false,"name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"}]' + }, { "name": "PUC", "address": "0xef6b4ce8c9bc83744fbcde2657b32ec18790458a", @@ -594,11 +622,11 @@ module.exports=[ } ] -},{}],4:[function(require,module,exports){ +},{}],7:[function(require,module,exports){ arguments[4][1][0].apply(exports,arguments) -},{"dup":1}],5:[function(require,module,exports){ +},{"dup":1}],8:[function(require,module,exports){ arguments[4][1][0].apply(exports,arguments) -},{"dup":1}],6:[function(require,module,exports){ +},{"dup":1}],9:[function(require,module,exports){ module.exports=[{ "name": "Select a contract...", "address": "", @@ -609,9 +637,9 @@ module.exports=[{ "abi": '[{"constant":true,"inputs":[],"name":"message","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ViewerStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ViewerValue","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenRateEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"}],"name":"registrationFromLogin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"},{"name":"ActiveAliasAccount","type":"bool"},{"name":"ActiveMainAccount","type":"bool"},{"name":"PromilleDeposit","type":"uint256"},{"name":"DeleteMainAccount","type":"bool"}],"name":"setupAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"NewPIN","type":"uint256"}],"name":"setupAccountPIN","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"deleteLogin","type":"string"},{"name":"newLogin","type":"string"}],"name":"setupLoginVipAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"}],"name":"setupAliasAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"},{"name":"Freezen","type":"bool"}],"name":"frozenSubAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"}],"name":"buyVipStatusPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"buyTokenPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"toTransferETHER","type":"address"},{"name":"microToken","type":"uint256"},{"name":"SellDeposit","type":"bool"}],"name":"sellToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"login","type":"string"},{"name":"password","type":"string"}],"name":"depositaryPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"},{"name":"microToken","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"},{"name":"PIN","type":"uint256"}],"name":"transferFromLoginPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"}],"name":"transferToLoginPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"microToken","type":"uint256"}],"name":"returnDepositToBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"SubAccount","type":"address"},{"name":"PIN","type":"uint256"}],"name":"transferProtectPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"PIN","type":"uint256"}],"name":"unblockTransferProtectPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"SubAccount","type":"address"},{"name":"pinSubAccount","type":"uint256"},{"name":"promilleRefund","type":"uint256"}],"name":"transferRefundSubAccountPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"},{"name":"pinMainAccount","type":"uint256"},{"name":"SubAccount","type":"address"},{"name":"pinSubAccount","type":"uint256"},{"name":"promilleReferee","type":"uint256"}],"name":"refereeTransferProtect","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"VipAccount","type":"bool"},{"name":"ActiveAliasAccount","type":"bool"},{"name":"ActiveMainAccount","type":"bool"},{"name":"MainAccount","type":"address"},{"name":"MyReferralAccount","type":"address"}],"name":"MyAccountStatus","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Deposit","type":"bool"},{"name":"PromilleDeposit","type":"bool"},{"name":"ZoneToken","type":"bool"}],"name":"MyAccountValue","outputs":[{"name":"value","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"myMessage","type":"string"}],"name":"advertisingPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burnToken","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"microToken","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"Message","type":"string"}],"name":"Advertising","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"microToken","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"PriceVipAccountMicroEther","type":"uint256"},{"indexed":false,"name":"TransferTokensFeeInPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone1InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone2InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone3InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone4InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone5InPromille","type":"uint256"}],"name":"OptionsContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"microETHER","type":"uint256"}],"name":"TokenSellingRate","type":"event"}]' }] -},{}],7:[function(require,module,exports){ +},{}],10:[function(require,module,exports){ module.exports=[] -},{}],8:[function(require,module,exports){ +},{}],11:[function(require,module,exports){ module.exports=[{ "name": "Select a contract...", "address": "", @@ -634,7 +662,7 @@ module.exports=[{ "abi": '[{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"resolver","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"label","type":"bytes32"},{"name":"owner","type":"address"}],"name":"setSubnodeOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"ttl","type":"uint64"}],"name":"setTTL","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"ttl","outputs":[{"name":"","type":"uint64"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"resolver","type":"address"}],"name":"setResolver","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"owner","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"owner","type":"address"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":true,"name":"label","type":"bytes32"},{"indexed":false,"name":"owner","type":"address"}],"name":"NewOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"resolver","type":"address"}],"name":"NewResolver","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"ttl","type":"uint64"}],"name":"NewTTL","type":"event"}]' }] -},{}],9:[function(require,module,exports){ +},{}],12:[function(require,module,exports){ module.exports=[{ "name": "Select a contract...", "address": "", @@ -671,13 +699,25 @@ module.exports=[{ "name": "Mist's Multisig Contract", "address": "0x0000000000000000000000000000000000000000", "abi": '[{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"removeOwner","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"m_numOwners","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"m_lastDay","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"resetSpentToday","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_spentToday","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"addOwner","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_required","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_h","type":"bytes32"}],"name":"confirm","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_newLimit","type":"uint256"}],"name":"setDailyLimit","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"execute","outputs":[{"name":"_r","type":"bytes32"}],"type":"function"},{"constant":false,"inputs":[{"name":"_operation","type":"bytes32"}],"name":"revoke","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_newRequired","type":"uint256"}],"name":"changeRequirement","outputs":[],"type":"function"},{"constant":true,"inputs":[{"name":"_operation","type":"bytes32"},{"name":"_owner","type":"address"}],"name":"hasConfirmed","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"kill","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"}],"name":"changeOwner","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_dailyLimit","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"},{"name":"_daylimit","type":"uint256"}],"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"}],"name":"Confirmation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"}],"name":"Revoke","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"},{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"}],"name":"OwnerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newRequirement","type":"uint256"}],"name":"RequirementChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"SingleTransact","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"MultiTransact","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"initiator","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"ConfirmationNeeded","type":"event"}]' -}] +},{ + "name": "Mock EOS Token", + "address": "0xd3c64BbA75859Eb808ACE6F2A6048ecdb2d70817", + "abi": '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint128"}],"name":"push","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"name_","type":"bytes32"}],"name":"setName","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"wad","type":"uint128"}],"name":"mint","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"wad","type":"uint128"}],"name":"pull","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"wad","type":"uint128"}],"name":"burn","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"authority","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"guy","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"symbol_","type":"bytes32"}],"payable":false,"type":"constructor"},{"anonymous":true,"inputs":[{"indexed":true,"name":"sig","type":"bytes4"},{"indexed":true,"name":"guy","type":"address"},{"indexed":true,"name":"foo","type":"bytes32"},{"indexed":true,"name":"bar","type":"bytes32"},{"indexed":false,"name":"wad","type":"uint256"},{"indexed":false,"name":"fax","type":"bytes"}],"name":"LogNote","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]' +},{ + "name": "Mock KNC Token", + "address": "0xE5585362D0940519d87d29362115D4cc060C56B3", + "abi": '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleContract","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"emergencyERC20Drain","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleEndTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"tokenTotalAmount","type":"uint256"},{"name":"startTime","type":"uint256"},{"name":"endTime","type":"uint256"},{"name":"admin","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_burner","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"}]' +},{ + "name": "Mock ELF Token", + "address": "0x7174FCb9C2A49c027C9746983D8262597b5EcCb1", + "abi": ' [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_cloneTokenName","type":"string"},{"name":"_cloneDecimalUnits","type":"uint8"},{"name":"_cloneTokenSymbol","type":"string"},{"name":"_snapshotBlock","type":"uint256"},{"name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[{"name":"_tokenFactory","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_cloneToken","type":"address"},{"indexed":false,"name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"}]' +} ] -},{}],10:[function(require,module,exports){ -arguments[4][7][0].apply(exports,arguments) -},{"dup":7}],11:[function(require,module,exports){ +},{}],13:[function(require,module,exports){ +arguments[4][10][0].apply(exports,arguments) +},{"dup":10}],14:[function(require,module,exports){ arguments[4][1][0].apply(exports,arguments) -},{"dup":1}],12:[function(require,module,exports){ +},{"dup":1}],15:[function(require,module,exports){ 'use strict'; var ajaxReq = function ajaxReq() {}; @@ -687,7 +727,7 @@ ajaxReq.getETHvalue = null; ajaxReq.getRates = null; module.exports = ajaxReq; -},{}],13:[function(require,module,exports){ +},{}],16:[function(require,module,exports){ 'use strict'; var bity = function bity() {}; @@ -758,11 +798,19 @@ bity.post = function (path, data, callback) { }; module.exports = bity; -},{}],14:[function(require,module,exports){ +},{}],17:[function(require,module,exports){ "use strict"; var darklist = function darklist() { return [{ + address: "0x08389B19ad52f0d983609ab785b3a43A0E90355F", + comment: "Scam address for various fake twitter accounts and fake giveaways", + date: "2018-05-01" + }, { + address: "0x4114FB8B1879f61b18f7d2E623569a847a03e15A", + comment: "Fake 'Atonomis' presale", + date: "2018-04-27" + }, { address: "0x3c3b85b2ae785a8cc16c3d4df12cb27c6983dff5", comment: "Fake ICO support", date: "2018-04-08" @@ -790,10 +838,6 @@ var darklist = function darklist() { address: "0x64c5971dd27ff063ee4bc5e4c231febd9fc228cd", comment: "Fake Omnitude support", date: "2018-04-08" - }, { - address: "0xd8b21816d4c25b2e5d60e544ba094a9d14c30d4f", - comment: "Fake ICO support", - date: "2018-04-08" }, { address: "0x484aa220812a5ed3d1162686bc8592eb39276348", comment: "Fake PlayHall admin", @@ -3435,7 +3479,7 @@ var darklist = function darklist() { module.exports = darklist; -},{}],15:[function(require,module,exports){ +},{}],18:[function(require,module,exports){ 'use strict'; var addWalletCtrl = function addWalletCtrl($scope, $sce) { @@ -3713,7 +3757,7 @@ var addWalletCtrl = function addWalletCtrl($scope, $sce) { }; module.exports = addWalletCtrl; -},{}],16:[function(require,module,exports){ +},{}],19:[function(require,module,exports){ 'use strict'; var cxDecryptWalletCtrl = function cxDecryptWalletCtrl($scope, $sce, walletService) { @@ -3764,7 +3808,7 @@ var cxDecryptWalletCtrl = function cxDecryptWalletCtrl($scope, $sce, walletServi }; module.exports = cxDecryptWalletCtrl; -},{}],17:[function(require,module,exports){ +},{}],20:[function(require,module,exports){ 'use strict'; var mainPopCtrl = function mainPopCtrl($scope, $sce) { @@ -3800,7 +3844,7 @@ var mainPopCtrl = function mainPopCtrl($scope, $sce) { }; module.exports = mainPopCtrl; -},{}],18:[function(require,module,exports){ +},{}],21:[function(require,module,exports){ "use strict"; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -4099,7 +4143,7 @@ var myWalletsCtrl = function myWalletsCtrl($scope, $sce, $timeout, walletService }; module.exports = myWalletsCtrl; -},{}],19:[function(require,module,exports){ +},{}],22:[function(require,module,exports){ 'use strict'; var quickSendCtrl = function quickSendCtrl($scope, $sce, darkList) { @@ -4213,7 +4257,7 @@ var quickSendCtrl = function quickSendCtrl($scope, $sce, darkList) { }; module.exports = quickSendCtrl; -},{}],20:[function(require,module,exports){ +},{}],23:[function(require,module,exports){ 'use strict'; var bulkGenCtrl = function bulkGenCtrl($scope) { @@ -4245,7 +4289,7 @@ var bulkGenCtrl = function bulkGenCtrl($scope) { }; module.exports = bulkGenCtrl; -},{}],21:[function(require,module,exports){ +},{}],24:[function(require,module,exports){ 'use strict'; var contractsCtrl = function contractsCtrl($scope, $sce, walletService) { @@ -4446,7 +4490,7 @@ var contractsCtrl = function contractsCtrl($scope, $sce, walletService) { }; module.exports = contractsCtrl; -},{}],22:[function(require,module,exports){ +},{}],25:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -4477,6 +4521,7 @@ var decryptWalletCtrl = function decryptWalletCtrl($scope, $sce, walletService) hwUbqPath: "m/44'/108'/0'/0", // first address: m/44'/40'/0'/0/0 hwExpansePath: "m/44'/40'/0'/0", // first address: m/44'/40'/0'/0/0 hwEllaismPath: "m/44'/163'/0'/0", // first address: m/44'/163'/0'/0/0 + hwEtherGemPath: "m/44'/1987'/0'/0", // first address: m/44'/1987'/0'/0/0 singularDTVPath: "m/0'/0'/0'", // first address: m/0'/0'/0'/0 hwRskPath: "m/44'/137'/0'/0" // first address : m/44'/137'/0'/0/0 }; @@ -4536,6 +4581,9 @@ var decryptWalletCtrl = function decryptWalletCtrl($scope, $sce, walletService) case nodes.nodeTypes.ELLA: $scope.HDWallet.dPath = $scope.HDWallet.hwEllaismPath; break; + case nodes.nodeTypes.EGEM: + $scope.HDWallet.dPath = $scope.HDWallet.hwEtherGemPath; + break; default: $scope.HDWallet.dPath = $scope.HDWallet.trezorPath; } @@ -4829,7 +4877,7 @@ var decryptWalletCtrl = function decryptWalletCtrl($scope, $sce, walletService) module.exports = decryptWalletCtrl; }).call(this,require("buffer").Buffer) -},{"buffer":219}],23:[function(require,module,exports){ +},{"buffer":225}],26:[function(require,module,exports){ 'use strict'; var domainsaleCtrl = function domainsaleCtrl($scope, $sce, walletService) { @@ -5184,7 +5232,7 @@ var domainsaleCtrl = function domainsaleCtrl($scope, $sce, walletService) { }; module.exports = domainsaleCtrl; -},{}],24:[function(require,module,exports){ +},{}],27:[function(require,module,exports){ 'use strict'; var ensCtrl = function ensCtrl($scope, $sce, walletService) { @@ -5594,7 +5642,7 @@ var ensCtrl = function ensCtrl($scope, $sce, walletService) { }; module.exports = ensCtrl; -},{}],25:[function(require,module,exports){ +},{}],28:[function(require,module,exports){ 'use strict'; var footerCtrl = function footerCtrl($scope, globalService) { @@ -5632,7 +5680,7 @@ var footerCtrl = function footerCtrl($scope, globalService) { }; module.exports = footerCtrl; -},{}],26:[function(require,module,exports){ +},{}],29:[function(require,module,exports){ 'use strict'; var helpersCtrl = function helpersCtrl($scope) { @@ -5795,7 +5843,7 @@ FINALIZE */ -},{}],27:[function(require,module,exports){ +},{}],30:[function(require,module,exports){ 'use strict'; var offlineTxCtrl = function offlineTxCtrl($scope, $sce, walletService) { @@ -5990,7 +6038,7 @@ var offlineTxCtrl = function offlineTxCtrl($scope, $sce, walletService) { }; module.exports = offlineTxCtrl; -},{}],28:[function(require,module,exports){ +},{}],31:[function(require,module,exports){ 'use strict'; var onboardingCtrl = function onboardingCtrl($scope, globalService, $translate, $sce) { @@ -6031,7 +6079,7 @@ var onboardingCtrl = function onboardingCtrl($scope, globalService, $translate, }; module.exports = onboardingCtrl; -},{}],29:[function(require,module,exports){ +},{}],32:[function(require,module,exports){ 'use strict'; var sendTxCtrl = function sendTxCtrl($scope, $sce, walletService, $rootScope) { @@ -6344,7 +6392,7 @@ var sendTxCtrl = function sendTxCtrl($scope, $sce, walletService, $rootScope) { }; module.exports = sendTxCtrl; -},{}],30:[function(require,module,exports){ +},{}],33:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -6559,7 +6607,7 @@ var signMsgCtrl = function signMsgCtrl($scope, $sce, walletService) { module.exports = signMsgCtrl; }).call(this,require("buffer").Buffer) -},{"buffer":219}],31:[function(require,module,exports){ +},{"buffer":225}],34:[function(require,module,exports){ 'use strict'; function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; } @@ -6586,7 +6634,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { if (coin == 'REP') return false; return true; // if ($scope.fromExclude.indexOf(coin) > -1) return false; - // else return true; + // else returntrue; }; // Currently Not Really Used (kept for usage in a future feature) @@ -6678,7 +6726,6 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { } }; // todo: devise a Cleaner method - $scope.setOrderCoin = function (isFrom, coin) { $scope.kyberSwapRateDisplay(); var bityOptions = ["ETH", "BTC", "REP"]; @@ -6751,7 +6798,6 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { $scope.updateBityEstimate(isFrom); $scope.dropdownFrom = $scope.dropdownTo = false; }; - $scope.updateEstimate = function (isFrom) { if ($scope.checkIfKyber()) { $scope.updateKyberEstimate(isFrom); @@ -6881,7 +6927,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { tokensymbol: $scope.orderResult.input.currency == 'ETH' ? '' : $scope.orderResult.input.currency, readOnly: true // console.log(document.getElementById('sendTransaction')); //todo remove dev item - // new Modal(document.getElementById('sendTransaction')); + //new Modal(document.getElementById('sendTransaction')); };$scope.showStage3Eth = true; } }; @@ -6927,6 +6973,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { }, token: { initial: "READY", + resetApprove: "RESET_TOKEN_APPROVAL", prepareApprove: "GENERATE_APPROVAL_TRANSACTION", prepare: "GENERATE_SWAP_TRANSACTION", open: "APPROVE_TOKENS", @@ -6960,6 +7007,12 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { ethRawTx: null, ethTxHash: null, ethTxLink: null, + tokenNeedsReset: false, + currentTokenApprovalValue: 0, + tokenResetTx: null, + tokenResetTxRaw: null, + tokenResetTxHash: null, + tokenResetTxLink: null, tokenApproveTx: null, tokenApproveRawTx: null, tokenApproveTxHash: null, @@ -6989,40 +7042,80 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { /* ------------------------- MAIN SWAP PAGE FUNCTIONALITY TIE-INs (START) ------------------------------------- */ // called in setOrderCoin if selected pair is a kyber network pair - $scope.setKyberOrderCoin = function (isFrom) { - $scope.isKyberPairAvailable(); - $scope.swapOrder.swapRate = $scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)]; - $scope.swapOrder.swapPair = $scope.swapOrder.fromCoin + "/" + $scope.swapOrder.toCoin; - $scope.updateEstimate(isFrom); - $scope.dropdownFrom = $scope.dropdownTo = false; - }; + $scope.setKyberOrderCoin = function () { + var _ref = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(isFrom) { + var _availableResult; + + return regeneratorRuntime.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + $scope.dropdownFrom = $scope.dropdownTo = false; + _context.next = 3; + return $scope.isKyberPairAvailable(); + + case 3: + _availableResult = _context.sent; + + if (_availableResult) { + $scope.swapOrder.swapRate = $scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)]; + $scope.swapOrder.swapPair = $scope.swapOrder.fromCoin + "/" + $scope.swapOrder.toCoin; + $scope.updateEstimate(isFrom); + } - $scope.isKyberPairAvailable = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() { - return regeneratorRuntime.wrap(function _callee$(_context) { + case 5: + case "end": + return _context.stop(); + } + } + }, _callee, this); + })); + + return function (_x) { + return _ref.apply(this, arguments); + }; + }(); + + $scope.isKyberPairAvailable = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2() { + var _returnedRate; + + return regeneratorRuntime.wrap(function _callee2$(_context2) { while (1) { - switch (_context.prev = _context.next) { + switch (_context2.prev = _context2.next) { case 0: - _context.next = 2; + _context2.next = 2; return $scope.kyber.setKyberRate($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin); case 2: - if (!($scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)] == 0 || $scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)] == "0")) { - _context.next = 7; + _returnedRate = _context2.sent; + + if (!(_returnedRate > 0)) { + _context2.next = 7; break; } - $scope.displayKyberErrorMessage("unAvailable"); - return _context.abrupt("return", false); + return _context2.abrupt("return", true); case 7: - return _context.abrupt("return", true); - - case 8: + $scope.displayKyberErrorMessage("unAvailable"); + return _context2.abrupt("return", false); + + case 9: + console.log($scope.kyber.kyberRates); //todo remove dev item + // if ($scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)] == 0 || + // $scope.kyber.kyberRates[kyber.toPairKey($scope.swapOrder.fromCoin, $scope.swapOrder.toCoin)] == "0") { + // $scope.displayKyberErrorMessage("unAvailable"); + // return false; + // } else { + // return true; + // } + + case 10: case "end": - return _context.stop(); + return _context2.stop(); } } - }, _callee, this); + }, _callee2, this); })); // calculates the rate for display when a kyber pair is selected @@ -7091,13 +7184,13 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { if ($scope.validKyberPair()) { if (!$scope.$$phase) $scope.$apply(); try { - if (!$scope.Validator.isPositiveNumber($scope.swapOrder.fromVal) || !$scope.Validator.isPositiveNumber($scope.swapOrder.toVal)) throw "Invalid Value Present";else if (!$scope.verifyMinMaxValues()) throw "Invalid Value Present"; + if (!$scope.Validator.isPositiveNumber($scope.swapOrder.fromVal) || !$scope.Validator.isPositiveNumber($scope.swapOrder.toVal)) throw "Negative value present in input";else if (!$scope.verifyMinMaxValues()) throw "Min. Max. value error"; $scope.updateFinalKyberEstimate($scope.swapOrder.isFrom, function () { // $scope.canSetKyberFinal = true; - if ($scope.swapOrder.finalRate > 0) { + if ($scope.swapOrder.finalRate > 0 && $scope.swapOrder.swapRate > 0) { $scope.showStage1 = false; - $scope.swapOrder.swapRate = $scope.swapOrder.finalRate; + // $scope.swapOrder.swapRate = $scope.swapOrder.finalRate; $scope.prepareKyber(); } else { $scope.displayKyberErrorMessage("zeroRate"); @@ -7174,6 +7267,55 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { $scope.kyberReturnToStart = false; }; + var checkForPriorTokenApproval = function checkForPriorTokenApproval(_address, callback) { + if ($scope.swapOrder.fromCoin === "ETH") return callback(false); + $scope.kyber.allowance($scope.swapOrder.fromCoin, _address, function (data) { + if (data.error) $scope.notifier.danger(data.msg);else { + console.log("auth value", data); //todo remove dev item + + // data = data.data; + if (data.data > 0) { + + $scope.kyberTransaction.currentTokenApprovalValue = $scope.kyber.convertToTokenBase(data.data, $scope.swapOrder.fromCoin); + console.log("auth value exists", data); //todo remove dev item + callback(true); + } else { + console.log("no auth value exists", data); //todo remove dev item + callback(false); + } + // if (data >= checkValue) { + // $scope.setKyberStatus($scope.kyberStatus.token.send); //TOKENS_APPROVED + // $scope.sendKyberTransaction(); + // } + // if (!$scope.$$phase) $scope.$apply(); + } + }); + }; + + var checkUserCap = function checkUserCap(_userAddress, callback) { + var swapValue = void 0, + isFrom = void 0; + if ($scope.swapOrder.fromCoin == "ETH") { + swapValue = $scope.swapOrder.fromVal; + isFrom = true; + } else if ($scope.swapOrder.toCoin == "ETH") { + swapValue = $scope.swapOrder.toVal; + isFrom = false; + } else { + callback({ + error: true, + data: { + isFrom: false, + userCap: 0, + originalValue: 0, + result: false + } + }); + } + // ETH cap for transactions from ETH & to ETH (i.e. the ETH amount cannot be greater than the cap) + $scope.kyber.checkUserCap(_userAddress, swapValue, isFrom, callback); + }; + $scope.checkIfUserCanDo = function (_userAddress) { // console.log("checkIfUserCanDo 1", $scope.checkTokenBalance); //todo remove dev item try { @@ -7186,7 +7328,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { if ($scope.indicatorhacked.length > 10) $scope.indicatorhacked = []; }, 100); $scope.checkTokenBalance = false; - $scope.checkUserCap(_userAddress, function (result) { + checkUserCap(_userAddress, function (result) { // console.log("checkIfUserCanDo result", result); //todo remove dev item if (!result.error) { $scope.kyber.getBalance($scope.swapOrder.fromCoin, _userAddress, function (_result) { @@ -7195,8 +7337,18 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { var enoughTokens = userTokenBalance.gte($scope.swapOrder.fromVal); // console.log(userTokenBalance); //todo remove dev item if (enoughTokens) { - clearInterval(makeIndicator); - $scope.balanceOk = true; + checkForPriorTokenApproval($scope.walletKyber.getAddressString(), function (_data) { + if (_data) { + $scope.balanceOk = true; + $scope.kyberTransaction.tokenNeedsReset = true; + clearInterval(makeIndicator); + } else { + console.log("no priorApproval"); //todo remove dev item + clearInterval(makeIndicator); + $scope.kyberTransaction.tokenNeedsReset = false; + $scope.balanceOk = true; + } + }); } else { clearInterval(makeIndicator); $scope.kyberReturnToStart = true; @@ -7223,30 +7375,6 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { } }; - $scope.checkUserCap = function (_userAddress, callback) { - var swapValue = void 0, - isFrom = void 0; - if ($scope.swapOrder.fromCoin == "ETH") { - swapValue = $scope.swapOrder.fromVal; - isFrom = true; - } else if ($scope.swapOrder.toCoin == "ETH") { - swapValue = $scope.swapOrder.toVal; - isFrom = false; - } else { - callback({ - error: true, - data: { - isFrom: false, - userCap: 0, - originalValue: 0, - result: false - } - }); - } - // ETH cap for transactions from ETH & to ETH (i.e. the ETH amount cannot be greater than the cap) - $scope.kyber.checkUserCap(_userAddress, swapValue, isFrom, callback); - }; - $scope.validKyberPair = function () { var hasEth = $scope.swapOrder.fromCoin == "ETH" || $scope.swapOrder.toCoin == "ETH"; var notBTC = $scope.swapOrder.fromCoin !== "BTC" || $scope.swapOrder.toCoin !== "BTC"; @@ -7256,6 +7384,18 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { /* ------------------------------------- KYBER SPECIFIC (tx related) ------------------------------------- */ $scope.prepareKyber = function () { + + // document.addEventListener("unload", function(event){ + // alert("warning warning"); + // console.log(event); //todo remove dev item + // return "Leaving the page before your swap completes may cause your swap to fail." + // }) + // + // document.addEventListener("beforeunload", function(event){ + // console.log(event); //todo remove dev item + // alert("warning warning"); + // return "Leaving the page before your swap completes may cause your swap to fail." + // }) try { $scope.showStage2Kyber = true; $scope.kyberOrderResult.input = { @@ -7315,7 +7455,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { // console.log($scope.walletKyber); //todo remove dev item $scope.wallet = walletService.wallet; if ($scope.availableTokens.indexOf($scope.swapOrder.fromCoin) >= 0) { - $scope.approveTokenKyber($scope.wallet); + $scope.checkForResetApproveTokenKyber(); } else { $scope.openKyberEthOrder(); } @@ -7353,13 +7493,34 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { // Initiate Token to ETH (or Token to Token) Swap flow // Build the Approve transaction to send to the Token Contract of the 'from' Token - $scope.approveTokenKyber = function () { + + $scope.checkForResetApproveTokenKyber = function () { + try { + if ($scope.kyberTransaction.tokenNeedsReset) { + $scope.tx = $scope.buildTransactionObject($scope.kyber.approveKyber($scope.swapOrder.fromCoin, 0), $scope.kyber.getTokenAddress($scope.swapOrder.fromCoin)); + var txData = uiFuncs.getTxData($scope); + txData.nonce = txData.gasPrice = null; + $scope.generateKyberTransaction(txData, $scope.kyberStatus.token.resetApprove); + } else { + $scope.approveTokenKyber(); + } + } catch (e) { + console.error(e); + } + }; + + $scope.approveTokenKyber = function (nonce, gasPrice) { try { $scope.tx = $scope.buildTransactionObject($scope.kyber.approveKyber($scope.swapOrder.fromCoin, $scope.swapOrder.fromVal), $scope.kyber.getTokenAddress($scope.swapOrder.fromCoin)); var txData = uiFuncs.getTxData($scope); - txData.nonce = txData.gasPrice = null; + if (nonce && gasPrice) { + var newNonce = parseInt(ethFuncs.hexToDecimal(nonce)); + txData.nonce = "0x" + ethFuncs.decimalToHex(newNonce + 1); + txData.gasPrice = gasPrice; + } else txData.nonce = txData.gasPrice = null; $scope.generateKyberTransaction(txData, $scope.kyberStatus.token.prepareApprove); + //todo remove dev item}); } catch (e) { console.error(e); } @@ -7384,25 +7545,61 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { }; /* ----------- Kyber (common functions) ----------- */ + /* + * + * $scope.kyberStatus = { + initial: "READY", + eth: { + initial: "READY", + prepare: "OPEN_ETH", + open: "OPEN_ETH", + send: "SEND_ETH", + complete: "TRANSMITTED" + }, + token: { + initial: "READY", + resetApprove: "RESET_TOKEN_APPROVAL", + prepareApprove: "GENERATE_APPROVAL_TRANSACTION", + prepare: "GENERATE_SWAP_TRANSACTION", + open: "APPROVE_TOKENS", + approve: "AWAITING_TOKEN_APPROVAL", + send: "TOKENS_APPROVED", + complete: "TRANSMITTED" + } + }; + */ // generate the transaction object based on the specific flow stage $scope.generateKyberTransaction = function (txData, stage) { try { uiFuncs.generateTx(txData, function (rawTx) { + console.log($scope.kyberOrderResult.progress.status); //todo remove dev item if (!rawTx.isError) { switch (stage) { + case "RESET_TOKEN_APPROVAL": + case $scope.kyberStatus.token.resetApprove: + $scope.kyberTransaction.tokenResetTx = rawTx; + $scope.approveTokenKyber(rawTx.nonce, rawTx.gasPrice); + break; case "GENERATE_APPROVAL_TRANSACTION": + case $scope.kyberStatus.token.prepareApprove: $scope.kyberTransaction.tokenApproveTx = rawTx; // Build the Swap transaction in the same flow $scope.openKyberTokenOrder(rawTx.nonce, rawTx.gasPrice); break; case "GENERATE_SWAP_TRANSACTION": + case $scope.kyberStatus.token.prepare: $scope.kyberTransaction.tokenTx = rawTx; // update status to reflect transaction generation and prompting of user for approval - $scope.setKyberStatus($scope.kyberStatus.token.open); //APPROVE_TOKENS + if ($scope.kyberTransaction.tokenNeedsReset) { + $scope.setKyberStatus($scope.kyberStatus.token.resetApprove); //APPROVE_TOKENS + } else { + $scope.setKyberStatus($scope.kyberStatus.token.open); + } $scope.sendKyberModal(); break; case "OPEN_ETH": + case $scope.kyberStatus.eth.open: $scope.kyberTransaction.ethTx = rawTx; $scope.setKyberStatus($scope.kyberStatus.eth.send); //SEND_ETH $scope.sendKyberModal(); @@ -7424,12 +7621,19 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { // Trigger the opening of the modal for user review and authorization to proceed $scope.sendKyberModal = function () { + + //PageTransitionEvent + console.log($scope.kyberOrderResult.progress.status); //todo remove dev item try { switch ($scope.kyberOrderResult.progress.status) { case "APPROVE_TOKENS": // Generate the content to populate the modal that prompts of user for approval $scope.parseKyberSignedTx($scope.kyberTransaction.tokenTx.signedTx); $scope.kyberModal.open(); + case "RESET_TOKEN_APPROVAL": + // Generate the content to populate the modal that prompts of user for approval + $scope.parseKyberSignedTx($scope.kyberTransaction.tokenTx.signedTx); + $scope.kyberModal.open(); break; case "SEND_ETH": $scope.parseKyberSignedTx($scope.kyberTransaction.ethTx.signedTx); @@ -7448,6 +7652,16 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { $scope.sendKyberTransaction = function () { try { switch ($scope.kyberOrderResult.progress.status) { + case "RESET_TOKEN_APPROVAL": + case $scope.kyberStatus.token.resetApprove: + $scope.showStage4Kyber = true; + $scope.showStage3Kyber = false; + $scope.kyberModal.close(); + // set the status to trigger polling of token contract for approval of tokens for swap + $scope.setKyberStatus($scope.kyberStatus.token.resetApprove); //AWAITING_TOKEN_APPROVAL + $scope.sendKyberTx($scope.kyberTransaction.tokenResetTx.signedTx); + + break; case "APPROVE_TOKENS": $scope.showStage4Kyber = true; $scope.showStage3Kyber = false; @@ -7481,13 +7695,26 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { if (!resp.isError) { var notCustomNode = $scope.ajaxReq.type != nodes.nodeTypes.Custom; switch ($scope.kyberOrderResult.progress.status) { + case "RESET_TOKEN_APPROVAL": + console.log("send reset token approval", $scope.kyberOrderResult.progress.status); //todo remove dev item + $scope.kyberTransaction.tokenResetTxHash = notCustomNode ? resp.data : ""; + $scope.kyberTransaction.tokenResetTxLink = $scope.ajaxReq.blockExplorerTX.replace("[[txHash]]", resp.data); + // $scope.displayTxHashPopup(resp, $scope.kyberTransaction.tokenResetTxLink); + $scope.kyberOrderResult.progress.bar = getProgressBarArr(4, 5); + + $scope.checkForTokenResetKyber($scope.walletKyber.getAddressString()); + break; case "TOKENS_APPROVED": + console.log("TOKENS_APPROVED", $scope.kyberOrderResult.progress.status); //todo remove dev item + $scope.kyberTransaction.tokenTxHash = notCustomNode ? resp.data : ""; $scope.kyberTransaction.tokenTxLink = $scope.ajaxReq.blockExplorerTX.replace("[[txHash]]", resp.data); - $scope.displayTxHash(resp, $scope.kyberTransaction.tokenTxLink); + $scope.displayTxHashPopup(resp, $scope.kyberTransaction.tokenTxLink); $scope.kyberOrderResult.progress.bar = getProgressBarArr(5, 5); break; case "AWAITING_TOKEN_APPROVAL": + console.log("AWAITING_TOKEN_APPROVAL", $scope.kyberOrderResult.progress.status); //todo remove dev item + $scope.kyberTransaction.tokenApproveTxHash = notCustomNode ? resp.data : ""; $scope.kyberTransaction.tokenApproveTxLink = $scope.ajaxReq.blockExplorerTX.replace("[[txHash]]", resp.data); $scope.checkForTokenApproveKyber($scope.walletKyber.getAddressString()); @@ -7496,7 +7723,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { $scope.kyberTransaction.ethTxHash = notCustomNode ? resp.data : ""; $scope.kyberTransaction.ethTxLink = $scope.ajaxReq.blockExplorerTX.replace("[[txHash]]", resp.data); $scope.kyberOrderResult.progress.bar = getProgressBarArr(5, 5); - $scope.displayTxHash(resp, $scope.kyberTransaction.ethTxLink); + $scope.displayTxHashPopup(resp, $scope.kyberTransaction.ethTxLink); break; default: @@ -7516,37 +7743,20 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { // Poll token contract for approval, then trigger the Kyber Network Contract portion of the flow $scope.checkForTokenApproveKyber = function (address) { - try { - // var checkValue = etherUnits.toWei($scope.swapOrder.fromVal, "ether"); - var checkValue = $scope.kyber.convertToTokenWei($scope.swapOrder.fromVal, $scope.swapOrder.fromCoin); - $scope.indicatorhacked = []; - var orderResult = $scope.kyberOrderResult; - orderResult.progress.startTime = new Date().getTime(); - var progressCheck = setInterval(function () { - if ($scope.indicatorhacked.length > 10) $scope.indicatorhacked = []; - if (!orderResult.progress.pendingStatusReq) { - orderResult.progress.pendingStatusReq = true; - $scope.kyber.allowance($scope.swapOrder.fromCoin, address, function (data) { - if (data.error) $scope.notifier.danger(data.msg);else { - - data = data.data; - if (data >= checkValue) { - orderResult.progress.bar = getProgressBarArr(3, 5); - $scope.setKyberStatus($scope.kyberStatus.token.send); //TOKENS_APPROVED - clearInterval(progressCheck); - $scope.sendKyberTransaction(); - } else { - $scope.indicatorhacked.push(". "); - } - if (!$scope.$$phase) $scope.$apply(); - } - orderResult.progress.pendingStatusReq = false; - }); - } - }, orderResult.progress.checkDelay); - } catch (e) { - console.error(e); + if ($scope.kyberTransaction.tokenNeedsReset) { + $scope.kyberOrderResult.progress.bar = getProgressBarArr(4, 5); + } else { + $scope.kyberOrderResult.progress.bar = getProgressBarArr(3, 5); } + $scope.setKyberStatus($scope.kyberStatus.token.send); //TOKENS_APPROVED + $scope.sendKyberTransaction(); + }; + + // Poll token contract for approval, then trigger the Kyber Network Contract portion of the flow + $scope.checkForTokenResetKyber = function (address) { + $scope.kyberOrderResult.progress.bar = getProgressBarArr(3, 5); + $scope.setKyberStatus($scope.kyberStatus.token.open); //AWAITING_TOKEN_APPROVAL + $scope.sendKyberTransaction(); //todo uncomment after dev }; /* ---------------------------------------- MISC./UTIL --------------------------------------------------------- */ @@ -7575,7 +7785,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { }; }; - $scope.displayTxHash = function (resp, txHashInject) { + $scope.displayTxHashPopup = function (resp, txHashInject) { var emailLink = 'Confused? Email Us.'; // email link var bExStr = $scope.ajaxReq.type != nodes.nodeTypes.Custom ? " View your transaction " : ""; $scope.sendTxStatus += globalFuncs.successMsgs[2] + "

      " + resp.data + "

      " + bExStr + "

      " + emailLink + "

      "; @@ -7624,25 +7834,42 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { $scope.parsedKyberTx = $scope.parseKyberSignedTransaction(signedTx); if (!$scope.kyberEthToToken) { $scope.parsedKyberTokenTx = $scope.parseKyberSignedTransaction($scope.kyberTransaction.tokenApproveTx.signedTx); - // Calculate Combined Values - $scope.parsedTx = {}; - $scope.parsedTx.totalTxFee = {}; - $scope.parsedTx.totalTxFee.wei = new BigNumber($scope.parsedKyberTx.txFee.wei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.wei)); - $scope.parsedTx.totalTxFee.gwei = new BigNumber($scope.parsedKyberTx.txFee.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.gwei)); - $scope.parsedTx.totalTxFee.eth = new BigNumber($scope.parsedKyberTx.txFee.eth).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.eth)); - $scope.parsedTx.avgGasPrice = {}; - $scope.parsedTx.avgGasPrice.wei = new BigNumber($scope.parsedKyberTx.gasPrice.wei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.wei)).div(2); - $scope.parsedTx.avgGasPrice.gwei = new BigNumber($scope.parsedKyberTx.gasPrice.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.gwei)).div(2); - $scope.parsedTx.avgGasPrice.eth = new BigNumber($scope.parsedKyberTx.gasPrice.eth).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.eth)).div(2); - $scope.parsedTx.totalGasLimit = new BigNumber($scope.parsedKyberTokenTx.gasLimit).plus(new BigNumber($scope.parsedKyberTx.gasLimit)); - - if ($scope.swapOrder.fromCoin == "ETH") { - $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)).minus(new BigNumber($scope.swapOrder.toVal)); - } else if ($scope.swapOrder.toCoin == "ETH") { - $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)).plus(new BigNumber($scope.swapOrder.fromVal)); + if ($scope.kyberTransaction.tokenNeedsReset) { + $scope.parsedKyberResetTokenTx = $scope.parseKyberSignedTransaction($scope.kyberTransaction.tokenResetTx.signedTx); + + // Calculate Combined Values + $scope.parsedTx = {}; + $scope.parsedTx.totalTxFee = {}; + $scope.parsedTx.totalTxFee.wei = new BigNumber($scope.parsedKyberTx.txFee.wei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.wei)).plus(new BigNumber($scope.parsedKyberResetTokenTx.txFee.wei)); + $scope.parsedTx.totalTxFee.gwei = new BigNumber($scope.parsedKyberTx.txFee.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.gwei)).plus(new BigNumber($scope.parsedKyberResetTokenTx.txFee.gwei)); + $scope.parsedTx.totalTxFee.eth = new BigNumber($scope.parsedKyberTx.txFee.eth).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.eth)).plus(new BigNumber($scope.parsedKyberResetTokenTx.txFee.eth)); + $scope.parsedTx.avgGasPrice = {}; + $scope.parsedTx.avgGasPrice.wei = new BigNumber($scope.parsedKyberTx.gasPrice.wei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.wei)).plus(new BigNumber($scope.parsedKyberResetTokenTx.gasPrice.wei)).div(3); + $scope.parsedTx.avgGasPrice.gwei = new BigNumber($scope.parsedKyberTx.gasPrice.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.gwei)).plus(new BigNumber($scope.parsedKyberResetTokenTx.gasPrice.gwei)).div(3); + $scope.parsedTx.avgGasPrice.eth = new BigNumber($scope.parsedKyberTx.gasPrice.eth).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.eth)).plus(new BigNumber($scope.parsedKyberResetTokenTx.gasPrice.eth)).div(3); + $scope.parsedTx.totalGasLimit = new BigNumber($scope.parsedKyberTokenTx.gasLimit).plus(new BigNumber($scope.parsedKyberTx.gasLimit)).plus(new BigNumber($scope.parsedKyberResetTokenTx.gasLimit)); } else { - $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)); + + // Calculate Combined Values + $scope.parsedTx = {}; + $scope.parsedTx.totalTxFee = {}; + $scope.parsedTx.totalTxFee.wei = new BigNumber($scope.parsedKyberTx.txFee.wei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.wei)); + $scope.parsedTx.totalTxFee.gwei = new BigNumber($scope.parsedKyberTx.txFee.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.gwei)); + $scope.parsedTx.totalTxFee.eth = new BigNumber($scope.parsedKyberTx.txFee.eth).plus(new BigNumber($scope.parsedKyberTokenTx.txFee.eth)); + $scope.parsedTx.avgGasPrice = {}; + $scope.parsedTx.avgGasPrice.wei = new BigNumber($scope.parsedKyberTx.gasPrice.wei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.wei)).div(2); + $scope.parsedTx.avgGasPrice.gwei = new BigNumber($scope.parsedKyberTx.gasPrice.gwei).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.gwei)).div(2); + $scope.parsedTx.avgGasPrice.eth = new BigNumber($scope.parsedKyberTx.gasPrice.eth).plus(new BigNumber($scope.parsedKyberTokenTx.gasPrice.eth)).div(2); + $scope.parsedTx.totalGasLimit = new BigNumber($scope.parsedKyberTokenTx.gasLimit).plus(new BigNumber($scope.parsedKyberTx.gasLimit)); } + + // if ($scope.swapOrder.fromCoin == "ETH") { + // $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)).minus(new BigNumber($scope.swapOrder.toVal)); + // } else if ($scope.swapOrder.toCoin == "ETH") { + // $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)).plus(new BigNumber($scope.swapOrder.fromVal)); + // } else { + // $scope.parsedTx.approximateFinalBalance = new BigNumber($scope.parsedKyberTx.balance).minus(new BigNumber($scope.parsedTx.totalTxFee.eth)); + // } } }; @@ -7710,7 +7937,7 @@ var swapCtrl = function swapCtrl($scope, $sce, walletService) { }; module.exports = swapCtrl; -},{}],32:[function(require,module,exports){ +},{}],35:[function(require,module,exports){ 'use strict'; var tabsCtrl = function tabsCtrl($scope, globalService, $translate, $sce) { @@ -8032,7 +8259,7 @@ var tabsCtrl = function tabsCtrl($scope, globalService, $translate, $sce) { }; module.exports = tabsCtrl; -},{}],33:[function(require,module,exports){ +},{}],36:[function(require,module,exports){ 'use strict'; var txStatusCtrl = function txStatusCtrl($scope) { @@ -8127,7 +8354,7 @@ var txStatusCtrl = function txStatusCtrl($scope) { }; module.exports = txStatusCtrl; -},{}],34:[function(require,module,exports){ +},{}],37:[function(require,module,exports){ 'use strict'; var viewCtrl = function viewCtrl($scope, globalService, $sce) { @@ -8138,7 +8365,7 @@ var viewCtrl = function viewCtrl($scope, globalService, $sce) { }; module.exports = viewCtrl; -},{}],35:[function(require,module,exports){ +},{}],38:[function(require,module,exports){ 'use strict'; var viewWalletCtrl = function viewWalletCtrl($scope, walletService) { @@ -8198,7 +8425,7 @@ var viewWalletCtrl = function viewWalletCtrl($scope, walletService) { }; module.exports = viewWalletCtrl; -},{}],36:[function(require,module,exports){ +},{}],39:[function(require,module,exports){ 'use strict'; var walletBalanceCtrl = function walletBalanceCtrl($scope, $sce, $rootScope) { @@ -8298,7 +8525,7 @@ var walletBalanceCtrl = function walletBalanceCtrl($scope, $sce, $rootScope) { module.exports = walletBalanceCtrl; -},{}],37:[function(require,module,exports){ +},{}],40:[function(require,module,exports){ 'use strict'; var walletGenCtrl = function walletGenCtrl($scope) { @@ -8368,7 +8595,7 @@ var walletGenCtrl = function walletGenCtrl($scope) { }; module.exports = walletGenCtrl; -},{}],38:[function(require,module,exports){ +},{}],41:[function(require,module,exports){ 'use strict'; // For token sale holders: @@ -8380,6 +8607,12 @@ module.exports = walletGenCtrl; // http://www.tokensalecalendar.com/ module.exports = [{ + // Merculet (MVP) Token sale + to: '0x8a77e40936bbc27e80e9a3f526368c967869c86d', + gasLimit: 210000, + data: '', + msg: 'Merculet (MVP) token sale - You must have registered at https://merculet.io and followed the instructions to purchase tokens here.' +}, { // GIFcoin (GIF) Token sale to: '0xFcD862985628b254061F7A918035B80340D045d3', gasLimit: 200000, @@ -8717,7 +8950,7 @@ module.exports = [{ msg: 'WHEN Token Sale. Join the future of person-to-person micro-contracts using the blockchain.: https://interface.whenhub.com/' }]; -},{}],39:[function(require,module,exports){ +},{}],42:[function(require,module,exports){ 'use strict'; var cxFuncs = function cxFuncs() {}; @@ -8814,7 +9047,7 @@ cxFuncs.editNickName = function (address, newNick, callback) { }; module.exports = cxFuncs; -},{}],40:[function(require,module,exports){ +},{}],43:[function(require,module,exports){ 'use strict'; var QRCodeDrtv = function QRCodeDrtv() { @@ -8840,7 +9073,7 @@ var QRCodeDrtv = function QRCodeDrtv() { }; module.exports = QRCodeDrtv; -},{}],41:[function(require,module,exports){ +},{}],44:[function(require,module,exports){ 'use strict'; var addressFieldDrtv = function addressFieldDrtv($compile, darkList) { @@ -8923,9 +9156,9 @@ var addressFieldDrtv = function addressFieldDrtv($compile, darkList) { }; module.exports = addressFieldDrtv; -},{}],42:[function(require,module,exports){ +},{}],45:[function(require,module,exports){ module.exports = "\n"; -},{}],43:[function(require,module,exports){ +},{}],46:[function(require,module,exports){ 'use strict'; var balanceDrtv = function balanceDrtv() { @@ -8936,7 +9169,7 @@ var balanceDrtv = function balanceDrtv() { }; module.exports = balanceDrtv; -},{"./balanceDrtv.html":42}],44:[function(require,module,exports){ +},{"./balanceDrtv.html":45}],47:[function(require,module,exports){ 'use strict'; var blockiesDrtv = function blockiesDrtv() { @@ -8953,7 +9186,7 @@ var blockiesDrtv = function blockiesDrtv() { }; module.exports = blockiesDrtv; -},{}],45:[function(require,module,exports){ +},{}],48:[function(require,module,exports){ 'use strict'; var cxWalletDecryptDrtv = function cxWalletDecryptDrtv() { @@ -8979,7 +9212,7 @@ var cxWalletDecryptDrtv = function cxWalletDecryptDrtv() { }; module.exports = cxWalletDecryptDrtv; -},{}],46:[function(require,module,exports){ +},{}],49:[function(require,module,exports){ 'use strict'; var fileReaderDrtv = function fileReaderDrtv($parse) { @@ -9004,9 +9237,9 @@ var fileReaderDrtv = function fileReaderDrtv($parse) { }; module.exports = fileReaderDrtv; -},{}],47:[function(require,module,exports){ -module.exports = "
      \n\n \n
      \n\n

      \n How would you like to access your wallet?\n

      \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n
      \n \n\n\n \n
      \n\n \n
      \n

      \n Your Address\n

      \n
      \n \n This is a recommended way to view your balance.\n
      \n

      \n You can only view your balance via this option.\n Please use another option in order to send.\n

      \n
      \n \n
      \n \n
      \n \n\n\n \n
      \n

      \n MetaMask / Mist\n

      \n
      \n \n This is a recommended way to access your wallet.\n
      \n
      \n MetaMask is a browser extension that allows you to access your wallet quickly, safely & easily. It is more secure because you never enter your private key on a website. It protects you from phishing & malicious websites.\n
      \n \n
      \n \n Please use MyEtherWallet on a secure (SSL / HTTPS) connection to connect.\n \n
      \n \n
      \n \n\n\n \n
      \n

      \n Ledger Hardware Wallet\n

      \n
      \n \n This is a recommended way to access your wallet.\n
      \n
      \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
      \n \n \n
      \n

      \n {{ledgerErrorString}}\n

      \n
        \n
      • \n Please use MyEtherWallet on a secure (SSL / HTTPS) connection to connect.\n
      • \n
      • \n \n Open the Ethereum application (or a contract application)\n \n \n Open the Expanse application (or a contract application)\n \n \n Open the Ubiq application (or a contract application)\n \n
      • \n
      • \n \n Still not working? More Troubleshooting Tips\n \n
      • \n
      \n
      \n
      \n \n\n\n \n
      \n

      \n TREZOR Hardware Wallet\n

      \n
      \n \n This is a recommended way to access your wallet.\n
      \n
      \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
      \n \n \n
      \n

      \n {{trezorErrorString}}\n

      \n \n
      \n
      \n \n\n\n \n
      \n

      \n Digital Bitbox Hardware Wallet\n

      \n
      \n \n This is a recommended way to access your wallet.\n
      \n
      \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
      \n \n \n \n
      \n \n\n\n \n
      \n

      \n Secalot Hardware Wallet\n

      \n
      \n \n This is a recommended way to access your wallet.\n
      \n
      \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
      \n \n \n \n
      \n \n\n\n \n
      \n

      Select your wallet file

      \n
      \n \n This is not a recommended way to access your wallet.\n
      \n
      \n Entering your private key on a website dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
      \n \n
      \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
      \n
      \n \n
      \n

      \n Your file is encrypted. Please enter the password:\n

      \n \n
      \n \n
      \n \n\n\n \n
      \n

      Paste your mnemonic:

      \n
      \n \n This is not a recommended way to access your wallet.\n
      \n
      \n Entering your private key on a website dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
      \n \n
      \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
      \n
      \n
      \n \n
      \n
      \n

      \n Password (optional):\n

      \n
      \n \n
      \n
      \n \n
      \n \n\n\n \n
      \n

      \n Paste your private key:\n

      \n
      \n \n This is not a recommended way to access your wallet.\n
      \n
      \n Entering your private key on a website is dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
      \n \n
      \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
      \n
      \n
      \n \n
      \n
      \n

      \n Your file is encrypted. Please enter the password:\n

      \n \n
      \n \n
      \n \n\n\n \n
      \n

      Paste your mnemonic:

      \n
      \n \n
      \n \n
      \n \n\n
      \n \n\n\n \n
      \n\n
      \n\n
      \n\n
      \n\n \n\n \n

      \n Select HD derivation path:\n

      \n\n

      \n We do not know the correct path for this network.\n \n Please open a github issue\n \n so we can discuss / be enlightened.\n

      \n\n
      \n\n
      \n \n
      \n\n
      \n \n\n \n
      \n\n
      \n \n
      \n\n
      \n \n
      \n\n
      \n\n
      \n
      \n \n
      \n\n
      \n \n
      \n\n
      \n \n
      \n\n
      \n \n
      \n
      \n\n
      \n
      \n \n
      \n
      \n\n\n\n

      \n Please select the address you would like to interact with.\n

      \n\n \n \n \n \n \n \n \n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n
      \n Address\n \n Balance\n \n Token
      Balances\n
      \n \n \n \n {{wallet.getBalance()}} {{ajaxReq.type}}\n \n \n \n \n \n
      \n 5\"\n role=\"link\"\n tabindex=\"0\"\n translate=\"MNEM_prev\">\n Previous Addresses\n \n \n \n More Addresses\n \n
      \n\n
      \n \n\n \n
      \n\n
      \n\n
      \n\n
      \n\n
      \n\n
      \n"; -},{}],48:[function(require,module,exports){ +},{}],50:[function(require,module,exports){ +module.exports = "
      \n\n \n
      \n\n

      \n How would you like to access your wallet?\n

      \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n \n\n \n
      \n \n\n\n \n
      \n\n \n
      \n

      \n Your Address\n

      \n
      \n \n This is a recommended way to view your balance.\n
      \n

      \n You can only view your balance via this option.\n Please use another option in order to send.\n

      \n
      \n \n
      \n \n
      \n \n\n\n \n
      \n

      \n MetaMask / Mist\n

      \n
      \n \n This is a recommended way to access your wallet.\n
      \n
      \n MetaMask is a browser extension that allows you to access your wallet quickly, safely & easily. It is more secure because you never enter your private key on a website. It protects you from phishing & malicious websites.\n
      \n \n
      \n \n Please use MyEtherWallet on a secure (SSL / HTTPS) connection to connect.\n \n
      \n \n
      \n \n\n\n \n
      \n

      \n Ledger Hardware Wallet\n

      \n
      \n \n This is a recommended way to access your wallet.\n
      \n
      \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
      \n \n \n
      \n

      \n {{ledgerErrorString}}\n

      \n
        \n
      • \n Please use MyEtherWallet on a secure (SSL / HTTPS) connection to connect.\n
      • \n
      • \n \n Open the Ethereum application (or a contract application)\n \n \n Open the Expanse application (or a contract application)\n \n \n Open the Ubiq application (or a contract application)\n \n
      • \n
      • \n \n Still not working? More Troubleshooting Tips\n \n
      • \n
      \n
      \n
      \n \n\n\n \n
      \n

      \n TREZOR Hardware Wallet\n

      \n
      \n \n This is a recommended way to access your wallet.\n
      \n
      \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
      \n \n \n
      \n

      \n {{trezorErrorString}}\n

      \n \n
      \n
      \n \n\n\n \n
      \n

      \n Digital Bitbox Hardware Wallet\n

      \n
      \n \n This is a recommended way to access your wallet.\n
      \n
      \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
      \n \n \n \n
      \n \n\n\n \n
      \n

      \n Secalot Hardware Wallet\n

      \n
      \n \n This is a recommended way to access your wallet.\n
      \n
      \n A hardware wallet is a small USB device that allows you to access your wallet quickly, safely & easily. It is more secure because your private key never leaves the hardware wallet. It protects you from phishing, malware, and more.\n
      \n \n \n \n
      \n \n\n\n \n
      \n

      Select your wallet file

      \n
      \n \n This is not a recommended way to access your wallet.\n
      \n
      \n Entering your private key on a website dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
      \n \n
      \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
      \n
      \n \n
      \n

      \n Your file is encrypted. Please enter the password:\n

      \n \n
      \n \n
      \n \n\n\n \n
      \n

      Paste your mnemonic:

      \n
      \n \n This is not a recommended way to access your wallet.\n
      \n
      \n Entering your private key on a website dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
      \n \n
      \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
      \n
      \n
      \n \n
      \n
      \n

      \n Password (optional):\n

      \n
      \n \n
      \n
      \n \n
      \n \n\n\n \n
      \n

      \n Paste your private key:\n

      \n
      \n \n This is not a recommended way to access your wallet.\n
      \n
      \n Entering your private key on a website is dangerous. If our website is compromised or you accidentally visit a different website, your funds will be stolen. Please consider:\n
      \n \n
      \n If you must, please double-check the URL & SSL cert. It should say https://www.myetherwallet.com & MYETHERWALLET INC in your URL bar.\n
      \n
      \n
      \n \n
      \n
      \n

      \n Your file is encrypted. Please enter the password:\n

      \n \n
      \n \n
      \n \n\n\n \n
      \n

      Paste your mnemonic:

      \n
      \n \n
      \n \n
      \n \n\n
      \n \n\n\n \n
      \n\n
      \n\n
      \n\n
      \n\n \n\n \n

      \n Select HD derivation path:\n

      \n\n

      \n We do not know the correct path for this network.\n \n Please open a github issue\n \n so we can discuss / be enlightened.\n

      \n\n
      \n\n
      \n \n
      \n\n
      \n \n\n \n
      \n\n
      \n \n
      \n\n
      \n \n
      \n\n
      \n\n
      \n
      \n \n
      \n\n
      \n \n
      \n\n
      \n \n
      \n\n
      \n \n
      \n\n
      \n \n
      \n
      \n\n
      \n
      \n \n
      \n
      \n\n\n\n

      \n Please select the address you would like to interact with.\n

      \n\n \n \n \n \n \n \n \n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n
      \n Address\n \n Balance\n \n Token
      Balances\n
      \n \n \n \n {{wallet.getBalance()}} {{ajaxReq.type}}\n \n \n \n \n \n
      \n 5\"\n role=\"link\"\n tabindex=\"0\"\n translate=\"MNEM_prev\">\n Previous Addresses\n \n \n \n More Addresses\n \n
      \n\n
      \n \n\n \n
      \n\n
      \n\n
      \n\n
      \n\n
      \n\n
      \n"; +},{}],51:[function(require,module,exports){ 'use strict'; var walletDecryptDrtv = function walletDecryptDrtv() { @@ -9017,7 +9250,7 @@ var walletDecryptDrtv = function walletDecryptDrtv() { }; module.exports = walletDecryptDrtv; -},{"./walletDecryptDrtv.html":47}],49:[function(require,module,exports){ +},{"./walletDecryptDrtv.html":50}],52:[function(require,module,exports){ 'use strict'; var ens = require('./ens'); @@ -9180,7 +9413,7 @@ domainsale.transactions = { }; module.exports = domainsale; -},{"./domainsaleConfigs/domainsaleABI.json":50,"./ens":51}],50:[function(require,module,exports){ +},{"./domainsaleConfigs/domainsaleABI.json":53,"./ens":54}],53:[function(require,module,exports){ module.exports=[ { "constant": true, @@ -9599,7 +9832,7 @@ module.exports=[ } ] -},{}],51:[function(require,module,exports){ +},{}],54:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -10000,7 +10233,7 @@ ens.prototype.checkDomain = function () { module.exports = ens; }).call(this,require("buffer").Buffer) -},{"./ensConfigs/ETHConfig.json":52,"./ensConfigs/ROPConfig.json":53,"./ensConfigs/RinkebyConfig.json":54,"./ensConfigs/auctionABI.json":55,"./ensConfigs/deedABI.json":56,"./ensConfigs/registryABI.json":57,"./ensConfigs/resolverABI.json":58,"./ensConfigs/subDomainABI.json":59,"buffer":219,"idna-uts46":605}],52:[function(require,module,exports){ +},{"./ensConfigs/ETHConfig.json":55,"./ensConfigs/ROPConfig.json":56,"./ensConfigs/RinkebyConfig.json":57,"./ensConfigs/auctionABI.json":58,"./ensConfigs/deedABI.json":59,"./ensConfigs/registryABI.json":60,"./ensConfigs/resolverABI.json":61,"./ensConfigs/subDomainABI.json":62,"buffer":225,"idna-uts46":611}],55:[function(require,module,exports){ module.exports={ "public": { "resolver": "0x1da022710dF5002339274AaDEe8D58218e9D6AB5", @@ -10149,7 +10382,7 @@ module.exports={ }, "registry": "0x314159265dD8dbb310642f98f50C066173C1259b" } -},{}],53:[function(require,module,exports){ +},{}],56:[function(require,module,exports){ module.exports={ "public": { "resolver": "0x4c641fb9bad9b60ef180c31f56051ce826d21a9a", @@ -10159,7 +10392,7 @@ module.exports={ "registry": "0x112234455c3a32fd11230c42e7bccd4a84e02010" } -},{}],54:[function(require,module,exports){ +},{}],57:[function(require,module,exports){ module.exports={ "public": { "resolver": "0xb14fdee4391732ea9d2267054ead2084684c0ad8", @@ -10169,7 +10402,7 @@ module.exports={ "registry": "0xe7410170f87102df0055eb195163a03b7f2bff4a" } -},{}],55:[function(require,module,exports){ +},{}],58:[function(require,module,exports){ module.exports=[{ "constant": false, "inputs": [{ @@ -10586,7 +10819,7 @@ module.exports=[{ "name": "HashInvalidated", "type": "event" }] -},{}],56:[function(require,module,exports){ +},{}],59:[function(require,module,exports){ module.exports=[{ "constant": true, "inputs": [], @@ -10696,7 +10929,7 @@ module.exports=[{ "type": "event" }] -},{}],57:[function(require,module,exports){ +},{}],60:[function(require,module,exports){ module.exports=[{ "constant": true, "inputs": [{ @@ -10849,7 +11082,7 @@ module.exports=[{ "type": "event" }] -},{}],58:[function(require,module,exports){ +},{}],61:[function(require,module,exports){ module.exports=[{ "constant": true, "inputs": [{ @@ -10942,7 +11175,7 @@ module.exports=[{ "type": "fallback" }] -},{}],59:[function(require,module,exports){ +},{}],62:[function(require,module,exports){ module.exports=[{ "constant": true, "inputs": [{ @@ -11378,7 +11611,7 @@ module.exports=[{ "name": "RentPaid", "type": "event" }] -},{}],60:[function(require,module,exports){ +},{}],63:[function(require,module,exports){ 'use strict'; var ethFuncs = function ethFuncs() {}; @@ -11474,7 +11707,7 @@ ethFuncs.estimateGas = function (dataObj, callback) { }; module.exports = ethFuncs; -},{}],61:[function(require,module,exports){ +},{}],64:[function(require,module,exports){ 'use strict'; var etherUnits = function etherUnits() {}; @@ -11542,7 +11775,7 @@ etherUnits.unitToUnit = function (number, from, to) { module.exports = etherUnits; -},{}],62:[function(require,module,exports){ +},{}],65:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -11933,7 +12166,7 @@ globalFuncs.localStorage = { module.exports = globalFuncs; -},{"./nodes":82,"./tokens/etcTokens.json":111,"./tokens/ethTokens.json":112,"./tokens/kovanTokens.json":115,"./tokens/rinkebyTokens.json":117,"./tokens/ropstenTokens.json":118}],63:[function(require,module,exports){ +},{"./nodes":85,"./tokens/etcTokens.json":117,"./tokens/ethTokens.json":118,"./tokens/kovanTokens.json":121,"./tokens/rinkebyTokens.json":123,"./tokens/ropstenTokens.json":124}],66:[function(require,module,exports){ module.exports={ "A": "A", "Α": "A", @@ -13117,7 +13350,7 @@ module.exports={ "𝚣": "z" } -},{}],64:[function(require,module,exports){ +},{}],67:[function(require,module,exports){ 'use strict'; function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; } @@ -13303,9 +13536,10 @@ kyberFuncs.prototype.setKyberRate = function (_from, _to) { var _this = this; return new Promise(function (resolve, reject) { _this.getExpectedRate(_from, _to, 1, function (_results) { - _this.kyberRates[kyber.toPairKey(_from, _to)] = _this.convertToTokenBase(_results.data.slippageRate, "ETH"); + var _returnedRate = _this.convertToTokenBase(_results.data.slippageRate, "ETH"); + _this.kyberRates[kyber.toPairKey(_from, _to)] = _returnedRate; _this.priceLoaded = true; - resolve(); + resolve(_returnedRate); }); }); }; @@ -13521,16 +13755,29 @@ kyberFuncs.prototype.kyberNetworkState = function () { kyberFuncs.prototype.approveKyber = function (srcToken, value) { var _this = this; - var funcABI = _this.tokenABIs[srcToken].approve; + var funcABI; + if (_this.tokenABIs[srcToken]) { + funcABI = _this.tokenABIs[srcToken].approve; + } else { + funcABI = _this.tokenABIs["ERC20"].approve; + } + var weiValue = _this.convertToTokenWei(value, srcToken); return _this.getDataString(funcABI, [_this.KyberNetworkAddress, weiValue]); }; -kyberFuncs.prototype.allowance = function (srcToken, userAddress, callback) { +kyberFuncs.prototype.allowance = function (_srcToken, userAddress, callback) { var _this = this; - var funcABI = _this.tokenABIs[srcToken].allowance; - var srcTokenAddress = _this.getTokenAddress(srcToken); + var funcABI; + if (_this.tokenABIs[_srcToken]) { + funcABI = _this.tokenABIs[_srcToken].allowance; + } else { + funcABI = _this.tokenABIs["ERC20"].allowance; + } + // var funcABI = _this.tokenABIs[_srcToken].allowance; + + var srcTokenAddress = _this.getTokenAddress(_srcToken); ajaxReq.getEthCall({ to: srcTokenAddress, @@ -13550,25 +13797,31 @@ kyberFuncs.prototype.allowance = function (srcToken, userAddress, callback) { kyberFuncs.prototype.getTradeData = function (swapOrder, minRate) { var _this = this; - - var funcABI = _this.kyberNetworkABI.trade; - var srcTokenAddress = _this.getTokenAddress(swapOrder.fromCoin); - var destTokenAddress = _this.getTokenAddress(swapOrder.toCoin); - var walletId = "0xDECAF9CD2367cdbb726E904cD6397eDFcAe6068D"; - var minConversionRate = minRate ? minRate : 1; // Uses slippagePrice with fallback to MarketRate. 1 => Market Rate, but we could also set this as the quoted rate - var srcAmount = _this.convertToTokenWei(swapOrder.fromVal, swapOrder.fromCoin); //etherUnits.toWei(swapOrder.fromVal, "ether"); - var maxDestAmount = Math.pow(2, 200); //100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000; // Really big number (like a googol) - - if (swapOrder.toAddress) { - return _this.getDataString(funcABI, [srcTokenAddress, srcAmount, destTokenAddress, swapOrder.toAddress, maxDestAmount, minConversionRate, walletId]); + console.log("minRate", minRate); //todo remove dev item + if (minRate && minRate > 0) { + var funcABI = _this.kyberNetworkABI.trade; + var srcTokenAddress = _this.getTokenAddress(swapOrder.fromCoin); + var destTokenAddress = _this.getTokenAddress(swapOrder.toCoin); + var walletId = "0xDECAF9CD2367cdbb726E904cD6397eDFcAe6068D"; + var minConversionRate = _this.convertToTokenWei(minRate, "ETH"); // Uses slippagePrice with fallback to MarketRate. 1 => Market Rate, but we could also set this as the quoted rate + console.log("minConversionRate", minRate); //todo remove dev item + var srcAmount = _this.convertToTokenWei(swapOrder.fromVal, swapOrder.fromCoin); //etherUnits.toWei(swapOrder.fromVal, "ether"); + console.log("srcAmount", srcAmount); //todo remove dev item + var maxDestAmount = Math.pow(2, 200); //100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000; // Really big number (like a googol) + + if (swapOrder.toAddress) { + return _this.getDataString(funcABI, [srcTokenAddress, srcAmount, destTokenAddress, swapOrder.toAddress, maxDestAmount, minConversionRate, walletId]); + } else { + uiFuncs.notifier.danger(" No Deposit address specified"); + } } else { - uiFuncs.notifier.danger(" No Deposit address specified"); + uiFuncs.notifier.danger('No Rate Available for pair ' + swapOrder.fromCoin + '/' + swapOrder.toCoin + ' with source quantity ' + swapOrder.fromVal); } }; module.exports = kyberFuncs; -},{"./kyberConfig/EthConfig.json":65,"./kyberConfig/EthTokenABIs.json":66,"./kyberConfig/KyberNetworkABI.json":67,"./kyberConfig/KyberReserveABI.json":68,"./kyberConfig/NullConfig.json":69,"./kyberConfig/RopConfig.json":70,"./kyberConfig/RopTokenABIs.json":71}],65:[function(require,module,exports){ +},{"./kyberConfig/EthConfig.json":68,"./kyberConfig/EthTokenABIs.json":69,"./kyberConfig/KyberNetworkABI.json":70,"./kyberConfig/KyberReserveABI.json":71,"./kyberConfig/NullConfig.json":72,"./kyberConfig/RopConfig.json":73,"./kyberConfig/RopTokenABIs.json":74}],68:[function(require,module,exports){ module.exports={ "tokens": { "OMG": { @@ -13733,6 +13986,21 @@ module.exports={ "maxTotalImbalance": "1925452883", "internal use": false }, + "DAI": { + "name": "DAI", + "decimals": 18, + "address": "0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359", + "minimalRecordResolution": "1000000000000000", + "maxPerBlockImbalance": "2711997842670896021504", + "maxTotalImbalance": "3833713935933528080384", + "internal use": false + }, + "MOT": { + "name": "Olympus Labs", + "decimals": 18, + "address": "0x263c618480dbe35c300d8d5ecda19bbb986acaed", + "internal use": false + }, "ZIL": { "name": "Zilliqa", "decimals": 12, @@ -13751,6 +14019,18 @@ module.exports={ "maxTotalImbalance": "1925452883", "internal use": true }, + "IOST": { + "name": "IOStoken", + "decimals": 18, + "address": "0xfa1a856cfa3409cfa145fa4e20eb270df3eb21ab", + "internal use": false + }, + "STORM": { + "name": "Storm", + "decimals": 18, + "address": "0xd0a4b8946cb52f0661273bfbc6fd0e0c75fc6433", + "internal use": false + }, "ETH": { "name": "Ethereum", "decimals": 18, @@ -13758,177 +14038,9 @@ module.exports={ "internal use": true } }, - "exchanges": { - "binance": { - "ETH": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "OMG": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "KNC": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "SNT": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "EOS": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "ELF": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "POWR": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "MANA": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "BAT": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "REQ": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "GTO": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "ENG": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "SALT": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "APPC": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "RDN": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "BQX": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "ZIL": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "AST": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90", - "LINK": "0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90" - } - }, - "permission": { - "KyberNetwork": { - "admin": "0xBC33a1F908612640F2849b56b67a4De4d179C151", - "operator": [ - "0x8bc3da587def887b5c822105729ee1d6af05a5ca" - ], - "alerter": [] - }, - "KyberReserve": { - "admin": "0xBC33a1F908612640F2849b56b67a4De4d179C151", - "operator": [ - "0x5bab5ef16cfac98e216a229db17913454b0f9365" - ], - "alerter": [ - "0xC825Ef342d94B687590E123BBB27994ccBfFcc35", - "0x6d15A2372efbe32550Bc02831524f9C77fB05514", - "0x8180a5CA4E3B94045e05A9313777955f7518D757", - "0xd0643BC0D0C879F175556509dbcEe9373379D5C3", - "0x3A9b02c14d967333cE68E353a64653E258da2BAa" - ] - }, - "ConversionRates": { - "admin": "0x97b82E42a0c04bAd5E61e7cFb4806317d608D809", - "operator": [ - "0x8bc3da587def887b5c822105729ee1d6af05a5ca", - "0x9224016462B204C57Eb70e1D69652f60bcAF53A8" - ], - "alerter": [] - }, - "FeeBurner": { - "admin": "0xd0643bc0d0c879f175556509dbcee9373379d5c3", - "operator": [ - "0xf214dde57f32f3f34492ba3148641693058d4a9e" - ], - "alerter": [] - }, - "WhiteList": { - "admin": "0xBC33a1F908612640F2849b56b67a4De4d179C151", - "operator": [ - "0x7E68d7AFcD5cc6167eB5f0Eb07eDcfe75185CC00", - "0xf214dde57f32f3f34492ba3148641693058d4a9e", - "0xd0643BC0D0C879F175556509dbcEe9373379D5C3", - "0x342F4057110bE50957d0f156F4939a929944C69e", - "0x3A9b02c14d967333cE68E353a64653E258da2BAa" - ], - "alerter": [] - }, - "ExpectedRate": { - "admin": "0xBC33a1F908612640F2849b56b67a4De4d179C151", - "operator": [ - "0x4a48312f6981484c4204d8501ad3d93f4f4571bf", - "0xf214dde57f32f3f34492ba3148641693058d4a9e" - ], - "alerter": [] - }, - "SanityRate": { - "admin": "0xd0643bc0d0c879f175556509dbcee9373379d5c3", - "operator": [ - "0x0a3d5c8894bbe1e9113e4ed6f0c3b0d4fa6b131e" - ], - "alerter": [] - } - }, - "whitelist params": { - "testers": [ - "0x053a9f418F7BE3391A2821BE23b418a909f42F54", - "0x0d225f12898e0ca01867290a61f4cbfe11a1da8a", - "0x12f0453c1947269842c5646df98905533c1b9519", - "0x42bbe426b1796b8eca6444928e874a58ee124973", - "0xb2d904d1981080C9002818D833819e33a58F8388", - "0x3Cf628d49Ae46b49b210F0521Fbd9F82B461A9E1", - "0xdde0a80664fbbdb56e2cd82f725cd3be1f9bb6d3", - "0xC825Ef342d94B687590E123BBB27994ccBfFcc35", - "0x8180a5CA4E3B94045e05A9313777955f7518D757", - "0x4a48312f6981484c4204d8501ad3d93f4f4571bf", - "0xd0643bc0d0c879f175556509dbcee9373379d5c3" - ], - "testers category": 9, - "testers cap": 5000, - "KGT address": "0xfce10cbf5171dc12c215bbcca5dd75cbaea72506", - "KGT cap": 5000, - "users": [ - "0x943252227f9cbfa10ee85912069171813e07b5df", - "0x85f160b182fe02d82cc771753a67425dc7da4bfd", - "0x3cf628d49ae46b49b210f0521fbd9f82b461a9e1", - "0xc137d86197f8df68038ca79df9464b5ed83b46f5", - "0x759604f9ae53af58905e2ed23ea2c6a7bcd4c881", - "0xbfe8d9a90bbebdb725333ecff6a947045514d86e", - "0x107d1e7d288525d8c0112a38e881a1119546ec99", - "0xc96dff7ddc0d9aebdc84572ea7f463341b0c3499", - "0xefb8085ef21ab0818bb070e5881bce01da322319", - "0x2c7f07e07459340025046bf77c2fdcc1c86fd4ff", - "0xcf298e820ec1c37d09378ed45f13081fe18af030", - "0x805e04be44fa0abe67c9daeb2d63dfe11ebb0b7a", - "0xb2d904d1981080c9002818d833819e33a58f8388", - "0xd64fd8f71b147071b58e849a172e443a34afb900", - "0xf214dde57f32f3f34492ba3148641693058d4a9e", - "0x7aab84d251f67a79126bc2188cf4a1e5e29f36b4", - "0x36890b6d03820f4d2b8dadd383a1045c05f2d89d", - "0x34409fda33b9ac5ad4c57f1e3113fe21c19a5294", - "0x538597d67c503fca3bc169e61790fc5003e5081d", - "0xfdc280b6733f3ae7f2420f3124cdcd9152de3827", - "0x759604f9ae53af58905e2ed23ea2c6a7bcd4c881", - "0x3f105f78359ad80562b4c34296a87b8e66c584c5", - "0x441bae4cda3c6feccfc98add2f2ed363d9ebc090", - "0x4a48312f6981484c4204d8501ad3d93f4f4571bf", - "0x0c3b2b708b42f99df2c0c822b9fb8fc43a5e329e", - "0x80c2c1ceb335e39b7021c646fd3ec159faf9109d", - "0xffaa5d3ece144954bf5b98977857f521972f729c", - "0xcfc84a1061978527a41f561ae6ed8a86fa68d44c", - "0x8180a5ca4e3b94045e05a9313777955f7518d757", - "0xf214dde57f32f3f34492ba3148641693058d4a9e", - "0x6d15a2372efbe32550bc02831524f9c77fb05514", - "0xefb8085ef21ab0818bb070e5881bce01da322319", - "0xe2da6286d17d589a87f58c4a1aa136d5809ca617", - "0x43116e303b1b001bd08f6eaf8debea50d0a8cbc9", - "0x453c1e38772cfe2f8550da4a47a6624b8c5ccd39", - "0xd0643bc0d0c879f175556509dbcee9373379d5c3", - "0x0f114bcde33f3d8b5c2034810d21a030808fbb61", - "0xffaa5d3ece144954bf5b98977857f521972f729c", - "0xcfc84a1061978527a41f561ae6ed8a86fa68d44c", - "0x42bbe426b1796b8eca6444928e874a58ee124973", - "0xc4ae4aedcb717b6f04cac9492c70ed85412048ed", - "0xfdc63f4f9ddfaeb7fbf0fca4e09178efac765a85", - "0x79c1565c052808bb81df554581888dc077567222", - "0x9e1fe268f3f84400cebd8fe6dda5fdb0f8ae9ea9", - "0x1c67a930777215c9d4c617511c229e55fa53d0f8", - "0x0d225f12898e0ca01867290a61f4cbfe11a1da8a", - "0x12f0453c1947269842c5646df98905533c1b9519", - "0x29641cd7f394dff57eaa6ebca31c88e5b84d6b4c", - "0xe9dcde10206cbbd76c52944ff0eec832c886bbc6" - ], - "users category": 1, - "users cap": 5000, - "email category": 3, - "email cap": 5000, - "KYC category": 4, - "KYC cap": 10000, - "default cap": 0, - "wei per SGD": 850000000000000 - }, "max gas price": "50000000000", "neg diff in bps": 20, "min expected rate slippage": 300, - "KNC wallet": "0xBC33a1F908612640F2849b56b67a4De4d179C151", - "KNC to ETH rate": 450, - "tax fees bps": 2000, - "tax wallet address": "0xc065900403f9ff07dfaecc0d08978c2e0dee1578", "valid duration block": 60, "reserve": "0x63825c174ab367968EC60f061753D3bbD36A0D8F", "pricing": "0x798AbDA6Cc246D0EDbA912092A2a3dBd3d11191B", @@ -13938,7 +14050,7 @@ module.exports={ "feeburner": "0x07f6e905f2a1559cd9fd43cb92f8a1062a3ca706", "whitelist": "0x6e106a75d369d09a9ea1dcc16da844792aa669a3" } -},{}],66:[function(require,module,exports){ +},{}],69:[function(require,module,exports){ module.exports={ "APPC": [{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setTransferAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setReleaseAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"burnAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"mintAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setMintAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"setTokenInformation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"fromWhom","type":"address"}],"name":"transferToOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getUpgradeState","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"transferAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"canUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"releaseAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isToken","outputs":[{"name":"weAre","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BURN_ADDRESS","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_initialSupply","type":"uint256"},{"name":"_decimals","type":"uint256"},{"name":"_mintable","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"fromWhom","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"OwnerReclaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newName","type":"string"},{"indexed":false,"name":"newSymbol","type":"string"}],"name":"UpdatedTokenInformation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"state","type":"bool"}],"name":"MintingAgentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"burner","type":"address"},{"indexed":false,"name":"burnedAmount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}], @@ -13979,13 +14091,19 @@ module.exports={ "ZIL": [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pausedPublic","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pausedOwnerAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"emergencyERC20Drain","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newPausedPublic","type":"bool"},{"name":"newPausedOwnerAdmin","type":"bool"}],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_admin","type":"address"},{"name":"_totalTokenAmount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_burner","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousAdmin","type":"address"},{"indexed":true,"name":"newAdmin","type":"address"}],"name":"AdminTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newState","type":"bool"}],"name":"PausePublic","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newState","type":"bool"}],"name":"PauseOwnerAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}], "LINK": - [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}] + [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}], + "DAI": + [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"wad","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name_","type":"bytes32"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"wad","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"push","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"move","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"authority","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"guy","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"wad","type":"uint256"}],"name":"pull","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"symbol_","type":"bytes32"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"guy","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"guy","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"},{"anonymous":true,"inputs":[{"indexed":true,"name":"sig","type":"bytes4"},{"indexed":true,"name":"guy","type":"address"},{"indexed":true,"name":"foo","type":"bytes32"},{"indexed":true,"name":"bar","type":"bytes32"},{"indexed":false,"name":"wad","type":"uint256"},{"indexed":false,"name":"fax","type":"bytes"}],"name":"LogNote","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"src","type":"address"},{"indexed":true,"name":"guy","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"src","type":"address"},{"indexed":true,"name":"dst","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Transfer","type":"event"}], + "IOST": + [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}], + "ERC20": + [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}] } -},{}],67:[function(require,module,exports){ +},{}],70:[function(require,module,exports){ module.exports= [{"constant":false,"inputs":[{"name":"alerter","type":"address"}],"name":"removeAlerter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"reserve","type":"address"},{"name":"src","type":"address"},{"name":"dest","type":"address"},{"name":"add","type":"bool"}],"name":"listPairForReserve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"bytes32"}],"name":"perReserveListedPairs","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getReserves","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"enabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOperators","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"},{"name":"sendTo","type":"address"}],"name":"withdrawToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxGasPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAlerter","type":"address"}],"name":"addAlerter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"negligibleRateDiff","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feeBurnerContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"expectedRateContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"whiteListContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"field","type":"bytes32"},{"name":"value","type":"uint256"}],"name":"setInfo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"user","type":"address"}],"name":"getUserCapInWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"transferAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_enable","type":"bool"}],"name":"setEnable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isReserve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"transferAdminQuickly","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getAlerters","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"dest","type":"address"},{"name":"srcQty","type":"uint256"}],"name":"getExpectedRate","outputs":[{"name":"expectedRate","type":"uint256"},{"name":"slippageRate","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"reserves","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOperator","type":"address"}],"name":"addOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"reserve","type":"address"},{"name":"add","type":"bool"}],"name":"addReserve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"operator","type":"address"}],"name":"removeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_whiteList","type":"address"},{"name":"_expectedRate","type":"address"},{"name":"_feeBurner","type":"address"},{"name":"_maxGasPrice","type":"uint256"},{"name":"_negligibleRateDiff","type":"uint256"}],"name":"setParams","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"info","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"dest","type":"address"},{"name":"srcQty","type":"uint256"}],"name":"findBestRate","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"srcAmount","type":"uint256"},{"name":"dest","type":"address"},{"name":"destAddress","type":"address"},{"name":"maxDestAmount","type":"uint256"},{"name":"minConversionRate","type":"uint256"},{"name":"walletId","type":"address"}],"name":"trade","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"},{"name":"sendTo","type":"address"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getNumReserves","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"token","type":"address"},{"name":"user","type":"address"}],"name":"getBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_admin","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"EtherReceival","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"src","type":"address"},{"indexed":false,"name":"dest","type":"address"},{"indexed":false,"name":"actualSrcAmount","type":"uint256"},{"indexed":false,"name":"actualDestAmount","type":"uint256"}],"name":"ExecuteTrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"reserve","type":"address"},{"indexed":false,"name":"add","type":"bool"}],"name":"AddReserveToNetwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"reserve","type":"address"},{"indexed":false,"name":"src","type":"address"},{"indexed":false,"name":"dest","type":"address"},{"indexed":false,"name":"add","type":"bool"}],"name":"ListReservePairs","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"sendTo","type":"address"}],"name":"TokenWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"sendTo","type":"address"}],"name":"EtherWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"pendingAdmin","type":"address"}],"name":"TransferAdminPending","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAdmin","type":"address"},{"indexed":false,"name":"previousAdmin","type":"address"}],"name":"AdminClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAlerter","type":"address"},{"indexed":false,"name":"isAdd","type":"bool"}],"name":"AlerterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOperator","type":"address"},{"indexed":false,"name":"isAdd","type":"bool"}],"name":"OperatorAdded","type":"event"}] -},{}],68:[function(require,module,exports){ +},{}],71:[function(require,module,exports){ module.exports=[ { "constant": false, @@ -14459,7 +14577,7 @@ module.exports=[ } ] -},{}],69:[function(require,module,exports){ +},{}],72:[function(require,module,exports){ module.exports={ "tokens": { }, @@ -14473,7 +14591,7 @@ module.exports={ "feeburner": "0x07f6e905f2a1559cd9fd43cb92f8a1062a3ca706aaaaaaaa", "whitelist": "0x6e106a75d369d09a9ea1dcc16da844792aa669a3aaaaaaaa" } -},{}],70:[function(require,module,exports){ +},{}],73:[function(require,module,exports){ module.exports={ "tokens": { "OMG": { @@ -14648,7 +14766,7 @@ module.exports={ "wrapper": "0x9de0a60F4A489e350cD8E3F249f4080858Af41d3", "feeburner": "0x89B5c470559b80e541E53eF78244edD112c7C58A" } -},{}],71:[function(require,module,exports){ +},{}],74:[function(require,module,exports){ module.exports={ "OMG": [{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_releaseTime","type":"uint256"}],"name":"mintTimelocked","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}], @@ -14669,9 +14787,11 @@ module.exports={ "REQ": [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleContract","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"earlyInvestorWallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"emergencyERC20Drain","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transferableStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"tokenTotalAmount","type":"uint256"},{"name":"_transferableStartTime","type":"uint256"},{"name":"_admin","type":"address"},{"name":"_earlyInvestorWallet","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_burner","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}], "GTO": - [{"constant":false,"inputs":[{"name":"newMaximumBuy","type":"uint256"}],"name":"setMaximumBuy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"turnOffSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"turnOnTradable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newIcoPercent","type":"uint256"}],"name":"setIcoPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_icoSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"buyGifto","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"_icoPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tradable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newBuyPrice","type":"uint256"}],"name":"setBuyPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_minimumBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_originalBuyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_maximumBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isApprovedInvestor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"investorList","type":"address[]"}],"name":"removeInvestorList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newInvestorList","type":"address[]"}],"name":"addInvestorList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"getDeposit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"turnOnSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_selling","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}] + [{"constant":false,"inputs":[{"name":"newMaximumBuy","type":"uint256"}],"name":"setMaximumBuy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"turnOffSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"turnOnTradable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newIcoPercent","type":"uint256"}],"name":"setIcoPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_icoSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"buyGifto","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"_icoPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tradable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newBuyPrice","type":"uint256"}],"name":"setBuyPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_minimumBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_originalBuyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_maximumBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isApprovedInvestor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"investorList","type":"address[]"}],"name":"removeInvestorList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newInvestorList","type":"address[]"}],"name":"addInvestorList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"getDeposit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"turnOnSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_selling","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}], + "ERC20": + [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}] } -},{}],72:[function(require,module,exports){ +},{}],75:[function(require,module,exports){ 'use strict'; function storageAvailable(type) { @@ -14776,7 +14896,7 @@ if (!storageAvailable('localStorage')) { module.exports = null; -},{}],73:[function(require,module,exports){ +},{}],76:[function(require,module,exports){ 'use strict'; require('babel-polyfill'); @@ -14955,7 +15075,7 @@ if (IS_CX) { app.controller('cxDecryptWalletCtrl', ['$scope', '$sce', 'walletService', cxDecryptWalletCtrl]); } -},{"./ajaxReq":12,"./bity":13,"./constants/darkListConst":14,"./controllers/CX/addWalletCtrl":15,"./controllers/CX/cxDecryptWalletCtrl":16,"./controllers/CX/mainPopCtrl":17,"./controllers/CX/myWalletsCtrl":18,"./controllers/CX/quickSendCtrl":19,"./controllers/bulkGenCtrl":20,"./controllers/contractsCtrl":21,"./controllers/decryptWalletCtrl":22,"./controllers/domainsaleCtrl":23,"./controllers/ensCtrl":24,"./controllers/footerCtrl":25,"./controllers/helpersCtrl":26,"./controllers/offlineTxCtrl":27,"./controllers/onboardingCtrl":28,"./controllers/sendTxCtrl":29,"./controllers/signMsgCtrl":30,"./controllers/swapCtrl":31,"./controllers/tabsCtrl":32,"./controllers/txStatusCtrl":33,"./controllers/viewCtrl":34,"./controllers/viewWalletCtrl":35,"./controllers/walletBalanceCtrl":36,"./controllers/walletGenCtrl":37,"./customGas.js":38,"./cxFuncs":39,"./directives/QRCodeDrtv":40,"./directives/addressFieldDrtv":41,"./directives/balanceDrtv":43,"./directives/blockiesDrtv":44,"./directives/cxWalletDecryptDrtv":45,"./directives/fileReaderDrtv":46,"./directives/walletDecryptDrtv":48,"./domainsale":49,"./ens":51,"./ethFuncs":60,"./etherUnits":61,"./globalFuncs":62,"./homoglyphs.json":63,"./kyber":64,"./localStoragePolyfill":72,"./myetherwallet":74,"./nodes":82,"./services/globalService":83,"./services/walletService":84,"./solidity/coder":88,"./solidity/utils":99,"./staticJS/customMarked":100,"./staticJS/digitalBitboxEth":101,"./staticJS/digitalBitboxUsb":102,"./staticJS/ledger-eth":103,"./staticJS/ledger3":104,"./staticJS/secalotEth":105,"./staticJS/secalotUsb":106,"./staticJS/trezorConnect":107,"./staticJS/u2f-api":108,"./tokenlib":109,"./translations/translate.js":142,"./uiFuncs":146,"./validator":147,"./web3Wallet":148,"angular":156,"angular-animate":150,"angular-sanitize":152,"angular-translate":154,"angular-translate-handler-log":153,"babel-polyfill":172,"bignumber.js":175,"bip39":176,"crypto":553,"detect-browser":560,"ethereumjs-tx":584,"ethereumjs-util":585,"hdkey":602,"levenshtein":620,"punycode":216,"scryptsy":663,"similarity":678,"string-format":680,"unicode/category/Ll":683,"uuid":690,"wallet-address-validator":699,"xss-filters":700}],74:[function(require,module,exports){ +},{"./ajaxReq":15,"./bity":16,"./constants/darkListConst":17,"./controllers/CX/addWalletCtrl":18,"./controllers/CX/cxDecryptWalletCtrl":19,"./controllers/CX/mainPopCtrl":20,"./controllers/CX/myWalletsCtrl":21,"./controllers/CX/quickSendCtrl":22,"./controllers/bulkGenCtrl":23,"./controllers/contractsCtrl":24,"./controllers/decryptWalletCtrl":25,"./controllers/domainsaleCtrl":26,"./controllers/ensCtrl":27,"./controllers/footerCtrl":28,"./controllers/helpersCtrl":29,"./controllers/offlineTxCtrl":30,"./controllers/onboardingCtrl":31,"./controllers/sendTxCtrl":32,"./controllers/signMsgCtrl":33,"./controllers/swapCtrl":34,"./controllers/tabsCtrl":35,"./controllers/txStatusCtrl":36,"./controllers/viewCtrl":37,"./controllers/viewWalletCtrl":38,"./controllers/walletBalanceCtrl":39,"./controllers/walletGenCtrl":40,"./customGas.js":41,"./cxFuncs":42,"./directives/QRCodeDrtv":43,"./directives/addressFieldDrtv":44,"./directives/balanceDrtv":46,"./directives/blockiesDrtv":47,"./directives/cxWalletDecryptDrtv":48,"./directives/fileReaderDrtv":49,"./directives/walletDecryptDrtv":51,"./domainsale":52,"./ens":54,"./ethFuncs":63,"./etherUnits":64,"./globalFuncs":65,"./homoglyphs.json":66,"./kyber":67,"./localStoragePolyfill":75,"./myetherwallet":77,"./nodes":85,"./services/globalService":86,"./services/walletService":87,"./solidity/coder":91,"./solidity/utils":102,"./staticJS/customMarked":103,"./staticJS/digitalBitboxEth":104,"./staticJS/digitalBitboxUsb":105,"./staticJS/ledger-eth":106,"./staticJS/ledger3":107,"./staticJS/secalotEth":108,"./staticJS/secalotUsb":109,"./staticJS/trezorConnect":110,"./staticJS/u2f-api":111,"./tokenlib":112,"./translations/translate.js":148,"./uiFuncs":152,"./validator":153,"./web3Wallet":154,"angular":162,"angular-animate":156,"angular-sanitize":158,"angular-translate":160,"angular-translate-handler-log":159,"babel-polyfill":178,"bignumber.js":181,"bip39":182,"crypto":559,"detect-browser":566,"ethereumjs-tx":590,"ethereumjs-util":591,"hdkey":608,"levenshtein":626,"punycode":222,"scryptsy":669,"similarity":684,"string-format":686,"unicode/category/Ll":689,"uuid":696,"wallet-address-validator":705,"xss-filters":706}],77:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -15362,7 +15482,7 @@ Wallet.getWalletFromPrivKeyFile = function (strjson, password) { module.exports = Wallet; }).call(this,require("buffer").Buffer) -},{"buffer":219}],75:[function(require,module,exports){ +},{"buffer":225}],78:[function(require,module,exports){ 'use strict'; var customNode = function customNode(srvrUrl, port, httpBasicAuthentication) { @@ -15489,7 +15609,7 @@ customNode.prototype.post = function (data, callback) { }; module.exports = customNode; -},{}],76:[function(require,module,exports){ +},{}],79:[function(require,module,exports){ 'use strict'; var http; @@ -15522,7 +15642,7 @@ ethPrice.getRates = function (callback) { }; module.exports = ethPrice; -},{}],77:[function(require,module,exports){ +},{}],80:[function(require,module,exports){ 'use strict'; var etherscan = function etherscan() {}; @@ -15650,7 +15770,7 @@ etherscan.post = function (data, _callback) { }; module.exports = etherscan; -},{}],78:[function(require,module,exports){ +},{}],81:[function(require,module,exports){ 'use strict'; var _ethscan = require('./etherscan'); @@ -15661,7 +15781,7 @@ for (var attr in _ethscan) { kovan.SERVERURL = 'https://kovan.etherscan.io/api'; module.exports = kovan; -},{"./etherscan":77}],79:[function(require,module,exports){ +},{"./etherscan":80}],82:[function(require,module,exports){ 'use strict'; var _ethscan = require('./etherscan'); @@ -15672,7 +15792,7 @@ for (var attr in _ethscan) { rinkeby.SERVERURL = 'https://rinkeby.etherscan.io/api'; module.exports = rinkeby; -},{"./etherscan":77}],80:[function(require,module,exports){ +},{"./etherscan":80}],83:[function(require,module,exports){ 'use strict'; var customNode = require('./customNode'); @@ -15687,7 +15807,7 @@ var infura = function infura(srvrUrl, port, httpBasicAuthentication) { }; module.exports = infura; -},{"./customNode":75}],81:[function(require,module,exports){ +},{"./customNode":78}],84:[function(require,module,exports){ 'use strict'; var customNode = require('./customNode'); @@ -15730,7 +15850,7 @@ function forEachPayload(maybeArray, fn) { array.forEach(fn); } -},{"./customNode":75}],82:[function(require,module,exports){ +},{"./customNode":78}],85:[function(require,module,exports){ 'use strict'; var nodes = function nodes() {}; @@ -15751,6 +15871,10 @@ nodes.nodeTypes = { TOMO: "TOMO", ELLA: "ELLA", ETSC: "ETSC", + EGEM: "EGEM", + CLO: "CLO", + CLOT: "Testnet CLO", + EAST: "EAST", Custom: "CUSTOM ETH" }; nodes.ensNodeTypes = [nodes.nodeTypes.ETH, nodes.nodeTypes.Ropsten]; @@ -15990,13 +16114,63 @@ nodes.nodeList = { 'estimateGas': true, 'service': 'gazua.tv', 'lib': new nodes.customNode('https://node.ethereumsocial.kr', '') + }, + 'egem': { + 'name': 'EGEM', + 'blockExplorerTX': 'https://explorer.egem.io/tx/[[txHash]]', + 'blockExplorerAddr': 'https://explorer.egem.io/addr/[[address]]', + 'type': nodes.nodeTypes.EGEM, + 'eip155': true, + 'chainId': 1987, + 'tokenList': require('./tokens/egemTokens.json'), + 'abiList': require('./abiDefinitions/egemAbi.json'), + 'estimateGas': true, + 'service': 'egem.io', + 'lib': new nodes.customNode('https://jsonrpc.egem.io/custom', '') + }, + 'clo_mainnet': { + 'name': 'CLO', + 'blockExplorerTX': 'https://explorer.callisto.network/tx/[[txHash]]', + 'blockExplorerAddr': 'https://explorer.callisto.network/addr/[[address]]', + 'type': nodes.nodeTypes.CLO, + 'eip155': true, + 'chainId': 820, + 'tokenList': require('./tokens/cloTokens.json'), + 'abiList': require('./abiDefinitions/cloAbi.json'), + 'service': 'Callisto.network', + 'lib': new nodes.customNode('https://clo-geth.0xinfra.com/', '') + }, + 'clo_testnet3': { + 'name': 'CLO Testnet 3.0', + 'blockExplorerTX': 'https://explorer-testnet.callisto.network/tx/[[txHash]]', + 'blockExplorerAddr': 'https://explorer-testnet.callisto.network/addr/[[address]]', + 'type': nodes.nodeTypes.CLOT, + 'eip155': true, + 'chainId': 7919, + 'tokenList': require('./tokens/cloTokens.json'), + 'abiList': require('./abiDefinitions/cloAbi.json'), + 'service': 'Callisto.network', + 'lib': new nodes.customNode('https://clo-testnet3.0xinfra.com/', '') + }, + 'east': { + 'name': 'EAST', + 'blockExplorerTX': 'https://explorer.easthub.io/tx/[[txHash]]', + 'blockExplorerAddr': 'https://explorer.easthub.io/addr/[[address]]', + 'type': nodes.nodeTypes.EAST, + 'eip155': true, + 'chainId': 7, + 'tokenList': require('./tokens/eastTokens.json'), + 'abiList': require('./abiDefinitions/eastAbi.json'), + 'estimateGas': true, + 'service': 'easthub.io', + 'lib': new nodes.customNode('https://node.easthub.io', '') } }; nodes.ethPrice = require('./nodeHelpers/ethPrice'); module.exports = nodes; -},{"./abiDefinitions/ellaAbi.json":1,"./abiDefinitions/etcAbi.json":2,"./abiDefinitions/ethAbi.json":3,"./abiDefinitions/etscAbi.json":4,"./abiDefinitions/expAbi.json":5,"./abiDefinitions/kovanAbi.json":6,"./abiDefinitions/poaAbi.json":7,"./abiDefinitions/rinkebyAbi.json":8,"./abiDefinitions/ropstenAbi.json":9,"./abiDefinitions/tomoAbi.json":10,"./abiDefinitions/ubqAbi.json":11,"./nodeHelpers/customNode":75,"./nodeHelpers/ethPrice":76,"./nodeHelpers/etherscan":77,"./nodeHelpers/etherscanKov":78,"./nodeHelpers/etherscanRin":79,"./nodeHelpers/infura":80,"./nodeHelpers/metamask":81,"./tokens/ellaTokens.json":110,"./tokens/etcTokens.json":111,"./tokens/ethTokens.json":112,"./tokens/etscTokens.json":113,"./tokens/expTokens.json":114,"./tokens/kovanTokens.json":115,"./tokens/poaTokens.json":116,"./tokens/rinkebyTokens.json":117,"./tokens/ropstenTokens.json":118,"./tokens/tomoTokens.json":119,"./tokens/ubqTokens.json":120}],83:[function(require,module,exports){ +},{"./abiDefinitions/cloAbi.json":1,"./abiDefinitions/eastAbi.json":2,"./abiDefinitions/egemAbi.json":3,"./abiDefinitions/ellaAbi.json":4,"./abiDefinitions/etcAbi.json":5,"./abiDefinitions/ethAbi.json":6,"./abiDefinitions/etscAbi.json":7,"./abiDefinitions/expAbi.json":8,"./abiDefinitions/kovanAbi.json":9,"./abiDefinitions/poaAbi.json":10,"./abiDefinitions/rinkebyAbi.json":11,"./abiDefinitions/ropstenAbi.json":12,"./abiDefinitions/tomoAbi.json":13,"./abiDefinitions/ubqAbi.json":14,"./nodeHelpers/customNode":78,"./nodeHelpers/ethPrice":79,"./nodeHelpers/etherscan":80,"./nodeHelpers/etherscanKov":81,"./nodeHelpers/etherscanRin":82,"./nodeHelpers/infura":83,"./nodeHelpers/metamask":84,"./tokens/cloTokens.json":113,"./tokens/eastTokens.json":114,"./tokens/egemTokens.json":115,"./tokens/ellaTokens.json":116,"./tokens/etcTokens.json":117,"./tokens/ethTokens.json":118,"./tokens/etscTokens.json":119,"./tokens/expTokens.json":120,"./tokens/kovanTokens.json":121,"./tokens/poaTokens.json":122,"./tokens/rinkebyTokens.json":123,"./tokens/ropstenTokens.json":124,"./tokens/tomoTokens.json":125,"./tokens/ubqTokens.json":126}],86:[function(require,module,exports){ 'use strict'; var globalService = function globalService($http, $httpParamSerializerJQLike) { @@ -16113,7 +16287,7 @@ var globalService = function globalService($http, $httpParamSerializerJQLike) { module.exports = globalService; -},{}],84:[function(require,module,exports){ +},{}],87:[function(require,module,exports){ 'use strict'; var walletService = function walletService() { @@ -16124,7 +16298,7 @@ var walletService = function walletService() { }; module.exports = walletService; -},{}],85:[function(require,module,exports){ +},{}],88:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -16154,7 +16328,7 @@ SolidityTypeAddress.prototype.isType = function (name) { module.exports = SolidityTypeAddress; -},{"./formatters":91,"./type":96}],86:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],89:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -16184,7 +16358,7 @@ SolidityTypeBool.prototype.isType = function (name) { module.exports = SolidityTypeBool; -},{"./formatters":91,"./type":96}],87:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],90:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -16217,7 +16391,7 @@ SolidityTypeBytes.prototype.isType = function (name) { module.exports = SolidityTypeBytes; -},{"./formatters":91,"./type":96}],88:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],91:[function(require,module,exports){ 'use strict'; /* @@ -16470,7 +16644,7 @@ var coder = new SolidityCoder([new SolidityTypeAddress(), new SolidityTypeBool() module.exports = coder; -},{"./address":85,"./bool":86,"./bytes":87,"./dynamicbytes":90,"./formatters":91,"./int":92,"./real":94,"./string":95,"./uint":97,"./ureal":98,"./utils":99}],89:[function(require,module,exports){ +},{"./address":88,"./bool":89,"./bytes":90,"./dynamicbytes":93,"./formatters":94,"./int":95,"./real":97,"./string":98,"./uint":100,"./ureal":101,"./utils":102}],92:[function(require,module,exports){ 'use strict'; /* @@ -16523,7 +16697,7 @@ module.exports = { defaultAccount: undefined }; -},{"bignumber.js":175}],90:[function(require,module,exports){ +},{"bignumber.js":181}],93:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -16547,7 +16721,7 @@ SolidityTypeDynamicBytes.prototype.isDynamicType = function () { module.exports = SolidityTypeDynamicBytes; -},{"./formatters":91,"./type":96}],91:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],94:[function(require,module,exports){ 'use strict'; /* @@ -16802,7 +16976,7 @@ module.exports = { formatOutputAddress: formatOutputAddress }; -},{"./config":89,"./param":93,"./utils":99,"bignumber.js":175}],92:[function(require,module,exports){ +},{"./config":92,"./param":96,"./utils":102,"bignumber.js":181}],95:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -16838,7 +17012,7 @@ SolidityTypeInt.prototype.isType = function (name) { module.exports = SolidityTypeInt; -},{"./formatters":91,"./type":96}],93:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],96:[function(require,module,exports){ 'use strict'; /* @@ -16991,7 +17165,7 @@ SolidityParam.encodeList = function (params) { module.exports = SolidityParam; -},{"./utils":99}],94:[function(require,module,exports){ +},{"./utils":102}],97:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -17027,7 +17201,7 @@ SolidityTypeReal.prototype.isType = function (name) { module.exports = SolidityTypeReal; -},{"./formatters":91,"./type":96}],95:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],98:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -17051,7 +17225,7 @@ SolidityTypeString.prototype.isDynamicType = function () { module.exports = SolidityTypeString; -},{"./formatters":91,"./type":96}],96:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],99:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -17305,7 +17479,7 @@ SolidityType.prototype.decode = function (bytes, offset, name) { module.exports = SolidityType; -},{"./formatters":91,"./param":93}],97:[function(require,module,exports){ +},{"./formatters":94,"./param":96}],100:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -17341,7 +17515,7 @@ SolidityTypeUInt.prototype.isType = function (name) { module.exports = SolidityTypeUInt; -},{"./formatters":91,"./type":96}],98:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],101:[function(require,module,exports){ 'use strict'; var f = require('./formatters'); @@ -17377,7 +17551,7 @@ SolidityTypeUReal.prototype.isType = function (name) { module.exports = SolidityTypeUReal; -},{"./formatters":91,"./type":96}],99:[function(require,module,exports){ +},{"./formatters":94,"./type":99}],102:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -17966,7 +18140,7 @@ module.exports = { isJson: isJson }; -},{"bignumber.js":175,"ethereumjs-util":585,"utf8":685}],100:[function(require,module,exports){ +},{"bignumber.js":181,"ethereumjs-util":591,"utf8":691}],103:[function(require,module,exports){ 'use strict'; var marked = require('marked'); @@ -17997,7 +18171,7 @@ marked.setOptions({ }); module.exports = marked; -},{"marked":621}],101:[function(require,module,exports){ +},{"marked":627}],104:[function(require,module,exports){ (function (Buffer){ /** * (c) 2017 Douglas Bakkum, Shift Devices AG @@ -18165,7 +18339,7 @@ DigitalBitboxEth.prototype.signMessage = function (path, messageHex, callback) { module.exports = DigitalBitboxEth; }).call(this,require("buffer").Buffer) -},{"buffer":219,"crypto":553,"hdkey":602}],102:[function(require,module,exports){ +},{"buffer":225,"crypto":559,"hdkey":608}],105:[function(require,module,exports){ (function (Buffer){ /** * (c) 2017 Douglas Bakkum, Shift Devices AG @@ -18219,7 +18393,7 @@ DigitalBitboxUsb.prototype.exchange = function (msg, callback) { module.exports = DigitalBitboxUsb; }).call(this,require("buffer").Buffer) -},{"buffer":219}],103:[function(require,module,exports){ +},{"buffer":225}],106:[function(require,module,exports){ (function (Buffer){ /******************************************************************************** * Ledger Communication toolkit @@ -18434,7 +18608,7 @@ LedgerEth.prototype.signPersonalMessage_async = function (path, messageHex, call module.exports = LedgerEth; }).call(this,require("buffer").Buffer) -},{"buffer":219}],104:[function(require,module,exports){ +},{"buffer":225}],107:[function(require,module,exports){ (function (Buffer){ /******************************************************************************** * Ledger Communication toolkit @@ -18505,7 +18679,7 @@ Ledger3.prototype.exchange = function (apduHex, callback) { module.exports = Ledger3; }).call(this,require("buffer").Buffer) -},{"buffer":219}],105:[function(require,module,exports){ +},{"buffer":225}],108:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -18764,7 +18938,7 @@ SecalotEth.prototype.signMessage = function (path, message, callback) { module.exports = SecalotEth; }).call(this,require("buffer").Buffer) -},{"buffer":219}],106:[function(require,module,exports){ +},{"buffer":225}],109:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -18808,7 +18982,7 @@ SecalotUsb.prototype.exchange = function (apduHex, callback) { module.exports = SecalotUsb; }).call(this,require("buffer").Buffer) -},{"buffer":219}],107:[function(require,module,exports){ +},{"buffer":225}],110:[function(require,module,exports){ 'use strict'; /** @@ -19733,7 +19907,7 @@ var connect = new TrezorConnect(); module.exports = { TrezorConnect: connect }; -},{}],108:[function(require,module,exports){ +},{}],111:[function(require,module,exports){ //Copyright 2014-2015 Google Inc. All rights reserved. //Use of this source code is governed by a BSD-style @@ -20457,7 +20631,7 @@ u2f.getApiVersion = function (callback, opt_timeoutSeconds) { }; module.exports = u2f; -},{}],109:[function(require,module,exports){ +},{}],112:[function(require,module,exports){ 'use strict'; var Token = function Token(contractAddress, userAddress, symbol, decimal, type) { @@ -20541,7 +20715,13 @@ Token.prototype.getData = function (toAdd, value) { }; module.exports = Token; -},{}],110:[function(require,module,exports){ +},{}],113:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],114:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],115:[function(require,module,exports){ +arguments[4][1][0].apply(exports,arguments) +},{"dup":1}],116:[function(require,module,exports){ module.exports=[ { "address": "0x991e7fe4b05f2b3db1d788e705963f5d647b0044", @@ -20551,7 +20731,7 @@ module.exports=[ } ] -},{}],111:[function(require,module,exports){ +},{}],117:[function(require,module,exports){ module.exports=[ { "address":"0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C", @@ -20571,7 +20751,7 @@ module.exports=[ } ] -},{}],112:[function(require,module,exports){ +},{}],118:[function(require,module,exports){ module.exports=[ { "address": "0x7dd7f56d697cc0f2b52bd55c057f378f1fe6ab4b", @@ -21383,6 +21563,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0xc87c5dd86a3d567ff28701886fb0745aaa898da4", + "symbol": "CTG", + "decimal": 18, + "type": "default" + }, { "address": "0xbf4cfd7d1edeeea5f6600827411b41a21eb08abd", "symbol": "CTL", @@ -21581,6 +21767,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x386Faa4703a34a7Fdb19Bec2e14Fd427C9638416", + "symbol": "DoBETacceptBET(DCA)", + "decimals": 18, + "type": "default" + }, { "address": "0x76974c7b79dc8a6a109fd71fd7ceb9e40eff5382", "symbol": "DOW", @@ -21629,6 +21821,12 @@ module.exports=[ "decimal": 1, "type": "default" }, + { + "address": "0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190", + "symbol": "DTH", + "decimal": 18, + "type": "default" + }, { "address": "0xd234bf2410a0009df9c3c63b610c09738f18ccd7", "symbol": "DTR", @@ -21654,7 +21852,7 @@ module.exports=[ "type": "default" }, { - "address": "0xd4cffeef10f60eca581b5e1146b5aca4194a4c3b", + "address": "0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c", "symbol": "DUBI", "decimal": 18, "type": "default" @@ -21755,6 +21953,12 @@ module.exports=[ "decimal": 2, "type": "default" }, + { + "address": "0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4", + "symbol": "ENG", + "decimal": 8, + "type": "default" + }, { "address": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c", "symbol": "ENJ", @@ -21851,6 +22055,12 @@ module.exports=[ "decimal": 12, "type": "default" }, + { + "address": "0x7f6715c3fc4740a02f70de85b9fd50ac6001fed9", + "symbol": "FANX", + "decimal": 18, + "type": "default" + }, { "address": "0x009e864923b49263c7F10D19B7f8Ab7a9A5AAd33", "symbol": "FKX", @@ -21911,6 +22121,12 @@ module.exports=[ "decimal": 2, "type": "default" }, + { + "address": "0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc", + "symbol": "FTT", + "decimal": 18, + "type": "default" + }, { "address": "0x2023DCf7c438c8C8C0B0F28dBaE15520B4f3Ee20", "symbol": "FTR", @@ -22037,6 +22253,12 @@ module.exports=[ "decimal": 0, "type": "default" }, + { + "address": "0xc5bbae50781be1669306b9e001eff57a2957b09d", + "symbol": "GTO", + "decimal": 5, + "type": "default" + }, { "address": "0xf7B098298f7C69Fc14610bf71d5e02c60792894C", "symbol": "GUP", @@ -22235,6 +22457,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x48e5413b73add2434e47504E2a22d14940dBFe78", + "symbol": "INRM", + "decimal": 3, + "type": "default" + }, { "address": "0x5b2e4a700dfbc560061e957edec8f6eeeb74a320", "symbol": "INS", @@ -22403,6 +22631,12 @@ module.exports=[ "decimal": 5, "type": "default" }, + { + "address": "0x123ab195dd38b1b40510d467a6a359b201af056f", + "symbol": "LGO", + "decimal": 8, + "type": "default" + }, { "address": "0x2eb86e8fc520e0f6bb5d9af08f924fe70558ab89", "symbol": "LGR", @@ -22493,6 +22727,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x5dbe296f97b23c4a6aa6183d73e574d02ba5c719", + "symbol": "LUC", + "decimal": 18, + "type": "default" + }, { "address": "0xFB12e3CcA983B9f59D90912Fd17F8D745A8B2953", "symbol": "LUCK", @@ -22535,6 +22775,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0xfdcc07Ab60660de533b5Ad26e1457b565a9D59Bd", + "symbol": "MART", + "decimal": 18, + "type": "default" + }, { "address": "0x386467f1f3ddbe832448650418311a479eecfc57", "symbol": "MBRS", @@ -22697,6 +22943,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x8a77e40936bbc27e80e9a3f526368c967869c86d", + "symbol": "MVP", + "decimal": 18, + "type": "default" + }, { "address": "0x6425c6be902d692ae2db752b3c268afadb099d3b", "symbol": "MWAT", @@ -22847,6 +23099,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0xe9dE1C630753A15d7021Cc563429c21d4887506F", + "symbol": "OPEN", + "decimal": 8, + "type": "default" + }, { "address": "0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0", "symbol": "OPT", @@ -23064,7 +23322,7 @@ module.exports=[ "type": "default" }, { - "address": "0x7641b2Ca9DDD58adDf6e3381c1F994Aac5f1A32f", + "address": "0xd94F2778e2B3913C53637Ae60647598bE588c570", "symbol": "PRPS", "decimal": 18, "type": "default" @@ -23117,6 +23375,12 @@ module.exports=[ "decimal": 8, "type": "default" }, + { + "address": "0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6", + "symbol": "QASH", + "decimal": 6, + "type": "default" + }, { "address": "0x671AbBe5CE652491985342e85428EB1b07bC6c64", "symbol": "QAU", @@ -23339,9 +23603,15 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x37427576324fE1f3625c9102674772d7CF71377d", + "symbol": "SGT (SelfieYo Gold Token)", + "decimal": 18, + "type": "default" + }, { "address": "0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468", - "symbol": "SGT", + "symbol": "SGT (StatusGenesis)", "decimal": 1, "type": "default" }, @@ -23525,6 +23795,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4", + "symbol": "SS (Sharder)", + "decimal": 18, + "type": "default" + }, { "address": "0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89", "symbol": "SSH", @@ -23753,12 +24029,24 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0x105d97ef2e723f1cfb24519bc6ff15a6d091a3f1", + "symbol": "UMKA", + "decimal": 4, + "type": "default" + }, { "address": "0xd01db73e047855efb414e6202098c4be4cd2423b", "symbol": "UQC", "decimal": 18, "type": "default" }, + { + "address": "0xD760ADdFb24D9C01Fe4Bfea7475C5e3636684058", + "symbol": "USDM", + "decimal": 2, + "type": "default" + }, { "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", "symbol": "USDT", @@ -23891,6 +24179,12 @@ module.exports=[ "decimal": 7, "type": "default" }, + { + "address": "0x8f936fe0faf0604c9c0ef2406bde0a65365515d6", + "symbol": "WCN", + "decimal": 18, + "type": "default" + }, { "address": "0x6a0a97e47d15aad1d132a1ac79a480e3f2079063", "symbol": "WCT", @@ -24005,6 +24299,12 @@ module.exports=[ "decimal": 18, "type": "default" }, + { + "address": "0xf6b6aa0ef0f5edc2c1c5d925477f97eaf66303e7", + "symbol": "XGG", + "decimal": 8, + "type": "default" + }, { "address": "0x533ef0984b2FAA227AcC620C67cce12aA39CD8CD", "symbol": "XGM", @@ -24131,14 +24431,20 @@ module.exports=[ "symbol": "YEED", "decimal": 18, "type": "default" + }, + { + "address": "0x554ffc77f4251a9fb3c0e3590a6a205f8d4e067d", + "symbol": "ZMN", + "decimal": 18, + "type": "default" } ] -},{}],113:[function(require,module,exports){ -arguments[4][7][0].apply(exports,arguments) -},{"dup":7}],114:[function(require,module,exports){ -arguments[4][7][0].apply(exports,arguments) -},{"dup":7}],115:[function(require,module,exports){ +},{}],119:[function(require,module,exports){ +arguments[4][10][0].apply(exports,arguments) +},{"dup":10}],120:[function(require,module,exports){ +arguments[4][10][0].apply(exports,arguments) +},{"dup":10}],121:[function(require,module,exports){ module.exports=[{ "address":"0xbd287b4398b248032183994229f5f6a9fdac98b1", "symbol":"💥 PLASMA", @@ -24156,9 +24462,9 @@ module.exports=[{ "type":"default" }] -},{}],116:[function(require,module,exports){ -arguments[4][7][0].apply(exports,arguments) -},{"dup":7}],117:[function(require,module,exports){ +},{}],122:[function(require,module,exports){ +arguments[4][10][0].apply(exports,arguments) +},{"dup":10}],123:[function(require,module,exports){ module.exports=[{ "address":"0xA52832A0B3EBfAeF629B1a44A922F46c90445108", "symbol":"☼ PLASMA", @@ -24176,7 +24482,7 @@ module.exports=[{ "type": "default" }] -},{}],118:[function(require,module,exports){ +},{}],124:[function(require,module,exports){ module.exports=[{ "address":"0x95D7321EdCe519419ba1DbC60A89bAfbF55EAC0D", "symbol":"💥 PLASMA", @@ -24184,9 +24490,9 @@ module.exports=[{ "type":"default" }] -},{}],119:[function(require,module,exports){ -arguments[4][7][0].apply(exports,arguments) -},{"dup":7}],120:[function(require,module,exports){ +},{}],125:[function(require,module,exports){ +arguments[4][10][0].apply(exports,arguments) +},{"dup":10}],126:[function(require,module,exports){ module.exports=[ { "address":"0xd245207cfbf6eb6f34970db2a807ab1d178fde6c", @@ -24226,7 +24532,7 @@ module.exports=[ } ] -},{}],121:[function(require,module,exports){ +},{}],127:[function(require,module,exports){ // Català 'use strict'; @@ -24391,7 +24697,7 @@ ca.data = (_ca$data = { module.exports = ca; -},{}],122:[function(require,module,exports){ +},{}],128:[function(require,module,exports){ // German 'use strict'; @@ -24556,7 +24862,7 @@ de.data = (_de$data = { module.exports = de; -},{}],123:[function(require,module,exports){ +},{}],129:[function(require,module,exports){ // Greek 'use strict'; @@ -24721,7 +25027,7 @@ el.data = (_el$data = { module.exports = el; -},{}],124:[function(require,module,exports){ +},{}],130:[function(require,module,exports){ // English 'use strict'; @@ -24891,7 +25197,7 @@ en.data = (_en$data = { module.exports = en; -},{}],125:[function(require,module,exports){ +},{}],131:[function(require,module,exports){ // Spanish 'use strict'; @@ -24903,93 +25209,93 @@ var es = function es() {}; es.code = 'es'; es.data = (_es$data = { - GEN_Help_0: 'Already have a wallet somewhere?', - GEN_Help_MetaMask: 'So easy! Keys stay in MetaMask, not on a phishing site! Try it today.', + GEN_Help_0: '¿Ya tienes una billetera en alguna parte?', + GEN_Help_MetaMask: '¡Facilisimo! ¡Las llaves permanecen en MetaMask, no en un sitio de phishing! Pruébalo hoy.', - GEN_Warning_1: '**Do not lose it!** It cannot be recovered if you lose it.', - GEN_Warning_2: '**Do not share it!** Your funds will be stolen if you use this file on a malicious/phishing site.', - GEN_Warning_3: '**Make a backup!** Secure it like the millions of dollars it may one day be worth.', + GEN_Warning_1: '**¡No lo pierdas!** No puede ser recuperado si lo pierdes.', + GEN_Warning_2: '**¡No lo compartas!** Tus fondos serán robados si usa este archivo en un sitio malicioso/phishing.', + GEN_Warning_3: '**¡Realiza copias de seguridad!** Asegúrelo como los millones de dólares que un algún día podrían valer.', - GAS_Price_1: 'Not So Fast', - GAS_Price_2: 'Fast', - GAS_Price_3: 'Fast AF', + GAS_Price_1: 'No Tan Rápido', + GAS_Price_2: 'Rápido', + GAS_Price_3: 'Rápido AF', - CONTRACT_Helper_1: 'Please change the address to your own Multisig Contract Address.', - CONTRACT_Warning_1: 'You are about to **deploy a contract**.', - CONTRACT_Warning_2: 'It will be deployed on the following network:', - CONTRACT_Warning_3: 'You are about to **execute a function on contract**.', + CONTRACT_Helper_1: 'Por favor, cambia la dirección a tu propio Contrato Multifirma.', + CONTRACT_Warning_1: 'Estás a punto de **implementar un contrato**.', + CONTRACT_Warning_2: 'Será implementado en la siguiente red:', + CONTRACT_Warning_3: 'Estás a punto de **ejecutar una función en un contrato**.', - SEND_Helper_Contract: 'In most cases you should leave this as 0.', - SEND_ViewOnly: 'You cannot send with only your address. You must use one of the other options to unlock your wallet in order to send.', - SEND_LoadTokens: 'Load Tokens', + SEND_Helper_Contract: 'En la mayoría de los casos deberias dejar esto a 0.', + SEND_ViewOnly: 'No puedes enviar unicamente con tu dirección. Debes usar una de las otras opciones para desbloquear tu billetera y poder realizar envios.', + SEND_LoadTokens: 'Carga Tokens', SEND_CustomAddrMsg: 'A message regarding', - SWAP_Warning_1: 'Warning! You do not have enough funds to complete this swap.', - SWAP_Warning_2: 'Please add more funds to your wallet or access a different wallet.', + SWAP_Warning_1: '¡Peligro! No tienes suficientes fondos para completar este intercambio.', + SWAP_Warning_2: 'Pr favor, añade mas fondos a tu billetera o accede a una diferente.', - X_Advanced: 'Advanced Users Only.', - X_HelpfulLinks: 'Helpful Links & FAQs', - X_HelpfulLinks_1: 'How to Access your Wallet', - X_HelpfulLinks_2: 'I lost my private key', - X_HelpfulLinks_3: 'My private key opens a different address', + X_Advanced: 'Solo Usuarios Avanzados.', + X_HelpfulLinks: 'Enlaces útiles y preguntas frecuentes', + X_HelpfulLinks_1: 'Cómo acceder a tu billetera', + X_HelpfulLinks_2: 'He perdido mi clave privada', + X_HelpfulLinks_3: 'Mi dirección privada abre una dirección diferente', X_HelpfulLinks_4: 'Migrating to/from MyEtherWallet', - X_Network: 'Network', - X_Network_Custom: 'Add Custom Network / Node', + X_Network: 'Red', + X_Network_Custom: 'Añade Red / Red Personalizado', - DOMAIN_Buy: 'Buy the domain', - DOMAIN_BuyItNow: 'Price to buy the domain immediately:', - DOMAIN_bid: 'Bid for the domain', - DOMAIN_bid_0: 'You are currently winning this auction with the highest bid. You can bid higher if you want, but it will delay the close of the auction for 24 hours.', + DOMAIN_Buy: 'Compra el dominio', + DOMAIN_BuyItNow: 'Precio para comprar el dominio inmediatamente:', + DOMAIN_bid: 'Haga una oferta para el dominio', + DOMAIN_bid_0: 'Actualmente estás ganando esta subasta con la oferta más alta. Puede pujar más alto si lo desea, pero retrasará el cierre de la subasta durante 24 horas.', DOMAIN_bid_1: 'Bid at least', - DOMAIN_bid_2: 'on the domain.', - DOMAIN_bid_3: 'You will win the domain if no higher bids are placed within the next 24 hours.', - DOMAIN_bid_4: 'Note that the domain has a locked value of', - DOMAIN_bid_5: 'As part of the sale you will receive the deed with this value but cannot claim it unless you release the name.', - DOMAIN_Finish_1: 'Not related to that auction', - DOMAIN_Finish_2: 'This address is neither the winner nor the seller of the auction.', - DOMAIN_Finish_3: 'Finish the auction', - DOMAIN_Finish_4: 'Finish the auction to allocate the domain to the winner and the funds to the seller.', - DOMAIN_Finish_5: 'Click your TX hash to see if you successfully transferred the domain to DomainSale.', - DOMAIN_offer_4: 'Offer For Sale:', - DOMAIN_offer_5: 'Set either of both of the prices below to offer your domain for sale. Remember that any funds you have locked in the domain\'s deed will go to the buyer and 10% of the funds when sold goes to referrers.', - DOMAIN_offer_7: 'Alter Your Offer for:', - DOMAIN_offer_8: 'Change either of both of the prices below to alter your domain sale offer. Remember that any funds you have locked in the domain\'s deed will go to the buyer and 10% of the funds when sold goes to referrers.', - DOMAIN_offer_9: 'Buy price', - DOMAIN_offer_10: 'This is the price at which someone can buy the domain immediately. 0 means that the domain cannot be purchased immediately.', - DOMAIN_offer_11: 'This is the price at which someone can start an auction for the domain. 0 means that the domain will not be available for auction.', - DOMAIN_offer_12: 'Offer your domain', - DOMAIN_offer_13: 'Alter your sale', - DOMAIN_offer_14: 'Cancel your sale', - DOMAIN_offer_15: 'You can cancel your domain sale, which will return the domain to you with no charge. This is only available before any bids have been received for the domain.', - - ENS_WrongAddress_1: 'The wallet you unlocked does not own the name ', - ENS_WrongAddress_2: 'Please unlock the wallet with address ', - - ENS_Finalize: 'Finalize', - ENS_Finalize_content: 'Finalizing this name assigns the ENS name to the winning bidder. The winner will be refunded the difference between their bid and the next-highest bid. If you are the only bidder, you will refunded all but 0.01 ETH. Any non-winners will also be refunded.', - ENS_Finalize_content_1: 'You are about to finalize the auction & claim the name:', - ENS_Helper_1: 'What is the process like?', - ENS_Helper_2: '1) Preparation', - ENS_Helper_3: 'Decide which account you wish to own the name & ensure you have multiple backups of that account.', - ENS_Helper_4: 'Decide the maximum amount of ETH you are willing to pay for the name (your Bid Amount). Ensure that account has enough to cover your bid + 0.01 ETH for gas.', - ENS_Helper_5: '2) Start an Auction / Place a Bid', - ENS_Helper_6: 'Bidding period lasts 3 days (72 hours).', - ENS_Helper_7: 'You will enter the name, Actual Bid Amount, Bid Mask, which is protected by a Secret Phrase.', - ENS_Helper_8: 'This places your bid, but this information is kept secret until you reveal it.', - ENS_Helper_9: '3) Reveal your Bid', - ENS_Helper_10: '**If you do not reveal your bid, you will not be refunded.**', - ENS_Helper_11: 'Reveal Period lasts 2 days (48 hours).', - ENS_Helper_12: 'You will unlock your account, enter the Bid Amount, and the Secret Phrase.', - ENS_Helper_13: 'In the event that two parties bid exactly the same amount, the first bid revealed will win.', - ENS_Helper_14: '4) Finalize the Auction', - ENS_Helper_15: 'Once the auction has ended (after 5 days / 120 hours), the winner needs to finalize the auction in order to claim their new name.', - ENS_Helper_16: 'The winner will be refunded the difference between their bid and the next-highest bid. If you are the only bidder, you will refunded all but 0.01 ETH.', - ENS_Helper_17: 'More Information', - ENS_Helper_18: 'The auction for this registrar is a blind auction, and is described in', - ENS_Helper_19: 'Basically, no one can see *anything* during the auction.', - ENS_Helper_20: 'ENS: Read the Docs', - ENS_Helper_21: 'Announcing the Ethereum Name Service Relaunch Date!', - ENS_Helper_22: 'Knowledge Base: ENS', + DOMAIN_bid_2: 'en el dominio.', + DOMAIN_bid_3: 'Ganará el dominio si no se realizan ofertas más altas dentro de las próximas 24 horas.', + DOMAIN_bid_4: 'Tenga en cuenta que el dominio tiene un valor bloqueado de', + DOMAIN_bid_5: 'Como parte de la venta, recibirá la escritura con este valor, pero no podrá reclamarla a menos que libere el nombre.', + DOMAIN_Finish_1: 'No relacionado con esa subasta', + DOMAIN_Finish_2: 'Esta dirección no es ni el ganador ni el vendedor de la subasta.', + DOMAIN_Finish_3: 'Termina la subasta', + DOMAIN_Finish_4: 'Finalice la subasta para asignar el dominio al ganador y los fondos al vendedor.', + DOMAIN_Finish_5: 'Haga clic en su hash TX para ver si transfirió el dominio exitosamente a DomainSale.', + DOMAIN_offer_4: 'Oferta para la venta:', + DOMAIN_offer_5: 'Establezca cualquiera de los precios a continuación para ofrecer su dominio a la venta. Recuerde que los fondos que haya bloqueado en la escritura del dominio irán al comprador y el 10% de los fondos cuando se venden se destinará a remitentes.', + DOMAIN_offer_7: 'Modifique su oferta para:', + DOMAIN_offer_8: 'Cambie cualquiera de los dos precios a continuación para modificar la oferta de venta de su dominio. Recuerde que los fondos que haya bloqueado en la escritura del dominio irán al comprador y el 10% de los fondos cuando se venden se destinará a remitentes.', + DOMAIN_offer_9: 'Precio de compra', + DOMAIN_offer_10: 'Este es el precio al que alguien puede comprar el dominio de inmediato. 0 significa que el dominio no se puede comprar de inmediato.', + DOMAIN_offer_11: 'Este es el precio al que alguien puede comenzar una subasta por el dominio. 0 significa que el dominio no estará disponible para la subasta.', + DOMAIN_offer_12: 'Ofrezca su dominio', + DOMAIN_offer_13: 'Modifique su venta', + DOMAIN_offer_14: 'Cancele su venta', + DOMAIN_offer_15: 'Puede cancelar su venta de dominio, se le devolverá el dominio sin cargo. Esto solo está disponible antes de que se hayan recibido ofertas para el dominio.', + + ENS_WrongAddress_1: 'La billetera que desbloqueaste no posee el nombre ', + ENS_WrongAddress_2: 'Desbloquee la billetera con la dirección ', + + ENS_Finalize: 'Finalizar', + ENS_Finalize_content: 'Al finalizar este nombre, se asigna el nombre ENS al pujador ganador. Al ganador se le reembolsará la diferencia entre su oferta y la siguiente oferta más alta. Si usted es el único postor, se le reembolsará todo menos 0.01 ETH. Cualquier no ganador también será reembolsado.', + ENS_Finalize_content_1: 'Está a punto de finalizar la subasta y reclamar el nombre:', + ENS_Helper_1: '¿Cómo es el proceso?', + ENS_Helper_2: '1) Preparación', + ENS_Helper_3: 'Decida en qué cuenta desea tener el nombre y asegúrese de tener varias copias de seguridad de esa cuenta.', + ENS_Helper_4: 'Decida la cantidad máxima de ETH que está dispuesto a pagar por el nombre (su Monto de oferta ). Asegúrese de que la cuenta tenga suficiente para cubrir su oferta + 0.01 ETH para el gas.', + ENS_Helper_5: '2) Comience una subasta / haga una oferta', + ENS_Helper_6: 'El período de oferta dura 3 días (72 horas).', + ENS_Helper_7: 'Ingresará el nombre , Cantidad de oferta actual , Máscara de oferta , que está protegida por una Frase secreta .', + ENS_Helper_8: 'Esto establece su oferta, pero esta información se mantiene en secreto hasta que la revele.', + ENS_Helper_9: '3) Revela tu oferta', + ENS_Helper_10: '** Si no revela su oferta, no se le reembolsará. **', + ENS_Helper_11: 'Período de revelación dura 2 días (48 horas).', + ENS_Helper_12: 'Desbloquee su cuenta, ingrese el Monto de oferta y la Frase secreta .', + ENS_Helper_13: 'En el caso de que dos partes ofrezcan exactamente la misma cantidad, la primera oferta revelada ganará.', + ENS_Helper_14: '4) finalizar la subasta', + ENS_Helper_15: 'Una vez que la subasta ha finalizado (después de 5 días / 120 horas), el ganador debe finalizar la subasta para poder reclamar su nuevo nombre.', + ENS_Helper_16: 'Al ganador se le reembolsará la diferencia entre su oferta y la siguiente oferta más alta. Si usted es el único postor, se le reembolsará todo menos 0.01 ETH.', + ENS_Helper_17: 'Más información', + ENS_Helper_18: 'La subasta de este registrador es una subasta ciega, y se describe en', + ENS_Helper_19: 'Básicamente, nadie puede ver *cualquier cosa* durante la subasta.', + ENS_Helper_20: 'ENS: Lee los documentos', + ENS_Helper_21: '¡Anunciando la fecha de relanzamiento del servicio de nombres de Ethereum!', + ENS_Helper_22: 'Base de conocimientos: ENS', ENS_Helper_23: 'Debugging a [BAD INSTRUCTION] Reveal', ENS_Helper_24: 'Please try the above before relying on support for reveal issues as we are severely backlogged on support tickets. We\'re so sorry. :(', @@ -25005,58 +25311,58 @@ es.data = (_es$data = { EOS_10: 'Select `claimAll`.', /* Onboarding */ - ONBOARD_welcome_title: 'Welcome to MyEtherWallet.com', - ONBOARD_welcome_content__1: 'Please take some time to understand this for your own safety. 🙏', - ONBOARD_welcome_content__2: 'Your funds will be stolen if you do not heed these warnings.', - ONBOARD_welcome_content__3: 'We know this click-through stuff is annoying. We are sorry.', - ONBOARD_welcome_content__4: 'What is MEW? ', - ONBOARD_welcome_content__5: 'MyEtherWallet is a free, open-source, client-side interface.', - ONBOARD_welcome_content__6: 'We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.', - ONBOARD_welcome_content__7: '**You** and **only you** are responsible for your security.', - ONBOARD_welcome_content__8: 'We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.', - ONBOARD_bank_title: 'MyEtherWallet is not a Bank', - ONBOARD_bank_content__1: 'When you open an account with a bank or exchange, they create an account for you in their system.', - ONBOARD_bank_content__2: 'The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.', - ONBOARD_bank_content__3: 'The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.', - ONBOARD_bank_content__4: 'The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.', - ONBOARD_bank_content__5: 'You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.', - ONBOARD_welcome_title__alt: 'Introduction', - ONBOARD_interface_title: 'MyEtherWallet is an Interface', - ONBOARD_interface_content__1: 'When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).', - ONBOARD_interface_content__2: 'The handling of your keys happens entirely on your computer, inside your browser.', - ONBOARD_interface_content__3: 'We never transmit, receive or store your private key, password, or other account information.', - ONBOARD_interface_content__4: 'We do not charge a transaction fee.', - ONBOARD_interface_content__5: 'You are simply using our **interface** to interact **directly with the blockchain**.', - ONBOARD_interface_content__6: 'If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍', - ONBOARD_interface_content__7: 'If you send your *private key* to someone, they now have full control of your account. 👎', - ONBOARD_bank_title__alt: 'MEW isn\'t a Bank', - ONBOARD_blockchain_title__alt: 'WTF is a Blockchain?', - ONBOARD_blockchain_skip: 'I already know what a blockchain is...', - ONBOARD_blockchain_title: 'Wait, WTF is a Blockchain?', - ONBOARD_blockchain_content__1: 'The blockchain is like a huge, global, decentralized spreadsheet.', - ONBOARD_blockchain_content__2: 'It keeps track of who sent how many coins to whom, and what the balance of every account is.', - ONBOARD_blockchain_content__3: 'It is stored and maintained by thousands of people (miners) across the globe who have special computers.', - ONBOARD_blockchain_content__4: 'The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.', - ONBOARD_blockchain_content__5: 'When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.', - ONBOARD_blockchain_content__6: 'Again: **we are not a bank**.', - ONBOARD_interface_title__alt: 'MEW is an Interface', - ONBOARD_why_title__alt: 'But...why does this matter?', - ONBOARD_why_title: 'Why are you making me read all this?', - ONBOARD_why_content__1: 'Because we need you to understand that we **cannot**...', - ONBOARD_why_content__2: 'Access your account or send your funds for you X.', - ONBOARD_why_content__3: 'Recover or change your private key.', - ONBOARD_why_content__4: 'Recover or reset your password.', - ONBOARD_why_content__5: 'Reverse, cancel, or refund transactions.', - ONBOARD_why_content__6: 'Freeze accounts.', - ONBOARD_why_content__7: '**You** and **only you** are responsible for your security.', - ONBOARD_why_content__8: 'Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.', - ONBOARD_why_content__9: 'If you lose your private key or password, no one can recover it.', - ONBOARD_why_content__10: 'If you enter your private key on a phishing website, you will have **all your funds taken**.' -}, _defineProperty(_es$data, 'ONBOARD_blockchain_title__alt', 'WTF is a Blockchain?'), _defineProperty(_es$data, 'ONBOARD_point_title__alt', 'What\'s the Point of MEW then?'), _defineProperty(_es$data, 'ONBOARD_whymew_title', 'If MyEtherWallet can\'t do those things, what\'s the point?'), _defineProperty(_es$data, 'ONBOARD_whymew_content__1', 'Because that is the point of decentralization and the blockchain.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__2', 'You don\'t have to rely on your bank, government, or anyone else when you want to move your funds.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__3', 'You don\'t have to rely on the security of an exchange or bank to keep your funds safe.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__4', 'If you don\'t find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉'), _defineProperty(_es$data, 'ONBOARD_whymew_content__5', 'If you don\'t like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__6', 'If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.'), _defineProperty(_es$data, 'ONBOARD_why_title__alt', 'But...why?'), _defineProperty(_es$data, 'ONBOARD_secure_title', 'How To Protect Yourself & Your Funds'), _defineProperty(_es$data, 'ONBOARD_secure_1_title', 'How To Protect Yourself from Phishers'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__1', 'Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__2', 'Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__3', 'Always check the URL: `https://www.myetherwallet.com`.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__4', 'Always make sure the URL bar has `MYETHERWALLET INC` in green.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__5', 'Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__6', 'Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__7', '[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).'), _defineProperty(_es$data, 'ONBOARD_point_title__alt_2', 'What\'s the point?'), _defineProperty(_es$data, 'ONBOARD_secure_2_title', 'How To Protect Yourself from Scams'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__1', 'People will try to get you to give them money in return for nothing.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__2', 'If it is too good to be true, it probably is.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__3', 'Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__4', 'Ask questions when you don\'t understand something or it doesn\'t seem right.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__5', 'Don\'t let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself "why?". It may be to create FOMO or prevent you from doing research.'), _defineProperty(_es$data, 'ONBOARD_secure_3_title__alt', 'Phuck Phishers'), _defineProperty(_es$data, 'ONBOARD_secure_3_title', 'How To Protect Yourself from Loss'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__1', 'If you lose your private key or password, it is gone forever. Don\'t lose it.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__2', 'Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__3', 'Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__4', 'Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__5', 'If you have more than 1-week\'s worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It\'s worth it. I promise.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__6', '[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)'), _defineProperty(_es$data, 'ONBOARD_secure_2_title__alt_2', 'Screw Scams'), _defineProperty(_es$data, 'ONBOARD_final_title__alt', 'One more click & you\'re done! 🤘'), _defineProperty(_es$data, 'ONBOARD_final_title', 'Alright, I\'m done lecturing you!'), _defineProperty(_es$data, 'ONBOARD_final_subtitle', 'Sorry for being like this. Onwards!'), _defineProperty(_es$data, 'ONBOARD_final_content__1', 'Create a wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__2', 'Get a hardware wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__3', 'How to Set up MEW + MetaMask'), _defineProperty(_es$data, 'ONBOARD_final_content__4', 'How to Run MEW Offline / Locally'), _defineProperty(_es$data, 'ONBOARD_final_content__5', 'How to Send via Ledger hardware wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__6', 'How to Send via TREZOR hardware wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__7', 'How to Send via MetaMask'), _defineProperty(_es$data, 'ONBOARD_final_content__8', 'Learn More or Contact Us'), _defineProperty(_es$data, 'ONBOARD_final_content__9', 'OMG, please just let me send FFS.'), _defineProperty(_es$data, 'ONBOARD_resume', 'It looks like you didn\'t finish reading through these slides last time. ProTip: Finish reading through the slides 😉'), _defineProperty(_es$data, 'x_CancelReplaceTx', 'Cancelar o reemplazar transacción'), _defineProperty(_es$data, 'x_CancelTx', 'Cancelar transacción'), _defineProperty(_es$data, 'x_PasswordDesc', 'Esta contraseña * encripta * tu clave privada. Esto no es una semilla para generar tus claves. **Necesitarás esta contraseña + tu clave privada para desbloquear tu cartera.**'), _defineProperty(_es$data, 'x_ReadMore', 'Leer más'), _defineProperty(_es$data, 'x_ReplaceTx', 'Reemplazar transacción'), _defineProperty(_es$data, 'x_TransHash', 'Hash de la transacción'), _defineProperty(_es$data, 'x_TXFee', 'TX Fee'), _defineProperty(_es$data, 'x_TxHash', 'TX Hash'), _defineProperty(_es$data, 'NAV_CheckTxStatus', 'Comprobar estado de transacción'), _defineProperty(_es$data, 'NAV_TxStatus', 'Estado de transacción'), _defineProperty(_es$data, 'tx_Details', 'Detalles de la transacción'), _defineProperty(_es$data, 'tx_Summary', 'En momentos de alto volumen (como por ejemplo durante las ICOs) las transacciones pueden quedarse pendientes durante horas o incluso días. Esta herramienta te proporciona la posibilidad de encontrar y "cancelar" / reemplazar estas transacciones. ** Esto es algo que normalmente no puedes hacer. No se debe confiar en esta herramienta. Solamente funcionará cuando los pools de transacciones estén llenos. [Por favor, lee más sobre esta herramienta aquí.](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)**'), _defineProperty(_es$data, 'tx_notFound', 'Transacción no encontrada'), _defineProperty(_es$data, 'tx_notFound_1', 'Esta transacción no se puede encontrar en el pool de transacciones del nodo al que estás conectado.'), _defineProperty(_es$data, 'tx_notFound_2', 'Si acabas de enviar la transacción, por favor espera 15 segundos y pulsa de nuevo el botón "Comprobar estado de transacción". '), _defineProperty(_es$data, 'tx_notFound_3', 'Podría encontrarse todavía en el pool de transacciones de otro nodo diferente, esperando ser minado.'), _defineProperty(_es$data, 'tx_notFound_4', 'Por favor usa el desplegable en la parte superior derecha y selecciona un nodo ETH diferente (ej. `ETH (Etherscan.io)` o `ETH (Infura.io)` o `ETH (MyEtherWallet)`) y comprueba de nuevo.'), _defineProperty(_es$data, 'tx_foundInPending', 'Transacción pendiente encontrada'), _defineProperty(_es$data, 'tx_foundInPending_1', 'Tu transacción se ha encontrado en el pool de transacciones del nodo al que te encuentras conectado. '), _defineProperty(_es$data, 'tx_foundInPending_2', 'Actualmente está pendiente (esperando ser minada). '), _defineProperty(_es$data, 'tx_foundInPending_3', 'Existe la posibilidad de que puedas "cancelar" o reemplazar esta transacción. Desbloquea tu cartera debajo.'), _defineProperty(_es$data, 'tx_FoundOnChain', 'Transacción encontrada'), _defineProperty(_es$data, 'tx_FoundOnChain_1', 'Tu transacción ha sido minada con éxito y se encuentra en la cadena de bloques.'), _defineProperty(_es$data, 'tx_FoundOnChain_2', '**If you see a red `( ! )`, a `BAD INSTRUCTION` or `OUT OF GAS` error message**, it means that the transaction was not successfully *sent*. You cannot cancel or replace this transaction. Instead, send a new transaction. If you received an "Out of Gas" error, you should double the gas limit you specified originally.'), _defineProperty(_es$data, 'tx_FoundOnChain_3', '**If you do not see any errors, your transaction was successfully sent.** Your ETH or Tokens are where you sent them. If you cannot see this ETH or Tokens credited in your other wallet / exchange account, and it has been 24+ hours since you sent, please [contact that service](https://myetherwallet.github.io/knowledge-base/diving-deeper/ethereum-list-of-support-and-communities.html). Send them the *link* to your transaction and ask them, nicely, to look into your situation.'), _defineProperty(_es$data, 'GEN_Help_1', 'Usa tu'), _defineProperty(_es$data, 'GEN_Help_2', 'para acceder a tu cuenta.'), _defineProperty(_es$data, 'GEN_Help_3', 'Tu dispositivo * is * tu cartera.'), _defineProperty(_es$data, 'GEN_Help_4', 'Guías y FAQ'), _defineProperty(_es$data, 'GEN_Help_5', 'Cómo crear una cartera'), _defineProperty(_es$data, 'GEN_Help_6', 'Empezando'), _defineProperty(_es$data, 'GEN_Help_7', 'Keep it safe · Make a backup · Don\'t share it with anyone · Don\'t lose it · It cannot be recovered if you lose it.'), _defineProperty(_es$data, 'GEN_Help_8', 'Not Downloading a File? '), _defineProperty(_es$data, 'GEN_Help_9', 'Intenta utilizando Google Chrome '), _defineProperty(_es$data, 'GEN_Help_10', 'Right click & save file as. Filename: '), _defineProperty(_es$data, 'GEN_Help_11', 'No abras este archivo en tu computadora '), _defineProperty(_es$data, 'GEN_Help_12', 'Use it to unlock your wallet via MyEtherWallet (or Mist, Geth, Parity and other wallet clients.) '), _defineProperty(_es$data, 'GEN_Help_13', 'How to Back Up Your Keystore File '), _defineProperty(_es$data, 'GEN_Help_14', 'What are these Different Formats? '), _defineProperty(_es$data, 'GEN_Help_15', 'Evitando la pérdida o robo de tus fondos.'), _defineProperty(_es$data, 'GEN_Help_16', 'What are these Different Formats?'), _defineProperty(_es$data, 'GEN_Help_17', 'Why Should I?'), _defineProperty(_es$data, 'GEN_Help_18', 'To have a secondary backup.'), _defineProperty(_es$data, 'GEN_Help_19', 'In case you ever forget your password.'), _defineProperty(_es$data, 'GEN_Help_20', 'Cold Storage'), _defineProperty(_es$data, 'GET_ConfButton', 'I understand. Continue.'), _defineProperty(_es$data, 'GEN_Label_5', 'Save Your `Private Key`. '), _defineProperty(_es$data, 'GEN_Unlock', 'Desbloquea tu cartera para ver tu dirección'), _defineProperty(_es$data, 'GAS_PRICE_Desc', 'Gas Price is the amount you pay per unit of gas. `TX fee = gas price * gas limit` & is paid to miners for including your TX in a block. Higher the gas price = faster transaction, but more expensive. Default is `41 GWEI`.'), _defineProperty(_es$data, 'GAS_LIMIT_Desc', 'Gas limit is the amount of gas to send with your TX. `TX fee` = gas price * gas limit & is paid to miners for including your TX in a block. Increasing this number will not get your TX mined faster. Sending ETH = `21000`. Sending Tokens = ~`200000`.'), _defineProperty(_es$data, 'NONCE_Desc', 'The nonce is the number of transactions sent from a given address. It ensures transactions are sent in order & not more than once.'), _defineProperty(_es$data, 'TXFEE_Desc', 'The TX Fee is paid to miners for including your TX in a block. Is is the `gas limit` * `gas price`. [You can convert GWEI -> ETH here](https://www.myetherwallet.com/helpers.html)'), _defineProperty(_es$data, 'NAV_AddWallet', 'Añadir cartera '), _defineProperty(_es$data, 'NAV_BulkGenerate', 'Generar en masa '), _defineProperty(_es$data, 'NAV_Contact', 'Contacto '), _defineProperty(_es$data, 'NAV_Contracts', 'Contratos '), _defineProperty(_es$data, 'NAV_DeployContract', 'Desplegar contrato '), _defineProperty(_es$data, 'NAV_ENS', 'ENS'), _defineProperty(_es$data, 'NAV_GenerateWallet_alt', 'Nueva cartera '), _defineProperty(_es$data, 'NAV_GenerateWallet', 'Generar cartera '), _defineProperty(_es$data, 'NAV_Help', 'Ayuda '), _defineProperty(_es$data, 'NAV_InteractContract', 'Interactuar con un contrato '), _defineProperty(_es$data, 'NAV_Multisig', 'Multifirma '), _defineProperty(_es$data, 'NAV_MyWallets', 'Mis carteras '), _defineProperty(_es$data, 'NAV_Offline', 'Enviar sin conexión '), _defineProperty(_es$data, 'NAV_SendEther', 'Enviar ether y tokens '), _defineProperty(_es$data, 'NAV_SendTokens', 'Enviar tokens '), _defineProperty(_es$data, 'NAV_SignMsg', 'Firmar mensaje '), _defineProperty(_es$data, 'NAV_Swap', 'Intercambiar '), _defineProperty(_es$data, 'NAV_ViewWallet', 'Ver información de las carteras '), _defineProperty(_es$data, 'NAV_YourWallets', 'Tus carteras '), _defineProperty(_es$data, 'x_Access', 'Access '), _defineProperty(_es$data, 'x_AddessDesc', 'Tu dirección también se conoce como tu `número de cuenta` o tu `clave pública`. Es lo que compartes con otras personas para que te puedan enviar Ether o tokens. Busca el icono de colores de tu dirección. Asegúrate de que coincide con tu cartera de papel y siempre que introduzcas tu dirección en cualquier sitio. Puedes pensar en esto como tu "número de cuenta" o tu "clave pública". Es lo que le das a la gente para que te puedan enviar ether. Ese icono es una forma fácil de reconocer tu dirección. '), _defineProperty(_es$data, 'x_Address', 'Tu dirección '), _defineProperty(_es$data, 'x_Cancel', 'Cancelar '), _defineProperty(_es$data, 'x_CSV', 'Archivo CSV (sin encriptar) '), _defineProperty(_es$data, 'x_Download', 'Descargar '), _defineProperty(_es$data, 'x_Json', 'Archivo JSON (sin encriptar) '), _defineProperty(_es$data, 'x_JsonDesc', 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu archivo JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña. '), _defineProperty(_es$data, 'x_Keystore', 'Archivo Keystore (UTC / JSON · Recomendado · Encriptado) '), _defineProperty(_es$data, 'x_Keystore2', 'Archivo Keystore (UTC / JSON) '), _defineProperty(_es$data, 'x_KeystoreDesc', 'Este archivo Keystore/JSON concuerda con el formato usado por Mist para una fácil importación en el futuro. Es el archivo recomendado para descargar y guardar como copia de seguridad. '), _defineProperty(_es$data, 'x_MetaMask', 'MetaMask / Mist '), _defineProperty(_es$data, 'x_Mnemonic', 'Frase mnemotécnica '), _defineProperty(_es$data, 'x_ParityPhrase', 'Frase de Parity '), _defineProperty(_es$data, 'x_Password', 'Contraseña '), _defineProperty(_es$data, 'x_Print', 'Imprimir Cartera de Papel '), _defineProperty(_es$data, 'x_PrintDesc', 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora! '), _defineProperty(_es$data, 'x_PrintShort', 'Imprimir '), _defineProperty(_es$data, 'x_PrivKey', 'Clave Privada (sin encriptar) '), _defineProperty(_es$data, 'x_PrivKey2', 'Clave Privada '), _defineProperty(_es$data, 'x_PrivKeyDesc', 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas. '), _defineProperty(_es$data, 'x_Save', 'Guardar '), _defineProperty(_es$data, 'x_TXT', 'Archivo TXT (sin encriptar) '), _defineProperty(_es$data, 'x_Wallet', 'Cartera '), _defineProperty(_es$data, 'MEW_Warning_1', 'Comprueba siempre la URL antes de acceder a tu cartera o crear una cartera nueva. ¡Ten cuidado con los sitios falsos (phishing)! '), _defineProperty(_es$data, 'CX_Warning_1', 'Asegúrate de tener **copias de seguridad externas** de cualquier cartera que almacenes aquí. Pueden ocurrir muchas cosas que te hagan perder los datos de esta extensión de Chrome; esto incluye desinstalar y volver a instalar la extensión. Esta extensión es un modo de acceder fácilmente a tus carteras, **no** una manera de respaldarlas. '), _defineProperty(_es$data, 'MEW_Tagline', 'Cartera Ether JavaScript de código abierto ejecutado en el cliente '), _defineProperty(_es$data, 'CX_Tagline', 'Cartera Ether JavaScript de código abierto ejecutado en el cliente extensión Chrome '), _defineProperty(_es$data, 'FOOTER_1', 'Una herramienta de código abierto JavaScript que se ejecuta en el lado del cliente, para generar carteras y enviar transacciones Ethereum. '), _defineProperty(_es$data, 'FOOTER_1b', 'Creado por '), _defineProperty(_es$data, 'FOOTER_2', 'Se agradecen las donaciones: '), _defineProperty(_es$data, 'FOOTER_3', 'Generación de carteras en el cliente por '), _defineProperty(_es$data, 'FOOTER_4', 'Renuncia de responsabilidad '), _defineProperty(_es$data, 'sidebar_AccountInfo', 'Información de la cuenta '), _defineProperty(_es$data, 'sidebar_AccountAddr', 'Dirección de la cuenta '), _defineProperty(_es$data, 'sidebar_AccountBal', 'Saldo de la cuenta '), _defineProperty(_es$data, 'sidebar_TokenBal', 'Saldos de tokens '), _defineProperty(_es$data, 'sidebar_Equiv', 'Valores equivalentes '), _defineProperty(_es$data, 'sidebar_TransHistory', 'Historial de transacciones '), _defineProperty(_es$data, 'sidebar_donation', 'MyEtherWallet es un servicio gratuito y de código abierto dedicado a tu privacidad y seguridad. Cuantas más donaciones recibimos, más tiempo dedicamos creando nuevas características, escuchando vuestros comentarios y proporcionando lo que queréis. Sólo somos dos personas intentando cambiar el mundo. ¿Nos ayudas? '), _defineProperty(_es$data, 'sidebar_donate', 'Donar '), _defineProperty(_es$data, 'sidebar_thanks', '¡¡¡GRACIAS!!! '), _defineProperty(_es$data, 'sidebar_DisplayOnTrezor', 'Mostrar dirección en TREZOR'), _defineProperty(_es$data, 'sidebar_DisplayOnLedger', 'Mostrar dirección en Ledger'), _defineProperty(_es$data, 'decrypt_Access', '¿Cómo te gustaría acceder a tu cartera? '), _defineProperty(_es$data, 'decrypt_Title', 'Elige el formato de tu clave privada: '), _defineProperty(_es$data, 'decrypt_Select', 'Elige una cartera: '), _defineProperty(_es$data, 'ADD_Label_1', '¿Qué quieres hacer? '), _defineProperty(_es$data, 'ADD_Radio_1', 'Generar nueva cartera '), _defineProperty(_es$data, 'ADD_Radio_2', 'Elige tu archivo de cartera (Keystore / JSON) '), _defineProperty(_es$data, 'ADD_Radio_2_alt', 'Elige tu archivo de cartera '), _defineProperty(_es$data, 'ADD_Radio_2_short', 'ELIGE ARCHIVO DE CARTERA... '), _defineProperty(_es$data, 'ADD_Radio_3', 'Pega o escribe tu clave privada '), _defineProperty(_es$data, 'ADD_Radio_4', 'Añade una cuenta para supervisar '), _defineProperty(_es$data, 'ADD_Radio_5', 'Pega o escribe tu mnemotécnico '), _defineProperty(_es$data, 'ADD_Radio_5_Path', 'Elige la ruta de derivación HD '), _defineProperty(_es$data, 'ADD_Radio_5_woTrezor', '(Jaxx, Metamask, Exodus, imToken)'), _defineProperty(_es$data, 'ADD_Radio_5_withTrezor', '(Jaxx, Metamask, Exodus, imToken, TREZOR)'), _defineProperty(_es$data, 'ADD_Radio_5_PathAlternative', '(Ledger)'), _defineProperty(_es$data, 'ADD_Radio_5_PathTrezor', '(TREZOR)'), _defineProperty(_es$data, 'ADD_Radio_5_PathCustom', 'Personalizado'), _defineProperty(_es$data, 'ADD_Label_2', 'Crear un alias: '), _defineProperty(_es$data, 'ADD_Label_3', 'Tu cartera está encriptada. Introduce tu contraseña '), _defineProperty(_es$data, 'ADD_Label_4', 'Añade una cuenta para supervisar '), _defineProperty(_es$data, 'ADD_Warning_1', 'Puedes añadir una cuenta para supervisar en la pestaña de carteras sin cargar una clave privada. Esto ** no ** significa que tengas acceso a la cartera, ni puedes transferir ether desde ésta. '), _defineProperty(_es$data, 'ADD_Label_5', 'Introduce la dirección '), _defineProperty(_es$data, 'ADD_Label_6', 'Desbloquea tu cartera '), _defineProperty(_es$data, 'ADD_Label_6_short', 'Desbloquear '), _defineProperty(_es$data, 'ADD_Label_7', 'Añadir cuenta '), _defineProperty(_es$data, 'ADD_Label_8', 'Contraseña (opcional): '), _defineProperty(_es$data, 'GEN_desc', 'Si quieres generar varias carteras, puedes hacerlo aquí '), _defineProperty(_es$data, 'GEN_Label_1', 'Introduce una contraseña fuerte (mínimo 9 caracteres) '), _defineProperty(_es$data, 'GEN_Placeholder_1', '¡NO olvides guardar esto! '), _defineProperty(_es$data, 'GEN_SuccessMsg', '¡Enhorabuena! Se ha generado tu cartera. '), _defineProperty(_es$data, 'GEN_Label_2', 'Guarda tu Keystore. No olvides tu contraseña. '), _defineProperty(_es$data, 'GEN_Label_3', 'Guarda tu dirección. '), _defineProperty(_es$data, 'GEN_Label_4', 'Opcional: Imprime tu cartera en papel o guarda una versión en código QR. '), _defineProperty(_es$data, 'BULK_Label_1', 'Cantidad de carteras a generar '), _defineProperty(_es$data, 'BULK_Label_2', 'Generar carteras '), _defineProperty(_es$data, 'BULK_SuccessMsg', '¡Enhorabuena! Se han generado tus carteras. '), _defineProperty(_es$data, 'SEND_addr', 'Dirección de destino '), _defineProperty(_es$data, 'SEND_amount', 'Cantidad a enviar '), _defineProperty(_es$data, 'SEND_amount_short', 'Cantidad '), _defineProperty(_es$data, 'SEND_custom', 'Personalizado '), _defineProperty(_es$data, 'SEND_gas', 'Gas '), _defineProperty(_es$data, 'SEND_TransferTotal', 'Enviar todo el saldo '), _defineProperty(_es$data, 'SEND_generate', 'Generar transacción '), _defineProperty(_es$data, 'SEND_raw', 'Transacción en bruto '), _defineProperty(_es$data, 'SEND_signed', 'Transacción firmada '), _defineProperty(_es$data, 'SEND_trans', 'Enviar transacción '), _defineProperty(_es$data, 'SEND_custom', 'Añadir token personalizado '), _defineProperty(_es$data, 'SENDModal_Title', '¡Atención! '), _defineProperty(_es$data, 'SENDModal_Content_1', 'Vas a enviar '), _defineProperty(_es$data, 'SENDModal_Content_2', 'a la dirección '), _defineProperty(_es$data, 'SENDModal_Content_3', '¿Estás seguro de que quieres hacer esto? '), _defineProperty(_es$data, 'SENDModal_Content_4', 'NOTA: Si recibes un error, es muy probable que necesites añadir ether a tu cuenta para cubrir el coste en gas de enviar tokens. Gas se paga en ether. '), _defineProperty(_es$data, 'SENDModal_No', 'No, sácame de aquí. '), _defineProperty(_es$data, 'SENDModal_Yes', 'Sí, estoy seguro. Hacer la transacción. '), _defineProperty(_es$data, 'TOKEN_Addr', 'Token Contact Dirección '), _defineProperty(_es$data, 'TOKEN_Symbol', 'Símbolo del token '), _defineProperty(_es$data, 'TOKEN_Dec', 'Decimales '), _defineProperty(_es$data, 'TOKEN_hide', 'Ocultar tokens '), _defineProperty(_es$data, 'TOKEN_show', 'Mostrar todos los tokens '), _defineProperty(_es$data, 'TRANS_desc', 'Si quieres enviar tokens, utiliza la página "Enviar tokens" en lugar de esta. '), _defineProperty(_es$data, 'TRANS_warning', 'Si utilizas las funciones "Sólo ETH" o "Sólo ETC" estás enviando a través de un contrato. Algunos servicios tienen problemas aceptando estas transacciones. Leer más. '), _defineProperty(_es$data, 'TRANS_advanced', '+Avanzado: Añadir datos '), _defineProperty(_es$data, 'TRANS_data', 'Datos '), _defineProperty(_es$data, 'TRANS_gas', 'Límite de gas '), _defineProperty(_es$data, 'TRANS_sendInfo', 'Una transacción estándar que utiliza 21000 gas cuesta 0.000441 ETH. Utilizamos un precio de gas de 0.000000021 ETH, ligeramente por encima del mínimo, para asegurarnos de que se mina con rapidez. Nosotros no recibimos ninguna comisión por la transacción. '), _defineProperty(_es$data, 'TRANSModal_Title', 'Transacciones "Sólo ETH" y "Sólo ETC" '), _defineProperty(_es$data, 'TRANSModal_Content_0', 'Una nota sobre las distintas transacciones y servicios: '), _defineProperty(_es$data, 'TRANSModal_Content_1', '**ETH (transacción estándar): ** Esto genera una transacción predeterminada directamente de una dirección a otra. Utiliza gas predeterminado de 21000. Es probable que cualquier transacción de ETH enviada mediante este método se reproduzca (replay) en la cadena ETC. '), _defineProperty(_es$data, 'TRANSModal_Content_2', '**Sólo ETH: ** Esto envía a través del [contrato de protección contra replay de Timon Rapp (según recomienda VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) de modo que envías solamente en la cadena **ETH**. '), _defineProperty(_es$data, 'TRANSModal_Content_3', '**Sólo ETC: ** Esto envía a través del [contrato de protección contra replay de Timon Rapp (según recomienda VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) de modo que envías solamente en la cadena **ETC**. '), _defineProperty(_es$data, 'TRANSModal_Content_4', '**Coinbase y ShapeShift: ** Envía solamente utilizando transacción estándar. Si envías utilizando los contratos "Sólo ETH" o "Sólo ETC", será necesario que contactes con su equipo de soporte para que añadan manualmente el saldo o te lo devuelvan. [También puedes probar la herramienta de "split" de Shapeshift.](https://split.shapeshift.io/) '), _defineProperty(_es$data, 'TRANSModal_Content_5', '**Kraken y Poloniex:** No se conocen problemas. Usa cualquiera. '), _defineProperty(_es$data, 'TRANSModal_Yes', 'Bien, ahora lo entiendo. '), _defineProperty(_es$data, 'TRANSModal_No', 'Estoy más confundido. Ayuda, por favor. '), _defineProperty(_es$data, 'OFFLINE_Title', 'Generar y enviar transacción sin conexión '), _defineProperty(_es$data, 'OFFLINE_Desc', 'Se puede generar transacciones sin conexión en tres pasos. Debes hacer los pasos 1 y 3 en un equipo online y el paso 2 en un equipo sin conexión y aislado. Esto asegura que tus claves privadas no estén en contacto con un equipo con conexión a Internet. '), _defineProperty(_es$data, 'OFFLLINE_Step1_Title', 'Paso 1: generar información (equipo conexión) '), _defineProperty(_es$data, 'OFFLINE_Step1_Button', 'Generar información '), _defineProperty(_es$data, 'OFFLINE_Step1_Label_1', 'Dirección de origen '), _defineProperty(_es$data, 'OFFLINE_Step1_Label_2', 'Nota: Esta es la dirección de origen, no la dirección de destino. El nonce se genera desde la cuenta que origina la transacción. Si se está utilizando un equipo aislado, será la dirección de la cuenta de almacenaje en frío. '), _defineProperty(_es$data, 'OFFLINE_Step2_Title', 'Paso 2: generar transacción (equipo sin conexión) '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_1', 'Dirección de destino '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_2', 'Valor / Cantidad a enviar '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_3', 'Precio del gas '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_3b', 'Esto se ha mostrado en el Paso 1 en tu equipo con conexión. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_4', 'Límite de gas '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_4b', '21000 es el límite de gas predeterminado. Cuando envías contratos o datos adicionales, puede que esto necesite ser diferente. El gas no utilizado se te devolverá. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_5', 'Nonce '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_5b', 'Esto se indicó en el Paso 1 en tu equipo con conexión. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_6', 'Datos '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_6b', 'Opcional. Los datos se utilizan habitualmente al enviar transacciones a contratos. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_7', 'Introduce / elige tu Clave Privada / JSON. '), _defineProperty(_es$data, 'OFFLINE_Step3_Title', 'Paso 3: Enviar / Publicar transacción (con conexión) '), _defineProperty(_es$data, 'OFFLINE_Step3_Label_1', 'Pega aquí la transacción firmada del paso 2 y pulsa el botón "ENVIAR TRANSACCIÓN". '), _defineProperty(_es$data, 'DEP_generate', 'Generar Bytecode '), _defineProperty(_es$data, 'DEP_generated', 'Bytecode generado '), _defineProperty(_es$data, 'DEP_signtx', 'Firmar transacción '), _defineProperty(_es$data, 'DEP_interface', 'Interfaz generada '), _defineProperty(_es$data, 'MYWAL_Nick', 'Alias de cartera '), _defineProperty(_es$data, 'MYWAL_Address', 'Dirección de cartera '), _defineProperty(_es$data, 'MYWAL_Bal', 'Saldo '), _defineProperty(_es$data, 'MYWAL_Edit', 'Editar '), _defineProperty(_es$data, 'MYWAL_View', 'Ver '), _defineProperty(_es$data, 'MYWAL_Remove', 'Eliminar '), _defineProperty(_es$data, 'MYWAL_RemoveWal', 'Eliminar cartera: '), _defineProperty(_es$data, 'MYWAL_WatchOnly', 'Tus cuentas de sólo visualización '), _defineProperty(_es$data, 'MYWAL_Viewing', 'Viendo cartera '), _defineProperty(_es$data, 'MYWAL_Hide', 'Ocultar información de cartera '), _defineProperty(_es$data, 'MYWAL_Edit_2', 'Editar cartera '), _defineProperty(_es$data, 'MYWAL_Name', 'Nombre de la cartera '), _defineProperty(_es$data, 'MYWAL_Content_1', '¡Atención! Estás a punto de eliminar tu cartera '), _defineProperty(_es$data, 'MYWAL_Content_2', 'Asegúrate de haber **guardado tu clave privada y/o archivo almacén de clave y la contraseña** antes de eliminarlo. '), _defineProperty(_es$data, 'MYWAL_Content_3', 'Si en el futuro quieres utilizar esta cartera con MyEtherWallet CX, tendrás que volver a añadirla manualmente utilizando Clave Privada/JSON y contraseña. '), _defineProperty(_es$data, 'VIEWWALLET_Subtitle', 'Esto te permite descargar múltiples versiones de claves privadas e imprimir de nuevo tu cartera en papel. Puede que te interese hacer esto para [importar tu cuenta en Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si quieres comprobar tu saldo, recomendamos utilizar un explorador de blockchain como [etherscan.io](https://etherscan.io/). '), _defineProperty(_es$data, 'VIEWWALLET_Subtitle_Short', 'Esto te permite descargar múltiples versiones de claves privadas e imprimir de nuevo tu cartera en papel. '), _defineProperty(_es$data, 'VIEWWALLET_SuccessMsg', '¡Enhorabuena! Estos son los detalles de tu cartera. '), _defineProperty(_es$data, 'VIEWWALLET_ShowPrivKey', '(mostrar)'), _defineProperty(_es$data, 'VIEWWALLET_HidePrivKey', '(ocultar)'), _defineProperty(_es$data, 'CX_error_1', 'No tienes ninguna cartera guardada. ¡Haz clic en ["Añadir cartera"](/cx-wallet.html#add-wallet) para añadir una! '), _defineProperty(_es$data, 'CX_quicksend', 'Enviar '), _defineProperty(_es$data, 'NODE_Title', 'Configurar nodo personalizado'), _defineProperty(_es$data, 'NODE_Subtitle', 'Para conectar a un nodo local...'), _defineProperty(_es$data, 'NODE_Warning', 'Tu nodo debe ser HTTPS para poder conectar a él desde MyEtherWallet.com. Para conectarte a cualquier nodo, puedes [descargar el repositorio de MyEtherWallet y ejecutarlo localmente](https://github.com/kvhnuke/etherwallet/releases/latest). También puedes conseguir un certificado SSL gratuito a través de [Let\'s Encrypt](https://letsencrypt.org/)'), _defineProperty(_es$data, 'NODE_Name', 'Nombre del nodo'), _defineProperty(_es$data, 'NODE_Port', 'Puerto del nodo'), _defineProperty(_es$data, 'NODE_CTA', 'Guardar y usar nodo personalizado'), _defineProperty(_es$data, 'CONTRACT_Title', 'Dirección del contrato '), _defineProperty(_es$data, 'CONTRACT_Title_2', 'Seleccionar contrato existente '), _defineProperty(_es$data, 'CONTRACT_Json', 'Interfaz ABI / JSON '), _defineProperty(_es$data, 'CONTRACT_Interact_Title', 'Leer/escribir contrato '), _defineProperty(_es$data, 'CONTRACT_Interact_CTA', 'Seleccionar una función '), _defineProperty(_es$data, 'CONTRACT_ByteCode', 'Byte Code '), _defineProperty(_es$data, 'CONTRACT_Read', 'LEER '), _defineProperty(_es$data, 'CONTRACT_Write', 'ESCRIBIR '), _defineProperty(_es$data, 'SWAP_rates', "Tipos de cambio actuales "), _defineProperty(_es$data, 'SWAP_init_1', "Quiero cambiar mis "), _defineProperty(_es$data, 'SWAP_init_2', " por "), _defineProperty(_es$data, 'SWAP_init_CTA', "Continuar"), _defineProperty(_es$data, 'SWAP_information', "Tu información "), _defineProperty(_es$data, 'SWAP_send_amt', "Cantidad a enviar "), _defineProperty(_es$data, 'SWAP_rec_amt', "Cantidad a recibir "), _defineProperty(_es$data, 'SWAP_your_rate', "Tu tipo de cambio "), _defineProperty(_es$data, 'SWAP_rec_add', "Tu dirección de destino "), _defineProperty(_es$data, 'SWAP_start_CTA', "Iniciar intercambio "), _defineProperty(_es$data, 'SWAP_ref_num', "Tu número de referencia "), _defineProperty(_es$data, 'SWAP_time', "Tiempo restante para enviar "), _defineProperty(_es$data, 'SWAP_elapsed', "Time elapsed since sent "), _defineProperty(_es$data, 'SWAP_progress_1', "Pedido iniciado "), _defineProperty(_es$data, 'SWAP_progress_2', "Esperando recibir tus "), _defineProperty(_es$data, 'SWAP_progress_3', "¡Recibido! "), _defineProperty(_es$data, 'SWAP_progress_4', "Enviando tu {{orderResult.output.currency}} "), _defineProperty(_es$data, 'SWAP_progress_5', "Pedido completado "), _defineProperty(_es$data, 'SWAP_order_CTA', "Por favor, envía "), _defineProperty(_es$data, 'SWAP_unlock', "Desbloquea tu cartera para enviar ETH o tokens directamente desde esta página. "), _defineProperty(_es$data, 'MSG_message', 'Mensaje '), _defineProperty(_es$data, 'MSG_date', 'Fecha '), _defineProperty(_es$data, 'MSG_signature', 'Firma '), _defineProperty(_es$data, 'MSG_verify', 'Verificar mensaje '), _defineProperty(_es$data, 'MSG_info1', 'Incluye la fecha actual para que la firma no se pueda volver a utilizar en otra fecha. '), _defineProperty(_es$data, 'MSG_info2', 'Incluye tu apodo y dónde utilizas ese apodo para que otra persona no lo pueda utilizar. '), _defineProperty(_es$data, 'MSG_info3', 'Incluye una razón específica para el mensaje para que no se pueda volver a utilizar con otra finalidad. '), _defineProperty(_es$data, 'MNEM_1', 'Selecciona la dirección con la que deseas interactuar. '), _defineProperty(_es$data, 'MNEM_2', 'Tu mnemotécnico HD único proporciona acceso a una serie de carteras o direcciones. Por favor, elige la dirección con la que quieres interactuar ahora. '), _defineProperty(_es$data, 'MNEM_more', 'Más direcciones '), _defineProperty(_es$data, 'MNEM_prev', 'Direcciones anteriores '), _defineProperty(_es$data, 'x_Ledger', 'Ledger Wallet '), _defineProperty(_es$data, 'ADD_Ledger_1', 'Conecta tu Ledger Wallet '), _defineProperty(_es$data, 'ADD_Ledger_2', 'Inicia la aplicacin Ethereum (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_2_Exp', 'Inicia la aplicacin Expanse (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_2_Ubq', 'Inicia la aplicacin Ubiq (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_3', 'Comprueba que "Browser Support" está activado en "Settings" '), _defineProperty(_es$data, 'ADD_Ledger_4', 'Si no encuentras la opción "Browser Support" en "Settings", asegúrate de tener instalado el [Firmware >1.2](https://www.ledgerwallet.com/apps/manager) '), _defineProperty(_es$data, 'ADD_Ledger_0a', 'Volver a abrir MyEtherWallet en una conexión segura (SSL) '), _defineProperty(_es$data, 'ADD_Ledger_0b', 'Volver a abrir MyEtherWallet usando [Chrome](https://www.google.com/chrome/browser/desktop/) u [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_Ledger_scan', 'Conectar a Ledger Wallet '), _defineProperty(_es$data, 'ADD_MetaMask', 'Connectar a MetaMask '), _defineProperty(_es$data, 'x_Trezor', 'TREZOR '), _defineProperty(_es$data, 'ADD_Trezor_scan', 'Conectar a TREZOR '), _defineProperty(_es$data, 'ADD_Trezor_select', 'Esto es una semilla TREZOR '), _defineProperty(_es$data, 'x_DigitalBitbox', 'Digital Bitbox '), _defineProperty(_es$data, 'ADD_DigitalBitbox_0a', 'Volver a abrir MyEtherWallet en una conexión segura (SSL) '), _defineProperty(_es$data, 'ADD_DigitalBitbox_0b', 'Volver a abrir MyEtherWallet usando [Chrome](https://www.google.com/chrome/browser/desktop/) u [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_DigitalBitbox_scan', 'Conectar a Digital Bitbox '), _defineProperty(_es$data, 'x_Secalot', 'Secalot '), _defineProperty(_es$data, 'ADD_Secalot_0a', 'Re-open MyEtherWallet on a secure (SSL) connection '), _defineProperty(_es$data, 'ADD_Secalot_0b', 'Re-open MyEtherWallet using [Chrome](https://www.google.com/chrome/browser/desktop/) or [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_Secalot_scan', 'Connect your Secalot '), _defineProperty(_es$data, 'ERROR_0', '(error_01) Introduce una cantidad válida. Please enter a valid amount.'), _defineProperty(_es$data, 'ERROR_1', '(error_02) Tu contraseña debe tener al menos 9 caracteres. Por favor utiliza una contraseña fuerte. Your password must be at least 9 characters. Please ensure it is a strong password.'), _defineProperty(_es$data, 'ERROR_2', '(error_03) Lo sentimos. No reconocemos este tipo de archivo de cartera. Sorry! We don\'t recognize this type of wallet file.'), _defineProperty(_es$data, 'ERROR_3', '(error_04) Este no es un archivo de cartera válido. This is not a valid wallet file.'), _defineProperty(_es$data, 'ERROR_4', '(error_05) Esta unidad no existe. Por favor utiliza una de las siguientes unidades This unit doesn\'t exists, please use the one of the following units'), _defineProperty(_es$data, 'ERROR_5', '(error_06) Introduce una Dirección válida. Please enter a valid address.'), _defineProperty(_es$data, 'ERROR_6', '(error_07) Introduce una Contraseña válida. Please enter a valid password.'), _defineProperty(_es$data, 'ERROR_7', '(error_08) Introduce una Cantidad válida. (Must be integer. Try 0-18.) Please enter valid decimals (Must be an integer. Try 0-18.)'), _defineProperty(_es$data, 'ERROR_8', '(error_09) Introduce un Límite de gas válido. (Must be integer. Try 21000-4000000.) Please enter a valid gas limit (Must be an integer. Try 21000-4000000.)'), _defineProperty(_es$data, 'ERROR_9', '(error_10) Introduce un Valor de datos válido. (Must be hex.) Please enter a valid data value (Must be hex.)'), _defineProperty(_es$data, 'ERROR_10', '(error_11) Introduce una Cantidad de gas válida. (Must be integer. Try 20 GWEI / 20000000000 WEI.) Please enter a valid gas price. (Must be an integer. Try 20 GWEI / 20000000000 WEI.)'), _defineProperty(_es$data, 'ERROR_11', '(error_12) Introduce un Nonce válido. (Must be integer.) Please enter a valid nonce (Must be an integer.)'), _defineProperty(_es$data, 'ERROR_12', '(error_13) Introduce una Transacción firmada válida. Invalid signed transaction.'), _defineProperty(_es$data, 'ERROR_13', '(error_14) Ya existe una cartera con este alias. A wallet with this nickname already exists.'), _defineProperty(_es$data, 'ERROR_14', '(error_15) Cartera no encontrada. Wallet not found.'), _defineProperty(_es$data, 'ERROR_15', '(error_16) No parece que exista todavía una propuesta con este ID o hay un error al leer esta propuesta. Whoops. It doesn\'t look like a proposal with this ID exists yet or there is an error reading this proposal.'), _defineProperty(_es$data, 'ERROR_16', '(error_17) Ya hay almacenada una cartera con esta dirección. Por favor comprueba la página de carteras. A wallet with this address already exists in storage. Please check your wallets page.'), _defineProperty(_es$data, 'ERROR_17', '(error_18) Fondos no suficientes para gas * precio + valor. Es necesario tener al menos 0.01 ether en tu cuenta para cubrir el coste del gas. Añade algo de ether e inténtalo de nuevo. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'ERROR_18', '(error_19) Sería necesario utilizar todo el gas en esta transacción. Esto significa que ya has votado en esta propuesta o que el periodo de debate ha concluido. All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.'), _defineProperty(_es$data, 'ERROR_19', '(error_20) Introduce un Símbolo válido Please enter a valid symbol'), _defineProperty(_es$data, 'ERROR_20', '(error_21) No es un token ERC-20 válido Not a valid ERC-20 token'), _defineProperty(_es$data, 'ERROR_21', '(error_22) No se ha podido estimar el gas. No hay suficientes fondos en la cuenta, o el contrato de destino ha devuelto un error. Puedes ajustar el gas manualmente y continuar. Puede que el mensaje de error al enviar contenga más información. Could not estimate gas. There are not enough funds in the account, or the receiving contract address would throw an error. Feel free to manually set the gas and proceed. The error message upon sending may be more informative.'), _defineProperty(_es$data, 'ERROR_22', '(error_23) Introduce un nombre de nodo válido Please enter a valid node name'), _defineProperty(_es$data, 'ERROR_23', '(error_24) Introduce una URL válida. Si estás en HTTPS, tu URL debe ser HTTPS Please enter a valid URL. If you are on https, your URL must be https'), _defineProperty(_es$data, 'ERROR_24', '(error_25) Introduce un puerto válido Please enter a valid port.'), _defineProperty(_es$data, 'ERROR_25', '(error_26) Introduce un chain ID válido Please enter a valid chain ID.'), _defineProperty(_es$data, 'ERROR_26', '(error_27) Introduce un ABI válido Please enter a valid ABI.'), _defineProperty(_es$data, 'ERROR_27', '(error_28) Cantidad mínima 0.01 Minimum amount: 0.01. Max amount:'), _defineProperty(_es$data, 'ERROR_28', '(error_29) **Necesitas tu archivo Keystore/JSON y la contraseña** (o clave privada) para acceder a esta cartera en el futuro. Por favor ¡guárdala y respáldala externamente! No hay modo de recuperar una cartera si no la guardas. Lee la [página de ayuda](https://www.myetherwallet.com/#help) para instrucciones. You need this `Keystore File + Password` or the `Private Key` (next page) to access this wallet in the future. '), _defineProperty(_es$data, 'ERROR_29', '(error_30) Introduce un user & password válido. Please enter a valid user and password.'), _defineProperty(_es$data, 'ERROR_30', '(error_31) Introduce un name válido (7+ characters, limited punctuation) Please enter a valid name (7+ characters, limited punctuation)'), _defineProperty(_es$data, 'ERROR_31', '(error_32) Introduce un secret phrase válido. Please enter a valid secret phrase.'), _defineProperty(_es$data, 'ERROR_32', '(error_33) Could not connect to the node. Refresh your page, try a different node (upper right corner), check your firewall settings. If custom node, check your configs.Could not connect to the node. Refresh your page, try a different node (top-right corner), check your firewall settings. If custom node, check your configs.'), _defineProperty(_es$data, 'ERROR_33', '(error_34) The wallet you have unlocked does not match the owner\'s address. The wallet you have unlocked does not match the owner\'s address.'), _defineProperty(_es$data, 'ERROR_34', '(error_35) The name you are attempting to reveal does not match the name you have entered. The name you are attempting to reveal does not match the name you have entered.'), _defineProperty(_es$data, 'ERROR_35', '(error_36) Input address is not checksummed. More infoInput address is not checksummed. What does that mean?'), _defineProperty(_es$data, 'ERROR_36', '(error_37) Enter valid TX hashPlease enter a valid TX hash'), _defineProperty(_es$data, 'ERROR_37', '(error_38) Enter valid hex string (0-9, a-f)Please enter valid hex string. Hex only contains: 0x, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, a, b, c, d, e, f'), _defineProperty(_es$data, 'ERROR_38', '(error_39) Offer must have either price or reserve set to more than 0'), _defineProperty(_es$data, 'ERROR_39', '(error_40) Bid must be more than the specified minimum'), _defineProperty(_es$data, 'GETH_Balance', '(geth-01) Saldo insuficiente. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'GETH_Cheap', '(geth-02) Precio de gas demasiado bajo para aceptación. Gas price too low for acceptance. Try raising the gas price to 21 GWEI via the dropdown in top-right.'), _defineProperty(_es$data, 'GETH_GasLimit', '(geth-03) Sobrepasa el límite de gas del bloque. Exceeds block gas limit. Transaction cost exceeds current gas limit. Limit: (d+), got: (d+). Please lower the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again. [Learn More](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)'), _defineProperty(_es$data, 'GETH_InsufficientFunds', '(geth-04) Fondos no suficientes para gas * precio + valor. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'GETH_IntrinsicGas', '(geth-05) Gas intrínseco demasiado bajo. Intrinsic gas too low. Try raising the gas price to 21 GWEI via the dropdown in top-right or the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again.'), _defineProperty(_es$data, 'GETH_InvalidSender', '(geth-06) Remitente no válido. Invalid sender.'), _defineProperty(_es$data, 'GETH_NegativeValue', '(geth-07) Valor negativo. Negative value.'), _defineProperty(_es$data, 'GETH_Nonce', "(geth-08) Nonce demasiado bajo. This TX's [nonce](https://myetherwallet.github.io/knowledge-base/transactions/what-is-nonce.html) is too low. Try incrementing the nonce by pressing the Generate button again, or [replace the pending transaction](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)."), _defineProperty(_es$data, 'GETH_NonExistentAccount', '(geth-09) La cuenta no existe o tiene un saldo insuficiente. Account does not exist or account balance too low'), _defineProperty(_es$data, 'PARITY_AlreadyImported', "(parity-01) A transaction with the same hash was already imported. It was probably already broadcast. To avoid duplicate transactions, check your address on [etherscan.io](https://etherscan.io) & wait 10 minutes before attempting to send again. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_GasLimitExceeded', "(parity-02) Transaction cost exceeds current gas limit. Limit: (d+), got: (d+). Please lower the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again. [Learn More](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)"), _defineProperty(_es$data, 'PARITY_InsufficientBalance', "(parity-03) Insufficient balance. The account you tried to send transaction from does not have enough funds. If you believe this is in error, try using the 'Send Entire Balance' button, or pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_InsufficientGasPrice', "(parity-04) There is another transaction with same nonce in the queue, or the transaction fee is too low. Try incrementing the nonce by clicking the Generate button again. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_InvalidGasLimit', "(parity-05) Supplied gas limit is beyond limit. Try lowering the gas limit to 21000. [Learn More.](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)"), _defineProperty(_es$data, 'PARITY_LimitReached', "(parity-06) There are too many transactions in the queue. Your transaction was dropped due to limit. Try increasing the gas price. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_Old', "(parity-07) There is already a transaction with this [nonce](https://myetherwallet.github.io/knowledge-base/transactions/what-is-nonce.html). Try incrementing the nonce by pressing the Generate button again, or [replace the pending transaction](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)."), _defineProperty(_es$data, 'PARITY_TooCheapToReplace', "(parity-08) TX Fee is too low. It does not satisfy your node's minimal fee (minimal: (d+), got: (d+)). Try increasing the gas price and/or gas limit. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'SUCCESS_1', 'Dirección válida '), _defineProperty(_es$data, 'SUCCESS_2', 'Cartera descifrada con éxito '), _defineProperty(_es$data, 'SUCCESS_3', 'Your TX has been broadcast to the network. This does not mean it has been mined & sent. During times of extreme volume, it may take 3+ hours to send. 1) Check your TX below. 2) If it is pending for hours or disappears, use the Check TX Status Page to replace. 3) Use [ETH Gas Station](https://ethgasstation.info/) to see what gas price is optimal. 4) Save your TX Hash in case you need it later: '), _defineProperty(_es$data, 'SUCCESS_4', 'Se ha añadido tu cartera '), _defineProperty(_es$data, 'SUCCESS_5', 'Archivo seleccionado '), _defineProperty(_es$data, 'SUCCESS_6', 'You are successfully connected '), _defineProperty(_es$data, 'SUCCESS_7', 'Message Signature Verified'), _defineProperty(_es$data, 'WARN_Send_Link', 'Has llegado aquí a través de un enlace que ya tiene rellenados la dirección, cantidad, gas, campos de datos o el tipo de transacción (modo de envío). Puedes cambiar cualquier parámetro antes de enviar. Desbloquea tu cartera para comenzar. '), _defineProperty(_es$data, 'translate_version', '0.3 '), _defineProperty(_es$data, 'Translator_Desc', 'Gracias a nuestros traductores '), _defineProperty(_es$data, 'TranslatorName_1', 'Ignacio Fernández del Álamo · '), _defineProperty(_es$data, 'TranslatorAddr_1', ''), _defineProperty(_es$data, 'TranslatorName_2', 'Carlos Lizarraga Rodrigo '), _defineProperty(_es$data, 'TranslatorAddr_2', ''), _defineProperty(_es$data, 'TranslatorName_3', ''), _defineProperty(_es$data, 'TranslatorAddr_3', ''), _defineProperty(_es$data, 'TranslatorName_4', ''), _defineProperty(_es$data, 'TranslatorAddr_4', ''), _defineProperty(_es$data, 'TranslatorName_5', ''), _defineProperty(_es$data, 'TranslatorAddr_5', ''), _defineProperty(_es$data, 'HELP_Warning', 'Si creaste una cartera -o- descargaste el repositorio antes del **31 de diciembre de 2015**, por favor comprueba tus carteras y descarga una nueva versión del repositorio. Haz clic para más información. '), _defineProperty(_es$data, 'HELP_Desc', '¿Echas algo en falta? ¿Tienes alguna otra pregunta? [Contacta con nosotros](mailto:support@myetherwallet.com) y no solamente contestaremos tu pregunta, sino que mejoraremos esta página para que sea más útil en el futuro. '), _defineProperty(_es$data, 'HELP_Remind_Title', 'Algunos recordatorios '), _defineProperty(_es$data, 'HELP_Remind_Desc_1', '**Ethereum, MyEtherWallet.com y MyEtherWallet CX, así como algunas de las librerías JavaScript que utilizamos están en desarrollo activo.** Aunque hemos testeado ampliamente y decenas de miles de carteras han sido creadas exitosamente por personas en todo el planeta, siempre existe la remota posibilidad de que ocurra algo inesperado que haga que se pierdan tus ETH. Por favor no inviertas más de lo que estés dispuesto a perder y, por favor, sé cuidadoso. Si algo ocurriera, lo lamentamos, pero **no somos responsables del Ether perdido**. '), _defineProperty(_es$data, 'HELP_Remind_Desc_2', 'MyEtherWallet.com y MyEtherWallet CX no son "carteras web". No estás creando una cuenta ni nos estás entregando tus Ether para que los guardemos. Toda tu información nunca abandona tu equipo o tu navegador. Te facilitamos que puedas crear, guardar y acceder a tu información e interactuar con la blockchain. '), _defineProperty(_es$data, 'HELP_Remind_Desc_3', 'Si no guardas tu clave privada y contraseña, no hay modo alguno de recuperar el acceso a tu cartera o a los fondos que ésta contiene. ¡Haz copias de seguridad en múltiples ubicaciones físicas, no solamente en tu equipo! '), _defineProperty(_es$data, 'HELP_0_Title', '0) Soy nuevo. ¿Qué hago? '), _defineProperty(_es$data, 'HELP_0_Desc_1', 'MyEtherWallet te permite generar nuevas carteras para poder almacenar tu Ether por tu cuenta en lugar de en una casa de cambio. Este proceso tiene lugar por completo en tu equipo, no en nuestros servidores. Por lo tanto, cuando generes una nueva cartera, **eres responsable de hacer una copia de seguridad**. '), _defineProperty(_es$data, 'HELP_0_Desc_2', 'Crear una nueva cartera. '), _defineProperty(_es$data, 'HELP_0_Desc_3', 'Hacer una copia de seguridad de la cartera. '), _defineProperty(_es$data, 'HELP_0_Desc_4', 'Comprobar que tienes acceso a esta nueva cartera y has guardado correctamente toda la información necesaria. '), _defineProperty(_es$data, 'HELP_0_Desc_5', 'Transferir Ether a la nueva cartera. '), _defineProperty(_es$data, 'HELP_1_Title', '1) ¿Cómo creo una nueva cartera? '), _defineProperty(_es$data, 'HELP_1_Desc_1', 'Ir a la página "Generar cartera". '), _defineProperty(_es$data, 'HELP_1_Desc_2', 'Ir a la página "Añadir cartera" y seleccionar "Generar nueva cartera" '), _defineProperty(_es$data, 'HELP_1_Desc_3', 'Introducir una contraseña fuerte. Si crees que puedes olvidarla, guárdala en un lugar seguro. Necesitarás esta contraseña para enviar transacciones. '), _defineProperty(_es$data, 'HELP_1_Desc_4', 'Haz clic en "GENERAR". '), _defineProperty(_es$data, 'HELP_1_Desc_5', 'Ahora se ha generado tu cartera. '), _defineProperty(_es$data, 'HELP_2a_Title', '¿Cómo guardo/respaldo mi cartera? '), _defineProperty(_es$data, 'HELP_2a_Desc_1', 'Deberías siempre respaldar tu cartera externamente y en varias ubicaciones físicas (como una unidad USB o en una hoja de papel). '), _defineProperty(_es$data, 'HELP_2a_Desc_2', 'Guardar la dirección. Puedes mantenerla en privado o compartirla con otras personas. De ese modo, otras personas te podrán enviar ether. '), _defineProperty(_es$data, 'HELP_2a_Desc_3', 'Guarda las versiones de tu clave privada. No la compartas con nadie. ¡Tu clave privada es necesaria cuando quieras tener acceso a tu ether para enviarlo! Hay tres tipos de claves privadas: '), _defineProperty(_es$data, 'HELP_2a_Desc_4', 'Pon tu dirección, las versiones de la clave privada y la versión PDF de tu cartera en papel en una carpeta. Guárdala en tu equipo y en una unidad USB. '), _defineProperty(_es$data, 'HELP_2a_Desc_5', 'Imprime la cartera si dispones de impresora. En caso contrario, escribe tu clave privada y tu dirección en una hoja de papel. Almacénalas en un lugar seguro y separado de tu equipo y de la unidad USB. '), _defineProperty(_es$data, 'HELP_2a_Desc_6', 'Recuerda, debes evitar la pérdida de las claves y la contraseña frente a una pérdida o fallo en tu unidad de disco duro, unidad USB u hoja de papel. Debes tener en cuenta también la posibilidad de pérdida o daño en una zona amplia (piensa en un incendio o una inundación). '), _defineProperty(_es$data, 'HELP_2b_Title', '2b) ¿Cómo almaceno con seguridad/sin conexión/en frío con MyEtherWallet? '), _defineProperty(_es$data, 'HELP_2b_Desc_1', 'Ve a nuestro github: [https://github.com/kvhnuke/etherwallet/releases/latest](https://github.com/kvhnuke/etherwallet/releases/latest). '), _defineProperty(_es$data, 'HELP_2b_Desc_2', 'Haz clic en `etherwallet-vX.X.X.X.zip` en la parte inferior. '), _defineProperty(_es$data, 'HELP_2b_Desc_3', 'Mueve el ZIP a un equipo aislado de internet (airgapped). '), _defineProperty(_es$data, 'HELP_2b_Desc_4', 'Descomprímelo y haz doble clic en `index.html`. '), _defineProperty(_es$data, 'HELP_2b_Desc_5', 'Genera una cartera con una contraseña fuerte. '), _defineProperty(_es$data, 'HELP_2b_Desc_6', 'Guarda la dirección. Guarda versiones de la clave privaa. Guarda la contraseña si crees que es posible que no la recuerdes siempre en el futuro.. '), _defineProperty(_es$data, 'HELP_2b_Desc_7', 'Almacena los papeles / USBs en múltiples ubicaciones separadas físicamente. '), _defineProperty(_es$data, 'HELP_2b_Desc_8', 'Ve a la página "Ver Información de las Carteras" y teclea to clave privada / contraseña para asegurarte de que son correctos y puedes acceder a tu cartera. Comprueba que la dirección que has escrito coincide. '), _defineProperty(_es$data, 'HELP_3_Title', '3) ¿Cómo verifico que tengo acceso a mi nueva cartera? '), _defineProperty(_es$data, 'HELP_3_Desc_1', '**Antes de enviar ether a tu nueva cartera,** deberías asegurarte de que tienes acceso a ésta. '), _defineProperty(_es$data, 'HELP_3_Desc_2', 'Ve a la página "Ver Información de las Carteras". '), _defineProperty(_es$data, 'HELP_3_Desc_3', 'Ve a la página "Ver Información de las Carteras" de MyEtherWallet.com. '), _defineProperty(_es$data, 'HELP_3_Desc_4', 'Selecciona tu archivo de cartera -o- tu clave privada y desloquea tu cartera. '), _defineProperty(_es$data, 'HELP_3_Desc_5', 'Si la cartera está cifrada aparecerá automáticamente una caja de texto. Introduce la contraseña. '), _defineProperty(_es$data, 'HELP_3_Desc_6', 'Haz clic en el botón "Desbloquear cartera". '), _defineProperty(_es$data, 'HELP_3_Desc_7', 'Debería mostrarse la información de tu cartera. Puedes encontrar la dirección de tu cuenta al lado de un icono circular de colores. Este icono es una representación visual de tu dirección. Asegúrate de que esta dirección coincide con la dirección que has guardado en tu archivo de texto y con la que está en tu cartera de papel. '), _defineProperty(_es$data, 'HELP_3_Desc_8', 'Si planeas guardar una cantidad elevada de ether, te recomendamos que primero envíes una cantidad pequeña de ether desde tu nueva cartera antes de ingresar una cantidad elevada. Envía 0.001 ether a tu nueva cartera, accede a tu cartera, envía los 0.001 ether desde tu cartera a otra dirección y asegúrate de que todo funciona bien. '), _defineProperty(_es$data, 'HELP_4_Title', '4) ¿Cómo envío ether de una cartera a otra? '), _defineProperty(_es$data, 'HELP_4_Desc_1', 'Si planeas mover una gran cantidad de ether, deberías probar primero a enviar una pequeña cantidad a tu cartera para asegurarte de que todo funciona según lo esperado. '), _defineProperty(_es$data, 'HELP_4_Desc_2', 'Ve a la página "Enviar Ether y Tokens". '), _defineProperty(_es$data, 'HELP_4_Desc_3', 'Selecciona tu archivo de cartera -o- tu clave privada y desbloquea tu cartera. '), _defineProperty(_es$data, 'HELP_4_Desc_4', 'Si la cartera está cifrada aparecerá automáticamente una caja de texto. Introduce la contraseña. '), _defineProperty(_es$data, 'HELP_4_Desc_5', 'Haz clic en el botón "Desbloquear cartera". '), _defineProperty(_es$data, 'HELP_4_Desc_6', 'Introduce la dirección a la que deseas enviar ether en el campo "Dirección de destino:". '), _defineProperty(_es$data, 'HELP_4_Desc_7', 'Introduce la cantidad que deseas enviar. También puedes hacer clic en "Enviar todo el saldo" si quieres enviar todo el saldo de la cartera. '), _defineProperty(_es$data, 'HELP_4_Desc_9', 'Haz clic en "Generar transacción". '), _defineProperty(_es$data, 'HELP_4_Desc_10', 'Aparecerán dos campos más. Esto es tu navegador generando la transacción. '), _defineProperty(_es$data, 'HELP_4_Desc_11', 'Haz clic en el botón azul "Enviar transacción" que está inmediatamente debajo. '), _defineProperty(_es$data, 'HELP_4_Desc_12', 'Aparecerá un cuadro emergente. Verifica que la cantidad y la dirección a la que estás enviando son correctos. Entonces, haz clic en el botón "Sí, estoy seguro. Hacer la transacción.". '), _defineProperty(_es$data, 'HELP_4_Desc_13', 'Se enviará la transacción y se mostrará el ID de transacción. Puedes hacer clic en el ID de transacción para verla en la cadena de bloques. '), _defineProperty(_es$data, 'HELP_4CX_Title', '4) ¿Cómo envío ether utilizando MyEtherWallet CX? '), _defineProperty(_es$data, 'HELP_4CX_Desc_1', 'Antes de nada, necesitas añadir una cartera. Una vez hecho, tienes dos opciones: la función "Enviar" del icono de la extensión de Chrome o la página "Enviar Ether y Tokens". '), _defineProperty(_es$data, 'HELP_4CX_Desc_2', 'Envío: '), _defineProperty(_es$data, 'HELP_4CX_Desc_3', 'Haz clic en el icono de la extensión de Chrome. '), _defineProperty(_es$data, 'HELP_4CX_Desc_4', 'Haz clic en el botón Click the "Enviar" button. '), _defineProperty(_es$data, 'HELP_4CX_Desc_5', 'Elige la cartera desde la que quieres enviar. '), _defineProperty(_es$data, 'HELP_4CX_Desc_6', 'Introduce la dirección a la que deseas enviar en el campo "Dirección de destino:". '), _defineProperty(_es$data, 'HELP_4CX_Desc_7', 'Introduce la cantidad que deseas enviar. También puedes hacer clic en "Enviar todo el saldo" si quieres enviar todo el saldo de la cartera. '), _defineProperty(_es$data, 'HELP_4CX_Desc_8', 'Haz clic en "Enviar transacción". '), _defineProperty(_es$data, 'HELP_4CX_Desc_9', 'Comprueba que la dirección y la cantidad que estás enviando son correctos. '), _defineProperty(_es$data, 'HELP_4CX_Desc_10', 'Introduce la contraseña para la cartera. '), _defineProperty(_es$data, 'HELP_4CX_Desc_11', 'Haz clic en "Enviar transacción". '), _defineProperty(_es$data, 'HELP_4CX_Desc_12', 'Utilizando la página "Enviar Ether y Tokens" '), _defineProperty(_es$data, 'HELP_5_Title', '5) ¿Cómo ejecuto MyEtherWallet.com sin conexión/localmente? '), _defineProperty(_es$data, 'HELP_5_Desc_1', 'Puedes ejecutar MyEtherWallet.com en tu equipo en lugar de desde los servidores de GitHub. Puedes generar una cartera totalmente sin conexión y enviar transacciones desde la página "Transacción sin conexión". '), _defineProperty(_es$data, 'HELP_5_Desc_7', 'MyEtherWallet.com is now running entirely on your computer. '), _defineProperty(_es$data, 'HELP_5_Desc_8', 'Por si no tienes costumbre, es necesario guardar la carpeta completa para ejecutar la página web, no solamente `index.html`. No modifiques ni muevas nada dentro de la carpeta. Si estás guardando una copia del repositorio MyEtherWallet para el futuro, recomendamos guardar únicamente el fichero ZIP para poder estar seguro de que el contenido permanezca intacto. '), _defineProperty(_es$data, 'HELP_5_Desc_9', 'Debido a que estamos constantemente actualizando MyEtherWallet.com, recomendamos que actualices periódicamente tu versión guardada del repositorio. '), _defineProperty(_es$data, 'HELP_5CX_Title', '5) ¿Cómo puedo instalar esta extensión desde el repositorio en lugar de desde la Chrome Store? '), _defineProperty(_es$data, 'HELP_5CX_Desc_2', 'Click on `chrome-extension-vX.X.X.X.zip` and unzip it. '), _defineProperty(_es$data, 'HELP_5CX_Desc_3', 'Go to Google Chrome and find you settings (in the menu in the upper right). '), _defineProperty(_es$data, 'HELP_5CX_Desc_4', 'Click "Extensions" on the left. '), _defineProperty(_es$data, 'HELP_5CX_Desc_5', 'Check the "Developer Mode" button at the top of that page. '), _defineProperty(_es$data, 'HELP_5CX_Desc_6', 'Click the "Load unpacked extension..." button. '), _defineProperty(_es$data, 'HELP_5CX_Desc_7', 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select". '), _defineProperty(_es$data, 'HELP_5CX_Desc_8', 'The extension should now show up in your extensions and in your Chrome Extension bar. '), _defineProperty(_es$data, 'HELP_7_Title', '7) ¿Cómo envío tokens y añado tokens personalizados? '), _defineProperty(_es$data, 'HELP_7_Desc_0', '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token. '), _defineProperty(_es$data, 'HELP_7_Desc_1', 'Navigate to the "Enviar ether y tokens" page. '), _defineProperty(_es$data, 'HELP_7_Desc_2', 'Desbloquea tu cartera. '), _defineProperty(_es$data, 'HELP_7_Desc_3', 'Enter the address you would like to send to in the "To Address:" field. '), _defineProperty(_es$data, 'HELP_7_Desc_4', 'Enter the amount you would like to send. '), _defineProperty(_es$data, 'HELP_7_Desc_5', 'Select which token you would like to send. '), _defineProperty(_es$data, 'HELP_7_Desc_6', 'If you do not see the token listed: '), _defineProperty(_es$data, 'HELP_7_Desc_7', 'Click "Custom". '), _defineProperty(_es$data, 'HELP_7_Desc_8', 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist. '), _defineProperty(_es$data, 'HELP_7_Desc_9', 'Click "Save". '), _defineProperty(_es$data, 'HELP_7_Desc_10', 'You can now send that token as well as see it\'s balance in the sidebar. '), _defineProperty(_es$data, 'HELP_7_Desc_11', 'Click "Generate Transaction". '), _defineProperty(_es$data, 'HELP_7_Desc_12', 'A couple more fields will appear. This is your browser generating the transaction. '), _defineProperty(_es$data, 'HELP_7_Desc_13', 'Click the blue "Send Transaction" button below that. '), _defineProperty(_es$data, 'HELP_7_Desc_14', 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button. '), _defineProperty(_es$data, 'HELP_7_Desc_15', 'The transaction will be submitted. The TX Hash will display. You can click that TX Hash to see it on the blockchain. '), _defineProperty(_es$data, 'HELP_8_Title', '8) ¿Qué ocurre si vuestro sitio web deja de funcionar? '), _defineProperty(_es$data, 'HELP_8_Desc_1', 'MyEtherWallet no es una cartera web. No tienes un login y nunca se graba nada en nuestros servidores. You don\'t have a login and nothing ever gets saved to our servers. Simplemente es una interfaz que te permite interactuar con la cadena de bloques. '), _defineProperty(_es$data, 'HELP_8_Desc_2', 'Si MyEtherWallet.com desapareciera, tendrías que encontrar otra manera de poder hacer lo que haces con nosotros (como por ejemplo obtener geth o Ethereum Wallet / Mist). Pero no necesitarías retirar tus ether de MyEtherWallet porque no están en MyEtherWallet. Están en la cartera que hayas generado a través de nuestro sitio. '), _defineProperty(_es$data, 'HELP_8_Desc_3', 'Puedes importar tu clave privada sin cifrar y tus archivos en formato Geth/Mist (cifrados) directamente en geth / Ethereum Wallet / Mist con mucha facilidad actualmente. Ver más abajo la pregunta #12. '), _defineProperty(_es$data, 'HELP_8_Desc_4', 'Además, la probabilidad de que cerremos MyEtherWallet es casi nula. No nos cuesta prácticamente nada mantenerlo ya que no almacenamos ninguna información. Si borramos el dominio, continúa estando disponible y siempre lo estará en [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puedes descargar desde ahí el archivo ZIP y ejecutarlo localmente. '), _defineProperty(_es$data, 'HELP_8CX_Title', '8) ¿Qué ocurre si MyEtherWallet CX desaparece? '), _defineProperty(_es$data, 'HELP_8CX_Desc_1', 'En primer lugar, los datos se guardan en tu equipo, no en nuestros servidores. Sabemos que puede parecer confuso, pero si miras nuestra extensión de Chrome, NO estás mirando a algo almacenado en nuestros servidores en alguna parte - todo se guarda en tu equipo. '), _defineProperty(_es$data, 'HELP_8CX_Desc_2', 'Dicho esto, es **muy importante** que respaldes toda tu información para todas las nuevas carteras generadas con MyEtherWallet CX. De este modo, si algo le ocurre a MyEtherWallet CX o a tu equipo, seguirás teniendo toda la información necesaria para poder acceder a tus ether. Ver la pregunta #2a sobre cómo respaldar tus carteras. '), _defineProperty(_es$data, 'HELP_8CX_Desc_3', 'Si por algún motivo MyEtherWallet CX desaparece de Chrome Store, puedes encontrar el código fuente en Github y cargarlo manualmente. Ver #5 más arriba. '), _defineProperty(_es$data, 'HELP_9_Title', '9) Is the "Enviar ether y tokens" page offline? '), _defineProperty(_es$data, 'HELP_9_Desc_1', 'No. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times. '), _defineProperty(_es$data, 'HELP_10_Title', '10) ¿Cómo hago una transacción sin conexión? '), _defineProperty(_es$data, 'HELP_10_Desc_1', 'Navigate to the "Offline Transaction" page via your online computer. '), _defineProperty(_es$data, 'HELP_10_Desc_2', 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price. '), _defineProperty(_es$data, 'HELP_10_Desc_3', 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send. '), _defineProperty(_es$data, 'HELP_10_Desc_4', 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1. '), _defineProperty(_es$data, 'HELP_10_Desc_5', 'Enter the "NONCE" as it was displayed to you on your online computer in step #1. '), _defineProperty(_es$data, 'HELP_10_Desc_6', 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you. '), _defineProperty(_es$data, 'HELP_10_Desc_7', 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format. '), _defineProperty(_es$data, 'HELP_10_Desc_8', 'Select your wallet file -or- your private key and unlock your wallet. '), _defineProperty(_es$data, 'HELP_10_Desc_9', 'Press the "GENERATE SIGNED TRANSACTION" button. '), _defineProperty(_es$data, 'HELP_10_Desc_10', 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. '), _defineProperty(_es$data, 'HELP_10_Desc_11', 'On your online computer, paste the signed transaction into the text field in step #3 and click "Enviar Ether y Tokens". This will broadcast your transaction. '), _defineProperty(_es$data, 'HELP_12_Title', '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist? '), _defineProperty(_es$data, 'HELP_12_Desc_1', 'Using an Geth/Mist JSON file from MyEtherWallet v2+.... '), _defineProperty(_es$data, 'HELP_12_Desc_2', 'Go to the "View Wallet Info" page. '), _defineProperty(_es$data, 'HELP_12_Desc_3', 'Unlock your wallet using your **encrypted** private key or JSON file. '), _defineProperty(_es$data, 'HELP_12_Desc_4', 'Go to the "My Wallets" page. '), _defineProperty(_es$data, 'HELP_12_Desc_5', 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. '), _defineProperty(_es$data, 'HELP_12_Desc_6', 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file. '), _defineProperty(_es$data, 'HELP_12_Desc_7', 'Open the Ethereum Wallet application. '), _defineProperty(_es$data, 'HELP_12_Desc_8', 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts" '), _defineProperty(_es$data, 'HELP_12_Desc_9', 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder. '), _defineProperty(_es$data, 'HELP_12_Desc_10', 'Your account should show up immediately under "Accounts." '), _defineProperty(_es$data, 'HELP_12_Desc_11', 'Using your unencrypted private key... '), _defineProperty(_es$data, 'HELP_12_Desc_12', 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page. '), _defineProperty(_es$data, 'HELP_12_Desc_13', 'Select your wallet file -or- enter/paste your private key to unlock your wallet. '), _defineProperty(_es$data, 'HELP_12_Desc_14', 'Copy Your Private Key (unencrypted). '), _defineProperty(_es$data, 'HELP_12_Desc_15', 'If you are on a Mac: '), _defineProperty(_es$data, 'HELP_12_Desc_15b', 'If you are on a PC: '), _defineProperty(_es$data, 'HELP_12_Desc_16', 'Open Text Edit and paste this private key. '), _defineProperty(_es$data, 'HELP_12_Desc_17', 'Go to the menu bar and click "Format" -> "Make Plain Text". '), _defineProperty(_es$data, 'HELP_12_Desc_18', 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog. '), _defineProperty(_es$data, 'HELP_12_Desc_19', 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_20', 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. '), _defineProperty(_es$data, 'HELP_12_Desc_21', 'After successful import, delete `nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_22', 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". '), _defineProperty(_es$data, 'HELP_12_Desc_23', 'Open Notepad & paste the private key '), _defineProperty(_es$data, 'HELP_12_Desc_24', 'Save the file as `nothing_special_delete_me.txt` at `C:` '), _defineProperty(_es$data, 'HELP_12_Desc_25', 'Run the command, `geth account import C:\\nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_26', 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. '), _defineProperty(_es$data, 'HELP_12_Desc_27', 'After successful import, delete `nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_28', 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". '), _defineProperty(_es$data, 'HELP_13_Title', '13) What does "Insufficient funds. Account you try to send transaction from does not have enough funds. Required XXXXXXXXXXXXXXXXXXX and got: XXXXXXXXXXXXXXXX." Mean? '), _defineProperty(_es$data, 'HELP_13_Desc_1', 'This means you do not have enough Ether in your account to cover the cost of gas. Each transaction (including token and contract transactions) require gas and that gas is paid in Ether. The number displayed is the amount required to cover the cost of the transaction in Wei. Take that number, divide by `1000000000000000000`, and subtract the amount of Ether you were trying to send (if you were attempting to send Ether). This will give you the amount of Ether you need to send to that account to make the transaction. '), _defineProperty(_es$data, 'HELP_14_Title', '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe? '), _defineProperty(_es$data, 'HELP_14_Desc_1', 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto). '), _defineProperty(_es$data, 'HELP_15_Title', '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan) '), _defineProperty(_es$data, 'HELP_15_Desc_1', 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it. '), _defineProperty(_es$data, 'HELP_16_Title', '16) How do I check the balance of my account? '), _defineProperty(_es$data, 'HELP_16_Desc_1', 'You can use a blockchain explorer like [etherscan.io](https://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](https://etherscan.io/address/0xDECAF9CD2367cdbb726E904cD6397eDFcAe6068D) looks like on etherscan.io '), _defineProperty(_es$data, 'HELP_17_Title', '17) Why isn\'t my balance showing up when I unlock my wallet? '), _defineProperty(_es$data, 'HELP_17_Desc_1', 'This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io '), _defineProperty(_es$data, 'HELP_18_Title', '18) Where is my geth wallet file? '), _defineProperty(_es$data, 'HELP_19_Title', '19) Where is my Mist wallet file? '), _defineProperty(_es$data, 'HELP_19_Desc_1', 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored. '), _defineProperty(_es$data, 'HELP_20_Title', '20) Where is my pre-sale wallet file? '), _defineProperty(_es$data, 'HELP_20_Desc_1', 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale. '), _defineProperty(_es$data, 'HELP_21_Title', '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? '), _defineProperty(_es$data, 'HELP_21_Desc_1', 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no. '), _defineProperty(_es$data, 'HELP_21_Desc_2', 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts. '), _defineProperty(_es$data, 'HELP_21_Desc_3', 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems. '), _defineProperty(_es$data, 'HELP_21_Desc_4', 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password. '), _defineProperty(_es$data, 'HELP_21_Desc_5', 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match. '), _defineProperty(_es$data, 'HELP_21_Desc_6', 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion. '), _defineProperty(_es$data, 'HELP_21_Desc_7', '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space. '), _defineProperty(_es$data, 'HELP_21_Desc_8', 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day. '), _defineProperty(_es$data, 'HELP_SecCX_Title', 'Seguridad - MyEtherWallet CX '), _defineProperty(_es$data, 'HELP_SecCX_Desc_1', '¿Dónde está guardando mi información esta extensión? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_2', 'La información que guardas en esta extensión de Chrome se guarda por medio de [chrome.storage](http://chrome.storage/). - este es el mismo lugar en el que se guardan tus contraseñas cuando guardas tus contraseñas en Chrome. '), _defineProperty(_es$data, 'HELP_SecCX_Desc_3', '¿Qué información se guarda? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_4', 'La dirección, alias y clave privada se guardan en chrome.storage. La clave privada se cifra utilizando la contraseña que introdujiste al añadir la cartra. El alias y la dirección de la cartera no están cifrados. '), _defineProperty(_es$data, 'HELP_SecCX_Desc_5', '¿Por qué no se cifran el alias y la dirección de la cartera? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_6', 'Si cifráramos estos ítems, sería necesario que introduzcas una contraseña cada vez que quisieras comprobar el saldo de tu cuenta o vizualizar los alias. Si esto te preocupa, te recomendamos que utilices MyEtherWallet.com en lugar de esta extensión de Chrome. '), _defineProperty(_es$data, 'HELP_Sec_Title', 'Seguridad '), _defineProperty(_es$data, 'HELP_Sec_Desc_1', 'Si una de tus primeras preguntas es "¿Por qué debería confiar en estas personas?, se trata de algo bueno. Esperamos que lo que sigue te sirva de ayuda para disminuir tus preocupaciones. '), _defineProperty(_es$data, 'HELP_Sec_Desc_2', 'Hemos estado funcionando desde agosto de 2015. Si buscas ["myetherwallet" en reddit](https://www.reddit.com/search?q=myetherwallet), puedes encontrar numerosas personas que nos utilizan con gran éxito. '), _defineProperty(_es$data, 'HELP_Sec_Desc_3', 'No vamos a quitarte tu dinero ni a robar tus claves privadas. No hay código malicioso en este sitio. De hecho, las páginas "Generar Cartera" se ejecutan por completo en el cliente. Esto significa que todo el código se ejecuta en ** tu ordenador** y nunca se graba o se transmite a ningún lugar. '), _defineProperty(_es$data, 'HELP_Sec_Desc_4', 'Comprueba la URL -- Este sitio se sirve a través de GitHub y puedes ver el código fuente aquí: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) a [https://www.myetherwallet.com](https://www.myetherwallet.com). '), _defineProperty(_es$data, 'HELP_Sec_Desc_5', 'Para generar carteras, puedes descargar el [código fuente](https://github.com/kvhnuke/etherwallet/releases/latest). Ver #5 más arriba. '), _defineProperty(_es$data, 'HELP_Sec_Desc_6', 'Haz una prueba y observa qué actividad de red ocurre. La manera más fácil de hacer esto es hacer clic con el botón derecho en la página y hacer clic en "inspeccionar elemento". Ve a la pestaña "Red". Genera una cartera de prueba. Verás que no hay actividad de red. Puede que veas algo que aparece como data:image/gif y data:image/png. Se trata de los códigos QR generándose en tu ordenador y por tu ordenador. No se ha transferido ni un solo byte. '), _defineProperty(_es$data, 'HELP_Sec_Desc_8', 'Si no te encuentras cómodo utilizando esta herramienta, no la utilices bajo ningún concepto. Hemos creado esta herramienta como una manera útil para que la gente pueda generar carteras y hacer transacciones sin tener que utilizar la línea de comandos o ejecutar un nodo completo. De nuevo, por favor contáctanos si tienes inquietudes y responderemos lo más pronto posible. ¡Gracias! '), _defineProperty(_es$data, 'HELP_FAQ_Title', 'Más respuestas útiles a preguntas frecuentes '), _defineProperty(_es$data, 'HELP_Contact_Title', 'Maneras de contactar con nosotros'), _es$data); + ONBOARD_welcome_title: 'Bienvenido a MyEtherWallet.com', + ONBOARD_welcome_content__1: 'Tómese su tiempo para entender esto por su propia seguridad. 🙏', + ONBOARD_welcome_content__2: 'Sus fondos serán robados si no hace caso de estas advertencias.', + ONBOARD_welcome_content__3: 'Sabemos que este clic es algo molesto. Lo sentimos.', + ONBOARD_welcome_content__4: '¿Qué es MEW? ', + ONBOARD_welcome_content__5: 'MyEtherWallet es una interfaz gratuita, de código abierto, del lado del cliente.', + ONBOARD_welcome_content__6: 'Te permitimos interactuar directamente con la cadena de bloques mientras permaneces en control total de tus teclas & tus fondos', + ONBOARD_welcome_content__7: '**Usted** y **solo usted** son responsables de su seguridad.', + ONBOARD_welcome_content__8: 'No podemos recuperar sus fondos ni congelar su cuenta si visita un sitio de phishing o pierde su clave privada.', + ONBOARD_bank_title: 'MyEtherWallet no es un banco', + ONBOARD_bank_content__1: 'Cuando abre una cuenta en un banco o exchange, crean una cuenta para usted en su sistema.', + ONBOARD_bank_content__2: 'El banco realiza un seguimiento de su información personal, contraseñas de cuenta, saldos, transacciones y, en última instancia, su dinero.', + ONBOARD_bank_content__3: 'El banco cobra tarifas para administrar su cuenta y proporcionar servicios, como el reembolso de transacciones cuando le roban su tarjeta.', + ONBOARD_bank_content__4: 'El banco le permite escribir un cheque o cargar su tarjeta de débito para enviar dinero, conectarse a Internet para verificar su saldo, restablecer su contraseña y obtener una nueva tarjeta de débito si la pierde.', + ONBOARD_bank_content__5: 'Usted tiene una cuenta *con el banco o exchange* y ellos deciden cuánto dinero puede enviar, dónde puede enviarlo y cuánto tiempo puede conservar un depósito sospechoso. Todo por una comisión.', + ONBOARD_welcome_title__alt: 'Introducción', + ONBOARD_interface_title: 'MyEtherWallet es una Interfaz', + ONBOARD_interface_content__1: 'Cuando crea una cuenta en MyEtherWallet está generando un conjunto criptográfico de números: su clave privada y su clave pública (dirección).', + ONBOARD_interface_content__2: 'El manejo de sus llaves ocurre completamente en su computadora, dentro de su navegador.', + ONBOARD_interface_content__3: 'Nunca transmitimos, recibimos ni almacenamos su clave privada, contraseña u otra información de cuenta.', + ONBOARD_interface_content__4: 'No cobramos una comisión de transacción.', + ONBOARD_interface_content__5: 'Simplemente está utilizando nuestra **interfaz** para interactuar **directamente con la cadena de bloques**.', + ONBOARD_interface_content__6: 'Si envía su *clave pública (dirección)* a alguien, pueden enviarle ETH o tokens. 👍', + ONBOARD_interface_content__7: 'Si envía su *clave privada* a alguien, ahora tiene el control total de su cuenta. 👎', + ONBOARD_bank_title__alt: 'MEW no es un banco', + ONBOARD_blockchain_title__alt: '¿Qué es una Blockchain?', + ONBOARD_blockchain_skip: 'Ya sé lo que es una cadena de bloques...', + ONBOARD_blockchain_title: 'Espera, ¿Qué es una Blockchain?', + ONBOARD_blockchain_content__1: 'El blockchain es como una gran hoja de cálculo global descentralizada.', + ONBOARD_blockchain_content__2: 'Realiza un seguimiento de quién envió cuántas monedas a quién, y cuál es el saldo de cada cuenta.', + ONBOARD_blockchain_content__3: 'Es almacenado y mantenido por miles de personas (mineros) en todo el mundo que tienen computadoras especiales.', + ONBOARD_blockchain_content__4: 'Los bloques en el blockchain se componen de todas las transacciones individuales enviadas desde MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity y en cualquier otro lugar.', + ONBOARD_blockchain_content__5: 'Cuando vea su saldo en MyEtherWallet.com o vea sus transacciones en [etherscan.io] (https://etherscan.io), verá datos en la cadena de bloques, no en nuestros sistemas personales.', + ONBOARD_blockchain_content__6: 'De nuevo: **no somos un banco**.', + ONBOARD_interface_title__alt: 'MEW es una Interfaz', + ONBOARD_why_title__alt: 'Pero ... ¿por qué importa esto?', + ONBOARD_why_title: '¿Por qué me haces leer todo esto?', + ONBOARD_why_content__1: 'Porque necesitamos que entiendas que **no podemos** ...', + ONBOARD_why_content__2: 'Acceder a tu cuenta o enviar sus fondos por usted X.', + ONBOARD_why_content__3: 'Recupere o cambie su clave privada.', + ONBOARD_why_content__4: 'Recupera o restablece tu contraseña.', + ONBOARD_why_content__5: 'Invertir, cancelar o reembolsar transacciones.', + ONBOARD_why_content__6: 'Congelar cuentas.', + ONBOARD_why_content__7: '**Usted** y **solo usted** son responsables de su seguridad.', + ONBOARD_why_content__8: 'Sea diligente para mantener su clave privada y contraseña seguras. A veces, su clave privada se denomina frase mnemotécnica, archivo de almacén de claves, archivo UTC, archivo JSON, archivo de cartera.', + ONBOARD_why_content__9: 'Si pierde su clave privada o contraseña, nadie puede recuperarla.', + ONBOARD_why_content__10: 'Si ingresa su clave privada en un sitio web de phishing, tendrá **todos sus fondos tomados**.' +}, _defineProperty(_es$data, 'ONBOARD_blockchain_title__alt', '¿Qué es una Blockchain?'), _defineProperty(_es$data, 'ONBOARD_point_title__alt', '¿De qué sirve MEW entonces?'), _defineProperty(_es$data, 'ONBOARD_whymew_title', 'Si MyEtherWallet no puede hacer esas cosas, ¿para qyé sirve?'), _defineProperty(_es$data, 'ONBOARD_whymew_content__1', 'Porque ese es el punto de la descentralización y la cadena de bloques.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__2', 'No tiene que depender de su banco, gobierno u otra persona cuando desee mover sus fondos.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__3', 'No tiene que depender de la seguridad de un exchange o banco para mantener sus fondos seguros.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__4', 'Si no encuentras estas cosas valiosas, pregúntate por qué crees que las cadenas de bloques y las criptomonedas son valiosas.😉'), _defineProperty(_es$data, 'ONBOARD_whymew_content__5', 'Si no te gusta como suena esto, considera usar [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.'), _defineProperty(_es$data, 'ONBOARD_whymew_content__6', 'Si tiene miedo pero quiere usar MEW, [consiga una billetera de hardware](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.'), _defineProperty(_es$data, 'ONBOARD_why_title__alt', 'Pero.. ¿por qué?'), _defineProperty(_es$data, 'ONBOARD_secure_title', 'Cómo protegerse y proteger sus fondos'), _defineProperty(_es$data, 'ONBOARD_secure_1_title', 'Cómo protegerse de los phishers'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__1', 'Phishers le envía un mensaje con un enlace a un sitio web que se parece a MyEtherWallet, EtherDelta, Paypal o a su banco, pero no es el sitio web real. Le roban su información y luego le roban su dinero.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__2', 'Instala [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__3', 'Siempre revisa la URL: `https://www.myetherwallet.com`.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__4', 'Siempre asegúrese de que la barra de URL tenga `MYETHERWALLET INC` en verde.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__5', 'No confíe en los mensajes o enlaces que se le envían al azar por correo electrónico, Slack, Reddit, Twitter, etc.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__6', 'Siempre navegue directamente a un sitio antes de ingresar información. No ingrese información después de hacer clic en un enlace de un mensaje o correo electrónico.'), _defineProperty(_es$data, 'ONBOARD_secure_1_content__7', '[Instala un AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).'), _defineProperty(_es$data, 'ONBOARD_point_title__alt_2', '¿Para qué sirve?'), _defineProperty(_es$data, 'ONBOARD_secure_2_title', 'Cómo protegerse de las estafas'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__1', 'La gente intentará conseguir que les des dinero a cambio de nada.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__2', 'Si es demasiado bueno para ser verdad, probablemente lo sea.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__3', 'Investigue antes de enviar dinero a alguien o algún proyecto. Busque información en una variedad de sitios web y foros. Sé cauteloso.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__4', 'Haga preguntas cuando no entiende algo o no parece correcto.'), _defineProperty(_es$data, 'ONBOARD_secure_2_content__5', 'No permita que el miedo, el FUD o el FOMO ganen al sentido común. Si algo es muy urgente, pregúntese "¿por qué?". Puede ser para crear FOMO o evitar que investigue.'), _defineProperty(_es$data, 'ONBOARD_secure_3_title__alt', 'Phuck Phishers'), _defineProperty(_es$data, 'ONBOARD_secure_3_title', 'Cómo protegerse de la pérdida'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__1', 'Si pierde su clave privada o contraseña, se perderá para siempre. No lo pierdas'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__2', 'Haga una copia de seguridad de su clave privada y contraseña. NO lo guarde solo en su computadora. Imprima en un pedazo de papel o guárdelo en un dispositivo USB.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__3', 'Guarde este papel o unidad USB en una ubicación física diferente. Una copia de seguridad no es útil si es destruida por un incendio o una inundación junto con su computadora portátil.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__4', 'No almacene su clave privada en Dropbox, Google Drive u otro almacenamiento en la nube. Si esa cuenta se ve comprometida, sus fondos serán robados.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__5', 'Si tiene más de 1 semana de valor de criptomoneda, obtenga una billetera de hardware. No hay excusas. Vale la pena. Lo prometo.'), _defineProperty(_es$data, 'ONBOARD_secure_3_content__6', '[¡Aún más consejos de seguridad!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)'), _defineProperty(_es$data, 'ONBOARD_secure_2_title__alt_2', 'Timo estafas'), _defineProperty(_es$data, 'ONBOARD_final_title__alt', '¡Un clic más y listo! 🤘'), _defineProperty(_es$data, 'ONBOARD_final_title', 'Muy bien, ¡ya terminé de sermonearte!'), _defineProperty(_es$data, 'ONBOARD_final_subtitle', 'Perdón por ser así. ¡Adelante!'), _defineProperty(_es$data, 'ONBOARD_final_content__1', 'Crear una billetera'), _defineProperty(_es$data, 'ONBOARD_final_content__2', 'Obtener una billetera hardware'), _defineProperty(_es$data, 'ONBOARD_final_content__3', 'Cómo configurar MEW + MetaMask'), _defineProperty(_es$data, 'ONBOARD_final_content__4', 'Cómo ejecutar MEW Offline / Locally'), _defineProperty(_es$data, 'ONBOARD_final_content__5', 'Cómo enviar a través deLedger hardware wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__6', 'Cómo enviar a través de TREZOR hardware wallet'), _defineProperty(_es$data, 'ONBOARD_final_content__7', 'Cómo enviar a través de MetaMask'), _defineProperty(_es$data, 'ONBOARD_final_content__8', 'Conozca más o contáctenos'), _defineProperty(_es$data, 'ONBOARD_final_content__9', 'OMG, please just let me send FFS.'), _defineProperty(_es$data, 'ONBOARD_resume', 'Parece que no terminaste de leer estas diapositivas la última vez. Consejo: termine de leer las diapositivas 😉'), _defineProperty(_es$data, 'x_CancelReplaceTx', 'Cancelar o reemplazar transacción'), _defineProperty(_es$data, 'x_CancelTx', 'Cancelar transacción'), _defineProperty(_es$data, 'x_PasswordDesc', 'Esta contraseña * encripta * tu clave privada. Esto no es una semilla para generar tus claves. **Necesitarás esta contraseña + tu clave privada para desbloquear tu cartera.**'), _defineProperty(_es$data, 'x_ReadMore', 'Leer más'), _defineProperty(_es$data, 'x_ReplaceTx', 'Reemplazar transacción'), _defineProperty(_es$data, 'x_TransHash', 'Hash de la transacción'), _defineProperty(_es$data, 'x_TXFee', 'TX Fee'), _defineProperty(_es$data, 'x_TxHash', 'TX Hash'), _defineProperty(_es$data, 'NAV_CheckTxStatus', 'Comprobar estado de transacción'), _defineProperty(_es$data, 'NAV_TxStatus', 'Estado de transacción'), _defineProperty(_es$data, 'tx_Details', 'Detalles de la transacción'), _defineProperty(_es$data, 'tx_Summary', 'En momentos de alto volumen (como por ejemplo durante las ICOs) las transacciones pueden quedarse pendientes durante horas o incluso días. Esta herramienta te proporciona la posibilidad de encontrar y "cancelar" / reemplazar estas transacciones. ** Esto es algo que normalmente no puedes hacer. No se debe confiar en esta herramienta. Solamente funcionará cuando los pools de transacciones estén llenos. [Por favor, lee más sobre esta herramienta aquí.](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)**'), _defineProperty(_es$data, 'tx_notFound', 'Transacción no encontrada'), _defineProperty(_es$data, 'tx_notFound_1', 'Esta transacción no se puede encontrar en el pool de transacciones del nodo al que estás conectado.'), _defineProperty(_es$data, 'tx_notFound_2', 'Si acabas de enviar la transacción, por favor espera 15 segundos y pulsa de nuevo el botón "Comprobar estado de transacción". '), _defineProperty(_es$data, 'tx_notFound_3', 'Podría encontrarse todavía en el pool de transacciones de otro nodo diferente, esperando ser minado.'), _defineProperty(_es$data, 'tx_notFound_4', 'Por favor usa el desplegable en la parte superior derecha y selecciona un nodo ETH diferente (ej. `ETH (Etherscan.io)` o `ETH (Infura.io)` o `ETH (MyEtherWallet)`) y comprueba de nuevo.'), _defineProperty(_es$data, 'tx_foundInPending', 'Transacción pendiente encontrada'), _defineProperty(_es$data, 'tx_foundInPending_1', 'Tu transacción se ha encontrado en el pool de transacciones del nodo al que te encuentras conectado. '), _defineProperty(_es$data, 'tx_foundInPending_2', 'Actualmente está pendiente (esperando ser minada). '), _defineProperty(_es$data, 'tx_foundInPending_3', 'Existe la posibilidad de que puedas "cancelar" o reemplazar esta transacción. Desbloquea tu cartera debajo.'), _defineProperty(_es$data, 'tx_FoundOnChain', 'Transacción encontrada'), _defineProperty(_es$data, 'tx_FoundOnChain_1', 'Tu transacción ha sido minada con éxito y se encuentra en la cadena de bloques.'), _defineProperty(_es$data, 'tx_FoundOnChain_2', '**If you see a red `( ! )`, a `BAD INSTRUCTION` or `OUT OF GAS` error message**, it means that the transaction was not successfully *sent*. You cannot cancel or replace this transaction. Instead, send a new transaction. If you received an "Out of Gas" error, you should double the gas limit you specified originally.'), _defineProperty(_es$data, 'tx_FoundOnChain_3', '**If you do not see any errors, your transaction was successfully sent.** Your ETH or Tokens are where you sent them. If you cannot see this ETH or Tokens credited in your other wallet / exchange account, and it has been 24+ hours since you sent, please [contact that service](https://myetherwallet.github.io/knowledge-base/diving-deeper/ethereum-list-of-support-and-communities.html). Send them the *link* to your transaction and ask them, nicely, to look into your situation.'), _defineProperty(_es$data, 'GEN_Help_1', 'Usa tu'), _defineProperty(_es$data, 'GEN_Help_2', 'para acceder a tu cuenta.'), _defineProperty(_es$data, 'GEN_Help_3', 'Tu dispositivo * is * tu cartera.'), _defineProperty(_es$data, 'GEN_Help_4', 'Guías y FAQ'), _defineProperty(_es$data, 'GEN_Help_5', 'Cómo crear una cartera'), _defineProperty(_es$data, 'GEN_Help_6', 'Empezando'), _defineProperty(_es$data, 'GEN_Help_7', 'Manténgalo seguro · Haga una copia de seguridad · No lo comparta con nadie · No lo pierda · No se puede recuperar si lo pierde.'), _defineProperty(_es$data, 'GEN_Help_8', 'No descarga un archivo?'), _defineProperty(_es$data, 'GEN_Help_9', 'Intenta utilizando Google Chrome '), _defineProperty(_es$data, 'GEN_Help_10', 'Haga clic derecho y guarde el archivo como. Nombre del archivo: '), _defineProperty(_es$data, 'GEN_Help_11', 'No abras este archivo en tu computadora '), _defineProperty(_es$data, 'GEN_Help_12', 'Úselo para desbloquear su billetera a través de MyEtherWallet (o Mist, Geth, Parity y otros clientes de billetera). '), _defineProperty(_es$data, 'GEN_Help_13', 'Cómo hacer una copia de seguridad de su archivo de Keystore '), _defineProperty(_es$data, 'GEN_Help_14', '¿Qué son estos diferentes formatos? '), _defineProperty(_es$data, 'GEN_Help_15', 'Evitando la pérdida o robo de tus fondos.'), _defineProperty(_es$data, 'GEN_Help_16', '¿Qué son estos diferentes formatos?'), _defineProperty(_es$data, 'GEN_Help_17', '¿Por qué debería?'), _defineProperty(_es$data, 'GEN_Help_18', 'Para tener una copia de seguridad secundaria.'), _defineProperty(_es$data, 'GEN_Help_19', 'En caso de que olvide su contraseña.'), _defineProperty(_es$data, 'GEN_Help_20', 'Almacenamiento en frio'), _defineProperty(_es$data, 'GET_ConfButton', 'Entiendo. Continuar.'), _defineProperty(_es$data, 'GEN_Label_5', 'Guarde su `clave privada`.'), _defineProperty(_es$data, 'GEN_Unlock', 'Desbloquea tu cartera para ver tu dirección'), _defineProperty(_es$data, 'GAS_PRICE_Desc', 'El precio del gas es la cantidad que paga por unidad de gas. `Tarifa de TX = precio de gas * límite de gas` y se paga a los mineros por incluir su TX en un bloque. Mayor el precio del gas = transacción más rápida, pero más costosa. El valor predeterminado es `41 GWEI`.'), _defineProperty(_es$data, 'GAS_LIMIT_Desc', 'El límite de gas es la cantidad de gas a enviar con su TX. `Tarifa de TX` = precio de gas * límite de gas y se paga a los mineros por incluir su TX en un bloque. Al aumentar este número, tu TX no se extrae más rápido. Enviando ETH = `21000`. Envío de Tokens = ~ `200000`.'), _defineProperty(_es$data, 'NONCE_Desc', 'El nonce es el número de transacciones enviadas desde una dirección determinada. Asegura que las transacciones se envíen en orden y no más de una vez.'), _defineProperty(_es$data, 'TXFEE_Desc', 'La tarifa de TX se paga a los mineros por incluir su TX en un bloque. Es el `límite de gas` * `precio del gas`. [Puede convertir GWEI -> ETH aquí](https://www.myetherwallet.com/helpers.html)'), _defineProperty(_es$data, 'NAV_AddWallet', 'Añadir cartera '), _defineProperty(_es$data, 'NAV_BulkGenerate', 'Generar en masa '), _defineProperty(_es$data, 'NAV_Contact', 'Contacto '), _defineProperty(_es$data, 'NAV_Contracts', 'Contratos '), _defineProperty(_es$data, 'NAV_DeployContract', 'Desplegar contrato '), _defineProperty(_es$data, 'NAV_ENS', 'ENS'), _defineProperty(_es$data, 'NAV_GenerateWallet_alt', 'Nueva cartera '), _defineProperty(_es$data, 'NAV_GenerateWallet', 'Generar cartera '), _defineProperty(_es$data, 'NAV_Help', 'Ayuda '), _defineProperty(_es$data, 'NAV_InteractContract', 'Interactuar con un contrato '), _defineProperty(_es$data, 'NAV_Multisig', 'Multifirma '), _defineProperty(_es$data, 'NAV_MyWallets', 'Mis carteras '), _defineProperty(_es$data, 'NAV_Offline', 'Enviar sin conexión '), _defineProperty(_es$data, 'NAV_SendEther', 'Enviar ether y tokens '), _defineProperty(_es$data, 'NAV_SendTokens', 'Enviar tokens '), _defineProperty(_es$data, 'NAV_SignMsg', 'Firmar mensaje '), _defineProperty(_es$data, 'NAV_Swap', 'Intercambiar '), _defineProperty(_es$data, 'NAV_ViewWallet', 'Ver información de las carteras '), _defineProperty(_es$data, 'NAV_YourWallets', 'Tus carteras '), _defineProperty(_es$data, 'x_Access', 'Access '), _defineProperty(_es$data, 'x_AddessDesc', 'Tu dirección también se conoce como tu `número de cuenta` o tu `clave pública`. Es lo que compartes con otras personas para que te puedan enviar Ether o tokens. Busca el icono de colores de tu dirección. Asegúrate de que coincide con tu cartera de papel y siempre que introduzcas tu dirección en cualquier sitio. Puedes pensar en esto como tu "número de cuenta" o tu "clave pública". Es lo que le das a la gente para que te puedan enviar ether. Ese icono es una forma fácil de reconocer tu dirección. '), _defineProperty(_es$data, 'x_Address', 'Tu dirección '), _defineProperty(_es$data, 'x_Cancel', 'Cancelar '), _defineProperty(_es$data, 'x_CSV', 'Archivo CSV (sin encriptar) '), _defineProperty(_es$data, 'x_Download', 'Descargar '), _defineProperty(_es$data, 'x_Json', 'Archivo JSON (sin encriptar) '), _defineProperty(_es$data, 'x_JsonDesc', 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu archivo JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña. '), _defineProperty(_es$data, 'x_Keystore', 'Archivo Keystore (UTC / JSON · Recomendado · Encriptado) '), _defineProperty(_es$data, 'x_Keystore2', 'Archivo Keystore (UTC / JSON) '), _defineProperty(_es$data, 'x_KeystoreDesc', 'Este archivo Keystore/JSON concuerda con el formato usado por Mist para una fácil importación en el futuro. Es el archivo recomendado para descargar y guardar como copia de seguridad. '), _defineProperty(_es$data, 'x_MetaMask', 'MetaMask / Mist '), _defineProperty(_es$data, 'x_Mnemonic', 'Frase mnemotécnica '), _defineProperty(_es$data, 'x_ParityPhrase', 'Frase de Parity '), _defineProperty(_es$data, 'x_Password', 'Contraseña '), _defineProperty(_es$data, 'x_Print', 'Imprimir Cartera de Papel '), _defineProperty(_es$data, 'x_PrintDesc', 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora! '), _defineProperty(_es$data, 'x_PrintShort', 'Imprimir '), _defineProperty(_es$data, 'x_PrivKey', 'Clave Privada (sin encriptar) '), _defineProperty(_es$data, 'x_PrivKey2', 'Clave Privada '), _defineProperty(_es$data, 'x_PrivKeyDesc', 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas. '), _defineProperty(_es$data, 'x_Save', 'Guardar '), _defineProperty(_es$data, 'x_TXT', 'Archivo TXT (sin encriptar) '), _defineProperty(_es$data, 'x_Wallet', 'Cartera '), _defineProperty(_es$data, 'MEW_Warning_1', 'Comprueba siempre la URL antes de acceder a tu cartera o crear una cartera nueva. ¡Ten cuidado con los sitios falsos (phishing)! '), _defineProperty(_es$data, 'CX_Warning_1', 'Asegúrate de tener **copias de seguridad externas** de cualquier cartera que almacenes aquí. Pueden ocurrir muchas cosas que te hagan perder los datos de esta extensión de Chrome; esto incluye desinstalar y volver a instalar la extensión. Esta extensión es un modo de acceder fácilmente a tus carteras, **no** una manera de respaldarlas. '), _defineProperty(_es$data, 'MEW_Tagline', 'Cartera Ether JavaScript de código abierto ejecutado en el cliente '), _defineProperty(_es$data, 'CX_Tagline', 'Cartera Ether JavaScript de código abierto ejecutado en el cliente extensión Chrome '), _defineProperty(_es$data, 'FOOTER_1', 'Una herramienta de código abierto JavaScript que se ejecuta en el lado del cliente, para generar carteras y enviar transacciones Ethereum. '), _defineProperty(_es$data, 'FOOTER_1b', 'Creado por '), _defineProperty(_es$data, 'FOOTER_2', 'Se agradecen las donaciones: '), _defineProperty(_es$data, 'FOOTER_3', 'Generación de carteras en el cliente por '), _defineProperty(_es$data, 'FOOTER_4', 'Renuncia de responsabilidad '), _defineProperty(_es$data, 'sidebar_AccountInfo', 'Información de la cuenta '), _defineProperty(_es$data, 'sidebar_AccountAddr', 'Dirección de la cuenta '), _defineProperty(_es$data, 'sidebar_AccountBal', 'Saldo de la cuenta '), _defineProperty(_es$data, 'sidebar_TokenBal', 'Saldos de tokens '), _defineProperty(_es$data, 'sidebar_Equiv', 'Valores equivalentes '), _defineProperty(_es$data, 'sidebar_TransHistory', 'Historial de transacciones '), _defineProperty(_es$data, 'sidebar_donation', 'MyEtherWallet es un servicio gratuito y de código abierto dedicado a tu privacidad y seguridad. Cuantas más donaciones recibimos, más tiempo dedicamos creando nuevas características, escuchando vuestros comentarios y proporcionando lo que queréis. Sólo somos dos personas intentando cambiar el mundo. ¿Nos ayudas? '), _defineProperty(_es$data, 'sidebar_donate', 'Donar '), _defineProperty(_es$data, 'sidebar_thanks', '¡¡¡GRACIAS!!! '), _defineProperty(_es$data, 'sidebar_DisplayOnTrezor', 'Mostrar dirección en TREZOR'), _defineProperty(_es$data, 'sidebar_DisplayOnLedger', 'Mostrar dirección en Ledger'), _defineProperty(_es$data, 'decrypt_Access', '¿Cómo te gustaría acceder a tu cartera? '), _defineProperty(_es$data, 'decrypt_Title', 'Elige el formato de tu clave privada: '), _defineProperty(_es$data, 'decrypt_Select', 'Elige una cartera: '), _defineProperty(_es$data, 'ADD_Label_1', '¿Qué quieres hacer? '), _defineProperty(_es$data, 'ADD_Radio_1', 'Generar nueva cartera '), _defineProperty(_es$data, 'ADD_Radio_2', 'Elige tu archivo de cartera (Keystore / JSON) '), _defineProperty(_es$data, 'ADD_Radio_2_alt', 'Elige tu archivo de cartera '), _defineProperty(_es$data, 'ADD_Radio_2_short', 'ELIGE ARCHIVO DE CARTERA... '), _defineProperty(_es$data, 'ADD_Radio_3', 'Pega o escribe tu clave privada '), _defineProperty(_es$data, 'ADD_Radio_4', 'Añade una cuenta para supervisar '), _defineProperty(_es$data, 'ADD_Radio_5', 'Pega o escribe tu mnemotécnico '), _defineProperty(_es$data, 'ADD_Radio_5_Path', 'Elige la ruta de derivación HD '), _defineProperty(_es$data, 'ADD_Radio_5_woTrezor', '(Jaxx, Metamask, Exodus, imToken)'), _defineProperty(_es$data, 'ADD_Radio_5_withTrezor', '(Jaxx, Metamask, Exodus, imToken, TREZOR)'), _defineProperty(_es$data, 'ADD_Radio_5_PathAlternative', '(Ledger)'), _defineProperty(_es$data, 'ADD_Radio_5_PathTrezor', '(TREZOR)'), _defineProperty(_es$data, 'ADD_Radio_5_PathCustom', 'Personalizado'), _defineProperty(_es$data, 'ADD_Label_2', 'Crear un alias: '), _defineProperty(_es$data, 'ADD_Label_3', 'Tu cartera está encriptada. Introduce tu contraseña '), _defineProperty(_es$data, 'ADD_Label_4', 'Añade una cuenta para supervisar '), _defineProperty(_es$data, 'ADD_Warning_1', 'Puedes añadir una cuenta para supervisar en la pestaña de carteras sin cargar una clave privada. Esto ** no ** significa que tengas acceso a la cartera, ni puedes transferir ether desde ésta. '), _defineProperty(_es$data, 'ADD_Label_5', 'Introduce la dirección '), _defineProperty(_es$data, 'ADD_Label_6', 'Desbloquea tu cartera '), _defineProperty(_es$data, 'ADD_Label_6_short', 'Desbloquear '), _defineProperty(_es$data, 'ADD_Label_7', 'Añadir cuenta '), _defineProperty(_es$data, 'ADD_Label_8', 'Contraseña (opcional): '), _defineProperty(_es$data, 'GEN_desc', 'Si quieres generar varias carteras, puedes hacerlo aquí '), _defineProperty(_es$data, 'GEN_Label_1', 'Introduce una contraseña fuerte (mínimo 9 caracteres) '), _defineProperty(_es$data, 'GEN_Placeholder_1', '¡NO olvides guardar esto! '), _defineProperty(_es$data, 'GEN_SuccessMsg', '¡Enhorabuena! Se ha generado tu cartera. '), _defineProperty(_es$data, 'GEN_Label_2', 'Guarda tu Keystore. No olvides tu contraseña. '), _defineProperty(_es$data, 'GEN_Label_3', 'Guarda tu dirección. '), _defineProperty(_es$data, 'GEN_Label_4', 'Opcional: Imprime tu cartera en papel o guarda una versión en código QR. '), _defineProperty(_es$data, 'BULK_Label_1', 'Cantidad de carteras a generar '), _defineProperty(_es$data, 'BULK_Label_2', 'Generar carteras '), _defineProperty(_es$data, 'BULK_SuccessMsg', '¡Enhorabuena! Se han generado tus carteras. '), _defineProperty(_es$data, 'SEND_addr', 'Dirección de destino '), _defineProperty(_es$data, 'SEND_amount', 'Cantidad a enviar '), _defineProperty(_es$data, 'SEND_amount_short', 'Cantidad '), _defineProperty(_es$data, 'SEND_custom', 'Personalizado '), _defineProperty(_es$data, 'SEND_gas', 'Gas '), _defineProperty(_es$data, 'SEND_TransferTotal', 'Enviar todo el saldo '), _defineProperty(_es$data, 'SEND_generate', 'Generar transacción '), _defineProperty(_es$data, 'SEND_raw', 'Transacción en bruto '), _defineProperty(_es$data, 'SEND_signed', 'Transacción firmada '), _defineProperty(_es$data, 'SEND_trans', 'Enviar transacción '), _defineProperty(_es$data, 'SEND_custom', 'Añadir token personalizado '), _defineProperty(_es$data, 'SENDModal_Title', '¡Atención! '), _defineProperty(_es$data, 'SENDModal_Content_1', 'Vas a enviar '), _defineProperty(_es$data, 'SENDModal_Content_2', 'a la dirección '), _defineProperty(_es$data, 'SENDModal_Content_3', '¿Estás seguro de que quieres hacer esto? '), _defineProperty(_es$data, 'SENDModal_Content_4', 'NOTA: Si recibes un error, es muy probable que necesites añadir ether a tu cuenta para cubrir el coste en gas de enviar tokens. Gas se paga en ether. '), _defineProperty(_es$data, 'SENDModal_No', 'No, sácame de aquí. '), _defineProperty(_es$data, 'SENDModal_Yes', 'Sí, estoy seguro. Hacer la transacción. '), _defineProperty(_es$data, 'TOKEN_Addr', 'Token Contact Dirección '), _defineProperty(_es$data, 'TOKEN_Symbol', 'Símbolo del token '), _defineProperty(_es$data, 'TOKEN_Dec', 'Decimales '), _defineProperty(_es$data, 'TOKEN_hide', 'Ocultar tokens '), _defineProperty(_es$data, 'TOKEN_show', 'Mostrar todos los tokens '), _defineProperty(_es$data, 'TRANS_desc', 'Si quieres enviar tokens, utiliza la página "Enviar tokens" en lugar de esta. '), _defineProperty(_es$data, 'TRANS_warning', 'Si utilizas las funciones "Sólo ETH" o "Sólo ETC" estás enviando a través de un contrato. Algunos servicios tienen problemas aceptando estas transacciones. Leer más. '), _defineProperty(_es$data, 'TRANS_advanced', '+Avanzado: Añadir datos '), _defineProperty(_es$data, 'TRANS_data', 'Datos '), _defineProperty(_es$data, 'TRANS_gas', 'Límite de gas '), _defineProperty(_es$data, 'TRANS_sendInfo', 'Una transacción estándar que utiliza 21000 gas cuesta 0.000441 ETH. Utilizamos un precio de gas de 0.000000021 ETH, ligeramente por encima del mínimo, para asegurarnos de que se mina con rapidez. Nosotros no recibimos ninguna comisión por la transacción. '), _defineProperty(_es$data, 'TRANSModal_Title', 'Transacciones "Sólo ETH" y "Sólo ETC" '), _defineProperty(_es$data, 'TRANSModal_Content_0', 'Una nota sobre las distintas transacciones y servicios: '), _defineProperty(_es$data, 'TRANSModal_Content_1', '**ETH (transacción estándar): ** Esto genera una transacción predeterminada directamente de una dirección a otra. Utiliza gas predeterminado de 21000. Es probable que cualquier transacción de ETH enviada mediante este método se reproduzca (replay) en la cadena ETC. '), _defineProperty(_es$data, 'TRANSModal_Content_2', '**Sólo ETH: ** Esto envía a través del [contrato de protección contra replay de Timon Rapp (según recomienda VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) de modo que envías solamente en la cadena **ETH**. '), _defineProperty(_es$data, 'TRANSModal_Content_3', '**Sólo ETC: ** Esto envía a través del [contrato de protección contra replay de Timon Rapp (según recomienda VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) de modo que envías solamente en la cadena **ETC**. '), _defineProperty(_es$data, 'TRANSModal_Content_4', '**Coinbase y ShapeShift: ** Envía solamente utilizando transacción estándar. Si envías utilizando los contratos "Sólo ETH" o "Sólo ETC", será necesario que contactes con su equipo de soporte para que añadan manualmente el saldo o te lo devuelvan. [También puedes probar la herramienta de "split" de Shapeshift.](https://split.shapeshift.io/) '), _defineProperty(_es$data, 'TRANSModal_Content_5', '**Kraken y Poloniex:** No se conocen problemas. Usa cualquiera. '), _defineProperty(_es$data, 'TRANSModal_Yes', 'Bien, ahora lo entiendo. '), _defineProperty(_es$data, 'TRANSModal_No', 'Estoy más confundido. Ayuda, por favor. '), _defineProperty(_es$data, 'OFFLINE_Title', 'Generar y enviar transacción sin conexión '), _defineProperty(_es$data, 'OFFLINE_Desc', 'Se puede generar transacciones sin conexión en tres pasos. Debes hacer los pasos 1 y 3 en un equipo online y el paso 2 en un equipo sin conexión y aislado. Esto asegura que tus claves privadas no estén en contacto con un equipo con conexión a Internet. '), _defineProperty(_es$data, 'OFFLLINE_Step1_Title', 'Paso 1: generar información (equipo conexión) '), _defineProperty(_es$data, 'OFFLINE_Step1_Button', 'Generar información '), _defineProperty(_es$data, 'OFFLINE_Step1_Label_1', 'Dirección de origen '), _defineProperty(_es$data, 'OFFLINE_Step1_Label_2', 'Nota: Esta es la dirección de origen, no la dirección de destino. El nonce se genera desde la cuenta que origina la transacción. Si se está utilizando un equipo aislado, será la dirección de la cuenta de almacenaje en frío. '), _defineProperty(_es$data, 'OFFLINE_Step2_Title', 'Paso 2: generar transacción (equipo sin conexión) '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_1', 'Dirección de destino '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_2', 'Valor / Cantidad a enviar '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_3', 'Precio del gas '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_3b', 'Esto se ha mostrado en el Paso 1 en tu equipo con conexión. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_4', 'Límite de gas '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_4b', '21000 es el límite de gas predeterminado. Cuando envías contratos o datos adicionales, puede que esto necesite ser diferente. El gas no utilizado se te devolverá. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_5', 'Nonce '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_5b', 'Esto se indicó en el Paso 1 en tu equipo con conexión. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_6', 'Datos '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_6b', 'Opcional. Los datos se utilizan habitualmente al enviar transacciones a contratos. '), _defineProperty(_es$data, 'OFFLINE_Step2_Label_7', 'Introduce / elige tu Clave Privada / JSON. '), _defineProperty(_es$data, 'OFFLINE_Step3_Title', 'Paso 3: Enviar / Publicar transacción (con conexión) '), _defineProperty(_es$data, 'OFFLINE_Step3_Label_1', 'Pega aquí la transacción firmada del paso 2 y pulsa el botón "ENVIAR TRANSACCIÓN". '), _defineProperty(_es$data, 'DEP_generate', 'Generar Bytecode '), _defineProperty(_es$data, 'DEP_generated', 'Bytecode generado '), _defineProperty(_es$data, 'DEP_signtx', 'Firmar transacción '), _defineProperty(_es$data, 'DEP_interface', 'Interfaz generada '), _defineProperty(_es$data, 'MYWAL_Nick', 'Alias de cartera '), _defineProperty(_es$data, 'MYWAL_Address', 'Dirección de cartera '), _defineProperty(_es$data, 'MYWAL_Bal', 'Saldo '), _defineProperty(_es$data, 'MYWAL_Edit', 'Editar '), _defineProperty(_es$data, 'MYWAL_View', 'Ver '), _defineProperty(_es$data, 'MYWAL_Remove', 'Eliminar '), _defineProperty(_es$data, 'MYWAL_RemoveWal', 'Eliminar cartera: '), _defineProperty(_es$data, 'MYWAL_WatchOnly', 'Tus cuentas de sólo visualización '), _defineProperty(_es$data, 'MYWAL_Viewing', 'Viendo cartera '), _defineProperty(_es$data, 'MYWAL_Hide', 'Ocultar información de cartera '), _defineProperty(_es$data, 'MYWAL_Edit_2', 'Editar cartera '), _defineProperty(_es$data, 'MYWAL_Name', 'Nombre de la cartera '), _defineProperty(_es$data, 'MYWAL_Content_1', '¡Atención! Estás a punto de eliminar tu cartera '), _defineProperty(_es$data, 'MYWAL_Content_2', 'Asegúrate de haber **guardado tu clave privada y/o archivo almacén de clave y la contraseña** antes de eliminarlo. '), _defineProperty(_es$data, 'MYWAL_Content_3', 'Si en el futuro quieres utilizar esta cartera con MyEtherWallet CX, tendrás que volver a añadirla manualmente utilizando Clave Privada/JSON y contraseña. '), _defineProperty(_es$data, 'VIEWWALLET_Subtitle', 'Esto te permite descargar múltiples versiones de claves privadas e imprimir de nuevo tu cartera en papel. Puede que te interese hacer esto para [importar tu cuenta en Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si quieres comprobar tu saldo, recomendamos utilizar un explorador de blockchain como [etherscan.io](https://etherscan.io/). '), _defineProperty(_es$data, 'VIEWWALLET_Subtitle_Short', 'Esto te permite descargar múltiples versiones de claves privadas e imprimir de nuevo tu cartera en papel. '), _defineProperty(_es$data, 'VIEWWALLET_SuccessMsg', '¡Enhorabuena! Estos son los detalles de tu cartera. '), _defineProperty(_es$data, 'VIEWWALLET_ShowPrivKey', '(mostrar)'), _defineProperty(_es$data, 'VIEWWALLET_HidePrivKey', '(ocultar)'), _defineProperty(_es$data, 'CX_error_1', 'No tienes ninguna cartera guardada. ¡Haz clic en ["Añadir cartera"](/cx-wallet.html#add-wallet) para añadir una! '), _defineProperty(_es$data, 'CX_quicksend', 'Enviar '), _defineProperty(_es$data, 'NODE_Title', 'Configurar nodo personalizado'), _defineProperty(_es$data, 'NODE_Subtitle', 'Para conectar a un nodo local...'), _defineProperty(_es$data, 'NODE_Warning', 'Tu nodo debe ser HTTPS para poder conectar a él desde MyEtherWallet.com. Para conectarte a cualquier nodo, puedes [descargar el repositorio de MyEtherWallet y ejecutarlo localmente](https://github.com/kvhnuke/etherwallet/releases/latest). También puedes conseguir un certificado SSL gratuito a través de [Let\'s Encrypt](https://letsencrypt.org/)'), _defineProperty(_es$data, 'NODE_Name', 'Nombre del nodo'), _defineProperty(_es$data, 'NODE_Port', 'Puerto del nodo'), _defineProperty(_es$data, 'NODE_CTA', 'Guardar y usar nodo personalizado'), _defineProperty(_es$data, 'CONTRACT_Title', 'Dirección del contrato '), _defineProperty(_es$data, 'CONTRACT_Title_2', 'Seleccionar contrato existente '), _defineProperty(_es$data, 'CONTRACT_Json', 'Interfaz ABI / JSON '), _defineProperty(_es$data, 'CONTRACT_Interact_Title', 'Leer/escribir contrato '), _defineProperty(_es$data, 'CONTRACT_Interact_CTA', 'Seleccionar una función '), _defineProperty(_es$data, 'CONTRACT_ByteCode', 'Byte Code '), _defineProperty(_es$data, 'CONTRACT_Read', 'LEER '), _defineProperty(_es$data, 'CONTRACT_Write', 'ESCRIBIR '), _defineProperty(_es$data, 'SWAP_rates', "Tipos de cambio actuales "), _defineProperty(_es$data, 'SWAP_init_1', "Quiero cambiar mis "), _defineProperty(_es$data, 'SWAP_init_2', " por "), _defineProperty(_es$data, 'SWAP_init_CTA', "Continuar"), _defineProperty(_es$data, 'SWAP_information', "Tu información "), _defineProperty(_es$data, 'SWAP_send_amt', "Cantidad a enviar "), _defineProperty(_es$data, 'SWAP_rec_amt', "Cantidad a recibir "), _defineProperty(_es$data, 'SWAP_your_rate', "Tu tipo de cambio "), _defineProperty(_es$data, 'SWAP_rec_add', "Tu dirección de destino "), _defineProperty(_es$data, 'SWAP_start_CTA', "Iniciar intercambio "), _defineProperty(_es$data, 'SWAP_ref_num', "Tu número de referencia "), _defineProperty(_es$data, 'SWAP_time', "Tiempo restante para enviar "), _defineProperty(_es$data, 'SWAP_elapsed', "Time elapsed since sent "), _defineProperty(_es$data, 'SWAP_progress_1', "Pedido iniciado "), _defineProperty(_es$data, 'SWAP_progress_2', "Esperando recibir tus "), _defineProperty(_es$data, 'SWAP_progress_3', "¡Recibido! "), _defineProperty(_es$data, 'SWAP_progress_4', "Enviando tu {{orderResult.output.currency}} "), _defineProperty(_es$data, 'SWAP_progress_5', "Pedido completado "), _defineProperty(_es$data, 'SWAP_order_CTA', "Por favor, envía "), _defineProperty(_es$data, 'SWAP_unlock', "Desbloquea tu cartera para enviar ETH o tokens directamente desde esta página. "), _defineProperty(_es$data, 'MSG_message', 'Mensaje '), _defineProperty(_es$data, 'MSG_date', 'Fecha '), _defineProperty(_es$data, 'MSG_signature', 'Firma '), _defineProperty(_es$data, 'MSG_verify', 'Verificar mensaje '), _defineProperty(_es$data, 'MSG_info1', 'Incluye la fecha actual para que la firma no se pueda volver a utilizar en otra fecha. '), _defineProperty(_es$data, 'MSG_info2', 'Incluye tu apodo y dónde utilizas ese apodo para que otra persona no lo pueda utilizar. '), _defineProperty(_es$data, 'MSG_info3', 'Incluye una razón específica para el mensaje para que no se pueda volver a utilizar con otra finalidad. '), _defineProperty(_es$data, 'MNEM_1', 'Selecciona la dirección con la que deseas interactuar. '), _defineProperty(_es$data, 'MNEM_2', 'Tu mnemotécnico HD único proporciona acceso a una serie de carteras o direcciones. Por favor, elige la dirección con la que quieres interactuar ahora. '), _defineProperty(_es$data, 'MNEM_more', 'Más direcciones '), _defineProperty(_es$data, 'MNEM_prev', 'Direcciones anteriores '), _defineProperty(_es$data, 'x_Ledger', 'Ledger Wallet '), _defineProperty(_es$data, 'ADD_Ledger_1', 'Conecta tu Ledger Wallet '), _defineProperty(_es$data, 'ADD_Ledger_2', 'Inicia la aplicacin Ethereum (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_2_Exp', 'Inicia la aplicacin Expanse (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_2_Ubq', 'Inicia la aplicacin Ubiq (o una aplicación de contrato) '), _defineProperty(_es$data, 'ADD_Ledger_3', 'Comprueba que "Browser Support" está activado en "Settings" '), _defineProperty(_es$data, 'ADD_Ledger_4', 'Si no encuentras la opción "Browser Support" en "Settings", asegúrate de tener instalado el [Firmware >1.2](https://www.ledgerwallet.com/apps/manager) '), _defineProperty(_es$data, 'ADD_Ledger_0a', 'Volver a abrir MyEtherWallet en una conexión segura (SSL) '), _defineProperty(_es$data, 'ADD_Ledger_0b', 'Volver a abrir MyEtherWallet usando [Chrome](https://www.google.com/chrome/browser/desktop/) u [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_Ledger_scan', 'Conectar a Ledger Wallet '), _defineProperty(_es$data, 'ADD_MetaMask', 'Connectar a MetaMask '), _defineProperty(_es$data, 'x_Trezor', 'TREZOR '), _defineProperty(_es$data, 'ADD_Trezor_scan', 'Conectar a TREZOR '), _defineProperty(_es$data, 'ADD_Trezor_select', 'Esto es una semilla TREZOR '), _defineProperty(_es$data, 'x_DigitalBitbox', 'Digital Bitbox '), _defineProperty(_es$data, 'ADD_DigitalBitbox_0a', 'Volver a abrir MyEtherWallet en una conexión segura (SSL) '), _defineProperty(_es$data, 'ADD_DigitalBitbox_0b', 'Volver a abrir MyEtherWallet usando [Chrome](https://www.google.com/chrome/browser/desktop/) u [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_DigitalBitbox_scan', 'Conectar a Digital Bitbox '), _defineProperty(_es$data, 'x_Secalot', 'Secalot '), _defineProperty(_es$data, 'ADD_Secalot_0a', 'Re-open MyEtherWallet on a secure (SSL) connection '), _defineProperty(_es$data, 'ADD_Secalot_0b', 'Re-open MyEtherWallet using [Chrome](https://www.google.com/chrome/browser/desktop/) or [Opera](https://www.opera.com/) '), _defineProperty(_es$data, 'ADD_Secalot_scan', 'Connect your Secalot '), _defineProperty(_es$data, 'ERROR_0', '(error_01) Introduce una cantidad válida. Please enter a valid amount.'), _defineProperty(_es$data, 'ERROR_1', '(error_02) Tu contraseña debe tener al menos 9 caracteres. Por favor utiliza una contraseña fuerte. Your password must be at least 9 characters. Please ensure it is a strong password.'), _defineProperty(_es$data, 'ERROR_2', '(error_03) Lo sentimos. No reconocemos este tipo de archivo de cartera. Sorry! We don\'t recognize this type of wallet file.'), _defineProperty(_es$data, 'ERROR_3', '(error_04) Este no es un archivo de cartera válido. This is not a valid wallet file.'), _defineProperty(_es$data, 'ERROR_4', '(error_05) Esta unidad no existe. Por favor utiliza una de las siguientes unidades This unit doesn\'t exists, please use the one of the following units'), _defineProperty(_es$data, 'ERROR_5', '(error_06) Introduce una Dirección válida. Please enter a valid address.'), _defineProperty(_es$data, 'ERROR_6', '(error_07) Introduce una Contraseña válida. Please enter a valid password.'), _defineProperty(_es$data, 'ERROR_7', '(error_08) Introduce una Cantidad válida. (Must be integer. Try 0-18.) Please enter valid decimals (Must be an integer. Try 0-18.)'), _defineProperty(_es$data, 'ERROR_8', '(error_09) Introduce un Límite de gas válido. (Must be integer. Try 21000-4000000.) Please enter a valid gas limit (Must be an integer. Try 21000-4000000.)'), _defineProperty(_es$data, 'ERROR_9', '(error_10) Introduce un Valor de datos válido. (Must be hex.) Please enter a valid data value (Must be hex.)'), _defineProperty(_es$data, 'ERROR_10', '(error_11) Introduce una Cantidad de gas válida. (Must be integer. Try 20 GWEI / 20000000000 WEI.) Please enter a valid gas price. (Must be an integer. Try 20 GWEI / 20000000000 WEI.)'), _defineProperty(_es$data, 'ERROR_11', '(error_12) Introduce un Nonce válido. (Must be integer.) Please enter a valid nonce (Must be an integer.)'), _defineProperty(_es$data, 'ERROR_12', '(error_13) Introduce una Transacción firmada válida. Invalid signed transaction.'), _defineProperty(_es$data, 'ERROR_13', '(error_14) Ya existe una cartera con este alias. A wallet with this nickname already exists.'), _defineProperty(_es$data, 'ERROR_14', '(error_15) Cartera no encontrada. Wallet not found.'), _defineProperty(_es$data, 'ERROR_15', '(error_16) No parece que exista todavía una propuesta con este ID o hay un error al leer esta propuesta. Whoops. It doesn\'t look like a proposal with this ID exists yet or there is an error reading this proposal.'), _defineProperty(_es$data, 'ERROR_16', '(error_17) Ya hay almacenada una cartera con esta dirección. Por favor comprueba la página de carteras. A wallet with this address already exists in storage. Please check your wallets page.'), _defineProperty(_es$data, 'ERROR_17', '(error_18) Fondos no suficientes para gas * precio + valor. Es necesario tener al menos 0.01 ether en tu cuenta para cubrir el coste del gas. Añade algo de ether e inténtalo de nuevo. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'ERROR_18', '(error_19) Sería necesario utilizar todo el gas en esta transacción. Esto significa que ya has votado en esta propuesta o que el periodo de debate ha concluido. All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.'), _defineProperty(_es$data, 'ERROR_19', '(error_20) Introduce un Símbolo válido Please enter a valid symbol'), _defineProperty(_es$data, 'ERROR_20', '(error_21) No es un token ERC-20 válido Not a valid ERC-20 token'), _defineProperty(_es$data, 'ERROR_21', '(error_22) No se ha podido estimar el gas. No hay suficientes fondos en la cuenta, o el contrato de destino ha devuelto un error. Puedes ajustar el gas manualmente y continuar. Puede que el mensaje de error al enviar contenga más información. Could not estimate gas. There are not enough funds in the account, or the receiving contract address would throw an error. Feel free to manually set the gas and proceed. The error message upon sending may be more informative.'), _defineProperty(_es$data, 'ERROR_22', '(error_23) Introduce un nombre de nodo válido Please enter a valid node name'), _defineProperty(_es$data, 'ERROR_23', '(error_24) Introduce una URL válida. Si estás en HTTPS, tu URL debe ser HTTPS Please enter a valid URL. If you are on https, your URL must be https'), _defineProperty(_es$data, 'ERROR_24', '(error_25) Introduce un puerto válido Please enter a valid port.'), _defineProperty(_es$data, 'ERROR_25', '(error_26) Introduce un chain ID válido Please enter a valid chain ID.'), _defineProperty(_es$data, 'ERROR_26', '(error_27) Introduce un ABI válido Please enter a valid ABI.'), _defineProperty(_es$data, 'ERROR_27', '(error_28) Cantidad mínima 0.01 Minimum amount: 0.01. Max amount:'), _defineProperty(_es$data, 'ERROR_28', '(error_29) **Necesitas tu archivo Keystore/JSON y la contraseña** (o clave privada) para acceder a esta cartera en el futuro. Por favor ¡guárdala y respáldala externamente! No hay modo de recuperar una cartera si no la guardas. Lee la [página de ayuda](https://www.myetherwallet.com/#help) para instrucciones. You need this `Keystore File + Password` or the `Private Key` (next page) to access this wallet in the future. '), _defineProperty(_es$data, 'ERROR_29', '(error_30) Introduce un user & password válido. Please enter a valid user and password.'), _defineProperty(_es$data, 'ERROR_30', '(error_31) Introduce un name válido (7+ characters, limited punctuation) Please enter a valid name (7+ characters, limited punctuation)'), _defineProperty(_es$data, 'ERROR_31', '(error_32) Introduce un secret phrase válido. Please enter a valid secret phrase.'), _defineProperty(_es$data, 'ERROR_32', '(error_33) Could not connect to the node. Refresh your page, try a different node (upper right corner), check your firewall settings. If custom node, check your configs.Could not connect to the node. Refresh your page, try a different node (top-right corner), check your firewall settings. If custom node, check your configs.'), _defineProperty(_es$data, 'ERROR_33', '(error_34) The wallet you have unlocked does not match the owner\'s address. The wallet you have unlocked does not match the owner\'s address.'), _defineProperty(_es$data, 'ERROR_34', '(error_35) The name you are attempting to reveal does not match the name you have entered. The name you are attempting to reveal does not match the name you have entered.'), _defineProperty(_es$data, 'ERROR_35', '(error_36) Input address is not checksummed. More infoInput address is not checksummed. What does that mean?'), _defineProperty(_es$data, 'ERROR_36', '(error_37) Enter valid TX hashPlease enter a valid TX hash'), _defineProperty(_es$data, 'ERROR_37', '(error_38) Enter valid hex string (0-9, a-f)Please enter valid hex string. Hex only contains: 0x, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, a, b, c, d, e, f'), _defineProperty(_es$data, 'ERROR_38', '(error_39) Offer must have either price or reserve set to more than 0'), _defineProperty(_es$data, 'ERROR_39', '(error_40) Bid must be more than the specified minimum'), _defineProperty(_es$data, 'GETH_Balance', '(geth-01) Saldo insuficiente. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'GETH_Cheap', '(geth-02) Precio de gas demasiado bajo para aceptación. Gas price too low for acceptance. Try raising the gas price to 21 GWEI via the dropdown in top-right.'), _defineProperty(_es$data, 'GETH_GasLimit', '(geth-03) Sobrepasa el límite de gas del bloque. Exceeds block gas limit. Transaction cost exceeds current gas limit. Limit: (d+), got: (d+). Please lower the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again. [Learn More](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)'), _defineProperty(_es$data, 'GETH_InsufficientFunds', '(geth-04) Fondos no suficientes para gas * precio + valor. Insufficient balance. Your gas limit * gas price + amount to send exceeds your current balance. Send more ETH to your account or use the "Send Entire Balance" button. If you believe this is in error, try pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)'), _defineProperty(_es$data, 'GETH_IntrinsicGas', '(geth-05) Gas intrínseco demasiado bajo. Intrinsic gas too low. Try raising the gas price to 21 GWEI via the dropdown in top-right or the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again.'), _defineProperty(_es$data, 'GETH_InvalidSender', '(geth-06) Remitente no válido. Invalid sender.'), _defineProperty(_es$data, 'GETH_NegativeValue', '(geth-07) Valor negativo. Negative value.'), _defineProperty(_es$data, 'GETH_Nonce', "(geth-08) Nonce demasiado bajo. This TX's [nonce](https://myetherwallet.github.io/knowledge-base/transactions/what-is-nonce.html) is too low. Try incrementing the nonce by pressing the Generate button again, or [replace the pending transaction](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)."), _defineProperty(_es$data, 'GETH_NonExistentAccount', '(geth-09) La cuenta no existe o tiene un saldo insuficiente. Account does not exist or account balance too low'), _defineProperty(_es$data, 'PARITY_AlreadyImported', "(parity-01) A transaction with the same hash was already imported. It was probably already broadcast. To avoid duplicate transactions, check your address on [etherscan.io](https://etherscan.io) & wait 10 minutes before attempting to send again. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_GasLimitExceeded', "(parity-02) Transaction cost exceeds current gas limit. Limit: (d+), got: (d+). Please lower the gas limit to 21000 (for sending) or 200000 (for sending tokens or contracts) and try again. [Learn More](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)"), _defineProperty(_es$data, 'PARITY_InsufficientBalance', "(parity-03) Insufficient balance. The account you tried to send transaction from does not have enough funds. If you believe this is in error, try using the 'Send Entire Balance' button, or pressing generate again. Required (d+) and got: (d+). [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_InsufficientGasPrice', "(parity-04) There is another transaction with same nonce in the queue, or the transaction fee is too low. Try incrementing the nonce by clicking the Generate button again. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_InvalidGasLimit', "(parity-05) Supplied gas limit is beyond limit. Try lowering the gas limit to 21000. [Learn More.](https://myetherwallet.github.io/knowledge-base/gas/what-is-gas-ethereum.html)"), _defineProperty(_es$data, 'PARITY_LimitReached', "(parity-06) There are too many transactions in the queue. Your transaction was dropped due to limit. Try increasing the gas price. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'PARITY_Old', "(parity-07) There is already a transaction with this [nonce](https://myetherwallet.github.io/knowledge-base/transactions/what-is-nonce.html). Try incrementing the nonce by pressing the Generate button again, or [replace the pending transaction](https://myetherwallet.github.io/knowledge-base/transactions/check-status-of-ethereum-transaction.html)."), _defineProperty(_es$data, 'PARITY_TooCheapToReplace', "(parity-08) TX Fee is too low. It does not satisfy your node's minimal fee (minimal: (d+), got: (d+)). Try increasing the gas price and/or gas limit. [Learn More.](https://myetherwallet.github.io/knowledge-base/transactions/transactions-not-showing-or-pending.html)"), _defineProperty(_es$data, 'SUCCESS_1', 'Dirección válida '), _defineProperty(_es$data, 'SUCCESS_2', 'Cartera descifrada con éxito '), _defineProperty(_es$data, 'SUCCESS_3', 'Your TX has been broadcast to the network. This does not mean it has been mined & sent. During times of extreme volume, it may take 3+ hours to send. 1) Check your TX below. 2) If it is pending for hours or disappears, use the Check TX Status Page to replace. 3) Use [ETH Gas Station](https://ethgasstation.info/) to see what gas price is optimal. 4) Save your TX Hash in case you need it later: '), _defineProperty(_es$data, 'SUCCESS_4', 'Se ha añadido tu cartera '), _defineProperty(_es$data, 'SUCCESS_5', 'Archivo seleccionado '), _defineProperty(_es$data, 'SUCCESS_6', 'You are successfully connected '), _defineProperty(_es$data, 'SUCCESS_7', 'Message Signature Verified'), _defineProperty(_es$data, 'WARN_Send_Link', 'Has llegado aquí a través de un enlace que ya tiene rellenados la dirección, cantidad, gas, campos de datos o el tipo de transacción (modo de envío). Puedes cambiar cualquier parámetro antes de enviar. Desbloquea tu cartera para comenzar. '), _defineProperty(_es$data, 'translate_version', '0.3 '), _defineProperty(_es$data, 'Translator_Desc', 'Gracias a nuestros traductores '), _defineProperty(_es$data, 'TranslatorName_1', 'Ignacio Fernández del Álamo · '), _defineProperty(_es$data, 'TranslatorAddr_1', ''), _defineProperty(_es$data, 'TranslatorName_2', 'Carlos Lizarraga Rodrigo '), _defineProperty(_es$data, 'TranslatorAddr_2', ''), _defineProperty(_es$data, 'TranslatorName_3', 'Mario Campo Saurat '), _defineProperty(_es$data, 'TranslatorAddr_3', '0xf66949e931c53eB90da51A886E2b0520A83B1edE'), _defineProperty(_es$data, 'TranslatorName_4', ''), _defineProperty(_es$data, 'TranslatorAddr_4', ''), _defineProperty(_es$data, 'TranslatorName_5', ''), _defineProperty(_es$data, 'TranslatorAddr_5', ''), _defineProperty(_es$data, 'HELP_Warning', 'Si creaste una cartera -o- descargaste el repositorio antes del **31 de diciembre de 2015**, por favor comprueba tus carteras y descarga una nueva versión del repositorio. Haz clic para más información. '), _defineProperty(_es$data, 'HELP_Desc', '¿Echas algo en falta? ¿Tienes alguna otra pregunta? [Contacta con nosotros](mailto:support@myetherwallet.com) y no solamente contestaremos tu pregunta, sino que mejoraremos esta página para que sea más útil en el futuro. '), _defineProperty(_es$data, 'HELP_Remind_Title', 'Algunos recordatorios '), _defineProperty(_es$data, 'HELP_Remind_Desc_1', '**Ethereum, MyEtherWallet.com y MyEtherWallet CX, así como algunas de las librerías JavaScript que utilizamos están en desarrollo activo.** Aunque hemos testeado ampliamente y decenas de miles de carteras han sido creadas exitosamente por personas en todo el planeta, siempre existe la remota posibilidad de que ocurra algo inesperado que haga que se pierdan tus ETH. Por favor no inviertas más de lo que estés dispuesto a perder y, por favor, sé cuidadoso. Si algo ocurriera, lo lamentamos, pero **no somos responsables del Ether perdido**. '), _defineProperty(_es$data, 'HELP_Remind_Desc_2', 'MyEtherWallet.com y MyEtherWallet CX no son "carteras web". No estás creando una cuenta ni nos estás entregando tus Ether para que los guardemos. Toda tu información nunca abandona tu equipo o tu navegador. Te facilitamos que puedas crear, guardar y acceder a tu información e interactuar con la blockchain. '), _defineProperty(_es$data, 'HELP_Remind_Desc_3', 'Si no guardas tu clave privada y contraseña, no hay modo alguno de recuperar el acceso a tu cartera o a los fondos que ésta contiene. ¡Haz copias de seguridad en múltiples ubicaciones físicas, no solamente en tu equipo! '), _defineProperty(_es$data, 'HELP_0_Title', '0) Soy nuevo. ¿Qué hago? '), _defineProperty(_es$data, 'HELP_0_Desc_1', 'MyEtherWallet te permite generar nuevas carteras para poder almacenar tu Ether por tu cuenta en lugar de en una casa de cambio. Este proceso tiene lugar por completo en tu equipo, no en nuestros servidores. Por lo tanto, cuando generes una nueva cartera, **eres responsable de hacer una copia de seguridad**. '), _defineProperty(_es$data, 'HELP_0_Desc_2', 'Crear una nueva cartera. '), _defineProperty(_es$data, 'HELP_0_Desc_3', 'Hacer una copia de seguridad de la cartera. '), _defineProperty(_es$data, 'HELP_0_Desc_4', 'Comprobar que tienes acceso a esta nueva cartera y has guardado correctamente toda la información necesaria. '), _defineProperty(_es$data, 'HELP_0_Desc_5', 'Transferir Ether a la nueva cartera. '), _defineProperty(_es$data, 'HELP_1_Title', '1) ¿Cómo creo una nueva cartera? '), _defineProperty(_es$data, 'HELP_1_Desc_1', 'Ir a la página "Generar cartera". '), _defineProperty(_es$data, 'HELP_1_Desc_2', 'Ir a la página "Añadir cartera" y seleccionar "Generar nueva cartera" '), _defineProperty(_es$data, 'HELP_1_Desc_3', 'Introducir una contraseña fuerte. Si crees que puedes olvidarla, guárdala en un lugar seguro. Necesitarás esta contraseña para enviar transacciones. '), _defineProperty(_es$data, 'HELP_1_Desc_4', 'Haz clic en "GENERAR". '), _defineProperty(_es$data, 'HELP_1_Desc_5', 'Ahora se ha generado tu cartera. '), _defineProperty(_es$data, 'HELP_2a_Title', '¿Cómo guardo/respaldo mi cartera? '), _defineProperty(_es$data, 'HELP_2a_Desc_1', 'Deberías siempre respaldar tu cartera externamente y en varias ubicaciones físicas (como una unidad USB o en una hoja de papel). '), _defineProperty(_es$data, 'HELP_2a_Desc_2', 'Guardar la dirección. Puedes mantenerla en privado o compartirla con otras personas. De ese modo, otras personas te podrán enviar ether. '), _defineProperty(_es$data, 'HELP_2a_Desc_3', 'Guarda las versiones de tu clave privada. No la compartas con nadie. ¡Tu clave privada es necesaria cuando quieras tener acceso a tu ether para enviarlo! Hay tres tipos de claves privadas: '), _defineProperty(_es$data, 'HELP_2a_Desc_4', 'Pon tu dirección, las versiones de la clave privada y la versión PDF de tu cartera en papel en una carpeta. Guárdala en tu equipo y en una unidad USB. '), _defineProperty(_es$data, 'HELP_2a_Desc_5', 'Imprime la cartera si dispones de impresora. En caso contrario, escribe tu clave privada y tu dirección en una hoja de papel. Almacénalas en un lugar seguro y separado de tu equipo y de la unidad USB. '), _defineProperty(_es$data, 'HELP_2a_Desc_6', 'Recuerda, debes evitar la pérdida de las claves y la contraseña frente a una pérdida o fallo en tu unidad de disco duro, unidad USB u hoja de papel. Debes tener en cuenta también la posibilidad de pérdida o daño en una zona amplia (piensa en un incendio o una inundación). '), _defineProperty(_es$data, 'HELP_2b_Title', '2b) ¿Cómo almaceno con seguridad/sin conexión/en frío con MyEtherWallet? '), _defineProperty(_es$data, 'HELP_2b_Desc_1', 'Ve a nuestro github: [https://github.com/kvhnuke/etherwallet/releases/latest](https://github.com/kvhnuke/etherwallet/releases/latest). '), _defineProperty(_es$data, 'HELP_2b_Desc_2', 'Haz clic en `etherwallet-vX.X.X.X.zip` en la parte inferior. '), _defineProperty(_es$data, 'HELP_2b_Desc_3', 'Mueve el ZIP a un equipo aislado de internet (airgapped). '), _defineProperty(_es$data, 'HELP_2b_Desc_4', 'Descomprímelo y haz doble clic en `index.html`. '), _defineProperty(_es$data, 'HELP_2b_Desc_5', 'Genera una cartera con una contraseña fuerte. '), _defineProperty(_es$data, 'HELP_2b_Desc_6', 'Guarda la dirección. Guarda versiones de la clave privaa. Guarda la contraseña si crees que es posible que no la recuerdes siempre en el futuro.. '), _defineProperty(_es$data, 'HELP_2b_Desc_7', 'Almacena los papeles / USBs en múltiples ubicaciones separadas físicamente. '), _defineProperty(_es$data, 'HELP_2b_Desc_8', 'Ve a la página "Ver Información de las Carteras" y teclea to clave privada / contraseña para asegurarte de que son correctos y puedes acceder a tu cartera. Comprueba que la dirección que has escrito coincide. '), _defineProperty(_es$data, 'HELP_3_Title', '3) ¿Cómo verifico que tengo acceso a mi nueva cartera? '), _defineProperty(_es$data, 'HELP_3_Desc_1', '**Antes de enviar ether a tu nueva cartera,** deberías asegurarte de que tienes acceso a ésta. '), _defineProperty(_es$data, 'HELP_3_Desc_2', 'Ve a la página "Ver Información de las Carteras". '), _defineProperty(_es$data, 'HELP_3_Desc_3', 'Ve a la página "Ver Información de las Carteras" de MyEtherWallet.com. '), _defineProperty(_es$data, 'HELP_3_Desc_4', 'Selecciona tu archivo de cartera -o- tu clave privada y desloquea tu cartera. '), _defineProperty(_es$data, 'HELP_3_Desc_5', 'Si la cartera está cifrada aparecerá automáticamente una caja de texto. Introduce la contraseña. '), _defineProperty(_es$data, 'HELP_3_Desc_6', 'Haz clic en el botón "Desbloquear cartera". '), _defineProperty(_es$data, 'HELP_3_Desc_7', 'Debería mostrarse la información de tu cartera. Puedes encontrar la dirección de tu cuenta al lado de un icono circular de colores. Este icono es una representación visual de tu dirección. Asegúrate de que esta dirección coincide con la dirección que has guardado en tu archivo de texto y con la que está en tu cartera de papel. '), _defineProperty(_es$data, 'HELP_3_Desc_8', 'Si planeas guardar una cantidad elevada de ether, te recomendamos que primero envíes una cantidad pequeña de ether desde tu nueva cartera antes de ingresar una cantidad elevada. Envía 0.001 ether a tu nueva cartera, accede a tu cartera, envía los 0.001 ether desde tu cartera a otra dirección y asegúrate de que todo funciona bien. '), _defineProperty(_es$data, 'HELP_4_Title', '4) ¿Cómo envío ether de una cartera a otra? '), _defineProperty(_es$data, 'HELP_4_Desc_1', 'Si planeas mover una gran cantidad de ether, deberías probar primero a enviar una pequeña cantidad a tu cartera para asegurarte de que todo funciona según lo esperado. '), _defineProperty(_es$data, 'HELP_4_Desc_2', 'Ve a la página "Enviar Ether y Tokens". '), _defineProperty(_es$data, 'HELP_4_Desc_3', 'Selecciona tu archivo de cartera -o- tu clave privada y desbloquea tu cartera. '), _defineProperty(_es$data, 'HELP_4_Desc_4', 'Si la cartera está cifrada aparecerá automáticamente una caja de texto. Introduce la contraseña. '), _defineProperty(_es$data, 'HELP_4_Desc_5', 'Haz clic en el botón "Desbloquear cartera". '), _defineProperty(_es$data, 'HELP_4_Desc_6', 'Introduce la dirección a la que deseas enviar ether en el campo "Dirección de destino:". '), _defineProperty(_es$data, 'HELP_4_Desc_7', 'Introduce la cantidad que deseas enviar. También puedes hacer clic en "Enviar todo el saldo" si quieres enviar todo el saldo de la cartera. '), _defineProperty(_es$data, 'HELP_4_Desc_9', 'Haz clic en "Generar transacción". '), _defineProperty(_es$data, 'HELP_4_Desc_10', 'Aparecerán dos campos más. Esto es tu navegador generando la transacción. '), _defineProperty(_es$data, 'HELP_4_Desc_11', 'Haz clic en el botón azul "Enviar transacción" que está inmediatamente debajo. '), _defineProperty(_es$data, 'HELP_4_Desc_12', 'Aparecerá un cuadro emergente. Verifica que la cantidad y la dirección a la que estás enviando son correctos. Entonces, haz clic en el botón "Sí, estoy seguro. Hacer la transacción.". '), _defineProperty(_es$data, 'HELP_4_Desc_13', 'Se enviará la transacción y se mostrará el ID de transacción. Puedes hacer clic en el ID de transacción para verla en la cadena de bloques. '), _defineProperty(_es$data, 'HELP_4CX_Title', '4) ¿Cómo envío ether utilizando MyEtherWallet CX? '), _defineProperty(_es$data, 'HELP_4CX_Desc_1', 'Antes de nada, necesitas añadir una cartera. Una vez hecho, tienes dos opciones: la función "Enviar" del icono de la extensión de Chrome o la página "Enviar Ether y Tokens". '), _defineProperty(_es$data, 'HELP_4CX_Desc_2', 'Envío: '), _defineProperty(_es$data, 'HELP_4CX_Desc_3', 'Haz clic en el icono de la extensión de Chrome. '), _defineProperty(_es$data, 'HELP_4CX_Desc_4', 'Haz clic en el botón Click the "Enviar" button. '), _defineProperty(_es$data, 'HELP_4CX_Desc_5', 'Elige la cartera desde la que quieres enviar. '), _defineProperty(_es$data, 'HELP_4CX_Desc_6', 'Introduce la dirección a la que deseas enviar en el campo "Dirección de destino:". '), _defineProperty(_es$data, 'HELP_4CX_Desc_7', 'Introduce la cantidad que deseas enviar. También puedes hacer clic en "Enviar todo el saldo" si quieres enviar todo el saldo de la cartera. '), _defineProperty(_es$data, 'HELP_4CX_Desc_8', 'Haz clic en "Enviar transacción". '), _defineProperty(_es$data, 'HELP_4CX_Desc_9', 'Comprueba que la dirección y la cantidad que estás enviando son correctos. '), _defineProperty(_es$data, 'HELP_4CX_Desc_10', 'Introduce la contraseña para la cartera. '), _defineProperty(_es$data, 'HELP_4CX_Desc_11', 'Haz clic en "Enviar transacción". '), _defineProperty(_es$data, 'HELP_4CX_Desc_12', 'Utilizando la página "Enviar Ether y Tokens" '), _defineProperty(_es$data, 'HELP_5_Title', '5) ¿Cómo ejecuto MyEtherWallet.com sin conexión/localmente? '), _defineProperty(_es$data, 'HELP_5_Desc_1', 'Puedes ejecutar MyEtherWallet.com en tu equipo en lugar de desde los servidores de GitHub. Puedes generar una cartera totalmente sin conexión y enviar transacciones desde la página "Transacción sin conexión". '), _defineProperty(_es$data, 'HELP_5_Desc_7', 'MyEtherWallet.com is now running entirely on your computer. '), _defineProperty(_es$data, 'HELP_5_Desc_8', 'Por si no tienes costumbre, es necesario guardar la carpeta completa para ejecutar la página web, no solamente `index.html`. No modifiques ni muevas nada dentro de la carpeta. Si estás guardando una copia del repositorio MyEtherWallet para el futuro, recomendamos guardar únicamente el fichero ZIP para poder estar seguro de que el contenido permanezca intacto. '), _defineProperty(_es$data, 'HELP_5_Desc_9', 'Debido a que estamos constantemente actualizando MyEtherWallet.com, recomendamos que actualices periódicamente tu versión guardada del repositorio. '), _defineProperty(_es$data, 'HELP_5CX_Title', '5) ¿Cómo puedo instalar esta extensión desde el repositorio en lugar de desde la Chrome Store? '), _defineProperty(_es$data, 'HELP_5CX_Desc_2', 'Click on `chrome-extension-vX.X.X.X.zip` and unzip it. '), _defineProperty(_es$data, 'HELP_5CX_Desc_3', 'Go to Google Chrome and find you settings (in the menu in the upper right). '), _defineProperty(_es$data, 'HELP_5CX_Desc_4', 'Click "Extensions" on the left. '), _defineProperty(_es$data, 'HELP_5CX_Desc_5', 'Check the "Developer Mode" button at the top of that page. '), _defineProperty(_es$data, 'HELP_5CX_Desc_6', 'Click the "Load unpacked extension..." button. '), _defineProperty(_es$data, 'HELP_5CX_Desc_7', 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select". '), _defineProperty(_es$data, 'HELP_5CX_Desc_8', 'The extension should now show up in your extensions and in your Chrome Extension bar. '), _defineProperty(_es$data, 'HELP_7_Title', '7) ¿Cómo envío tokens y añado tokens personalizados? '), _defineProperty(_es$data, 'HELP_7_Desc_0', '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token. '), _defineProperty(_es$data, 'HELP_7_Desc_1', 'Navigate to the "Enviar ether y tokens" page. '), _defineProperty(_es$data, 'HELP_7_Desc_2', 'Desbloquea tu cartera. '), _defineProperty(_es$data, 'HELP_7_Desc_3', 'Enter the address you would like to send to in the "To Address:" field. '), _defineProperty(_es$data, 'HELP_7_Desc_4', 'Enter the amount you would like to send. '), _defineProperty(_es$data, 'HELP_7_Desc_5', 'Select which token you would like to send. '), _defineProperty(_es$data, 'HELP_7_Desc_6', 'If you do not see the token listed: '), _defineProperty(_es$data, 'HELP_7_Desc_7', 'Click "Custom". '), _defineProperty(_es$data, 'HELP_7_Desc_8', 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist. '), _defineProperty(_es$data, 'HELP_7_Desc_9', 'Click "Save". '), _defineProperty(_es$data, 'HELP_7_Desc_10', 'You can now send that token as well as see it\'s balance in the sidebar. '), _defineProperty(_es$data, 'HELP_7_Desc_11', 'Click "Generate Transaction". '), _defineProperty(_es$data, 'HELP_7_Desc_12', 'A couple more fields will appear. This is your browser generating the transaction. '), _defineProperty(_es$data, 'HELP_7_Desc_13', 'Click the blue "Send Transaction" button below that. '), _defineProperty(_es$data, 'HELP_7_Desc_14', 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button. '), _defineProperty(_es$data, 'HELP_7_Desc_15', 'The transaction will be submitted. The TX Hash will display. You can click that TX Hash to see it on the blockchain. '), _defineProperty(_es$data, 'HELP_8_Title', '8) ¿Qué ocurre si vuestro sitio web deja de funcionar? '), _defineProperty(_es$data, 'HELP_8_Desc_1', 'MyEtherWallet no es una cartera web. No tienes un login y nunca se graba nada en nuestros servidores. You don\'t have a login and nothing ever gets saved to our servers. Simplemente es una interfaz que te permite interactuar con la cadena de bloques. '), _defineProperty(_es$data, 'HELP_8_Desc_2', 'Si MyEtherWallet.com desapareciera, tendrías que encontrar otra manera de poder hacer lo que haces con nosotros (como por ejemplo obtener geth o Ethereum Wallet / Mist). Pero no necesitarías retirar tus ether de MyEtherWallet porque no están en MyEtherWallet. Están en la cartera que hayas generado a través de nuestro sitio. '), _defineProperty(_es$data, 'HELP_8_Desc_3', 'Puedes importar tu clave privada sin cifrar y tus archivos en formato Geth/Mist (cifrados) directamente en geth / Ethereum Wallet / Mist con mucha facilidad actualmente. Ver más abajo la pregunta #12. '), _defineProperty(_es$data, 'HELP_8_Desc_4', 'Además, la probabilidad de que cerremos MyEtherWallet es casi nula. No nos cuesta prácticamente nada mantenerlo ya que no almacenamos ninguna información. Si borramos el dominio, continúa estando disponible y siempre lo estará en [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puedes descargar desde ahí el archivo ZIP y ejecutarlo localmente. '), _defineProperty(_es$data, 'HELP_8CX_Title', '8) ¿Qué ocurre si MyEtherWallet CX desaparece? '), _defineProperty(_es$data, 'HELP_8CX_Desc_1', 'En primer lugar, los datos se guardan en tu equipo, no en nuestros servidores. Sabemos que puede parecer confuso, pero si miras nuestra extensión de Chrome, NO estás mirando a algo almacenado en nuestros servidores en alguna parte - todo se guarda en tu equipo. '), _defineProperty(_es$data, 'HELP_8CX_Desc_2', 'Dicho esto, es **muy importante** que respaldes toda tu información para todas las nuevas carteras generadas con MyEtherWallet CX. De este modo, si algo le ocurre a MyEtherWallet CX o a tu equipo, seguirás teniendo toda la información necesaria para poder acceder a tus ether. Ver la pregunta #2a sobre cómo respaldar tus carteras. '), _defineProperty(_es$data, 'HELP_8CX_Desc_3', 'Si por algún motivo MyEtherWallet CX desaparece de Chrome Store, puedes encontrar el código fuente en Github y cargarlo manualmente. Ver #5 más arriba. '), _defineProperty(_es$data, 'HELP_9_Title', '9) Is the "Enviar ether y tokens" page offline? '), _defineProperty(_es$data, 'HELP_9_Desc_1', 'No. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times. '), _defineProperty(_es$data, 'HELP_10_Title', '10) ¿Cómo hago una transacción sin conexión? '), _defineProperty(_es$data, 'HELP_10_Desc_1', 'Navigate to the "Offline Transaction" page via your online computer. '), _defineProperty(_es$data, 'HELP_10_Desc_2', 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price. '), _defineProperty(_es$data, 'HELP_10_Desc_3', 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send. '), _defineProperty(_es$data, 'HELP_10_Desc_4', 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1. '), _defineProperty(_es$data, 'HELP_10_Desc_5', 'Enter the "NONCE" as it was displayed to you on your online computer in step #1. '), _defineProperty(_es$data, 'HELP_10_Desc_6', 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you. '), _defineProperty(_es$data, 'HELP_10_Desc_7', 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format. '), _defineProperty(_es$data, 'HELP_10_Desc_8', 'Select your wallet file -or- your private key and unlock your wallet. '), _defineProperty(_es$data, 'HELP_10_Desc_9', 'Press the "GENERATE SIGNED TRANSACTION" button. '), _defineProperty(_es$data, 'HELP_10_Desc_10', 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. '), _defineProperty(_es$data, 'HELP_10_Desc_11', 'On your online computer, paste the signed transaction into the text field in step #3 and click "Enviar Ether y Tokens". This will broadcast your transaction. '), _defineProperty(_es$data, 'HELP_12_Title', '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist? '), _defineProperty(_es$data, 'HELP_12_Desc_1', 'Using an Geth/Mist JSON file from MyEtherWallet v2+.... '), _defineProperty(_es$data, 'HELP_12_Desc_2', 'Go to the "View Wallet Info" page. '), _defineProperty(_es$data, 'HELP_12_Desc_3', 'Unlock your wallet using your **encrypted** private key or JSON file. '), _defineProperty(_es$data, 'HELP_12_Desc_4', 'Go to the "My Wallets" page. '), _defineProperty(_es$data, 'HELP_12_Desc_5', 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. '), _defineProperty(_es$data, 'HELP_12_Desc_6', 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file. '), _defineProperty(_es$data, 'HELP_12_Desc_7', 'Open the Ethereum Wallet application. '), _defineProperty(_es$data, 'HELP_12_Desc_8', 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts" '), _defineProperty(_es$data, 'HELP_12_Desc_9', 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder. '), _defineProperty(_es$data, 'HELP_12_Desc_10', 'Your account should show up immediately under "Accounts." '), _defineProperty(_es$data, 'HELP_12_Desc_11', 'Using your unencrypted private key... '), _defineProperty(_es$data, 'HELP_12_Desc_12', 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page. '), _defineProperty(_es$data, 'HELP_12_Desc_13', 'Select your wallet file -or- enter/paste your private key to unlock your wallet. '), _defineProperty(_es$data, 'HELP_12_Desc_14', 'Copy Your Private Key (unencrypted). '), _defineProperty(_es$data, 'HELP_12_Desc_15', 'If you are on a Mac: '), _defineProperty(_es$data, 'HELP_12_Desc_15b', 'If you are on a PC: '), _defineProperty(_es$data, 'HELP_12_Desc_16', 'Open Text Edit and paste this private key. '), _defineProperty(_es$data, 'HELP_12_Desc_17', 'Go to the menu bar and click "Format" -> "Make Plain Text". '), _defineProperty(_es$data, 'HELP_12_Desc_18', 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog. '), _defineProperty(_es$data, 'HELP_12_Desc_19', 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_20', 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. '), _defineProperty(_es$data, 'HELP_12_Desc_21', 'After successful import, delete `nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_22', 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". '), _defineProperty(_es$data, 'HELP_12_Desc_23', 'Open Notepad & paste the private key '), _defineProperty(_es$data, 'HELP_12_Desc_24', 'Save the file as `nothing_special_delete_me.txt` at `C:` '), _defineProperty(_es$data, 'HELP_12_Desc_25', 'Run the command, `geth account import C:\\nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_26', 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. '), _defineProperty(_es$data, 'HELP_12_Desc_27', 'After successful import, delete `nothing_special_delete_me.txt` '), _defineProperty(_es$data, 'HELP_12_Desc_28', 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". '), _defineProperty(_es$data, 'HELP_13_Title', '13) What does "Insufficient funds. Account you try to send transaction from does not have enough funds. Required XXXXXXXXXXXXXXXXXXX and got: XXXXXXXXXXXXXXXX." Mean? '), _defineProperty(_es$data, 'HELP_13_Desc_1', 'This means you do not have enough Ether in your account to cover the cost of gas. Each transaction (including token and contract transactions) require gas and that gas is paid in Ether. The number displayed is the amount required to cover the cost of the transaction in Wei. Take that number, divide by `1000000000000000000`, and subtract the amount of Ether you were trying to send (if you were attempting to send Ether). This will give you the amount of Ether you need to send to that account to make the transaction. '), _defineProperty(_es$data, 'HELP_14_Title', '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe? '), _defineProperty(_es$data, 'HELP_14_Desc_1', 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto). '), _defineProperty(_es$data, 'HELP_15_Title', '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan) '), _defineProperty(_es$data, 'HELP_15_Desc_1', 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it. '), _defineProperty(_es$data, 'HELP_16_Title', '16) How do I check the balance of my account? '), _defineProperty(_es$data, 'HELP_16_Desc_1', 'You can use a blockchain explorer like [etherscan.io](https://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](https://etherscan.io/address/0xDECAF9CD2367cdbb726E904cD6397eDFcAe6068D) looks like on etherscan.io '), _defineProperty(_es$data, 'HELP_17_Title', '17) Why isn\'t my balance showing up when I unlock my wallet? '), _defineProperty(_es$data, 'HELP_17_Desc_1', 'This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io '), _defineProperty(_es$data, 'HELP_18_Title', '18) Where is my geth wallet file? '), _defineProperty(_es$data, 'HELP_19_Title', '19) Where is my Mist wallet file? '), _defineProperty(_es$data, 'HELP_19_Desc_1', 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored. '), _defineProperty(_es$data, 'HELP_20_Title', '20) Where is my pre-sale wallet file? '), _defineProperty(_es$data, 'HELP_20_Desc_1', 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale. '), _defineProperty(_es$data, 'HELP_21_Title', '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? '), _defineProperty(_es$data, 'HELP_21_Desc_1', 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no. '), _defineProperty(_es$data, 'HELP_21_Desc_2', 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts. '), _defineProperty(_es$data, 'HELP_21_Desc_3', 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems. '), _defineProperty(_es$data, 'HELP_21_Desc_4', 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password. '), _defineProperty(_es$data, 'HELP_21_Desc_5', 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match. '), _defineProperty(_es$data, 'HELP_21_Desc_6', 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion. '), _defineProperty(_es$data, 'HELP_21_Desc_7', '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space. '), _defineProperty(_es$data, 'HELP_21_Desc_8', 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day. '), _defineProperty(_es$data, 'HELP_SecCX_Title', 'Seguridad - MyEtherWallet CX '), _defineProperty(_es$data, 'HELP_SecCX_Desc_1', '¿Dónde está guardando mi información esta extensión? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_2', 'La información que guardas en esta extensión de Chrome se guarda por medio de [chrome.storage](http://chrome.storage/). - este es el mismo lugar en el que se guardan tus contraseñas cuando guardas tus contraseñas en Chrome. '), _defineProperty(_es$data, 'HELP_SecCX_Desc_3', '¿Qué información se guarda? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_4', 'La dirección, alias y clave privada se guardan en chrome.storage. La clave privada se cifra utilizando la contraseña que introdujiste al añadir la cartra. El alias y la dirección de la cartera no están cifrados. '), _defineProperty(_es$data, 'HELP_SecCX_Desc_5', '¿Por qué no se cifran el alias y la dirección de la cartera? '), _defineProperty(_es$data, 'HELP_SecCX_Desc_6', 'Si cifráramos estos ítems, sería necesario que introduzcas una contraseña cada vez que quisieras comprobar el saldo de tu cuenta o vizualizar los alias. Si esto te preocupa, te recomendamos que utilices MyEtherWallet.com en lugar de esta extensión de Chrome. '), _defineProperty(_es$data, 'HELP_Sec_Title', 'Seguridad '), _defineProperty(_es$data, 'HELP_Sec_Desc_1', 'Si una de tus primeras preguntas es "¿Por qué debería confiar en estas personas?, se trata de algo bueno. Esperamos que lo que sigue te sirva de ayuda para disminuir tus preocupaciones. '), _defineProperty(_es$data, 'HELP_Sec_Desc_2', 'Hemos estado funcionando desde agosto de 2015. Si buscas ["myetherwallet" en reddit](https://www.reddit.com/search?q=myetherwallet), puedes encontrar numerosas personas que nos utilizan con gran éxito. '), _defineProperty(_es$data, 'HELP_Sec_Desc_3', 'No vamos a quitarte tu dinero ni a robar tus claves privadas. No hay código malicioso en este sitio. De hecho, las páginas "Generar Cartera" se ejecutan por completo en el cliente. Esto significa que todo el código se ejecuta en ** tu ordenador** y nunca se graba o se transmite a ningún lugar. '), _defineProperty(_es$data, 'HELP_Sec_Desc_4', 'Comprueba la URL -- Este sitio se sirve a través de GitHub y puedes ver el código fuente aquí: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) a [https://www.myetherwallet.com](https://www.myetherwallet.com). '), _defineProperty(_es$data, 'HELP_Sec_Desc_5', 'Para generar carteras, puedes descargar el [código fuente](https://github.com/kvhnuke/etherwallet/releases/latest). Ver #5 más arriba. '), _defineProperty(_es$data, 'HELP_Sec_Desc_6', 'Haz una prueba y observa qué actividad de red ocurre. La manera más fácil de hacer esto es hacer clic con el botón derecho en la página y hacer clic en "inspeccionar elemento". Ve a la pestaña "Red". Genera una cartera de prueba. Verás que no hay actividad de red. Puede que veas algo que aparece como data:image/gif y data:image/png. Se trata de los códigos QR generándose en tu ordenador y por tu ordenador. No se ha transferido ni un solo byte. '), _defineProperty(_es$data, 'HELP_Sec_Desc_8', 'Si no te encuentras cómodo utilizando esta herramienta, no la utilices bajo ningún concepto. Hemos creado esta herramienta como una manera útil para que la gente pueda generar carteras y hacer transacciones sin tener que utilizar la línea de comandos o ejecutar un nodo completo. De nuevo, por favor contáctanos si tienes inquietudes y responderemos lo más pronto posible. ¡Gracias! '), _defineProperty(_es$data, 'HELP_FAQ_Title', 'Más respuestas útiles a preguntas frecuentes '), _defineProperty(_es$data, 'HELP_Contact_Title', 'Maneras de contactar con nosotros'), _es$data); module.exports = es; -},{}],126:[function(require,module,exports){ +},{}],132:[function(require,module,exports){ // Farsi / Persian Last sync with en.js : commit f025c496254b8ce69660b682f90ec3dc5a12caa8 'use strict'; @@ -25221,7 +25527,7 @@ fa.data = (_fa$data = { module.exports = fa; -},{}],127:[function(require,module,exports){ +},{}],133:[function(require,module,exports){ // Finnish 'use strict'; @@ -25386,7 +25692,7 @@ fi.data = (_fi$data = { module.exports = fi; -},{}],128:[function(require,module,exports){ +},{}],134:[function(require,module,exports){ // French 'use strict'; @@ -25551,7 +25857,7 @@ fr.data = (_fr$data = { module.exports = fr; -},{}],129:[function(require,module,exports){ +},{}],135:[function(require,module,exports){ //Kreyol 'use strict'; @@ -25716,7 +26022,7 @@ ht.data = (_ht$data = { module.exports = ht; -},{}],130:[function(require,module,exports){ +},{}],136:[function(require,module,exports){ // Hungarian 'use strict'; @@ -25881,7 +26187,7 @@ hu.data = (_hu$data = { module.exports = hu; -},{}],131:[function(require,module,exports){ +},{}],137:[function(require,module,exports){ // Indonesian 'use strict'; @@ -26046,7 +26352,7 @@ id.data = (_id$data = { module.exports = id; -},{}],132:[function(require,module,exports){ +},{}],138:[function(require,module,exports){ // Italian // Last sync with en.js : commit ff3b9cb53afbdf9936d4655f0a0af210f926daef 'use strict'; @@ -26212,7 +26518,7 @@ it.data = (_it$data = { module.exports = it; -},{}],133:[function(require,module,exports){ +},{}],139:[function(require,module,exports){ // Japanese 'use strict'; @@ -26381,7 +26687,7 @@ ja.data = (_ja$data = { module.exports = ja; -},{}],134:[function(require,module,exports){ +},{}],140:[function(require,module,exports){ // Korean 'use strict'; @@ -26546,7 +26852,7 @@ ko.data = (_ko$data = { module.exports = ko; -},{}],135:[function(require,module,exports){ +},{}],141:[function(require,module,exports){ // Dutch 'use strict'; @@ -26711,7 +27017,7 @@ nl.data = (_nl$data = { module.exports = nl; -},{}],136:[function(require,module,exports){ +},{}],142:[function(require,module,exports){ // Norwegian 'use strict'; @@ -26876,7 +27182,7 @@ no.data = (_no$data = { module.exports = no; -},{}],137:[function(require,module,exports){ +},{}],143:[function(require,module,exports){ // Polish 'use strict'; @@ -27041,7 +27347,7 @@ pl.data = (_pl$data = { module.exports = pl; -},{}],138:[function(require,module,exports){ +},{}],144:[function(require,module,exports){ // Portuguese 'use strict'; @@ -27206,7 +27512,7 @@ pt.data = (_pt$data = { module.exports = pt; -},{}],139:[function(require,module,exports){ +},{}],145:[function(require,module,exports){ // Russian 'use strict'; @@ -27371,7 +27677,7 @@ ru.data = (_ru$data = { module.exports = ru; -},{}],140:[function(require,module,exports){ +},{}],146:[function(require,module,exports){ // English 'use strict'; @@ -27536,7 +27842,7 @@ th.data = (_th$data = { module.exports = th; -},{}],141:[function(require,module,exports){ +},{}],147:[function(require,module,exports){ // Turkish 'use strict'; @@ -27701,7 +28007,7 @@ tr.data = (_tr$data = { module.exports = tr; -},{}],142:[function(require,module,exports){ +},{}],148:[function(require,module,exports){ 'use strict'; var ca = require('./ca'); @@ -27767,7 +28073,7 @@ translate.marked = function (data) { }; module.exports = translate; -},{"./ca":121,"./de":122,"./el":123,"./en":124,"./es":125,"./fa":126,"./fi":127,"./fr":128,"./ht":129,"./hu":130,"./id":131,"./it":132,"./ja":133,"./ko":134,"./nl":135,"./no":136,"./pl":137,"./pt":138,"./ru":139,"./th":140,"./tr":141,"./vi":143,"./zhcn":144,"./zhtw":145}],143:[function(require,module,exports){ +},{"./ca":127,"./de":128,"./el":129,"./en":130,"./es":131,"./fa":132,"./fi":133,"./fr":134,"./ht":135,"./hu":136,"./id":137,"./it":138,"./ja":139,"./ko":140,"./nl":141,"./no":142,"./pl":143,"./pt":144,"./ru":145,"./th":146,"./tr":147,"./vi":149,"./zhcn":150,"./zhtw":151}],149:[function(require,module,exports){ // Vietnamese 'use strict'; @@ -27932,7 +28238,7 @@ vi.data = (_vi$data = { module.exports = vi; -},{}],144:[function(require,module,exports){ +},{}],150:[function(require,module,exports){ // simplified Chinese, zh-CN, 简体中文 'use strict'; @@ -28097,7 +28403,7 @@ zhcn.data = (_zhcn$data = { module.exports = zhcn; -},{}],145:[function(require,module,exports){ +},{}],151:[function(require,module,exports){ // Traditional Chinese 繁體中文 - zh-tw.js 'use strict'; @@ -28262,7 +28568,7 @@ zhtw.data = (_zhtw$data = { module.exports = zhtw; -},{}],146:[function(require,module,exports){ +},{}],152:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -28562,6 +28868,7 @@ uiFuncs.notifier = { var duration = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 7000; msg = msg.message ? msg.message : msg; + console.log(msg); //todo remove dev item // Danger messages can be translated based on the type of node msg = globalFuncs.getEthNodeMsg(msg); this.addAlert("danger", msg, duration); @@ -28600,7 +28907,7 @@ uiFuncs.notifier = { module.exports = uiFuncs; }).call(this,require("buffer").Buffer) -},{"buffer":219}],147:[function(require,module,exports){ +},{"buffer":225}],153:[function(require,module,exports){ 'use strict'; var validator = function validator() {}; @@ -28677,7 +28984,7 @@ validator.isValidURL = function (str) { }; module.exports = validator; -},{}],148:[function(require,module,exports){ +},{}],154:[function(require,module,exports){ 'use strict'; var Wallet = require('./myetherwallet.js'); @@ -28733,7 +29040,7 @@ Web3Wallet.prototype.getV3Filename = function (timestamp) { module.exports = Web3Wallet; -},{"./myetherwallet.js":74}],149:[function(require,module,exports){ +},{"./myetherwallet.js":77}],155:[function(require,module,exports){ 'use strict'; /** @@ -32828,13 +33135,13 @@ module.exports = Web3Wallet; }).info({ angularVersion: '1.6.8' }).directive('ngAnimateSwap', ngAnimateSwapDirective).directive('ngAnimateChildren', $$AnimateChildrenDirective).factory('$$rAFScheduler', $$rAFSchedulerFactory).provider('$$animateQueue', $$AnimateQueueProvider).provider('$$animation', $$AnimationProvider).provider('$animateCss', $AnimateCssProvider).provider('$$animateCssDriver', $$AnimateCssDriverProvider).provider('$$animateJs', $$AnimateJsProvider).provider('$$animateJsDriver', $$AnimateJsDriverProvider); })(window, window.angular); -},{}],150:[function(require,module,exports){ +},{}],156:[function(require,module,exports){ 'use strict'; require('./angular-animate'); module.exports = 'ngAnimate'; -},{"./angular-animate":149}],151:[function(require,module,exports){ +},{"./angular-animate":155}],157:[function(require,module,exports){ 'use strict'; /** @@ -33593,13 +33900,13 @@ module.exports = 'ngAnimate'; }]); })(window, window.angular); -},{}],152:[function(require,module,exports){ +},{}],158:[function(require,module,exports){ 'use strict'; require('./angular-sanitize'); module.exports = 'ngSanitize'; -},{"./angular-sanitize":151}],153:[function(require,module,exports){ +},{"./angular-sanitize":157}],159:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -33654,7 +33961,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return 'pascalprecht.translate'; }); -},{}],154:[function(require,module,exports){ +},{}],160:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37422,7 +37729,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return 'pascalprecht.translate'; }); -},{}],155:[function(require,module,exports){ +},{}],161:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -71048,13 +71355,13 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol !window.angular.$$csp().noInlineStyle && window.angular.element(document.head).prepend(''); -},{}],156:[function(require,module,exports){ +},{}],162:[function(require,module,exports){ 'use strict'; require('./angular'); module.exports = angular; -},{"./angular":155}],157:[function(require,module,exports){ +},{"./angular":161}],163:[function(require,module,exports){ 'use strict'; var asn1 = exports; @@ -71067,7 +71374,7 @@ asn1.constants = require('./asn1/constants'); asn1.decoders = require('./asn1/decoders'); asn1.encoders = require('./asn1/encoders'); -},{"./asn1/api":158,"./asn1/base":160,"./asn1/constants":164,"./asn1/decoders":166,"./asn1/encoders":169,"bn.js":186}],158:[function(require,module,exports){ +},{"./asn1/api":164,"./asn1/base":166,"./asn1/constants":170,"./asn1/decoders":172,"./asn1/encoders":175,"bn.js":192}],164:[function(require,module,exports){ 'use strict'; var asn1 = require('../asn1'); @@ -71126,7 +71433,7 @@ Entity.prototype.encode = function encode(data, enc, /* internal */reporter) { return this._getEncoder(enc).encode(data, reporter); }; -},{"../asn1":157,"inherits":608,"vm":695}],159:[function(require,module,exports){ +},{"../asn1":163,"inherits":614,"vm":701}],165:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -71234,7 +71541,7 @@ EncoderBuffer.prototype.join = function join(out, offset) { return out; }; -},{"../base":160,"buffer":219,"inherits":608}],160:[function(require,module,exports){ +},{"../base":166,"buffer":225,"inherits":614}],166:[function(require,module,exports){ 'use strict'; var base = exports; @@ -71244,7 +71551,7 @@ base.DecoderBuffer = require('./buffer').DecoderBuffer; base.EncoderBuffer = require('./buffer').EncoderBuffer; base.Node = require('./node'); -},{"./buffer":159,"./node":161,"./reporter":162}],161:[function(require,module,exports){ +},{"./buffer":165,"./node":167,"./reporter":168}],167:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -71773,7 +72080,7 @@ Node.prototype._isPrintstr = function isPrintstr(str) { ); }; -},{"../base":160,"minimalistic-assert":625}],162:[function(require,module,exports){ +},{"../base":166,"minimalistic-assert":631}],168:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -71893,7 +72200,7 @@ ReporterError.prototype.rethrow = function rethrow(msg) { return this; }; -},{"inherits":608}],163:[function(require,module,exports){ +},{"inherits":614}],169:[function(require,module,exports){ 'use strict'; var constants = require('../constants'); @@ -71939,7 +72246,7 @@ exports.tag = { }; exports.tagByName = constants._reverse(exports.tag); -},{"../constants":164}],164:[function(require,module,exports){ +},{"../constants":170}],170:[function(require,module,exports){ 'use strict'; var constants = exports; @@ -71961,7 +72268,7 @@ constants._reverse = function reverse(map) { constants.der = require('./der'); -},{"./der":163}],165:[function(require,module,exports){ +},{"./der":169}],171:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -72239,7 +72546,7 @@ function derDecodeLen(buf, primitive, fail) { return len; } -},{"../../asn1":157,"inherits":608}],166:[function(require,module,exports){ +},{"../../asn1":163,"inherits":614}],172:[function(require,module,exports){ 'use strict'; var decoders = exports; @@ -72247,7 +72554,7 @@ var decoders = exports; decoders.der = require('./der'); decoders.pem = require('./pem'); -},{"./der":165,"./pem":167}],167:[function(require,module,exports){ +},{"./der":171,"./pem":173}],173:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -72295,7 +72602,7 @@ PEMDecoder.prototype.decode = function decode(data, options) { return DERDecoder.prototype.decode.call(this, input, options); }; -},{"./der":165,"buffer":219,"inherits":608}],168:[function(require,module,exports){ +},{"./der":171,"buffer":225,"inherits":614}],174:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -72540,7 +72847,7 @@ function encodeTag(tag, primitive, cls, reporter) { return res; } -},{"../../asn1":157,"buffer":219,"inherits":608}],169:[function(require,module,exports){ +},{"../../asn1":163,"buffer":225,"inherits":614}],175:[function(require,module,exports){ 'use strict'; var encoders = exports; @@ -72548,7 +72855,7 @@ var encoders = exports; encoders.der = require('./der'); encoders.pem = require('./pem'); -},{"./der":168,"./pem":170}],170:[function(require,module,exports){ +},{"./der":174,"./pem":176}],176:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -72573,7 +72880,7 @@ PEMEncoder.prototype.encode = function encode(data, options) { return out.join('\n'); }; -},{"./der":168,"inherits":608}],171:[function(require,module,exports){ +},{"./der":174,"inherits":614}],177:[function(require,module,exports){ (function (global){ 'use strict'; @@ -73048,7 +73355,7 @@ var objectKeys = Object.keys || function (obj) { }; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"util/":689}],172:[function(require,module,exports){ +},{"util/":695}],178:[function(require,module,exports){ (function (global){ "use strict"; @@ -73080,7 +73387,7 @@ define(String.prototype, "padRight", "".padEnd); }); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"core-js/fn/regexp/escape":222,"core-js/shim":545,"regenerator-runtime/runtime":173}],173:[function(require,module,exports){ +},{"core-js/fn/regexp/escape":228,"core-js/shim":551,"regenerator-runtime/runtime":179}],179:[function(require,module,exports){ (function (global){ "use strict"; @@ -73790,7 +74097,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol (typeof global === "undefined" ? "undefined" : _typeof(global)) === "object" ? global : (typeof window === "undefined" ? "undefined" : _typeof(window)) === "object" ? window : (typeof self === "undefined" ? "undefined" : _typeof(self)) === "object" ? self : undefined); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],174:[function(require,module,exports){ +},{}],180:[function(require,module,exports){ 'use strict'; exports.byteLength = byteLength; @@ -73906,7 +74213,7 @@ function fromByteArray(uint8) { return parts.join(''); } -},{}],175:[function(require,module,exports){ +},{}],181:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -76637,7 +76944,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol } })(undefined); -},{}],176:[function(require,module,exports){ +},{}],182:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -76795,7 +77102,7 @@ module.exports = { } }; -},{"./wordlists/chinese_simplified.json":177,"./wordlists/chinese_traditional.json":178,"./wordlists/english.json":179,"./wordlists/french.json":180,"./wordlists/italian.json":181,"./wordlists/japanese.json":182,"./wordlists/korean.json":183,"./wordlists/spanish.json":184,"create-hash":548,"pbkdf2":632,"randombytes":645,"safe-buffer":662,"unorm":684}],177:[function(require,module,exports){ +},{"./wordlists/chinese_simplified.json":183,"./wordlists/chinese_traditional.json":184,"./wordlists/english.json":185,"./wordlists/french.json":186,"./wordlists/italian.json":187,"./wordlists/japanese.json":188,"./wordlists/korean.json":189,"./wordlists/spanish.json":190,"create-hash":554,"pbkdf2":638,"randombytes":651,"safe-buffer":668,"unorm":690}],183:[function(require,module,exports){ module.exports=[ "的", "一", @@ -78847,7 +79154,7 @@ module.exports=[ "歇" ] -},{}],178:[function(require,module,exports){ +},{}],184:[function(require,module,exports){ module.exports=[ "的", "一", @@ -80899,7 +81206,7 @@ module.exports=[ "歇" ] -},{}],179:[function(require,module,exports){ +},{}],185:[function(require,module,exports){ module.exports=[ "abandon", "ability", @@ -82951,7 +83258,7 @@ module.exports=[ "zoo" ] -},{}],180:[function(require,module,exports){ +},{}],186:[function(require,module,exports){ module.exports=[ "abaisser", "abandon", @@ -85003,7 +85310,7 @@ module.exports=[ "zoologie" ] -},{}],181:[function(require,module,exports){ +},{}],187:[function(require,module,exports){ module.exports=[ "abaco", "abbaglio", @@ -87055,7 +87362,7 @@ module.exports=[ "zuppa" ] -},{}],182:[function(require,module,exports){ +},{}],188:[function(require,module,exports){ module.exports=[ "あいこくしん", "あいさつ", @@ -89107,7 +89414,7 @@ module.exports=[ "われる" ] -},{}],183:[function(require,module,exports){ +},{}],189:[function(require,module,exports){ module.exports=[ "가격", "가끔", @@ -91159,7 +91466,7 @@ module.exports=[ "힘껏" ] -},{}],184:[function(require,module,exports){ +},{}],190:[function(require,module,exports){ module.exports=[ "ábaco", "abdomen", @@ -93211,7 +93518,7 @@ module.exports=[ "zurdo" ] -},{}],185:[function(require,module,exports){ +},{}],191:[function(require,module,exports){ 'use strict'; // Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki @@ -93328,7 +93635,7 @@ module.exports = { encode: encode }; -},{"safe-buffer":662}],186:[function(require,module,exports){ +},{"safe-buffer":668}],192:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -96693,7 +97000,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol }; })(typeof module === 'undefined' || module, undefined); -},{"buffer":188}],187:[function(require,module,exports){ +},{"buffer":194}],193:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -96760,10 +97067,10 @@ if ((typeof self === 'undefined' ? 'undefined' : _typeof(self)) === 'object') { } catch (e) {} } -},{"crypto":188}],188:[function(require,module,exports){ +},{"crypto":194}],194:[function(require,module,exports){ "use strict"; -},{}],189:[function(require,module,exports){ +},{}],195:[function(require,module,exports){ 'use strict'; // based on the aes implimentation in triple sec @@ -96983,7 +97290,7 @@ AES.prototype.scrub = function () { module.exports.AES = AES; -},{"safe-buffer":662}],190:[function(require,module,exports){ +},{"safe-buffer":668}],196:[function(require,module,exports){ 'use strict'; var aes = require('./aes'); @@ -97104,7 +97411,7 @@ StreamCipher.prototype.setAAD = function setAAD(buf) { module.exports = StreamCipher; -},{"./aes":189,"./ghash":194,"./incr32":195,"buffer-xor":218,"cipher-base":220,"inherits":608,"safe-buffer":662}],191:[function(require,module,exports){ +},{"./aes":195,"./ghash":200,"./incr32":201,"buffer-xor":224,"cipher-base":226,"inherits":614,"safe-buffer":668}],197:[function(require,module,exports){ 'use strict'; var ciphers = require('./encrypter'); @@ -97121,7 +97428,7 @@ exports.createDecipher = exports.Decipher = deciphers.createDecipher; exports.createDecipheriv = exports.Decipheriv = deciphers.createDecipheriv; exports.listCiphers = exports.getCiphers = getCiphers; -},{"./decrypter":192,"./encrypter":193,"./modes/list.json":203}],192:[function(require,module,exports){ +},{"./decrypter":198,"./encrypter":199,"./modes/list.json":209}],198:[function(require,module,exports){ 'use strict'; var AuthCipher = require('./authCipher'); @@ -97246,7 +97553,7 @@ function createDecipher(suite, password) { exports.createDecipher = createDecipher; exports.createDecipheriv = createDecipheriv; -},{"./aes":189,"./authCipher":190,"./modes":202,"./streamCipher":205,"cipher-base":220,"evp_bytestokey":588,"inherits":608,"safe-buffer":662}],193:[function(require,module,exports){ +},{"./aes":195,"./authCipher":196,"./modes":208,"./streamCipher":211,"cipher-base":226,"evp_bytestokey":594,"inherits":614,"safe-buffer":668}],199:[function(require,module,exports){ 'use strict'; var MODES = require('./modes'); @@ -97364,7 +97671,7 @@ function createCipher(suite, password) { exports.createCipheriv = createCipheriv; exports.createCipher = createCipher; -},{"./aes":189,"./authCipher":190,"./modes":202,"./streamCipher":205,"cipher-base":220,"evp_bytestokey":588,"inherits":608,"safe-buffer":662}],194:[function(require,module,exports){ +},{"./aes":195,"./authCipher":196,"./modes":208,"./streamCipher":211,"cipher-base":226,"evp_bytestokey":594,"inherits":614,"safe-buffer":668}],200:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -97452,7 +97759,7 @@ GHASH.prototype.final = function (abl, bl) { module.exports = GHASH; -},{"safe-buffer":662}],195:[function(require,module,exports){ +},{"safe-buffer":668}],201:[function(require,module,exports){ "use strict"; function incr32(iv) { @@ -97471,7 +97778,7 @@ function incr32(iv) { } module.exports = incr32; -},{}],196:[function(require,module,exports){ +},{}],202:[function(require,module,exports){ 'use strict'; var xor = require('buffer-xor'); @@ -97492,7 +97799,7 @@ exports.decrypt = function (self, block) { return xor(out, pad); }; -},{"buffer-xor":218}],197:[function(require,module,exports){ +},{"buffer-xor":224}],203:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -97529,7 +97836,7 @@ exports.encrypt = function (self, data, decrypt) { return out; }; -},{"buffer-xor":218,"safe-buffer":662}],198:[function(require,module,exports){ +},{"buffer-xor":224,"safe-buffer":668}],204:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -97575,7 +97882,7 @@ exports.encrypt = function (self, chunk, decrypt) { return out; }; -},{"safe-buffer":662}],199:[function(require,module,exports){ +},{"safe-buffer":668}],205:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -97601,7 +97908,7 @@ exports.encrypt = function (self, chunk, decrypt) { return out; }; -},{"safe-buffer":662}],200:[function(require,module,exports){ +},{"safe-buffer":668}],206:[function(require,module,exports){ 'use strict'; var xor = require('buffer-xor'); @@ -97632,7 +97939,7 @@ exports.encrypt = function (self, chunk) { return xor(chunk, pad); }; -},{"../incr32":195,"buffer-xor":218,"safe-buffer":662}],201:[function(require,module,exports){ +},{"../incr32":201,"buffer-xor":224,"safe-buffer":668}],207:[function(require,module,exports){ "use strict"; exports.encrypt = function (self, block) { @@ -97643,7 +97950,7 @@ exports.decrypt = function (self, block) { return self._cipher.decryptBlock(block); }; -},{}],202:[function(require,module,exports){ +},{}],208:[function(require,module,exports){ 'use strict'; var modeModules = { @@ -97665,7 +97972,7 @@ for (var key in modes) { module.exports = modes; -},{"./cbc":196,"./cfb":197,"./cfb1":198,"./cfb8":199,"./ctr":200,"./ecb":201,"./list.json":203,"./ofb":204}],203:[function(require,module,exports){ +},{"./cbc":202,"./cfb":203,"./cfb1":204,"./cfb8":205,"./ctr":206,"./ecb":207,"./list.json":209,"./ofb":210}],209:[function(require,module,exports){ module.exports={ "aes-128-ecb": { "cipher": "AES", @@ -97858,7 +98165,7 @@ module.exports={ } } -},{}],204:[function(require,module,exports){ +},{}],210:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -97880,7 +98187,7 @@ exports.encrypt = function (self, chunk) { }; }).call(this,require("buffer").Buffer) -},{"buffer":219,"buffer-xor":218}],205:[function(require,module,exports){ +},{"buffer":225,"buffer-xor":224}],211:[function(require,module,exports){ 'use strict'; var aes = require('./aes'); @@ -97911,7 +98218,7 @@ StreamCipher.prototype._final = function () { module.exports = StreamCipher; -},{"./aes":189,"cipher-base":220,"inherits":608,"safe-buffer":662}],206:[function(require,module,exports){ +},{"./aes":195,"cipher-base":226,"inherits":614,"safe-buffer":668}],212:[function(require,module,exports){ 'use strict'; var ebtk = require('evp_bytestokey'); @@ -97988,7 +98295,7 @@ function getCiphers() { } exports.listCiphers = exports.getCiphers = getCiphers; -},{"browserify-aes/browser":191,"browserify-aes/modes":202,"browserify-des":207,"browserify-des/modes":208,"evp_bytestokey":588}],207:[function(require,module,exports){ +},{"browserify-aes/browser":197,"browserify-aes/modes":208,"browserify-des":213,"browserify-des/modes":214,"evp_bytestokey":594}],213:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -98037,7 +98344,7 @@ DES.prototype._final = function () { }; }).call(this,require("buffer").Buffer) -},{"buffer":219,"cipher-base":220,"des.js":554,"inherits":608}],208:[function(require,module,exports){ +},{"buffer":225,"cipher-base":226,"des.js":560,"inherits":614}],214:[function(require,module,exports){ 'use strict'; exports['des-ecb'] = { @@ -98065,7 +98372,7 @@ exports['des-ede'] = { iv: 0 }; -},{}],209:[function(require,module,exports){ +},{}],215:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -98110,12 +98417,12 @@ function getr(priv) { } }).call(this,require("buffer").Buffer) -},{"bn.js":186,"buffer":219,"randombytes":645}],210:[function(require,module,exports){ +},{"bn.js":192,"buffer":225,"randombytes":651}],216:[function(require,module,exports){ 'use strict'; module.exports = require('./browser/algorithms.json'); -},{"./browser/algorithms.json":211}],211:[function(require,module,exports){ +},{"./browser/algorithms.json":217}],217:[function(require,module,exports){ module.exports={ "sha224WithRSAEncryption": { "sign": "rsa", @@ -98269,7 +98576,7 @@ module.exports={ } } -},{}],212:[function(require,module,exports){ +},{}],218:[function(require,module,exports){ module.exports={ "1.3.132.0.10": "secp256k1", "1.3.132.0.33": "p224", @@ -98279,7 +98586,7 @@ module.exports={ "1.3.132.0.35": "p521" } -},{}],213:[function(require,module,exports){ +},{}],219:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -98376,7 +98683,7 @@ module.exports = { }; }).call(this,require("buffer").Buffer) -},{"./algorithms.json":211,"./sign":214,"./verify":215,"buffer":219,"create-hash":548,"inherits":608,"stream":679}],214:[function(require,module,exports){ +},{"./algorithms.json":217,"./sign":220,"./verify":221,"buffer":225,"create-hash":554,"inherits":614,"stream":685}],220:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -98528,7 +98835,7 @@ module.exports.getKey = getKey; module.exports.makeKey = makeKey; }).call(this,require("buffer").Buffer) -},{"./curves.json":212,"bn.js":186,"browserify-rsa":209,"buffer":219,"create-hmac":551,"elliptic":567,"parse-asn1":631}],215:[function(require,module,exports){ +},{"./curves.json":218,"bn.js":192,"browserify-rsa":215,"buffer":225,"create-hmac":557,"elliptic":573,"parse-asn1":637}],221:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -98613,7 +98920,7 @@ function checkValue(b, q) { module.exports = verify; }).call(this,require("buffer").Buffer) -},{"./curves.json":212,"bn.js":186,"buffer":219,"elliptic":567,"parse-asn1":631}],216:[function(require,module,exports){ +},{"./curves.json":218,"bn.js":192,"buffer":225,"elliptic":573,"parse-asn1":637}],222:[function(require,module,exports){ (function (global){ 'use strict'; @@ -99146,7 +99453,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol })(undefined); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],217:[function(require,module,exports){ +},{}],223:[function(require,module,exports){ 'use strict'; // Base58 encoding/decoding @@ -99240,7 +99547,7 @@ module.exports = { decode: decode }; -},{}],218:[function(require,module,exports){ +},{}],224:[function(require,module,exports){ (function (Buffer){ "use strict"; @@ -99256,7 +99563,7 @@ module.exports = function xor(a, b) { }; }).call(this,require("buffer").Buffer) -},{"buffer":219}],219:[function(require,module,exports){ +},{"buffer":225}],225:[function(require,module,exports){ /*! * The buffer module from node.js, for the browser. * @@ -100922,7 +101229,7 @@ function numberIsNaN(obj) { return obj !== obj; // eslint-disable-line no-self-compare } -},{"base64-js":174,"ieee754":606}],220:[function(require,module,exports){ +},{"base64-js":180,"ieee754":612}],226:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -101025,7 +101332,7 @@ CipherBase.prototype._toString = function (value, enc, fin) { module.exports = CipherBase; -},{"inherits":608,"safe-buffer":662,"stream":679,"string_decoder":681}],221:[function(require,module,exports){ +},{"inherits":614,"safe-buffer":668,"stream":685,"string_decoder":687}],227:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -101124,13 +101431,13 @@ module.exports = { }; }).call(this,require("buffer").Buffer) -},{"bs58":217,"buffer":219,"create-hash":548}],222:[function(require,module,exports){ +},{"bs58":223,"buffer":225,"create-hash":554}],228:[function(require,module,exports){ 'use strict'; require('../../modules/core.regexp.escape'); module.exports = require('../../modules/_core').RegExp.escape; -},{"../../modules/_core":243,"../../modules/core.regexp.escape":348}],223:[function(require,module,exports){ +},{"../../modules/_core":249,"../../modules/core.regexp.escape":354}],229:[function(require,module,exports){ 'use strict'; module.exports = function (it) { @@ -101138,7 +101445,7 @@ module.exports = function (it) { return it; }; -},{}],224:[function(require,module,exports){ +},{}],230:[function(require,module,exports){ 'use strict'; var cof = require('./_cof'); @@ -101147,7 +101454,7 @@ module.exports = function (it, msg) { return +it; }; -},{"./_cof":238}],225:[function(require,module,exports){ +},{"./_cof":244}],231:[function(require,module,exports){ 'use strict'; // 22.1.3.31 Array.prototype[@@unscopables] @@ -101158,7 +101465,7 @@ module.exports = function (key) { ArrayProto[UNSCOPABLES][key] = true; }; -},{"./_hide":262,"./_wks":346}],226:[function(require,module,exports){ +},{"./_hide":268,"./_wks":352}],232:[function(require,module,exports){ 'use strict'; module.exports = function (it, Constructor, name, forbiddenField) { @@ -101167,7 +101474,7 @@ module.exports = function (it, Constructor, name, forbiddenField) { }return it; }; -},{}],227:[function(require,module,exports){ +},{}],233:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -101176,7 +101483,7 @@ module.exports = function (it) { return it; }; -},{"./_is-object":271}],228:[function(require,module,exports){ +},{"./_is-object":277}],234:[function(require,module,exports){ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) 'use strict'; @@ -101204,7 +101511,7 @@ module.exports = [].copyWithin || function copyWithin(target /* = 0 */, start /* }return O; }; -},{"./_to-absolute-index":331,"./_to-length":335,"./_to-object":336}],229:[function(require,module,exports){ +},{"./_to-absolute-index":337,"./_to-length":341,"./_to-object":342}],235:[function(require,module,exports){ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) 'use strict'; @@ -101223,7 +101530,7 @@ module.exports = function fill(value /* , start = 0, end = @length */) { }return O; }; -},{"./_to-absolute-index":331,"./_to-length":335,"./_to-object":336}],230:[function(require,module,exports){ +},{"./_to-absolute-index":337,"./_to-length":341,"./_to-object":342}],236:[function(require,module,exports){ 'use strict'; var forOf = require('./_for-of'); @@ -101234,7 +101541,7 @@ module.exports = function (iter, ITERATOR) { return result; }; -},{"./_for-of":259}],231:[function(require,module,exports){ +},{"./_for-of":265}],237:[function(require,module,exports){ 'use strict'; // false -> Array#indexOf @@ -101263,7 +101570,7 @@ module.exports = function (IS_INCLUDES) { }; }; -},{"./_to-absolute-index":331,"./_to-iobject":334,"./_to-length":335}],232:[function(require,module,exports){ +},{"./_to-absolute-index":337,"./_to-iobject":340,"./_to-length":341}],238:[function(require,module,exports){ 'use strict'; // 0 -> Array#forEach @@ -101316,7 +101623,7 @@ module.exports = function (TYPE, $create) { }; }; -},{"./_array-species-create":235,"./_ctx":245,"./_iobject":267,"./_to-length":335,"./_to-object":336}],233:[function(require,module,exports){ +},{"./_array-species-create":241,"./_ctx":251,"./_iobject":273,"./_to-length":341,"./_to-object":342}],239:[function(require,module,exports){ 'use strict'; var aFunction = require('./_a-function'); @@ -101349,7 +101656,7 @@ module.exports = function (that, callbackfn, aLen, memo, isRight) { }return memo; }; -},{"./_a-function":223,"./_iobject":267,"./_to-length":335,"./_to-object":336}],234:[function(require,module,exports){ +},{"./_a-function":229,"./_iobject":273,"./_to-length":341,"./_to-object":342}],240:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -101369,7 +101676,7 @@ module.exports = function (original) { }return C === undefined ? Array : C; }; -},{"./_is-array":269,"./_is-object":271,"./_wks":346}],235:[function(require,module,exports){ +},{"./_is-array":275,"./_is-object":277,"./_wks":352}],241:[function(require,module,exports){ 'use strict'; // 9.4.2.3 ArraySpeciesCreate(originalArray, length) @@ -101379,7 +101686,7 @@ module.exports = function (original, length) { return new (speciesConstructor(original))(length); }; -},{"./_array-species-constructor":234}],236:[function(require,module,exports){ +},{"./_array-species-constructor":240}],242:[function(require,module,exports){ 'use strict'; var aFunction = require('./_a-function'); @@ -101408,7 +101715,7 @@ module.exports = Function.bind || function bind(that /* , ...args */) { return bound; }; -},{"./_a-function":223,"./_invoke":266,"./_is-object":271}],237:[function(require,module,exports){ +},{"./_a-function":229,"./_invoke":272,"./_is-object":277}],243:[function(require,module,exports){ 'use strict'; // getting tag from 19.1.3.6 Object.prototype.toString() @@ -101437,7 +101744,7 @@ module.exports = function (it) { : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B; }; -},{"./_cof":238,"./_wks":346}],238:[function(require,module,exports){ +},{"./_cof":244,"./_wks":352}],244:[function(require,module,exports){ "use strict"; var toString = {}.toString; @@ -101446,7 +101753,7 @@ module.exports = function (it) { return toString.call(it).slice(8, -1); }; -},{}],239:[function(require,module,exports){ +},{}],245:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp').f; @@ -101596,7 +101903,7 @@ module.exports = { } }; -},{"./_an-instance":226,"./_ctx":245,"./_descriptors":249,"./_for-of":259,"./_iter-define":275,"./_iter-step":277,"./_meta":285,"./_object-create":290,"./_object-dp":291,"./_redefine-all":310,"./_set-species":317,"./_validate-collection":343}],240:[function(require,module,exports){ +},{"./_an-instance":232,"./_ctx":251,"./_descriptors":255,"./_for-of":265,"./_iter-define":281,"./_iter-step":283,"./_meta":291,"./_object-create":296,"./_object-dp":297,"./_redefine-all":316,"./_set-species":323,"./_validate-collection":349}],246:[function(require,module,exports){ 'use strict'; // https://github.com/DavidBruant/Map-Set.prototype.toJSON @@ -101609,7 +101916,7 @@ module.exports = function (NAME) { }; }; -},{"./_array-from-iterable":230,"./_classof":237}],241:[function(require,module,exports){ +},{"./_array-from-iterable":236,"./_classof":243}],247:[function(require,module,exports){ 'use strict'; var redefineAll = require('./_redefine-all'); @@ -101695,7 +102002,7 @@ module.exports = { ufstore: uncaughtFrozenStore }; -},{"./_an-instance":226,"./_an-object":227,"./_array-methods":232,"./_for-of":259,"./_has":261,"./_is-object":271,"./_meta":285,"./_redefine-all":310,"./_validate-collection":343}],242:[function(require,module,exports){ +},{"./_an-instance":232,"./_an-object":233,"./_array-methods":238,"./_for-of":265,"./_has":267,"./_is-object":277,"./_meta":291,"./_redefine-all":316,"./_validate-collection":349}],248:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -101789,13 +102096,13 @@ module.exports = function (NAME, wrapper, methods, common, IS_MAP, IS_WEAK) { return C; }; -},{"./_an-instance":226,"./_export":253,"./_fails":255,"./_for-of":259,"./_global":260,"./_inherit-if-required":265,"./_is-object":271,"./_iter-detect":276,"./_meta":285,"./_redefine":311,"./_redefine-all":310,"./_set-to-string-tag":318}],243:[function(require,module,exports){ +},{"./_an-instance":232,"./_export":259,"./_fails":261,"./_for-of":265,"./_global":266,"./_inherit-if-required":271,"./_is-object":277,"./_iter-detect":282,"./_meta":291,"./_redefine":317,"./_redefine-all":316,"./_set-to-string-tag":324}],249:[function(require,module,exports){ 'use strict'; var core = module.exports = { version: '2.5.3' }; if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef -},{}],244:[function(require,module,exports){ +},{}],250:[function(require,module,exports){ 'use strict'; var $defineProperty = require('./_object-dp'); @@ -101805,7 +102112,7 @@ module.exports = function (object, index, value) { if (index in object) $defineProperty.f(object, index, createDesc(0, value));else object[index] = value; }; -},{"./_object-dp":291,"./_property-desc":309}],245:[function(require,module,exports){ +},{"./_object-dp":297,"./_property-desc":315}],251:[function(require,module,exports){ 'use strict'; // optional / simple context binding @@ -101832,7 +102139,7 @@ module.exports = function (fn, that, length) { }; }; -},{"./_a-function":223}],246:[function(require,module,exports){ +},{"./_a-function":229}],252:[function(require,module,exports){ 'use strict'; // 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString() @@ -101858,7 +102165,7 @@ module.exports = fails(function () { return s + ('00000' + Math.abs(y)).slice(s ? -6 : -4) + '-' + lz(d.getUTCMonth() + 1) + '-' + lz(d.getUTCDate()) + 'T' + lz(d.getUTCHours()) + ':' + lz(d.getUTCMinutes()) + ':' + lz(d.getUTCSeconds()) + '.' + (m > 99 ? m : '0' + lz(m)) + 'Z'; } : $toISOString; -},{"./_fails":255}],247:[function(require,module,exports){ +},{"./_fails":261}],253:[function(require,module,exports){ 'use strict'; var anObject = require('./_an-object'); @@ -101870,7 +102177,7 @@ module.exports = function (hint) { return toPrimitive(anObject(this), hint != NUMBER); }; -},{"./_an-object":227,"./_to-primitive":337}],248:[function(require,module,exports){ +},{"./_an-object":233,"./_to-primitive":343}],254:[function(require,module,exports){ "use strict"; // 7.2.1 RequireObjectCoercible(argument) @@ -101879,7 +102186,7 @@ module.exports = function (it) { return it; }; -},{}],249:[function(require,module,exports){ +},{}],255:[function(require,module,exports){ 'use strict'; // Thank's IE8 for his funny defineProperty @@ -101889,7 +102196,7 @@ module.exports = !require('./_fails')(function () { } }).a != 7; }); -},{"./_fails":255}],250:[function(require,module,exports){ +},{"./_fails":261}],256:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -101900,13 +102207,13 @@ module.exports = function (it) { return is ? document.createElement(it) : {}; }; -},{"./_global":260,"./_is-object":271}],251:[function(require,module,exports){ +},{"./_global":266,"./_is-object":277}],257:[function(require,module,exports){ 'use strict'; // IE 8- don't enum bug keys module.exports = 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'.split(','); -},{}],252:[function(require,module,exports){ +},{}],258:[function(require,module,exports){ 'use strict'; // all enumerable object keys, includes symbols @@ -101927,7 +102234,7 @@ module.exports = function (it) { }return result; }; -},{"./_object-gops":297,"./_object-keys":300,"./_object-pie":301}],253:[function(require,module,exports){ +},{"./_object-gops":303,"./_object-keys":306,"./_object-pie":307}],259:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -101974,7 +102281,7 @@ $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; -},{"./_core":243,"./_ctx":245,"./_global":260,"./_hide":262,"./_redefine":311}],254:[function(require,module,exports){ +},{"./_core":249,"./_ctx":251,"./_global":266,"./_hide":268,"./_redefine":317}],260:[function(require,module,exports){ 'use strict'; var MATCH = require('./_wks')('match'); @@ -101990,7 +102297,7 @@ module.exports = function (KEY) { }return true; }; -},{"./_wks":346}],255:[function(require,module,exports){ +},{"./_wks":352}],261:[function(require,module,exports){ "use strict"; module.exports = function (exec) { @@ -102001,7 +102308,7 @@ module.exports = function (exec) { } }; -},{}],256:[function(require,module,exports){ +},{}],262:[function(require,module,exports){ 'use strict'; var hide = require('./_hide'); @@ -102037,7 +102344,7 @@ module.exports = function (KEY, length, exec) { } }; -},{"./_defined":248,"./_fails":255,"./_hide":262,"./_redefine":311,"./_wks":346}],257:[function(require,module,exports){ +},{"./_defined":254,"./_fails":261,"./_hide":268,"./_redefine":317,"./_wks":352}],263:[function(require,module,exports){ 'use strict'; // 21.2.5.3 get RegExp.prototype.flags @@ -102053,7 +102360,7 @@ module.exports = function () { return result; }; -},{"./_an-object":227}],258:[function(require,module,exports){ +},{"./_an-object":233}],264:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-flatMap/#sec-FlattenIntoArray @@ -102095,7 +102402,7 @@ function flattenIntoArray(target, original, source, sourceLen, start, depth, map module.exports = flattenIntoArray; -},{"./_ctx":245,"./_is-array":269,"./_is-object":271,"./_to-length":335,"./_wks":346}],259:[function(require,module,exports){ +},{"./_ctx":251,"./_is-array":275,"./_is-object":277,"./_to-length":341,"./_wks":352}],265:[function(require,module,exports){ 'use strict'; var ctx = require('./_ctx'); @@ -102126,7 +102433,7 @@ var _exports = module.exports = function (iterable, entries, fn, that, ITERATOR) _exports.BREAK = BREAK; _exports.RETURN = RETURN; -},{"./_an-object":227,"./_ctx":245,"./_is-array-iter":268,"./_iter-call":273,"./_to-length":335,"./core.get-iterator-method":347}],260:[function(require,module,exports){ +},{"./_an-object":233,"./_ctx":251,"./_is-array-iter":274,"./_iter-call":279,"./_to-length":341,"./core.get-iterator-method":353}],266:[function(require,module,exports){ 'use strict'; // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 @@ -102135,7 +102442,7 @@ var global = module.exports = typeof window != 'undefined' && window.Math == Mat : Function('return this')(); if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef -},{}],261:[function(require,module,exports){ +},{}],267:[function(require,module,exports){ "use strict"; var hasOwnProperty = {}.hasOwnProperty; @@ -102143,7 +102450,7 @@ module.exports = function (it, key) { return hasOwnProperty.call(it, key); }; -},{}],262:[function(require,module,exports){ +},{}],268:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp'); @@ -102155,13 +102462,13 @@ module.exports = require('./_descriptors') ? function (object, key, value) { return object; }; -},{"./_descriptors":249,"./_object-dp":291,"./_property-desc":309}],263:[function(require,module,exports){ +},{"./_descriptors":255,"./_object-dp":297,"./_property-desc":315}],269:[function(require,module,exports){ 'use strict'; var document = require('./_global').document; module.exports = document && document.documentElement; -},{"./_global":260}],264:[function(require,module,exports){ +},{"./_global":266}],270:[function(require,module,exports){ 'use strict'; module.exports = !require('./_descriptors') && !require('./_fails')(function () { @@ -102170,7 +102477,7 @@ module.exports = !require('./_descriptors') && !require('./_fails')(function () } }).a != 7; }); -},{"./_descriptors":249,"./_dom-create":250,"./_fails":255}],265:[function(require,module,exports){ +},{"./_descriptors":255,"./_dom-create":256,"./_fails":261}],271:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -102183,7 +102490,7 @@ module.exports = function (that, target, C) { }return that; }; -},{"./_is-object":271,"./_set-proto":316}],266:[function(require,module,exports){ +},{"./_is-object":277,"./_set-proto":322}],272:[function(require,module,exports){ "use strict"; // fast apply, http://jsperf.lnkit.com/fast-apply/5 @@ -102203,7 +102510,7 @@ module.exports = function (fn, args, that) { }return fn.apply(that, args); }; -},{}],267:[function(require,module,exports){ +},{}],273:[function(require,module,exports){ 'use strict'; // fallback for non-array-like ES3 and non-enumerable old V8 strings @@ -102213,7 +102520,7 @@ module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) { return cof(it) == 'String' ? it.split('') : Object(it); }; -},{"./_cof":238}],268:[function(require,module,exports){ +},{"./_cof":244}],274:[function(require,module,exports){ 'use strict'; // check on default Array iterator @@ -102225,7 +102532,7 @@ module.exports = function (it) { return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it); }; -},{"./_iterators":278,"./_wks":346}],269:[function(require,module,exports){ +},{"./_iterators":284,"./_wks":352}],275:[function(require,module,exports){ 'use strict'; // 7.2.2 IsArray(argument) @@ -102234,7 +102541,7 @@ module.exports = Array.isArray || function isArray(arg) { return cof(arg) == 'Array'; }; -},{"./_cof":238}],270:[function(require,module,exports){ +},{"./_cof":244}],276:[function(require,module,exports){ 'use strict'; // 20.1.2.3 Number.isInteger(number) @@ -102244,7 +102551,7 @@ module.exports = function isInteger(it) { return !isObject(it) && isFinite(it) && floor(it) === it; }; -},{"./_is-object":271}],271:[function(require,module,exports){ +},{"./_is-object":277}],277:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -102253,7 +102560,7 @@ module.exports = function (it) { return (typeof it === 'undefined' ? 'undefined' : _typeof(it)) === 'object' ? it !== null : typeof it === 'function'; }; -},{}],272:[function(require,module,exports){ +},{}],278:[function(require,module,exports){ 'use strict'; // 7.2.8 IsRegExp(argument) @@ -102265,7 +102572,7 @@ module.exports = function (it) { return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp'); }; -},{"./_cof":238,"./_is-object":271,"./_wks":346}],273:[function(require,module,exports){ +},{"./_cof":244,"./_is-object":277,"./_wks":352}],279:[function(require,module,exports){ 'use strict'; // call something on iterator step with safe closing on error @@ -102281,7 +102588,7 @@ module.exports = function (iterator, fn, value, entries) { } }; -},{"./_an-object":227}],274:[function(require,module,exports){ +},{"./_an-object":233}],280:[function(require,module,exports){ 'use strict'; var create = require('./_object-create'); @@ -102299,7 +102606,7 @@ module.exports = function (Constructor, NAME, next) { setToStringTag(Constructor, NAME + ' Iterator'); }; -},{"./_hide":262,"./_object-create":290,"./_property-desc":309,"./_set-to-string-tag":318,"./_wks":346}],275:[function(require,module,exports){ +},{"./_hide":268,"./_object-create":296,"./_property-desc":315,"./_set-to-string-tag":324,"./_wks":352}],281:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library'); @@ -102384,7 +102691,7 @@ module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE return methods; }; -},{"./_export":253,"./_has":261,"./_hide":262,"./_iter-create":274,"./_iterators":278,"./_library":279,"./_object-gpo":298,"./_redefine":311,"./_set-to-string-tag":318,"./_wks":346}],276:[function(require,module,exports){ +},{"./_export":259,"./_has":267,"./_hide":268,"./_iter-create":280,"./_iterators":284,"./_library":285,"./_object-gpo":304,"./_redefine":317,"./_set-to-string-tag":324,"./_wks":352}],282:[function(require,module,exports){ 'use strict'; var ITERATOR = require('./_wks')('iterator'); @@ -102418,24 +102725,24 @@ module.exports = function (exec, skipClosing) { return safe; }; -},{"./_wks":346}],277:[function(require,module,exports){ +},{"./_wks":352}],283:[function(require,module,exports){ "use strict"; module.exports = function (done, value) { return { value: value, done: !!done }; }; -},{}],278:[function(require,module,exports){ +},{}],284:[function(require,module,exports){ "use strict"; module.exports = {}; -},{}],279:[function(require,module,exports){ +},{}],285:[function(require,module,exports){ "use strict"; module.exports = false; -},{}],280:[function(require,module,exports){ +},{}],286:[function(require,module,exports){ "use strict"; // 20.2.2.14 Math.expm1(x) @@ -102448,7 +102755,7 @@ module.exports = !$expm1 return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1; } : $expm1; -},{}],281:[function(require,module,exports){ +},{}],287:[function(require,module,exports){ 'use strict'; // 20.2.2.16 Math.fround(x) @@ -102475,7 +102782,7 @@ module.exports = Math.fround || function fround(x) { return $sign * result; }; -},{"./_math-sign":284}],282:[function(require,module,exports){ +},{"./_math-sign":290}],288:[function(require,module,exports){ "use strict"; // 20.2.2.20 Math.log1p(x) @@ -102483,7 +102790,7 @@ module.exports = Math.log1p || function log1p(x) { return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x); }; -},{}],283:[function(require,module,exports){ +},{}],289:[function(require,module,exports){ "use strict"; // https://rwaldron.github.io/proposal-math-extensions/ @@ -102503,7 +102810,7 @@ module.exports = Math.scale || function scale(x, inLow, inHigh, outLow, outHigh) return (x - inLow) * (outHigh - outLow) / (inHigh - inLow) + outLow; }; -},{}],284:[function(require,module,exports){ +},{}],290:[function(require,module,exports){ "use strict"; // 20.2.2.28 Math.sign(x) @@ -102512,7 +102819,7 @@ module.exports = Math.sign || function sign(x) { return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; }; -},{}],285:[function(require,module,exports){ +},{}],291:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -102571,7 +102878,7 @@ var meta = module.exports = { onFreeze: onFreeze }; -},{"./_fails":255,"./_has":261,"./_is-object":271,"./_object-dp":291,"./_uid":341}],286:[function(require,module,exports){ +},{"./_fails":261,"./_has":267,"./_is-object":277,"./_object-dp":297,"./_uid":347}],292:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -102630,7 +102937,7 @@ module.exports = { exp: exp }; -},{"./_export":253,"./_shared":320,"./es6.map":378,"./es6.weak-map":484}],287:[function(require,module,exports){ +},{"./_export":259,"./_shared":326,"./es6.map":384,"./es6.weak-map":490}],293:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -102701,7 +103008,7 @@ module.exports = function () { }; }; -},{"./_cof":238,"./_global":260,"./_task":330}],288:[function(require,module,exports){ +},{"./_cof":244,"./_global":266,"./_task":336}],294:[function(require,module,exports){ 'use strict'; // 25.4.1.5 NewPromiseCapability(C) @@ -102722,7 +103029,7 @@ module.exports.f = function (C) { return new PromiseCapability(C); }; -},{"./_a-function":223}],289:[function(require,module,exports){ +},{"./_a-function":229}],295:[function(require,module,exports){ 'use strict'; // 19.1.2.1 Object.assign(target, source, ...) @@ -102764,7 +103071,7 @@ module.exports = !$assign || require('./_fails')(function () { }return T; } : $assign; -},{"./_fails":255,"./_iobject":267,"./_object-gops":297,"./_object-keys":300,"./_object-pie":301,"./_to-object":336}],290:[function(require,module,exports){ +},{"./_fails":261,"./_iobject":273,"./_object-gops":303,"./_object-keys":306,"./_object-pie":307,"./_to-object":342}],296:[function(require,module,exports){ 'use strict'; // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) @@ -102810,7 +103117,7 @@ module.exports = Object.create || function create(O, Properties) { return Properties === undefined ? result : dPs(result, Properties); }; -},{"./_an-object":227,"./_dom-create":250,"./_enum-bug-keys":251,"./_html":263,"./_object-dps":292,"./_shared-key":319}],291:[function(require,module,exports){ +},{"./_an-object":233,"./_dom-create":256,"./_enum-bug-keys":257,"./_html":269,"./_object-dps":298,"./_shared-key":325}],297:[function(require,module,exports){ 'use strict'; var anObject = require('./_an-object'); @@ -102830,7 +103137,7 @@ exports.f = require('./_descriptors') ? Object.defineProperty : function defineP return O; }; -},{"./_an-object":227,"./_descriptors":249,"./_ie8-dom-define":264,"./_to-primitive":337}],292:[function(require,module,exports){ +},{"./_an-object":233,"./_descriptors":255,"./_ie8-dom-define":270,"./_to-primitive":343}],298:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp'); @@ -102848,7 +103155,7 @@ module.exports = require('./_descriptors') ? Object.defineProperties : function }return O; }; -},{"./_an-object":227,"./_descriptors":249,"./_object-dp":291,"./_object-keys":300}],293:[function(require,module,exports){ +},{"./_an-object":233,"./_descriptors":255,"./_object-dp":297,"./_object-keys":306}],299:[function(require,module,exports){ 'use strict'; // Forced replacement prototype accessors methods @@ -102860,7 +103167,7 @@ module.exports = require('./_library') || !require('./_fails')(function () { delete require('./_global')[K]; }); -},{"./_fails":255,"./_global":260,"./_library":279}],294:[function(require,module,exports){ +},{"./_fails":261,"./_global":266,"./_library":285}],300:[function(require,module,exports){ 'use strict'; var pIE = require('./_object-pie'); @@ -102880,7 +103187,7 @@ exports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]); }; -},{"./_descriptors":249,"./_has":261,"./_ie8-dom-define":264,"./_object-pie":301,"./_property-desc":309,"./_to-iobject":334,"./_to-primitive":337}],295:[function(require,module,exports){ +},{"./_descriptors":255,"./_has":267,"./_ie8-dom-define":270,"./_object-pie":307,"./_property-desc":315,"./_to-iobject":340,"./_to-primitive":343}],301:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -102904,7 +103211,7 @@ module.exports.f = function getOwnPropertyNames(it) { return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it)); }; -},{"./_object-gopn":296,"./_to-iobject":334}],296:[function(require,module,exports){ +},{"./_object-gopn":302,"./_to-iobject":340}],302:[function(require,module,exports){ 'use strict'; // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) @@ -102915,12 +103222,12 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { return $keys(O, hiddenKeys); }; -},{"./_enum-bug-keys":251,"./_object-keys-internal":299}],297:[function(require,module,exports){ +},{"./_enum-bug-keys":257,"./_object-keys-internal":305}],303:[function(require,module,exports){ "use strict"; exports.f = Object.getOwnPropertySymbols; -},{}],298:[function(require,module,exports){ +},{}],304:[function(require,module,exports){ 'use strict'; // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) @@ -102937,7 +103244,7 @@ module.exports = Object.getPrototypeOf || function (O) { }return O instanceof Object ? ObjectProto : null; }; -},{"./_has":261,"./_shared-key":319,"./_to-object":336}],299:[function(require,module,exports){ +},{"./_has":267,"./_shared-key":325,"./_to-object":342}],305:[function(require,module,exports){ 'use strict'; var has = require('./_has'); @@ -102960,7 +103267,7 @@ module.exports = function (object, names) { }return result; }; -},{"./_array-includes":231,"./_has":261,"./_shared-key":319,"./_to-iobject":334}],300:[function(require,module,exports){ +},{"./_array-includes":237,"./_has":267,"./_shared-key":325,"./_to-iobject":340}],306:[function(require,module,exports){ 'use strict'; // 19.1.2.14 / 15.2.3.14 Object.keys(O) @@ -102971,12 +103278,12 @@ module.exports = Object.keys || function keys(O) { return $keys(O, enumBugKeys); }; -},{"./_enum-bug-keys":251,"./_object-keys-internal":299}],301:[function(require,module,exports){ +},{"./_enum-bug-keys":257,"./_object-keys-internal":305}],307:[function(require,module,exports){ "use strict"; exports.f = {}.propertyIsEnumerable; -},{}],302:[function(require,module,exports){ +},{}],308:[function(require,module,exports){ 'use strict'; // most Object methods by ES6 should accept primitives @@ -102992,7 +103299,7 @@ module.exports = function (KEY, exec) { }), 'Object', exp); }; -},{"./_core":243,"./_export":253,"./_fails":255}],303:[function(require,module,exports){ +},{"./_core":249,"./_export":259,"./_fails":261}],309:[function(require,module,exports){ 'use strict'; var getKeys = require('./_object-keys'); @@ -103014,7 +103321,7 @@ module.exports = function (isEntries) { }; }; -},{"./_object-keys":300,"./_object-pie":301,"./_to-iobject":334}],304:[function(require,module,exports){ +},{"./_object-keys":306,"./_object-pie":307,"./_to-iobject":340}],310:[function(require,module,exports){ 'use strict'; // all object keys, includes non-enumerable and symbols @@ -103028,7 +103335,7 @@ module.exports = Reflect && Reflect.ownKeys || function ownKeys(it) { return getSymbols ? keys.concat(getSymbols(it)) : keys; }; -},{"./_an-object":227,"./_global":260,"./_object-gopn":296,"./_object-gops":297}],305:[function(require,module,exports){ +},{"./_an-object":233,"./_global":266,"./_object-gopn":302,"./_object-gops":303}],311:[function(require,module,exports){ 'use strict'; var $parseFloat = require('./_global').parseFloat; @@ -103040,7 +103347,7 @@ module.exports = 1 / $parseFloat(require('./_string-ws') + '-0') !== -Infinity ? return result === 0 && string.charAt(0) == '-' ? -0 : result; } : $parseFloat; -},{"./_global":260,"./_string-trim":328,"./_string-ws":329}],306:[function(require,module,exports){ +},{"./_global":266,"./_string-trim":334,"./_string-ws":335}],312:[function(require,module,exports){ 'use strict'; var $parseInt = require('./_global').parseInt; @@ -103053,7 +103360,7 @@ module.exports = $parseInt(ws + '08') !== 8 || $parseInt(ws + '0x16') !== 22 ? f return $parseInt(string, radix >>> 0 || (hex.test(string) ? 16 : 10)); } : $parseInt; -},{"./_global":260,"./_string-trim":328,"./_string-ws":329}],307:[function(require,module,exports){ +},{"./_global":266,"./_string-trim":334,"./_string-ws":335}],313:[function(require,module,exports){ "use strict"; module.exports = function (exec) { @@ -103064,7 +103371,7 @@ module.exports = function (exec) { } }; -},{}],308:[function(require,module,exports){ +},{}],314:[function(require,module,exports){ 'use strict'; var anObject = require('./_an-object'); @@ -103080,7 +103387,7 @@ module.exports = function (C, x) { return promiseCapability.promise; }; -},{"./_an-object":227,"./_is-object":271,"./_new-promise-capability":288}],309:[function(require,module,exports){ +},{"./_an-object":233,"./_is-object":277,"./_new-promise-capability":294}],315:[function(require,module,exports){ "use strict"; module.exports = function (bitmap, value) { @@ -103092,7 +103399,7 @@ module.exports = function (bitmap, value) { }; }; -},{}],310:[function(require,module,exports){ +},{}],316:[function(require,module,exports){ 'use strict'; var redefine = require('./_redefine'); @@ -103102,7 +103409,7 @@ module.exports = function (target, src, safe) { }return target; }; -},{"./_redefine":311}],311:[function(require,module,exports){ +},{"./_redefine":317}],317:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -103137,7 +103444,7 @@ require('./_core').inspectSource = function (it) { return typeof this == 'function' && this[SRC] || $toString.call(this); }); -},{"./_core":243,"./_global":260,"./_has":261,"./_hide":262,"./_uid":341}],312:[function(require,module,exports){ +},{"./_core":249,"./_global":266,"./_has":267,"./_hide":268,"./_uid":347}],318:[function(require,module,exports){ "use strict"; module.exports = function (regExp, replace) { @@ -103149,7 +103456,7 @@ module.exports = function (regExp, replace) { }; }; -},{}],313:[function(require,module,exports){ +},{}],319:[function(require,module,exports){ "use strict"; // 7.2.9 SameValue(x, y) @@ -103158,7 +103465,7 @@ module.exports = Object.is || function is(x, y) { return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y; }; -},{}],314:[function(require,module,exports){ +},{}],320:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/ @@ -103189,7 +103496,7 @@ module.exports = function (COLLECTION) { } }); }; -},{"./_a-function":223,"./_ctx":245,"./_export":253,"./_for-of":259}],315:[function(require,module,exports){ +},{"./_a-function":229,"./_ctx":251,"./_export":259,"./_for-of":265}],321:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/ @@ -103205,7 +103512,7 @@ module.exports = function (COLLECTION) { } }); }; -},{"./_export":253}],316:[function(require,module,exports){ +},{"./_export":259}],322:[function(require,module,exports){ 'use strict'; // Works with __proto__ only. Old v8 can't work with null proto objects. @@ -103235,7 +103542,7 @@ module.exports = { check: check }; -},{"./_an-object":227,"./_ctx":245,"./_is-object":271,"./_object-gopd":294}],317:[function(require,module,exports){ +},{"./_an-object":233,"./_ctx":251,"./_is-object":277,"./_object-gopd":300}],323:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -103253,7 +103560,7 @@ module.exports = function (KEY) { }); }; -},{"./_descriptors":249,"./_global":260,"./_object-dp":291,"./_wks":346}],318:[function(require,module,exports){ +},{"./_descriptors":255,"./_global":266,"./_object-dp":297,"./_wks":352}],324:[function(require,module,exports){ 'use strict'; var def = require('./_object-dp').f; @@ -103264,7 +103571,7 @@ module.exports = function (it, tag, stat) { if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag }); }; -},{"./_has":261,"./_object-dp":291,"./_wks":346}],319:[function(require,module,exports){ +},{"./_has":267,"./_object-dp":297,"./_wks":352}],325:[function(require,module,exports){ 'use strict'; var shared = require('./_shared')('keys'); @@ -103273,7 +103580,7 @@ module.exports = function (key) { return shared[key] || (shared[key] = uid(key)); }; -},{"./_shared":320,"./_uid":341}],320:[function(require,module,exports){ +},{"./_shared":326,"./_uid":347}],326:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -103283,7 +103590,7 @@ module.exports = function (key) { return store[key] || (store[key] = {}); }; -},{"./_global":260}],321:[function(require,module,exports){ +},{"./_global":266}],327:[function(require,module,exports){ 'use strict'; // 7.3.20 SpeciesConstructor(O, defaultConstructor) @@ -103296,7 +103603,7 @@ module.exports = function (O, D) { return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S); }; -},{"./_a-function":223,"./_an-object":227,"./_wks":346}],322:[function(require,module,exports){ +},{"./_a-function":229,"./_an-object":233,"./_wks":352}],328:[function(require,module,exports){ 'use strict'; var fails = require('./_fails'); @@ -103308,7 +103615,7 @@ module.exports = function (method, arg) { }); }; -},{"./_fails":255}],323:[function(require,module,exports){ +},{"./_fails":261}],329:[function(require,module,exports){ 'use strict'; var toInteger = require('./_to-integer'); @@ -103327,7 +103634,7 @@ module.exports = function (TO_STRING) { }; }; -},{"./_defined":248,"./_to-integer":333}],324:[function(require,module,exports){ +},{"./_defined":254,"./_to-integer":339}],330:[function(require,module,exports){ 'use strict'; // helper for String#{startsWith, endsWith, includes} @@ -103339,7 +103646,7 @@ module.exports = function (that, searchString, NAME) { return String(defined(that)); }; -},{"./_defined":248,"./_is-regexp":272}],325:[function(require,module,exports){ +},{"./_defined":254,"./_is-regexp":278}],331:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -103362,7 +103669,7 @@ module.exports = function (NAME, exec) { }), 'String', O); }; -},{"./_defined":248,"./_export":253,"./_fails":255}],326:[function(require,module,exports){ +},{"./_defined":254,"./_export":259,"./_fails":261}],332:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-string-pad-start-end @@ -103382,7 +103689,7 @@ module.exports = function (that, maxLength, fillString, left) { return left ? stringFiller + S : S + stringFiller; }; -},{"./_defined":248,"./_string-repeat":327,"./_to-length":335}],327:[function(require,module,exports){ +},{"./_defined":254,"./_string-repeat":333,"./_to-length":341}],333:[function(require,module,exports){ 'use strict'; var toInteger = require('./_to-integer'); @@ -103398,7 +103705,7 @@ module.exports = function repeat(count) { }return res; }; -},{"./_defined":248,"./_to-integer":333}],328:[function(require,module,exports){ +},{"./_defined":254,"./_to-integer":339}],334:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -103432,12 +103739,12 @@ var trim = exporter.trim = function (string, TYPE) { module.exports = exporter; -},{"./_defined":248,"./_export":253,"./_fails":255,"./_string-ws":329}],329:[function(require,module,exports){ +},{"./_defined":254,"./_export":259,"./_fails":261,"./_string-ws":335}],335:[function(require,module,exports){ 'use strict'; module.exports = '\t\n\x0B\f\r \xA0\u1680\u180E\u2000\u2001\u2002\u2003' + '\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; -},{}],330:[function(require,module,exports){ +},{}],336:[function(require,module,exports){ 'use strict'; var ctx = require('./_ctx'); @@ -103526,7 +103833,7 @@ module.exports = { clear: clearTask }; -},{"./_cof":238,"./_ctx":245,"./_dom-create":250,"./_global":260,"./_html":263,"./_invoke":266}],331:[function(require,module,exports){ +},{"./_cof":244,"./_ctx":251,"./_dom-create":256,"./_global":266,"./_html":269,"./_invoke":272}],337:[function(require,module,exports){ 'use strict'; var toInteger = require('./_to-integer'); @@ -103537,7 +103844,7 @@ module.exports = function (index, length) { return index < 0 ? max(index + length, 0) : min(index, length); }; -},{"./_to-integer":333}],332:[function(require,module,exports){ +},{"./_to-integer":339}],338:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/ecma262/#sec-toindex @@ -103551,7 +103858,7 @@ module.exports = function (it) { return length; }; -},{"./_to-integer":333,"./_to-length":335}],333:[function(require,module,exports){ +},{"./_to-integer":339,"./_to-length":341}],339:[function(require,module,exports){ "use strict"; // 7.1.4 ToInteger @@ -103561,7 +103868,7 @@ module.exports = function (it) { return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); }; -},{}],334:[function(require,module,exports){ +},{}],340:[function(require,module,exports){ 'use strict'; // to indexed object, toObject with fallback for non-array-like ES3 strings @@ -103571,7 +103878,7 @@ module.exports = function (it) { return IObject(defined(it)); }; -},{"./_defined":248,"./_iobject":267}],335:[function(require,module,exports){ +},{"./_defined":254,"./_iobject":273}],341:[function(require,module,exports){ 'use strict'; // 7.1.15 ToLength @@ -103581,7 +103888,7 @@ module.exports = function (it) { return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 }; -},{"./_to-integer":333}],336:[function(require,module,exports){ +},{"./_to-integer":339}],342:[function(require,module,exports){ 'use strict'; // 7.1.13 ToObject(argument) @@ -103590,7 +103897,7 @@ module.exports = function (it) { return Object(defined(it)); }; -},{"./_defined":248}],337:[function(require,module,exports){ +},{"./_defined":254}],343:[function(require,module,exports){ 'use strict'; // 7.1.1 ToPrimitive(input [, PreferredType]) @@ -103606,7 +103913,7 @@ module.exports = function (it, S) { throw TypeError("Can't convert object to primitive value"); }; -},{"./_is-object":271}],338:[function(require,module,exports){ +},{"./_is-object":277}],344:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -104091,7 +104398,7 @@ if (require('./_descriptors')) { }; } else module.exports = function () {/* empty */}; -},{"./_an-instance":226,"./_array-copy-within":228,"./_array-fill":229,"./_array-includes":231,"./_array-methods":232,"./_classof":237,"./_ctx":245,"./_descriptors":249,"./_export":253,"./_fails":255,"./_global":260,"./_has":261,"./_hide":262,"./_is-array-iter":268,"./_is-object":271,"./_iter-detect":276,"./_iterators":278,"./_library":279,"./_object-create":290,"./_object-dp":291,"./_object-gopd":294,"./_object-gopn":296,"./_object-gpo":298,"./_property-desc":309,"./_redefine-all":310,"./_set-species":317,"./_species-constructor":321,"./_to-absolute-index":331,"./_to-index":332,"./_to-integer":333,"./_to-length":335,"./_to-object":336,"./_to-primitive":337,"./_typed":340,"./_typed-buffer":339,"./_uid":341,"./_wks":346,"./core.get-iterator-method":347,"./es6.array.iterator":359}],339:[function(require,module,exports){ +},{"./_an-instance":232,"./_array-copy-within":234,"./_array-fill":235,"./_array-includes":237,"./_array-methods":238,"./_classof":243,"./_ctx":251,"./_descriptors":255,"./_export":259,"./_fails":261,"./_global":266,"./_has":267,"./_hide":268,"./_is-array-iter":274,"./_is-object":277,"./_iter-detect":282,"./_iterators":284,"./_library":285,"./_object-create":296,"./_object-dp":297,"./_object-gopd":300,"./_object-gopn":302,"./_object-gpo":304,"./_property-desc":315,"./_redefine-all":316,"./_set-species":323,"./_species-constructor":327,"./_to-absolute-index":337,"./_to-index":338,"./_to-integer":339,"./_to-length":341,"./_to-object":342,"./_to-primitive":343,"./_typed":346,"./_typed-buffer":345,"./_uid":347,"./_wks":352,"./core.get-iterator-method":353,"./es6.array.iterator":365}],345:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -104374,7 +104681,7 @@ hide($DataView[PROTOTYPE], $typed.VIEW, true); exports[ARRAY_BUFFER] = $ArrayBuffer; exports[DATA_VIEW] = $DataView; -},{"./_an-instance":226,"./_array-fill":229,"./_descriptors":249,"./_fails":255,"./_global":260,"./_hide":262,"./_library":279,"./_object-dp":291,"./_object-gopn":296,"./_redefine-all":310,"./_set-to-string-tag":318,"./_to-index":332,"./_to-integer":333,"./_to-length":335,"./_typed":340}],340:[function(require,module,exports){ +},{"./_an-instance":232,"./_array-fill":235,"./_descriptors":255,"./_fails":261,"./_global":266,"./_hide":268,"./_library":285,"./_object-dp":297,"./_object-gopn":302,"./_redefine-all":316,"./_set-to-string-tag":324,"./_to-index":338,"./_to-integer":339,"./_to-length":341,"./_typed":346}],346:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -104404,7 +104711,7 @@ module.exports = { VIEW: VIEW }; -},{"./_global":260,"./_hide":262,"./_uid":341}],341:[function(require,module,exports){ +},{"./_global":266,"./_hide":268,"./_uid":347}],347:[function(require,module,exports){ 'use strict'; var id = 0; @@ -104413,7 +104720,7 @@ module.exports = function (key) { return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); }; -},{}],342:[function(require,module,exports){ +},{}],348:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -104421,7 +104728,7 @@ var navigator = global.navigator; module.exports = navigator && navigator.userAgent || ''; -},{"./_global":260}],343:[function(require,module,exports){ +},{"./_global":266}],349:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -104430,7 +104737,7 @@ module.exports = function (it, TYPE) { return it; }; -},{"./_is-object":271}],344:[function(require,module,exports){ +},{"./_is-object":277}],350:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -104443,12 +104750,12 @@ module.exports = function (name) { if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) }); }; -},{"./_core":243,"./_global":260,"./_library":279,"./_object-dp":291,"./_wks-ext":345}],345:[function(require,module,exports){ +},{"./_core":249,"./_global":266,"./_library":285,"./_object-dp":297,"./_wks-ext":351}],351:[function(require,module,exports){ 'use strict'; exports.f = require('./_wks'); -},{"./_wks":346}],346:[function(require,module,exports){ +},{"./_wks":352}],352:[function(require,module,exports){ 'use strict'; var store = require('./_shared')('wks'); @@ -104462,7 +104769,7 @@ var $exports = module.exports = function (name) { $exports.store = store; -},{"./_global":260,"./_shared":320,"./_uid":341}],347:[function(require,module,exports){ +},{"./_global":266,"./_shared":326,"./_uid":347}],353:[function(require,module,exports){ 'use strict'; var classof = require('./_classof'); @@ -104472,7 +104779,7 @@ module.exports = require('./_core').getIteratorMethod = function (it) { if (it != undefined) return it[ITERATOR] || it['@@iterator'] || Iterators[classof(it)]; }; -},{"./_classof":237,"./_core":243,"./_iterators":278,"./_wks":346}],348:[function(require,module,exports){ +},{"./_classof":243,"./_core":249,"./_iterators":284,"./_wks":352}],354:[function(require,module,exports){ 'use strict'; // https://github.com/benjamingr/RexExp.escape @@ -104483,7 +104790,7 @@ $export($export.S, 'RegExp', { escape: function escape(it) { return $re(it); } }); -},{"./_export":253,"./_replacer":312}],349:[function(require,module,exports){ +},{"./_export":259,"./_replacer":318}],355:[function(require,module,exports){ 'use strict'; // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) @@ -104493,7 +104800,7 @@ $export($export.P, 'Array', { copyWithin: require('./_array-copy-within') }); require('./_add-to-unscopables')('copyWithin'); -},{"./_add-to-unscopables":225,"./_array-copy-within":228,"./_export":253}],350:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-copy-within":234,"./_export":259}],356:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104506,7 +104813,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].every, true), 'A } }); -},{"./_array-methods":232,"./_export":253,"./_strict-method":322}],351:[function(require,module,exports){ +},{"./_array-methods":238,"./_export":259,"./_strict-method":328}],357:[function(require,module,exports){ 'use strict'; // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) @@ -104516,7 +104823,7 @@ $export($export.P, 'Array', { fill: require('./_array-fill') }); require('./_add-to-unscopables')('fill'); -},{"./_add-to-unscopables":225,"./_array-fill":229,"./_export":253}],352:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-fill":235,"./_export":259}],358:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104529,7 +104836,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].filter, true), ' } }); -},{"./_array-methods":232,"./_export":253,"./_strict-method":322}],353:[function(require,module,exports){ +},{"./_array-methods":238,"./_export":259,"./_strict-method":328}],359:[function(require,module,exports){ 'use strict'; // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined) @@ -104548,7 +104855,7 @@ $export($export.P + $export.F * forced, 'Array', { }); require('./_add-to-unscopables')(KEY); -},{"./_add-to-unscopables":225,"./_array-methods":232,"./_export":253}],354:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-methods":238,"./_export":259}],360:[function(require,module,exports){ 'use strict'; // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined) @@ -104567,7 +104874,7 @@ $export($export.P + $export.F * forced, 'Array', { }); require('./_add-to-unscopables')(KEY); -},{"./_add-to-unscopables":225,"./_array-methods":232,"./_export":253}],355:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-methods":238,"./_export":259}],361:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104581,7 +104888,7 @@ $export($export.P + $export.F * !STRICT, 'Array', { } }); -},{"./_array-methods":232,"./_export":253,"./_strict-method":322}],356:[function(require,module,exports){ +},{"./_array-methods":238,"./_export":259,"./_strict-method":328}],362:[function(require,module,exports){ 'use strict'; var ctx = require('./_ctx'); @@ -104623,7 +104930,7 @@ $export($export.S + $export.F * !require('./_iter-detect')(function (iter) { } }); -},{"./_create-property":244,"./_ctx":245,"./_export":253,"./_is-array-iter":268,"./_iter-call":273,"./_iter-detect":276,"./_to-length":335,"./_to-object":336,"./core.get-iterator-method":347}],357:[function(require,module,exports){ +},{"./_create-property":250,"./_ctx":251,"./_export":259,"./_is-array-iter":274,"./_iter-call":279,"./_iter-detect":282,"./_to-length":341,"./_to-object":342,"./core.get-iterator-method":353}],363:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104640,7 +104947,7 @@ $export($export.P + $export.F * (NEGATIVE_ZERO || !require('./_strict-method')($ } }); -},{"./_array-includes":231,"./_export":253,"./_strict-method":322}],358:[function(require,module,exports){ +},{"./_array-includes":237,"./_export":259,"./_strict-method":328}],364:[function(require,module,exports){ 'use strict'; // 22.1.2.2 / 15.4.3.2 Array.isArray(arg) @@ -104648,7 +104955,7 @@ var $export = require('./_export'); $export($export.S, 'Array', { isArray: require('./_is-array') }); -},{"./_export":253,"./_is-array":269}],359:[function(require,module,exports){ +},{"./_export":259,"./_is-array":275}],365:[function(require,module,exports){ 'use strict'; var addToUnscopables = require('./_add-to-unscopables'); @@ -104685,7 +104992,7 @@ addToUnscopables('keys'); addToUnscopables('values'); addToUnscopables('entries'); -},{"./_add-to-unscopables":225,"./_iter-define":275,"./_iter-step":277,"./_iterators":278,"./_to-iobject":334}],360:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_iter-define":281,"./_iter-step":283,"./_iterators":284,"./_to-iobject":340}],366:[function(require,module,exports){ 'use strict'; // 22.1.3.13 Array.prototype.join(separator) @@ -104700,7 +105007,7 @@ $export($export.P + $export.F * (require('./_iobject') != Object || !require('./ } }); -},{"./_export":253,"./_iobject":267,"./_strict-method":322,"./_to-iobject":334}],361:[function(require,module,exports){ +},{"./_export":259,"./_iobject":273,"./_strict-method":328,"./_to-iobject":340}],367:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104726,7 +105033,7 @@ $export($export.P + $export.F * (NEGATIVE_ZERO || !require('./_strict-method')($ } }); -},{"./_export":253,"./_strict-method":322,"./_to-integer":333,"./_to-iobject":334,"./_to-length":335}],362:[function(require,module,exports){ +},{"./_export":259,"./_strict-method":328,"./_to-integer":339,"./_to-iobject":340,"./_to-length":341}],368:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104739,7 +105046,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].map, true), 'Arr } }); -},{"./_array-methods":232,"./_export":253,"./_strict-method":322}],363:[function(require,module,exports){ +},{"./_array-methods":238,"./_export":259,"./_strict-method":328}],369:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104762,7 +105069,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_create-property":244,"./_export":253,"./_fails":255}],364:[function(require,module,exports){ +},{"./_create-property":250,"./_export":259,"./_fails":261}],370:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104775,7 +105082,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].reduceRight, tru } }); -},{"./_array-reduce":233,"./_export":253,"./_strict-method":322}],365:[function(require,module,exports){ +},{"./_array-reduce":239,"./_export":259,"./_strict-method":328}],371:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104788,7 +105095,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].reduce, true), ' } }); -},{"./_array-reduce":233,"./_export":253,"./_strict-method":322}],366:[function(require,module,exports){ +},{"./_array-reduce":239,"./_export":259,"./_strict-method":328}],372:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104818,7 +105125,7 @@ $export($export.P + $export.F * require('./_fails')(function () { } }); -},{"./_cof":238,"./_export":253,"./_fails":255,"./_html":263,"./_to-absolute-index":331,"./_to-length":335}],367:[function(require,module,exports){ +},{"./_cof":244,"./_export":259,"./_fails":261,"./_html":269,"./_to-absolute-index":337,"./_to-length":341}],373:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104831,7 +105138,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].some, true), 'Ar } }); -},{"./_array-methods":232,"./_export":253,"./_strict-method":322}],368:[function(require,module,exports){ +},{"./_array-methods":238,"./_export":259,"./_strict-method":328}],374:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104855,12 +105162,12 @@ $export($export.P + $export.F * (fails(function () { } }); -},{"./_a-function":223,"./_export":253,"./_fails":255,"./_strict-method":322,"./_to-object":336}],369:[function(require,module,exports){ +},{"./_a-function":229,"./_export":259,"./_fails":261,"./_strict-method":328,"./_to-object":342}],375:[function(require,module,exports){ 'use strict'; require('./_set-species')('Array'); -},{"./_set-species":317}],370:[function(require,module,exports){ +},{"./_set-species":323}],376:[function(require,module,exports){ 'use strict'; // 20.3.3.1 / 15.9.4.4 Date.now() @@ -104870,7 +105177,7 @@ $export($export.S, 'Date', { now: function now() { return new Date().getTime(); } }); -},{"./_export":253}],371:[function(require,module,exports){ +},{"./_export":259}],377:[function(require,module,exports){ 'use strict'; // 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString() @@ -104882,7 +105189,7 @@ $export($export.P + $export.F * (Date.prototype.toISOString !== toISOString), 'D toISOString: toISOString }); -},{"./_date-to-iso-string":246,"./_export":253}],372:[function(require,module,exports){ +},{"./_date-to-iso-string":252,"./_export":259}],378:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -104902,7 +105209,7 @@ $export($export.P + $export.F * require('./_fails')(function () { } }); -},{"./_export":253,"./_fails":255,"./_to-object":336,"./_to-primitive":337}],373:[function(require,module,exports){ +},{"./_export":259,"./_fails":261,"./_to-object":342,"./_to-primitive":343}],379:[function(require,module,exports){ 'use strict'; var TO_PRIMITIVE = require('./_wks')('toPrimitive'); @@ -104910,7 +105217,7 @@ var proto = Date.prototype; if (!(TO_PRIMITIVE in proto)) require('./_hide')(proto, TO_PRIMITIVE, require('./_date-to-primitive')); -},{"./_date-to-primitive":247,"./_hide":262,"./_wks":346}],374:[function(require,module,exports){ +},{"./_date-to-primitive":253,"./_hide":268,"./_wks":352}],380:[function(require,module,exports){ 'use strict'; var DateProto = Date.prototype; @@ -104926,7 +105233,7 @@ if (new Date(NaN) + '' != INVALID_DATE) { }); } -},{"./_redefine":311}],375:[function(require,module,exports){ +},{"./_redefine":317}],381:[function(require,module,exports){ 'use strict'; // 19.2.3.2 / 15.3.4.5 Function.prototype.bind(thisArg, args...) @@ -104934,7 +105241,7 @@ var $export = require('./_export'); $export($export.P, 'Function', { bind: require('./_bind') }); -},{"./_bind":236,"./_export":253}],376:[function(require,module,exports){ +},{"./_bind":242,"./_export":259}],382:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); @@ -104951,7 +105258,7 @@ if (!(HAS_INSTANCE in FunctionProto)) require('./_object-dp').f(FunctionProto, H }return false; } }); -},{"./_is-object":271,"./_object-dp":291,"./_object-gpo":298,"./_wks":346}],377:[function(require,module,exports){ +},{"./_is-object":277,"./_object-dp":297,"./_object-gpo":304,"./_wks":352}],383:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp').f; @@ -104971,7 +105278,7 @@ NAME in FProto || require('./_descriptors') && dP(FProto, NAME, { } }); -},{"./_descriptors":249,"./_object-dp":291}],378:[function(require,module,exports){ +},{"./_descriptors":255,"./_object-dp":297}],384:[function(require,module,exports){ 'use strict'; var strong = require('./_collection-strong'); @@ -104995,7 +105302,7 @@ module.exports = require('./_collection')(MAP, function (get) { } }, strong, true); -},{"./_collection":242,"./_collection-strong":239,"./_validate-collection":343}],379:[function(require,module,exports){ +},{"./_collection":248,"./_collection-strong":245,"./_validate-collection":349}],385:[function(require,module,exports){ 'use strict'; // 20.2.2.3 Math.acosh(x) @@ -105014,7 +105321,7 @@ $export($export.S + $export.F * !($acosh } }); -},{"./_export":253,"./_math-log1p":282}],380:[function(require,module,exports){ +},{"./_export":259,"./_math-log1p":288}],386:[function(require,module,exports){ 'use strict'; // 20.2.2.5 Math.asinh(x) @@ -105028,7 +105335,7 @@ function asinh(x) { // Tor Browser bug: Math.asinh(0) -> -0 $export($export.S + $export.F * !($asinh && 1 / $asinh(0) > 0), 'Math', { asinh: asinh }); -},{"./_export":253}],381:[function(require,module,exports){ +},{"./_export":259}],387:[function(require,module,exports){ 'use strict'; // 20.2.2.7 Math.atanh(x) @@ -105042,7 +105349,7 @@ $export($export.S + $export.F * !($atanh && 1 / $atanh(-0) < 0), 'Math', { } }); -},{"./_export":253}],382:[function(require,module,exports){ +},{"./_export":259}],388:[function(require,module,exports){ 'use strict'; // 20.2.2.9 Math.cbrt(x) @@ -105055,7 +105362,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253,"./_math-sign":284}],383:[function(require,module,exports){ +},{"./_export":259,"./_math-sign":290}],389:[function(require,module,exports){ 'use strict'; // 20.2.2.11 Math.clz32(x) @@ -105067,7 +105374,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],384:[function(require,module,exports){ +},{"./_export":259}],390:[function(require,module,exports){ 'use strict'; // 20.2.2.12 Math.cosh(x) @@ -105080,7 +105387,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],385:[function(require,module,exports){ +},{"./_export":259}],391:[function(require,module,exports){ 'use strict'; // 20.2.2.14 Math.expm1(x) @@ -105089,7 +105396,7 @@ var $expm1 = require('./_math-expm1'); $export($export.S + $export.F * ($expm1 != Math.expm1), 'Math', { expm1: $expm1 }); -},{"./_export":253,"./_math-expm1":280}],386:[function(require,module,exports){ +},{"./_export":259,"./_math-expm1":286}],392:[function(require,module,exports){ 'use strict'; // 20.2.2.16 Math.fround(x) @@ -105097,7 +105404,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { fround: require('./_math-fround') }); -},{"./_export":253,"./_math-fround":281}],387:[function(require,module,exports){ +},{"./_export":259,"./_math-fround":287}],393:[function(require,module,exports){ 'use strict'; // 20.2.2.17 Math.hypot([value1[, value2[, … ]]]) @@ -105127,7 +105434,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],388:[function(require,module,exports){ +},{"./_export":259}],394:[function(require,module,exports){ 'use strict'; // 20.2.2.18 Math.imul(x, y) @@ -105148,7 +105455,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_export":253,"./_fails":255}],389:[function(require,module,exports){ +},{"./_export":259,"./_fails":261}],395:[function(require,module,exports){ 'use strict'; // 20.2.2.21 Math.log10(x) @@ -105160,7 +105467,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],390:[function(require,module,exports){ +},{"./_export":259}],396:[function(require,module,exports){ 'use strict'; // 20.2.2.20 Math.log1p(x) @@ -105168,7 +105475,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { log1p: require('./_math-log1p') }); -},{"./_export":253,"./_math-log1p":282}],391:[function(require,module,exports){ +},{"./_export":259,"./_math-log1p":288}],397:[function(require,module,exports){ 'use strict'; // 20.2.2.22 Math.log2(x) @@ -105180,7 +105487,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],392:[function(require,module,exports){ +},{"./_export":259}],398:[function(require,module,exports){ 'use strict'; // 20.2.2.28 Math.sign(x) @@ -105188,7 +105495,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { sign: require('./_math-sign') }); -},{"./_export":253,"./_math-sign":284}],393:[function(require,module,exports){ +},{"./_export":259,"./_math-sign":290}],399:[function(require,module,exports){ 'use strict'; // 20.2.2.30 Math.sinh(x) @@ -105205,7 +105512,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_export":253,"./_fails":255,"./_math-expm1":280}],394:[function(require,module,exports){ +},{"./_export":259,"./_fails":261,"./_math-expm1":286}],400:[function(require,module,exports){ 'use strict'; // 20.2.2.33 Math.tanh(x) @@ -105221,7 +105528,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253,"./_math-expm1":280}],395:[function(require,module,exports){ +},{"./_export":259,"./_math-expm1":286}],401:[function(require,module,exports){ 'use strict'; // 20.2.2.34 Math.trunc(x) @@ -105233,7 +105540,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],396:[function(require,module,exports){ +},{"./_export":259}],402:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -105307,7 +105614,7 @@ if (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) { require('./_redefine')(global, NUMBER, $Number); } -},{"./_cof":238,"./_descriptors":249,"./_fails":255,"./_global":260,"./_has":261,"./_inherit-if-required":265,"./_object-create":290,"./_object-dp":291,"./_object-gopd":294,"./_object-gopn":296,"./_redefine":311,"./_string-trim":328,"./_to-primitive":337}],397:[function(require,module,exports){ +},{"./_cof":244,"./_descriptors":255,"./_fails":261,"./_global":266,"./_has":267,"./_inherit-if-required":271,"./_object-create":296,"./_object-dp":297,"./_object-gopd":300,"./_object-gopn":302,"./_redefine":317,"./_string-trim":334,"./_to-primitive":343}],403:[function(require,module,exports){ 'use strict'; // 20.1.2.1 Number.EPSILON @@ -105315,7 +105622,7 @@ var $export = require('./_export'); $export($export.S, 'Number', { EPSILON: Math.pow(2, -52) }); -},{"./_export":253}],398:[function(require,module,exports){ +},{"./_export":259}],404:[function(require,module,exports){ 'use strict'; // 20.1.2.2 Number.isFinite(number) @@ -105328,7 +105635,7 @@ $export($export.S, 'Number', { } }); -},{"./_export":253,"./_global":260}],399:[function(require,module,exports){ +},{"./_export":259,"./_global":266}],405:[function(require,module,exports){ 'use strict'; // 20.1.2.3 Number.isInteger(number) @@ -105336,7 +105643,7 @@ var $export = require('./_export'); $export($export.S, 'Number', { isInteger: require('./_is-integer') }); -},{"./_export":253,"./_is-integer":270}],400:[function(require,module,exports){ +},{"./_export":259,"./_is-integer":276}],406:[function(require,module,exports){ 'use strict'; // 20.1.2.4 Number.isNaN(number) @@ -105349,7 +105656,7 @@ $export($export.S, 'Number', { } }); -},{"./_export":253}],401:[function(require,module,exports){ +},{"./_export":259}],407:[function(require,module,exports){ 'use strict'; // 20.1.2.5 Number.isSafeInteger(number) @@ -105363,7 +105670,7 @@ $export($export.S, 'Number', { } }); -},{"./_export":253,"./_is-integer":270}],402:[function(require,module,exports){ +},{"./_export":259,"./_is-integer":276}],408:[function(require,module,exports){ 'use strict'; // 20.1.2.6 Number.MAX_SAFE_INTEGER @@ -105371,7 +105678,7 @@ var $export = require('./_export'); $export($export.S, 'Number', { MAX_SAFE_INTEGER: 0x1fffffffffffff }); -},{"./_export":253}],403:[function(require,module,exports){ +},{"./_export":259}],409:[function(require,module,exports){ 'use strict'; // 20.1.2.10 Number.MIN_SAFE_INTEGER @@ -105379,7 +105686,7 @@ var $export = require('./_export'); $export($export.S, 'Number', { MIN_SAFE_INTEGER: -0x1fffffffffffff }); -},{"./_export":253}],404:[function(require,module,exports){ +},{"./_export":259}],410:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105387,7 +105694,7 @@ var $parseFloat = require('./_parse-float'); // 20.1.2.12 Number.parseFloat(string) $export($export.S + $export.F * (Number.parseFloat != $parseFloat), 'Number', { parseFloat: $parseFloat }); -},{"./_export":253,"./_parse-float":305}],405:[function(require,module,exports){ +},{"./_export":259,"./_parse-float":311}],411:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105395,7 +105702,7 @@ var $parseInt = require('./_parse-int'); // 20.1.2.13 Number.parseInt(string, radix) $export($export.S + $export.F * (Number.parseInt != $parseInt), 'Number', { parseInt: $parseInt }); -},{"./_export":253,"./_parse-int":306}],406:[function(require,module,exports){ +},{"./_export":259,"./_parse-int":312}],412:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105507,7 +105814,7 @@ $export($export.P + $export.F * (!!$toFixed && (0.00008.toFixed(3) !== '0.000' | } }); -},{"./_a-number-value":224,"./_export":253,"./_fails":255,"./_string-repeat":327,"./_to-integer":333}],407:[function(require,module,exports){ +},{"./_a-number-value":230,"./_export":259,"./_fails":261,"./_string-repeat":333,"./_to-integer":339}],413:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105528,7 +105835,7 @@ $export($export.P + $export.F * ($fails(function () { } }); -},{"./_a-number-value":224,"./_export":253,"./_fails":255}],408:[function(require,module,exports){ +},{"./_a-number-value":230,"./_export":259,"./_fails":261}],414:[function(require,module,exports){ 'use strict'; // 19.1.3.1 Object.assign(target, source) @@ -105536,28 +105843,28 @@ var $export = require('./_export'); $export($export.S + $export.F, 'Object', { assign: require('./_object-assign') }); -},{"./_export":253,"./_object-assign":289}],409:[function(require,module,exports){ +},{"./_export":259,"./_object-assign":295}],415:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) $export($export.S, 'Object', { create: require('./_object-create') }); -},{"./_export":253,"./_object-create":290}],410:[function(require,module,exports){ +},{"./_export":259,"./_object-create":296}],416:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); // 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties) $export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperties: require('./_object-dps') }); -},{"./_descriptors":249,"./_export":253,"./_object-dps":292}],411:[function(require,module,exports){ +},{"./_descriptors":255,"./_export":259,"./_object-dps":298}],417:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes) $export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperty: require('./_object-dp').f }); -},{"./_descriptors":249,"./_export":253,"./_object-dp":291}],412:[function(require,module,exports){ +},{"./_descriptors":255,"./_export":259,"./_object-dp":297}],418:[function(require,module,exports){ 'use strict'; // 19.1.2.5 Object.freeze(O) @@ -105570,7 +105877,7 @@ require('./_object-sap')('freeze', function ($freeze) { }; }); -},{"./_is-object":271,"./_meta":285,"./_object-sap":302}],413:[function(require,module,exports){ +},{"./_is-object":277,"./_meta":291,"./_object-sap":308}],419:[function(require,module,exports){ 'use strict'; // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P) @@ -105583,7 +105890,7 @@ require('./_object-sap')('getOwnPropertyDescriptor', function () { }; }); -},{"./_object-gopd":294,"./_object-sap":302,"./_to-iobject":334}],414:[function(require,module,exports){ +},{"./_object-gopd":300,"./_object-sap":308,"./_to-iobject":340}],420:[function(require,module,exports){ 'use strict'; // 19.1.2.7 Object.getOwnPropertyNames(O) @@ -105591,7 +105898,7 @@ require('./_object-sap')('getOwnPropertyNames', function () { return require('./_object-gopn-ext').f; }); -},{"./_object-gopn-ext":295,"./_object-sap":302}],415:[function(require,module,exports){ +},{"./_object-gopn-ext":301,"./_object-sap":308}],421:[function(require,module,exports){ 'use strict'; // 19.1.2.9 Object.getPrototypeOf(O) @@ -105604,7 +105911,7 @@ require('./_object-sap')('getPrototypeOf', function () { }; }); -},{"./_object-gpo":298,"./_object-sap":302,"./_to-object":336}],416:[function(require,module,exports){ +},{"./_object-gpo":304,"./_object-sap":308,"./_to-object":342}],422:[function(require,module,exports){ 'use strict'; // 19.1.2.11 Object.isExtensible(O) @@ -105616,7 +105923,7 @@ require('./_object-sap')('isExtensible', function ($isExtensible) { }; }); -},{"./_is-object":271,"./_object-sap":302}],417:[function(require,module,exports){ +},{"./_is-object":277,"./_object-sap":308}],423:[function(require,module,exports){ 'use strict'; // 19.1.2.12 Object.isFrozen(O) @@ -105628,7 +105935,7 @@ require('./_object-sap')('isFrozen', function ($isFrozen) { }; }); -},{"./_is-object":271,"./_object-sap":302}],418:[function(require,module,exports){ +},{"./_is-object":277,"./_object-sap":308}],424:[function(require,module,exports){ 'use strict'; // 19.1.2.13 Object.isSealed(O) @@ -105640,14 +105947,14 @@ require('./_object-sap')('isSealed', function ($isSealed) { }; }); -},{"./_is-object":271,"./_object-sap":302}],419:[function(require,module,exports){ +},{"./_is-object":277,"./_object-sap":308}],425:[function(require,module,exports){ 'use strict'; // 19.1.3.10 Object.is(value1, value2) var $export = require('./_export'); $export($export.S, 'Object', { is: require('./_same-value') }); -},{"./_export":253,"./_same-value":313}],420:[function(require,module,exports){ +},{"./_export":259,"./_same-value":319}],426:[function(require,module,exports){ 'use strict'; // 19.1.2.14 Object.keys(O) @@ -105660,7 +105967,7 @@ require('./_object-sap')('keys', function () { }; }); -},{"./_object-keys":300,"./_object-sap":302,"./_to-object":336}],421:[function(require,module,exports){ +},{"./_object-keys":306,"./_object-sap":308,"./_to-object":342}],427:[function(require,module,exports){ 'use strict'; // 19.1.2.15 Object.preventExtensions(O) @@ -105673,7 +105980,7 @@ require('./_object-sap')('preventExtensions', function ($preventExtensions) { }; }); -},{"./_is-object":271,"./_meta":285,"./_object-sap":302}],422:[function(require,module,exports){ +},{"./_is-object":277,"./_meta":291,"./_object-sap":308}],428:[function(require,module,exports){ 'use strict'; // 19.1.2.17 Object.seal(O) @@ -105686,14 +105993,14 @@ require('./_object-sap')('seal', function ($seal) { }; }); -},{"./_is-object":271,"./_meta":285,"./_object-sap":302}],423:[function(require,module,exports){ +},{"./_is-object":277,"./_meta":291,"./_object-sap":308}],429:[function(require,module,exports){ 'use strict'; // 19.1.3.19 Object.setPrototypeOf(O, proto) var $export = require('./_export'); $export($export.S, 'Object', { setPrototypeOf: require('./_set-proto').set }); -},{"./_export":253,"./_set-proto":316}],424:[function(require,module,exports){ +},{"./_export":259,"./_set-proto":322}],430:[function(require,module,exports){ 'use strict'; // 19.1.3.6 Object.prototype.toString() @@ -105706,7 +106013,7 @@ if (test + '' != '[object z]') { }, true); } -},{"./_classof":237,"./_redefine":311,"./_wks":346}],425:[function(require,module,exports){ +},{"./_classof":243,"./_redefine":317,"./_wks":352}],431:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105714,7 +106021,7 @@ var $parseFloat = require('./_parse-float'); // 18.2.4 parseFloat(string) $export($export.G + $export.F * (parseFloat != $parseFloat), { parseFloat: $parseFloat }); -},{"./_export":253,"./_parse-float":305}],426:[function(require,module,exports){ +},{"./_export":259,"./_parse-float":311}],432:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -105722,7 +106029,7 @@ var $parseInt = require('./_parse-int'); // 18.2.5 parseInt(string, radix) $export($export.G + $export.F * (parseInt != $parseInt), { parseInt: $parseInt }); -},{"./_export":253,"./_parse-int":306}],427:[function(require,module,exports){ +},{"./_export":259,"./_parse-int":312}],433:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library'); @@ -105997,7 +106304,7 @@ $export($export.S + $export.F * !(USE_NATIVE && require('./_iter-detect')(functi } }); -},{"./_a-function":223,"./_an-instance":226,"./_classof":237,"./_core":243,"./_ctx":245,"./_export":253,"./_for-of":259,"./_global":260,"./_is-object":271,"./_iter-detect":276,"./_library":279,"./_microtask":287,"./_new-promise-capability":288,"./_perform":307,"./_promise-resolve":308,"./_redefine-all":310,"./_set-species":317,"./_set-to-string-tag":318,"./_species-constructor":321,"./_task":330,"./_wks":346}],428:[function(require,module,exports){ +},{"./_a-function":229,"./_an-instance":232,"./_classof":243,"./_core":249,"./_ctx":251,"./_export":259,"./_for-of":265,"./_global":266,"./_is-object":277,"./_iter-detect":282,"./_library":285,"./_microtask":293,"./_new-promise-capability":294,"./_perform":313,"./_promise-resolve":314,"./_redefine-all":316,"./_set-species":323,"./_set-to-string-tag":324,"./_species-constructor":327,"./_task":336,"./_wks":352}],434:[function(require,module,exports){ 'use strict'; // 26.1.1 Reflect.apply(target, thisArgument, argumentsList) @@ -106017,7 +106324,7 @@ $export($export.S + $export.F * !require('./_fails')(function () { } }); -},{"./_a-function":223,"./_an-object":227,"./_export":253,"./_fails":255,"./_global":260}],429:[function(require,module,exports){ +},{"./_a-function":229,"./_an-object":233,"./_export":259,"./_fails":261,"./_global":266}],435:[function(require,module,exports){ 'use strict'; // 26.1.2 Reflect.construct(target, argumentsList [, newTarget]) @@ -106073,7 +106380,7 @@ $export($export.S + $export.F * (NEW_TARGET_BUG || ARGS_BUG), 'Reflect', { } }); -},{"./_a-function":223,"./_an-object":227,"./_bind":236,"./_export":253,"./_fails":255,"./_global":260,"./_is-object":271,"./_object-create":290}],430:[function(require,module,exports){ +},{"./_a-function":229,"./_an-object":233,"./_bind":242,"./_export":259,"./_fails":261,"./_global":266,"./_is-object":277,"./_object-create":296}],436:[function(require,module,exports){ 'use strict'; // 26.1.3 Reflect.defineProperty(target, propertyKey, attributes) @@ -106100,7 +106407,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_an-object":227,"./_export":253,"./_fails":255,"./_object-dp":291,"./_to-primitive":337}],431:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_fails":261,"./_object-dp":297,"./_to-primitive":343}],437:[function(require,module,exports){ 'use strict'; // 26.1.4 Reflect.deleteProperty(target, propertyKey) @@ -106115,7 +106422,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253,"./_object-gopd":294}],432:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_object-gopd":300}],438:[function(require,module,exports){ 'use strict'; // 26.1.5 Reflect.enumerate(target) @@ -106146,7 +106453,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253,"./_iter-create":274}],433:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_iter-create":280}],439:[function(require,module,exports){ 'use strict'; // 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey) @@ -106160,7 +106467,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253,"./_object-gopd":294}],434:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_object-gopd":300}],440:[function(require,module,exports){ 'use strict'; // 26.1.8 Reflect.getPrototypeOf(target) @@ -106174,7 +106481,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253,"./_object-gpo":298}],435:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_object-gpo":304}],441:[function(require,module,exports){ 'use strict'; // 26.1.6 Reflect.get(target, propertyKey [, receiver]) @@ -106195,7 +106502,7 @@ function get(target, propertyKey /* , receiver */) { $export($export.S, 'Reflect', { get: get }); -},{"./_an-object":227,"./_export":253,"./_has":261,"./_is-object":271,"./_object-gopd":294,"./_object-gpo":298}],436:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_has":267,"./_is-object":277,"./_object-gopd":300,"./_object-gpo":304}],442:[function(require,module,exports){ 'use strict'; // 26.1.9 Reflect.has(target, propertyKey) @@ -106207,7 +106514,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_export":253}],437:[function(require,module,exports){ +},{"./_export":259}],443:[function(require,module,exports){ 'use strict'; // 26.1.10 Reflect.isExtensible(target) @@ -106222,7 +106529,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253}],438:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259}],444:[function(require,module,exports){ 'use strict'; // 26.1.11 Reflect.ownKeys(target) @@ -106230,7 +106537,7 @@ var $export = require('./_export'); $export($export.S, 'Reflect', { ownKeys: require('./_own-keys') }); -},{"./_export":253,"./_own-keys":304}],439:[function(require,module,exports){ +},{"./_export":259,"./_own-keys":310}],445:[function(require,module,exports){ 'use strict'; // 26.1.12 Reflect.preventExtensions(target) @@ -106250,7 +106557,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":227,"./_export":253}],440:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259}],446:[function(require,module,exports){ 'use strict'; // 26.1.14 Reflect.setPrototypeOf(target, proto) @@ -106269,7 +106576,7 @@ if (setProto) $export($export.S, 'Reflect', { } }); -},{"./_export":253,"./_set-proto":316}],441:[function(require,module,exports){ +},{"./_export":259,"./_set-proto":322}],447:[function(require,module,exports){ 'use strict'; // 26.1.13 Reflect.set(target, propertyKey, V [, receiver]) @@ -106304,7 +106611,7 @@ function set(target, propertyKey, V /* , receiver */) { $export($export.S, 'Reflect', { set: set }); -},{"./_an-object":227,"./_export":253,"./_has":261,"./_is-object":271,"./_object-dp":291,"./_object-gopd":294,"./_object-gpo":298,"./_property-desc":309}],442:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_has":267,"./_is-object":277,"./_object-dp":297,"./_object-gopd":300,"./_object-gpo":304,"./_property-desc":315}],448:[function(require,module,exports){ 'use strict'; var global = require('./_global'); @@ -106352,7 +106659,7 @@ if (require('./_descriptors') && (!CORRECT_NEW || require('./_fails')(function ( require('./_set-species')('RegExp'); -},{"./_descriptors":249,"./_fails":255,"./_flags":257,"./_global":260,"./_inherit-if-required":265,"./_is-regexp":272,"./_object-dp":291,"./_object-gopn":296,"./_redefine":311,"./_set-species":317,"./_wks":346}],443:[function(require,module,exports){ +},{"./_descriptors":255,"./_fails":261,"./_flags":263,"./_global":266,"./_inherit-if-required":271,"./_is-regexp":278,"./_object-dp":297,"./_object-gopn":302,"./_redefine":317,"./_set-species":323,"./_wks":352}],449:[function(require,module,exports){ 'use strict'; // 21.2.5.3 get RegExp.prototype.flags() @@ -106361,7 +106668,7 @@ if (require('./_descriptors') && /./g.flags != 'g') require('./_object-dp').f(Re get: require('./_flags') }); -},{"./_descriptors":249,"./_flags":257,"./_object-dp":291}],444:[function(require,module,exports){ +},{"./_descriptors":255,"./_flags":263,"./_object-dp":297}],450:[function(require,module,exports){ 'use strict'; // @@match logic @@ -106376,7 +106683,7 @@ require('./_fix-re-wks')('match', 1, function (defined, MATCH, $match) { }, $match]; }); -},{"./_fix-re-wks":256}],445:[function(require,module,exports){ +},{"./_fix-re-wks":262}],451:[function(require,module,exports){ 'use strict'; // @@replace logic @@ -106391,7 +106698,7 @@ require('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace) { }, $replace]; }); -},{"./_fix-re-wks":256}],446:[function(require,module,exports){ +},{"./_fix-re-wks":262}],452:[function(require,module,exports){ 'use strict'; // @@search logic @@ -106406,7 +106713,7 @@ require('./_fix-re-wks')('search', 1, function (defined, SEARCH, $search) { }, $search]; }); -},{"./_fix-re-wks":256}],447:[function(require,module,exports){ +},{"./_fix-re-wks":262}],453:[function(require,module,exports){ 'use strict'; // @@split logic @@ -106474,7 +106781,7 @@ require('./_fix-re-wks')('split', 2, function (defined, SPLIT, $split) { }, $split]; }); -},{"./_fix-re-wks":256,"./_is-regexp":272}],448:[function(require,module,exports){ +},{"./_fix-re-wks":262,"./_is-regexp":278}],454:[function(require,module,exports){ 'use strict'; require('./es6.regexp.flags'); @@ -106503,7 +106810,7 @@ if (require('./_fails')(function () { }); } -},{"./_an-object":227,"./_descriptors":249,"./_fails":255,"./_flags":257,"./_redefine":311,"./es6.regexp.flags":443}],449:[function(require,module,exports){ +},{"./_an-object":233,"./_descriptors":255,"./_fails":261,"./_flags":263,"./_redefine":317,"./es6.regexp.flags":449}],455:[function(require,module,exports){ 'use strict'; var strong = require('./_collection-strong'); @@ -106522,7 +106829,7 @@ module.exports = require('./_collection')(SET, function (get) { } }, strong); -},{"./_collection":242,"./_collection-strong":239,"./_validate-collection":343}],450:[function(require,module,exports){ +},{"./_collection":248,"./_collection-strong":245,"./_validate-collection":349}],456:[function(require,module,exports){ 'use strict'; // B.2.3.2 String.prototype.anchor(name) @@ -106532,7 +106839,7 @@ require('./_string-html')('anchor', function (createHTML) { }; }); -},{"./_string-html":325}],451:[function(require,module,exports){ +},{"./_string-html":331}],457:[function(require,module,exports){ 'use strict'; // B.2.3.3 String.prototype.big() @@ -106542,7 +106849,7 @@ require('./_string-html')('big', function (createHTML) { }; }); -},{"./_string-html":325}],452:[function(require,module,exports){ +},{"./_string-html":331}],458:[function(require,module,exports){ 'use strict'; // B.2.3.4 String.prototype.blink() @@ -106552,7 +106859,7 @@ require('./_string-html')('blink', function (createHTML) { }; }); -},{"./_string-html":325}],453:[function(require,module,exports){ +},{"./_string-html":331}],459:[function(require,module,exports){ 'use strict'; // B.2.3.5 String.prototype.bold() @@ -106562,7 +106869,7 @@ require('./_string-html')('bold', function (createHTML) { }; }); -},{"./_string-html":325}],454:[function(require,module,exports){ +},{"./_string-html":331}],460:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -106574,7 +106881,7 @@ $export($export.P, 'String', { } }); -},{"./_export":253,"./_string-at":323}],455:[function(require,module,exports){ +},{"./_export":259,"./_string-at":329}],461:[function(require,module,exports){ // 21.1.3.6 String.prototype.endsWith(searchString [, endPosition]) 'use strict'; @@ -106595,7 +106902,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(ENDS_WITH), 'Strin } }); -},{"./_export":253,"./_fails-is-regexp":254,"./_string-context":324,"./_to-length":335}],456:[function(require,module,exports){ +},{"./_export":259,"./_fails-is-regexp":260,"./_string-context":330,"./_to-length":341}],462:[function(require,module,exports){ 'use strict'; // B.2.3.6 String.prototype.fixed() @@ -106605,7 +106912,7 @@ require('./_string-html')('fixed', function (createHTML) { }; }); -},{"./_string-html":325}],457:[function(require,module,exports){ +},{"./_string-html":331}],463:[function(require,module,exports){ 'use strict'; // B.2.3.7 String.prototype.fontcolor(color) @@ -106615,7 +106922,7 @@ require('./_string-html')('fontcolor', function (createHTML) { }; }); -},{"./_string-html":325}],458:[function(require,module,exports){ +},{"./_string-html":331}],464:[function(require,module,exports){ 'use strict'; // B.2.3.8 String.prototype.fontsize(size) @@ -106625,7 +106932,7 @@ require('./_string-html')('fontsize', function (createHTML) { }; }); -},{"./_string-html":325}],459:[function(require,module,exports){ +},{"./_string-html":331}],465:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -106650,7 +106957,7 @@ $export($export.S + $export.F * (!!$fromCodePoint && $fromCodePoint.length != 1) } }); -},{"./_export":253,"./_to-absolute-index":331}],460:[function(require,module,exports){ +},{"./_export":259,"./_to-absolute-index":337}],466:[function(require,module,exports){ // 21.1.3.7 String.prototype.includes(searchString, position = 0) 'use strict'; @@ -106664,7 +106971,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(INCLUDES), 'String } }); -},{"./_export":253,"./_fails-is-regexp":254,"./_string-context":324}],461:[function(require,module,exports){ +},{"./_export":259,"./_fails-is-regexp":260,"./_string-context":330}],467:[function(require,module,exports){ 'use strict'; // B.2.3.9 String.prototype.italics() @@ -106674,7 +106981,7 @@ require('./_string-html')('italics', function (createHTML) { }; }); -},{"./_string-html":325}],462:[function(require,module,exports){ +},{"./_string-html":331}],468:[function(require,module,exports){ 'use strict'; var $at = require('./_string-at')(true); @@ -106694,7 +107001,7 @@ require('./_iter-define')(String, 'String', function (iterated) { return { value: point, done: false }; }); -},{"./_iter-define":275,"./_string-at":323}],463:[function(require,module,exports){ +},{"./_iter-define":281,"./_string-at":329}],469:[function(require,module,exports){ 'use strict'; // B.2.3.10 String.prototype.link(url) @@ -106704,7 +107011,7 @@ require('./_string-html')('link', function (createHTML) { }; }); -},{"./_string-html":325}],464:[function(require,module,exports){ +},{"./_string-html":331}],470:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -106726,7 +107033,7 @@ $export($export.S, 'String', { } }); -},{"./_export":253,"./_to-iobject":334,"./_to-length":335}],465:[function(require,module,exports){ +},{"./_export":259,"./_to-iobject":340,"./_to-length":341}],471:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -106736,7 +107043,7 @@ $export($export.P, 'String', { repeat: require('./_string-repeat') }); -},{"./_export":253,"./_string-repeat":327}],466:[function(require,module,exports){ +},{"./_export":259,"./_string-repeat":333}],472:[function(require,module,exports){ 'use strict'; // B.2.3.11 String.prototype.small() @@ -106746,7 +107053,7 @@ require('./_string-html')('small', function (createHTML) { }; }); -},{"./_string-html":325}],467:[function(require,module,exports){ +},{"./_string-html":331}],473:[function(require,module,exports){ // 21.1.3.18 String.prototype.startsWith(searchString [, position ]) 'use strict'; @@ -106765,7 +107072,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(STARTS_WITH), 'Str } }); -},{"./_export":253,"./_fails-is-regexp":254,"./_string-context":324,"./_to-length":335}],468:[function(require,module,exports){ +},{"./_export":259,"./_fails-is-regexp":260,"./_string-context":330,"./_to-length":341}],474:[function(require,module,exports){ 'use strict'; // B.2.3.12 String.prototype.strike() @@ -106775,7 +107082,7 @@ require('./_string-html')('strike', function (createHTML) { }; }); -},{"./_string-html":325}],469:[function(require,module,exports){ +},{"./_string-html":331}],475:[function(require,module,exports){ 'use strict'; // B.2.3.13 String.prototype.sub() @@ -106785,7 +107092,7 @@ require('./_string-html')('sub', function (createHTML) { }; }); -},{"./_string-html":325}],470:[function(require,module,exports){ +},{"./_string-html":331}],476:[function(require,module,exports){ 'use strict'; // B.2.3.14 String.prototype.sup() @@ -106795,7 +107102,7 @@ require('./_string-html')('sup', function (createHTML) { }; }); -},{"./_string-html":325}],471:[function(require,module,exports){ +},{"./_string-html":331}],477:[function(require,module,exports){ 'use strict'; // 21.1.3.25 String.prototype.trim() @@ -106805,7 +107112,7 @@ require('./_string-trim')('trim', function ($trim) { }; }); -},{"./_string-trim":328}],472:[function(require,module,exports){ +},{"./_string-trim":334}],478:[function(require,module,exports){ 'use strict'; // ECMAScript 6 symbols shim @@ -107051,7 +107358,7 @@ setToStringTag(Math, 'Math', true); // 24.3.3 JSON[@@toStringTag] setToStringTag(global.JSON, 'JSON', true); -},{"./_an-object":227,"./_descriptors":249,"./_enum-keys":252,"./_export":253,"./_fails":255,"./_global":260,"./_has":261,"./_hide":262,"./_is-array":269,"./_is-object":271,"./_library":279,"./_meta":285,"./_object-create":290,"./_object-dp":291,"./_object-gopd":294,"./_object-gopn":296,"./_object-gopn-ext":295,"./_object-gops":297,"./_object-keys":300,"./_object-pie":301,"./_property-desc":309,"./_redefine":311,"./_set-to-string-tag":318,"./_shared":320,"./_to-iobject":334,"./_to-primitive":337,"./_uid":341,"./_wks":346,"./_wks-define":344,"./_wks-ext":345}],473:[function(require,module,exports){ +},{"./_an-object":233,"./_descriptors":255,"./_enum-keys":258,"./_export":259,"./_fails":261,"./_global":266,"./_has":267,"./_hide":268,"./_is-array":275,"./_is-object":277,"./_library":285,"./_meta":291,"./_object-create":296,"./_object-dp":297,"./_object-gopd":300,"./_object-gopn":302,"./_object-gopn-ext":301,"./_object-gops":303,"./_object-keys":306,"./_object-pie":307,"./_property-desc":315,"./_redefine":317,"./_set-to-string-tag":324,"./_shared":326,"./_to-iobject":340,"./_to-primitive":343,"./_uid":347,"./_wks":352,"./_wks-define":350,"./_wks-ext":351}],479:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107100,7 +107407,7 @@ $export($export.P + $export.U + $export.F * require('./_fails')(function () { require('./_set-species')(ARRAY_BUFFER); -},{"./_an-object":227,"./_export":253,"./_fails":255,"./_global":260,"./_is-object":271,"./_set-species":317,"./_species-constructor":321,"./_to-absolute-index":331,"./_to-length":335,"./_typed":340,"./_typed-buffer":339}],474:[function(require,module,exports){ +},{"./_an-object":233,"./_export":259,"./_fails":261,"./_global":266,"./_is-object":277,"./_set-species":323,"./_species-constructor":327,"./_to-absolute-index":337,"./_to-length":341,"./_typed":346,"./_typed-buffer":345}],480:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107108,7 +107415,7 @@ $export($export.G + $export.W + $export.F * !require('./_typed').ABV, { DataView: require('./_typed-buffer').DataView }); -},{"./_export":253,"./_typed":340,"./_typed-buffer":339}],475:[function(require,module,exports){ +},{"./_export":259,"./_typed":346,"./_typed-buffer":345}],481:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Float32', 4, function (init) { @@ -107117,7 +107424,7 @@ require('./_typed-array')('Float32', 4, function (init) { }; }); -},{"./_typed-array":338}],476:[function(require,module,exports){ +},{"./_typed-array":344}],482:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Float64', 8, function (init) { @@ -107126,7 +107433,7 @@ require('./_typed-array')('Float64', 8, function (init) { }; }); -},{"./_typed-array":338}],477:[function(require,module,exports){ +},{"./_typed-array":344}],483:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Int16', 2, function (init) { @@ -107135,7 +107442,7 @@ require('./_typed-array')('Int16', 2, function (init) { }; }); -},{"./_typed-array":338}],478:[function(require,module,exports){ +},{"./_typed-array":344}],484:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Int32', 4, function (init) { @@ -107144,7 +107451,7 @@ require('./_typed-array')('Int32', 4, function (init) { }; }); -},{"./_typed-array":338}],479:[function(require,module,exports){ +},{"./_typed-array":344}],485:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Int8', 1, function (init) { @@ -107153,7 +107460,7 @@ require('./_typed-array')('Int8', 1, function (init) { }; }); -},{"./_typed-array":338}],480:[function(require,module,exports){ +},{"./_typed-array":344}],486:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Uint16', 2, function (init) { @@ -107162,7 +107469,7 @@ require('./_typed-array')('Uint16', 2, function (init) { }; }); -},{"./_typed-array":338}],481:[function(require,module,exports){ +},{"./_typed-array":344}],487:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Uint32', 4, function (init) { @@ -107171,7 +107478,7 @@ require('./_typed-array')('Uint32', 4, function (init) { }; }); -},{"./_typed-array":338}],482:[function(require,module,exports){ +},{"./_typed-array":344}],488:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Uint8', 1, function (init) { @@ -107180,7 +107487,7 @@ require('./_typed-array')('Uint8', 1, function (init) { }; }); -},{"./_typed-array":338}],483:[function(require,module,exports){ +},{"./_typed-array":344}],489:[function(require,module,exports){ 'use strict'; require('./_typed-array')('Uint8', 1, function (init) { @@ -107189,7 +107496,7 @@ require('./_typed-array')('Uint8', 1, function (init) { }; }, true); -},{"./_typed-array":338}],484:[function(require,module,exports){ +},{"./_typed-array":344}],490:[function(require,module,exports){ 'use strict'; var each = require('./_array-methods')(0); @@ -107253,7 +107560,7 @@ if (fails(function () { }); } -},{"./_array-methods":232,"./_collection":242,"./_collection-weak":241,"./_fails":255,"./_is-object":271,"./_meta":285,"./_object-assign":289,"./_redefine":311,"./_validate-collection":343}],485:[function(require,module,exports){ +},{"./_array-methods":238,"./_collection":248,"./_collection-weak":247,"./_fails":261,"./_is-object":277,"./_meta":291,"./_object-assign":295,"./_redefine":317,"./_validate-collection":349}],491:[function(require,module,exports){ 'use strict'; var weak = require('./_collection-weak'); @@ -107272,7 +107579,7 @@ require('./_collection')(WEAK_SET, function (get) { } }, weak, false, true); -},{"./_collection":242,"./_collection-weak":241,"./_validate-collection":343}],486:[function(require,module,exports){ +},{"./_collection":248,"./_collection-weak":247,"./_validate-collection":349}],492:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-flatMap/#sec-Array.prototype.flatMap @@ -107297,7 +107604,7 @@ $export($export.P, 'Array', { require('./_add-to-unscopables')('flatMap'); -},{"./_a-function":223,"./_add-to-unscopables":225,"./_array-species-create":235,"./_export":253,"./_flatten-into-array":258,"./_to-length":335,"./_to-object":336}],487:[function(require,module,exports){ +},{"./_a-function":229,"./_add-to-unscopables":231,"./_array-species-create":241,"./_export":259,"./_flatten-into-array":264,"./_to-length":341,"./_to-object":342}],493:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-flatMap/#sec-Array.prototype.flatten @@ -107321,7 +107628,7 @@ $export($export.P, 'Array', { require('./_add-to-unscopables')('flatten'); -},{"./_add-to-unscopables":225,"./_array-species-create":235,"./_export":253,"./_flatten-into-array":258,"./_to-integer":333,"./_to-length":335,"./_to-object":336}],488:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-species-create":241,"./_export":259,"./_flatten-into-array":264,"./_to-integer":339,"./_to-length":341,"./_to-object":342}],494:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/Array.prototype.includes @@ -107336,7 +107643,7 @@ $export($export.P, 'Array', { require('./_add-to-unscopables')('includes'); -},{"./_add-to-unscopables":225,"./_array-includes":231,"./_export":253}],489:[function(require,module,exports){ +},{"./_add-to-unscopables":231,"./_array-includes":237,"./_export":259}],495:[function(require,module,exports){ 'use strict'; // https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-09/sept-25.md#510-globalasap-for-enqueuing-a-microtask @@ -107352,7 +107659,7 @@ $export($export.G, { } }); -},{"./_cof":238,"./_export":253,"./_global":260,"./_microtask":287}],490:[function(require,module,exports){ +},{"./_cof":244,"./_export":259,"./_global":266,"./_microtask":293}],496:[function(require,module,exports){ 'use strict'; // https://github.com/ljharb/proposal-is-error @@ -107365,7 +107672,7 @@ $export($export.S, 'Error', { } }); -},{"./_cof":238,"./_export":253}],491:[function(require,module,exports){ +},{"./_cof":244,"./_export":259}],497:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-global @@ -107373,19 +107680,19 @@ var $export = require('./_export'); $export($export.G, { global: require('./_global') }); -},{"./_export":253,"./_global":260}],492:[function(require,module,exports){ +},{"./_export":259,"./_global":266}],498:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-map.from require('./_set-collection-from')('Map'); -},{"./_set-collection-from":314}],493:[function(require,module,exports){ +},{"./_set-collection-from":320}],499:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-map.of require('./_set-collection-of')('Map'); -},{"./_set-collection-of":315}],494:[function(require,module,exports){ +},{"./_set-collection-of":321}],500:[function(require,module,exports){ 'use strict'; // https://github.com/DavidBruant/Map-Set.prototype.toJSON @@ -107393,7 +107700,7 @@ var $export = require('./_export'); $export($export.P + $export.R, 'Map', { toJSON: require('./_collection-to-json')('Map') }); -},{"./_collection-to-json":240,"./_export":253}],495:[function(require,module,exports){ +},{"./_collection-to-json":246,"./_export":259}],501:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107405,7 +107712,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],496:[function(require,module,exports){ +},{"./_export":259}],502:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107413,7 +107720,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { DEG_PER_RAD: Math.PI / 180 }); -},{"./_export":253}],497:[function(require,module,exports){ +},{"./_export":259}],503:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107426,7 +107733,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],498:[function(require,module,exports){ +},{"./_export":259}],504:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107440,7 +107747,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253,"./_math-fround":281,"./_math-scale":283}],499:[function(require,module,exports){ +},{"./_export":259,"./_math-fround":287,"./_math-scale":289}],505:[function(require,module,exports){ 'use strict'; // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 @@ -107455,7 +107762,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],500:[function(require,module,exports){ +},{"./_export":259}],506:[function(require,module,exports){ 'use strict'; // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 @@ -107475,7 +107782,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],501:[function(require,module,exports){ +},{"./_export":259}],507:[function(require,module,exports){ 'use strict'; // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 @@ -107490,7 +107797,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],502:[function(require,module,exports){ +},{"./_export":259}],508:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107498,7 +107805,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { RAD_PER_DEG: 180 / Math.PI }); -},{"./_export":253}],503:[function(require,module,exports){ +},{"./_export":259}],509:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107511,7 +107818,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],504:[function(require,module,exports){ +},{"./_export":259}],510:[function(require,module,exports){ 'use strict'; // https://rwaldron.github.io/proposal-math-extensions/ @@ -107519,7 +107826,7 @@ var $export = require('./_export'); $export($export.S, 'Math', { scale: require('./_math-scale') }); -},{"./_export":253,"./_math-scale":283}],505:[function(require,module,exports){ +},{"./_export":259,"./_math-scale":289}],511:[function(require,module,exports){ 'use strict'; // http://jfbastien.github.io/papers/Math.signbit.html @@ -107530,7 +107837,7 @@ $export($export.S, 'Math', { signbit: function signbit(x) { return (x = +x) != x ? x : x == 0 ? 1 / x == Infinity : x > 0; } }); -},{"./_export":253}],506:[function(require,module,exports){ +},{"./_export":259}],512:[function(require,module,exports){ 'use strict'; // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 @@ -107550,7 +107857,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":253}],507:[function(require,module,exports){ +},{"./_export":259}],513:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107565,7 +107872,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_a-function":223,"./_descriptors":249,"./_export":253,"./_object-dp":291,"./_object-forced-pam":293,"./_to-object":336}],508:[function(require,module,exports){ +},{"./_a-function":229,"./_descriptors":255,"./_export":259,"./_object-dp":297,"./_object-forced-pam":299,"./_to-object":342}],514:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107580,7 +107887,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_a-function":223,"./_descriptors":249,"./_export":253,"./_object-dp":291,"./_object-forced-pam":293,"./_to-object":336}],509:[function(require,module,exports){ +},{"./_a-function":229,"./_descriptors":255,"./_export":259,"./_object-dp":297,"./_object-forced-pam":299,"./_to-object":342}],515:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-object-values-entries @@ -107593,7 +107900,7 @@ $export($export.S, 'Object', { } }); -},{"./_export":253,"./_object-to-array":303}],510:[function(require,module,exports){ +},{"./_export":259,"./_object-to-array":309}],516:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-object-getownpropertydescriptors @@ -107619,7 +107926,7 @@ $export($export.S, 'Object', { } }); -},{"./_create-property":244,"./_export":253,"./_object-gopd":294,"./_own-keys":304,"./_to-iobject":334}],511:[function(require,module,exports){ +},{"./_create-property":250,"./_export":259,"./_object-gopd":300,"./_own-keys":310,"./_to-iobject":340}],517:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107640,7 +107947,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_descriptors":249,"./_export":253,"./_object-forced-pam":293,"./_object-gopd":294,"./_object-gpo":298,"./_to-object":336,"./_to-primitive":337}],512:[function(require,module,exports){ +},{"./_descriptors":255,"./_export":259,"./_object-forced-pam":299,"./_object-gopd":300,"./_object-gpo":304,"./_to-object":342,"./_to-primitive":343}],518:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -107661,7 +107968,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_descriptors":249,"./_export":253,"./_object-forced-pam":293,"./_object-gopd":294,"./_object-gpo":298,"./_to-object":336,"./_to-primitive":337}],513:[function(require,module,exports){ +},{"./_descriptors":255,"./_export":259,"./_object-forced-pam":299,"./_object-gopd":300,"./_object-gpo":304,"./_to-object":342,"./_to-primitive":343}],519:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-object-values-entries @@ -107674,7 +107981,7 @@ $export($export.S, 'Object', { } }); -},{"./_export":253,"./_object-to-array":303}],514:[function(require,module,exports){ +},{"./_export":259,"./_object-to-array":309}],520:[function(require,module,exports){ 'use strict'; // https://github.com/zenparsing/es-observable @@ -107886,7 +108193,7 @@ $export($export.G, { Observable: $Observable }); require('./_set-species')('Observable'); -},{"./_a-function":223,"./_an-instance":226,"./_an-object":227,"./_core":243,"./_export":253,"./_for-of":259,"./_global":260,"./_hide":262,"./_microtask":287,"./_redefine-all":310,"./_set-species":317,"./_wks":346}],515:[function(require,module,exports){ +},{"./_a-function":229,"./_an-instance":232,"./_an-object":233,"./_core":249,"./_export":259,"./_for-of":265,"./_global":266,"./_hide":268,"./_microtask":293,"./_redefine-all":316,"./_set-species":323,"./_wks":352}],521:[function(require,module,exports){ // https://github.com/tc39/proposal-promise-finally 'use strict'; @@ -107910,7 +108217,7 @@ $export($export.P + $export.R, 'Promise', { 'finally': function _finally(onFinal } : onFinally); } }); -},{"./_core":243,"./_export":253,"./_global":260,"./_promise-resolve":308,"./_species-constructor":321}],516:[function(require,module,exports){ +},{"./_core":249,"./_export":259,"./_global":266,"./_promise-resolve":314,"./_species-constructor":327}],522:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-promise-try @@ -107925,7 +108232,7 @@ $export($export.S, 'Promise', { 'try': function _try(callbackfn) { return promiseCapability.promise; } }); -},{"./_export":253,"./_new-promise-capability":288,"./_perform":307}],517:[function(require,module,exports){ +},{"./_export":259,"./_new-promise-capability":294,"./_perform":313}],523:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -107937,7 +108244,7 @@ metadata.exp({ defineMetadata: function defineMetadata(metadataKey, metadataValu ordinaryDefineOwnMetadata(metadataKey, metadataValue, anObject(target), toMetaKey(targetKey)); } }); -},{"./_an-object":227,"./_metadata":286}],518:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292}],524:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -107956,7 +108263,7 @@ metadata.exp({ deleteMetadata: function deleteMetadata(metadataKey, target /* , return !!targetMetadata.size || store['delete'](target); } }); -},{"./_an-object":227,"./_metadata":286}],519:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292}],525:[function(require,module,exports){ 'use strict'; var Set = require('./es6.set'); @@ -107979,7 +108286,7 @@ metadata.exp({ getMetadataKeys: function getMetadataKeys(target /* , targetKey * return ordinaryMetadataKeys(anObject(target), arguments.length < 2 ? undefined : toMetaKey(arguments[1])); } }); -},{"./_an-object":227,"./_array-from-iterable":230,"./_metadata":286,"./_object-gpo":298,"./es6.set":449}],520:[function(require,module,exports){ +},{"./_an-object":233,"./_array-from-iterable":236,"./_metadata":292,"./_object-gpo":304,"./es6.set":455}],526:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -108000,7 +108307,7 @@ metadata.exp({ getMetadata: function getMetadata(metadataKey, target /* , target return ordinaryGetMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":227,"./_metadata":286,"./_object-gpo":298}],521:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292,"./_object-gpo":304}],527:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -108012,7 +108319,7 @@ metadata.exp({ getOwnMetadataKeys: function getOwnMetadataKeys(target /* , targe return ordinaryOwnMetadataKeys(anObject(target), arguments.length < 2 ? undefined : toMetaKey(arguments[1])); } }); -},{"./_an-object":227,"./_metadata":286}],522:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292}],528:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -108024,7 +108331,7 @@ metadata.exp({ getOwnMetadata: function getOwnMetadata(metadataKey, target /* , return ordinaryGetOwnMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":227,"./_metadata":286}],523:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292}],529:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -108044,7 +108351,7 @@ metadata.exp({ hasMetadata: function hasMetadata(metadataKey, target /* , target return ordinaryHasMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":227,"./_metadata":286,"./_object-gpo":298}],524:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292,"./_object-gpo":304}],530:[function(require,module,exports){ 'use strict'; var metadata = require('./_metadata'); @@ -108056,7 +108363,7 @@ metadata.exp({ hasOwnMetadata: function hasOwnMetadata(metadataKey, target /* , return ordinaryHasOwnMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":227,"./_metadata":286}],525:[function(require,module,exports){ +},{"./_an-object":233,"./_metadata":292}],531:[function(require,module,exports){ 'use strict'; var $metadata = require('./_metadata'); @@ -108071,19 +108378,19 @@ $metadata.exp({ metadata: function metadata(metadataKey, metadataValue) { }; } }); -},{"./_a-function":223,"./_an-object":227,"./_metadata":286}],526:[function(require,module,exports){ +},{"./_a-function":229,"./_an-object":233,"./_metadata":292}],532:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-set.from require('./_set-collection-from')('Set'); -},{"./_set-collection-from":314}],527:[function(require,module,exports){ +},{"./_set-collection-from":320}],533:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-set.of require('./_set-collection-of')('Set'); -},{"./_set-collection-of":315}],528:[function(require,module,exports){ +},{"./_set-collection-of":321}],534:[function(require,module,exports){ 'use strict'; // https://github.com/DavidBruant/Map-Set.prototype.toJSON @@ -108091,7 +108398,7 @@ var $export = require('./_export'); $export($export.P + $export.R, 'Set', { toJSON: require('./_collection-to-json')('Set') }); -},{"./_collection-to-json":240,"./_export":253}],529:[function(require,module,exports){ +},{"./_collection-to-json":246,"./_export":259}],535:[function(require,module,exports){ 'use strict'; // https://github.com/mathiasbynens/String.prototype.at @@ -108104,7 +108411,7 @@ $export($export.P, 'String', { } }); -},{"./_export":253,"./_string-at":323}],530:[function(require,module,exports){ +},{"./_export":259,"./_string-at":329}],536:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/String.prototype.matchAll/ @@ -108137,7 +108444,7 @@ $export($export.P, 'String', { } }); -},{"./_defined":248,"./_export":253,"./_flags":257,"./_is-regexp":272,"./_iter-create":274,"./_to-length":335}],531:[function(require,module,exports){ +},{"./_defined":254,"./_export":259,"./_flags":263,"./_is-regexp":278,"./_iter-create":280,"./_to-length":341}],537:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-string-pad-start-end @@ -108152,7 +108459,7 @@ $export($export.P + $export.F * /Version\/10\.\d+(\.\d+)? Safari\//.test(userAge } }); -},{"./_export":253,"./_string-pad":326,"./_user-agent":342}],532:[function(require,module,exports){ +},{"./_export":259,"./_string-pad":332,"./_user-agent":348}],538:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-string-pad-start-end @@ -108167,7 +108474,7 @@ $export($export.P + $export.F * /Version\/10\.\d+(\.\d+)? Safari\//.test(userAge } }); -},{"./_export":253,"./_string-pad":326,"./_user-agent":342}],533:[function(require,module,exports){ +},{"./_export":259,"./_string-pad":332,"./_user-agent":348}],539:[function(require,module,exports){ 'use strict'; // https://github.com/sebmarkbage/ecmascript-string-left-right-trim @@ -108177,7 +108484,7 @@ require('./_string-trim')('trimLeft', function ($trim) { }; }, 'trimStart'); -},{"./_string-trim":328}],534:[function(require,module,exports){ +},{"./_string-trim":334}],540:[function(require,module,exports){ 'use strict'; // https://github.com/sebmarkbage/ecmascript-string-left-right-trim @@ -108187,17 +108494,17 @@ require('./_string-trim')('trimRight', function ($trim) { }; }, 'trimEnd'); -},{"./_string-trim":328}],535:[function(require,module,exports){ +},{"./_string-trim":334}],541:[function(require,module,exports){ 'use strict'; require('./_wks-define')('asyncIterator'); -},{"./_wks-define":344}],536:[function(require,module,exports){ +},{"./_wks-define":350}],542:[function(require,module,exports){ 'use strict'; require('./_wks-define')('observable'); -},{"./_wks-define":344}],537:[function(require,module,exports){ +},{"./_wks-define":350}],543:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-global @@ -108205,31 +108512,31 @@ var $export = require('./_export'); $export($export.S, 'System', { global: require('./_global') }); -},{"./_export":253,"./_global":260}],538:[function(require,module,exports){ +},{"./_export":259,"./_global":266}],544:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.from require('./_set-collection-from')('WeakMap'); -},{"./_set-collection-from":314}],539:[function(require,module,exports){ +},{"./_set-collection-from":320}],545:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.of require('./_set-collection-of')('WeakMap'); -},{"./_set-collection-of":315}],540:[function(require,module,exports){ +},{"./_set-collection-of":321}],546:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.from require('./_set-collection-from')('WeakSet'); -},{"./_set-collection-from":314}],541:[function(require,module,exports){ +},{"./_set-collection-from":320}],547:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.of require('./_set-collection-of')('WeakSet'); -},{"./_set-collection-of":315}],542:[function(require,module,exports){ +},{"./_set-collection-of":321}],548:[function(require,module,exports){ 'use strict'; var $iterators = require('./es6.array.iterator'); @@ -108293,7 +108600,7 @@ for (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++ } } -},{"./_global":260,"./_hide":262,"./_iterators":278,"./_object-keys":300,"./_redefine":311,"./_wks":346,"./es6.array.iterator":359}],543:[function(require,module,exports){ +},{"./_global":266,"./_hide":268,"./_iterators":284,"./_object-keys":306,"./_redefine":317,"./_wks":352,"./es6.array.iterator":365}],549:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); @@ -108303,7 +108610,7 @@ $export($export.G + $export.B, { clearImmediate: $task.clear }); -},{"./_export":253,"./_task":330}],544:[function(require,module,exports){ +},{"./_export":259,"./_task":336}],550:[function(require,module,exports){ 'use strict'; // ie9- setTimeout & setInterval additional parameters fix @@ -108327,7 +108634,7 @@ $export($export.G + $export.B + $export.F * MSIE, { setInterval: wrap(global.setInterval) }); -},{"./_export":253,"./_global":260,"./_user-agent":342}],545:[function(require,module,exports){ +},{"./_export":259,"./_global":266,"./_user-agent":348}],551:[function(require,module,exports){ 'use strict'; require('./modules/es6.symbol'); @@ -108528,7 +108835,7 @@ require('./modules/web.immediate'); require('./modules/web.dom.iterable'); module.exports = require('./modules/_core'); -},{"./modules/_core":243,"./modules/es6.array.copy-within":349,"./modules/es6.array.every":350,"./modules/es6.array.fill":351,"./modules/es6.array.filter":352,"./modules/es6.array.find":354,"./modules/es6.array.find-index":353,"./modules/es6.array.for-each":355,"./modules/es6.array.from":356,"./modules/es6.array.index-of":357,"./modules/es6.array.is-array":358,"./modules/es6.array.iterator":359,"./modules/es6.array.join":360,"./modules/es6.array.last-index-of":361,"./modules/es6.array.map":362,"./modules/es6.array.of":363,"./modules/es6.array.reduce":365,"./modules/es6.array.reduce-right":364,"./modules/es6.array.slice":366,"./modules/es6.array.some":367,"./modules/es6.array.sort":368,"./modules/es6.array.species":369,"./modules/es6.date.now":370,"./modules/es6.date.to-iso-string":371,"./modules/es6.date.to-json":372,"./modules/es6.date.to-primitive":373,"./modules/es6.date.to-string":374,"./modules/es6.function.bind":375,"./modules/es6.function.has-instance":376,"./modules/es6.function.name":377,"./modules/es6.map":378,"./modules/es6.math.acosh":379,"./modules/es6.math.asinh":380,"./modules/es6.math.atanh":381,"./modules/es6.math.cbrt":382,"./modules/es6.math.clz32":383,"./modules/es6.math.cosh":384,"./modules/es6.math.expm1":385,"./modules/es6.math.fround":386,"./modules/es6.math.hypot":387,"./modules/es6.math.imul":388,"./modules/es6.math.log10":389,"./modules/es6.math.log1p":390,"./modules/es6.math.log2":391,"./modules/es6.math.sign":392,"./modules/es6.math.sinh":393,"./modules/es6.math.tanh":394,"./modules/es6.math.trunc":395,"./modules/es6.number.constructor":396,"./modules/es6.number.epsilon":397,"./modules/es6.number.is-finite":398,"./modules/es6.number.is-integer":399,"./modules/es6.number.is-nan":400,"./modules/es6.number.is-safe-integer":401,"./modules/es6.number.max-safe-integer":402,"./modules/es6.number.min-safe-integer":403,"./modules/es6.number.parse-float":404,"./modules/es6.number.parse-int":405,"./modules/es6.number.to-fixed":406,"./modules/es6.number.to-precision":407,"./modules/es6.object.assign":408,"./modules/es6.object.create":409,"./modules/es6.object.define-properties":410,"./modules/es6.object.define-property":411,"./modules/es6.object.freeze":412,"./modules/es6.object.get-own-property-descriptor":413,"./modules/es6.object.get-own-property-names":414,"./modules/es6.object.get-prototype-of":415,"./modules/es6.object.is":419,"./modules/es6.object.is-extensible":416,"./modules/es6.object.is-frozen":417,"./modules/es6.object.is-sealed":418,"./modules/es6.object.keys":420,"./modules/es6.object.prevent-extensions":421,"./modules/es6.object.seal":422,"./modules/es6.object.set-prototype-of":423,"./modules/es6.object.to-string":424,"./modules/es6.parse-float":425,"./modules/es6.parse-int":426,"./modules/es6.promise":427,"./modules/es6.reflect.apply":428,"./modules/es6.reflect.construct":429,"./modules/es6.reflect.define-property":430,"./modules/es6.reflect.delete-property":431,"./modules/es6.reflect.enumerate":432,"./modules/es6.reflect.get":435,"./modules/es6.reflect.get-own-property-descriptor":433,"./modules/es6.reflect.get-prototype-of":434,"./modules/es6.reflect.has":436,"./modules/es6.reflect.is-extensible":437,"./modules/es6.reflect.own-keys":438,"./modules/es6.reflect.prevent-extensions":439,"./modules/es6.reflect.set":441,"./modules/es6.reflect.set-prototype-of":440,"./modules/es6.regexp.constructor":442,"./modules/es6.regexp.flags":443,"./modules/es6.regexp.match":444,"./modules/es6.regexp.replace":445,"./modules/es6.regexp.search":446,"./modules/es6.regexp.split":447,"./modules/es6.regexp.to-string":448,"./modules/es6.set":449,"./modules/es6.string.anchor":450,"./modules/es6.string.big":451,"./modules/es6.string.blink":452,"./modules/es6.string.bold":453,"./modules/es6.string.code-point-at":454,"./modules/es6.string.ends-with":455,"./modules/es6.string.fixed":456,"./modules/es6.string.fontcolor":457,"./modules/es6.string.fontsize":458,"./modules/es6.string.from-code-point":459,"./modules/es6.string.includes":460,"./modules/es6.string.italics":461,"./modules/es6.string.iterator":462,"./modules/es6.string.link":463,"./modules/es6.string.raw":464,"./modules/es6.string.repeat":465,"./modules/es6.string.small":466,"./modules/es6.string.starts-with":467,"./modules/es6.string.strike":468,"./modules/es6.string.sub":469,"./modules/es6.string.sup":470,"./modules/es6.string.trim":471,"./modules/es6.symbol":472,"./modules/es6.typed.array-buffer":473,"./modules/es6.typed.data-view":474,"./modules/es6.typed.float32-array":475,"./modules/es6.typed.float64-array":476,"./modules/es6.typed.int16-array":477,"./modules/es6.typed.int32-array":478,"./modules/es6.typed.int8-array":479,"./modules/es6.typed.uint16-array":480,"./modules/es6.typed.uint32-array":481,"./modules/es6.typed.uint8-array":482,"./modules/es6.typed.uint8-clamped-array":483,"./modules/es6.weak-map":484,"./modules/es6.weak-set":485,"./modules/es7.array.flat-map":486,"./modules/es7.array.flatten":487,"./modules/es7.array.includes":488,"./modules/es7.asap":489,"./modules/es7.error.is-error":490,"./modules/es7.global":491,"./modules/es7.map.from":492,"./modules/es7.map.of":493,"./modules/es7.map.to-json":494,"./modules/es7.math.clamp":495,"./modules/es7.math.deg-per-rad":496,"./modules/es7.math.degrees":497,"./modules/es7.math.fscale":498,"./modules/es7.math.iaddh":499,"./modules/es7.math.imulh":500,"./modules/es7.math.isubh":501,"./modules/es7.math.rad-per-deg":502,"./modules/es7.math.radians":503,"./modules/es7.math.scale":504,"./modules/es7.math.signbit":505,"./modules/es7.math.umulh":506,"./modules/es7.object.define-getter":507,"./modules/es7.object.define-setter":508,"./modules/es7.object.entries":509,"./modules/es7.object.get-own-property-descriptors":510,"./modules/es7.object.lookup-getter":511,"./modules/es7.object.lookup-setter":512,"./modules/es7.object.values":513,"./modules/es7.observable":514,"./modules/es7.promise.finally":515,"./modules/es7.promise.try":516,"./modules/es7.reflect.define-metadata":517,"./modules/es7.reflect.delete-metadata":518,"./modules/es7.reflect.get-metadata":520,"./modules/es7.reflect.get-metadata-keys":519,"./modules/es7.reflect.get-own-metadata":522,"./modules/es7.reflect.get-own-metadata-keys":521,"./modules/es7.reflect.has-metadata":523,"./modules/es7.reflect.has-own-metadata":524,"./modules/es7.reflect.metadata":525,"./modules/es7.set.from":526,"./modules/es7.set.of":527,"./modules/es7.set.to-json":528,"./modules/es7.string.at":529,"./modules/es7.string.match-all":530,"./modules/es7.string.pad-end":531,"./modules/es7.string.pad-start":532,"./modules/es7.string.trim-left":533,"./modules/es7.string.trim-right":534,"./modules/es7.symbol.async-iterator":535,"./modules/es7.symbol.observable":536,"./modules/es7.system.global":537,"./modules/es7.weak-map.from":538,"./modules/es7.weak-map.of":539,"./modules/es7.weak-set.from":540,"./modules/es7.weak-set.of":541,"./modules/web.dom.iterable":542,"./modules/web.immediate":543,"./modules/web.timers":544}],546:[function(require,module,exports){ +},{"./modules/_core":249,"./modules/es6.array.copy-within":355,"./modules/es6.array.every":356,"./modules/es6.array.fill":357,"./modules/es6.array.filter":358,"./modules/es6.array.find":360,"./modules/es6.array.find-index":359,"./modules/es6.array.for-each":361,"./modules/es6.array.from":362,"./modules/es6.array.index-of":363,"./modules/es6.array.is-array":364,"./modules/es6.array.iterator":365,"./modules/es6.array.join":366,"./modules/es6.array.last-index-of":367,"./modules/es6.array.map":368,"./modules/es6.array.of":369,"./modules/es6.array.reduce":371,"./modules/es6.array.reduce-right":370,"./modules/es6.array.slice":372,"./modules/es6.array.some":373,"./modules/es6.array.sort":374,"./modules/es6.array.species":375,"./modules/es6.date.now":376,"./modules/es6.date.to-iso-string":377,"./modules/es6.date.to-json":378,"./modules/es6.date.to-primitive":379,"./modules/es6.date.to-string":380,"./modules/es6.function.bind":381,"./modules/es6.function.has-instance":382,"./modules/es6.function.name":383,"./modules/es6.map":384,"./modules/es6.math.acosh":385,"./modules/es6.math.asinh":386,"./modules/es6.math.atanh":387,"./modules/es6.math.cbrt":388,"./modules/es6.math.clz32":389,"./modules/es6.math.cosh":390,"./modules/es6.math.expm1":391,"./modules/es6.math.fround":392,"./modules/es6.math.hypot":393,"./modules/es6.math.imul":394,"./modules/es6.math.log10":395,"./modules/es6.math.log1p":396,"./modules/es6.math.log2":397,"./modules/es6.math.sign":398,"./modules/es6.math.sinh":399,"./modules/es6.math.tanh":400,"./modules/es6.math.trunc":401,"./modules/es6.number.constructor":402,"./modules/es6.number.epsilon":403,"./modules/es6.number.is-finite":404,"./modules/es6.number.is-integer":405,"./modules/es6.number.is-nan":406,"./modules/es6.number.is-safe-integer":407,"./modules/es6.number.max-safe-integer":408,"./modules/es6.number.min-safe-integer":409,"./modules/es6.number.parse-float":410,"./modules/es6.number.parse-int":411,"./modules/es6.number.to-fixed":412,"./modules/es6.number.to-precision":413,"./modules/es6.object.assign":414,"./modules/es6.object.create":415,"./modules/es6.object.define-properties":416,"./modules/es6.object.define-property":417,"./modules/es6.object.freeze":418,"./modules/es6.object.get-own-property-descriptor":419,"./modules/es6.object.get-own-property-names":420,"./modules/es6.object.get-prototype-of":421,"./modules/es6.object.is":425,"./modules/es6.object.is-extensible":422,"./modules/es6.object.is-frozen":423,"./modules/es6.object.is-sealed":424,"./modules/es6.object.keys":426,"./modules/es6.object.prevent-extensions":427,"./modules/es6.object.seal":428,"./modules/es6.object.set-prototype-of":429,"./modules/es6.object.to-string":430,"./modules/es6.parse-float":431,"./modules/es6.parse-int":432,"./modules/es6.promise":433,"./modules/es6.reflect.apply":434,"./modules/es6.reflect.construct":435,"./modules/es6.reflect.define-property":436,"./modules/es6.reflect.delete-property":437,"./modules/es6.reflect.enumerate":438,"./modules/es6.reflect.get":441,"./modules/es6.reflect.get-own-property-descriptor":439,"./modules/es6.reflect.get-prototype-of":440,"./modules/es6.reflect.has":442,"./modules/es6.reflect.is-extensible":443,"./modules/es6.reflect.own-keys":444,"./modules/es6.reflect.prevent-extensions":445,"./modules/es6.reflect.set":447,"./modules/es6.reflect.set-prototype-of":446,"./modules/es6.regexp.constructor":448,"./modules/es6.regexp.flags":449,"./modules/es6.regexp.match":450,"./modules/es6.regexp.replace":451,"./modules/es6.regexp.search":452,"./modules/es6.regexp.split":453,"./modules/es6.regexp.to-string":454,"./modules/es6.set":455,"./modules/es6.string.anchor":456,"./modules/es6.string.big":457,"./modules/es6.string.blink":458,"./modules/es6.string.bold":459,"./modules/es6.string.code-point-at":460,"./modules/es6.string.ends-with":461,"./modules/es6.string.fixed":462,"./modules/es6.string.fontcolor":463,"./modules/es6.string.fontsize":464,"./modules/es6.string.from-code-point":465,"./modules/es6.string.includes":466,"./modules/es6.string.italics":467,"./modules/es6.string.iterator":468,"./modules/es6.string.link":469,"./modules/es6.string.raw":470,"./modules/es6.string.repeat":471,"./modules/es6.string.small":472,"./modules/es6.string.starts-with":473,"./modules/es6.string.strike":474,"./modules/es6.string.sub":475,"./modules/es6.string.sup":476,"./modules/es6.string.trim":477,"./modules/es6.symbol":478,"./modules/es6.typed.array-buffer":479,"./modules/es6.typed.data-view":480,"./modules/es6.typed.float32-array":481,"./modules/es6.typed.float64-array":482,"./modules/es6.typed.int16-array":483,"./modules/es6.typed.int32-array":484,"./modules/es6.typed.int8-array":485,"./modules/es6.typed.uint16-array":486,"./modules/es6.typed.uint32-array":487,"./modules/es6.typed.uint8-array":488,"./modules/es6.typed.uint8-clamped-array":489,"./modules/es6.weak-map":490,"./modules/es6.weak-set":491,"./modules/es7.array.flat-map":492,"./modules/es7.array.flatten":493,"./modules/es7.array.includes":494,"./modules/es7.asap":495,"./modules/es7.error.is-error":496,"./modules/es7.global":497,"./modules/es7.map.from":498,"./modules/es7.map.of":499,"./modules/es7.map.to-json":500,"./modules/es7.math.clamp":501,"./modules/es7.math.deg-per-rad":502,"./modules/es7.math.degrees":503,"./modules/es7.math.fscale":504,"./modules/es7.math.iaddh":505,"./modules/es7.math.imulh":506,"./modules/es7.math.isubh":507,"./modules/es7.math.rad-per-deg":508,"./modules/es7.math.radians":509,"./modules/es7.math.scale":510,"./modules/es7.math.signbit":511,"./modules/es7.math.umulh":512,"./modules/es7.object.define-getter":513,"./modules/es7.object.define-setter":514,"./modules/es7.object.entries":515,"./modules/es7.object.get-own-property-descriptors":516,"./modules/es7.object.lookup-getter":517,"./modules/es7.object.lookup-setter":518,"./modules/es7.object.values":519,"./modules/es7.observable":520,"./modules/es7.promise.finally":521,"./modules/es7.promise.try":522,"./modules/es7.reflect.define-metadata":523,"./modules/es7.reflect.delete-metadata":524,"./modules/es7.reflect.get-metadata":526,"./modules/es7.reflect.get-metadata-keys":525,"./modules/es7.reflect.get-own-metadata":528,"./modules/es7.reflect.get-own-metadata-keys":527,"./modules/es7.reflect.has-metadata":529,"./modules/es7.reflect.has-own-metadata":530,"./modules/es7.reflect.metadata":531,"./modules/es7.set.from":532,"./modules/es7.set.of":533,"./modules/es7.set.to-json":534,"./modules/es7.string.at":535,"./modules/es7.string.match-all":536,"./modules/es7.string.pad-end":537,"./modules/es7.string.pad-start":538,"./modules/es7.string.trim-left":539,"./modules/es7.string.trim-right":540,"./modules/es7.symbol.async-iterator":541,"./modules/es7.symbol.observable":542,"./modules/es7.system.global":543,"./modules/es7.weak-map.from":544,"./modules/es7.weak-map.of":545,"./modules/es7.weak-set.from":546,"./modules/es7.weak-set.of":547,"./modules/web.dom.iterable":548,"./modules/web.immediate":549,"./modules/web.timers":550}],552:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -108639,7 +108946,7 @@ function objectToString(o) { } }).call(this,{"isBuffer":require("../../is-buffer/index.js")}) -},{"../../is-buffer/index.js":609}],547:[function(require,module,exports){ +},{"../../is-buffer/index.js":615}],553:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -108767,7 +109074,7 @@ function formatReturnValue(bn, enc, len) { } }).call(this,require("buffer").Buffer) -},{"bn.js":186,"buffer":219,"elliptic":567}],548:[function(require,module,exports){ +},{"bn.js":192,"buffer":225,"elliptic":573}],554:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -108824,7 +109131,7 @@ module.exports = function createHash(alg) { }; }).call(this,require("buffer").Buffer) -},{"./md5":550,"buffer":219,"cipher-base":220,"inherits":608,"ripemd160":660,"sha.js":671}],549:[function(require,module,exports){ +},{"./md5":556,"buffer":225,"cipher-base":226,"inherits":614,"ripemd160":666,"sha.js":677}],555:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -108859,7 +109166,7 @@ module.exports = function hash(buf, fn) { }; }).call(this,require("buffer").Buffer) -},{"buffer":219}],550:[function(require,module,exports){ +},{"buffer":225}],556:[function(require,module,exports){ 'use strict'; /* * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message @@ -109012,7 +109319,7 @@ module.exports = function md5(buf) { return makeHash(buf, core_md5); }; -},{"./make-hash":549}],551:[function(require,module,exports){ +},{"./make-hash":555}],557:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -109077,7 +109384,7 @@ module.exports = function createHmac(alg, key) { return new Hmac(alg, key); }; -},{"./legacy":552,"cipher-base":220,"create-hash/md5":550,"inherits":608,"ripemd160":660,"safe-buffer":662,"sha.js":671}],552:[function(require,module,exports){ +},{"./legacy":558,"cipher-base":226,"create-hash/md5":556,"inherits":614,"ripemd160":666,"safe-buffer":668,"sha.js":677}],558:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -109126,7 +109433,7 @@ Hmac.prototype._final = function () { }; module.exports = Hmac; -},{"cipher-base":220,"inherits":608,"safe-buffer":662}],553:[function(require,module,exports){ +},{"cipher-base":226,"inherits":614,"safe-buffer":668}],559:[function(require,module,exports){ 'use strict'; exports.randomBytes = exports.rng = exports.pseudoRandomBytes = exports.prng = require('randombytes'); @@ -109221,7 +109528,7 @@ exports.constants = { 'POINT_CONVERSION_HYBRID': 6 }; -},{"browserify-cipher":206,"browserify-sign":213,"browserify-sign/algos":210,"create-ecdh":547,"create-hash":548,"create-hmac":551,"diffie-hellman":563,"pbkdf2":632,"public-encrypt":639,"randombytes":645,"randomfill":646}],554:[function(require,module,exports){ +},{"browserify-cipher":212,"browserify-sign":219,"browserify-sign/algos":216,"create-ecdh":553,"create-hash":554,"create-hmac":557,"diffie-hellman":569,"pbkdf2":638,"public-encrypt":645,"randombytes":651,"randomfill":652}],560:[function(require,module,exports){ 'use strict'; exports.utils = require('./des/utils'); @@ -109230,7 +109537,7 @@ exports.DES = require('./des/des'); exports.CBC = require('./des/cbc'); exports.EDE = require('./des/ede'); -},{"./des/cbc":555,"./des/cipher":556,"./des/des":557,"./des/ede":558,"./des/utils":559}],555:[function(require,module,exports){ +},{"./des/cbc":561,"./des/cipher":562,"./des/des":563,"./des/ede":564,"./des/utils":565}],561:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -109298,7 +109605,7 @@ proto._update = function _update(inp, inOff, out, outOff) { } }; -},{"inherits":608,"minimalistic-assert":625}],556:[function(require,module,exports){ +},{"inherits":614,"minimalistic-assert":631}],562:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -109425,7 +109732,7 @@ Cipher.prototype._finalDecrypt = function _finalDecrypt() { return this._unpad(out); }; -},{"minimalistic-assert":625}],557:[function(require,module,exports){ +},{"minimalistic-assert":631}],563:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -109562,7 +109869,7 @@ DES.prototype._decrypt = function _decrypt(state, lStart, rStart, out, off) { utils.rip(l, r, out, off); }; -},{"../des":554,"inherits":608,"minimalistic-assert":625}],558:[function(require,module,exports){ +},{"../des":560,"inherits":614,"minimalistic-assert":631}],564:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -109611,7 +109918,7 @@ EDE.prototype._update = function _update(inp, inOff, out, outOff) { EDE.prototype._pad = DES.prototype._pad; EDE.prototype._unpad = DES.prototype._unpad; -},{"../des":554,"inherits":608,"minimalistic-assert":625}],559:[function(require,module,exports){ +},{"../des":560,"inherits":614,"minimalistic-assert":631}],565:[function(require,module,exports){ 'use strict'; exports.readUInt32BE = function readUInt32BE(bytes, off) { @@ -109817,7 +110124,7 @@ exports.padSplit = function padSplit(num, size, group) { }return out.join(' '); }; -},{}],560:[function(require,module,exports){ +},{}],566:[function(require,module,exports){ 'use strict'; var detectBrowser = require('./lib/detectBrowser'); @@ -109830,7 +110137,7 @@ if (typeof navigator !== 'undefined' && navigator) { module.exports = detectBrowser(agent); -},{"./lib/detectBrowser":561}],561:[function(require,module,exports){ +},{"./lib/detectBrowser":567}],567:[function(require,module,exports){ 'use strict'; var detectOS = require('./detectOS.js'); @@ -109858,7 +110165,7 @@ module.exports = function detectBrowser(userAgentString) { }).filter(Boolean).shift(); }; -},{"./detectOS.js":562}],562:[function(require,module,exports){ +},{"./detectOS.js":568}],568:[function(require,module,exports){ 'use strict'; module.exports = function detectOS(userAgentString) { @@ -109948,7 +110255,7 @@ module.exports = function detectOS(userAgentString) { return detected && detected[0] ? detected[0].name : null; }; -},{}],563:[function(require,module,exports){ +},{}],569:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -109996,7 +110303,7 @@ exports.DiffieHellmanGroup = exports.createDiffieHellmanGroup = exports.getDiffi exports.createDiffieHellman = exports.DiffieHellman = createDiffieHellman; }).call(this,require("buffer").Buffer) -},{"./lib/dh":564,"./lib/generatePrime":565,"./lib/primes.json":566,"buffer":219}],564:[function(require,module,exports){ +},{"./lib/dh":570,"./lib/generatePrime":571,"./lib/primes.json":572,"buffer":225}],570:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -110163,7 +110470,7 @@ function formatReturnValue(bn, enc) { } }).call(this,require("buffer").Buffer) -},{"./generatePrime":565,"bn.js":186,"buffer":219,"miller-rabin":624,"randombytes":645}],565:[function(require,module,exports){ +},{"./generatePrime":571,"bn.js":192,"buffer":225,"miller-rabin":630,"randombytes":651}],571:[function(require,module,exports){ 'use strict'; var randomBytes = require('randombytes'); @@ -110264,7 +110571,7 @@ function findPrime(bits, gen) { } } -},{"bn.js":186,"miller-rabin":624,"randombytes":645}],566:[function(require,module,exports){ +},{"bn.js":192,"miller-rabin":630,"randombytes":651}],572:[function(require,module,exports){ module.exports={ "modp1": { "gen": "02", @@ -110299,7 +110606,7 @@ module.exports={ "prime": "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff" } } -},{}],567:[function(require,module,exports){ +},{}],573:[function(require,module,exports){ 'use strict'; var elliptic = exports; @@ -110314,7 +110621,7 @@ elliptic.curves = require('./elliptic/curves'); elliptic.ec = require('./elliptic/ec'); elliptic.eddsa = require('./elliptic/eddsa'); -},{"../package.json":582,"./elliptic/curve":570,"./elliptic/curves":573,"./elliptic/ec":574,"./elliptic/eddsa":577,"./elliptic/utils":581,"brorand":187}],568:[function(require,module,exports){ +},{"../package.json":588,"./elliptic/curve":576,"./elliptic/curves":579,"./elliptic/ec":580,"./elliptic/eddsa":583,"./elliptic/utils":587,"brorand":193}],574:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -110646,7 +110953,7 @@ BasePoint.prototype.dblp = function dblp(k) { }return r; }; -},{"../../elliptic":567,"bn.js":186}],569:[function(require,module,exports){ +},{"../../elliptic":573,"bn.js":192}],575:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -111034,7 +111341,7 @@ Point.prototype.eqXToP = function eqXToP(x) { Point.prototype.toP = Point.prototype.normalize; Point.prototype.mixedAdd = Point.prototype.add; -},{"../../elliptic":567,"../curve":570,"bn.js":186,"inherits":608}],570:[function(require,module,exports){ +},{"../../elliptic":573,"../curve":576,"bn.js":192,"inherits":614}],576:[function(require,module,exports){ 'use strict'; var curve = exports; @@ -111044,7 +111351,7 @@ curve.short = require('./short'); curve.mont = require('./mont'); curve.edwards = require('./edwards'); -},{"./base":568,"./edwards":569,"./mont":571,"./short":572}],571:[function(require,module,exports){ +},{"./base":574,"./edwards":575,"./mont":577,"./short":578}],577:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -111221,7 +111528,7 @@ Point.prototype.getX = function getX() { return this.x.fromRed(); }; -},{"../../elliptic":567,"../curve":570,"bn.js":186,"inherits":608}],572:[function(require,module,exports){ +},{"../../elliptic":573,"../curve":576,"bn.js":192,"inherits":614}],578:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -112086,7 +112393,7 @@ JPoint.prototype.isInfinity = function isInfinity() { return this.z.cmpn(0) === 0; }; -},{"../../elliptic":567,"../curve":570,"bn.js":186,"inherits":608}],573:[function(require,module,exports){ +},{"../../elliptic":573,"../curve":576,"bn.js":192,"inherits":614}],579:[function(require,module,exports){ 'use strict'; var curves = exports; @@ -112244,7 +112551,7 @@ defineCurve('secp256k1', { g: ['79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798', '483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8', pre] }); -},{"../elliptic":567,"./precomputed/secp256k1":580,"hash.js":590}],574:[function(require,module,exports){ +},{"../elliptic":573,"./precomputed/secp256k1":586,"hash.js":596}],580:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -112462,7 +112769,7 @@ EC.prototype.getKeyRecoveryParam = function (e, signature, Q, enc) { throw new Error('Unable to find valid recovery factor'); }; -},{"../../elliptic":567,"./key":575,"./signature":576,"bn.js":186,"hmac-drbg":603}],575:[function(require,module,exports){ +},{"../../elliptic":573,"./key":581,"./signature":582,"bn.js":192,"hmac-drbg":609}],581:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -112569,7 +112876,7 @@ KeyPair.prototype.inspect = function inspect() { return ''; }; -},{"../../elliptic":567,"bn.js":186}],576:[function(require,module,exports){ +},{"../../elliptic":573,"bn.js":192}],582:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -112699,7 +113006,7 @@ Signature.prototype.toDER = function toDER(enc) { return utils.encode(res, enc); }; -},{"../../elliptic":567,"bn.js":186}],577:[function(require,module,exports){ +},{"../../elliptic":573,"bn.js":192}],583:[function(require,module,exports){ 'use strict'; var hash = require('hash.js'); @@ -112816,7 +113123,7 @@ EDDSA.prototype.isPoint = function isPoint(val) { return val instanceof this.pointClass; }; -},{"../../elliptic":567,"./key":578,"./signature":579,"hash.js":590}],578:[function(require,module,exports){ +},{"../../elliptic":573,"./key":584,"./signature":585,"hash.js":596}],584:[function(require,module,exports){ 'use strict'; var elliptic = require('../../elliptic'); @@ -112908,7 +113215,7 @@ KeyPair.prototype.getPublic = function getPublic(enc) { module.exports = KeyPair; -},{"../../elliptic":567}],579:[function(require,module,exports){ +},{"../../elliptic":573}],585:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -112975,7 +113282,7 @@ Signature.prototype.toHex = function toHex() { module.exports = Signature; -},{"../../elliptic":567,"bn.js":186}],580:[function(require,module,exports){ +},{"../../elliptic":573,"bn.js":192}],586:[function(require,module,exports){ 'use strict'; module.exports = { @@ -112989,7 +113296,7 @@ module.exports = { } }; -},{}],581:[function(require,module,exports){ +},{}],587:[function(require,module,exports){ 'use strict'; var utils = exports; @@ -113092,7 +113399,7 @@ function intFromLE(bytes) { } utils.intFromLE = intFromLE; -},{"bn.js":186,"minimalistic-assert":625,"minimalistic-crypto-utils":626}],582:[function(require,module,exports){ +},{"bn.js":192,"minimalistic-assert":631,"minimalistic-crypto-utils":632}],588:[function(require,module,exports){ module.exports={ "_args": [ [ @@ -113186,7 +113493,7 @@ module.exports={ "version": "6.4.0" } -},{}],583:[function(require,module,exports){ +},{}],589:[function(require,module,exports){ module.exports={ "genesisGasLimit": { "v": 5000, @@ -113423,7 +113730,7 @@ module.exports={ } } -},{}],584:[function(require,module,exports){ +},{}],590:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -113745,7 +114052,7 @@ var Transaction = function () { module.exports = Transaction; }).call(this,require("buffer").Buffer) -},{"buffer":219,"ethereum-common/params.json":583,"ethereumjs-util":585}],585:[function(require,module,exports){ +},{"buffer":225,"ethereum-common/params.json":589,"ethereumjs-util":591}],591:[function(require,module,exports){ 'use strict'; var _typeof2 = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -114445,7 +114752,7 @@ exports.defineProperties = function (self, fields, data) { } }; -},{"assert":171,"bn.js":186,"create-hash":548,"ethjs-util":586,"keccak":613,"rlp":661,"safe-buffer":662,"secp256k1":664}],586:[function(require,module,exports){ +},{"assert":177,"bn.js":192,"create-hash":554,"ethjs-util":592,"keccak":619,"rlp":667,"safe-buffer":668,"secp256k1":670}],592:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -114671,7 +114978,7 @@ module.exports = { }; }).call(this,require("buffer").Buffer) -},{"buffer":219,"is-hex-prefixed":610,"strip-hex-prefix":682}],587:[function(require,module,exports){ +},{"buffer":225,"is-hex-prefixed":616,"strip-hex-prefix":688}],593:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -114946,7 +115253,7 @@ function isUndefined(arg) { return arg === void 0; } -},{}],588:[function(require,module,exports){ +},{}],594:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -114995,7 +115302,7 @@ function EVP_BytesToKey(password, salt, keyBits, ivLen) { module.exports = EVP_BytesToKey; -},{"md5.js":622,"safe-buffer":662}],589:[function(require,module,exports){ +},{"md5.js":628,"safe-buffer":668}],595:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -115084,7 +115391,7 @@ HashBase.prototype._digest = function () { module.exports = HashBase; }).call(this,require("buffer").Buffer) -},{"buffer":219,"inherits":608,"stream":679}],590:[function(require,module,exports){ +},{"buffer":225,"inherits":614,"stream":685}],596:[function(require,module,exports){ 'use strict'; var hash = exports; @@ -115103,7 +115410,7 @@ hash.sha384 = hash.sha.sha384; hash.sha512 = hash.sha.sha512; hash.ripemd160 = hash.ripemd.ripemd160; -},{"./hash/common":591,"./hash/hmac":592,"./hash/ripemd":593,"./hash/sha":594,"./hash/utils":601}],591:[function(require,module,exports){ +},{"./hash/common":597,"./hash/hmac":598,"./hash/ripemd":599,"./hash/sha":600,"./hash/utils":607}],597:[function(require,module,exports){ 'use strict'; var utils = require('./utils'); @@ -115193,7 +115500,7 @@ BlockHash.prototype._pad = function pad() { return res; }; -},{"./utils":601,"minimalistic-assert":625}],592:[function(require,module,exports){ +},{"./utils":607,"minimalistic-assert":631}],598:[function(require,module,exports){ 'use strict'; var utils = require('./utils'); @@ -115239,7 +115546,7 @@ Hmac.prototype.digest = function digest(enc) { return this.outer.digest(enc); }; -},{"./utils":601,"minimalistic-assert":625}],593:[function(require,module,exports){ +},{"./utils":607,"minimalistic-assert":631}],599:[function(require,module,exports){ 'use strict'; var utils = require('./utils'); @@ -115324,7 +115631,7 @@ var s = [11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8, 7, 6, 8, 13, 11 var sh = [8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6, 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11, 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5, 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8, 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11]; -},{"./common":591,"./utils":601}],594:[function(require,module,exports){ +},{"./common":597,"./utils":607}],600:[function(require,module,exports){ 'use strict'; exports.sha1 = require('./sha/1'); @@ -115333,7 +115640,7 @@ exports.sha256 = require('./sha/256'); exports.sha384 = require('./sha/384'); exports.sha512 = require('./sha/512'); -},{"./sha/1":595,"./sha/224":596,"./sha/256":597,"./sha/384":598,"./sha/512":599}],595:[function(require,module,exports){ +},{"./sha/1":601,"./sha/224":602,"./sha/256":603,"./sha/384":604,"./sha/512":605}],601:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115398,7 +115705,7 @@ SHA1.prototype._digest = function digest(enc) { if (enc === 'hex') return utils.toHex32(this.h, 'big');else return utils.split32(this.h, 'big'); }; -},{"../common":591,"../utils":601,"./common":600}],596:[function(require,module,exports){ +},{"../common":597,"../utils":607,"./common":606}],602:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115423,7 +115730,7 @@ SHA224.prototype._digest = function digest(enc) { if (enc === 'hex') return utils.toHex32(this.h.slice(0, 7), 'big');else return utils.split32(this.h.slice(0, 7), 'big'); }; -},{"../utils":601,"./256":597}],597:[function(require,module,exports){ +},{"../utils":607,"./256":603}],603:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115505,7 +115812,7 @@ SHA256.prototype._digest = function digest(enc) { if (enc === 'hex') return utils.toHex32(this.h, 'big');else return utils.split32(this.h, 'big'); }; -},{"../common":591,"../utils":601,"./common":600,"minimalistic-assert":625}],598:[function(require,module,exports){ +},{"../common":597,"../utils":607,"./common":606,"minimalistic-assert":631}],604:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115530,7 +115837,7 @@ SHA384.prototype._digest = function digest(enc) { if (enc === 'hex') return utils.toHex32(this.h.slice(0, 12), 'big');else return utils.split32(this.h.slice(0, 12), 'big'); }; -},{"../utils":601,"./512":599}],599:[function(require,module,exports){ +},{"../utils":607,"./512":605}],605:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115779,7 +116086,7 @@ function g1_512_lo(xh, xl) { return r; } -},{"../common":591,"../utils":601,"minimalistic-assert":625}],600:[function(require,module,exports){ +},{"../common":597,"../utils":607,"minimalistic-assert":631}],606:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -115827,7 +116134,7 @@ function g1_256(x) { } exports.g1_256 = g1_256; -},{"../utils":601}],601:[function(require,module,exports){ +},{"../utils":607}],607:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -116053,7 +116360,7 @@ function shr64_lo(ah, al, num) { } exports.shr64_lo = shr64_lo; -},{"inherits":608,"minimalistic-assert":625}],602:[function(require,module,exports){ +},{"inherits":614,"minimalistic-assert":631}],608:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -116294,7 +116601,7 @@ HDKey.HARDENED_OFFSET = HARDENED_OFFSET; module.exports = HDKey; }).call(this,require("buffer").Buffer) -},{"assert":171,"buffer":219,"coinstring":221,"crypto":553,"secp256k1":664}],603:[function(require,module,exports){ +},{"assert":177,"buffer":225,"coinstring":227,"crypto":559,"secp256k1":670}],609:[function(require,module,exports){ 'use strict'; var hash = require('hash.js'); @@ -116397,7 +116704,7 @@ HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) { return utils.encode(res, enc); }; -},{"hash.js":590,"minimalistic-assert":625,"minimalistic-crypto-utils":626}],604:[function(require,module,exports){ +},{"hash.js":596,"minimalistic-assert":631,"minimalistic-crypto-utils":632}],610:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -116437,7 +116744,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol }; }); -},{}],605:[function(require,module,exports){ +},{}],611:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -116594,7 +116901,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol }; }); -},{"./idna-map":604,"punycode":216}],606:[function(require,module,exports){ +},{"./idna-map":610,"punycode":222}],612:[function(require,module,exports){ "use strict"; exports.read = function (buffer, offset, isLE, mLen, nBytes) { @@ -116682,7 +116989,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { buffer[offset + i - d] |= s * 128; }; -},{}],607:[function(require,module,exports){ +},{}],613:[function(require,module,exports){ "use strict"; var indexOf = [].indexOf; @@ -116695,7 +117002,7 @@ module.exports = function (arr, obj) { return -1; }; -},{}],608:[function(require,module,exports){ +},{}],614:[function(require,module,exports){ 'use strict'; if (typeof Object.create === 'function') { @@ -116722,7 +117029,7 @@ if (typeof Object.create === 'function') { }; } -},{}],609:[function(require,module,exports){ +},{}],615:[function(require,module,exports){ 'use strict'; /*! @@ -116747,7 +117054,7 @@ function isSlowBuffer(obj) { return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0)); } -},{}],610:[function(require,module,exports){ +},{}],616:[function(require,module,exports){ "use strict"; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -116766,7 +117073,7 @@ module.exports = function isHexPrefixed(str) { return str.slice(0, 2) === '0x'; }; -},{}],611:[function(require,module,exports){ +},{}],617:[function(require,module,exports){ 'use strict'; var toString = {}.toString; @@ -116775,7 +117082,7 @@ module.exports = Array.isArray || function (arr) { return toString.call(arr) == '[object Array]'; }; -},{}],612:[function(require,module,exports){ +},{}],618:[function(require,module,exports){ /* A JavaScript implementation of the SHA family of hashes, as defined in FIPS PUB 180-2 as well as the corresponding HMAC implementation @@ -117028,12 +117335,12 @@ module.exports = Array.isArray || function (arr) { }) : "undefined" !== typeof exports ? "undefined" !== typeof module && module.exports ? module.exports = exports = z : exports = z : U.jsSHA = z; })(undefined); -},{}],613:[function(require,module,exports){ +},{}],619:[function(require,module,exports){ 'use strict'; module.exports = require('./lib/api')(require('./lib/keccak')); -},{"./lib/api":614,"./lib/keccak":618}],614:[function(require,module,exports){ +},{"./lib/api":620,"./lib/keccak":624}],620:[function(require,module,exports){ 'use strict'; var createKeccak = require('./keccak'); @@ -117075,7 +117382,7 @@ module.exports = function (KeccakState) { }; }; -},{"./keccak":615,"./shake":616}],615:[function(require,module,exports){ +},{"./keccak":621,"./shake":622}],621:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -117162,7 +117469,7 @@ module.exports = function (KeccakState) { return Keccak; }; -},{"inherits":608,"safe-buffer":662,"stream":679}],616:[function(require,module,exports){ +},{"inherits":614,"safe-buffer":668,"stream":685}],622:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -117240,7 +117547,7 @@ module.exports = function (KeccakState) { return Shake; }; -},{"inherits":608,"safe-buffer":662,"stream":679}],617:[function(require,module,exports){ +},{"inherits":614,"safe-buffer":668,"stream":685}],623:[function(require,module,exports){ 'use strict'; var P1600_ROUND_CONSTANTS = [1, 0, 32898, 0, 32906, 2147483648, 2147516416, 2147483648, 32907, 0, 2147483649, 0, 2147516545, 2147483648, 32777, 2147483648, 138, 0, 136, 0, 2147516425, 0, 2147483658, 0, 2147516555, 0, 139, 2147483648, 32905, 2147483648, 32771, 2147483648, 32770, 2147483648, 128, 2147483648, 32778, 0, 2147483658, 2147483648, 2147516545, 2147483648, 32896, 2147483648, 2147483649, 0, 2147516424, 2147483648]; @@ -117430,7 +117737,7 @@ exports.p1600 = function (s) { } }; -},{}],618:[function(require,module,exports){ +},{}],624:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -117499,7 +117806,7 @@ Keccak.prototype.copy = function (dest) { module.exports = Keccak; -},{"./keccak-state-unroll":617,"safe-buffer":662}],619:[function(require,module,exports){ +},{"./keccak-state-unroll":623,"safe-buffer":668}],625:[function(require,module,exports){ /* eslint-disable no-nested-ternary */ 'use strict'; @@ -117587,7 +117894,7 @@ module.exports = function (a, b) { return ret; }; -},{}],620:[function(require,module,exports){ +},{}],626:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -117696,7 +118003,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return Levenshtein; }); -},{}],621:[function(require,module,exports){ +},{}],627:[function(require,module,exports){ (function (global){ 'use strict'; @@ -118916,7 +119223,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol }()); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],622:[function(require,module,exports){ +},{}],628:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -119066,7 +119373,7 @@ function fnI(a, b, c, d, m, k, s) { module.exports = MD5; }).call(this,require("buffer").Buffer) -},{"buffer":219,"hash-base":623,"inherits":608}],623:[function(require,module,exports){ +},{"buffer":225,"hash-base":629,"inherits":614}],629:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -119165,7 +119472,7 @@ HashBase.prototype._digest = function () { module.exports = HashBase; -},{"inherits":608,"safe-buffer":662,"stream":679}],624:[function(require,module,exports){ +},{"inherits":614,"safe-buffer":668,"stream":685}],630:[function(require,module,exports){ 'use strict'; var bn = require('bn.js'); @@ -119273,7 +119580,7 @@ MillerRabin.prototype.getDivisor = function getDivisor(n, k) { return false; }; -},{"bn.js":186,"brorand":187}],625:[function(require,module,exports){ +},{"bn.js":192,"brorand":193}],631:[function(require,module,exports){ 'use strict'; module.exports = assert; @@ -119286,7 +119593,7 @@ assert.equal = function assertEqual(l, r, msg) { if (l != r) throw new Error(msg || 'Assertion failed: ' + l + ' != ' + r); }; -},{}],626:[function(require,module,exports){ +},{}],632:[function(require,module,exports){ 'use strict'; var utils = exports; @@ -119335,7 +119642,7 @@ utils.encode = function encode(arr, enc) { if (enc === 'hex') return toHex(arr);else return arr; }; -},{}],627:[function(require,module,exports){ +},{}],633:[function(require,module,exports){ module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb", "2.16.840.1.101.3.4.1.2": "aes-128-cbc", "2.16.840.1.101.3.4.1.3": "aes-128-ofb", @@ -119349,7 +119656,7 @@ module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb", "2.16.840.1.101.3.4.1.43": "aes-256-ofb", "2.16.840.1.101.3.4.1.44": "aes-256-cfb" } -},{}],628:[function(require,module,exports){ +},{}],634:[function(require,module,exports){ // from https://github.com/indutny/self-signed/blob/gh-pages/lib/asn1.js // Fedor, you are amazing. 'use strict'; @@ -119411,7 +119718,7 @@ exports.signature = asn1.define('signature', function () { this.seq().obj(this.key('r').int(), this.key('s').int()); }); -},{"./certificate":629,"asn1.js":157}],629:[function(require,module,exports){ +},{"./certificate":635,"asn1.js":163}],635:[function(require,module,exports){ // from https://github.com/Rantanen/node-dtls/blob/25a7dc861bda38cfeac93a723500eea4f0ac2e86/Certificate.js // thanks to @Rantanen @@ -119470,7 +119777,7 @@ var X509Certificate = asn.define('X509Certificate', function () { module.exports = X509Certificate; -},{"asn1.js":157}],630:[function(require,module,exports){ +},{"asn1.js":163}],636:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -119506,7 +119813,7 @@ module.exports = function (okey, password) { }; }).call(this,require("buffer").Buffer) -},{"browserify-aes":191,"buffer":219,"evp_bytestokey":588}],631:[function(require,module,exports){ +},{"browserify-aes":197,"buffer":225,"evp_bytestokey":594}],637:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -119623,14 +119930,14 @@ function decrypt(data, password) { } }).call(this,require("buffer").Buffer) -},{"./aesid.json":627,"./asn1":628,"./fixProc":630,"browserify-aes":191,"buffer":219,"pbkdf2":632}],632:[function(require,module,exports){ +},{"./aesid.json":633,"./asn1":634,"./fixProc":636,"browserify-aes":197,"buffer":225,"pbkdf2":638}],638:[function(require,module,exports){ 'use strict'; exports.pbkdf2 = require('./lib/async'); exports.pbkdf2Sync = require('./lib/sync'); -},{"./lib/async":633,"./lib/sync":636}],633:[function(require,module,exports){ +},{"./lib/async":639,"./lib/sync":642}],639:[function(require,module,exports){ (function (process,global){ 'use strict'; @@ -119731,7 +120038,7 @@ module.exports = function (password, salt, iterations, keylen, digest, callback) }; }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./default-encoding":634,"./precondition":635,"./sync":636,"_process":638,"safe-buffer":662}],634:[function(require,module,exports){ +},{"./default-encoding":640,"./precondition":641,"./sync":642,"_process":644,"safe-buffer":668}],640:[function(require,module,exports){ (function (process){ 'use strict'; @@ -119747,7 +120054,7 @@ if (process.browser) { module.exports = defaultEncoding; }).call(this,require('_process')) -},{"_process":638}],635:[function(require,module,exports){ +},{"_process":644}],641:[function(require,module,exports){ 'use strict'; var MAX_ALLOC = Math.pow(2, 30) - 1; // default in iojs @@ -119770,7 +120077,7 @@ module.exports = function (iterations, keylen) { } }; -},{}],636:[function(require,module,exports){ +},{}],642:[function(require,module,exports){ 'use strict'; var md5 = require('create-hash/md5'); @@ -119877,7 +120184,7 @@ function pbkdf2(password, salt, iterations, keylen, digest) { module.exports = pbkdf2; -},{"./default-encoding":634,"./precondition":635,"create-hash/md5":550,"ripemd160":660,"safe-buffer":662,"sha.js":671}],637:[function(require,module,exports){ +},{"./default-encoding":640,"./precondition":641,"create-hash/md5":556,"ripemd160":666,"safe-buffer":668,"sha.js":677}],643:[function(require,module,exports){ (function (process){ 'use strict'; @@ -119922,7 +120229,7 @@ function nextTick(fn, arg1, arg2, arg3) { } }).call(this,require('_process')) -},{"_process":638}],638:[function(require,module,exports){ +},{"_process":644}],644:[function(require,module,exports){ 'use strict'; // shim for using process in browser @@ -120111,7 +120418,7 @@ process.umask = function () { return 0; }; -},{}],639:[function(require,module,exports){ +},{}],645:[function(require,module,exports){ 'use strict'; exports.publicEncrypt = require('./publicEncrypt'); @@ -120125,7 +120432,7 @@ exports.publicDecrypt = function publicDecrypt(key, buf) { return exports.privateDecrypt(key, buf, true); }; -},{"./privateDecrypt":641,"./publicEncrypt":642}],640:[function(require,module,exports){ +},{"./privateDecrypt":647,"./publicEncrypt":648}],646:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -120148,7 +120455,7 @@ function i2ops(c) { } }).call(this,require("buffer").Buffer) -},{"buffer":219,"create-hash":548}],641:[function(require,module,exports){ +},{"buffer":225,"create-hash":554}],647:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -120262,7 +120569,7 @@ function compare(a, b) { } }).call(this,require("buffer").Buffer) -},{"./mgf":640,"./withPublic":643,"./xor":644,"bn.js":186,"browserify-rsa":209,"buffer":219,"create-hash":548,"parse-asn1":631}],642:[function(require,module,exports){ +},{"./mgf":646,"./withPublic":649,"./xor":650,"bn.js":192,"browserify-rsa":215,"buffer":225,"create-hash":554,"parse-asn1":637}],648:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -120363,7 +120670,7 @@ function nonZero(len, crypto) { } }).call(this,require("buffer").Buffer) -},{"./mgf":640,"./withPublic":643,"./xor":644,"bn.js":186,"browserify-rsa":209,"buffer":219,"create-hash":548,"parse-asn1":631,"randombytes":645}],643:[function(require,module,exports){ +},{"./mgf":646,"./withPublic":649,"./xor":650,"bn.js":192,"browserify-rsa":215,"buffer":225,"create-hash":554,"parse-asn1":637,"randombytes":651}],649:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -120375,7 +120682,7 @@ function withPublic(paddedMsg, key) { module.exports = withPublic; }).call(this,require("buffer").Buffer) -},{"bn.js":186,"buffer":219}],644:[function(require,module,exports){ +},{"bn.js":192,"buffer":225}],650:[function(require,module,exports){ "use strict"; module.exports = function xor(a, b) { @@ -120387,7 +120694,7 @@ module.exports = function xor(a, b) { return a; }; -},{}],645:[function(require,module,exports){ +},{}],651:[function(require,module,exports){ (function (process,global){ 'use strict'; @@ -120430,7 +120737,7 @@ function randomBytes(size, cb) { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"_process":638,"safe-buffer":662}],646:[function(require,module,exports){ +},{"_process":644,"safe-buffer":668}],652:[function(require,module,exports){ (function (process,global){ 'use strict'; @@ -120544,12 +120851,12 @@ function randomFillSync(buf, offset, size) { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"_process":638,"randombytes":645,"safe-buffer":662}],647:[function(require,module,exports){ +},{"_process":644,"randombytes":651,"safe-buffer":668}],653:[function(require,module,exports){ 'use strict'; module.exports = require('./lib/_stream_duplex.js'); -},{"./lib/_stream_duplex.js":648}],648:[function(require,module,exports){ +},{"./lib/_stream_duplex.js":654}],654:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -120675,7 +120982,7 @@ function forEach(xs, f) { } } -},{"./_stream_readable":650,"./_stream_writable":652,"core-util-is":546,"inherits":608,"process-nextick-args":637}],649:[function(require,module,exports){ +},{"./_stream_readable":656,"./_stream_writable":658,"core-util-is":552,"inherits":614,"process-nextick-args":643}],655:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -120724,7 +121031,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) { cb(null, chunk); }; -},{"./_stream_transform":651,"core-util-is":546,"inherits":608}],650:[function(require,module,exports){ +},{"./_stream_transform":657,"core-util-is":552,"inherits":614}],656:[function(require,module,exports){ (function (process,global){ // Copyright Joyent, Inc. and other Node contributors. // @@ -121735,7 +122042,7 @@ function indexOf(xs, x) { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./_stream_duplex":648,"./internal/streams/BufferList":653,"./internal/streams/destroy":654,"./internal/streams/stream":655,"_process":638,"core-util-is":546,"events":587,"inherits":608,"isarray":611,"process-nextick-args":637,"safe-buffer":662,"string_decoder/":681,"util":188}],651:[function(require,module,exports){ +},{"./_stream_duplex":654,"./internal/streams/BufferList":659,"./internal/streams/destroy":660,"./internal/streams/stream":661,"_process":644,"core-util-is":552,"events":593,"inherits":614,"isarray":617,"process-nextick-args":643,"safe-buffer":668,"string_decoder/":687,"util":194}],657:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -121951,7 +122258,7 @@ function done(stream, er, data) { return stream.push(null); } -},{"./_stream_duplex":648,"core-util-is":546,"inherits":608}],652:[function(require,module,exports){ +},{"./_stream_duplex":654,"core-util-is":552,"inherits":614}],658:[function(require,module,exports){ (function (process,global){ // Copyright Joyent, Inc. and other Node contributors. // @@ -122619,7 +122926,7 @@ Writable.prototype._destroy = function (err, cb) { }; }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./_stream_duplex":648,"./internal/streams/destroy":654,"./internal/streams/stream":655,"_process":638,"core-util-is":546,"inherits":608,"process-nextick-args":637,"safe-buffer":662,"util-deprecate":686}],653:[function(require,module,exports){ +},{"./_stream_duplex":654,"./internal/streams/destroy":660,"./internal/streams/stream":661,"_process":644,"core-util-is":552,"inherits":614,"process-nextick-args":643,"safe-buffer":668,"util-deprecate":692}],659:[function(require,module,exports){ 'use strict'; /**/ @@ -122699,7 +123006,7 @@ module.exports = function () { return BufferList; }(); -},{"safe-buffer":662}],654:[function(require,module,exports){ +},{"safe-buffer":668}],660:[function(require,module,exports){ 'use strict'; /**/ @@ -122773,17 +123080,17 @@ module.exports = { undestroy: undestroy }; -},{"process-nextick-args":637}],655:[function(require,module,exports){ +},{"process-nextick-args":643}],661:[function(require,module,exports){ 'use strict'; module.exports = require('events').EventEmitter; -},{"events":587}],656:[function(require,module,exports){ +},{"events":593}],662:[function(require,module,exports){ 'use strict'; module.exports = require('./readable').PassThrough; -},{"./readable":657}],657:[function(require,module,exports){ +},{"./readable":663}],663:[function(require,module,exports){ 'use strict'; exports = module.exports = require('./lib/_stream_readable.js'); @@ -122794,17 +123101,17 @@ exports.Duplex = require('./lib/_stream_duplex.js'); exports.Transform = require('./lib/_stream_transform.js'); exports.PassThrough = require('./lib/_stream_passthrough.js'); -},{"./lib/_stream_duplex.js":648,"./lib/_stream_passthrough.js":649,"./lib/_stream_readable.js":650,"./lib/_stream_transform.js":651,"./lib/_stream_writable.js":652}],658:[function(require,module,exports){ +},{"./lib/_stream_duplex.js":654,"./lib/_stream_passthrough.js":655,"./lib/_stream_readable.js":656,"./lib/_stream_transform.js":657,"./lib/_stream_writable.js":658}],664:[function(require,module,exports){ 'use strict'; module.exports = require('./readable').Transform; -},{"./readable":657}],659:[function(require,module,exports){ +},{"./readable":663}],665:[function(require,module,exports){ 'use strict'; module.exports = require('./lib/_stream_writable.js'); -},{"./lib/_stream_writable.js":652}],660:[function(require,module,exports){ +},{"./lib/_stream_writable.js":658}],666:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -123100,7 +123407,7 @@ function fn5(a, b, c, d, e, m, k, s) { module.exports = RIPEMD160; }).call(this,require("buffer").Buffer) -},{"buffer":219,"hash-base":589,"inherits":608}],661:[function(require,module,exports){ +},{"buffer":225,"hash-base":595,"inherits":614}],667:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -123335,7 +123642,7 @@ function toBuffer(v) { } }).call(this,require("buffer").Buffer) -},{"assert":171,"buffer":219}],662:[function(require,module,exports){ +},{"assert":177,"buffer":225}],668:[function(require,module,exports){ 'use strict'; /* eslint-disable node/no-deprecated-api */ @@ -123401,7 +123708,7 @@ SafeBuffer.allocUnsafeSlow = function (size) { return buffer.SlowBuffer(size); }; -},{"buffer":219}],663:[function(require,module,exports){ +},{"buffer":225}],669:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -123587,12 +123894,12 @@ function arraycopy(src, srcPos, dest, destPos, length) { module.exports = scrypt; }).call(this,require("buffer").Buffer) -},{"buffer":219,"crypto":553}],664:[function(require,module,exports){ +},{"buffer":225,"crypto":559}],670:[function(require,module,exports){ 'use strict'; module.exports = require('./lib')(require('./lib/elliptic')); -},{"./lib":668,"./lib/elliptic":667}],665:[function(require,module,exports){ +},{"./lib":674,"./lib/elliptic":673}],671:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -123641,7 +123948,7 @@ exports.isNumberInInterval = function (number, x, y, message) { }; }).call(this,{"isBuffer":require("../../is-buffer/index.js")}) -},{"../../is-buffer/index.js":609}],666:[function(require,module,exports){ +},{"../../is-buffer/index.js":615}],672:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -123807,7 +124114,7 @@ exports.signatureImportLax = function (sig) { return { r: r, s: s }; }; -},{"bip66":185,"safe-buffer":662}],667:[function(require,module,exports){ +},{"bip66":191,"safe-buffer":668}],673:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -124053,7 +124360,7 @@ exports.ecdhUnsafe = function (publicKey, privateKey, compressed) { return Buffer.from(pair.pub.mul(scalar).encode(true, compressed)); }; -},{"../messages.json":669,"bn.js":186,"create-hash":548,"elliptic":567,"safe-buffer":662}],668:[function(require,module,exports){ +},{"../messages.json":675,"bn.js":192,"create-hash":554,"elliptic":573,"safe-buffer":668}],674:[function(require,module,exports){ 'use strict'; var assert = require('./assert'); @@ -124287,7 +124594,7 @@ module.exports = function (secp256k1) { }; }; -},{"./assert":665,"./der":666,"./messages.json":669}],669:[function(require,module,exports){ +},{"./assert":671,"./der":672,"./messages.json":675}],675:[function(require,module,exports){ module.exports={ "COMPRESSED_TYPE_INVALID": "compressed should be a boolean", "EC_PRIVATE_KEY_TYPE_INVALID": "private key should be a Buffer", @@ -124325,7 +124632,7 @@ module.exports={ "TWEAK_LENGTH_INVALID": "tweak length is invalid" } -},{}],670:[function(require,module,exports){ +},{}],676:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -124410,7 +124717,7 @@ Hash.prototype._update = function () { module.exports = Hash; -},{"safe-buffer":662}],671:[function(require,module,exports){ +},{"safe-buffer":668}],677:[function(require,module,exports){ 'use strict'; var _exports = module.exports = function SHA(algorithm) { @@ -124429,7 +124736,7 @@ _exports.sha256 = require('./sha256'); _exports.sha384 = require('./sha384'); _exports.sha512 = require('./sha512'); -},{"./sha":672,"./sha1":673,"./sha224":674,"./sha256":675,"./sha384":676,"./sha512":677}],672:[function(require,module,exports){ +},{"./sha":678,"./sha1":679,"./sha224":680,"./sha256":681,"./sha384":682,"./sha512":683}],678:[function(require,module,exports){ 'use strict'; /* @@ -124526,7 +124833,7 @@ Sha.prototype._hash = function () { module.exports = Sha; -},{"./hash":670,"inherits":608,"safe-buffer":662}],673:[function(require,module,exports){ +},{"./hash":676,"inherits":614,"safe-buffer":668}],679:[function(require,module,exports){ 'use strict'; /* @@ -124628,7 +124935,7 @@ Sha1.prototype._hash = function () { module.exports = Sha1; -},{"./hash":670,"inherits":608,"safe-buffer":662}],674:[function(require,module,exports){ +},{"./hash":676,"inherits":614,"safe-buffer":668}],680:[function(require,module,exports){ 'use strict'; /** @@ -124685,7 +124992,7 @@ Sha224.prototype._hash = function () { module.exports = Sha224; -},{"./hash":670,"./sha256":675,"inherits":608,"safe-buffer":662}],675:[function(require,module,exports){ +},{"./hash":676,"./sha256":681,"inherits":614,"safe-buffer":668}],681:[function(require,module,exports){ 'use strict'; /** @@ -124808,7 +125115,7 @@ Sha256.prototype._hash = function () { module.exports = Sha256; -},{"./hash":670,"inherits":608,"safe-buffer":662}],676:[function(require,module,exports){ +},{"./hash":676,"inherits":614,"safe-buffer":668}],682:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -124869,7 +125176,7 @@ Sha384.prototype._hash = function () { module.exports = Sha384; -},{"./hash":670,"./sha512":677,"inherits":608,"safe-buffer":662}],677:[function(require,module,exports){ +},{"./hash":676,"./sha512":683,"inherits":614,"safe-buffer":668}],683:[function(require,module,exports){ 'use strict'; var inherits = require('inherits'); @@ -125092,7 +125399,7 @@ Sha512.prototype._hash = function () { module.exports = Sha512; -},{"./hash":670,"inherits":608,"safe-buffer":662}],678:[function(require,module,exports){ +},{"./hash":676,"inherits":614,"safe-buffer":668}],684:[function(require,module,exports){ "use strict"; var distance = require("leven"); @@ -125105,7 +125412,7 @@ module.exports = function (a, b) { return (longest - d) / longest; }; -},{"leven":619}],679:[function(require,module,exports){ +},{"leven":625}],685:[function(require,module,exports){ 'use strict'; // Copyright Joyent, Inc. and other Node contributors. @@ -125233,7 +125540,7 @@ Stream.prototype.pipe = function (dest, options) { return dest; }; -},{"events":587,"inherits":608,"readable-stream/duplex.js":647,"readable-stream/passthrough.js":656,"readable-stream/readable.js":657,"readable-stream/transform.js":658,"readable-stream/writable.js":659}],680:[function(require,module,exports){ +},{"events":593,"inherits":614,"readable-stream/duplex.js":653,"readable-stream/passthrough.js":662,"readable-stream/readable.js":663,"readable-stream/transform.js":664,"readable-stream/writable.js":665}],686:[function(require,module,exports){ 'use strict'; // Generated by CoffeeScript 1.8.0 @@ -125351,7 +125658,7 @@ Stream.prototype.pipe = function (dest, options) { } }).call(undefined); -},{}],681:[function(require,module,exports){ +},{}],687:[function(require,module,exports){ 'use strict'; var Buffer = require('safe-buffer').Buffer; @@ -125625,7 +125932,7 @@ function simpleEnd(buf) { return buf && buf.length ? this.write(buf) : ''; } -},{"safe-buffer":662}],682:[function(require,module,exports){ +},{"safe-buffer":668}],688:[function(require,module,exports){ 'use strict'; var isHexPrefixed = require('is-hex-prefixed'); @@ -125643,12 +125950,12 @@ module.exports = function stripHexPrefix(str) { return isHexPrefixed(str) ? str.slice(2) : str; }; -},{"is-hex-prefixed":610}],683:[function(require,module,exports){ +},{"is-hex-prefixed":616}],689:[function(require,module,exports){ "use strict"; module.exports = { 97: { "value": "0061", "name": "LATIN SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0041", "lowercase_mapping": "", "titlecase_mapping": "0041", "symbol": "\x61" }, 98: { "value": "0062", "name": "LATIN SMALL LETTER B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0042", "lowercase_mapping": "", "titlecase_mapping": "0042", "symbol": "\x62" }, 99: { "value": "0063", "name": "LATIN SMALL LETTER C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0043", "lowercase_mapping": "", "titlecase_mapping": "0043", "symbol": "\x63" }, 100: { "value": "0064", "name": "LATIN SMALL LETTER D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0044", "lowercase_mapping": "", "titlecase_mapping": "0044", "symbol": "\x64" }, 101: { "value": "0065", "name": "LATIN SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0045", "lowercase_mapping": "", "titlecase_mapping": "0045", "symbol": "\x65" }, 102: { "value": "0066", "name": "LATIN SMALL LETTER F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0046", "lowercase_mapping": "", "titlecase_mapping": "0046", "symbol": "\x66" }, 103: { "value": "0067", "name": "LATIN SMALL LETTER G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0047", "lowercase_mapping": "", "titlecase_mapping": "0047", "symbol": "\x67" }, 104: { "value": "0068", "name": "LATIN SMALL LETTER H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0048", "lowercase_mapping": "", "titlecase_mapping": "0048", "symbol": "\x68" }, 105: { "value": "0069", "name": "LATIN SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0049", "lowercase_mapping": "", "titlecase_mapping": "0049", "symbol": "\x69" }, 106: { "value": "006A", "name": "LATIN SMALL LETTER J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004A", "lowercase_mapping": "", "titlecase_mapping": "004A", "symbol": "\x6A" }, 107: { "value": "006B", "name": "LATIN SMALL LETTER K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004B", "lowercase_mapping": "", "titlecase_mapping": "004B", "symbol": "\x6B" }, 108: { "value": "006C", "name": "LATIN SMALL LETTER L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004C", "lowercase_mapping": "", "titlecase_mapping": "004C", "symbol": "\x6C" }, 109: { "value": "006D", "name": "LATIN SMALL LETTER M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004D", "lowercase_mapping": "", "titlecase_mapping": "004D", "symbol": "\x6D" }, 110: { "value": "006E", "name": "LATIN SMALL LETTER N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004E", "lowercase_mapping": "", "titlecase_mapping": "004E", "symbol": "\x6E" }, 111: { "value": "006F", "name": "LATIN SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "004F", "lowercase_mapping": "", "titlecase_mapping": "004F", "symbol": "\x6F" }, 112: { "value": "0070", "name": "LATIN SMALL LETTER P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0050", "lowercase_mapping": "", "titlecase_mapping": "0050", "symbol": "\x70" }, 113: { "value": "0071", "name": "LATIN SMALL LETTER Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0051", "lowercase_mapping": "", "titlecase_mapping": "0051", "symbol": "\x71" }, 114: { "value": "0072", "name": "LATIN SMALL LETTER R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0052", "lowercase_mapping": "", "titlecase_mapping": "0052", "symbol": "\x72" }, 115: { "value": "0073", "name": "LATIN SMALL LETTER S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0053", "lowercase_mapping": "", "titlecase_mapping": "0053", "symbol": "\x73" }, 116: { "value": "0074", "name": "LATIN SMALL LETTER T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0054", "lowercase_mapping": "", "titlecase_mapping": "0054", "symbol": "\x74" }, 117: { "value": "0075", "name": "LATIN SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0055", "lowercase_mapping": "", "titlecase_mapping": "0055", "symbol": "\x75" }, 118: { "value": "0076", "name": "LATIN SMALL LETTER V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0056", "lowercase_mapping": "", "titlecase_mapping": "0056", "symbol": "\x76" }, 119: { "value": "0077", "name": "LATIN SMALL LETTER W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0057", "lowercase_mapping": "", "titlecase_mapping": "0057", "symbol": "\x77" }, 120: { "value": "0078", "name": "LATIN SMALL LETTER X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0058", "lowercase_mapping": "", "titlecase_mapping": "0058", "symbol": "\x78" }, 121: { "value": "0079", "name": "LATIN SMALL LETTER Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0059", "lowercase_mapping": "", "titlecase_mapping": "0059", "symbol": "\x79" }, 122: { "value": "007A", "name": "LATIN SMALL LETTER Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "005A", "lowercase_mapping": "", "titlecase_mapping": "005A", "symbol": "\x7A" }, 181: { "value": "00B5", "name": "MICRO SIGN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039C", "lowercase_mapping": "", "titlecase_mapping": "039C", "symbol": "\xB5" }, 223: { "value": "00DF", "name": "LATIN SMALL LETTER SHARP S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\xDF" }, 224: { "value": "00E0", "name": "LATIN SMALL LETTER A WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A GRAVE", "comment": "", "uppercase_mapping": "00C0", "lowercase_mapping": "", "titlecase_mapping": "00C0", "symbol": "\xE0" }, 225: { "value": "00E1", "name": "LATIN SMALL LETTER A WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A ACUTE", "comment": "", "uppercase_mapping": "00C1", "lowercase_mapping": "", "titlecase_mapping": "00C1", "symbol": "\xE1" }, 226: { "value": "00E2", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A CIRCUMFLEX", "comment": "", "uppercase_mapping": "00C2", "lowercase_mapping": "", "titlecase_mapping": "00C2", "symbol": "\xE2" }, 227: { "value": "00E3", "name": "LATIN SMALL LETTER A WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A TILDE", "comment": "", "uppercase_mapping": "00C3", "lowercase_mapping": "", "titlecase_mapping": "00C3", "symbol": "\xE3" }, 228: { "value": "00E4", "name": "LATIN SMALL LETTER A WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A DIAERESIS", "comment": "", "uppercase_mapping": "00C4", "lowercase_mapping": "", "titlecase_mapping": "00C4", "symbol": "\xE4" }, 229: { "value": "00E5", "name": "LATIN SMALL LETTER A WITH RING ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 030A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A RING", "comment": "", "uppercase_mapping": "00C5", "lowercase_mapping": "", "titlecase_mapping": "00C5", "symbol": "\xE5" }, 230: { "value": "00E6", "name": "LATIN SMALL LETTER AE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A E", "comment": "", "uppercase_mapping": "00C6", "lowercase_mapping": "", "titlecase_mapping": "00C6", "symbol": "\xE6" }, 231: { "value": "00E7", "name": "LATIN SMALL LETTER C WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0063 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C CEDILLA", "comment": "", "uppercase_mapping": "00C7", "lowercase_mapping": "", "titlecase_mapping": "00C7", "symbol": "\xE7" }, 232: { "value": "00E8", "name": "LATIN SMALL LETTER E WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E GRAVE", "comment": "", "uppercase_mapping": "00C8", "lowercase_mapping": "", "titlecase_mapping": "00C8", "symbol": "\xE8" }, 233: { "value": "00E9", "name": "LATIN SMALL LETTER E WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E ACUTE", "comment": "", "uppercase_mapping": "00C9", "lowercase_mapping": "", "titlecase_mapping": "00C9", "symbol": "\xE9" }, 234: { "value": "00EA", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E CIRCUMFLEX", "comment": "", "uppercase_mapping": "00CA", "lowercase_mapping": "", "titlecase_mapping": "00CA", "symbol": "\xEA" }, 235: { "value": "00EB", "name": "LATIN SMALL LETTER E WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E DIAERESIS", "comment": "", "uppercase_mapping": "00CB", "lowercase_mapping": "", "titlecase_mapping": "00CB", "symbol": "\xEB" }, 236: { "value": "00EC", "name": "LATIN SMALL LETTER I WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I GRAVE", "comment": "", "uppercase_mapping": "00CC", "lowercase_mapping": "", "titlecase_mapping": "00CC", "symbol": "\xEC" }, 237: { "value": "00ED", "name": "LATIN SMALL LETTER I WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I ACUTE", "comment": "", "uppercase_mapping": "00CD", "lowercase_mapping": "", "titlecase_mapping": "00CD", "symbol": "\xED" }, 238: { "value": "00EE", "name": "LATIN SMALL LETTER I WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I CIRCUMFLEX", "comment": "", "uppercase_mapping": "00CE", "lowercase_mapping": "", "titlecase_mapping": "00CE", "symbol": "\xEE" }, 239: { "value": "00EF", "name": "LATIN SMALL LETTER I WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I DIAERESIS", "comment": "", "uppercase_mapping": "00CF", "lowercase_mapping": "", "titlecase_mapping": "00CF", "symbol": "\xEF" }, 240: { "value": "00F0", "name": "LATIN SMALL LETTER ETH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "00D0", "lowercase_mapping": "", "titlecase_mapping": "00D0", "symbol": "\xF0" }, 241: { "value": "00F1", "name": "LATIN SMALL LETTER N WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N TILDE", "comment": "", "uppercase_mapping": "00D1", "lowercase_mapping": "", "titlecase_mapping": "00D1", "symbol": "\xF1" }, 242: { "value": "00F2", "name": "LATIN SMALL LETTER O WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O GRAVE", "comment": "", "uppercase_mapping": "00D2", "lowercase_mapping": "", "titlecase_mapping": "00D2", "symbol": "\xF2" }, 243: { "value": "00F3", "name": "LATIN SMALL LETTER O WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O ACUTE", "comment": "", "uppercase_mapping": "00D3", "lowercase_mapping": "", "titlecase_mapping": "00D3", "symbol": "\xF3" }, 244: { "value": "00F4", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O CIRCUMFLEX", "comment": "", "uppercase_mapping": "00D4", "lowercase_mapping": "", "titlecase_mapping": "00D4", "symbol": "\xF4" }, 245: { "value": "00F5", "name": "LATIN SMALL LETTER O WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O TILDE", "comment": "", "uppercase_mapping": "00D5", "lowercase_mapping": "", "titlecase_mapping": "00D5", "symbol": "\xF5" }, 246: { "value": "00F6", "name": "LATIN SMALL LETTER O WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O DIAERESIS", "comment": "", "uppercase_mapping": "00D6", "lowercase_mapping": "", "titlecase_mapping": "00D6", "symbol": "\xF6" }, 248: { "value": "00F8", "name": "LATIN SMALL LETTER O WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O SLASH", "comment": "", "uppercase_mapping": "00D8", "lowercase_mapping": "", "titlecase_mapping": "00D8", "symbol": "\xF8" }, 249: { "value": "00F9", "name": "LATIN SMALL LETTER U WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U GRAVE", "comment": "", "uppercase_mapping": "00D9", "lowercase_mapping": "", "titlecase_mapping": "00D9", "symbol": "\xF9" }, 250: { "value": "00FA", "name": "LATIN SMALL LETTER U WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U ACUTE", "comment": "", "uppercase_mapping": "00DA", "lowercase_mapping": "", "titlecase_mapping": "00DA", "symbol": "\xFA" }, 251: { "value": "00FB", "name": "LATIN SMALL LETTER U WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U CIRCUMFLEX", "comment": "", "uppercase_mapping": "00DB", "lowercase_mapping": "", "titlecase_mapping": "00DB", "symbol": "\xFB" }, 252: { "value": "00FC", "name": "LATIN SMALL LETTER U WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DIAERESIS", "comment": "", "uppercase_mapping": "00DC", "lowercase_mapping": "", "titlecase_mapping": "00DC", "symbol": "\xFC" }, 253: { "value": "00FD", "name": "LATIN SMALL LETTER Y WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Y ACUTE", "comment": "", "uppercase_mapping": "00DD", "lowercase_mapping": "", "titlecase_mapping": "00DD", "symbol": "\xFD" }, 254: { "value": "00FE", "name": "LATIN SMALL LETTER THORN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "00DE", "lowercase_mapping": "", "titlecase_mapping": "00DE", "symbol": "\xFE" }, 255: { "value": "00FF", "name": "LATIN SMALL LETTER Y WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Y DIAERESIS", "comment": "", "uppercase_mapping": "0178", "lowercase_mapping": "", "titlecase_mapping": "0178", "symbol": "\xFF" }, 257: { "value": "0101", "name": "LATIN SMALL LETTER A WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A MACRON", "comment": "", "uppercase_mapping": "0100", "lowercase_mapping": "", "titlecase_mapping": "0100", "symbol": "\u0101" }, 259: { "value": "0103", "name": "LATIN SMALL LETTER A WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A BREVE", "comment": "", "uppercase_mapping": "0102", "lowercase_mapping": "", "titlecase_mapping": "0102", "symbol": "\u0103" }, 261: { "value": "0105", "name": "LATIN SMALL LETTER A WITH OGONEK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0328", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A OGONEK", "comment": "", "uppercase_mapping": "0104", "lowercase_mapping": "", "titlecase_mapping": "0104", "symbol": "\u0105" }, 263: { "value": "0107", "name": "LATIN SMALL LETTER C WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0063 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C ACUTE", "comment": "", "uppercase_mapping": "0106", "lowercase_mapping": "", "titlecase_mapping": "0106", "symbol": "\u0107" }, 265: { "value": "0109", "name": "LATIN SMALL LETTER C WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0063 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C CIRCUMFLEX", "comment": "", "uppercase_mapping": "0108", "lowercase_mapping": "", "titlecase_mapping": "0108", "symbol": "\u0109" }, 267: { "value": "010B", "name": "LATIN SMALL LETTER C WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0063 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C DOT", "comment": "", "uppercase_mapping": "010A", "lowercase_mapping": "", "titlecase_mapping": "010A", "symbol": "\u010B" }, 269: { "value": "010D", "name": "LATIN SMALL LETTER C WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0063 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C HACEK", "comment": "", "uppercase_mapping": "010C", "lowercase_mapping": "", "titlecase_mapping": "010C", "symbol": "\u010D" }, 271: { "value": "010F", "name": "LATIN SMALL LETTER D WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D HACEK", "comment": "", "uppercase_mapping": "010E", "lowercase_mapping": "", "titlecase_mapping": "010E", "symbol": "\u010F" }, 273: { "value": "0111", "name": "LATIN SMALL LETTER D WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D BAR", "comment": "", "uppercase_mapping": "0110", "lowercase_mapping": "", "titlecase_mapping": "0110", "symbol": "\u0111" }, 275: { "value": "0113", "name": "LATIN SMALL LETTER E WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E MACRON", "comment": "", "uppercase_mapping": "0112", "lowercase_mapping": "", "titlecase_mapping": "0112", "symbol": "\u0113" }, 277: { "value": "0115", "name": "LATIN SMALL LETTER E WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E BREVE", "comment": "", "uppercase_mapping": "0114", "lowercase_mapping": "", "titlecase_mapping": "0114", "symbol": "\u0115" }, 279: { "value": "0117", "name": "LATIN SMALL LETTER E WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E DOT", "comment": "", "uppercase_mapping": "0116", "lowercase_mapping": "", "titlecase_mapping": "0116", "symbol": "\u0117" }, 281: { "value": "0119", "name": "LATIN SMALL LETTER E WITH OGONEK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0328", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E OGONEK", "comment": "", "uppercase_mapping": "0118", "lowercase_mapping": "", "titlecase_mapping": "0118", "symbol": "\u0119" }, 283: { "value": "011B", "name": "LATIN SMALL LETTER E WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER E HACEK", "comment": "", "uppercase_mapping": "011A", "lowercase_mapping": "", "titlecase_mapping": "011A", "symbol": "\u011B" }, 285: { "value": "011D", "name": "LATIN SMALL LETTER G WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G CIRCUMFLEX", "comment": "", "uppercase_mapping": "011C", "lowercase_mapping": "", "titlecase_mapping": "011C", "symbol": "\u011D" }, 287: { "value": "011F", "name": "LATIN SMALL LETTER G WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G BREVE", "comment": "", "uppercase_mapping": "011E", "lowercase_mapping": "", "titlecase_mapping": "011E", "symbol": "\u011F" }, 289: { "value": "0121", "name": "LATIN SMALL LETTER G WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G DOT", "comment": "", "uppercase_mapping": "0120", "lowercase_mapping": "", "titlecase_mapping": "0120", "symbol": "\u0121" }, 291: { "value": "0123", "name": "LATIN SMALL LETTER G WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G CEDILLA", "comment": "", "uppercase_mapping": "0122", "lowercase_mapping": "", "titlecase_mapping": "0122", "symbol": "\u0123" }, 293: { "value": "0125", "name": "LATIN SMALL LETTER H WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER H CIRCUMFLEX", "comment": "", "uppercase_mapping": "0124", "lowercase_mapping": "", "titlecase_mapping": "0124", "symbol": "\u0125" }, 295: { "value": "0127", "name": "LATIN SMALL LETTER H WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER H BAR", "comment": "", "uppercase_mapping": "0126", "lowercase_mapping": "", "titlecase_mapping": "0126", "symbol": "\u0127" }, 297: { "value": "0129", "name": "LATIN SMALL LETTER I WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I TILDE", "comment": "", "uppercase_mapping": "0128", "lowercase_mapping": "", "titlecase_mapping": "0128", "symbol": "\u0129" }, 299: { "value": "012B", "name": "LATIN SMALL LETTER I WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I MACRON", "comment": "", "uppercase_mapping": "012A", "lowercase_mapping": "", "titlecase_mapping": "012A", "symbol": "\u012B" }, 301: { "value": "012D", "name": "LATIN SMALL LETTER I WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I BREVE", "comment": "", "uppercase_mapping": "012C", "lowercase_mapping": "", "titlecase_mapping": "012C", "symbol": "\u012D" }, 303: { "value": "012F", "name": "LATIN SMALL LETTER I WITH OGONEK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0328", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I OGONEK", "comment": "", "uppercase_mapping": "012E", "lowercase_mapping": "", "titlecase_mapping": "012E", "symbol": "\u012F" }, 305: { "value": "0131", "name": "LATIN SMALL LETTER DOTLESS I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0049", "lowercase_mapping": "", "titlecase_mapping": "0049", "symbol": "\u0131" }, 307: { "value": "0133", "name": "LATIN SMALL LIGATURE IJ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I J", "comment": "", "uppercase_mapping": "0132", "lowercase_mapping": "", "titlecase_mapping": "0132", "symbol": "\u0133" }, 309: { "value": "0135", "name": "LATIN SMALL LETTER J WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006A 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER J CIRCUMFLEX", "comment": "", "uppercase_mapping": "0134", "lowercase_mapping": "", "titlecase_mapping": "0134", "symbol": "\u0135" }, 311: { "value": "0137", "name": "LATIN SMALL LETTER K WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006B 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER K CEDILLA", "comment": "", "uppercase_mapping": "0136", "lowercase_mapping": "", "titlecase_mapping": "0136", "symbol": "\u0137" }, 312: { "value": "0138", "name": "LATIN SMALL LETTER KRA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0138" }, 314: { "value": "013A", "name": "LATIN SMALL LETTER L WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L ACUTE", "comment": "", "uppercase_mapping": "0139", "lowercase_mapping": "", "titlecase_mapping": "0139", "symbol": "\u013A" }, 316: { "value": "013C", "name": "LATIN SMALL LETTER L WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L CEDILLA", "comment": "", "uppercase_mapping": "013B", "lowercase_mapping": "", "titlecase_mapping": "013B", "symbol": "\u013C" }, 318: { "value": "013E", "name": "LATIN SMALL LETTER L WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L HACEK", "comment": "", "uppercase_mapping": "013D", "lowercase_mapping": "", "titlecase_mapping": "013D", "symbol": "\u013E" }, 320: { "value": "0140", "name": "LATIN SMALL LETTER L WITH MIDDLE DOT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C 00B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "013F", "lowercase_mapping": "", "titlecase_mapping": "013F", "symbol": "\u0140" }, 322: { "value": "0142", "name": "LATIN SMALL LETTER L WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L SLASH", "comment": "", "uppercase_mapping": "0141", "lowercase_mapping": "", "titlecase_mapping": "0141", "symbol": "\u0142" }, 324: { "value": "0144", "name": "LATIN SMALL LETTER N WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N ACUTE", "comment": "", "uppercase_mapping": "0143", "lowercase_mapping": "", "titlecase_mapping": "0143", "symbol": "\u0144" }, 326: { "value": "0146", "name": "LATIN SMALL LETTER N WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N CEDILLA", "comment": "", "uppercase_mapping": "0145", "lowercase_mapping": "", "titlecase_mapping": "0145", "symbol": "\u0146" }, 328: { "value": "0148", "name": "LATIN SMALL LETTER N WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N HACEK", "comment": "", "uppercase_mapping": "0147", "lowercase_mapping": "", "titlecase_mapping": "0147", "symbol": "\u0148" }, 329: { "value": "0149", "name": "LATIN SMALL LETTER N PRECEDED BY APOSTROPHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 02BC 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER APOSTROPHE N", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0149" }, 331: { "value": "014B", "name": "LATIN SMALL LETTER ENG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "014A", "lowercase_mapping": "", "titlecase_mapping": "014A", "symbol": "\u014B" }, 333: { "value": "014D", "name": "LATIN SMALL LETTER O WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O MACRON", "comment": "", "uppercase_mapping": "014C", "lowercase_mapping": "", "titlecase_mapping": "014C", "symbol": "\u014D" }, 335: { "value": "014F", "name": "LATIN SMALL LETTER O WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O BREVE", "comment": "", "uppercase_mapping": "014E", "lowercase_mapping": "", "titlecase_mapping": "014E", "symbol": "\u014F" }, 337: { "value": "0151", "name": "LATIN SMALL LETTER O WITH DOUBLE ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 030B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O DOUBLE ACUTE", "comment": "", "uppercase_mapping": "0150", "lowercase_mapping": "", "titlecase_mapping": "0150", "symbol": "\u0151" }, 339: { "value": "0153", "name": "LATIN SMALL LIGATURE OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O E", "comment": "", "uppercase_mapping": "0152", "lowercase_mapping": "", "titlecase_mapping": "0152", "symbol": "\u0153" }, 341: { "value": "0155", "name": "LATIN SMALL LETTER R WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER R ACUTE", "comment": "", "uppercase_mapping": "0154", "lowercase_mapping": "", "titlecase_mapping": "0154", "symbol": "\u0155" }, 343: { "value": "0157", "name": "LATIN SMALL LETTER R WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER R CEDILLA", "comment": "", "uppercase_mapping": "0156", "lowercase_mapping": "", "titlecase_mapping": "0156", "symbol": "\u0157" }, 345: { "value": "0159", "name": "LATIN SMALL LETTER R WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER R HACEK", "comment": "", "uppercase_mapping": "0158", "lowercase_mapping": "", "titlecase_mapping": "0158", "symbol": "\u0159" }, 347: { "value": "015B", "name": "LATIN SMALL LETTER S WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER S ACUTE", "comment": "", "uppercase_mapping": "015A", "lowercase_mapping": "", "titlecase_mapping": "015A", "symbol": "\u015B" }, 349: { "value": "015D", "name": "LATIN SMALL LETTER S WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER S CIRCUMFLEX", "comment": "", "uppercase_mapping": "015C", "lowercase_mapping": "", "titlecase_mapping": "015C", "symbol": "\u015D" }, 351: { "value": "015F", "name": "LATIN SMALL LETTER S WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER S CEDILLA", "comment": "", "uppercase_mapping": "015E", "lowercase_mapping": "", "titlecase_mapping": "015E", "symbol": "\u015F" }, 353: { "value": "0161", "name": "LATIN SMALL LETTER S WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER S HACEK", "comment": "", "uppercase_mapping": "0160", "lowercase_mapping": "", "titlecase_mapping": "0160", "symbol": "\u0161" }, 355: { "value": "0163", "name": "LATIN SMALL LETTER T WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T CEDILLA", "comment": "", "uppercase_mapping": "0162", "lowercase_mapping": "", "titlecase_mapping": "0162", "symbol": "\u0163" }, 357: { "value": "0165", "name": "LATIN SMALL LETTER T WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T HACEK", "comment": "", "uppercase_mapping": "0164", "lowercase_mapping": "", "titlecase_mapping": "0164", "symbol": "\u0165" }, 359: { "value": "0167", "name": "LATIN SMALL LETTER T WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T BAR", "comment": "", "uppercase_mapping": "0166", "lowercase_mapping": "", "titlecase_mapping": "0166", "symbol": "\u0167" }, 361: { "value": "0169", "name": "LATIN SMALL LETTER U WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U TILDE", "comment": "", "uppercase_mapping": "0168", "lowercase_mapping": "", "titlecase_mapping": "0168", "symbol": "\u0169" }, 363: { "value": "016B", "name": "LATIN SMALL LETTER U WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U MACRON", "comment": "", "uppercase_mapping": "016A", "lowercase_mapping": "", "titlecase_mapping": "016A", "symbol": "\u016B" }, 365: { "value": "016D", "name": "LATIN SMALL LETTER U WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U BREVE", "comment": "", "uppercase_mapping": "016C", "lowercase_mapping": "", "titlecase_mapping": "016C", "symbol": "\u016D" }, 367: { "value": "016F", "name": "LATIN SMALL LETTER U WITH RING ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 030A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U RING", "comment": "", "uppercase_mapping": "016E", "lowercase_mapping": "", "titlecase_mapping": "016E", "symbol": "\u016F" }, 369: { "value": "0171", "name": "LATIN SMALL LETTER U WITH DOUBLE ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 030B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DOUBLE ACUTE", "comment": "", "uppercase_mapping": "0170", "lowercase_mapping": "", "titlecase_mapping": "0170", "symbol": "\u0171" }, 371: { "value": "0173", "name": "LATIN SMALL LETTER U WITH OGONEK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0328", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U OGONEK", "comment": "", "uppercase_mapping": "0172", "lowercase_mapping": "", "titlecase_mapping": "0172", "symbol": "\u0173" }, 373: { "value": "0175", "name": "LATIN SMALL LETTER W WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER W CIRCUMFLEX", "comment": "", "uppercase_mapping": "0174", "lowercase_mapping": "", "titlecase_mapping": "0174", "symbol": "\u0175" }, 375: { "value": "0177", "name": "LATIN SMALL LETTER Y WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Y CIRCUMFLEX", "comment": "", "uppercase_mapping": "0176", "lowercase_mapping": "", "titlecase_mapping": "0176", "symbol": "\u0177" }, 378: { "value": "017A", "name": "LATIN SMALL LETTER Z WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z ACUTE", "comment": "", "uppercase_mapping": "0179", "lowercase_mapping": "", "titlecase_mapping": "0179", "symbol": "\u017A" }, 380: { "value": "017C", "name": "LATIN SMALL LETTER Z WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z DOT", "comment": "", "uppercase_mapping": "017B", "lowercase_mapping": "", "titlecase_mapping": "017B", "symbol": "\u017C" }, 382: { "value": "017E", "name": "LATIN SMALL LETTER Z WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z HACEK", "comment": "", "uppercase_mapping": "017D", "lowercase_mapping": "", "titlecase_mapping": "017D", "symbol": "\u017E" }, 383: { "value": "017F", "name": "LATIN SMALL LETTER LONG S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0053", "lowercase_mapping": "", "titlecase_mapping": "0053", "symbol": "\u017F" }, 384: { "value": "0180", "name": "LATIN SMALL LETTER B WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER B BAR", "comment": "", "uppercase_mapping": "0243", "lowercase_mapping": "", "titlecase_mapping": "0243", "symbol": "\u0180" }, 387: { "value": "0183", "name": "LATIN SMALL LETTER B WITH TOPBAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER B TOPBAR", "comment": "", "uppercase_mapping": "0182", "lowercase_mapping": "", "titlecase_mapping": "0182", "symbol": "\u0183" }, 389: { "value": "0185", "name": "LATIN SMALL LETTER TONE SIX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0184", "lowercase_mapping": "", "titlecase_mapping": "0184", "symbol": "\u0185" }, 392: { "value": "0188", "name": "LATIN SMALL LETTER C WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C HOOK", "comment": "", "uppercase_mapping": "0187", "lowercase_mapping": "", "titlecase_mapping": "0187", "symbol": "\u0188" }, 396: { "value": "018C", "name": "LATIN SMALL LETTER D WITH TOPBAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D TOPBAR", "comment": "", "uppercase_mapping": "018B", "lowercase_mapping": "", "titlecase_mapping": "018B", "symbol": "\u018C" }, 397: { "value": "018D", "name": "LATIN SMALL LETTER TURNED DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u018D" }, 402: { "value": "0192", "name": "LATIN SMALL LETTER F WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER SCRIPT F", "comment": "", "uppercase_mapping": "0191", "lowercase_mapping": "", "titlecase_mapping": "0191", "symbol": "\u0192" }, 405: { "value": "0195", "name": "LATIN SMALL LETTER HV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER H V", "comment": "", "uppercase_mapping": "01F6", "lowercase_mapping": "", "titlecase_mapping": "01F6", "symbol": "\u0195" }, 409: { "value": "0199", "name": "LATIN SMALL LETTER K WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER K HOOK", "comment": "", "uppercase_mapping": "0198", "lowercase_mapping": "", "titlecase_mapping": "0198", "symbol": "\u0199" }, 410: { "value": "019A", "name": "LATIN SMALL LETTER L WITH BAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER BARRED L", "comment": "", "uppercase_mapping": "023D", "lowercase_mapping": "", "titlecase_mapping": "023D", "symbol": "\u019A" }, 411: { "value": "019B", "name": "LATIN SMALL LETTER LAMBDA WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER BARRED LAMBDA", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u019B" }, 414: { "value": "019E", "name": "LATIN SMALL LETTER N WITH LONG RIGHT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0220", "lowercase_mapping": "", "titlecase_mapping": "0220", "symbol": "\u019E" }, 417: { "value": "01A1", "name": "LATIN SMALL LETTER O WITH HORN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 031B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O HORN", "comment": "", "uppercase_mapping": "01A0", "lowercase_mapping": "", "titlecase_mapping": "01A0", "symbol": "\u01A1" }, 419: { "value": "01A3", "name": "LATIN SMALL LETTER OI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O I", "comment": "", "uppercase_mapping": "01A2", "lowercase_mapping": "", "titlecase_mapping": "01A2", "symbol": "\u01A3" }, 421: { "value": "01A5", "name": "LATIN SMALL LETTER P WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER P HOOK", "comment": "", "uppercase_mapping": "01A4", "lowercase_mapping": "", "titlecase_mapping": "01A4", "symbol": "\u01A5" }, 424: { "value": "01A8", "name": "LATIN SMALL LETTER TONE TWO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01A7", "lowercase_mapping": "", "titlecase_mapping": "01A7", "symbol": "\u01A8" }, 426: { "value": "01AA", "name": "LATIN LETTER REVERSED ESH LOOP", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u01AA" }, 427: { "value": "01AB", "name": "LATIN SMALL LETTER T WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T PALATAL HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u01AB" }, 429: { "value": "01AD", "name": "LATIN SMALL LETTER T WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T HOOK", "comment": "", "uppercase_mapping": "01AC", "lowercase_mapping": "", "titlecase_mapping": "01AC", "symbol": "\u01AD" }, 432: { "value": "01B0", "name": "LATIN SMALL LETTER U WITH HORN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 031B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U HORN", "comment": "", "uppercase_mapping": "01AF", "lowercase_mapping": "", "titlecase_mapping": "01AF", "symbol": "\u01B0" }, 436: { "value": "01B4", "name": "LATIN SMALL LETTER Y WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Y HOOK", "comment": "", "uppercase_mapping": "01B3", "lowercase_mapping": "", "titlecase_mapping": "01B3", "symbol": "\u01B4" }, 438: { "value": "01B6", "name": "LATIN SMALL LETTER Z WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z BAR", "comment": "", "uppercase_mapping": "01B5", "lowercase_mapping": "", "titlecase_mapping": "01B5", "symbol": "\u01B6" }, 441: { "value": "01B9", "name": "LATIN SMALL LETTER EZH REVERSED", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER REVERSED YOGH", "comment": "", "uppercase_mapping": "01B8", "lowercase_mapping": "", "titlecase_mapping": "01B8", "symbol": "\u01B9" }, 442: { "value": "01BA", "name": "LATIN SMALL LETTER EZH WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER YOGH WITH TAIL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u01BA" }, 445: { "value": "01BD", "name": "LATIN SMALL LETTER TONE FIVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01BC", "lowercase_mapping": "", "titlecase_mapping": "01BC", "symbol": "\u01BD" }, 446: { "value": "01BE", "name": "LATIN LETTER INVERTED GLOTTAL STOP WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER INVERTED GLOTTAL STOP BAR", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u01BE" }, 447: { "value": "01BF", "name": "LATIN LETTER WYNN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01F7", "lowercase_mapping": "", "titlecase_mapping": "01F7", "symbol": "\u01BF" }, 454: { "value": "01C6", "name": "LATIN SMALL LETTER DZ WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064 017E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D Z HACEK", "comment": "", "uppercase_mapping": "01C4", "lowercase_mapping": "", "titlecase_mapping": "01C5", "symbol": "\u01C6" }, 457: { "value": "01C9", "name": "LATIN SMALL LETTER LJ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L J", "comment": "", "uppercase_mapping": "01C7", "lowercase_mapping": "", "titlecase_mapping": "01C8", "symbol": "\u01C9" }, 460: { "value": "01CC", "name": "LATIN SMALL LETTER NJ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N J", "comment": "", "uppercase_mapping": "01CA", "lowercase_mapping": "", "titlecase_mapping": "01CB", "symbol": "\u01CC" }, 462: { "value": "01CE", "name": "LATIN SMALL LETTER A WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A HACEK", "comment": "", "uppercase_mapping": "01CD", "lowercase_mapping": "", "titlecase_mapping": "01CD", "symbol": "\u01CE" }, 464: { "value": "01D0", "name": "LATIN SMALL LETTER I WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER I HACEK", "comment": "", "uppercase_mapping": "01CF", "lowercase_mapping": "", "titlecase_mapping": "01CF", "symbol": "\u01D0" }, 466: { "value": "01D2", "name": "LATIN SMALL LETTER O WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O HACEK", "comment": "", "uppercase_mapping": "01D1", "lowercase_mapping": "", "titlecase_mapping": "01D1", "symbol": "\u01D2" }, 468: { "value": "01D4", "name": "LATIN SMALL LETTER U WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U HACEK", "comment": "", "uppercase_mapping": "01D3", "lowercase_mapping": "", "titlecase_mapping": "01D3", "symbol": "\u01D4" }, 470: { "value": "01D6", "name": "LATIN SMALL LETTER U WITH DIAERESIS AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00FC 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DIAERESIS MACRON", "comment": "", "uppercase_mapping": "01D5", "lowercase_mapping": "", "titlecase_mapping": "01D5", "symbol": "\u01D6" }, 472: { "value": "01D8", "name": "LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00FC 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DIAERESIS ACUTE", "comment": "", "uppercase_mapping": "01D7", "lowercase_mapping": "", "titlecase_mapping": "01D7", "symbol": "\u01D8" }, 474: { "value": "01DA", "name": "LATIN SMALL LETTER U WITH DIAERESIS AND CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00FC 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DIAERESIS HACEK", "comment": "", "uppercase_mapping": "01D9", "lowercase_mapping": "", "titlecase_mapping": "01D9", "symbol": "\u01DA" }, 476: { "value": "01DC", "name": "LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00FC 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER U DIAERESIS GRAVE", "comment": "", "uppercase_mapping": "01DB", "lowercase_mapping": "", "titlecase_mapping": "01DB", "symbol": "\u01DC" }, 477: { "value": "01DD", "name": "LATIN SMALL LETTER TURNED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "018E", "lowercase_mapping": "", "titlecase_mapping": "018E", "symbol": "\u01DD" }, 479: { "value": "01DF", "name": "LATIN SMALL LETTER A WITH DIAERESIS AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E4 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A DIAERESIS MACRON", "comment": "", "uppercase_mapping": "01DE", "lowercase_mapping": "", "titlecase_mapping": "01DE", "symbol": "\u01DF" }, 481: { "value": "01E1", "name": "LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0227 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A DOT MACRON", "comment": "", "uppercase_mapping": "01E0", "lowercase_mapping": "", "titlecase_mapping": "01E0", "symbol": "\u01E1" }, 483: { "value": "01E3", "name": "LATIN SMALL LETTER AE WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E6 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER A E MACRON", "comment": "", "uppercase_mapping": "01E2", "lowercase_mapping": "", "titlecase_mapping": "01E2", "symbol": "\u01E3" }, 485: { "value": "01E5", "name": "LATIN SMALL LETTER G WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G BAR", "comment": "", "uppercase_mapping": "01E4", "lowercase_mapping": "", "titlecase_mapping": "01E4", "symbol": "\u01E5" }, 487: { "value": "01E7", "name": "LATIN SMALL LETTER G WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G HACEK", "comment": "", "uppercase_mapping": "01E6", "lowercase_mapping": "", "titlecase_mapping": "01E6", "symbol": "\u01E7" }, 489: { "value": "01E9", "name": "LATIN SMALL LETTER K WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006B 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER K HACEK", "comment": "", "uppercase_mapping": "01E8", "lowercase_mapping": "", "titlecase_mapping": "01E8", "symbol": "\u01E9" }, 491: { "value": "01EB", "name": "LATIN SMALL LETTER O WITH OGONEK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0328", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O OGONEK", "comment": "", "uppercase_mapping": "01EA", "lowercase_mapping": "", "titlecase_mapping": "01EA", "symbol": "\u01EB" }, 493: { "value": "01ED", "name": "LATIN SMALL LETTER O WITH OGONEK AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01EB 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER O OGONEK MACRON", "comment": "", "uppercase_mapping": "01EC", "lowercase_mapping": "", "titlecase_mapping": "01EC", "symbol": "\u01ED" }, 495: { "value": "01EF", "name": "LATIN SMALL LETTER EZH WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0292 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER YOGH HACEK", "comment": "", "uppercase_mapping": "01EE", "lowercase_mapping": "", "titlecase_mapping": "01EE", "symbol": "\u01EF" }, 496: { "value": "01F0", "name": "LATIN SMALL LETTER J WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006A 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER J HACEK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u01F0" }, 499: { "value": "01F3", "name": "LATIN SMALL LETTER DZ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01F1", "lowercase_mapping": "", "titlecase_mapping": "01F2", "symbol": "\u01F3" }, 501: { "value": "01F5", "name": "LATIN SMALL LETTER G WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01F4", "lowercase_mapping": "", "titlecase_mapping": "01F4", "symbol": "\u01F5" }, 505: { "value": "01F9", "name": "LATIN SMALL LETTER N WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01F8", "lowercase_mapping": "", "titlecase_mapping": "01F8", "symbol": "\u01F9" }, 507: { "value": "01FB", "name": "LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E5 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01FA", "lowercase_mapping": "", "titlecase_mapping": "01FA", "symbol": "\u01FB" }, 509: { "value": "01FD", "name": "LATIN SMALL LETTER AE WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E6 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01FC", "lowercase_mapping": "", "titlecase_mapping": "01FC", "symbol": "\u01FD" }, 511: { "value": "01FF", "name": "LATIN SMALL LETTER O WITH STROKE AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F8 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01FE", "lowercase_mapping": "", "titlecase_mapping": "01FE", "symbol": "\u01FF" }, 513: { "value": "0201", "name": "LATIN SMALL LETTER A WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0200", "lowercase_mapping": "", "titlecase_mapping": "0200", "symbol": "\u0201" }, 515: { "value": "0203", "name": "LATIN SMALL LETTER A WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0202", "lowercase_mapping": "", "titlecase_mapping": "0202", "symbol": "\u0203" }, 517: { "value": "0205", "name": "LATIN SMALL LETTER E WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0204", "lowercase_mapping": "", "titlecase_mapping": "0204", "symbol": "\u0205" }, 519: { "value": "0207", "name": "LATIN SMALL LETTER E WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0206", "lowercase_mapping": "", "titlecase_mapping": "0206", "symbol": "\u0207" }, 521: { "value": "0209", "name": "LATIN SMALL LETTER I WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0208", "lowercase_mapping": "", "titlecase_mapping": "0208", "symbol": "\u0209" }, 523: { "value": "020B", "name": "LATIN SMALL LETTER I WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "020A", "lowercase_mapping": "", "titlecase_mapping": "020A", "symbol": "\u020B" }, 525: { "value": "020D", "name": "LATIN SMALL LETTER O WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "020C", "lowercase_mapping": "", "titlecase_mapping": "020C", "symbol": "\u020D" }, 527: { "value": "020F", "name": "LATIN SMALL LETTER O WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "020E", "lowercase_mapping": "", "titlecase_mapping": "020E", "symbol": "\u020F" }, 529: { "value": "0211", "name": "LATIN SMALL LETTER R WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0210", "lowercase_mapping": "", "titlecase_mapping": "0210", "symbol": "\u0211" }, 531: { "value": "0213", "name": "LATIN SMALL LETTER R WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0212", "lowercase_mapping": "", "titlecase_mapping": "0212", "symbol": "\u0213" }, 533: { "value": "0215", "name": "LATIN SMALL LETTER U WITH DOUBLE GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0214", "lowercase_mapping": "", "titlecase_mapping": "0214", "symbol": "\u0215" }, 535: { "value": "0217", "name": "LATIN SMALL LETTER U WITH INVERTED BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0311", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0216", "lowercase_mapping": "", "titlecase_mapping": "0216", "symbol": "\u0217" }, 537: { "value": "0219", "name": "LATIN SMALL LETTER S WITH COMMA BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0326", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0218", "lowercase_mapping": "", "titlecase_mapping": "0218", "symbol": "\u0219" }, 539: { "value": "021B", "name": "LATIN SMALL LETTER T WITH COMMA BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0326", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "021A", "lowercase_mapping": "", "titlecase_mapping": "021A", "symbol": "\u021B" }, 541: { "value": "021D", "name": "LATIN SMALL LETTER YOGH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "021C", "lowercase_mapping": "", "titlecase_mapping": "021C", "symbol": "\u021D" }, 543: { "value": "021F", "name": "LATIN SMALL LETTER H WITH CARON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 030C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "021E", "lowercase_mapping": "", "titlecase_mapping": "021E", "symbol": "\u021F" }, 545: { "value": "0221", "name": "LATIN SMALL LETTER D WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0221" }, 547: { "value": "0223", "name": "LATIN SMALL LETTER OU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0222", "lowercase_mapping": "", "titlecase_mapping": "0222", "symbol": "\u0223" }, 549: { "value": "0225", "name": "LATIN SMALL LETTER Z WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0224", "lowercase_mapping": "", "titlecase_mapping": "0224", "symbol": "\u0225" }, 551: { "value": "0227", "name": "LATIN SMALL LETTER A WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0226", "lowercase_mapping": "", "titlecase_mapping": "0226", "symbol": "\u0227" }, 553: { "value": "0229", "name": "LATIN SMALL LETTER E WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0228", "lowercase_mapping": "", "titlecase_mapping": "0228", "symbol": "\u0229" }, 555: { "value": "022B", "name": "LATIN SMALL LETTER O WITH DIAERESIS AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F6 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "022A", "lowercase_mapping": "", "titlecase_mapping": "022A", "symbol": "\u022B" }, 557: { "value": "022D", "name": "LATIN SMALL LETTER O WITH TILDE AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F5 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "022C", "lowercase_mapping": "", "titlecase_mapping": "022C", "symbol": "\u022D" }, 559: { "value": "022F", "name": "LATIN SMALL LETTER O WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "022E", "lowercase_mapping": "", "titlecase_mapping": "022E", "symbol": "\u022F" }, 561: { "value": "0231", "name": "LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "022F 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0230", "lowercase_mapping": "", "titlecase_mapping": "0230", "symbol": "\u0231" }, 563: { "value": "0233", "name": "LATIN SMALL LETTER Y WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0232", "lowercase_mapping": "", "titlecase_mapping": "0232", "symbol": "\u0233" }, 564: { "value": "0234", "name": "LATIN SMALL LETTER L WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0234" }, 565: { "value": "0235", "name": "LATIN SMALL LETTER N WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0235" }, 566: { "value": "0236", "name": "LATIN SMALL LETTER T WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0236" }, 567: { "value": "0237", "name": "LATIN SMALL LETTER DOTLESS J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0237" }, 568: { "value": "0238", "name": "LATIN SMALL LETTER DB DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0238" }, 569: { "value": "0239", "name": "LATIN SMALL LETTER QP DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0239" }, 572: { "value": "023C", "name": "LATIN SMALL LETTER C WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "023B", "lowercase_mapping": "", "titlecase_mapping": "023B", "symbol": "\u023C" }, 575: { "value": "023F", "name": "LATIN SMALL LETTER S WITH SWASH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C7E", "lowercase_mapping": "", "titlecase_mapping": "2C7E", "symbol": "\u023F" }, 576: { "value": "0240", "name": "LATIN SMALL LETTER Z WITH SWASH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C7F", "lowercase_mapping": "", "titlecase_mapping": "2C7F", "symbol": "\u0240" }, 578: { "value": "0242", "name": "LATIN SMALL LETTER GLOTTAL STOP", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0241", "lowercase_mapping": "", "titlecase_mapping": "0241", "symbol": "\u0242" }, 583: { "value": "0247", "name": "LATIN SMALL LETTER E WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0246", "lowercase_mapping": "", "titlecase_mapping": "0246", "symbol": "\u0247" }, 585: { "value": "0249", "name": "LATIN SMALL LETTER J WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0248", "lowercase_mapping": "", "titlecase_mapping": "0248", "symbol": "\u0249" }, 587: { "value": "024B", "name": "LATIN SMALL LETTER Q WITH HOOK TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "024A", "lowercase_mapping": "", "titlecase_mapping": "024A", "symbol": "\u024B" }, 589: { "value": "024D", "name": "LATIN SMALL LETTER R WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "024C", "lowercase_mapping": "", "titlecase_mapping": "024C", "symbol": "\u024D" }, 591: { "value": "024F", "name": "LATIN SMALL LETTER Y WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "024E", "lowercase_mapping": "", "titlecase_mapping": "024E", "symbol": "\u024F" }, 592: { "value": "0250", "name": "LATIN SMALL LETTER TURNED A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C6F", "lowercase_mapping": "", "titlecase_mapping": "2C6F", "symbol": "\u0250" }, 593: { "value": "0251", "name": "LATIN SMALL LETTER ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER SCRIPT A", "comment": "", "uppercase_mapping": "2C6D", "lowercase_mapping": "", "titlecase_mapping": "2C6D", "symbol": "\u0251" }, 594: { "value": "0252", "name": "LATIN SMALL LETTER TURNED ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER TURNED SCRIPT A", "comment": "", "uppercase_mapping": "2C70", "lowercase_mapping": "", "titlecase_mapping": "2C70", "symbol": "\u0252" }, 595: { "value": "0253", "name": "LATIN SMALL LETTER B WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER B HOOK", "comment": "", "uppercase_mapping": "0181", "lowercase_mapping": "", "titlecase_mapping": "0181", "symbol": "\u0253" }, 596: { "value": "0254", "name": "LATIN SMALL LETTER OPEN O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0186", "lowercase_mapping": "", "titlecase_mapping": "0186", "symbol": "\u0254" }, 597: { "value": "0255", "name": "LATIN SMALL LETTER C WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER C CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0255" }, 598: { "value": "0256", "name": "LATIN SMALL LETTER D WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D RETROFLEX HOOK", "comment": "", "uppercase_mapping": "0189", "lowercase_mapping": "", "titlecase_mapping": "0189", "symbol": "\u0256" }, 599: { "value": "0257", "name": "LATIN SMALL LETTER D WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D HOOK", "comment": "", "uppercase_mapping": "018A", "lowercase_mapping": "", "titlecase_mapping": "018A", "symbol": "\u0257" }, 600: { "value": "0258", "name": "LATIN SMALL LETTER REVERSED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0258" }, 601: { "value": "0259", "name": "LATIN SMALL LETTER SCHWA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "018F", "lowercase_mapping": "", "titlecase_mapping": "018F", "symbol": "\u0259" }, 602: { "value": "025A", "name": "LATIN SMALL LETTER SCHWA WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER SCHWA HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u025A" }, 603: { "value": "025B", "name": "LATIN SMALL LETTER OPEN E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER EPSILON", "comment": "", "uppercase_mapping": "0190", "lowercase_mapping": "", "titlecase_mapping": "0190", "symbol": "\u025B" }, 604: { "value": "025C", "name": "LATIN SMALL LETTER REVERSED OPEN E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER REVERSED EPSILON", "comment": "", "uppercase_mapping": "A7AB", "lowercase_mapping": "", "titlecase_mapping": "A7AB", "symbol": "\u025C" }, 605: { "value": "025D", "name": "LATIN SMALL LETTER REVERSED OPEN E WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER REVERSED EPSILON HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u025D" }, 606: { "value": "025E", "name": "LATIN SMALL LETTER CLOSED REVERSED OPEN E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER CLOSED REVERSED EPSILON", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u025E" }, 607: { "value": "025F", "name": "LATIN SMALL LETTER DOTLESS J WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER DOTLESS J BAR", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u025F" }, 608: { "value": "0260", "name": "LATIN SMALL LETTER G WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER G HOOK", "comment": "", "uppercase_mapping": "0193", "lowercase_mapping": "", "titlecase_mapping": "0193", "symbol": "\u0260" }, 609: { "value": "0261", "name": "LATIN SMALL LETTER SCRIPT G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7AC", "lowercase_mapping": "", "titlecase_mapping": "A7AC", "symbol": "\u0261" }, 610: { "value": "0262", "name": "LATIN LETTER SMALL CAPITAL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0262" }, 611: { "value": "0263", "name": "LATIN SMALL LETTER GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0194", "lowercase_mapping": "", "titlecase_mapping": "0194", "symbol": "\u0263" }, 612: { "value": "0264", "name": "LATIN SMALL LETTER RAMS HORN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER BABY GAMMA", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0264" }, 613: { "value": "0265", "name": "LATIN SMALL LETTER TURNED H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A78D", "lowercase_mapping": "", "titlecase_mapping": "A78D", "symbol": "\u0265" }, 614: { "value": "0266", "name": "LATIN SMALL LETTER H WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER H HOOK", "comment": "", "uppercase_mapping": "A7AA", "lowercase_mapping": "", "titlecase_mapping": "A7AA", "symbol": "\u0266" }, 615: { "value": "0267", "name": "LATIN SMALL LETTER HENG WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER HENG HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0267" }, 616: { "value": "0268", "name": "LATIN SMALL LETTER I WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER BARRED I", "comment": "", "uppercase_mapping": "0197", "lowercase_mapping": "", "titlecase_mapping": "0197", "symbol": "\u0268" }, 617: { "value": "0269", "name": "LATIN SMALL LETTER IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0196", "lowercase_mapping": "", "titlecase_mapping": "0196", "symbol": "\u0269" }, 618: { "value": "026A", "name": "LATIN LETTER SMALL CAPITAL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7AE", "lowercase_mapping": "", "titlecase_mapping": "A7AE", "symbol": "\u026A" }, 619: { "value": "026B", "name": "LATIN SMALL LETTER L WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C62", "lowercase_mapping": "", "titlecase_mapping": "2C62", "symbol": "\u026B" }, 620: { "value": "026C", "name": "LATIN SMALL LETTER L WITH BELT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L BELT", "comment": "", "uppercase_mapping": "A7AD", "lowercase_mapping": "", "titlecase_mapping": "A7AD", "symbol": "\u026C" }, 621: { "value": "026D", "name": "LATIN SMALL LETTER L WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L RETROFLEX HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u026D" }, 622: { "value": "026E", "name": "LATIN SMALL LETTER LEZH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER L YOGH", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u026E" }, 623: { "value": "026F", "name": "LATIN SMALL LETTER TURNED M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "019C", "lowercase_mapping": "", "titlecase_mapping": "019C", "symbol": "\u026F" }, 624: { "value": "0270", "name": "LATIN SMALL LETTER TURNED M WITH LONG LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0270" }, 625: { "value": "0271", "name": "LATIN SMALL LETTER M WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER M HOOK", "comment": "", "uppercase_mapping": "2C6E", "lowercase_mapping": "", "titlecase_mapping": "2C6E", "symbol": "\u0271" }, 626: { "value": "0272", "name": "LATIN SMALL LETTER N WITH LEFT HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N HOOK", "comment": "", "uppercase_mapping": "019D", "lowercase_mapping": "", "titlecase_mapping": "019D", "symbol": "\u0272" }, 627: { "value": "0273", "name": "LATIN SMALL LETTER N WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER N RETROFLEX HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0273" }, 628: { "value": "0274", "name": "LATIN LETTER SMALL CAPITAL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0274" }, 629: { "value": "0275", "name": "LATIN SMALL LETTER BARRED O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "019F", "lowercase_mapping": "", "titlecase_mapping": "019F", "symbol": "\u0275" }, 630: { "value": "0276", "name": "LATIN LETTER SMALL CAPITAL OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER SMALL CAPITAL O E", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0276" }, 631: { "value": "0277", "name": "LATIN SMALL LETTER CLOSED OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0277" }, 632: { "value": "0278", "name": "LATIN SMALL LETTER PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0278" }, 633: { "value": "0279", "name": "LATIN SMALL LETTER TURNED R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0279" }, 634: { "value": "027A", "name": "LATIN SMALL LETTER TURNED R WITH LONG LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u027A" }, 635: { "value": "027B", "name": "LATIN SMALL LETTER TURNED R WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER TURNED R HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u027B" }, 636: { "value": "027C", "name": "LATIN SMALL LETTER R WITH LONG LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u027C" }, 637: { "value": "027D", "name": "LATIN SMALL LETTER R WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER R HOOK", "comment": "", "uppercase_mapping": "2C64", "lowercase_mapping": "", "titlecase_mapping": "2C64", "symbol": "\u027D" }, 638: { "value": "027E", "name": "LATIN SMALL LETTER R WITH FISHHOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER FISHHOOK R", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u027E" }, 639: { "value": "027F", "name": "LATIN SMALL LETTER REVERSED R WITH FISHHOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER REVERSED FISHHOOK R", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u027F" }, 640: { "value": "0280", "name": "LATIN LETTER SMALL CAPITAL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01A6", "lowercase_mapping": "", "titlecase_mapping": "01A6", "symbol": "\u0280" }, 641: { "value": "0281", "name": "LATIN LETTER SMALL CAPITAL INVERTED R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0281" }, 642: { "value": "0282", "name": "LATIN SMALL LETTER S WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER S HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0282" }, 643: { "value": "0283", "name": "LATIN SMALL LETTER ESH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01A9", "lowercase_mapping": "", "titlecase_mapping": "01A9", "symbol": "\u0283" }, 644: { "value": "0284", "name": "LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER DOTLESS J BAR HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0284" }, 645: { "value": "0285", "name": "LATIN SMALL LETTER SQUAT REVERSED ESH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0285" }, 646: { "value": "0286", "name": "LATIN SMALL LETTER ESH WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER ESH CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0286" }, 647: { "value": "0287", "name": "LATIN SMALL LETTER TURNED T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7B1", "lowercase_mapping": "", "titlecase_mapping": "A7B1", "symbol": "\u0287" }, 648: { "value": "0288", "name": "LATIN SMALL LETTER T WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T RETROFLEX HOOK", "comment": "", "uppercase_mapping": "01AE", "lowercase_mapping": "", "titlecase_mapping": "01AE", "symbol": "\u0288" }, 649: { "value": "0289", "name": "LATIN SMALL LETTER U BAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0244", "lowercase_mapping": "", "titlecase_mapping": "0244", "symbol": "\u0289" }, 650: { "value": "028A", "name": "LATIN SMALL LETTER UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "01B1", "lowercase_mapping": "", "titlecase_mapping": "01B1", "symbol": "\u028A" }, 651: { "value": "028B", "name": "LATIN SMALL LETTER V WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER SCRIPT V", "comment": "", "uppercase_mapping": "01B2", "lowercase_mapping": "", "titlecase_mapping": "01B2", "symbol": "\u028B" }, 652: { "value": "028C", "name": "LATIN SMALL LETTER TURNED V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0245", "lowercase_mapping": "", "titlecase_mapping": "0245", "symbol": "\u028C" }, 653: { "value": "028D", "name": "LATIN SMALL LETTER TURNED W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u028D" }, 654: { "value": "028E", "name": "LATIN SMALL LETTER TURNED Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u028E" }, 655: { "value": "028F", "name": "LATIN LETTER SMALL CAPITAL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u028F" }, 656: { "value": "0290", "name": "LATIN SMALL LETTER Z WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z RETROFLEX HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0290" }, 657: { "value": "0291", "name": "LATIN SMALL LETTER Z WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Z CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0291" }, 658: { "value": "0292", "name": "LATIN SMALL LETTER EZH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER YOGH", "comment": "", "uppercase_mapping": "01B7", "lowercase_mapping": "", "titlecase_mapping": "01B7", "symbol": "\u0292" }, 659: { "value": "0293", "name": "LATIN SMALL LETTER EZH WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER YOGH CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0293" }, 661: { "value": "0295", "name": "LATIN LETTER PHARYNGEAL VOICED FRICATIVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER REVERSED GLOTTAL STOP", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0295" }, 662: { "value": "0296", "name": "LATIN LETTER INVERTED GLOTTAL STOP", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0296" }, 663: { "value": "0297", "name": "LATIN LETTER STRETCHED C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0297" }, 664: { "value": "0298", "name": "LATIN LETTER BILABIAL CLICK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER BULLSEYE", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0298" }, 665: { "value": "0299", "name": "LATIN LETTER SMALL CAPITAL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0299" }, 666: { "value": "029A", "name": "LATIN SMALL LETTER CLOSED OPEN E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER CLOSED EPSILON", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u029A" }, 667: { "value": "029B", "name": "LATIN LETTER SMALL CAPITAL G WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER SMALL CAPITAL G HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u029B" }, 668: { "value": "029C", "name": "LATIN LETTER SMALL CAPITAL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u029C" }, 669: { "value": "029D", "name": "LATIN SMALL LETTER J WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER CROSSED-TAIL J", "comment": "", "uppercase_mapping": "A7B2", "lowercase_mapping": "", "titlecase_mapping": "A7B2", "symbol": "\u029D" }, 670: { "value": "029E", "name": "LATIN SMALL LETTER TURNED K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7B0", "lowercase_mapping": "", "titlecase_mapping": "A7B0", "symbol": "\u029E" }, 671: { "value": "029F", "name": "LATIN LETTER SMALL CAPITAL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u029F" }, 672: { "value": "02A0", "name": "LATIN SMALL LETTER Q WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER Q HOOK", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A0" }, 673: { "value": "02A1", "name": "LATIN LETTER GLOTTAL STOP WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER GLOTTAL STOP BAR", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A1" }, 674: { "value": "02A2", "name": "LATIN LETTER REVERSED GLOTTAL STOP WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN LETTER REVERSED GLOTTAL STOP BAR", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A2" }, 675: { "value": "02A3", "name": "LATIN SMALL LETTER DZ DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D Z", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A3" }, 676: { "value": "02A4", "name": "LATIN SMALL LETTER DEZH DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D YOGH", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A4" }, 677: { "value": "02A5", "name": "LATIN SMALL LETTER DZ DIGRAPH WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER D Z CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A5" }, 678: { "value": "02A6", "name": "LATIN SMALL LETTER TS DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T S", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A6" }, 679: { "value": "02A7", "name": "LATIN SMALL LETTER TESH DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T ESH", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A7" }, 680: { "value": "02A8", "name": "LATIN SMALL LETTER TC DIGRAPH WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "LATIN SMALL LETTER T C CURL", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A8" }, 681: { "value": "02A9", "name": "LATIN SMALL LETTER FENG DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02A9" }, 682: { "value": "02AA", "name": "LATIN SMALL LETTER LS DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AA" }, 683: { "value": "02AB", "name": "LATIN SMALL LETTER LZ DIGRAPH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AB" }, 684: { "value": "02AC", "name": "LATIN LETTER BILABIAL PERCUSSIVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AC" }, 685: { "value": "02AD", "name": "LATIN LETTER BIDENTAL PERCUSSIVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AD" }, 686: { "value": "02AE", "name": "LATIN SMALL LETTER TURNED H WITH FISHHOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AE" }, 687: { "value": "02AF", "name": "LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u02AF" }, 881: { "value": "0371", "name": "GREEK SMALL LETTER HETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0370", "lowercase_mapping": "", "titlecase_mapping": "0370", "symbol": "\u0371" }, 883: { "value": "0373", "name": "GREEK SMALL LETTER ARCHAIC SAMPI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0372", "lowercase_mapping": "", "titlecase_mapping": "0372", "symbol": "\u0373" }, 887: { "value": "0377", "name": "GREEK SMALL LETTER PAMPHYLIAN DIGAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0376", "lowercase_mapping": "", "titlecase_mapping": "0376", "symbol": "\u0377" }, 891: { "value": "037B", "name": "GREEK SMALL REVERSED LUNATE SIGMA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03FD", "lowercase_mapping": "", "titlecase_mapping": "03FD", "symbol": "\u037B" }, 892: { "value": "037C", "name": "GREEK SMALL DOTTED LUNATE SIGMA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03FE", "lowercase_mapping": "", "titlecase_mapping": "03FE", "symbol": "\u037C" }, 893: { "value": "037D", "name": "GREEK SMALL REVERSED DOTTED LUNATE SIGMA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03FF", "lowercase_mapping": "", "titlecase_mapping": "03FF", "symbol": "\u037D" }, 912: { "value": "0390", "name": "GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CA 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER IOTA DIAERESIS TONOS", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0390" }, 940: { "value": "03AC", "name": "GREEK SMALL LETTER ALPHA WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER ALPHA TONOS", "comment": "", "uppercase_mapping": "0386", "lowercase_mapping": "", "titlecase_mapping": "0386", "symbol": "\u03AC" }, 941: { "value": "03AD", "name": "GREEK SMALL LETTER EPSILON WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B5 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER EPSILON TONOS", "comment": "", "uppercase_mapping": "0388", "lowercase_mapping": "", "titlecase_mapping": "0388", "symbol": "\u03AD" }, 942: { "value": "03AE", "name": "GREEK SMALL LETTER ETA WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER ETA TONOS", "comment": "", "uppercase_mapping": "0389", "lowercase_mapping": "", "titlecase_mapping": "0389", "symbol": "\u03AE" }, 943: { "value": "03AF", "name": "GREEK SMALL LETTER IOTA WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER IOTA TONOS", "comment": "", "uppercase_mapping": "038A", "lowercase_mapping": "", "titlecase_mapping": "038A", "symbol": "\u03AF" }, 944: { "value": "03B0", "name": "GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CB 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER UPSILON DIAERESIS TONOS", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u03B0" }, 945: { "value": "03B1", "name": "GREEK SMALL LETTER ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0391", "lowercase_mapping": "", "titlecase_mapping": "0391", "symbol": "\u03B1" }, 946: { "value": "03B2", "name": "GREEK SMALL LETTER BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0392", "lowercase_mapping": "", "titlecase_mapping": "0392", "symbol": "\u03B2" }, 947: { "value": "03B3", "name": "GREEK SMALL LETTER GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0393", "lowercase_mapping": "", "titlecase_mapping": "0393", "symbol": "\u03B3" }, 948: { "value": "03B4", "name": "GREEK SMALL LETTER DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0394", "lowercase_mapping": "", "titlecase_mapping": "0394", "symbol": "\u03B4" }, 949: { "value": "03B5", "name": "GREEK SMALL LETTER EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0395", "lowercase_mapping": "", "titlecase_mapping": "0395", "symbol": "\u03B5" }, 950: { "value": "03B6", "name": "GREEK SMALL LETTER ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0396", "lowercase_mapping": "", "titlecase_mapping": "0396", "symbol": "\u03B6" }, 951: { "value": "03B7", "name": "GREEK SMALL LETTER ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0397", "lowercase_mapping": "", "titlecase_mapping": "0397", "symbol": "\u03B7" }, 952: { "value": "03B8", "name": "GREEK SMALL LETTER THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0398", "lowercase_mapping": "", "titlecase_mapping": "0398", "symbol": "\u03B8" }, 953: { "value": "03B9", "name": "GREEK SMALL LETTER IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0399", "lowercase_mapping": "", "titlecase_mapping": "0399", "symbol": "\u03B9" }, 954: { "value": "03BA", "name": "GREEK SMALL LETTER KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039A", "lowercase_mapping": "", "titlecase_mapping": "039A", "symbol": "\u03BA" }, 955: { "value": "03BB", "name": "GREEK SMALL LETTER LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER LAMBDA", "comment": "", "uppercase_mapping": "039B", "lowercase_mapping": "", "titlecase_mapping": "039B", "symbol": "\u03BB" }, 956: { "value": "03BC", "name": "GREEK SMALL LETTER MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039C", "lowercase_mapping": "", "titlecase_mapping": "039C", "symbol": "\u03BC" }, 957: { "value": "03BD", "name": "GREEK SMALL LETTER NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039D", "lowercase_mapping": "", "titlecase_mapping": "039D", "symbol": "\u03BD" }, 958: { "value": "03BE", "name": "GREEK SMALL LETTER XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039E", "lowercase_mapping": "", "titlecase_mapping": "039E", "symbol": "\u03BE" }, 959: { "value": "03BF", "name": "GREEK SMALL LETTER OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "039F", "lowercase_mapping": "", "titlecase_mapping": "039F", "symbol": "\u03BF" }, 960: { "value": "03C0", "name": "GREEK SMALL LETTER PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A0", "lowercase_mapping": "", "titlecase_mapping": "03A0", "symbol": "\u03C0" }, 961: { "value": "03C1", "name": "GREEK SMALL LETTER RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A1", "lowercase_mapping": "", "titlecase_mapping": "03A1", "symbol": "\u03C1" }, 962: { "value": "03C2", "name": "GREEK SMALL LETTER FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A3", "lowercase_mapping": "", "titlecase_mapping": "03A3", "symbol": "\u03C2" }, 963: { "value": "03C3", "name": "GREEK SMALL LETTER SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A3", "lowercase_mapping": "", "titlecase_mapping": "03A3", "symbol": "\u03C3" }, 964: { "value": "03C4", "name": "GREEK SMALL LETTER TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A4", "lowercase_mapping": "", "titlecase_mapping": "03A4", "symbol": "\u03C4" }, 965: { "value": "03C5", "name": "GREEK SMALL LETTER UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A5", "lowercase_mapping": "", "titlecase_mapping": "03A5", "symbol": "\u03C5" }, 966: { "value": "03C6", "name": "GREEK SMALL LETTER PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A6", "lowercase_mapping": "", "titlecase_mapping": "03A6", "symbol": "\u03C6" }, 967: { "value": "03C7", "name": "GREEK SMALL LETTER CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A7", "lowercase_mapping": "", "titlecase_mapping": "03A7", "symbol": "\u03C7" }, 968: { "value": "03C8", "name": "GREEK SMALL LETTER PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A8", "lowercase_mapping": "", "titlecase_mapping": "03A8", "symbol": "\u03C8" }, 969: { "value": "03C9", "name": "GREEK SMALL LETTER OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03A9", "lowercase_mapping": "", "titlecase_mapping": "03A9", "symbol": "\u03C9" }, 970: { "value": "03CA", "name": "GREEK SMALL LETTER IOTA WITH DIALYTIKA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER IOTA DIAERESIS", "comment": "", "uppercase_mapping": "03AA", "lowercase_mapping": "", "titlecase_mapping": "03AA", "symbol": "\u03CA" }, 971: { "value": "03CB", "name": "GREEK SMALL LETTER UPSILON WITH DIALYTIKA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER UPSILON DIAERESIS", "comment": "", "uppercase_mapping": "03AB", "lowercase_mapping": "", "titlecase_mapping": "03AB", "symbol": "\u03CB" }, 972: { "value": "03CC", "name": "GREEK SMALL LETTER OMICRON WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03BF 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER OMICRON TONOS", "comment": "", "uppercase_mapping": "038C", "lowercase_mapping": "", "titlecase_mapping": "038C", "symbol": "\u03CC" }, 973: { "value": "03CD", "name": "GREEK SMALL LETTER UPSILON WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER UPSILON TONOS", "comment": "", "uppercase_mapping": "038E", "lowercase_mapping": "", "titlecase_mapping": "038E", "symbol": "\u03CD" }, 974: { "value": "03CE", "name": "GREEK SMALL LETTER OMEGA WITH TONOS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER OMEGA TONOS", "comment": "", "uppercase_mapping": "038F", "lowercase_mapping": "", "titlecase_mapping": "038F", "symbol": "\u03CE" }, 976: { "value": "03D0", "name": "GREEK BETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER CURLED BETA", "comment": "", "uppercase_mapping": "0392", "lowercase_mapping": "", "titlecase_mapping": "0392", "symbol": "\u03D0" }, 977: { "value": "03D1", "name": "GREEK THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER SCRIPT THETA", "comment": "", "uppercase_mapping": "0398", "lowercase_mapping": "", "titlecase_mapping": "0398", "symbol": "\u03D1" }, 981: { "value": "03D5", "name": "GREEK PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER SCRIPT PHI", "comment": "", "uppercase_mapping": "03A6", "lowercase_mapping": "", "titlecase_mapping": "03A6", "symbol": "\u03D5" }, 982: { "value": "03D6", "name": "GREEK PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER OMEGA PI", "comment": "", "uppercase_mapping": "03A0", "lowercase_mapping": "", "titlecase_mapping": "03A0", "symbol": "\u03D6" }, 983: { "value": "03D7", "name": "GREEK KAI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03CF", "lowercase_mapping": "", "titlecase_mapping": "03CF", "symbol": "\u03D7" }, 985: { "value": "03D9", "name": "GREEK SMALL LETTER ARCHAIC KOPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03D8", "lowercase_mapping": "", "titlecase_mapping": "03D8", "symbol": "\u03D9" }, 987: { "value": "03DB", "name": "GREEK SMALL LETTER STIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03DA", "lowercase_mapping": "", "titlecase_mapping": "03DA", "symbol": "\u03DB" }, 989: { "value": "03DD", "name": "GREEK SMALL LETTER DIGAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03DC", "lowercase_mapping": "", "titlecase_mapping": "03DC", "symbol": "\u03DD" }, 991: { "value": "03DF", "name": "GREEK SMALL LETTER KOPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03DE", "lowercase_mapping": "", "titlecase_mapping": "03DE", "symbol": "\u03DF" }, 993: { "value": "03E1", "name": "GREEK SMALL LETTER SAMPI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03E0", "lowercase_mapping": "", "titlecase_mapping": "03E0", "symbol": "\u03E1" }, 995: { "value": "03E3", "name": "COPTIC SMALL LETTER SHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER SHEI", "comment": "", "uppercase_mapping": "03E2", "lowercase_mapping": "", "titlecase_mapping": "03E2", "symbol": "\u03E3" }, 997: { "value": "03E5", "name": "COPTIC SMALL LETTER FEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER FEI", "comment": "", "uppercase_mapping": "03E4", "lowercase_mapping": "", "titlecase_mapping": "03E4", "symbol": "\u03E5" }, 999: { "value": "03E7", "name": "COPTIC SMALL LETTER KHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER KHEI", "comment": "", "uppercase_mapping": "03E6", "lowercase_mapping": "", "titlecase_mapping": "03E6", "symbol": "\u03E7" }, 1001: { "value": "03E9", "name": "COPTIC SMALL LETTER HORI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER HORI", "comment": "", "uppercase_mapping": "03E8", "lowercase_mapping": "", "titlecase_mapping": "03E8", "symbol": "\u03E9" }, 1003: { "value": "03EB", "name": "COPTIC SMALL LETTER GANGIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER GANGIA", "comment": "", "uppercase_mapping": "03EA", "lowercase_mapping": "", "titlecase_mapping": "03EA", "symbol": "\u03EB" }, 1005: { "value": "03ED", "name": "COPTIC SMALL LETTER SHIMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER SHIMA", "comment": "", "uppercase_mapping": "03EC", "lowercase_mapping": "", "titlecase_mapping": "03EC", "symbol": "\u03ED" }, 1007: { "value": "03EF", "name": "COPTIC SMALL LETTER DEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER DEI", "comment": "", "uppercase_mapping": "03EE", "lowercase_mapping": "", "titlecase_mapping": "03EE", "symbol": "\u03EF" }, 1008: { "value": "03F0", "name": "GREEK KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER SCRIPT KAPPA", "comment": "", "uppercase_mapping": "039A", "lowercase_mapping": "", "titlecase_mapping": "039A", "symbol": "\u03F0" }, 1009: { "value": "03F1", "name": "GREEK RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER TAILED RHO", "comment": "", "uppercase_mapping": "03A1", "lowercase_mapping": "", "titlecase_mapping": "03A1", "symbol": "\u03F1" }, 1010: { "value": "03F2", "name": "GREEK LUNATE SIGMA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "GREEK SMALL LETTER LUNATE SIGMA", "comment": "", "uppercase_mapping": "03F9", "lowercase_mapping": "", "titlecase_mapping": "03F9", "symbol": "\u03F2" }, 1011: { "value": "03F3", "name": "GREEK LETTER YOT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "037F", "lowercase_mapping": "", "titlecase_mapping": "037F", "symbol": "\u03F3" }, 1013: { "value": "03F5", "name": "GREEK LUNATE EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0395", "lowercase_mapping": "", "titlecase_mapping": "0395", "symbol": "\u03F5" }, 1016: { "value": "03F8", "name": "GREEK SMALL LETTER SHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03F7", "lowercase_mapping": "", "titlecase_mapping": "03F7", "symbol": "\u03F8" }, 1019: { "value": "03FB", "name": "GREEK SMALL LETTER SAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "03FA", "lowercase_mapping": "", "titlecase_mapping": "03FA", "symbol": "\u03FB" }, 1020: { "value": "03FC", "name": "GREEK RHO WITH STROKE SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u03FC" }, 1072: { "value": "0430", "name": "CYRILLIC SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0410", "lowercase_mapping": "", "titlecase_mapping": "0410", "symbol": "\u0430" }, 1073: { "value": "0431", "name": "CYRILLIC SMALL LETTER BE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0411", "lowercase_mapping": "", "titlecase_mapping": "0411", "symbol": "\u0431" }, 1074: { "value": "0432", "name": "CYRILLIC SMALL LETTER VE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0412", "lowercase_mapping": "", "titlecase_mapping": "0412", "symbol": "\u0432" }, 1075: { "value": "0433", "name": "CYRILLIC SMALL LETTER GHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER GE", "comment": "", "uppercase_mapping": "0413", "lowercase_mapping": "", "titlecase_mapping": "0413", "symbol": "\u0433" }, 1076: { "value": "0434", "name": "CYRILLIC SMALL LETTER DE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0414", "lowercase_mapping": "", "titlecase_mapping": "0414", "symbol": "\u0434" }, 1077: { "value": "0435", "name": "CYRILLIC SMALL LETTER IE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0415", "lowercase_mapping": "", "titlecase_mapping": "0415", "symbol": "\u0435" }, 1078: { "value": "0436", "name": "CYRILLIC SMALL LETTER ZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0416", "lowercase_mapping": "", "titlecase_mapping": "0416", "symbol": "\u0436" }, 1079: { "value": "0437", "name": "CYRILLIC SMALL LETTER ZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0417", "lowercase_mapping": "", "titlecase_mapping": "0417", "symbol": "\u0437" }, 1080: { "value": "0438", "name": "CYRILLIC SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER II", "comment": "", "uppercase_mapping": "0418", "lowercase_mapping": "", "titlecase_mapping": "0418", "symbol": "\u0438" }, 1081: { "value": "0439", "name": "CYRILLIC SMALL LETTER SHORT I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0438 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER SHORT II", "comment": "", "uppercase_mapping": "0419", "lowercase_mapping": "", "titlecase_mapping": "0419", "symbol": "\u0439" }, 1082: { "value": "043A", "name": "CYRILLIC SMALL LETTER KA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041A", "lowercase_mapping": "", "titlecase_mapping": "041A", "symbol": "\u043A" }, 1083: { "value": "043B", "name": "CYRILLIC SMALL LETTER EL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041B", "lowercase_mapping": "", "titlecase_mapping": "041B", "symbol": "\u043B" }, 1084: { "value": "043C", "name": "CYRILLIC SMALL LETTER EM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041C", "lowercase_mapping": "", "titlecase_mapping": "041C", "symbol": "\u043C" }, 1085: { "value": "043D", "name": "CYRILLIC SMALL LETTER EN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041D", "lowercase_mapping": "", "titlecase_mapping": "041D", "symbol": "\u043D" }, 1086: { "value": "043E", "name": "CYRILLIC SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041E", "lowercase_mapping": "", "titlecase_mapping": "041E", "symbol": "\u043E" }, 1087: { "value": "043F", "name": "CYRILLIC SMALL LETTER PE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041F", "lowercase_mapping": "", "titlecase_mapping": "041F", "symbol": "\u043F" }, 1088: { "value": "0440", "name": "CYRILLIC SMALL LETTER ER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0420", "lowercase_mapping": "", "titlecase_mapping": "0420", "symbol": "\u0440" }, 1089: { "value": "0441", "name": "CYRILLIC SMALL LETTER ES", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0421", "lowercase_mapping": "", "titlecase_mapping": "0421", "symbol": "\u0441" }, 1090: { "value": "0442", "name": "CYRILLIC SMALL LETTER TE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0422", "lowercase_mapping": "", "titlecase_mapping": "0422", "symbol": "\u0442" }, 1091: { "value": "0443", "name": "CYRILLIC SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0423", "lowercase_mapping": "", "titlecase_mapping": "0423", "symbol": "\u0443" }, 1092: { "value": "0444", "name": "CYRILLIC SMALL LETTER EF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0424", "lowercase_mapping": "", "titlecase_mapping": "0424", "symbol": "\u0444" }, 1093: { "value": "0445", "name": "CYRILLIC SMALL LETTER HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KHA", "comment": "", "uppercase_mapping": "0425", "lowercase_mapping": "", "titlecase_mapping": "0425", "symbol": "\u0445" }, 1094: { "value": "0446", "name": "CYRILLIC SMALL LETTER TSE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0426", "lowercase_mapping": "", "titlecase_mapping": "0426", "symbol": "\u0446" }, 1095: { "value": "0447", "name": "CYRILLIC SMALL LETTER CHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0427", "lowercase_mapping": "", "titlecase_mapping": "0427", "symbol": "\u0447" }, 1096: { "value": "0448", "name": "CYRILLIC SMALL LETTER SHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0428", "lowercase_mapping": "", "titlecase_mapping": "0428", "symbol": "\u0448" }, 1097: { "value": "0449", "name": "CYRILLIC SMALL LETTER SHCHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0429", "lowercase_mapping": "", "titlecase_mapping": "0429", "symbol": "\u0449" }, 1098: { "value": "044A", "name": "CYRILLIC SMALL LETTER HARD SIGN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "042A", "lowercase_mapping": "", "titlecase_mapping": "042A", "symbol": "\u044A" }, 1099: { "value": "044B", "name": "CYRILLIC SMALL LETTER YERU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER YERI", "comment": "", "uppercase_mapping": "042B", "lowercase_mapping": "", "titlecase_mapping": "042B", "symbol": "\u044B" }, 1100: { "value": "044C", "name": "CYRILLIC SMALL LETTER SOFT SIGN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "042C", "lowercase_mapping": "", "titlecase_mapping": "042C", "symbol": "\u044C" }, 1101: { "value": "044D", "name": "CYRILLIC SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER REVERSED E", "comment": "", "uppercase_mapping": "042D", "lowercase_mapping": "", "titlecase_mapping": "042D", "symbol": "\u044D" }, 1102: { "value": "044E", "name": "CYRILLIC SMALL LETTER YU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER IU", "comment": "", "uppercase_mapping": "042E", "lowercase_mapping": "", "titlecase_mapping": "042E", "symbol": "\u044E" }, 1103: { "value": "044F", "name": "CYRILLIC SMALL LETTER YA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER IA", "comment": "", "uppercase_mapping": "042F", "lowercase_mapping": "", "titlecase_mapping": "042F", "symbol": "\u044F" }, 1104: { "value": "0450", "name": "CYRILLIC SMALL LETTER IE WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0435 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0400", "lowercase_mapping": "", "titlecase_mapping": "0400", "symbol": "\u0450" }, 1105: { "value": "0451", "name": "CYRILLIC SMALL LETTER IO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0435 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0401", "lowercase_mapping": "", "titlecase_mapping": "0401", "symbol": "\u0451" }, 1106: { "value": "0452", "name": "CYRILLIC SMALL LETTER DJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0402", "lowercase_mapping": "", "titlecase_mapping": "0402", "symbol": "\u0452" }, 1107: { "value": "0453", "name": "CYRILLIC SMALL LETTER GJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0433 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0403", "lowercase_mapping": "", "titlecase_mapping": "0403", "symbol": "\u0453" }, 1108: { "value": "0454", "name": "CYRILLIC SMALL LETTER UKRAINIAN IE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER E", "comment": "", "uppercase_mapping": "0404", "lowercase_mapping": "", "titlecase_mapping": "0404", "symbol": "\u0454" }, 1109: { "value": "0455", "name": "CYRILLIC SMALL LETTER DZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0405", "lowercase_mapping": "", "titlecase_mapping": "0405", "symbol": "\u0455" }, 1110: { "value": "0456", "name": "CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER I", "comment": "", "uppercase_mapping": "0406", "lowercase_mapping": "", "titlecase_mapping": "0406", "symbol": "\u0456" }, 1111: { "value": "0457", "name": "CYRILLIC SMALL LETTER YI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0456 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0407", "lowercase_mapping": "", "titlecase_mapping": "0407", "symbol": "\u0457" }, 1112: { "value": "0458", "name": "CYRILLIC SMALL LETTER JE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0408", "lowercase_mapping": "", "titlecase_mapping": "0408", "symbol": "\u0458" }, 1113: { "value": "0459", "name": "CYRILLIC SMALL LETTER LJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0409", "lowercase_mapping": "", "titlecase_mapping": "0409", "symbol": "\u0459" }, 1114: { "value": "045A", "name": "CYRILLIC SMALL LETTER NJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040A", "lowercase_mapping": "", "titlecase_mapping": "040A", "symbol": "\u045A" }, 1115: { "value": "045B", "name": "CYRILLIC SMALL LETTER TSHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040B", "lowercase_mapping": "", "titlecase_mapping": "040B", "symbol": "\u045B" }, 1116: { "value": "045C", "name": "CYRILLIC SMALL LETTER KJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "043A 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040C", "lowercase_mapping": "", "titlecase_mapping": "040C", "symbol": "\u045C" }, 1117: { "value": "045D", "name": "CYRILLIC SMALL LETTER I WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0438 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040D", "lowercase_mapping": "", "titlecase_mapping": "040D", "symbol": "\u045D" }, 1118: { "value": "045E", "name": "CYRILLIC SMALL LETTER SHORT U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0443 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040E", "lowercase_mapping": "", "titlecase_mapping": "040E", "symbol": "\u045E" }, 1119: { "value": "045F", "name": "CYRILLIC SMALL LETTER DZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "040F", "lowercase_mapping": "", "titlecase_mapping": "040F", "symbol": "\u045F" }, 1121: { "value": "0461", "name": "CYRILLIC SMALL LETTER OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0460", "lowercase_mapping": "", "titlecase_mapping": "0460", "symbol": "\u0461" }, 1123: { "value": "0463", "name": "CYRILLIC SMALL LETTER YAT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0462", "lowercase_mapping": "", "titlecase_mapping": "0462", "symbol": "\u0463" }, 1125: { "value": "0465", "name": "CYRILLIC SMALL LETTER IOTIFIED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0464", "lowercase_mapping": "", "titlecase_mapping": "0464", "symbol": "\u0465" }, 1127: { "value": "0467", "name": "CYRILLIC SMALL LETTER LITTLE YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0466", "lowercase_mapping": "", "titlecase_mapping": "0466", "symbol": "\u0467" }, 1129: { "value": "0469", "name": "CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0468", "lowercase_mapping": "", "titlecase_mapping": "0468", "symbol": "\u0469" }, 1131: { "value": "046B", "name": "CYRILLIC SMALL LETTER BIG YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "046A", "lowercase_mapping": "", "titlecase_mapping": "046A", "symbol": "\u046B" }, 1133: { "value": "046D", "name": "CYRILLIC SMALL LETTER IOTIFIED BIG YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "046C", "lowercase_mapping": "", "titlecase_mapping": "046C", "symbol": "\u046D" }, 1135: { "value": "046F", "name": "CYRILLIC SMALL LETTER KSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "046E", "lowercase_mapping": "", "titlecase_mapping": "046E", "symbol": "\u046F" }, 1137: { "value": "0471", "name": "CYRILLIC SMALL LETTER PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0470", "lowercase_mapping": "", "titlecase_mapping": "0470", "symbol": "\u0471" }, 1139: { "value": "0473", "name": "CYRILLIC SMALL LETTER FITA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0472", "lowercase_mapping": "", "titlecase_mapping": "0472", "symbol": "\u0473" }, 1141: { "value": "0475", "name": "CYRILLIC SMALL LETTER IZHITSA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0474", "lowercase_mapping": "", "titlecase_mapping": "0474", "symbol": "\u0475" }, 1143: { "value": "0477", "name": "CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0475 030F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER IZHITSA DOUBLE GRAVE", "comment": "", "uppercase_mapping": "0476", "lowercase_mapping": "", "titlecase_mapping": "0476", "symbol": "\u0477" }, 1145: { "value": "0479", "name": "CYRILLIC SMALL LETTER UK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER UK DIGRAPH", "comment": "", "uppercase_mapping": "0478", "lowercase_mapping": "", "titlecase_mapping": "0478", "symbol": "\u0479" }, 1147: { "value": "047B", "name": "CYRILLIC SMALL LETTER ROUND OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "047A", "lowercase_mapping": "", "titlecase_mapping": "047A", "symbol": "\u047B" }, 1149: { "value": "047D", "name": "CYRILLIC SMALL LETTER OMEGA WITH TITLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER OMEGA TITLO", "comment": "", "uppercase_mapping": "047C", "lowercase_mapping": "", "titlecase_mapping": "047C", "symbol": "\u047D" }, 1151: { "value": "047F", "name": "CYRILLIC SMALL LETTER OT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "047E", "lowercase_mapping": "", "titlecase_mapping": "047E", "symbol": "\u047F" }, 1153: { "value": "0481", "name": "CYRILLIC SMALL LETTER KOPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0480", "lowercase_mapping": "", "titlecase_mapping": "0480", "symbol": "\u0481" }, 1163: { "value": "048B", "name": "CYRILLIC SMALL LETTER SHORT I WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "048A", "lowercase_mapping": "", "titlecase_mapping": "048A", "symbol": "\u048B" }, 1165: { "value": "048D", "name": "CYRILLIC SMALL LETTER SEMISOFT SIGN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "048C", "lowercase_mapping": "", "titlecase_mapping": "048C", "symbol": "\u048D" }, 1167: { "value": "048F", "name": "CYRILLIC SMALL LETTER ER WITH TICK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "048E", "lowercase_mapping": "", "titlecase_mapping": "048E", "symbol": "\u048F" }, 1169: { "value": "0491", "name": "CYRILLIC SMALL LETTER GHE WITH UPTURN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER GE WITH UPTURN", "comment": "", "uppercase_mapping": "0490", "lowercase_mapping": "", "titlecase_mapping": "0490", "symbol": "\u0491" }, 1171: { "value": "0493", "name": "CYRILLIC SMALL LETTER GHE WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER GE BAR", "comment": "", "uppercase_mapping": "0492", "lowercase_mapping": "", "titlecase_mapping": "0492", "symbol": "\u0493" }, 1173: { "value": "0495", "name": "CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER GE HOOK", "comment": "", "uppercase_mapping": "0494", "lowercase_mapping": "", "titlecase_mapping": "0494", "symbol": "\u0495" }, 1175: { "value": "0497", "name": "CYRILLIC SMALL LETTER ZHE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER ZHE WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "0496", "lowercase_mapping": "", "titlecase_mapping": "0496", "symbol": "\u0497" }, 1177: { "value": "0499", "name": "CYRILLIC SMALL LETTER ZE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER ZE CEDILLA", "comment": "", "uppercase_mapping": "0498", "lowercase_mapping": "", "titlecase_mapping": "0498", "symbol": "\u0499" }, 1179: { "value": "049B", "name": "CYRILLIC SMALL LETTER KA WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KA WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "049A", "lowercase_mapping": "", "titlecase_mapping": "049A", "symbol": "\u049B" }, 1181: { "value": "049D", "name": "CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KA VERTICAL BAR", "comment": "", "uppercase_mapping": "049C", "lowercase_mapping": "", "titlecase_mapping": "049C", "symbol": "\u049D" }, 1183: { "value": "049F", "name": "CYRILLIC SMALL LETTER KA WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KA BAR", "comment": "", "uppercase_mapping": "049E", "lowercase_mapping": "", "titlecase_mapping": "049E", "symbol": "\u049F" }, 1185: { "value": "04A1", "name": "CYRILLIC SMALL LETTER BASHKIR KA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER REVERSED GE KA", "comment": "", "uppercase_mapping": "04A0", "lowercase_mapping": "", "titlecase_mapping": "04A0", "symbol": "\u04A1" }, 1187: { "value": "04A3", "name": "CYRILLIC SMALL LETTER EN WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER EN WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "04A2", "lowercase_mapping": "", "titlecase_mapping": "04A2", "symbol": "\u04A3" }, 1189: { "value": "04A5", "name": "CYRILLIC SMALL LIGATURE EN GHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER EN GE", "comment": "", "uppercase_mapping": "04A4", "lowercase_mapping": "", "titlecase_mapping": "04A4", "symbol": "\u04A5" }, 1191: { "value": "04A7", "name": "CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER PE HOOK", "comment": "", "uppercase_mapping": "04A6", "lowercase_mapping": "", "titlecase_mapping": "04A6", "symbol": "\u04A7" }, 1193: { "value": "04A9", "name": "CYRILLIC SMALL LETTER ABKHASIAN HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER O HOOK", "comment": "", "uppercase_mapping": "04A8", "lowercase_mapping": "", "titlecase_mapping": "04A8", "symbol": "\u04A9" }, 1195: { "value": "04AB", "name": "CYRILLIC SMALL LETTER ES WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER ES CEDILLA", "comment": "", "uppercase_mapping": "04AA", "lowercase_mapping": "", "titlecase_mapping": "04AA", "symbol": "\u04AB" }, 1197: { "value": "04AD", "name": "CYRILLIC SMALL LETTER TE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER TE WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "04AC", "lowercase_mapping": "", "titlecase_mapping": "04AC", "symbol": "\u04AD" }, 1199: { "value": "04AF", "name": "CYRILLIC SMALL LETTER STRAIGHT U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04AE", "lowercase_mapping": "", "titlecase_mapping": "04AE", "symbol": "\u04AF" }, 1201: { "value": "04B1", "name": "CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER STRAIGHT U BAR", "comment": "", "uppercase_mapping": "04B0", "lowercase_mapping": "", "titlecase_mapping": "04B0", "symbol": "\u04B1" }, 1203: { "value": "04B3", "name": "CYRILLIC SMALL LETTER HA WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KHA WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "04B2", "lowercase_mapping": "", "titlecase_mapping": "04B2", "symbol": "\u04B3" }, 1205: { "value": "04B5", "name": "CYRILLIC SMALL LIGATURE TE TSE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER TE TSE", "comment": "", "uppercase_mapping": "04B4", "lowercase_mapping": "", "titlecase_mapping": "04B4", "symbol": "\u04B5" }, 1207: { "value": "04B7", "name": "CYRILLIC SMALL LETTER CHE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER CHE WITH RIGHT DESCENDER", "comment": "", "uppercase_mapping": "04B6", "lowercase_mapping": "", "titlecase_mapping": "04B6", "symbol": "\u04B7" }, 1209: { "value": "04B9", "name": "CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER CHE VERTICAL BAR", "comment": "", "uppercase_mapping": "04B8", "lowercase_mapping": "", "titlecase_mapping": "04B8", "symbol": "\u04B9" }, 1211: { "value": "04BB", "name": "CYRILLIC SMALL LETTER SHHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER H", "comment": "", "uppercase_mapping": "04BA", "lowercase_mapping": "", "titlecase_mapping": "04BA", "symbol": "\u04BB" }, 1213: { "value": "04BD", "name": "CYRILLIC SMALL LETTER ABKHASIAN CHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER IE HOOK", "comment": "", "uppercase_mapping": "04BC", "lowercase_mapping": "", "titlecase_mapping": "04BC", "symbol": "\u04BD" }, 1215: { "value": "04BF", "name": "CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER IE HOOK OGONEK", "comment": "", "uppercase_mapping": "04BE", "lowercase_mapping": "", "titlecase_mapping": "04BE", "symbol": "\u04BF" }, 1218: { "value": "04C2", "name": "CYRILLIC SMALL LETTER ZHE WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0436 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER SHORT ZHE", "comment": "", "uppercase_mapping": "04C1", "lowercase_mapping": "", "titlecase_mapping": "04C1", "symbol": "\u04C2" }, 1220: { "value": "04C4", "name": "CYRILLIC SMALL LETTER KA WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER KA HOOK", "comment": "", "uppercase_mapping": "04C3", "lowercase_mapping": "", "titlecase_mapping": "04C3", "symbol": "\u04C4" }, 1222: { "value": "04C6", "name": "CYRILLIC SMALL LETTER EL WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04C5", "lowercase_mapping": "", "titlecase_mapping": "04C5", "symbol": "\u04C6" }, 1224: { "value": "04C8", "name": "CYRILLIC SMALL LETTER EN WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER EN HOOK", "comment": "", "uppercase_mapping": "04C7", "lowercase_mapping": "", "titlecase_mapping": "04C7", "symbol": "\u04C8" }, 1226: { "value": "04CA", "name": "CYRILLIC SMALL LETTER EN WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04C9", "lowercase_mapping": "", "titlecase_mapping": "04C9", "symbol": "\u04CA" }, 1228: { "value": "04CC", "name": "CYRILLIC SMALL LETTER KHAKASSIAN CHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "CYRILLIC SMALL LETTER CHE WITH LEFT DESCENDER", "comment": "", "uppercase_mapping": "04CB", "lowercase_mapping": "", "titlecase_mapping": "04CB", "symbol": "\u04CC" }, 1230: { "value": "04CE", "name": "CYRILLIC SMALL LETTER EM WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04CD", "lowercase_mapping": "", "titlecase_mapping": "04CD", "symbol": "\u04CE" }, 1231: { "value": "04CF", "name": "CYRILLIC SMALL LETTER PALOCHKA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04C0", "lowercase_mapping": "", "titlecase_mapping": "04C0", "symbol": "\u04CF" }, 1233: { "value": "04D1", "name": "CYRILLIC SMALL LETTER A WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0430 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04D0", "lowercase_mapping": "", "titlecase_mapping": "04D0", "symbol": "\u04D1" }, 1235: { "value": "04D3", "name": "CYRILLIC SMALL LETTER A WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0430 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04D2", "lowercase_mapping": "", "titlecase_mapping": "04D2", "symbol": "\u04D3" }, 1237: { "value": "04D5", "name": "CYRILLIC SMALL LIGATURE A IE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04D4", "lowercase_mapping": "", "titlecase_mapping": "04D4", "symbol": "\u04D5" }, 1239: { "value": "04D7", "name": "CYRILLIC SMALL LETTER IE WITH BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0435 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04D6", "lowercase_mapping": "", "titlecase_mapping": "04D6", "symbol": "\u04D7" }, 1241: { "value": "04D9", "name": "CYRILLIC SMALL LETTER SCHWA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04D8", "lowercase_mapping": "", "titlecase_mapping": "04D8", "symbol": "\u04D9" }, 1243: { "value": "04DB", "name": "CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "04D9 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04DA", "lowercase_mapping": "", "titlecase_mapping": "04DA", "symbol": "\u04DB" }, 1245: { "value": "04DD", "name": "CYRILLIC SMALL LETTER ZHE WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0436 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04DC", "lowercase_mapping": "", "titlecase_mapping": "04DC", "symbol": "\u04DD" }, 1247: { "value": "04DF", "name": "CYRILLIC SMALL LETTER ZE WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0437 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04DE", "lowercase_mapping": "", "titlecase_mapping": "04DE", "symbol": "\u04DF" }, 1249: { "value": "04E1", "name": "CYRILLIC SMALL LETTER ABKHASIAN DZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04E0", "lowercase_mapping": "", "titlecase_mapping": "04E0", "symbol": "\u04E1" }, 1251: { "value": "04E3", "name": "CYRILLIC SMALL LETTER I WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0438 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04E2", "lowercase_mapping": "", "titlecase_mapping": "04E2", "symbol": "\u04E3" }, 1253: { "value": "04E5", "name": "CYRILLIC SMALL LETTER I WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0438 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04E4", "lowercase_mapping": "", "titlecase_mapping": "04E4", "symbol": "\u04E5" }, 1255: { "value": "04E7", "name": "CYRILLIC SMALL LETTER O WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "043E 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04E6", "lowercase_mapping": "", "titlecase_mapping": "04E6", "symbol": "\u04E7" }, 1257: { "value": "04E9", "name": "CYRILLIC SMALL LETTER BARRED O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04E8", "lowercase_mapping": "", "titlecase_mapping": "04E8", "symbol": "\u04E9" }, 1259: { "value": "04EB", "name": "CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "04E9 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04EA", "lowercase_mapping": "", "titlecase_mapping": "04EA", "symbol": "\u04EB" }, 1261: { "value": "04ED", "name": "CYRILLIC SMALL LETTER E WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "044D 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04EC", "lowercase_mapping": "", "titlecase_mapping": "04EC", "symbol": "\u04ED" }, 1263: { "value": "04EF", "name": "CYRILLIC SMALL LETTER U WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0443 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04EE", "lowercase_mapping": "", "titlecase_mapping": "04EE", "symbol": "\u04EF" }, 1265: { "value": "04F1", "name": "CYRILLIC SMALL LETTER U WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0443 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04F0", "lowercase_mapping": "", "titlecase_mapping": "04F0", "symbol": "\u04F1" }, 1267: { "value": "04F3", "name": "CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0443 030B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04F2", "lowercase_mapping": "", "titlecase_mapping": "04F2", "symbol": "\u04F3" }, 1269: { "value": "04F5", "name": "CYRILLIC SMALL LETTER CHE WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0447 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04F4", "lowercase_mapping": "", "titlecase_mapping": "04F4", "symbol": "\u04F5" }, 1271: { "value": "04F7", "name": "CYRILLIC SMALL LETTER GHE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04F6", "lowercase_mapping": "", "titlecase_mapping": "04F6", "symbol": "\u04F7" }, 1273: { "value": "04F9", "name": "CYRILLIC SMALL LETTER YERU WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "044B 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04F8", "lowercase_mapping": "", "titlecase_mapping": "04F8", "symbol": "\u04F9" }, 1275: { "value": "04FB", "name": "CYRILLIC SMALL LETTER GHE WITH STROKE AND HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04FA", "lowercase_mapping": "", "titlecase_mapping": "04FA", "symbol": "\u04FB" }, 1277: { "value": "04FD", "name": "CYRILLIC SMALL LETTER HA WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04FC", "lowercase_mapping": "", "titlecase_mapping": "04FC", "symbol": "\u04FD" }, 1279: { "value": "04FF", "name": "CYRILLIC SMALL LETTER HA WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "04FE", "lowercase_mapping": "", "titlecase_mapping": "04FE", "symbol": "\u04FF" }, 1281: { "value": "0501", "name": "CYRILLIC SMALL LETTER KOMI DE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0500", "lowercase_mapping": "", "titlecase_mapping": "0500", "symbol": "\u0501" }, 1283: { "value": "0503", "name": "CYRILLIC SMALL LETTER KOMI DJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0502", "lowercase_mapping": "", "titlecase_mapping": "0502", "symbol": "\u0503" }, 1285: { "value": "0505", "name": "CYRILLIC SMALL LETTER KOMI ZJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0504", "lowercase_mapping": "", "titlecase_mapping": "0504", "symbol": "\u0505" }, 1287: { "value": "0507", "name": "CYRILLIC SMALL LETTER KOMI DZJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0506", "lowercase_mapping": "", "titlecase_mapping": "0506", "symbol": "\u0507" }, 1289: { "value": "0509", "name": "CYRILLIC SMALL LETTER KOMI LJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0508", "lowercase_mapping": "", "titlecase_mapping": "0508", "symbol": "\u0509" }, 1291: { "value": "050B", "name": "CYRILLIC SMALL LETTER KOMI NJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "050A", "lowercase_mapping": "", "titlecase_mapping": "050A", "symbol": "\u050B" }, 1293: { "value": "050D", "name": "CYRILLIC SMALL LETTER KOMI SJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "050C", "lowercase_mapping": "", "titlecase_mapping": "050C", "symbol": "\u050D" }, 1295: { "value": "050F", "name": "CYRILLIC SMALL LETTER KOMI TJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "050E", "lowercase_mapping": "", "titlecase_mapping": "050E", "symbol": "\u050F" }, 1297: { "value": "0511", "name": "CYRILLIC SMALL LETTER REVERSED ZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0510", "lowercase_mapping": "", "titlecase_mapping": "0510", "symbol": "\u0511" }, 1299: { "value": "0513", "name": "CYRILLIC SMALL LETTER EL WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0512", "lowercase_mapping": "", "titlecase_mapping": "0512", "symbol": "\u0513" }, 1301: { "value": "0515", "name": "CYRILLIC SMALL LETTER LHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0514", "lowercase_mapping": "", "titlecase_mapping": "0514", "symbol": "\u0515" }, 1303: { "value": "0517", "name": "CYRILLIC SMALL LETTER RHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0516", "lowercase_mapping": "", "titlecase_mapping": "0516", "symbol": "\u0517" }, 1305: { "value": "0519", "name": "CYRILLIC SMALL LETTER YAE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0518", "lowercase_mapping": "", "titlecase_mapping": "0518", "symbol": "\u0519" }, 1307: { "value": "051B", "name": "CYRILLIC SMALL LETTER QA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "051A", "lowercase_mapping": "", "titlecase_mapping": "051A", "symbol": "\u051B" }, 1309: { "value": "051D", "name": "CYRILLIC SMALL LETTER WE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "051C", "lowercase_mapping": "", "titlecase_mapping": "051C", "symbol": "\u051D" }, 1311: { "value": "051F", "name": "CYRILLIC SMALL LETTER ALEUT KA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "051E", "lowercase_mapping": "", "titlecase_mapping": "051E", "symbol": "\u051F" }, 1313: { "value": "0521", "name": "CYRILLIC SMALL LETTER EL WITH MIDDLE HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0520", "lowercase_mapping": "", "titlecase_mapping": "0520", "symbol": "\u0521" }, 1315: { "value": "0523", "name": "CYRILLIC SMALL LETTER EN WITH MIDDLE HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0522", "lowercase_mapping": "", "titlecase_mapping": "0522", "symbol": "\u0523" }, 1317: { "value": "0525", "name": "CYRILLIC SMALL LETTER PE WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0524", "lowercase_mapping": "", "titlecase_mapping": "0524", "symbol": "\u0525" }, 1319: { "value": "0527", "name": "CYRILLIC SMALL LETTER SHHA WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0526", "lowercase_mapping": "", "titlecase_mapping": "0526", "symbol": "\u0527" }, 1321: { "value": "0529", "name": "CYRILLIC SMALL LETTER EN WITH LEFT HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0528", "lowercase_mapping": "", "titlecase_mapping": "0528", "symbol": "\u0529" }, 1323: { "value": "052B", "name": "CYRILLIC SMALL LETTER DZZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "052A", "lowercase_mapping": "", "titlecase_mapping": "052A", "symbol": "\u052B" }, 1325: { "value": "052D", "name": "CYRILLIC SMALL LETTER DCHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "052C", "lowercase_mapping": "", "titlecase_mapping": "052C", "symbol": "\u052D" }, 1327: { "value": "052F", "name": "CYRILLIC SMALL LETTER EL WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "052E", "lowercase_mapping": "", "titlecase_mapping": "052E", "symbol": "\u052F" }, 1377: { "value": "0561", "name": "ARMENIAN SMALL LETTER AYB", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0531", "lowercase_mapping": "", "titlecase_mapping": "0531", "symbol": "\u0561" }, 1378: { "value": "0562", "name": "ARMENIAN SMALL LETTER BEN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0532", "lowercase_mapping": "", "titlecase_mapping": "0532", "symbol": "\u0562" }, 1379: { "value": "0563", "name": "ARMENIAN SMALL LETTER GIM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0533", "lowercase_mapping": "", "titlecase_mapping": "0533", "symbol": "\u0563" }, 1380: { "value": "0564", "name": "ARMENIAN SMALL LETTER DA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0534", "lowercase_mapping": "", "titlecase_mapping": "0534", "symbol": "\u0564" }, 1381: { "value": "0565", "name": "ARMENIAN SMALL LETTER ECH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0535", "lowercase_mapping": "", "titlecase_mapping": "0535", "symbol": "\u0565" }, 1382: { "value": "0566", "name": "ARMENIAN SMALL LETTER ZA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0536", "lowercase_mapping": "", "titlecase_mapping": "0536", "symbol": "\u0566" }, 1383: { "value": "0567", "name": "ARMENIAN SMALL LETTER EH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0537", "lowercase_mapping": "", "titlecase_mapping": "0537", "symbol": "\u0567" }, 1384: { "value": "0568", "name": "ARMENIAN SMALL LETTER ET", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0538", "lowercase_mapping": "", "titlecase_mapping": "0538", "symbol": "\u0568" }, 1385: { "value": "0569", "name": "ARMENIAN SMALL LETTER TO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0539", "lowercase_mapping": "", "titlecase_mapping": "0539", "symbol": "\u0569" }, 1386: { "value": "056A", "name": "ARMENIAN SMALL LETTER ZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053A", "lowercase_mapping": "", "titlecase_mapping": "053A", "symbol": "\u056A" }, 1387: { "value": "056B", "name": "ARMENIAN SMALL LETTER INI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053B", "lowercase_mapping": "", "titlecase_mapping": "053B", "symbol": "\u056B" }, 1388: { "value": "056C", "name": "ARMENIAN SMALL LETTER LIWN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053C", "lowercase_mapping": "", "titlecase_mapping": "053C", "symbol": "\u056C" }, 1389: { "value": "056D", "name": "ARMENIAN SMALL LETTER XEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053D", "lowercase_mapping": "", "titlecase_mapping": "053D", "symbol": "\u056D" }, 1390: { "value": "056E", "name": "ARMENIAN SMALL LETTER CA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053E", "lowercase_mapping": "", "titlecase_mapping": "053E", "symbol": "\u056E" }, 1391: { "value": "056F", "name": "ARMENIAN SMALL LETTER KEN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "053F", "lowercase_mapping": "", "titlecase_mapping": "053F", "symbol": "\u056F" }, 1392: { "value": "0570", "name": "ARMENIAN SMALL LETTER HO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0540", "lowercase_mapping": "", "titlecase_mapping": "0540", "symbol": "\u0570" }, 1393: { "value": "0571", "name": "ARMENIAN SMALL LETTER JA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0541", "lowercase_mapping": "", "titlecase_mapping": "0541", "symbol": "\u0571" }, 1394: { "value": "0572", "name": "ARMENIAN SMALL LETTER GHAD", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "ARMENIAN SMALL LETTER LAD", "comment": "", "uppercase_mapping": "0542", "lowercase_mapping": "", "titlecase_mapping": "0542", "symbol": "\u0572" }, 1395: { "value": "0573", "name": "ARMENIAN SMALL LETTER CHEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0543", "lowercase_mapping": "", "titlecase_mapping": "0543", "symbol": "\u0573" }, 1396: { "value": "0574", "name": "ARMENIAN SMALL LETTER MEN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0544", "lowercase_mapping": "", "titlecase_mapping": "0544", "symbol": "\u0574" }, 1397: { "value": "0575", "name": "ARMENIAN SMALL LETTER YI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0545", "lowercase_mapping": "", "titlecase_mapping": "0545", "symbol": "\u0575" }, 1398: { "value": "0576", "name": "ARMENIAN SMALL LETTER NOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0546", "lowercase_mapping": "", "titlecase_mapping": "0546", "symbol": "\u0576" }, 1399: { "value": "0577", "name": "ARMENIAN SMALL LETTER SHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0547", "lowercase_mapping": "", "titlecase_mapping": "0547", "symbol": "\u0577" }, 1400: { "value": "0578", "name": "ARMENIAN SMALL LETTER VO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0548", "lowercase_mapping": "", "titlecase_mapping": "0548", "symbol": "\u0578" }, 1401: { "value": "0579", "name": "ARMENIAN SMALL LETTER CHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0549", "lowercase_mapping": "", "titlecase_mapping": "0549", "symbol": "\u0579" }, 1402: { "value": "057A", "name": "ARMENIAN SMALL LETTER PEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054A", "lowercase_mapping": "", "titlecase_mapping": "054A", "symbol": "\u057A" }, 1403: { "value": "057B", "name": "ARMENIAN SMALL LETTER JHEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054B", "lowercase_mapping": "", "titlecase_mapping": "054B", "symbol": "\u057B" }, 1404: { "value": "057C", "name": "ARMENIAN SMALL LETTER RA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054C", "lowercase_mapping": "", "titlecase_mapping": "054C", "symbol": "\u057C" }, 1405: { "value": "057D", "name": "ARMENIAN SMALL LETTER SEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054D", "lowercase_mapping": "", "titlecase_mapping": "054D", "symbol": "\u057D" }, 1406: { "value": "057E", "name": "ARMENIAN SMALL LETTER VEW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054E", "lowercase_mapping": "", "titlecase_mapping": "054E", "symbol": "\u057E" }, 1407: { "value": "057F", "name": "ARMENIAN SMALL LETTER TIWN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "054F", "lowercase_mapping": "", "titlecase_mapping": "054F", "symbol": "\u057F" }, 1408: { "value": "0580", "name": "ARMENIAN SMALL LETTER REH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0550", "lowercase_mapping": "", "titlecase_mapping": "0550", "symbol": "\u0580" }, 1409: { "value": "0581", "name": "ARMENIAN SMALL LETTER CO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0551", "lowercase_mapping": "", "titlecase_mapping": "0551", "symbol": "\u0581" }, 1410: { "value": "0582", "name": "ARMENIAN SMALL LETTER YIWN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0552", "lowercase_mapping": "", "titlecase_mapping": "0552", "symbol": "\u0582" }, 1411: { "value": "0583", "name": "ARMENIAN SMALL LETTER PIWR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0553", "lowercase_mapping": "", "titlecase_mapping": "0553", "symbol": "\u0583" }, 1412: { "value": "0584", "name": "ARMENIAN SMALL LETTER KEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0554", "lowercase_mapping": "", "titlecase_mapping": "0554", "symbol": "\u0584" }, 1413: { "value": "0585", "name": "ARMENIAN SMALL LETTER OH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0555", "lowercase_mapping": "", "titlecase_mapping": "0555", "symbol": "\u0585" }, 1414: { "value": "0586", "name": "ARMENIAN SMALL LETTER FEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0556", "lowercase_mapping": "", "titlecase_mapping": "0556", "symbol": "\u0586" }, 1415: { "value": "0587", "name": "ARMENIAN SMALL LIGATURE ECH YIWN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0565 0582", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u0587" }, 5112: { "value": "13F8", "name": "CHEROKEE SMALL LETTER YE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F0", "lowercase_mapping": "", "titlecase_mapping": "13F0", "symbol": "\u13F8" }, 5113: { "value": "13F9", "name": "CHEROKEE SMALL LETTER YI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F1", "lowercase_mapping": "", "titlecase_mapping": "13F1", "symbol": "\u13F9" }, 5114: { "value": "13FA", "name": "CHEROKEE SMALL LETTER YO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F2", "lowercase_mapping": "", "titlecase_mapping": "13F2", "symbol": "\u13FA" }, 5115: { "value": "13FB", "name": "CHEROKEE SMALL LETTER YU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F3", "lowercase_mapping": "", "titlecase_mapping": "13F3", "symbol": "\u13FB" }, 5116: { "value": "13FC", "name": "CHEROKEE SMALL LETTER YV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F4", "lowercase_mapping": "", "titlecase_mapping": "13F4", "symbol": "\u13FC" }, 5117: { "value": "13FD", "name": "CHEROKEE SMALL LETTER MV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13F5", "lowercase_mapping": "", "titlecase_mapping": "13F5", "symbol": "\u13FD" }, 7296: { "value": "1C80", "name": "CYRILLIC SMALL LETTER ROUNDED VE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0412", "lowercase_mapping": "", "titlecase_mapping": "0412", "symbol": "\u1C80" }, 7297: { "value": "1C81", "name": "CYRILLIC SMALL LETTER LONG-LEGGED DE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0414", "lowercase_mapping": "", "titlecase_mapping": "0414", "symbol": "\u1C81" }, 7298: { "value": "1C82", "name": "CYRILLIC SMALL LETTER NARROW O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "041E", "lowercase_mapping": "", "titlecase_mapping": "041E", "symbol": "\u1C82" }, 7299: { "value": "1C83", "name": "CYRILLIC SMALL LETTER WIDE ES", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0421", "lowercase_mapping": "", "titlecase_mapping": "0421", "symbol": "\u1C83" }, 7300: { "value": "1C84", "name": "CYRILLIC SMALL LETTER TALL TE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0422", "lowercase_mapping": "", "titlecase_mapping": "0422", "symbol": "\u1C84" }, 7301: { "value": "1C85", "name": "CYRILLIC SMALL LETTER THREE-LEGGED TE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0422", "lowercase_mapping": "", "titlecase_mapping": "0422", "symbol": "\u1C85" }, 7302: { "value": "1C86", "name": "CYRILLIC SMALL LETTER TALL HARD SIGN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "042A", "lowercase_mapping": "", "titlecase_mapping": "042A", "symbol": "\u1C86" }, 7303: { "value": "1C87", "name": "CYRILLIC SMALL LETTER TALL YAT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0462", "lowercase_mapping": "", "titlecase_mapping": "0462", "symbol": "\u1C87" }, 7304: { "value": "1C88", "name": "CYRILLIC SMALL LETTER UNBLENDED UK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A64A", "lowercase_mapping": "", "titlecase_mapping": "A64A", "symbol": "\u1C88" }, 7424: { "value": "1D00", "name": "LATIN LETTER SMALL CAPITAL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D00" }, 7425: { "value": "1D01", "name": "LATIN LETTER SMALL CAPITAL AE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D01" }, 7426: { "value": "1D02", "name": "LATIN SMALL LETTER TURNED AE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D02" }, 7427: { "value": "1D03", "name": "LATIN LETTER SMALL CAPITAL BARRED B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D03" }, 7428: { "value": "1D04", "name": "LATIN LETTER SMALL CAPITAL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D04" }, 7429: { "value": "1D05", "name": "LATIN LETTER SMALL CAPITAL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D05" }, 7430: { "value": "1D06", "name": "LATIN LETTER SMALL CAPITAL ETH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D06" }, 7431: { "value": "1D07", "name": "LATIN LETTER SMALL CAPITAL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D07" }, 7432: { "value": "1D08", "name": "LATIN SMALL LETTER TURNED OPEN E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D08" }, 7433: { "value": "1D09", "name": "LATIN SMALL LETTER TURNED I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D09" }, 7434: { "value": "1D0A", "name": "LATIN LETTER SMALL CAPITAL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0A" }, 7435: { "value": "1D0B", "name": "LATIN LETTER SMALL CAPITAL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0B" }, 7436: { "value": "1D0C", "name": "LATIN LETTER SMALL CAPITAL L WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0C" }, 7437: { "value": "1D0D", "name": "LATIN LETTER SMALL CAPITAL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0D" }, 7438: { "value": "1D0E", "name": "LATIN LETTER SMALL CAPITAL REVERSED N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0E" }, 7439: { "value": "1D0F", "name": "LATIN LETTER SMALL CAPITAL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D0F" }, 7440: { "value": "1D10", "name": "LATIN LETTER SMALL CAPITAL OPEN O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D10" }, 7441: { "value": "1D11", "name": "LATIN SMALL LETTER SIDEWAYS O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D11" }, 7442: { "value": "1D12", "name": "LATIN SMALL LETTER SIDEWAYS OPEN O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D12" }, 7443: { "value": "1D13", "name": "LATIN SMALL LETTER SIDEWAYS O WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D13" }, 7444: { "value": "1D14", "name": "LATIN SMALL LETTER TURNED OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D14" }, 7445: { "value": "1D15", "name": "LATIN LETTER SMALL CAPITAL OU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D15" }, 7446: { "value": "1D16", "name": "LATIN SMALL LETTER TOP HALF O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D16" }, 7447: { "value": "1D17", "name": "LATIN SMALL LETTER BOTTOM HALF O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D17" }, 7448: { "value": "1D18", "name": "LATIN LETTER SMALL CAPITAL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D18" }, 7449: { "value": "1D19", "name": "LATIN LETTER SMALL CAPITAL REVERSED R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D19" }, 7450: { "value": "1D1A", "name": "LATIN LETTER SMALL CAPITAL TURNED R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1A" }, 7451: { "value": "1D1B", "name": "LATIN LETTER SMALL CAPITAL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1B" }, 7452: { "value": "1D1C", "name": "LATIN LETTER SMALL CAPITAL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1C" }, 7453: { "value": "1D1D", "name": "LATIN SMALL LETTER SIDEWAYS U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1D" }, 7454: { "value": "1D1E", "name": "LATIN SMALL LETTER SIDEWAYS DIAERESIZED U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1E" }, 7455: { "value": "1D1F", "name": "LATIN SMALL LETTER SIDEWAYS TURNED M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D1F" }, 7456: { "value": "1D20", "name": "LATIN LETTER SMALL CAPITAL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D20" }, 7457: { "value": "1D21", "name": "LATIN LETTER SMALL CAPITAL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D21" }, 7458: { "value": "1D22", "name": "LATIN LETTER SMALL CAPITAL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D22" }, 7459: { "value": "1D23", "name": "LATIN LETTER SMALL CAPITAL EZH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D23" }, 7460: { "value": "1D24", "name": "LATIN LETTER VOICED LARYNGEAL SPIRANT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D24" }, 7461: { "value": "1D25", "name": "LATIN LETTER AIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D25" }, 7462: { "value": "1D26", "name": "GREEK LETTER SMALL CAPITAL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D26" }, 7463: { "value": "1D27", "name": "GREEK LETTER SMALL CAPITAL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D27" }, 7464: { "value": "1D28", "name": "GREEK LETTER SMALL CAPITAL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D28" }, 7465: { "value": "1D29", "name": "GREEK LETTER SMALL CAPITAL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D29" }, 7466: { "value": "1D2A", "name": "GREEK LETTER SMALL CAPITAL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D2A" }, 7467: { "value": "1D2B", "name": "CYRILLIC LETTER SMALL CAPITAL EL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D2B" }, 7531: { "value": "1D6B", "name": "LATIN SMALL LETTER UE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D6B" }, 7532: { "value": "1D6C", "name": "LATIN SMALL LETTER B WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D6C" }, 7533: { "value": "1D6D", "name": "LATIN SMALL LETTER D WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D6D" }, 7534: { "value": "1D6E", "name": "LATIN SMALL LETTER F WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D6E" }, 7535: { "value": "1D6F", "name": "LATIN SMALL LETTER M WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D6F" }, 7536: { "value": "1D70", "name": "LATIN SMALL LETTER N WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D70" }, 7537: { "value": "1D71", "name": "LATIN SMALL LETTER P WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D71" }, 7538: { "value": "1D72", "name": "LATIN SMALL LETTER R WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D72" }, 7539: { "value": "1D73", "name": "LATIN SMALL LETTER R WITH FISHHOOK AND MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D73" }, 7540: { "value": "1D74", "name": "LATIN SMALL LETTER S WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D74" }, 7541: { "value": "1D75", "name": "LATIN SMALL LETTER T WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D75" }, 7542: { "value": "1D76", "name": "LATIN SMALL LETTER Z WITH MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D76" }, 7543: { "value": "1D77", "name": "LATIN SMALL LETTER TURNED G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D77" }, 7545: { "value": "1D79", "name": "LATIN SMALL LETTER INSULAR G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A77D", "lowercase_mapping": "", "titlecase_mapping": "A77D", "symbol": "\u1D79" }, 7546: { "value": "1D7A", "name": "LATIN SMALL LETTER TH WITH STRIKETHROUGH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D7A" }, 7547: { "value": "1D7B", "name": "LATIN SMALL CAPITAL LETTER I WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D7B" }, 7548: { "value": "1D7C", "name": "LATIN SMALL LETTER IOTA WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D7C" }, 7549: { "value": "1D7D", "name": "LATIN SMALL LETTER P WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C63", "lowercase_mapping": "", "titlecase_mapping": "2C63", "symbol": "\u1D7D" }, 7550: { "value": "1D7E", "name": "LATIN SMALL CAPITAL LETTER U WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D7E" }, 7551: { "value": "1D7F", "name": "LATIN SMALL LETTER UPSILON WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D7F" }, 7552: { "value": "1D80", "name": "LATIN SMALL LETTER B WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D80" }, 7553: { "value": "1D81", "name": "LATIN SMALL LETTER D WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D81" }, 7554: { "value": "1D82", "name": "LATIN SMALL LETTER F WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D82" }, 7555: { "value": "1D83", "name": "LATIN SMALL LETTER G WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D83" }, 7556: { "value": "1D84", "name": "LATIN SMALL LETTER K WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D84" }, 7557: { "value": "1D85", "name": "LATIN SMALL LETTER L WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D85" }, 7558: { "value": "1D86", "name": "LATIN SMALL LETTER M WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D86" }, 7559: { "value": "1D87", "name": "LATIN SMALL LETTER N WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D87" }, 7560: { "value": "1D88", "name": "LATIN SMALL LETTER P WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D88" }, 7561: { "value": "1D89", "name": "LATIN SMALL LETTER R WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D89" }, 7562: { "value": "1D8A", "name": "LATIN SMALL LETTER S WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8A" }, 7563: { "value": "1D8B", "name": "LATIN SMALL LETTER ESH WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8B" }, 7564: { "value": "1D8C", "name": "LATIN SMALL LETTER V WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8C" }, 7565: { "value": "1D8D", "name": "LATIN SMALL LETTER X WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8D" }, 7566: { "value": "1D8E", "name": "LATIN SMALL LETTER Z WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8E" }, 7567: { "value": "1D8F", "name": "LATIN SMALL LETTER A WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D8F" }, 7568: { "value": "1D90", "name": "LATIN SMALL LETTER ALPHA WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D90" }, 7569: { "value": "1D91", "name": "LATIN SMALL LETTER D WITH HOOK AND TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D91" }, 7570: { "value": "1D92", "name": "LATIN SMALL LETTER E WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D92" }, 7571: { "value": "1D93", "name": "LATIN SMALL LETTER OPEN E WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D93" }, 7572: { "value": "1D94", "name": "LATIN SMALL LETTER REVERSED OPEN E WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D94" }, 7573: { "value": "1D95", "name": "LATIN SMALL LETTER SCHWA WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D95" }, 7574: { "value": "1D96", "name": "LATIN SMALL LETTER I WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D96" }, 7575: { "value": "1D97", "name": "LATIN SMALL LETTER OPEN O WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D97" }, 7576: { "value": "1D98", "name": "LATIN SMALL LETTER ESH WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D98" }, 7577: { "value": "1D99", "name": "LATIN SMALL LETTER U WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D99" }, 7578: { "value": "1D9A", "name": "LATIN SMALL LETTER EZH WITH RETROFLEX HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1D9A" }, 7681: { "value": "1E01", "name": "LATIN SMALL LETTER A WITH RING BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0325", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E00", "lowercase_mapping": "", "titlecase_mapping": "1E00", "symbol": "\u1E01" }, 7683: { "value": "1E03", "name": "LATIN SMALL LETTER B WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0062 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E02", "lowercase_mapping": "", "titlecase_mapping": "1E02", "symbol": "\u1E03" }, 7685: { "value": "1E05", "name": "LATIN SMALL LETTER B WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0062 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E04", "lowercase_mapping": "", "titlecase_mapping": "1E04", "symbol": "\u1E05" }, 7687: { "value": "1E07", "name": "LATIN SMALL LETTER B WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0062 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E06", "lowercase_mapping": "", "titlecase_mapping": "1E06", "symbol": "\u1E07" }, 7689: { "value": "1E09", "name": "LATIN SMALL LETTER C WITH CEDILLA AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E7 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E08", "lowercase_mapping": "", "titlecase_mapping": "1E08", "symbol": "\u1E09" }, 7691: { "value": "1E0B", "name": "LATIN SMALL LETTER D WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E0A", "lowercase_mapping": "", "titlecase_mapping": "1E0A", "symbol": "\u1E0B" }, 7693: { "value": "1E0D", "name": "LATIN SMALL LETTER D WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E0C", "lowercase_mapping": "", "titlecase_mapping": "1E0C", "symbol": "\u1E0D" }, 7695: { "value": "1E0F", "name": "LATIN SMALL LETTER D WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E0E", "lowercase_mapping": "", "titlecase_mapping": "1E0E", "symbol": "\u1E0F" }, 7697: { "value": "1E11", "name": "LATIN SMALL LETTER D WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E10", "lowercase_mapping": "", "titlecase_mapping": "1E10", "symbol": "\u1E11" }, 7699: { "value": "1E13", "name": "LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0064 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E12", "lowercase_mapping": "", "titlecase_mapping": "1E12", "symbol": "\u1E13" }, 7701: { "value": "1E15", "name": "LATIN SMALL LETTER E WITH MACRON AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0113 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E14", "lowercase_mapping": "", "titlecase_mapping": "1E14", "symbol": "\u1E15" }, 7703: { "value": "1E17", "name": "LATIN SMALL LETTER E WITH MACRON AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0113 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E16", "lowercase_mapping": "", "titlecase_mapping": "1E16", "symbol": "\u1E17" }, 7705: { "value": "1E19", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E18", "lowercase_mapping": "", "titlecase_mapping": "1E18", "symbol": "\u1E19" }, 7707: { "value": "1E1B", "name": "LATIN SMALL LETTER E WITH TILDE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0330", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E1A", "lowercase_mapping": "", "titlecase_mapping": "1E1A", "symbol": "\u1E1B" }, 7709: { "value": "1E1D", "name": "LATIN SMALL LETTER E WITH CEDILLA AND BREVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0229 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E1C", "lowercase_mapping": "", "titlecase_mapping": "1E1C", "symbol": "\u1E1D" }, 7711: { "value": "1E1F", "name": "LATIN SMALL LETTER F WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0066 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E1E", "lowercase_mapping": "", "titlecase_mapping": "1E1E", "symbol": "\u1E1F" }, 7713: { "value": "1E21", "name": "LATIN SMALL LETTER G WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0067 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E20", "lowercase_mapping": "", "titlecase_mapping": "1E20", "symbol": "\u1E21" }, 7715: { "value": "1E23", "name": "LATIN SMALL LETTER H WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E22", "lowercase_mapping": "", "titlecase_mapping": "1E22", "symbol": "\u1E23" }, 7717: { "value": "1E25", "name": "LATIN SMALL LETTER H WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E24", "lowercase_mapping": "", "titlecase_mapping": "1E24", "symbol": "\u1E25" }, 7719: { "value": "1E27", "name": "LATIN SMALL LETTER H WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E26", "lowercase_mapping": "", "titlecase_mapping": "1E26", "symbol": "\u1E27" }, 7721: { "value": "1E29", "name": "LATIN SMALL LETTER H WITH CEDILLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0327", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E28", "lowercase_mapping": "", "titlecase_mapping": "1E28", "symbol": "\u1E29" }, 7723: { "value": "1E2B", "name": "LATIN SMALL LETTER H WITH BREVE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 032E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E2A", "lowercase_mapping": "", "titlecase_mapping": "1E2A", "symbol": "\u1E2B" }, 7725: { "value": "1E2D", "name": "LATIN SMALL LETTER I WITH TILDE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0330", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E2C", "lowercase_mapping": "", "titlecase_mapping": "1E2C", "symbol": "\u1E2D" }, 7727: { "value": "1E2F", "name": "LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00EF 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E2E", "lowercase_mapping": "", "titlecase_mapping": "1E2E", "symbol": "\u1E2F" }, 7729: { "value": "1E31", "name": "LATIN SMALL LETTER K WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006B 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E30", "lowercase_mapping": "", "titlecase_mapping": "1E30", "symbol": "\u1E31" }, 7731: { "value": "1E33", "name": "LATIN SMALL LETTER K WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006B 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E32", "lowercase_mapping": "", "titlecase_mapping": "1E32", "symbol": "\u1E33" }, 7733: { "value": "1E35", "name": "LATIN SMALL LETTER K WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006B 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E34", "lowercase_mapping": "", "titlecase_mapping": "1E34", "symbol": "\u1E35" }, 7735: { "value": "1E37", "name": "LATIN SMALL LETTER L WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E36", "lowercase_mapping": "", "titlecase_mapping": "1E36", "symbol": "\u1E37" }, 7737: { "value": "1E39", "name": "LATIN SMALL LETTER L WITH DOT BELOW AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1E37 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E38", "lowercase_mapping": "", "titlecase_mapping": "1E38", "symbol": "\u1E39" }, 7739: { "value": "1E3B", "name": "LATIN SMALL LETTER L WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E3A", "lowercase_mapping": "", "titlecase_mapping": "1E3A", "symbol": "\u1E3B" }, 7741: { "value": "1E3D", "name": "LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006C 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E3C", "lowercase_mapping": "", "titlecase_mapping": "1E3C", "symbol": "\u1E3D" }, 7743: { "value": "1E3F", "name": "LATIN SMALL LETTER M WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006D 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E3E", "lowercase_mapping": "", "titlecase_mapping": "1E3E", "symbol": "\u1E3F" }, 7745: { "value": "1E41", "name": "LATIN SMALL LETTER M WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006D 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E40", "lowercase_mapping": "", "titlecase_mapping": "1E40", "symbol": "\u1E41" }, 7747: { "value": "1E43", "name": "LATIN SMALL LETTER M WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006D 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E42", "lowercase_mapping": "", "titlecase_mapping": "1E42", "symbol": "\u1E43" }, 7749: { "value": "1E45", "name": "LATIN SMALL LETTER N WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E44", "lowercase_mapping": "", "titlecase_mapping": "1E44", "symbol": "\u1E45" }, 7751: { "value": "1E47", "name": "LATIN SMALL LETTER N WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E46", "lowercase_mapping": "", "titlecase_mapping": "1E46", "symbol": "\u1E47" }, 7753: { "value": "1E49", "name": "LATIN SMALL LETTER N WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E48", "lowercase_mapping": "", "titlecase_mapping": "1E48", "symbol": "\u1E49" }, 7755: { "value": "1E4B", "name": "LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006E 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E4A", "lowercase_mapping": "", "titlecase_mapping": "1E4A", "symbol": "\u1E4B" }, 7757: { "value": "1E4D", "name": "LATIN SMALL LETTER O WITH TILDE AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F5 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E4C", "lowercase_mapping": "", "titlecase_mapping": "1E4C", "symbol": "\u1E4D" }, 7759: { "value": "1E4F", "name": "LATIN SMALL LETTER O WITH TILDE AND DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F5 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E4E", "lowercase_mapping": "", "titlecase_mapping": "1E4E", "symbol": "\u1E4F" }, 7761: { "value": "1E51", "name": "LATIN SMALL LETTER O WITH MACRON AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "014D 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E50", "lowercase_mapping": "", "titlecase_mapping": "1E50", "symbol": "\u1E51" }, 7763: { "value": "1E53", "name": "LATIN SMALL LETTER O WITH MACRON AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "014D 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E52", "lowercase_mapping": "", "titlecase_mapping": "1E52", "symbol": "\u1E53" }, 7765: { "value": "1E55", "name": "LATIN SMALL LETTER P WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0070 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E54", "lowercase_mapping": "", "titlecase_mapping": "1E54", "symbol": "\u1E55" }, 7767: { "value": "1E57", "name": "LATIN SMALL LETTER P WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0070 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E56", "lowercase_mapping": "", "titlecase_mapping": "1E56", "symbol": "\u1E57" }, 7769: { "value": "1E59", "name": "LATIN SMALL LETTER R WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E58", "lowercase_mapping": "", "titlecase_mapping": "1E58", "symbol": "\u1E59" }, 7771: { "value": "1E5B", "name": "LATIN SMALL LETTER R WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E5A", "lowercase_mapping": "", "titlecase_mapping": "1E5A", "symbol": "\u1E5B" }, 7773: { "value": "1E5D", "name": "LATIN SMALL LETTER R WITH DOT BELOW AND MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1E5B 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E5C", "lowercase_mapping": "", "titlecase_mapping": "1E5C", "symbol": "\u1E5D" }, 7775: { "value": "1E5F", "name": "LATIN SMALL LETTER R WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0072 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E5E", "lowercase_mapping": "", "titlecase_mapping": "1E5E", "symbol": "\u1E5F" }, 7777: { "value": "1E61", "name": "LATIN SMALL LETTER S WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E60", "lowercase_mapping": "", "titlecase_mapping": "1E60", "symbol": "\u1E61" }, 7779: { "value": "1E63", "name": "LATIN SMALL LETTER S WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0073 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E62", "lowercase_mapping": "", "titlecase_mapping": "1E62", "symbol": "\u1E63" }, 7781: { "value": "1E65", "name": "LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "015B 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E64", "lowercase_mapping": "", "titlecase_mapping": "1E64", "symbol": "\u1E65" }, 7783: { "value": "1E67", "name": "LATIN SMALL LETTER S WITH CARON AND DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0161 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E66", "lowercase_mapping": "", "titlecase_mapping": "1E66", "symbol": "\u1E67" }, 7785: { "value": "1E69", "name": "LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1E63 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E68", "lowercase_mapping": "", "titlecase_mapping": "1E68", "symbol": "\u1E69" }, 7787: { "value": "1E6B", "name": "LATIN SMALL LETTER T WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E6A", "lowercase_mapping": "", "titlecase_mapping": "1E6A", "symbol": "\u1E6B" }, 7789: { "value": "1E6D", "name": "LATIN SMALL LETTER T WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E6C", "lowercase_mapping": "", "titlecase_mapping": "1E6C", "symbol": "\u1E6D" }, 7791: { "value": "1E6F", "name": "LATIN SMALL LETTER T WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E6E", "lowercase_mapping": "", "titlecase_mapping": "1E6E", "symbol": "\u1E6F" }, 7793: { "value": "1E71", "name": "LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E70", "lowercase_mapping": "", "titlecase_mapping": "1E70", "symbol": "\u1E71" }, 7795: { "value": "1E73", "name": "LATIN SMALL LETTER U WITH DIAERESIS BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0324", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E72", "lowercase_mapping": "", "titlecase_mapping": "1E72", "symbol": "\u1E73" }, 7797: { "value": "1E75", "name": "LATIN SMALL LETTER U WITH TILDE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0330", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E74", "lowercase_mapping": "", "titlecase_mapping": "1E74", "symbol": "\u1E75" }, 7799: { "value": "1E77", "name": "LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 032D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E76", "lowercase_mapping": "", "titlecase_mapping": "1E76", "symbol": "\u1E77" }, 7801: { "value": "1E79", "name": "LATIN SMALL LETTER U WITH TILDE AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0169 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E78", "lowercase_mapping": "", "titlecase_mapping": "1E78", "symbol": "\u1E79" }, 7803: { "value": "1E7B", "name": "LATIN SMALL LETTER U WITH MACRON AND DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "016B 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E7A", "lowercase_mapping": "", "titlecase_mapping": "1E7A", "symbol": "\u1E7B" }, 7805: { "value": "1E7D", "name": "LATIN SMALL LETTER V WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0076 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E7C", "lowercase_mapping": "", "titlecase_mapping": "1E7C", "symbol": "\u1E7D" }, 7807: { "value": "1E7F", "name": "LATIN SMALL LETTER V WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0076 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E7E", "lowercase_mapping": "", "titlecase_mapping": "1E7E", "symbol": "\u1E7F" }, 7809: { "value": "1E81", "name": "LATIN SMALL LETTER W WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E80", "lowercase_mapping": "", "titlecase_mapping": "1E80", "symbol": "\u1E81" }, 7811: { "value": "1E83", "name": "LATIN SMALL LETTER W WITH ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E82", "lowercase_mapping": "", "titlecase_mapping": "1E82", "symbol": "\u1E83" }, 7813: { "value": "1E85", "name": "LATIN SMALL LETTER W WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E84", "lowercase_mapping": "", "titlecase_mapping": "1E84", "symbol": "\u1E85" }, 7815: { "value": "1E87", "name": "LATIN SMALL LETTER W WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E86", "lowercase_mapping": "", "titlecase_mapping": "1E86", "symbol": "\u1E87" }, 7817: { "value": "1E89", "name": "LATIN SMALL LETTER W WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E88", "lowercase_mapping": "", "titlecase_mapping": "1E88", "symbol": "\u1E89" }, 7819: { "value": "1E8B", "name": "LATIN SMALL LETTER X WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0078 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E8A", "lowercase_mapping": "", "titlecase_mapping": "1E8A", "symbol": "\u1E8B" }, 7821: { "value": "1E8D", "name": "LATIN SMALL LETTER X WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0078 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E8C", "lowercase_mapping": "", "titlecase_mapping": "1E8C", "symbol": "\u1E8D" }, 7823: { "value": "1E8F", "name": "LATIN SMALL LETTER Y WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E8E", "lowercase_mapping": "", "titlecase_mapping": "1E8E", "symbol": "\u1E8F" }, 7825: { "value": "1E91", "name": "LATIN SMALL LETTER Z WITH CIRCUMFLEX", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90", "lowercase_mapping": "", "titlecase_mapping": "1E90", "symbol": "\u1E91" }, 7827: { "value": "1E93", "name": "LATIN SMALL LETTER Z WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E92", "lowercase_mapping": "", "titlecase_mapping": "1E92", "symbol": "\u1E93" }, 7829: { "value": "1E95", "name": "LATIN SMALL LETTER Z WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "007A 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E94", "lowercase_mapping": "", "titlecase_mapping": "1E94", "symbol": "\u1E95" }, 7830: { "value": "1E96", "name": "LATIN SMALL LETTER H WITH LINE BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0068 0331", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E96" }, 7831: { "value": "1E97", "name": "LATIN SMALL LETTER T WITH DIAERESIS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0074 0308", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E97" }, 7832: { "value": "1E98", "name": "LATIN SMALL LETTER W WITH RING ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0077 030A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E98" }, 7833: { "value": "1E99", "name": "LATIN SMALL LETTER Y WITH RING ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 030A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E99" }, 7834: { "value": "1E9A", "name": "LATIN SMALL LETTER A WITH RIGHT HALF RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061 02BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E9A" }, 7835: { "value": "1E9B", "name": "LATIN SMALL LETTER LONG S WITH DOT ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "017F 0307", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E60", "lowercase_mapping": "", "titlecase_mapping": "1E60", "symbol": "\u1E9B" }, 7836: { "value": "1E9C", "name": "LATIN SMALL LETTER LONG S WITH DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E9C" }, 7837: { "value": "1E9D", "name": "LATIN SMALL LETTER LONG S WITH HIGH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E9D" }, 7839: { "value": "1E9F", "name": "LATIN SMALL LETTER DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1E9F" }, 7841: { "value": "1EA1", "name": "LATIN SMALL LETTER A WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EA0", "lowercase_mapping": "", "titlecase_mapping": "1EA0", "symbol": "\u1EA1" }, 7843: { "value": "1EA3", "name": "LATIN SMALL LETTER A WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0061 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EA2", "lowercase_mapping": "", "titlecase_mapping": "1EA2", "symbol": "\u1EA3" }, 7845: { "value": "1EA5", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E2 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EA4", "lowercase_mapping": "", "titlecase_mapping": "1EA4", "symbol": "\u1EA5" }, 7847: { "value": "1EA7", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E2 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EA6", "lowercase_mapping": "", "titlecase_mapping": "1EA6", "symbol": "\u1EA7" }, 7849: { "value": "1EA9", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E2 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EA8", "lowercase_mapping": "", "titlecase_mapping": "1EA8", "symbol": "\u1EA9" }, 7851: { "value": "1EAB", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00E2 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EAA", "lowercase_mapping": "", "titlecase_mapping": "1EAA", "symbol": "\u1EAB" }, 7853: { "value": "1EAD", "name": "LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1EA1 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EAC", "lowercase_mapping": "", "titlecase_mapping": "1EAC", "symbol": "\u1EAD" }, 7855: { "value": "1EAF", "name": "LATIN SMALL LETTER A WITH BREVE AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0103 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EAE", "lowercase_mapping": "", "titlecase_mapping": "1EAE", "symbol": "\u1EAF" }, 7857: { "value": "1EB1", "name": "LATIN SMALL LETTER A WITH BREVE AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0103 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EB0", "lowercase_mapping": "", "titlecase_mapping": "1EB0", "symbol": "\u1EB1" }, 7859: { "value": "1EB3", "name": "LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0103 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EB2", "lowercase_mapping": "", "titlecase_mapping": "1EB2", "symbol": "\u1EB3" }, 7861: { "value": "1EB5", "name": "LATIN SMALL LETTER A WITH BREVE AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0103 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EB4", "lowercase_mapping": "", "titlecase_mapping": "1EB4", "symbol": "\u1EB5" }, 7863: { "value": "1EB7", "name": "LATIN SMALL LETTER A WITH BREVE AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1EA1 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EB6", "lowercase_mapping": "", "titlecase_mapping": "1EB6", "symbol": "\u1EB7" }, 7865: { "value": "1EB9", "name": "LATIN SMALL LETTER E WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EB8", "lowercase_mapping": "", "titlecase_mapping": "1EB8", "symbol": "\u1EB9" }, 7867: { "value": "1EBB", "name": "LATIN SMALL LETTER E WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EBA", "lowercase_mapping": "", "titlecase_mapping": "1EBA", "symbol": "\u1EBB" }, 7869: { "value": "1EBD", "name": "LATIN SMALL LETTER E WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0065 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EBC", "lowercase_mapping": "", "titlecase_mapping": "1EBC", "symbol": "\u1EBD" }, 7871: { "value": "1EBF", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00EA 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EBE", "lowercase_mapping": "", "titlecase_mapping": "1EBE", "symbol": "\u1EBF" }, 7873: { "value": "1EC1", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00EA 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EC0", "lowercase_mapping": "", "titlecase_mapping": "1EC0", "symbol": "\u1EC1" }, 7875: { "value": "1EC3", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00EA 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EC2", "lowercase_mapping": "", "titlecase_mapping": "1EC2", "symbol": "\u1EC3" }, 7877: { "value": "1EC5", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00EA 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EC4", "lowercase_mapping": "", "titlecase_mapping": "1EC4", "symbol": "\u1EC5" }, 7879: { "value": "1EC7", "name": "LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1EB9 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EC6", "lowercase_mapping": "", "titlecase_mapping": "1EC6", "symbol": "\u1EC7" }, 7881: { "value": "1EC9", "name": "LATIN SMALL LETTER I WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EC8", "lowercase_mapping": "", "titlecase_mapping": "1EC8", "symbol": "\u1EC9" }, 7883: { "value": "1ECB", "name": "LATIN SMALL LETTER I WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0069 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ECA", "lowercase_mapping": "", "titlecase_mapping": "1ECA", "symbol": "\u1ECB" }, 7885: { "value": "1ECD", "name": "LATIN SMALL LETTER O WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ECC", "lowercase_mapping": "", "titlecase_mapping": "1ECC", "symbol": "\u1ECD" }, 7887: { "value": "1ECF", "name": "LATIN SMALL LETTER O WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "006F 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ECE", "lowercase_mapping": "", "titlecase_mapping": "1ECE", "symbol": "\u1ECF" }, 7889: { "value": "1ED1", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F4 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ED0", "lowercase_mapping": "", "titlecase_mapping": "1ED0", "symbol": "\u1ED1" }, 7891: { "value": "1ED3", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F4 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ED2", "lowercase_mapping": "", "titlecase_mapping": "1ED2", "symbol": "\u1ED3" }, 7893: { "value": "1ED5", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F4 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ED4", "lowercase_mapping": "", "titlecase_mapping": "1ED4", "symbol": "\u1ED5" }, 7895: { "value": "1ED7", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "00F4 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ED6", "lowercase_mapping": "", "titlecase_mapping": "1ED6", "symbol": "\u1ED7" }, 7897: { "value": "1ED9", "name": "LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1ECD 0302", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1ED8", "lowercase_mapping": "", "titlecase_mapping": "1ED8", "symbol": "\u1ED9" }, 7899: { "value": "1EDB", "name": "LATIN SMALL LETTER O WITH HORN AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01A1 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EDA", "lowercase_mapping": "", "titlecase_mapping": "1EDA", "symbol": "\u1EDB" }, 7901: { "value": "1EDD", "name": "LATIN SMALL LETTER O WITH HORN AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01A1 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EDC", "lowercase_mapping": "", "titlecase_mapping": "1EDC", "symbol": "\u1EDD" }, 7903: { "value": "1EDF", "name": "LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01A1 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EDE", "lowercase_mapping": "", "titlecase_mapping": "1EDE", "symbol": "\u1EDF" }, 7905: { "value": "1EE1", "name": "LATIN SMALL LETTER O WITH HORN AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01A1 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EE0", "lowercase_mapping": "", "titlecase_mapping": "1EE0", "symbol": "\u1EE1" }, 7907: { "value": "1EE3", "name": "LATIN SMALL LETTER O WITH HORN AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01A1 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EE2", "lowercase_mapping": "", "titlecase_mapping": "1EE2", "symbol": "\u1EE3" }, 7909: { "value": "1EE5", "name": "LATIN SMALL LETTER U WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EE4", "lowercase_mapping": "", "titlecase_mapping": "1EE4", "symbol": "\u1EE5" }, 7911: { "value": "1EE7", "name": "LATIN SMALL LETTER U WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0075 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EE6", "lowercase_mapping": "", "titlecase_mapping": "1EE6", "symbol": "\u1EE7" }, 7913: { "value": "1EE9", "name": "LATIN SMALL LETTER U WITH HORN AND ACUTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01B0 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EE8", "lowercase_mapping": "", "titlecase_mapping": "1EE8", "symbol": "\u1EE9" }, 7915: { "value": "1EEB", "name": "LATIN SMALL LETTER U WITH HORN AND GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01B0 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EEA", "lowercase_mapping": "", "titlecase_mapping": "1EEA", "symbol": "\u1EEB" }, 7917: { "value": "1EED", "name": "LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01B0 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EEC", "lowercase_mapping": "", "titlecase_mapping": "1EEC", "symbol": "\u1EED" }, 7919: { "value": "1EEF", "name": "LATIN SMALL LETTER U WITH HORN AND TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01B0 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EEE", "lowercase_mapping": "", "titlecase_mapping": "1EEE", "symbol": "\u1EEF" }, 7921: { "value": "1EF1", "name": "LATIN SMALL LETTER U WITH HORN AND DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "01B0 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EF0", "lowercase_mapping": "", "titlecase_mapping": "1EF0", "symbol": "\u1EF1" }, 7923: { "value": "1EF3", "name": "LATIN SMALL LETTER Y WITH GRAVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EF2", "lowercase_mapping": "", "titlecase_mapping": "1EF2", "symbol": "\u1EF3" }, 7925: { "value": "1EF5", "name": "LATIN SMALL LETTER Y WITH DOT BELOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0323", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EF4", "lowercase_mapping": "", "titlecase_mapping": "1EF4", "symbol": "\u1EF5" }, 7927: { "value": "1EF7", "name": "LATIN SMALL LETTER Y WITH HOOK ABOVE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0309", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EF6", "lowercase_mapping": "", "titlecase_mapping": "1EF6", "symbol": "\u1EF7" }, 7929: { "value": "1EF9", "name": "LATIN SMALL LETTER Y WITH TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0079 0303", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EF8", "lowercase_mapping": "", "titlecase_mapping": "1EF8", "symbol": "\u1EF9" }, 7931: { "value": "1EFB", "name": "LATIN SMALL LETTER MIDDLE-WELSH LL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EFA", "lowercase_mapping": "", "titlecase_mapping": "1EFA", "symbol": "\u1EFB" }, 7933: { "value": "1EFD", "name": "LATIN SMALL LETTER MIDDLE-WELSH V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EFC", "lowercase_mapping": "", "titlecase_mapping": "1EFC", "symbol": "\u1EFD" }, 7935: { "value": "1EFF", "name": "LATIN SMALL LETTER Y WITH LOOP", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1EFE", "lowercase_mapping": "", "titlecase_mapping": "1EFE", "symbol": "\u1EFF" }, 7936: { "value": "1F00", "name": "GREEK SMALL LETTER ALPHA WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F08", "lowercase_mapping": "", "titlecase_mapping": "1F08", "symbol": "\u1F00" }, 7937: { "value": "1F01", "name": "GREEK SMALL LETTER ALPHA WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F09", "lowercase_mapping": "", "titlecase_mapping": "1F09", "symbol": "\u1F01" }, 7938: { "value": "1F02", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F00 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0A", "lowercase_mapping": "", "titlecase_mapping": "1F0A", "symbol": "\u1F02" }, 7939: { "value": "1F03", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F01 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0B", "lowercase_mapping": "", "titlecase_mapping": "1F0B", "symbol": "\u1F03" }, 7940: { "value": "1F04", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F00 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0C", "lowercase_mapping": "", "titlecase_mapping": "1F0C", "symbol": "\u1F04" }, 7941: { "value": "1F05", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F01 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0D", "lowercase_mapping": "", "titlecase_mapping": "1F0D", "symbol": "\u1F05" }, 7942: { "value": "1F06", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F00 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0E", "lowercase_mapping": "", "titlecase_mapping": "1F0E", "symbol": "\u1F06" }, 7943: { "value": "1F07", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F01 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F0F", "lowercase_mapping": "", "titlecase_mapping": "1F0F", "symbol": "\u1F07" }, 7952: { "value": "1F10", "name": "GREEK SMALL LETTER EPSILON WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B5 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F18", "lowercase_mapping": "", "titlecase_mapping": "1F18", "symbol": "\u1F10" }, 7953: { "value": "1F11", "name": "GREEK SMALL LETTER EPSILON WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B5 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F19", "lowercase_mapping": "", "titlecase_mapping": "1F19", "symbol": "\u1F11" }, 7954: { "value": "1F12", "name": "GREEK SMALL LETTER EPSILON WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F10 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F1A", "lowercase_mapping": "", "titlecase_mapping": "1F1A", "symbol": "\u1F12" }, 7955: { "value": "1F13", "name": "GREEK SMALL LETTER EPSILON WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F11 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F1B", "lowercase_mapping": "", "titlecase_mapping": "1F1B", "symbol": "\u1F13" }, 7956: { "value": "1F14", "name": "GREEK SMALL LETTER EPSILON WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F10 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F1C", "lowercase_mapping": "", "titlecase_mapping": "1F1C", "symbol": "\u1F14" }, 7957: { "value": "1F15", "name": "GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F11 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F1D", "lowercase_mapping": "", "titlecase_mapping": "1F1D", "symbol": "\u1F15" }, 7968: { "value": "1F20", "name": "GREEK SMALL LETTER ETA WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F28", "lowercase_mapping": "", "titlecase_mapping": "1F28", "symbol": "\u1F20" }, 7969: { "value": "1F21", "name": "GREEK SMALL LETTER ETA WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F29", "lowercase_mapping": "", "titlecase_mapping": "1F29", "symbol": "\u1F21" }, 7970: { "value": "1F22", "name": "GREEK SMALL LETTER ETA WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F20 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2A", "lowercase_mapping": "", "titlecase_mapping": "1F2A", "symbol": "\u1F22" }, 7971: { "value": "1F23", "name": "GREEK SMALL LETTER ETA WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F21 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2B", "lowercase_mapping": "", "titlecase_mapping": "1F2B", "symbol": "\u1F23" }, 7972: { "value": "1F24", "name": "GREEK SMALL LETTER ETA WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F20 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2C", "lowercase_mapping": "", "titlecase_mapping": "1F2C", "symbol": "\u1F24" }, 7973: { "value": "1F25", "name": "GREEK SMALL LETTER ETA WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F21 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2D", "lowercase_mapping": "", "titlecase_mapping": "1F2D", "symbol": "\u1F25" }, 7974: { "value": "1F26", "name": "GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F20 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2E", "lowercase_mapping": "", "titlecase_mapping": "1F2E", "symbol": "\u1F26" }, 7975: { "value": "1F27", "name": "GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F21 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F2F", "lowercase_mapping": "", "titlecase_mapping": "1F2F", "symbol": "\u1F27" }, 7984: { "value": "1F30", "name": "GREEK SMALL LETTER IOTA WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F38", "lowercase_mapping": "", "titlecase_mapping": "1F38", "symbol": "\u1F30" }, 7985: { "value": "1F31", "name": "GREEK SMALL LETTER IOTA WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F39", "lowercase_mapping": "", "titlecase_mapping": "1F39", "symbol": "\u1F31" }, 7986: { "value": "1F32", "name": "GREEK SMALL LETTER IOTA WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F30 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3A", "lowercase_mapping": "", "titlecase_mapping": "1F3A", "symbol": "\u1F32" }, 7987: { "value": "1F33", "name": "GREEK SMALL LETTER IOTA WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F31 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3B", "lowercase_mapping": "", "titlecase_mapping": "1F3B", "symbol": "\u1F33" }, 7988: { "value": "1F34", "name": "GREEK SMALL LETTER IOTA WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F30 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3C", "lowercase_mapping": "", "titlecase_mapping": "1F3C", "symbol": "\u1F34" }, 7989: { "value": "1F35", "name": "GREEK SMALL LETTER IOTA WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F31 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3D", "lowercase_mapping": "", "titlecase_mapping": "1F3D", "symbol": "\u1F35" }, 7990: { "value": "1F36", "name": "GREEK SMALL LETTER IOTA WITH PSILI AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F30 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3E", "lowercase_mapping": "", "titlecase_mapping": "1F3E", "symbol": "\u1F36" }, 7991: { "value": "1F37", "name": "GREEK SMALL LETTER IOTA WITH DASIA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F31 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F3F", "lowercase_mapping": "", "titlecase_mapping": "1F3F", "symbol": "\u1F37" }, 8000: { "value": "1F40", "name": "GREEK SMALL LETTER OMICRON WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03BF 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F48", "lowercase_mapping": "", "titlecase_mapping": "1F48", "symbol": "\u1F40" }, 8001: { "value": "1F41", "name": "GREEK SMALL LETTER OMICRON WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03BF 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F49", "lowercase_mapping": "", "titlecase_mapping": "1F49", "symbol": "\u1F41" }, 8002: { "value": "1F42", "name": "GREEK SMALL LETTER OMICRON WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F40 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F4A", "lowercase_mapping": "", "titlecase_mapping": "1F4A", "symbol": "\u1F42" }, 8003: { "value": "1F43", "name": "GREEK SMALL LETTER OMICRON WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F41 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F4B", "lowercase_mapping": "", "titlecase_mapping": "1F4B", "symbol": "\u1F43" }, 8004: { "value": "1F44", "name": "GREEK SMALL LETTER OMICRON WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F40 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F4C", "lowercase_mapping": "", "titlecase_mapping": "1F4C", "symbol": "\u1F44" }, 8005: { "value": "1F45", "name": "GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F41 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F4D", "lowercase_mapping": "", "titlecase_mapping": "1F4D", "symbol": "\u1F45" }, 8016: { "value": "1F50", "name": "GREEK SMALL LETTER UPSILON WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1F50" }, 8017: { "value": "1F51", "name": "GREEK SMALL LETTER UPSILON WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F59", "lowercase_mapping": "", "titlecase_mapping": "1F59", "symbol": "\u1F51" }, 8018: { "value": "1F52", "name": "GREEK SMALL LETTER UPSILON WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F50 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1F52" }, 8019: { "value": "1F53", "name": "GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F51 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F5B", "lowercase_mapping": "", "titlecase_mapping": "1F5B", "symbol": "\u1F53" }, 8020: { "value": "1F54", "name": "GREEK SMALL LETTER UPSILON WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F50 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1F54" }, 8021: { "value": "1F55", "name": "GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F51 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F5D", "lowercase_mapping": "", "titlecase_mapping": "1F5D", "symbol": "\u1F55" }, 8022: { "value": "1F56", "name": "GREEK SMALL LETTER UPSILON WITH PSILI AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F50 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1F56" }, 8023: { "value": "1F57", "name": "GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F51 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F5F", "lowercase_mapping": "", "titlecase_mapping": "1F5F", "symbol": "\u1F57" }, 8032: { "value": "1F60", "name": "GREEK SMALL LETTER OMEGA WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F68", "lowercase_mapping": "", "titlecase_mapping": "1F68", "symbol": "\u1F60" }, 8033: { "value": "1F61", "name": "GREEK SMALL LETTER OMEGA WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F69", "lowercase_mapping": "", "titlecase_mapping": "1F69", "symbol": "\u1F61" }, 8034: { "value": "1F62", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F60 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6A", "lowercase_mapping": "", "titlecase_mapping": "1F6A", "symbol": "\u1F62" }, 8035: { "value": "1F63", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F61 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6B", "lowercase_mapping": "", "titlecase_mapping": "1F6B", "symbol": "\u1F63" }, 8036: { "value": "1F64", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F60 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6C", "lowercase_mapping": "", "titlecase_mapping": "1F6C", "symbol": "\u1F64" }, 8037: { "value": "1F65", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F61 0301", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6D", "lowercase_mapping": "", "titlecase_mapping": "1F6D", "symbol": "\u1F65" }, 8038: { "value": "1F66", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F60 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6E", "lowercase_mapping": "", "titlecase_mapping": "1F6E", "symbol": "\u1F66" }, 8039: { "value": "1F67", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F61 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F6F", "lowercase_mapping": "", "titlecase_mapping": "1F6F", "symbol": "\u1F67" }, 8048: { "value": "1F70", "name": "GREEK SMALL LETTER ALPHA WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FBA", "lowercase_mapping": "", "titlecase_mapping": "1FBA", "symbol": "\u1F70" }, 8049: { "value": "1F71", "name": "GREEK SMALL LETTER ALPHA WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FBB", "lowercase_mapping": "", "titlecase_mapping": "1FBB", "symbol": "\u1F71" }, 8050: { "value": "1F72", "name": "GREEK SMALL LETTER EPSILON WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B5 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FC8", "lowercase_mapping": "", "titlecase_mapping": "1FC8", "symbol": "\u1F72" }, 8051: { "value": "1F73", "name": "GREEK SMALL LETTER EPSILON WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FC9", "lowercase_mapping": "", "titlecase_mapping": "1FC9", "symbol": "\u1F73" }, 8052: { "value": "1F74", "name": "GREEK SMALL LETTER ETA WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FCA", "lowercase_mapping": "", "titlecase_mapping": "1FCA", "symbol": "\u1F74" }, 8053: { "value": "1F75", "name": "GREEK SMALL LETTER ETA WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FCB", "lowercase_mapping": "", "titlecase_mapping": "1FCB", "symbol": "\u1F75" }, 8054: { "value": "1F76", "name": "GREEK SMALL LETTER IOTA WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FDA", "lowercase_mapping": "", "titlecase_mapping": "1FDA", "symbol": "\u1F76" }, 8055: { "value": "1F77", "name": "GREEK SMALL LETTER IOTA WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FDB", "lowercase_mapping": "", "titlecase_mapping": "1FDB", "symbol": "\u1F77" }, 8056: { "value": "1F78", "name": "GREEK SMALL LETTER OMICRON WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03BF 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FF8", "lowercase_mapping": "", "titlecase_mapping": "1FF8", "symbol": "\u1F78" }, 8057: { "value": "1F79", "name": "GREEK SMALL LETTER OMICRON WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FF9", "lowercase_mapping": "", "titlecase_mapping": "1FF9", "symbol": "\u1F79" }, 8058: { "value": "1F7A", "name": "GREEK SMALL LETTER UPSILON WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FEA", "lowercase_mapping": "", "titlecase_mapping": "1FEA", "symbol": "\u1F7A" }, 8059: { "value": "1F7B", "name": "GREEK SMALL LETTER UPSILON WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FEB", "lowercase_mapping": "", "titlecase_mapping": "1FEB", "symbol": "\u1F7B" }, 8060: { "value": "1F7C", "name": "GREEK SMALL LETTER OMEGA WITH VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FFA", "lowercase_mapping": "", "titlecase_mapping": "1FFA", "symbol": "\u1F7C" }, 8061: { "value": "1F7D", "name": "GREEK SMALL LETTER OMEGA WITH OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FFB", "lowercase_mapping": "", "titlecase_mapping": "1FFB", "symbol": "\u1F7D" }, 8064: { "value": "1F80", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F00 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F88", "lowercase_mapping": "", "titlecase_mapping": "1F88", "symbol": "\u1F80" }, 8065: { "value": "1F81", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F01 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F89", "lowercase_mapping": "", "titlecase_mapping": "1F89", "symbol": "\u1F81" }, 8066: { "value": "1F82", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F02 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8A", "lowercase_mapping": "", "titlecase_mapping": "1F8A", "symbol": "\u1F82" }, 8067: { "value": "1F83", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F03 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8B", "lowercase_mapping": "", "titlecase_mapping": "1F8B", "symbol": "\u1F83" }, 8068: { "value": "1F84", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F04 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8C", "lowercase_mapping": "", "titlecase_mapping": "1F8C", "symbol": "\u1F84" }, 8069: { "value": "1F85", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F05 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8D", "lowercase_mapping": "", "titlecase_mapping": "1F8D", "symbol": "\u1F85" }, 8070: { "value": "1F86", "name": "GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F06 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8E", "lowercase_mapping": "", "titlecase_mapping": "1F8E", "symbol": "\u1F86" }, 8071: { "value": "1F87", "name": "GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F07 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F8F", "lowercase_mapping": "", "titlecase_mapping": "1F8F", "symbol": "\u1F87" }, 8080: { "value": "1F90", "name": "GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F20 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F98", "lowercase_mapping": "", "titlecase_mapping": "1F98", "symbol": "\u1F90" }, 8081: { "value": "1F91", "name": "GREEK SMALL LETTER ETA WITH DASIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F21 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F99", "lowercase_mapping": "", "titlecase_mapping": "1F99", "symbol": "\u1F91" }, 8082: { "value": "1F92", "name": "GREEK SMALL LETTER ETA WITH PSILI AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F22 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9A", "lowercase_mapping": "", "titlecase_mapping": "1F9A", "symbol": "\u1F92" }, 8083: { "value": "1F93", "name": "GREEK SMALL LETTER ETA WITH DASIA AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F23 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9B", "lowercase_mapping": "", "titlecase_mapping": "1F9B", "symbol": "\u1F93" }, 8084: { "value": "1F94", "name": "GREEK SMALL LETTER ETA WITH PSILI AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F24 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9C", "lowercase_mapping": "", "titlecase_mapping": "1F9C", "symbol": "\u1F94" }, 8085: { "value": "1F95", "name": "GREEK SMALL LETTER ETA WITH DASIA AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F25 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9D", "lowercase_mapping": "", "titlecase_mapping": "1F9D", "symbol": "\u1F95" }, 8086: { "value": "1F96", "name": "GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F26 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9E", "lowercase_mapping": "", "titlecase_mapping": "1F9E", "symbol": "\u1F96" }, 8087: { "value": "1F97", "name": "GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F27 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1F9F", "lowercase_mapping": "", "titlecase_mapping": "1F9F", "symbol": "\u1F97" }, 8096: { "value": "1FA0", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F60 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FA8", "lowercase_mapping": "", "titlecase_mapping": "1FA8", "symbol": "\u1FA0" }, 8097: { "value": "1FA1", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F61 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FA9", "lowercase_mapping": "", "titlecase_mapping": "1FA9", "symbol": "\u1FA1" }, 8098: { "value": "1FA2", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F62 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAA", "lowercase_mapping": "", "titlecase_mapping": "1FAA", "symbol": "\u1FA2" }, 8099: { "value": "1FA3", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F63 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAB", "lowercase_mapping": "", "titlecase_mapping": "1FAB", "symbol": "\u1FA3" }, 8100: { "value": "1FA4", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F64 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAC", "lowercase_mapping": "", "titlecase_mapping": "1FAC", "symbol": "\u1FA4" }, 8101: { "value": "1FA5", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F65 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAD", "lowercase_mapping": "", "titlecase_mapping": "1FAD", "symbol": "\u1FA5" }, 8102: { "value": "1FA6", "name": "GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F66 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAE", "lowercase_mapping": "", "titlecase_mapping": "1FAE", "symbol": "\u1FA6" }, 8103: { "value": "1FA7", "name": "GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F67 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FAF", "lowercase_mapping": "", "titlecase_mapping": "1FAF", "symbol": "\u1FA7" }, 8112: { "value": "1FB0", "name": "GREEK SMALL LETTER ALPHA WITH VRACHY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FB8", "lowercase_mapping": "", "titlecase_mapping": "1FB8", "symbol": "\u1FB0" }, 8113: { "value": "1FB1", "name": "GREEK SMALL LETTER ALPHA WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FB9", "lowercase_mapping": "", "titlecase_mapping": "1FB9", "symbol": "\u1FB1" }, 8114: { "value": "1FB2", "name": "GREEK SMALL LETTER ALPHA WITH VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F70 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FB2" }, 8115: { "value": "1FB3", "name": "GREEK SMALL LETTER ALPHA WITH YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FBC", "lowercase_mapping": "", "titlecase_mapping": "1FBC", "symbol": "\u1FB3" }, 8116: { "value": "1FB4", "name": "GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AC 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FB4" }, 8118: { "value": "1FB6", "name": "GREEK SMALL LETTER ALPHA WITH PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B1 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FB6" }, 8119: { "value": "1FB7", "name": "GREEK SMALL LETTER ALPHA WITH PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1FB6 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FB7" }, 8126: { "value": "1FBE", "name": "GREEK PROSGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "0399", "lowercase_mapping": "", "titlecase_mapping": "0399", "symbol": "\u1FBE" }, 8130: { "value": "1FC2", "name": "GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F74 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FC2" }, 8131: { "value": "1FC3", "name": "GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FCC", "lowercase_mapping": "", "titlecase_mapping": "1FCC", "symbol": "\u1FC3" }, 8132: { "value": "1FC4", "name": "GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03AE 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FC4" }, 8134: { "value": "1FC6", "name": "GREEK SMALL LETTER ETA WITH PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B7 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FC6" }, 8135: { "value": "1FC7", "name": "GREEK SMALL LETTER ETA WITH PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1FC6 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FC7" }, 8144: { "value": "1FD0", "name": "GREEK SMALL LETTER IOTA WITH VRACHY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FD8", "lowercase_mapping": "", "titlecase_mapping": "1FD8", "symbol": "\u1FD0" }, 8145: { "value": "1FD1", "name": "GREEK SMALL LETTER IOTA WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FD9", "lowercase_mapping": "", "titlecase_mapping": "1FD9", "symbol": "\u1FD1" }, 8146: { "value": "1FD2", "name": "GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CA 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FD2" }, 8147: { "value": "1FD3", "name": "GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "0390", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FD3" }, 8150: { "value": "1FD6", "name": "GREEK SMALL LETTER IOTA WITH PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B9 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FD6" }, 8151: { "value": "1FD7", "name": "GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CA 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FD7" }, 8160: { "value": "1FE0", "name": "GREEK SMALL LETTER UPSILON WITH VRACHY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0306", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FE8", "lowercase_mapping": "", "titlecase_mapping": "1FE8", "symbol": "\u1FE0" }, 8161: { "value": "1FE1", "name": "GREEK SMALL LETTER UPSILON WITH MACRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0304", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FE9", "lowercase_mapping": "", "titlecase_mapping": "1FE9", "symbol": "\u1FE1" }, 8162: { "value": "1FE2", "name": "GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND VARIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CB 0300", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FE2" }, 8163: { "value": "1FE3", "name": "GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03B0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FE3" }, 8164: { "value": "1FE4", "name": "GREEK SMALL LETTER RHO WITH PSILI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C1 0313", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FE4" }, 8165: { "value": "1FE5", "name": "GREEK SMALL LETTER RHO WITH DASIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C1 0314", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FEC", "lowercase_mapping": "", "titlecase_mapping": "1FEC", "symbol": "\u1FE5" }, 8166: { "value": "1FE6", "name": "GREEK SMALL LETTER UPSILON WITH PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C5 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FE6" }, 8167: { "value": "1FE7", "name": "GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CB 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FE7" }, 8178: { "value": "1FF2", "name": "GREEK SMALL LETTER OMEGA WITH VARIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1F7C 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FF2" }, 8179: { "value": "1FF3", "name": "GREEK SMALL LETTER OMEGA WITH YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1FFC", "lowercase_mapping": "", "titlecase_mapping": "1FFC", "symbol": "\u1FF3" }, 8180: { "value": "1FF4", "name": "GREEK SMALL LETTER OMEGA WITH OXIA AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03CE 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FF4" }, 8182: { "value": "1FF6", "name": "GREEK SMALL LETTER OMEGA WITH PERISPOMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "03C9 0342", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FF6" }, 8183: { "value": "1FF7", "name": "GREEK SMALL LETTER OMEGA WITH PERISPOMENI AND YPOGEGRAMMENI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "1FF6 0345", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u1FF7" }, 8458: { "value": "210A", "name": "SCRIPT SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u210A" }, 8462: { "value": "210E", "name": "PLANCK CONSTANT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u210E" }, 8463: { "value": "210F", "name": "PLANCK CONSTANT OVER TWO PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0127", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "PLANCK CONSTANT OVER 2 PI", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u210F" }, 8467: { "value": "2113", "name": "SCRIPT SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2113" }, 8495: { "value": "212F", "name": "SCRIPT SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u212F" }, 8500: { "value": "2134", "name": "SCRIPT SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2134" }, 8505: { "value": "2139", "name": "INFORMATION SOURCE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2139" }, 8508: { "value": "213C", "name": "DOUBLE-STRUCK SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u213C" }, 8509: { "value": "213D", "name": "DOUBLE-STRUCK SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u213D" }, 8518: { "value": "2146", "name": "DOUBLE-STRUCK ITALIC SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2146" }, 8519: { "value": "2147", "name": "DOUBLE-STRUCK ITALIC SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2147" }, 8520: { "value": "2148", "name": "DOUBLE-STRUCK ITALIC SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2148" }, 8521: { "value": "2149", "name": "DOUBLE-STRUCK ITALIC SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2149" }, 8526: { "value": "214E", "name": "TURNED SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2132", "lowercase_mapping": "", "titlecase_mapping": "2132", "symbol": "\u214E" }, 8580: { "value": "2184", "name": "LATIN SMALL LETTER REVERSED C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2183", "lowercase_mapping": "", "titlecase_mapping": "2183", "symbol": "\u2184" }, 11312: { "value": "2C30", "name": "GLAGOLITIC SMALL LETTER AZU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C00", "lowercase_mapping": "", "titlecase_mapping": "2C00", "symbol": "\u2C30" }, 11313: { "value": "2C31", "name": "GLAGOLITIC SMALL LETTER BUKY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C01", "lowercase_mapping": "", "titlecase_mapping": "2C01", "symbol": "\u2C31" }, 11314: { "value": "2C32", "name": "GLAGOLITIC SMALL LETTER VEDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C02", "lowercase_mapping": "", "titlecase_mapping": "2C02", "symbol": "\u2C32" }, 11315: { "value": "2C33", "name": "GLAGOLITIC SMALL LETTER GLAGOLI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C03", "lowercase_mapping": "", "titlecase_mapping": "2C03", "symbol": "\u2C33" }, 11316: { "value": "2C34", "name": "GLAGOLITIC SMALL LETTER DOBRO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C04", "lowercase_mapping": "", "titlecase_mapping": "2C04", "symbol": "\u2C34" }, 11317: { "value": "2C35", "name": "GLAGOLITIC SMALL LETTER YESTU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C05", "lowercase_mapping": "", "titlecase_mapping": "2C05", "symbol": "\u2C35" }, 11318: { "value": "2C36", "name": "GLAGOLITIC SMALL LETTER ZHIVETE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C06", "lowercase_mapping": "", "titlecase_mapping": "2C06", "symbol": "\u2C36" }, 11319: { "value": "2C37", "name": "GLAGOLITIC SMALL LETTER DZELO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C07", "lowercase_mapping": "", "titlecase_mapping": "2C07", "symbol": "\u2C37" }, 11320: { "value": "2C38", "name": "GLAGOLITIC SMALL LETTER ZEMLJA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C08", "lowercase_mapping": "", "titlecase_mapping": "2C08", "symbol": "\u2C38" }, 11321: { "value": "2C39", "name": "GLAGOLITIC SMALL LETTER IZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C09", "lowercase_mapping": "", "titlecase_mapping": "2C09", "symbol": "\u2C39" }, 11322: { "value": "2C3A", "name": "GLAGOLITIC SMALL LETTER INITIAL IZHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0A", "lowercase_mapping": "", "titlecase_mapping": "2C0A", "symbol": "\u2C3A" }, 11323: { "value": "2C3B", "name": "GLAGOLITIC SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0B", "lowercase_mapping": "", "titlecase_mapping": "2C0B", "symbol": "\u2C3B" }, 11324: { "value": "2C3C", "name": "GLAGOLITIC SMALL LETTER DJERVI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0C", "lowercase_mapping": "", "titlecase_mapping": "2C0C", "symbol": "\u2C3C" }, 11325: { "value": "2C3D", "name": "GLAGOLITIC SMALL LETTER KAKO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0D", "lowercase_mapping": "", "titlecase_mapping": "2C0D", "symbol": "\u2C3D" }, 11326: { "value": "2C3E", "name": "GLAGOLITIC SMALL LETTER LJUDIJE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0E", "lowercase_mapping": "", "titlecase_mapping": "2C0E", "symbol": "\u2C3E" }, 11327: { "value": "2C3F", "name": "GLAGOLITIC SMALL LETTER MYSLITE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C0F", "lowercase_mapping": "", "titlecase_mapping": "2C0F", "symbol": "\u2C3F" }, 11328: { "value": "2C40", "name": "GLAGOLITIC SMALL LETTER NASHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C10", "lowercase_mapping": "", "titlecase_mapping": "2C10", "symbol": "\u2C40" }, 11329: { "value": "2C41", "name": "GLAGOLITIC SMALL LETTER ONU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C11", "lowercase_mapping": "", "titlecase_mapping": "2C11", "symbol": "\u2C41" }, 11330: { "value": "2C42", "name": "GLAGOLITIC SMALL LETTER POKOJI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C12", "lowercase_mapping": "", "titlecase_mapping": "2C12", "symbol": "\u2C42" }, 11331: { "value": "2C43", "name": "GLAGOLITIC SMALL LETTER RITSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C13", "lowercase_mapping": "", "titlecase_mapping": "2C13", "symbol": "\u2C43" }, 11332: { "value": "2C44", "name": "GLAGOLITIC SMALL LETTER SLOVO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C14", "lowercase_mapping": "", "titlecase_mapping": "2C14", "symbol": "\u2C44" }, 11333: { "value": "2C45", "name": "GLAGOLITIC SMALL LETTER TVRIDO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C15", "lowercase_mapping": "", "titlecase_mapping": "2C15", "symbol": "\u2C45" }, 11334: { "value": "2C46", "name": "GLAGOLITIC SMALL LETTER UKU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C16", "lowercase_mapping": "", "titlecase_mapping": "2C16", "symbol": "\u2C46" }, 11335: { "value": "2C47", "name": "GLAGOLITIC SMALL LETTER FRITU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C17", "lowercase_mapping": "", "titlecase_mapping": "2C17", "symbol": "\u2C47" }, 11336: { "value": "2C48", "name": "GLAGOLITIC SMALL LETTER HERU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C18", "lowercase_mapping": "", "titlecase_mapping": "2C18", "symbol": "\u2C48" }, 11337: { "value": "2C49", "name": "GLAGOLITIC SMALL LETTER OTU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C19", "lowercase_mapping": "", "titlecase_mapping": "2C19", "symbol": "\u2C49" }, 11338: { "value": "2C4A", "name": "GLAGOLITIC SMALL LETTER PE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1A", "lowercase_mapping": "", "titlecase_mapping": "2C1A", "symbol": "\u2C4A" }, 11339: { "value": "2C4B", "name": "GLAGOLITIC SMALL LETTER SHTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1B", "lowercase_mapping": "", "titlecase_mapping": "2C1B", "symbol": "\u2C4B" }, 11340: { "value": "2C4C", "name": "GLAGOLITIC SMALL LETTER TSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1C", "lowercase_mapping": "", "titlecase_mapping": "2C1C", "symbol": "\u2C4C" }, 11341: { "value": "2C4D", "name": "GLAGOLITIC SMALL LETTER CHRIVI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1D", "lowercase_mapping": "", "titlecase_mapping": "2C1D", "symbol": "\u2C4D" }, 11342: { "value": "2C4E", "name": "GLAGOLITIC SMALL LETTER SHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1E", "lowercase_mapping": "", "titlecase_mapping": "2C1E", "symbol": "\u2C4E" }, 11343: { "value": "2C4F", "name": "GLAGOLITIC SMALL LETTER YERU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C1F", "lowercase_mapping": "", "titlecase_mapping": "2C1F", "symbol": "\u2C4F" }, 11344: { "value": "2C50", "name": "GLAGOLITIC SMALL LETTER YERI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C20", "lowercase_mapping": "", "titlecase_mapping": "2C20", "symbol": "\u2C50" }, 11345: { "value": "2C51", "name": "GLAGOLITIC SMALL LETTER YATI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C21", "lowercase_mapping": "", "titlecase_mapping": "2C21", "symbol": "\u2C51" }, 11346: { "value": "2C52", "name": "GLAGOLITIC SMALL LETTER SPIDERY HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C22", "lowercase_mapping": "", "titlecase_mapping": "2C22", "symbol": "\u2C52" }, 11347: { "value": "2C53", "name": "GLAGOLITIC SMALL LETTER YU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C23", "lowercase_mapping": "", "titlecase_mapping": "2C23", "symbol": "\u2C53" }, 11348: { "value": "2C54", "name": "GLAGOLITIC SMALL LETTER SMALL YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C24", "lowercase_mapping": "", "titlecase_mapping": "2C24", "symbol": "\u2C54" }, 11349: { "value": "2C55", "name": "GLAGOLITIC SMALL LETTER SMALL YUS WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C25", "lowercase_mapping": "", "titlecase_mapping": "2C25", "symbol": "\u2C55" }, 11350: { "value": "2C56", "name": "GLAGOLITIC SMALL LETTER YO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C26", "lowercase_mapping": "", "titlecase_mapping": "2C26", "symbol": "\u2C56" }, 11351: { "value": "2C57", "name": "GLAGOLITIC SMALL LETTER IOTATED SMALL YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C27", "lowercase_mapping": "", "titlecase_mapping": "2C27", "symbol": "\u2C57" }, 11352: { "value": "2C58", "name": "GLAGOLITIC SMALL LETTER BIG YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C28", "lowercase_mapping": "", "titlecase_mapping": "2C28", "symbol": "\u2C58" }, 11353: { "value": "2C59", "name": "GLAGOLITIC SMALL LETTER IOTATED BIG YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C29", "lowercase_mapping": "", "titlecase_mapping": "2C29", "symbol": "\u2C59" }, 11354: { "value": "2C5A", "name": "GLAGOLITIC SMALL LETTER FITA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C2A", "lowercase_mapping": "", "titlecase_mapping": "2C2A", "symbol": "\u2C5A" }, 11355: { "value": "2C5B", "name": "GLAGOLITIC SMALL LETTER IZHITSA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C2B", "lowercase_mapping": "", "titlecase_mapping": "2C2B", "symbol": "\u2C5B" }, 11356: { "value": "2C5C", "name": "GLAGOLITIC SMALL LETTER SHTAPIC", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C2C", "lowercase_mapping": "", "titlecase_mapping": "2C2C", "symbol": "\u2C5C" }, 11357: { "value": "2C5D", "name": "GLAGOLITIC SMALL LETTER TROKUTASTI A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C2D", "lowercase_mapping": "", "titlecase_mapping": "2C2D", "symbol": "\u2C5D" }, 11358: { "value": "2C5E", "name": "GLAGOLITIC SMALL LETTER LATINATE MYSLITE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C2E", "lowercase_mapping": "", "titlecase_mapping": "2C2E", "symbol": "\u2C5E" }, 11361: { "value": "2C61", "name": "LATIN SMALL LETTER L WITH DOUBLE BAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C60", "lowercase_mapping": "", "titlecase_mapping": "2C60", "symbol": "\u2C61" }, 11365: { "value": "2C65", "name": "LATIN SMALL LETTER A WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "023A", "lowercase_mapping": "", "titlecase_mapping": "023A", "symbol": "\u2C65" }, 11366: { "value": "2C66", "name": "LATIN SMALL LETTER T WITH DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "023E", "lowercase_mapping": "", "titlecase_mapping": "023E", "symbol": "\u2C66" }, 11368: { "value": "2C68", "name": "LATIN SMALL LETTER H WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C67", "lowercase_mapping": "", "titlecase_mapping": "2C67", "symbol": "\u2C68" }, 11370: { "value": "2C6A", "name": "LATIN SMALL LETTER K WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C69", "lowercase_mapping": "", "titlecase_mapping": "2C69", "symbol": "\u2C6A" }, 11372: { "value": "2C6C", "name": "LATIN SMALL LETTER Z WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C6B", "lowercase_mapping": "", "titlecase_mapping": "2C6B", "symbol": "\u2C6C" }, 11377: { "value": "2C71", "name": "LATIN SMALL LETTER V WITH RIGHT HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C71" }, 11379: { "value": "2C73", "name": "LATIN SMALL LETTER W WITH HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C72", "lowercase_mapping": "", "titlecase_mapping": "2C72", "symbol": "\u2C73" }, 11380: { "value": "2C74", "name": "LATIN SMALL LETTER V WITH CURL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C74" }, 11382: { "value": "2C76", "name": "LATIN SMALL LETTER HALF H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C75", "lowercase_mapping": "", "titlecase_mapping": "2C75", "symbol": "\u2C76" }, 11383: { "value": "2C77", "name": "LATIN SMALL LETTER TAILLESS PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C77" }, 11384: { "value": "2C78", "name": "LATIN SMALL LETTER E WITH NOTCH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C78" }, 11385: { "value": "2C79", "name": "LATIN SMALL LETTER TURNED R WITH TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C79" }, 11386: { "value": "2C7A", "name": "LATIN SMALL LETTER O WITH LOW RING INSIDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C7A" }, 11387: { "value": "2C7B", "name": "LATIN LETTER SMALL CAPITAL TURNED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2C7B" }, 11393: { "value": "2C81", "name": "COPTIC SMALL LETTER ALFA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C80", "lowercase_mapping": "", "titlecase_mapping": "2C80", "symbol": "\u2C81" }, 11395: { "value": "2C83", "name": "COPTIC SMALL LETTER VIDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C82", "lowercase_mapping": "", "titlecase_mapping": "2C82", "symbol": "\u2C83" }, 11397: { "value": "2C85", "name": "COPTIC SMALL LETTER GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C84", "lowercase_mapping": "", "titlecase_mapping": "2C84", "symbol": "\u2C85" }, 11399: { "value": "2C87", "name": "COPTIC SMALL LETTER DALDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C86", "lowercase_mapping": "", "titlecase_mapping": "2C86", "symbol": "\u2C87" }, 11401: { "value": "2C89", "name": "COPTIC SMALL LETTER EIE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C88", "lowercase_mapping": "", "titlecase_mapping": "2C88", "symbol": "\u2C89" }, 11403: { "value": "2C8B", "name": "COPTIC SMALL LETTER SOU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C8A", "lowercase_mapping": "", "titlecase_mapping": "2C8A", "symbol": "\u2C8B" }, 11405: { "value": "2C8D", "name": "COPTIC SMALL LETTER ZATA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C8C", "lowercase_mapping": "", "titlecase_mapping": "2C8C", "symbol": "\u2C8D" }, 11407: { "value": "2C8F", "name": "COPTIC SMALL LETTER HATE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C8E", "lowercase_mapping": "", "titlecase_mapping": "2C8E", "symbol": "\u2C8F" }, 11409: { "value": "2C91", "name": "COPTIC SMALL LETTER THETHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C90", "lowercase_mapping": "", "titlecase_mapping": "2C90", "symbol": "\u2C91" }, 11411: { "value": "2C93", "name": "COPTIC SMALL LETTER IAUDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C92", "lowercase_mapping": "", "titlecase_mapping": "2C92", "symbol": "\u2C93" }, 11413: { "value": "2C95", "name": "COPTIC SMALL LETTER KAPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C94", "lowercase_mapping": "", "titlecase_mapping": "2C94", "symbol": "\u2C95" }, 11415: { "value": "2C97", "name": "COPTIC SMALL LETTER LAULA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C96", "lowercase_mapping": "", "titlecase_mapping": "2C96", "symbol": "\u2C97" }, 11417: { "value": "2C99", "name": "COPTIC SMALL LETTER MI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C98", "lowercase_mapping": "", "titlecase_mapping": "2C98", "symbol": "\u2C99" }, 11419: { "value": "2C9B", "name": "COPTIC SMALL LETTER NI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C9A", "lowercase_mapping": "", "titlecase_mapping": "2C9A", "symbol": "\u2C9B" }, 11421: { "value": "2C9D", "name": "COPTIC SMALL LETTER KSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C9C", "lowercase_mapping": "", "titlecase_mapping": "2C9C", "symbol": "\u2C9D" }, 11423: { "value": "2C9F", "name": "COPTIC SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2C9E", "lowercase_mapping": "", "titlecase_mapping": "2C9E", "symbol": "\u2C9F" }, 11425: { "value": "2CA1", "name": "COPTIC SMALL LETTER PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CA0", "lowercase_mapping": "", "titlecase_mapping": "2CA0", "symbol": "\u2CA1" }, 11427: { "value": "2CA3", "name": "COPTIC SMALL LETTER RO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CA2", "lowercase_mapping": "", "titlecase_mapping": "2CA2", "symbol": "\u2CA3" }, 11429: { "value": "2CA5", "name": "COPTIC SMALL LETTER SIMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CA4", "lowercase_mapping": "", "titlecase_mapping": "2CA4", "symbol": "\u2CA5" }, 11431: { "value": "2CA7", "name": "COPTIC SMALL LETTER TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CA6", "lowercase_mapping": "", "titlecase_mapping": "2CA6", "symbol": "\u2CA7" }, 11433: { "value": "2CA9", "name": "COPTIC SMALL LETTER UA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CA8", "lowercase_mapping": "", "titlecase_mapping": "2CA8", "symbol": "\u2CA9" }, 11435: { "value": "2CAB", "name": "COPTIC SMALL LETTER FI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CAA", "lowercase_mapping": "", "titlecase_mapping": "2CAA", "symbol": "\u2CAB" }, 11437: { "value": "2CAD", "name": "COPTIC SMALL LETTER KHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CAC", "lowercase_mapping": "", "titlecase_mapping": "2CAC", "symbol": "\u2CAD" }, 11439: { "value": "2CAF", "name": "COPTIC SMALL LETTER PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CAE", "lowercase_mapping": "", "titlecase_mapping": "2CAE", "symbol": "\u2CAF" }, 11441: { "value": "2CB1", "name": "COPTIC SMALL LETTER OOU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CB0", "lowercase_mapping": "", "titlecase_mapping": "2CB0", "symbol": "\u2CB1" }, 11443: { "value": "2CB3", "name": "COPTIC SMALL LETTER DIALECT-P ALEF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CB2", "lowercase_mapping": "", "titlecase_mapping": "2CB2", "symbol": "\u2CB3" }, 11445: { "value": "2CB5", "name": "COPTIC SMALL LETTER OLD COPTIC AIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CB4", "lowercase_mapping": "", "titlecase_mapping": "2CB4", "symbol": "\u2CB5" }, 11447: { "value": "2CB7", "name": "COPTIC SMALL LETTER CRYPTOGRAMMIC EIE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CB6", "lowercase_mapping": "", "titlecase_mapping": "2CB6", "symbol": "\u2CB7" }, 11449: { "value": "2CB9", "name": "COPTIC SMALL LETTER DIALECT-P KAPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CB8", "lowercase_mapping": "", "titlecase_mapping": "2CB8", "symbol": "\u2CB9" }, 11451: { "value": "2CBB", "name": "COPTIC SMALL LETTER DIALECT-P NI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CBA", "lowercase_mapping": "", "titlecase_mapping": "2CBA", "symbol": "\u2CBB" }, 11453: { "value": "2CBD", "name": "COPTIC SMALL LETTER CRYPTOGRAMMIC NI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CBC", "lowercase_mapping": "", "titlecase_mapping": "2CBC", "symbol": "\u2CBD" }, 11455: { "value": "2CBF", "name": "COPTIC SMALL LETTER OLD COPTIC OOU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CBE", "lowercase_mapping": "", "titlecase_mapping": "2CBE", "symbol": "\u2CBF" }, 11457: { "value": "2CC1", "name": "COPTIC SMALL LETTER SAMPI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CC0", "lowercase_mapping": "", "titlecase_mapping": "2CC0", "symbol": "\u2CC1" }, 11459: { "value": "2CC3", "name": "COPTIC SMALL LETTER CROSSED SHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CC2", "lowercase_mapping": "", "titlecase_mapping": "2CC2", "symbol": "\u2CC3" }, 11461: { "value": "2CC5", "name": "COPTIC SMALL LETTER OLD COPTIC SHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CC4", "lowercase_mapping": "", "titlecase_mapping": "2CC4", "symbol": "\u2CC5" }, 11463: { "value": "2CC7", "name": "COPTIC SMALL LETTER OLD COPTIC ESH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CC6", "lowercase_mapping": "", "titlecase_mapping": "2CC6", "symbol": "\u2CC7" }, 11465: { "value": "2CC9", "name": "COPTIC SMALL LETTER AKHMIMIC KHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CC8", "lowercase_mapping": "", "titlecase_mapping": "2CC8", "symbol": "\u2CC9" }, 11467: { "value": "2CCB", "name": "COPTIC SMALL LETTER DIALECT-P HORI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CCA", "lowercase_mapping": "", "titlecase_mapping": "2CCA", "symbol": "\u2CCB" }, 11469: { "value": "2CCD", "name": "COPTIC SMALL LETTER OLD COPTIC HORI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CCC", "lowercase_mapping": "", "titlecase_mapping": "2CCC", "symbol": "\u2CCD" }, 11471: { "value": "2CCF", "name": "COPTIC SMALL LETTER OLD COPTIC HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CCE", "lowercase_mapping": "", "titlecase_mapping": "2CCE", "symbol": "\u2CCF" }, 11473: { "value": "2CD1", "name": "COPTIC SMALL LETTER L-SHAPED HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CD0", "lowercase_mapping": "", "titlecase_mapping": "2CD0", "symbol": "\u2CD1" }, 11475: { "value": "2CD3", "name": "COPTIC SMALL LETTER OLD COPTIC HEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CD2", "lowercase_mapping": "", "titlecase_mapping": "2CD2", "symbol": "\u2CD3" }, 11477: { "value": "2CD5", "name": "COPTIC SMALL LETTER OLD COPTIC HAT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CD4", "lowercase_mapping": "", "titlecase_mapping": "2CD4", "symbol": "\u2CD5" }, 11479: { "value": "2CD7", "name": "COPTIC SMALL LETTER OLD COPTIC GANGIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CD6", "lowercase_mapping": "", "titlecase_mapping": "2CD6", "symbol": "\u2CD7" }, 11481: { "value": "2CD9", "name": "COPTIC SMALL LETTER OLD COPTIC DJA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CD8", "lowercase_mapping": "", "titlecase_mapping": "2CD8", "symbol": "\u2CD9" }, 11483: { "value": "2CDB", "name": "COPTIC SMALL LETTER OLD COPTIC SHIMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CDA", "lowercase_mapping": "", "titlecase_mapping": "2CDA", "symbol": "\u2CDB" }, 11485: { "value": "2CDD", "name": "COPTIC SMALL LETTER OLD NUBIAN SHIMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CDC", "lowercase_mapping": "", "titlecase_mapping": "2CDC", "symbol": "\u2CDD" }, 11487: { "value": "2CDF", "name": "COPTIC SMALL LETTER OLD NUBIAN NGI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CDE", "lowercase_mapping": "", "titlecase_mapping": "2CDE", "symbol": "\u2CDF" }, 11489: { "value": "2CE1", "name": "COPTIC SMALL LETTER OLD NUBIAN NYI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CE0", "lowercase_mapping": "", "titlecase_mapping": "2CE0", "symbol": "\u2CE1" }, 11491: { "value": "2CE3", "name": "COPTIC SMALL LETTER OLD NUBIAN WAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CE2", "lowercase_mapping": "", "titlecase_mapping": "2CE2", "symbol": "\u2CE3" }, 11492: { "value": "2CE4", "name": "COPTIC SYMBOL KAI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\u2CE4" }, 11500: { "value": "2CEC", "name": "COPTIC SMALL LETTER CRYPTOGRAMMIC SHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CEB", "lowercase_mapping": "", "titlecase_mapping": "2CEB", "symbol": "\u2CEC" }, 11502: { "value": "2CEE", "name": "COPTIC SMALL LETTER CRYPTOGRAMMIC GANGIA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CED", "lowercase_mapping": "", "titlecase_mapping": "2CED", "symbol": "\u2CEE" }, 11507: { "value": "2CF3", "name": "COPTIC SMALL LETTER BOHAIRIC KHEI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "2CF2", "lowercase_mapping": "", "titlecase_mapping": "2CF2", "symbol": "\u2CF3" }, 11520: { "value": "2D00", "name": "GEORGIAN SMALL LETTER AN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A0", "lowercase_mapping": "", "titlecase_mapping": "10A0", "symbol": "\u2D00" }, 11521: { "value": "2D01", "name": "GEORGIAN SMALL LETTER BAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A1", "lowercase_mapping": "", "titlecase_mapping": "10A1", "symbol": "\u2D01" }, 11522: { "value": "2D02", "name": "GEORGIAN SMALL LETTER GAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A2", "lowercase_mapping": "", "titlecase_mapping": "10A2", "symbol": "\u2D02" }, 11523: { "value": "2D03", "name": "GEORGIAN SMALL LETTER DON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A3", "lowercase_mapping": "", "titlecase_mapping": "10A3", "symbol": "\u2D03" }, 11524: { "value": "2D04", "name": "GEORGIAN SMALL LETTER EN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A4", "lowercase_mapping": "", "titlecase_mapping": "10A4", "symbol": "\u2D04" }, 11525: { "value": "2D05", "name": "GEORGIAN SMALL LETTER VIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A5", "lowercase_mapping": "", "titlecase_mapping": "10A5", "symbol": "\u2D05" }, 11526: { "value": "2D06", "name": "GEORGIAN SMALL LETTER ZEN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A6", "lowercase_mapping": "", "titlecase_mapping": "10A6", "symbol": "\u2D06" }, 11527: { "value": "2D07", "name": "GEORGIAN SMALL LETTER TAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A7", "lowercase_mapping": "", "titlecase_mapping": "10A7", "symbol": "\u2D07" }, 11528: { "value": "2D08", "name": "GEORGIAN SMALL LETTER IN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A8", "lowercase_mapping": "", "titlecase_mapping": "10A8", "symbol": "\u2D08" }, 11529: { "value": "2D09", "name": "GEORGIAN SMALL LETTER KAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10A9", "lowercase_mapping": "", "titlecase_mapping": "10A9", "symbol": "\u2D09" }, 11530: { "value": "2D0A", "name": "GEORGIAN SMALL LETTER LAS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AA", "lowercase_mapping": "", "titlecase_mapping": "10AA", "symbol": "\u2D0A" }, 11531: { "value": "2D0B", "name": "GEORGIAN SMALL LETTER MAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AB", "lowercase_mapping": "", "titlecase_mapping": "10AB", "symbol": "\u2D0B" }, 11532: { "value": "2D0C", "name": "GEORGIAN SMALL LETTER NAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AC", "lowercase_mapping": "", "titlecase_mapping": "10AC", "symbol": "\u2D0C" }, 11533: { "value": "2D0D", "name": "GEORGIAN SMALL LETTER ON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AD", "lowercase_mapping": "", "titlecase_mapping": "10AD", "symbol": "\u2D0D" }, 11534: { "value": "2D0E", "name": "GEORGIAN SMALL LETTER PAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AE", "lowercase_mapping": "", "titlecase_mapping": "10AE", "symbol": "\u2D0E" }, 11535: { "value": "2D0F", "name": "GEORGIAN SMALL LETTER ZHAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10AF", "lowercase_mapping": "", "titlecase_mapping": "10AF", "symbol": "\u2D0F" }, 11536: { "value": "2D10", "name": "GEORGIAN SMALL LETTER RAE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B0", "lowercase_mapping": "", "titlecase_mapping": "10B0", "symbol": "\u2D10" }, 11537: { "value": "2D11", "name": "GEORGIAN SMALL LETTER SAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B1", "lowercase_mapping": "", "titlecase_mapping": "10B1", "symbol": "\u2D11" }, 11538: { "value": "2D12", "name": "GEORGIAN SMALL LETTER TAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B2", "lowercase_mapping": "", "titlecase_mapping": "10B2", "symbol": "\u2D12" }, 11539: { "value": "2D13", "name": "GEORGIAN SMALL LETTER UN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B3", "lowercase_mapping": "", "titlecase_mapping": "10B3", "symbol": "\u2D13" }, 11540: { "value": "2D14", "name": "GEORGIAN SMALL LETTER PHAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B4", "lowercase_mapping": "", "titlecase_mapping": "10B4", "symbol": "\u2D14" }, 11541: { "value": "2D15", "name": "GEORGIAN SMALL LETTER KHAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B5", "lowercase_mapping": "", "titlecase_mapping": "10B5", "symbol": "\u2D15" }, 11542: { "value": "2D16", "name": "GEORGIAN SMALL LETTER GHAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B6", "lowercase_mapping": "", "titlecase_mapping": "10B6", "symbol": "\u2D16" }, 11543: { "value": "2D17", "name": "GEORGIAN SMALL LETTER QAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B7", "lowercase_mapping": "", "titlecase_mapping": "10B7", "symbol": "\u2D17" }, 11544: { "value": "2D18", "name": "GEORGIAN SMALL LETTER SHIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B8", "lowercase_mapping": "", "titlecase_mapping": "10B8", "symbol": "\u2D18" }, 11545: { "value": "2D19", "name": "GEORGIAN SMALL LETTER CHIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10B9", "lowercase_mapping": "", "titlecase_mapping": "10B9", "symbol": "\u2D19" }, 11546: { "value": "2D1A", "name": "GEORGIAN SMALL LETTER CAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BA", "lowercase_mapping": "", "titlecase_mapping": "10BA", "symbol": "\u2D1A" }, 11547: { "value": "2D1B", "name": "GEORGIAN SMALL LETTER JIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BB", "lowercase_mapping": "", "titlecase_mapping": "10BB", "symbol": "\u2D1B" }, 11548: { "value": "2D1C", "name": "GEORGIAN SMALL LETTER CIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BC", "lowercase_mapping": "", "titlecase_mapping": "10BC", "symbol": "\u2D1C" }, 11549: { "value": "2D1D", "name": "GEORGIAN SMALL LETTER CHAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BD", "lowercase_mapping": "", "titlecase_mapping": "10BD", "symbol": "\u2D1D" }, 11550: { "value": "2D1E", "name": "GEORGIAN SMALL LETTER XAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BE", "lowercase_mapping": "", "titlecase_mapping": "10BE", "symbol": "\u2D1E" }, 11551: { "value": "2D1F", "name": "GEORGIAN SMALL LETTER JHAN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10BF", "lowercase_mapping": "", "titlecase_mapping": "10BF", "symbol": "\u2D1F" }, 11552: { "value": "2D20", "name": "GEORGIAN SMALL LETTER HAE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C0", "lowercase_mapping": "", "titlecase_mapping": "10C0", "symbol": "\u2D20" }, 11553: { "value": "2D21", "name": "GEORGIAN SMALL LETTER HE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C1", "lowercase_mapping": "", "titlecase_mapping": "10C1", "symbol": "\u2D21" }, 11554: { "value": "2D22", "name": "GEORGIAN SMALL LETTER HIE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C2", "lowercase_mapping": "", "titlecase_mapping": "10C2", "symbol": "\u2D22" }, 11555: { "value": "2D23", "name": "GEORGIAN SMALL LETTER WE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C3", "lowercase_mapping": "", "titlecase_mapping": "10C3", "symbol": "\u2D23" }, 11556: { "value": "2D24", "name": "GEORGIAN SMALL LETTER HAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C4", "lowercase_mapping": "", "titlecase_mapping": "10C4", "symbol": "\u2D24" }, 11557: { "value": "2D25", "name": "GEORGIAN SMALL LETTER HOE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C5", "lowercase_mapping": "", "titlecase_mapping": "10C5", "symbol": "\u2D25" }, 11559: { "value": "2D27", "name": "GEORGIAN SMALL LETTER YN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C7", "lowercase_mapping": "", "titlecase_mapping": "10C7", "symbol": "\u2D27" }, 11565: { "value": "2D2D", "name": "GEORGIAN SMALL LETTER AEN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CD", "lowercase_mapping": "", "titlecase_mapping": "10CD", "symbol": "\u2D2D" }, 42561: { "value": "A641", "name": "CYRILLIC SMALL LETTER ZEMLYA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A640", "lowercase_mapping": "", "titlecase_mapping": "A640", "symbol": "\uA641" }, 42563: { "value": "A643", "name": "CYRILLIC SMALL LETTER DZELO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A642", "lowercase_mapping": "", "titlecase_mapping": "A642", "symbol": "\uA643" }, 42565: { "value": "A645", "name": "CYRILLIC SMALL LETTER REVERSED DZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A644", "lowercase_mapping": "", "titlecase_mapping": "A644", "symbol": "\uA645" }, 42567: { "value": "A647", "name": "CYRILLIC SMALL LETTER IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A646", "lowercase_mapping": "", "titlecase_mapping": "A646", "symbol": "\uA647" }, 42569: { "value": "A649", "name": "CYRILLIC SMALL LETTER DJERV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A648", "lowercase_mapping": "", "titlecase_mapping": "A648", "symbol": "\uA649" }, 42571: { "value": "A64B", "name": "CYRILLIC SMALL LETTER MONOGRAPH UK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A64A", "lowercase_mapping": "", "titlecase_mapping": "A64A", "symbol": "\uA64B" }, 42573: { "value": "A64D", "name": "CYRILLIC SMALL LETTER BROAD OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A64C", "lowercase_mapping": "", "titlecase_mapping": "A64C", "symbol": "\uA64D" }, 42575: { "value": "A64F", "name": "CYRILLIC SMALL LETTER NEUTRAL YER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A64E", "lowercase_mapping": "", "titlecase_mapping": "A64E", "symbol": "\uA64F" }, 42577: { "value": "A651", "name": "CYRILLIC SMALL LETTER YERU WITH BACK YER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A650", "lowercase_mapping": "", "titlecase_mapping": "A650", "symbol": "\uA651" }, 42579: { "value": "A653", "name": "CYRILLIC SMALL LETTER IOTIFIED YAT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A652", "lowercase_mapping": "", "titlecase_mapping": "A652", "symbol": "\uA653" }, 42581: { "value": "A655", "name": "CYRILLIC SMALL LETTER REVERSED YU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A654", "lowercase_mapping": "", "titlecase_mapping": "A654", "symbol": "\uA655" }, 42583: { "value": "A657", "name": "CYRILLIC SMALL LETTER IOTIFIED A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A656", "lowercase_mapping": "", "titlecase_mapping": "A656", "symbol": "\uA657" }, 42585: { "value": "A659", "name": "CYRILLIC SMALL LETTER CLOSED LITTLE YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A658", "lowercase_mapping": "", "titlecase_mapping": "A658", "symbol": "\uA659" }, 42587: { "value": "A65B", "name": "CYRILLIC SMALL LETTER BLENDED YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A65A", "lowercase_mapping": "", "titlecase_mapping": "A65A", "symbol": "\uA65B" }, 42589: { "value": "A65D", "name": "CYRILLIC SMALL LETTER IOTIFIED CLOSED LITTLE YUS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A65C", "lowercase_mapping": "", "titlecase_mapping": "A65C", "symbol": "\uA65D" }, 42591: { "value": "A65F", "name": "CYRILLIC SMALL LETTER YN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A65E", "lowercase_mapping": "", "titlecase_mapping": "A65E", "symbol": "\uA65F" }, 42593: { "value": "A661", "name": "CYRILLIC SMALL LETTER REVERSED TSE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A660", "lowercase_mapping": "", "titlecase_mapping": "A660", "symbol": "\uA661" }, 42595: { "value": "A663", "name": "CYRILLIC SMALL LETTER SOFT DE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A662", "lowercase_mapping": "", "titlecase_mapping": "A662", "symbol": "\uA663" }, 42597: { "value": "A665", "name": "CYRILLIC SMALL LETTER SOFT EL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A664", "lowercase_mapping": "", "titlecase_mapping": "A664", "symbol": "\uA665" }, 42599: { "value": "A667", "name": "CYRILLIC SMALL LETTER SOFT EM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A666", "lowercase_mapping": "", "titlecase_mapping": "A666", "symbol": "\uA667" }, 42601: { "value": "A669", "name": "CYRILLIC SMALL LETTER MONOCULAR O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A668", "lowercase_mapping": "", "titlecase_mapping": "A668", "symbol": "\uA669" }, 42603: { "value": "A66B", "name": "CYRILLIC SMALL LETTER BINOCULAR O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A66A", "lowercase_mapping": "", "titlecase_mapping": "A66A", "symbol": "\uA66B" }, 42605: { "value": "A66D", "name": "CYRILLIC SMALL LETTER DOUBLE MONOCULAR O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A66C", "lowercase_mapping": "", "titlecase_mapping": "A66C", "symbol": "\uA66D" }, 42625: { "value": "A681", "name": "CYRILLIC SMALL LETTER DWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A680", "lowercase_mapping": "", "titlecase_mapping": "A680", "symbol": "\uA681" }, 42627: { "value": "A683", "name": "CYRILLIC SMALL LETTER DZWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A682", "lowercase_mapping": "", "titlecase_mapping": "A682", "symbol": "\uA683" }, 42629: { "value": "A685", "name": "CYRILLIC SMALL LETTER ZHWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A684", "lowercase_mapping": "", "titlecase_mapping": "A684", "symbol": "\uA685" }, 42631: { "value": "A687", "name": "CYRILLIC SMALL LETTER CCHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A686", "lowercase_mapping": "", "titlecase_mapping": "A686", "symbol": "\uA687" }, 42633: { "value": "A689", "name": "CYRILLIC SMALL LETTER DZZE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A688", "lowercase_mapping": "", "titlecase_mapping": "A688", "symbol": "\uA689" }, 42635: { "value": "A68B", "name": "CYRILLIC SMALL LETTER TE WITH MIDDLE HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A68A", "lowercase_mapping": "", "titlecase_mapping": "A68A", "symbol": "\uA68B" }, 42637: { "value": "A68D", "name": "CYRILLIC SMALL LETTER TWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A68C", "lowercase_mapping": "", "titlecase_mapping": "A68C", "symbol": "\uA68D" }, 42639: { "value": "A68F", "name": "CYRILLIC SMALL LETTER TSWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A68E", "lowercase_mapping": "", "titlecase_mapping": "A68E", "symbol": "\uA68F" }, 42641: { "value": "A691", "name": "CYRILLIC SMALL LETTER TSSE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A690", "lowercase_mapping": "", "titlecase_mapping": "A690", "symbol": "\uA691" }, 42643: { "value": "A693", "name": "CYRILLIC SMALL LETTER TCHE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A692", "lowercase_mapping": "", "titlecase_mapping": "A692", "symbol": "\uA693" }, 42645: { "value": "A695", "name": "CYRILLIC SMALL LETTER HWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A694", "lowercase_mapping": "", "titlecase_mapping": "A694", "symbol": "\uA695" }, 42647: { "value": "A697", "name": "CYRILLIC SMALL LETTER SHWE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A696", "lowercase_mapping": "", "titlecase_mapping": "A696", "symbol": "\uA697" }, 42649: { "value": "A699", "name": "CYRILLIC SMALL LETTER DOUBLE O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A698", "lowercase_mapping": "", "titlecase_mapping": "A698", "symbol": "\uA699" }, 42651: { "value": "A69B", "name": "CYRILLIC SMALL LETTER CROSSED O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A69A", "lowercase_mapping": "", "titlecase_mapping": "A69A", "symbol": "\uA69B" }, 42787: { "value": "A723", "name": "LATIN SMALL LETTER EGYPTOLOGICAL ALEF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A722", "lowercase_mapping": "", "titlecase_mapping": "A722", "symbol": "\uA723" }, 42789: { "value": "A725", "name": "LATIN SMALL LETTER EGYPTOLOGICAL AIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A724", "lowercase_mapping": "", "titlecase_mapping": "A724", "symbol": "\uA725" }, 42791: { "value": "A727", "name": "LATIN SMALL LETTER HENG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A726", "lowercase_mapping": "", "titlecase_mapping": "A726", "symbol": "\uA727" }, 42793: { "value": "A729", "name": "LATIN SMALL LETTER TZ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A728", "lowercase_mapping": "", "titlecase_mapping": "A728", "symbol": "\uA729" }, 42795: { "value": "A72B", "name": "LATIN SMALL LETTER TRESILLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A72A", "lowercase_mapping": "", "titlecase_mapping": "A72A", "symbol": "\uA72B" }, 42797: { "value": "A72D", "name": "LATIN SMALL LETTER CUATRILLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A72C", "lowercase_mapping": "", "titlecase_mapping": "A72C", "symbol": "\uA72D" }, 42799: { "value": "A72F", "name": "LATIN SMALL LETTER CUATRILLO WITH COMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A72E", "lowercase_mapping": "", "titlecase_mapping": "A72E", "symbol": "\uA72F" }, 42800: { "value": "A730", "name": "LATIN LETTER SMALL CAPITAL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA730" }, 42801: { "value": "A731", "name": "LATIN LETTER SMALL CAPITAL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA731" }, 42803: { "value": "A733", "name": "LATIN SMALL LETTER AA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A732", "lowercase_mapping": "", "titlecase_mapping": "A732", "symbol": "\uA733" }, 42805: { "value": "A735", "name": "LATIN SMALL LETTER AO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A734", "lowercase_mapping": "", "titlecase_mapping": "A734", "symbol": "\uA735" }, 42807: { "value": "A737", "name": "LATIN SMALL LETTER AU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A736", "lowercase_mapping": "", "titlecase_mapping": "A736", "symbol": "\uA737" }, 42809: { "value": "A739", "name": "LATIN SMALL LETTER AV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A738", "lowercase_mapping": "", "titlecase_mapping": "A738", "symbol": "\uA739" }, 42811: { "value": "A73B", "name": "LATIN SMALL LETTER AV WITH HORIZONTAL BAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A73A", "lowercase_mapping": "", "titlecase_mapping": "A73A", "symbol": "\uA73B" }, 42813: { "value": "A73D", "name": "LATIN SMALL LETTER AY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A73C", "lowercase_mapping": "", "titlecase_mapping": "A73C", "symbol": "\uA73D" }, 42815: { "value": "A73F", "name": "LATIN SMALL LETTER REVERSED C WITH DOT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A73E", "lowercase_mapping": "", "titlecase_mapping": "A73E", "symbol": "\uA73F" }, 42817: { "value": "A741", "name": "LATIN SMALL LETTER K WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A740", "lowercase_mapping": "", "titlecase_mapping": "A740", "symbol": "\uA741" }, 42819: { "value": "A743", "name": "LATIN SMALL LETTER K WITH DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A742", "lowercase_mapping": "", "titlecase_mapping": "A742", "symbol": "\uA743" }, 42821: { "value": "A745", "name": "LATIN SMALL LETTER K WITH STROKE AND DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A744", "lowercase_mapping": "", "titlecase_mapping": "A744", "symbol": "\uA745" }, 42823: { "value": "A747", "name": "LATIN SMALL LETTER BROKEN L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A746", "lowercase_mapping": "", "titlecase_mapping": "A746", "symbol": "\uA747" }, 42825: { "value": "A749", "name": "LATIN SMALL LETTER L WITH HIGH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A748", "lowercase_mapping": "", "titlecase_mapping": "A748", "symbol": "\uA749" }, 42827: { "value": "A74B", "name": "LATIN SMALL LETTER O WITH LONG STROKE OVERLAY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A74A", "lowercase_mapping": "", "titlecase_mapping": "A74A", "symbol": "\uA74B" }, 42829: { "value": "A74D", "name": "LATIN SMALL LETTER O WITH LOOP", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A74C", "lowercase_mapping": "", "titlecase_mapping": "A74C", "symbol": "\uA74D" }, 42831: { "value": "A74F", "name": "LATIN SMALL LETTER OO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A74E", "lowercase_mapping": "", "titlecase_mapping": "A74E", "symbol": "\uA74F" }, 42833: { "value": "A751", "name": "LATIN SMALL LETTER P WITH STROKE THROUGH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A750", "lowercase_mapping": "", "titlecase_mapping": "A750", "symbol": "\uA751" }, 42835: { "value": "A753", "name": "LATIN SMALL LETTER P WITH FLOURISH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A752", "lowercase_mapping": "", "titlecase_mapping": "A752", "symbol": "\uA753" }, 42837: { "value": "A755", "name": "LATIN SMALL LETTER P WITH SQUIRREL TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A754", "lowercase_mapping": "", "titlecase_mapping": "A754", "symbol": "\uA755" }, 42839: { "value": "A757", "name": "LATIN SMALL LETTER Q WITH STROKE THROUGH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A756", "lowercase_mapping": "", "titlecase_mapping": "A756", "symbol": "\uA757" }, 42841: { "value": "A759", "name": "LATIN SMALL LETTER Q WITH DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A758", "lowercase_mapping": "", "titlecase_mapping": "A758", "symbol": "\uA759" }, 42843: { "value": "A75B", "name": "LATIN SMALL LETTER R ROTUNDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A75A", "lowercase_mapping": "", "titlecase_mapping": "A75A", "symbol": "\uA75B" }, 42845: { "value": "A75D", "name": "LATIN SMALL LETTER RUM ROTUNDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A75C", "lowercase_mapping": "", "titlecase_mapping": "A75C", "symbol": "\uA75D" }, 42847: { "value": "A75F", "name": "LATIN SMALL LETTER V WITH DIAGONAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A75E", "lowercase_mapping": "", "titlecase_mapping": "A75E", "symbol": "\uA75F" }, 42849: { "value": "A761", "name": "LATIN SMALL LETTER VY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A760", "lowercase_mapping": "", "titlecase_mapping": "A760", "symbol": "\uA761" }, 42851: { "value": "A763", "name": "LATIN SMALL LETTER VISIGOTHIC Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A762", "lowercase_mapping": "", "titlecase_mapping": "A762", "symbol": "\uA763" }, 42853: { "value": "A765", "name": "LATIN SMALL LETTER THORN WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A764", "lowercase_mapping": "", "titlecase_mapping": "A764", "symbol": "\uA765" }, 42855: { "value": "A767", "name": "LATIN SMALL LETTER THORN WITH STROKE THROUGH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A766", "lowercase_mapping": "", "titlecase_mapping": "A766", "symbol": "\uA767" }, 42857: { "value": "A769", "name": "LATIN SMALL LETTER VEND", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A768", "lowercase_mapping": "", "titlecase_mapping": "A768", "symbol": "\uA769" }, 42859: { "value": "A76B", "name": "LATIN SMALL LETTER ET", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A76A", "lowercase_mapping": "", "titlecase_mapping": "A76A", "symbol": "\uA76B" }, 42861: { "value": "A76D", "name": "LATIN SMALL LETTER IS", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A76C", "lowercase_mapping": "", "titlecase_mapping": "A76C", "symbol": "\uA76D" }, 42863: { "value": "A76F", "name": "LATIN SMALL LETTER CON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A76E", "lowercase_mapping": "", "titlecase_mapping": "A76E", "symbol": "\uA76F" }, 42865: { "value": "A771", "name": "LATIN SMALL LETTER DUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA771" }, 42866: { "value": "A772", "name": "LATIN SMALL LETTER LUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA772" }, 42867: { "value": "A773", "name": "LATIN SMALL LETTER MUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA773" }, 42868: { "value": "A774", "name": "LATIN SMALL LETTER NUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA774" }, 42869: { "value": "A775", "name": "LATIN SMALL LETTER RUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA775" }, 42870: { "value": "A776", "name": "LATIN LETTER SMALL CAPITAL RUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA776" }, 42871: { "value": "A777", "name": "LATIN SMALL LETTER TUM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA777" }, 42872: { "value": "A778", "name": "LATIN SMALL LETTER UM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA778" }, 42874: { "value": "A77A", "name": "LATIN SMALL LETTER INSULAR D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A779", "lowercase_mapping": "", "titlecase_mapping": "A779", "symbol": "\uA77A" }, 42876: { "value": "A77C", "name": "LATIN SMALL LETTER INSULAR F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A77B", "lowercase_mapping": "", "titlecase_mapping": "A77B", "symbol": "\uA77C" }, 42879: { "value": "A77F", "name": "LATIN SMALL LETTER TURNED INSULAR G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A77E", "lowercase_mapping": "", "titlecase_mapping": "A77E", "symbol": "\uA77F" }, 42881: { "value": "A781", "name": "LATIN SMALL LETTER TURNED L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A780", "lowercase_mapping": "", "titlecase_mapping": "A780", "symbol": "\uA781" }, 42883: { "value": "A783", "name": "LATIN SMALL LETTER INSULAR R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A782", "lowercase_mapping": "", "titlecase_mapping": "A782", "symbol": "\uA783" }, 42885: { "value": "A785", "name": "LATIN SMALL LETTER INSULAR S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A784", "lowercase_mapping": "", "titlecase_mapping": "A784", "symbol": "\uA785" }, 42887: { "value": "A787", "name": "LATIN SMALL LETTER INSULAR T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A786", "lowercase_mapping": "", "titlecase_mapping": "A786", "symbol": "\uA787" }, 42892: { "value": "A78C", "name": "LATIN SMALL LETTER SALTILLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A78B", "lowercase_mapping": "", "titlecase_mapping": "A78B", "symbol": "\uA78C" }, 42894: { "value": "A78E", "name": "LATIN SMALL LETTER L WITH RETROFLEX HOOK AND BELT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA78E" }, 42897: { "value": "A791", "name": "LATIN SMALL LETTER N WITH DESCENDER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A790", "lowercase_mapping": "", "titlecase_mapping": "A790", "symbol": "\uA791" }, 42899: { "value": "A793", "name": "LATIN SMALL LETTER C WITH BAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A792", "lowercase_mapping": "", "titlecase_mapping": "A792", "symbol": "\uA793" }, 42900: { "value": "A794", "name": "LATIN SMALL LETTER C WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA794" }, 42901: { "value": "A795", "name": "LATIN SMALL LETTER H WITH PALATAL HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA795" }, 42903: { "value": "A797", "name": "LATIN SMALL LETTER B WITH FLOURISH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A796", "lowercase_mapping": "", "titlecase_mapping": "A796", "symbol": "\uA797" }, 42905: { "value": "A799", "name": "LATIN SMALL LETTER F WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A798", "lowercase_mapping": "", "titlecase_mapping": "A798", "symbol": "\uA799" }, 42907: { "value": "A79B", "name": "LATIN SMALL LETTER VOLAPUK AE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A79A", "lowercase_mapping": "", "titlecase_mapping": "A79A", "symbol": "\uA79B" }, 42909: { "value": "A79D", "name": "LATIN SMALL LETTER VOLAPUK OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A79C", "lowercase_mapping": "", "titlecase_mapping": "A79C", "symbol": "\uA79D" }, 42911: { "value": "A79F", "name": "LATIN SMALL LETTER VOLAPUK UE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A79E", "lowercase_mapping": "", "titlecase_mapping": "A79E", "symbol": "\uA79F" }, 42913: { "value": "A7A1", "name": "LATIN SMALL LETTER G WITH OBLIQUE STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7A0", "lowercase_mapping": "", "titlecase_mapping": "A7A0", "symbol": "\uA7A1" }, 42915: { "value": "A7A3", "name": "LATIN SMALL LETTER K WITH OBLIQUE STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7A2", "lowercase_mapping": "", "titlecase_mapping": "A7A2", "symbol": "\uA7A3" }, 42917: { "value": "A7A5", "name": "LATIN SMALL LETTER N WITH OBLIQUE STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7A4", "lowercase_mapping": "", "titlecase_mapping": "A7A4", "symbol": "\uA7A5" }, 42919: { "value": "A7A7", "name": "LATIN SMALL LETTER R WITH OBLIQUE STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7A6", "lowercase_mapping": "", "titlecase_mapping": "A7A6", "symbol": "\uA7A7" }, 42921: { "value": "A7A9", "name": "LATIN SMALL LETTER S WITH OBLIQUE STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7A8", "lowercase_mapping": "", "titlecase_mapping": "A7A8", "symbol": "\uA7A9" }, 42933: { "value": "A7B5", "name": "LATIN SMALL LETTER BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7B4", "lowercase_mapping": "", "titlecase_mapping": "A7B4", "symbol": "\uA7B5" }, 42935: { "value": "A7B7", "name": "LATIN SMALL LETTER OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7B6", "lowercase_mapping": "", "titlecase_mapping": "A7B6", "symbol": "\uA7B7" }, 43002: { "value": "A7FA", "name": "LATIN LETTER SMALL CAPITAL TURNED M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uA7FA" }, 43824: { "value": "AB30", "name": "LATIN SMALL LETTER BARRED ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB30" }, 43825: { "value": "AB31", "name": "LATIN SMALL LETTER A REVERSED-SCHWA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB31" }, 43826: { "value": "AB32", "name": "LATIN SMALL LETTER BLACKLETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB32" }, 43827: { "value": "AB33", "name": "LATIN SMALL LETTER BARRED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB33" }, 43828: { "value": "AB34", "name": "LATIN SMALL LETTER E WITH FLOURISH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB34" }, 43829: { "value": "AB35", "name": "LATIN SMALL LETTER LENIS F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB35" }, 43830: { "value": "AB36", "name": "LATIN SMALL LETTER SCRIPT G WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB36" }, 43831: { "value": "AB37", "name": "LATIN SMALL LETTER L WITH INVERTED LAZY S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB37" }, 43832: { "value": "AB38", "name": "LATIN SMALL LETTER L WITH DOUBLE MIDDLE TILDE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB38" }, 43833: { "value": "AB39", "name": "LATIN SMALL LETTER L WITH MIDDLE RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB39" }, 43834: { "value": "AB3A", "name": "LATIN SMALL LETTER M WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3A" }, 43835: { "value": "AB3B", "name": "LATIN SMALL LETTER N WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3B" }, 43836: { "value": "AB3C", "name": "LATIN SMALL LETTER ENG WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3C" }, 43837: { "value": "AB3D", "name": "LATIN SMALL LETTER BLACKLETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3D" }, 43838: { "value": "AB3E", "name": "LATIN SMALL LETTER BLACKLETTER O WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3E" }, 43839: { "value": "AB3F", "name": "LATIN SMALL LETTER OPEN O WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB3F" }, 43840: { "value": "AB40", "name": "LATIN SMALL LETTER INVERTED OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB40" }, 43841: { "value": "AB41", "name": "LATIN SMALL LETTER TURNED OE WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB41" }, 43842: { "value": "AB42", "name": "LATIN SMALL LETTER TURNED OE WITH HORIZONTAL STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB42" }, 43843: { "value": "AB43", "name": "LATIN SMALL LETTER TURNED O OPEN-O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB43" }, 43844: { "value": "AB44", "name": "LATIN SMALL LETTER TURNED O OPEN-O WITH STROKE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB44" }, 43845: { "value": "AB45", "name": "LATIN SMALL LETTER STIRRUP R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB45" }, 43846: { "value": "AB46", "name": "LATIN LETTER SMALL CAPITAL R WITH RIGHT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB46" }, 43847: { "value": "AB47", "name": "LATIN SMALL LETTER R WITHOUT HANDLE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB47" }, 43848: { "value": "AB48", "name": "LATIN SMALL LETTER DOUBLE R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB48" }, 43849: { "value": "AB49", "name": "LATIN SMALL LETTER R WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB49" }, 43850: { "value": "AB4A", "name": "LATIN SMALL LETTER DOUBLE R WITH CROSSED-TAIL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4A" }, 43851: { "value": "AB4B", "name": "LATIN SMALL LETTER SCRIPT R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4B" }, 43852: { "value": "AB4C", "name": "LATIN SMALL LETTER SCRIPT R WITH RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4C" }, 43853: { "value": "AB4D", "name": "LATIN SMALL LETTER BASELINE ESH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4D" }, 43854: { "value": "AB4E", "name": "LATIN SMALL LETTER U WITH SHORT RIGHT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4E" }, 43855: { "value": "AB4F", "name": "LATIN SMALL LETTER U BAR WITH SHORT RIGHT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB4F" }, 43856: { "value": "AB50", "name": "LATIN SMALL LETTER UI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB50" }, 43857: { "value": "AB51", "name": "LATIN SMALL LETTER TURNED UI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB51" }, 43858: { "value": "AB52", "name": "LATIN SMALL LETTER U WITH LEFT HOOK", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB52" }, 43859: { "value": "AB53", "name": "LATIN SMALL LETTER CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "A7B3", "lowercase_mapping": "", "titlecase_mapping": "A7B3", "symbol": "\uAB53" }, 43860: { "value": "AB54", "name": "LATIN SMALL LETTER CHI WITH LOW RIGHT RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB54" }, 43861: { "value": "AB55", "name": "LATIN SMALL LETTER CHI WITH LOW LEFT SERIF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB55" }, 43862: { "value": "AB56", "name": "LATIN SMALL LETTER X WITH LOW RIGHT RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB56" }, 43863: { "value": "AB57", "name": "LATIN SMALL LETTER X WITH LONG LEFT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB57" }, 43864: { "value": "AB58", "name": "LATIN SMALL LETTER X WITH LONG LEFT LEG AND LOW RIGHT RING", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB58" }, 43865: { "value": "AB59", "name": "LATIN SMALL LETTER X WITH LONG LEFT LEG WITH SERIF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB59" }, 43866: { "value": "AB5A", "name": "LATIN SMALL LETTER Y WITH SHORT RIGHT LEG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB5A" }, 43872: { "value": "AB60", "name": "LATIN SMALL LETTER SAKHA YAT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB60" }, 43873: { "value": "AB61", "name": "LATIN SMALL LETTER IOTIFIED E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB61" }, 43874: { "value": "AB62", "name": "LATIN SMALL LETTER OPEN OE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB62" }, 43875: { "value": "AB63", "name": "LATIN SMALL LETTER UO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB63" }, 43876: { "value": "AB64", "name": "LATIN SMALL LETTER INVERTED ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB64" }, 43877: { "value": "AB65", "name": "GREEK LETTER SMALL CAPITAL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uAB65" }, 43888: { "value": "AB70", "name": "CHEROKEE SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A0", "lowercase_mapping": "", "titlecase_mapping": "13A0", "symbol": "\uAB70" }, 43889: { "value": "AB71", "name": "CHEROKEE SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A1", "lowercase_mapping": "", "titlecase_mapping": "13A1", "symbol": "\uAB71" }, 43890: { "value": "AB72", "name": "CHEROKEE SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A2", "lowercase_mapping": "", "titlecase_mapping": "13A2", "symbol": "\uAB72" }, 43891: { "value": "AB73", "name": "CHEROKEE SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A3", "lowercase_mapping": "", "titlecase_mapping": "13A3", "symbol": "\uAB73" }, 43892: { "value": "AB74", "name": "CHEROKEE SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A4", "lowercase_mapping": "", "titlecase_mapping": "13A4", "symbol": "\uAB74" }, 43893: { "value": "AB75", "name": "CHEROKEE SMALL LETTER V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A5", "lowercase_mapping": "", "titlecase_mapping": "13A5", "symbol": "\uAB75" }, 43894: { "value": "AB76", "name": "CHEROKEE SMALL LETTER GA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A6", "lowercase_mapping": "", "titlecase_mapping": "13A6", "symbol": "\uAB76" }, 43895: { "value": "AB77", "name": "CHEROKEE SMALL LETTER KA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A7", "lowercase_mapping": "", "titlecase_mapping": "13A7", "symbol": "\uAB77" }, 43896: { "value": "AB78", "name": "CHEROKEE SMALL LETTER GE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A8", "lowercase_mapping": "", "titlecase_mapping": "13A8", "symbol": "\uAB78" }, 43897: { "value": "AB79", "name": "CHEROKEE SMALL LETTER GI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13A9", "lowercase_mapping": "", "titlecase_mapping": "13A9", "symbol": "\uAB79" }, 43898: { "value": "AB7A", "name": "CHEROKEE SMALL LETTER GO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AA", "lowercase_mapping": "", "titlecase_mapping": "13AA", "symbol": "\uAB7A" }, 43899: { "value": "AB7B", "name": "CHEROKEE SMALL LETTER GU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AB", "lowercase_mapping": "", "titlecase_mapping": "13AB", "symbol": "\uAB7B" }, 43900: { "value": "AB7C", "name": "CHEROKEE SMALL LETTER GV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AC", "lowercase_mapping": "", "titlecase_mapping": "13AC", "symbol": "\uAB7C" }, 43901: { "value": "AB7D", "name": "CHEROKEE SMALL LETTER HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AD", "lowercase_mapping": "", "titlecase_mapping": "13AD", "symbol": "\uAB7D" }, 43902: { "value": "AB7E", "name": "CHEROKEE SMALL LETTER HE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AE", "lowercase_mapping": "", "titlecase_mapping": "13AE", "symbol": "\uAB7E" }, 43903: { "value": "AB7F", "name": "CHEROKEE SMALL LETTER HI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13AF", "lowercase_mapping": "", "titlecase_mapping": "13AF", "symbol": "\uAB7F" }, 43904: { "value": "AB80", "name": "CHEROKEE SMALL LETTER HO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B0", "lowercase_mapping": "", "titlecase_mapping": "13B0", "symbol": "\uAB80" }, 43905: { "value": "AB81", "name": "CHEROKEE SMALL LETTER HU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B1", "lowercase_mapping": "", "titlecase_mapping": "13B1", "symbol": "\uAB81" }, 43906: { "value": "AB82", "name": "CHEROKEE SMALL LETTER HV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B2", "lowercase_mapping": "", "titlecase_mapping": "13B2", "symbol": "\uAB82" }, 43907: { "value": "AB83", "name": "CHEROKEE SMALL LETTER LA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B3", "lowercase_mapping": "", "titlecase_mapping": "13B3", "symbol": "\uAB83" }, 43908: { "value": "AB84", "name": "CHEROKEE SMALL LETTER LE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B4", "lowercase_mapping": "", "titlecase_mapping": "13B4", "symbol": "\uAB84" }, 43909: { "value": "AB85", "name": "CHEROKEE SMALL LETTER LI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B5", "lowercase_mapping": "", "titlecase_mapping": "13B5", "symbol": "\uAB85" }, 43910: { "value": "AB86", "name": "CHEROKEE SMALL LETTER LO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B6", "lowercase_mapping": "", "titlecase_mapping": "13B6", "symbol": "\uAB86" }, 43911: { "value": "AB87", "name": "CHEROKEE SMALL LETTER LU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B7", "lowercase_mapping": "", "titlecase_mapping": "13B7", "symbol": "\uAB87" }, 43912: { "value": "AB88", "name": "CHEROKEE SMALL LETTER LV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B8", "lowercase_mapping": "", "titlecase_mapping": "13B8", "symbol": "\uAB88" }, 43913: { "value": "AB89", "name": "CHEROKEE SMALL LETTER MA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13B9", "lowercase_mapping": "", "titlecase_mapping": "13B9", "symbol": "\uAB89" }, 43914: { "value": "AB8A", "name": "CHEROKEE SMALL LETTER ME", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BA", "lowercase_mapping": "", "titlecase_mapping": "13BA", "symbol": "\uAB8A" }, 43915: { "value": "AB8B", "name": "CHEROKEE SMALL LETTER MI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BB", "lowercase_mapping": "", "titlecase_mapping": "13BB", "symbol": "\uAB8B" }, 43916: { "value": "AB8C", "name": "CHEROKEE SMALL LETTER MO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BC", "lowercase_mapping": "", "titlecase_mapping": "13BC", "symbol": "\uAB8C" }, 43917: { "value": "AB8D", "name": "CHEROKEE SMALL LETTER MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BD", "lowercase_mapping": "", "titlecase_mapping": "13BD", "symbol": "\uAB8D" }, 43918: { "value": "AB8E", "name": "CHEROKEE SMALL LETTER NA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BE", "lowercase_mapping": "", "titlecase_mapping": "13BE", "symbol": "\uAB8E" }, 43919: { "value": "AB8F", "name": "CHEROKEE SMALL LETTER HNA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13BF", "lowercase_mapping": "", "titlecase_mapping": "13BF", "symbol": "\uAB8F" }, 43920: { "value": "AB90", "name": "CHEROKEE SMALL LETTER NAH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C0", "lowercase_mapping": "", "titlecase_mapping": "13C0", "symbol": "\uAB90" }, 43921: { "value": "AB91", "name": "CHEROKEE SMALL LETTER NE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C1", "lowercase_mapping": "", "titlecase_mapping": "13C1", "symbol": "\uAB91" }, 43922: { "value": "AB92", "name": "CHEROKEE SMALL LETTER NI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C2", "lowercase_mapping": "", "titlecase_mapping": "13C2", "symbol": "\uAB92" }, 43923: { "value": "AB93", "name": "CHEROKEE SMALL LETTER NO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C3", "lowercase_mapping": "", "titlecase_mapping": "13C3", "symbol": "\uAB93" }, 43924: { "value": "AB94", "name": "CHEROKEE SMALL LETTER NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C4", "lowercase_mapping": "", "titlecase_mapping": "13C4", "symbol": "\uAB94" }, 43925: { "value": "AB95", "name": "CHEROKEE SMALL LETTER NV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C5", "lowercase_mapping": "", "titlecase_mapping": "13C5", "symbol": "\uAB95" }, 43926: { "value": "AB96", "name": "CHEROKEE SMALL LETTER QUA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C6", "lowercase_mapping": "", "titlecase_mapping": "13C6", "symbol": "\uAB96" }, 43927: { "value": "AB97", "name": "CHEROKEE SMALL LETTER QUE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C7", "lowercase_mapping": "", "titlecase_mapping": "13C7", "symbol": "\uAB97" }, 43928: { "value": "AB98", "name": "CHEROKEE SMALL LETTER QUI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C8", "lowercase_mapping": "", "titlecase_mapping": "13C8", "symbol": "\uAB98" }, 43929: { "value": "AB99", "name": "CHEROKEE SMALL LETTER QUO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13C9", "lowercase_mapping": "", "titlecase_mapping": "13C9", "symbol": "\uAB99" }, 43930: { "value": "AB9A", "name": "CHEROKEE SMALL LETTER QUU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CA", "lowercase_mapping": "", "titlecase_mapping": "13CA", "symbol": "\uAB9A" }, 43931: { "value": "AB9B", "name": "CHEROKEE SMALL LETTER QUV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CB", "lowercase_mapping": "", "titlecase_mapping": "13CB", "symbol": "\uAB9B" }, 43932: { "value": "AB9C", "name": "CHEROKEE SMALL LETTER SA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CC", "lowercase_mapping": "", "titlecase_mapping": "13CC", "symbol": "\uAB9C" }, 43933: { "value": "AB9D", "name": "CHEROKEE SMALL LETTER S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CD", "lowercase_mapping": "", "titlecase_mapping": "13CD", "symbol": "\uAB9D" }, 43934: { "value": "AB9E", "name": "CHEROKEE SMALL LETTER SE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CE", "lowercase_mapping": "", "titlecase_mapping": "13CE", "symbol": "\uAB9E" }, 43935: { "value": "AB9F", "name": "CHEROKEE SMALL LETTER SI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13CF", "lowercase_mapping": "", "titlecase_mapping": "13CF", "symbol": "\uAB9F" }, 43936: { "value": "ABA0", "name": "CHEROKEE SMALL LETTER SO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D0", "lowercase_mapping": "", "titlecase_mapping": "13D0", "symbol": "\uABA0" }, 43937: { "value": "ABA1", "name": "CHEROKEE SMALL LETTER SU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D1", "lowercase_mapping": "", "titlecase_mapping": "13D1", "symbol": "\uABA1" }, 43938: { "value": "ABA2", "name": "CHEROKEE SMALL LETTER SV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D2", "lowercase_mapping": "", "titlecase_mapping": "13D2", "symbol": "\uABA2" }, 43939: { "value": "ABA3", "name": "CHEROKEE SMALL LETTER DA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D3", "lowercase_mapping": "", "titlecase_mapping": "13D3", "symbol": "\uABA3" }, 43940: { "value": "ABA4", "name": "CHEROKEE SMALL LETTER TA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D4", "lowercase_mapping": "", "titlecase_mapping": "13D4", "symbol": "\uABA4" }, 43941: { "value": "ABA5", "name": "CHEROKEE SMALL LETTER DE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D5", "lowercase_mapping": "", "titlecase_mapping": "13D5", "symbol": "\uABA5" }, 43942: { "value": "ABA6", "name": "CHEROKEE SMALL LETTER TE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D6", "lowercase_mapping": "", "titlecase_mapping": "13D6", "symbol": "\uABA6" }, 43943: { "value": "ABA7", "name": "CHEROKEE SMALL LETTER DI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D7", "lowercase_mapping": "", "titlecase_mapping": "13D7", "symbol": "\uABA7" }, 43944: { "value": "ABA8", "name": "CHEROKEE SMALL LETTER TI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D8", "lowercase_mapping": "", "titlecase_mapping": "13D8", "symbol": "\uABA8" }, 43945: { "value": "ABA9", "name": "CHEROKEE SMALL LETTER DO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13D9", "lowercase_mapping": "", "titlecase_mapping": "13D9", "symbol": "\uABA9" }, 43946: { "value": "ABAA", "name": "CHEROKEE SMALL LETTER DU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DA", "lowercase_mapping": "", "titlecase_mapping": "13DA", "symbol": "\uABAA" }, 43947: { "value": "ABAB", "name": "CHEROKEE SMALL LETTER DV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DB", "lowercase_mapping": "", "titlecase_mapping": "13DB", "symbol": "\uABAB" }, 43948: { "value": "ABAC", "name": "CHEROKEE SMALL LETTER DLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DC", "lowercase_mapping": "", "titlecase_mapping": "13DC", "symbol": "\uABAC" }, 43949: { "value": "ABAD", "name": "CHEROKEE SMALL LETTER TLA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DD", "lowercase_mapping": "", "titlecase_mapping": "13DD", "symbol": "\uABAD" }, 43950: { "value": "ABAE", "name": "CHEROKEE SMALL LETTER TLE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DE", "lowercase_mapping": "", "titlecase_mapping": "13DE", "symbol": "\uABAE" }, 43951: { "value": "ABAF", "name": "CHEROKEE SMALL LETTER TLI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13DF", "lowercase_mapping": "", "titlecase_mapping": "13DF", "symbol": "\uABAF" }, 43952: { "value": "ABB0", "name": "CHEROKEE SMALL LETTER TLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E0", "lowercase_mapping": "", "titlecase_mapping": "13E0", "symbol": "\uABB0" }, 43953: { "value": "ABB1", "name": "CHEROKEE SMALL LETTER TLU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E1", "lowercase_mapping": "", "titlecase_mapping": "13E1", "symbol": "\uABB1" }, 43954: { "value": "ABB2", "name": "CHEROKEE SMALL LETTER TLV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E2", "lowercase_mapping": "", "titlecase_mapping": "13E2", "symbol": "\uABB2" }, 43955: { "value": "ABB3", "name": "CHEROKEE SMALL LETTER TSA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E3", "lowercase_mapping": "", "titlecase_mapping": "13E3", "symbol": "\uABB3" }, 43956: { "value": "ABB4", "name": "CHEROKEE SMALL LETTER TSE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E4", "lowercase_mapping": "", "titlecase_mapping": "13E4", "symbol": "\uABB4" }, 43957: { "value": "ABB5", "name": "CHEROKEE SMALL LETTER TSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E5", "lowercase_mapping": "", "titlecase_mapping": "13E5", "symbol": "\uABB5" }, 43958: { "value": "ABB6", "name": "CHEROKEE SMALL LETTER TSO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E6", "lowercase_mapping": "", "titlecase_mapping": "13E6", "symbol": "\uABB6" }, 43959: { "value": "ABB7", "name": "CHEROKEE SMALL LETTER TSU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E7", "lowercase_mapping": "", "titlecase_mapping": "13E7", "symbol": "\uABB7" }, 43960: { "value": "ABB8", "name": "CHEROKEE SMALL LETTER TSV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E8", "lowercase_mapping": "", "titlecase_mapping": "13E8", "symbol": "\uABB8" }, 43961: { "value": "ABB9", "name": "CHEROKEE SMALL LETTER WA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13E9", "lowercase_mapping": "", "titlecase_mapping": "13E9", "symbol": "\uABB9" }, 43962: { "value": "ABBA", "name": "CHEROKEE SMALL LETTER WE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13EA", "lowercase_mapping": "", "titlecase_mapping": "13EA", "symbol": "\uABBA" }, 43963: { "value": "ABBB", "name": "CHEROKEE SMALL LETTER WI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13EB", "lowercase_mapping": "", "titlecase_mapping": "13EB", "symbol": "\uABBB" }, 43964: { "value": "ABBC", "name": "CHEROKEE SMALL LETTER WO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13EC", "lowercase_mapping": "", "titlecase_mapping": "13EC", "symbol": "\uABBC" }, 43965: { "value": "ABBD", "name": "CHEROKEE SMALL LETTER WU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13ED", "lowercase_mapping": "", "titlecase_mapping": "13ED", "symbol": "\uABBD" }, 43966: { "value": "ABBE", "name": "CHEROKEE SMALL LETTER WV", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13EE", "lowercase_mapping": "", "titlecase_mapping": "13EE", "symbol": "\uABBE" }, 43967: { "value": "ABBF", "name": "CHEROKEE SMALL LETTER YA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "13EF", "lowercase_mapping": "", "titlecase_mapping": "13EF", "symbol": "\uABBF" }, 64256: { "value": "FB00", "name": "LATIN SMALL LIGATURE FF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB00" }, 64257: { "value": "FB01", "name": "LATIN SMALL LIGATURE FI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB01" }, 64258: { "value": "FB02", "name": "LATIN SMALL LIGATURE FL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB02" }, 64259: { "value": "FB03", "name": "LATIN SMALL LIGATURE FFI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066 0066 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB03" }, 64260: { "value": "FB04", "name": "LATIN SMALL LIGATURE FFL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066 0066 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB04" }, 64261: { "value": "FB05", "name": "LATIN SMALL LIGATURE LONG S T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 017F 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB05" }, 64262: { "value": "FB06", "name": "LATIN SMALL LIGATURE ST", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB06" }, 64275: { "value": "FB13", "name": "ARMENIAN SMALL LIGATURE MEN NOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0574 0576", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB13" }, 64276: { "value": "FB14", "name": "ARMENIAN SMALL LIGATURE MEN ECH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0574 0565", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB14" }, 64277: { "value": "FB15", "name": "ARMENIAN SMALL LIGATURE MEN INI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0574 056B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB15" }, 64278: { "value": "FB16", "name": "ARMENIAN SMALL LIGATURE VEW NOW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 057E 0576", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB16" }, 64279: { "value": "FB17", "name": "ARMENIAN SMALL LIGATURE MEN XEH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0574 056D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uFB17" }, 65345: { "value": "FF41", "name": "FULLWIDTH LATIN SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF21", "lowercase_mapping": "", "titlecase_mapping": "FF21", "symbol": "\uFF41" }, 65346: { "value": "FF42", "name": "FULLWIDTH LATIN SMALL LETTER B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF22", "lowercase_mapping": "", "titlecase_mapping": "FF22", "symbol": "\uFF42" }, 65347: { "value": "FF43", "name": "FULLWIDTH LATIN SMALL LETTER C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF23", "lowercase_mapping": "", "titlecase_mapping": "FF23", "symbol": "\uFF43" }, 65348: { "value": "FF44", "name": "FULLWIDTH LATIN SMALL LETTER D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF24", "lowercase_mapping": "", "titlecase_mapping": "FF24", "symbol": "\uFF44" }, 65349: { "value": "FF45", "name": "FULLWIDTH LATIN SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF25", "lowercase_mapping": "", "titlecase_mapping": "FF25", "symbol": "\uFF45" }, 65350: { "value": "FF46", "name": "FULLWIDTH LATIN SMALL LETTER F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF26", "lowercase_mapping": "", "titlecase_mapping": "FF26", "symbol": "\uFF46" }, 65351: { "value": "FF47", "name": "FULLWIDTH LATIN SMALL LETTER G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF27", "lowercase_mapping": "", "titlecase_mapping": "FF27", "symbol": "\uFF47" }, 65352: { "value": "FF48", "name": "FULLWIDTH LATIN SMALL LETTER H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF28", "lowercase_mapping": "", "titlecase_mapping": "FF28", "symbol": "\uFF48" }, 65353: { "value": "FF49", "name": "FULLWIDTH LATIN SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF29", "lowercase_mapping": "", "titlecase_mapping": "FF29", "symbol": "\uFF49" }, 65354: { "value": "FF4A", "name": "FULLWIDTH LATIN SMALL LETTER J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2A", "lowercase_mapping": "", "titlecase_mapping": "FF2A", "symbol": "\uFF4A" }, 65355: { "value": "FF4B", "name": "FULLWIDTH LATIN SMALL LETTER K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2B", "lowercase_mapping": "", "titlecase_mapping": "FF2B", "symbol": "\uFF4B" }, 65356: { "value": "FF4C", "name": "FULLWIDTH LATIN SMALL LETTER L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2C", "lowercase_mapping": "", "titlecase_mapping": "FF2C", "symbol": "\uFF4C" }, 65357: { "value": "FF4D", "name": "FULLWIDTH LATIN SMALL LETTER M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2D", "lowercase_mapping": "", "titlecase_mapping": "FF2D", "symbol": "\uFF4D" }, 65358: { "value": "FF4E", "name": "FULLWIDTH LATIN SMALL LETTER N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2E", "lowercase_mapping": "", "titlecase_mapping": "FF2E", "symbol": "\uFF4E" }, 65359: { "value": "FF4F", "name": "FULLWIDTH LATIN SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF2F", "lowercase_mapping": "", "titlecase_mapping": "FF2F", "symbol": "\uFF4F" }, 65360: { "value": "FF50", "name": "FULLWIDTH LATIN SMALL LETTER P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF30", "lowercase_mapping": "", "titlecase_mapping": "FF30", "symbol": "\uFF50" }, 65361: { "value": "FF51", "name": "FULLWIDTH LATIN SMALL LETTER Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF31", "lowercase_mapping": "", "titlecase_mapping": "FF31", "symbol": "\uFF51" }, 65362: { "value": "FF52", "name": "FULLWIDTH LATIN SMALL LETTER R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF32", "lowercase_mapping": "", "titlecase_mapping": "FF32", "symbol": "\uFF52" }, 65363: { "value": "FF53", "name": "FULLWIDTH LATIN SMALL LETTER S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF33", "lowercase_mapping": "", "titlecase_mapping": "FF33", "symbol": "\uFF53" }, 65364: { "value": "FF54", "name": "FULLWIDTH LATIN SMALL LETTER T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF34", "lowercase_mapping": "", "titlecase_mapping": "FF34", "symbol": "\uFF54" }, 65365: { "value": "FF55", "name": "FULLWIDTH LATIN SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF35", "lowercase_mapping": "", "titlecase_mapping": "FF35", "symbol": "\uFF55" }, 65366: { "value": "FF56", "name": "FULLWIDTH LATIN SMALL LETTER V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF36", "lowercase_mapping": "", "titlecase_mapping": "FF36", "symbol": "\uFF56" }, 65367: { "value": "FF57", "name": "FULLWIDTH LATIN SMALL LETTER W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF37", "lowercase_mapping": "", "titlecase_mapping": "FF37", "symbol": "\uFF57" }, 65368: { "value": "FF58", "name": "FULLWIDTH LATIN SMALL LETTER X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF38", "lowercase_mapping": "", "titlecase_mapping": "FF38", "symbol": "\uFF58" }, 65369: { "value": "FF59", "name": "FULLWIDTH LATIN SMALL LETTER Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF39", "lowercase_mapping": "", "titlecase_mapping": "FF39", "symbol": "\uFF59" }, 65370: { "value": "FF5A", "name": "FULLWIDTH LATIN SMALL LETTER Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "FF3A", "lowercase_mapping": "", "titlecase_mapping": "FF3A", "symbol": "\uFF5A" }, 66600: { "value": "10428", "name": "DESERET SMALL LETTER LONG I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10400", "lowercase_mapping": "", "titlecase_mapping": "10400", "symbol": "\u0428" }, 66601: { "value": "10429", "name": "DESERET SMALL LETTER LONG E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10401", "lowercase_mapping": "", "titlecase_mapping": "10401", "symbol": "\u0429" }, 66602: { "value": "1042A", "name": "DESERET SMALL LETTER LONG A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10402", "lowercase_mapping": "", "titlecase_mapping": "10402", "symbol": "\u042A" }, 66603: { "value": "1042B", "name": "DESERET SMALL LETTER LONG AH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10403", "lowercase_mapping": "", "titlecase_mapping": "10403", "symbol": "\u042B" }, 66604: { "value": "1042C", "name": "DESERET SMALL LETTER LONG O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10404", "lowercase_mapping": "", "titlecase_mapping": "10404", "symbol": "\u042C" }, 66605: { "value": "1042D", "name": "DESERET SMALL LETTER LONG OO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10405", "lowercase_mapping": "", "titlecase_mapping": "10405", "symbol": "\u042D" }, 66606: { "value": "1042E", "name": "DESERET SMALL LETTER SHORT I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10406", "lowercase_mapping": "", "titlecase_mapping": "10406", "symbol": "\u042E" }, 66607: { "value": "1042F", "name": "DESERET SMALL LETTER SHORT E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10407", "lowercase_mapping": "", "titlecase_mapping": "10407", "symbol": "\u042F" }, 66608: { "value": "10430", "name": "DESERET SMALL LETTER SHORT A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10408", "lowercase_mapping": "", "titlecase_mapping": "10408", "symbol": "\u0430" }, 66609: { "value": "10431", "name": "DESERET SMALL LETTER SHORT AH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10409", "lowercase_mapping": "", "titlecase_mapping": "10409", "symbol": "\u0431" }, 66610: { "value": "10432", "name": "DESERET SMALL LETTER SHORT O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040A", "lowercase_mapping": "", "titlecase_mapping": "1040A", "symbol": "\u0432" }, 66611: { "value": "10433", "name": "DESERET SMALL LETTER SHORT OO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040B", "lowercase_mapping": "", "titlecase_mapping": "1040B", "symbol": "\u0433" }, 66612: { "value": "10434", "name": "DESERET SMALL LETTER AY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040C", "lowercase_mapping": "", "titlecase_mapping": "1040C", "symbol": "\u0434" }, 66613: { "value": "10435", "name": "DESERET SMALL LETTER OW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040D", "lowercase_mapping": "", "titlecase_mapping": "1040D", "symbol": "\u0435" }, 66614: { "value": "10436", "name": "DESERET SMALL LETTER WU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040E", "lowercase_mapping": "", "titlecase_mapping": "1040E", "symbol": "\u0436" }, 66615: { "value": "10437", "name": "DESERET SMALL LETTER YEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1040F", "lowercase_mapping": "", "titlecase_mapping": "1040F", "symbol": "\u0437" }, 66616: { "value": "10438", "name": "DESERET SMALL LETTER H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10410", "lowercase_mapping": "", "titlecase_mapping": "10410", "symbol": "\u0438" }, 66617: { "value": "10439", "name": "DESERET SMALL LETTER PEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10411", "lowercase_mapping": "", "titlecase_mapping": "10411", "symbol": "\u0439" }, 66618: { "value": "1043A", "name": "DESERET SMALL LETTER BEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10412", "lowercase_mapping": "", "titlecase_mapping": "10412", "symbol": "\u043A" }, 66619: { "value": "1043B", "name": "DESERET SMALL LETTER TEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10413", "lowercase_mapping": "", "titlecase_mapping": "10413", "symbol": "\u043B" }, 66620: { "value": "1043C", "name": "DESERET SMALL LETTER DEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10414", "lowercase_mapping": "", "titlecase_mapping": "10414", "symbol": "\u043C" }, 66621: { "value": "1043D", "name": "DESERET SMALL LETTER CHEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10415", "lowercase_mapping": "", "titlecase_mapping": "10415", "symbol": "\u043D" }, 66622: { "value": "1043E", "name": "DESERET SMALL LETTER JEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10416", "lowercase_mapping": "", "titlecase_mapping": "10416", "symbol": "\u043E" }, 66623: { "value": "1043F", "name": "DESERET SMALL LETTER KAY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10417", "lowercase_mapping": "", "titlecase_mapping": "10417", "symbol": "\u043F" }, 66624: { "value": "10440", "name": "DESERET SMALL LETTER GAY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10418", "lowercase_mapping": "", "titlecase_mapping": "10418", "symbol": "\u0440" }, 66625: { "value": "10441", "name": "DESERET SMALL LETTER EF", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10419", "lowercase_mapping": "", "titlecase_mapping": "10419", "symbol": "\u0441" }, 66626: { "value": "10442", "name": "DESERET SMALL LETTER VEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041A", "lowercase_mapping": "", "titlecase_mapping": "1041A", "symbol": "\u0442" }, 66627: { "value": "10443", "name": "DESERET SMALL LETTER ETH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041B", "lowercase_mapping": "", "titlecase_mapping": "1041B", "symbol": "\u0443" }, 66628: { "value": "10444", "name": "DESERET SMALL LETTER THEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041C", "lowercase_mapping": "", "titlecase_mapping": "1041C", "symbol": "\u0444" }, 66629: { "value": "10445", "name": "DESERET SMALL LETTER ES", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041D", "lowercase_mapping": "", "titlecase_mapping": "1041D", "symbol": "\u0445" }, 66630: { "value": "10446", "name": "DESERET SMALL LETTER ZEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041E", "lowercase_mapping": "", "titlecase_mapping": "1041E", "symbol": "\u0446" }, 66631: { "value": "10447", "name": "DESERET SMALL LETTER ESH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1041F", "lowercase_mapping": "", "titlecase_mapping": "1041F", "symbol": "\u0447" }, 66632: { "value": "10448", "name": "DESERET SMALL LETTER ZHEE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10420", "lowercase_mapping": "", "titlecase_mapping": "10420", "symbol": "\u0448" }, 66633: { "value": "10449", "name": "DESERET SMALL LETTER ER", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10421", "lowercase_mapping": "", "titlecase_mapping": "10421", "symbol": "\u0449" }, 66634: { "value": "1044A", "name": "DESERET SMALL LETTER EL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10422", "lowercase_mapping": "", "titlecase_mapping": "10422", "symbol": "\u044A" }, 66635: { "value": "1044B", "name": "DESERET SMALL LETTER EM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10423", "lowercase_mapping": "", "titlecase_mapping": "10423", "symbol": "\u044B" }, 66636: { "value": "1044C", "name": "DESERET SMALL LETTER EN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10424", "lowercase_mapping": "", "titlecase_mapping": "10424", "symbol": "\u044C" }, 66637: { "value": "1044D", "name": "DESERET SMALL LETTER ENG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10425", "lowercase_mapping": "", "titlecase_mapping": "10425", "symbol": "\u044D" }, 66638: { "value": "1044E", "name": "DESERET SMALL LETTER OI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10426", "lowercase_mapping": "", "titlecase_mapping": "10426", "symbol": "\u044E" }, 66639: { "value": "1044F", "name": "DESERET SMALL LETTER EW", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10427", "lowercase_mapping": "", "titlecase_mapping": "10427", "symbol": "\u044F" }, 66776: { "value": "104D8", "name": "OSAGE SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B0", "lowercase_mapping": "", "titlecase_mapping": "104B0", "symbol": "\u04D8" }, 66777: { "value": "104D9", "name": "OSAGE SMALL LETTER AI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B1", "lowercase_mapping": "", "titlecase_mapping": "104B1", "symbol": "\u04D9" }, 66778: { "value": "104DA", "name": "OSAGE SMALL LETTER AIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B2", "lowercase_mapping": "", "titlecase_mapping": "104B2", "symbol": "\u04DA" }, 66779: { "value": "104DB", "name": "OSAGE SMALL LETTER AH", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B3", "lowercase_mapping": "", "titlecase_mapping": "104B3", "symbol": "\u04DB" }, 66780: { "value": "104DC", "name": "OSAGE SMALL LETTER BRA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B4", "lowercase_mapping": "", "titlecase_mapping": "104B4", "symbol": "\u04DC" }, 66781: { "value": "104DD", "name": "OSAGE SMALL LETTER CHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B5", "lowercase_mapping": "", "titlecase_mapping": "104B5", "symbol": "\u04DD" }, 66782: { "value": "104DE", "name": "OSAGE SMALL LETTER EHCHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B6", "lowercase_mapping": "", "titlecase_mapping": "104B6", "symbol": "\u04DE" }, 66783: { "value": "104DF", "name": "OSAGE SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B7", "lowercase_mapping": "", "titlecase_mapping": "104B7", "symbol": "\u04DF" }, 66784: { "value": "104E0", "name": "OSAGE SMALL LETTER EIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B8", "lowercase_mapping": "", "titlecase_mapping": "104B8", "symbol": "\u04E0" }, 66785: { "value": "104E1", "name": "OSAGE SMALL LETTER HA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104B9", "lowercase_mapping": "", "titlecase_mapping": "104B9", "symbol": "\u04E1" }, 66786: { "value": "104E2", "name": "OSAGE SMALL LETTER HYA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BA", "lowercase_mapping": "", "titlecase_mapping": "104BA", "symbol": "\u04E2" }, 66787: { "value": "104E3", "name": "OSAGE SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BB", "lowercase_mapping": "", "titlecase_mapping": "104BB", "symbol": "\u04E3" }, 66788: { "value": "104E4", "name": "OSAGE SMALL LETTER KA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BC", "lowercase_mapping": "", "titlecase_mapping": "104BC", "symbol": "\u04E4" }, 66789: { "value": "104E5", "name": "OSAGE SMALL LETTER EHKA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BD", "lowercase_mapping": "", "titlecase_mapping": "104BD", "symbol": "\u04E5" }, 66790: { "value": "104E6", "name": "OSAGE SMALL LETTER KYA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BE", "lowercase_mapping": "", "titlecase_mapping": "104BE", "symbol": "\u04E6" }, 66791: { "value": "104E7", "name": "OSAGE SMALL LETTER LA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104BF", "lowercase_mapping": "", "titlecase_mapping": "104BF", "symbol": "\u04E7" }, 66792: { "value": "104E8", "name": "OSAGE SMALL LETTER MA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C0", "lowercase_mapping": "", "titlecase_mapping": "104C0", "symbol": "\u04E8" }, 66793: { "value": "104E9", "name": "OSAGE SMALL LETTER NA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C1", "lowercase_mapping": "", "titlecase_mapping": "104C1", "symbol": "\u04E9" }, 66794: { "value": "104EA", "name": "OSAGE SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C2", "lowercase_mapping": "", "titlecase_mapping": "104C2", "symbol": "\u04EA" }, 66795: { "value": "104EB", "name": "OSAGE SMALL LETTER OIN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C3", "lowercase_mapping": "", "titlecase_mapping": "104C3", "symbol": "\u04EB" }, 66796: { "value": "104EC", "name": "OSAGE SMALL LETTER PA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C4", "lowercase_mapping": "", "titlecase_mapping": "104C4", "symbol": "\u04EC" }, 66797: { "value": "104ED", "name": "OSAGE SMALL LETTER EHPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C5", "lowercase_mapping": "", "titlecase_mapping": "104C5", "symbol": "\u04ED" }, 66798: { "value": "104EE", "name": "OSAGE SMALL LETTER SA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C6", "lowercase_mapping": "", "titlecase_mapping": "104C6", "symbol": "\u04EE" }, 66799: { "value": "104EF", "name": "OSAGE SMALL LETTER SHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C7", "lowercase_mapping": "", "titlecase_mapping": "104C7", "symbol": "\u04EF" }, 66800: { "value": "104F0", "name": "OSAGE SMALL LETTER TA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C8", "lowercase_mapping": "", "titlecase_mapping": "104C8", "symbol": "\u04F0" }, 66801: { "value": "104F1", "name": "OSAGE SMALL LETTER EHTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104C9", "lowercase_mapping": "", "titlecase_mapping": "104C9", "symbol": "\u04F1" }, 66802: { "value": "104F2", "name": "OSAGE SMALL LETTER TSA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CA", "lowercase_mapping": "", "titlecase_mapping": "104CA", "symbol": "\u04F2" }, 66803: { "value": "104F3", "name": "OSAGE SMALL LETTER EHTSA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CB", "lowercase_mapping": "", "titlecase_mapping": "104CB", "symbol": "\u04F3" }, 66804: { "value": "104F4", "name": "OSAGE SMALL LETTER TSHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CC", "lowercase_mapping": "", "titlecase_mapping": "104CC", "symbol": "\u04F4" }, 66805: { "value": "104F5", "name": "OSAGE SMALL LETTER DHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CD", "lowercase_mapping": "", "titlecase_mapping": "104CD", "symbol": "\u04F5" }, 66806: { "value": "104F6", "name": "OSAGE SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CE", "lowercase_mapping": "", "titlecase_mapping": "104CE", "symbol": "\u04F6" }, 66807: { "value": "104F7", "name": "OSAGE SMALL LETTER WA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104CF", "lowercase_mapping": "", "titlecase_mapping": "104CF", "symbol": "\u04F7" }, 66808: { "value": "104F8", "name": "OSAGE SMALL LETTER KHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104D0", "lowercase_mapping": "", "titlecase_mapping": "104D0", "symbol": "\u04F8" }, 66809: { "value": "104F9", "name": "OSAGE SMALL LETTER GHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104D1", "lowercase_mapping": "", "titlecase_mapping": "104D1", "symbol": "\u04F9" }, 66810: { "value": "104FA", "name": "OSAGE SMALL LETTER ZA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104D2", "lowercase_mapping": "", "titlecase_mapping": "104D2", "symbol": "\u04FA" }, 66811: { "value": "104FB", "name": "OSAGE SMALL LETTER ZHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "104D3", "lowercase_mapping": "", "titlecase_mapping": "104D3", "symbol": "\u04FB" }, 68800: { "value": "10CC0", "name": "OLD HUNGARIAN SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C80", "lowercase_mapping": "", "titlecase_mapping": "10C80", "symbol": "\u0CC0" }, 68801: { "value": "10CC1", "name": "OLD HUNGARIAN SMALL LETTER AA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C81", "lowercase_mapping": "", "titlecase_mapping": "10C81", "symbol": "\u0CC1" }, 68802: { "value": "10CC2", "name": "OLD HUNGARIAN SMALL LETTER EB", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C82", "lowercase_mapping": "", "titlecase_mapping": "10C82", "symbol": "\u0CC2" }, 68803: { "value": "10CC3", "name": "OLD HUNGARIAN SMALL LETTER AMB", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C83", "lowercase_mapping": "", "titlecase_mapping": "10C83", "symbol": "\u0CC3" }, 68804: { "value": "10CC4", "name": "OLD HUNGARIAN SMALL LETTER EC", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C84", "lowercase_mapping": "", "titlecase_mapping": "10C84", "symbol": "\u0CC4" }, 68805: { "value": "10CC5", "name": "OLD HUNGARIAN SMALL LETTER ENC", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C85", "lowercase_mapping": "", "titlecase_mapping": "10C85", "symbol": "\u0CC5" }, 68806: { "value": "10CC6", "name": "OLD HUNGARIAN SMALL LETTER ECS", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C86", "lowercase_mapping": "", "titlecase_mapping": "10C86", "symbol": "\u0CC6" }, 68807: { "value": "10CC7", "name": "OLD HUNGARIAN SMALL LETTER ED", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C87", "lowercase_mapping": "", "titlecase_mapping": "10C87", "symbol": "\u0CC7" }, 68808: { "value": "10CC8", "name": "OLD HUNGARIAN SMALL LETTER AND", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C88", "lowercase_mapping": "", "titlecase_mapping": "10C88", "symbol": "\u0CC8" }, 68809: { "value": "10CC9", "name": "OLD HUNGARIAN SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C89", "lowercase_mapping": "", "titlecase_mapping": "10C89", "symbol": "\u0CC9" }, 68810: { "value": "10CCA", "name": "OLD HUNGARIAN SMALL LETTER CLOSE E", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8A", "lowercase_mapping": "", "titlecase_mapping": "10C8A", "symbol": "\u0CCA" }, 68811: { "value": "10CCB", "name": "OLD HUNGARIAN SMALL LETTER EE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8B", "lowercase_mapping": "", "titlecase_mapping": "10C8B", "symbol": "\u0CCB" }, 68812: { "value": "10CCC", "name": "OLD HUNGARIAN SMALL LETTER EF", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8C", "lowercase_mapping": "", "titlecase_mapping": "10C8C", "symbol": "\u0CCC" }, 68813: { "value": "10CCD", "name": "OLD HUNGARIAN SMALL LETTER EG", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8D", "lowercase_mapping": "", "titlecase_mapping": "10C8D", "symbol": "\u0CCD" }, 68814: { "value": "10CCE", "name": "OLD HUNGARIAN SMALL LETTER EGY", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8E", "lowercase_mapping": "", "titlecase_mapping": "10C8E", "symbol": "\u0CCE" }, 68815: { "value": "10CCF", "name": "OLD HUNGARIAN SMALL LETTER EH", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C8F", "lowercase_mapping": "", "titlecase_mapping": "10C8F", "symbol": "\u0CCF" }, 68816: { "value": "10CD0", "name": "OLD HUNGARIAN SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C90", "lowercase_mapping": "", "titlecase_mapping": "10C90", "symbol": "\u0CD0" }, 68817: { "value": "10CD1", "name": "OLD HUNGARIAN SMALL LETTER II", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C91", "lowercase_mapping": "", "titlecase_mapping": "10C91", "symbol": "\u0CD1" }, 68818: { "value": "10CD2", "name": "OLD HUNGARIAN SMALL LETTER EJ", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C92", "lowercase_mapping": "", "titlecase_mapping": "10C92", "symbol": "\u0CD2" }, 68819: { "value": "10CD3", "name": "OLD HUNGARIAN SMALL LETTER EK", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C93", "lowercase_mapping": "", "titlecase_mapping": "10C93", "symbol": "\u0CD3" }, 68820: { "value": "10CD4", "name": "OLD HUNGARIAN SMALL LETTER AK", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C94", "lowercase_mapping": "", "titlecase_mapping": "10C94", "symbol": "\u0CD4" }, 68821: { "value": "10CD5", "name": "OLD HUNGARIAN SMALL LETTER UNK", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C95", "lowercase_mapping": "", "titlecase_mapping": "10C95", "symbol": "\u0CD5" }, 68822: { "value": "10CD6", "name": "OLD HUNGARIAN SMALL LETTER EL", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C96", "lowercase_mapping": "", "titlecase_mapping": "10C96", "symbol": "\u0CD6" }, 68823: { "value": "10CD7", "name": "OLD HUNGARIAN SMALL LETTER ELY", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C97", "lowercase_mapping": "", "titlecase_mapping": "10C97", "symbol": "\u0CD7" }, 68824: { "value": "10CD8", "name": "OLD HUNGARIAN SMALL LETTER EM", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C98", "lowercase_mapping": "", "titlecase_mapping": "10C98", "symbol": "\u0CD8" }, 68825: { "value": "10CD9", "name": "OLD HUNGARIAN SMALL LETTER EN", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C99", "lowercase_mapping": "", "titlecase_mapping": "10C99", "symbol": "\u0CD9" }, 68826: { "value": "10CDA", "name": "OLD HUNGARIAN SMALL LETTER ENY", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9A", "lowercase_mapping": "", "titlecase_mapping": "10C9A", "symbol": "\u0CDA" }, 68827: { "value": "10CDB", "name": "OLD HUNGARIAN SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9B", "lowercase_mapping": "", "titlecase_mapping": "10C9B", "symbol": "\u0CDB" }, 68828: { "value": "10CDC", "name": "OLD HUNGARIAN SMALL LETTER OO", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9C", "lowercase_mapping": "", "titlecase_mapping": "10C9C", "symbol": "\u0CDC" }, 68829: { "value": "10CDD", "name": "OLD HUNGARIAN SMALL LETTER NIKOLSBURG OE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9D", "lowercase_mapping": "", "titlecase_mapping": "10C9D", "symbol": "\u0CDD" }, 68830: { "value": "10CDE", "name": "OLD HUNGARIAN SMALL LETTER RUDIMENTA OE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9E", "lowercase_mapping": "", "titlecase_mapping": "10C9E", "symbol": "\u0CDE" }, 68831: { "value": "10CDF", "name": "OLD HUNGARIAN SMALL LETTER OEE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10C9F", "lowercase_mapping": "", "titlecase_mapping": "10C9F", "symbol": "\u0CDF" }, 68832: { "value": "10CE0", "name": "OLD HUNGARIAN SMALL LETTER EP", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA0", "lowercase_mapping": "", "titlecase_mapping": "10CA0", "symbol": "\u0CE0" }, 68833: { "value": "10CE1", "name": "OLD HUNGARIAN SMALL LETTER EMP", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA1", "lowercase_mapping": "", "titlecase_mapping": "10CA1", "symbol": "\u0CE1" }, 68834: { "value": "10CE2", "name": "OLD HUNGARIAN SMALL LETTER ER", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA2", "lowercase_mapping": "", "titlecase_mapping": "10CA2", "symbol": "\u0CE2" }, 68835: { "value": "10CE3", "name": "OLD HUNGARIAN SMALL LETTER SHORT ER", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA3", "lowercase_mapping": "", "titlecase_mapping": "10CA3", "symbol": "\u0CE3" }, 68836: { "value": "10CE4", "name": "OLD HUNGARIAN SMALL LETTER ES", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA4", "lowercase_mapping": "", "titlecase_mapping": "10CA4", "symbol": "\u0CE4" }, 68837: { "value": "10CE5", "name": "OLD HUNGARIAN SMALL LETTER ESZ", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA5", "lowercase_mapping": "", "titlecase_mapping": "10CA5", "symbol": "\u0CE5" }, 68838: { "value": "10CE6", "name": "OLD HUNGARIAN SMALL LETTER ET", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA6", "lowercase_mapping": "", "titlecase_mapping": "10CA6", "symbol": "\u0CE6" }, 68839: { "value": "10CE7", "name": "OLD HUNGARIAN SMALL LETTER ENT", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA7", "lowercase_mapping": "", "titlecase_mapping": "10CA7", "symbol": "\u0CE7" }, 68840: { "value": "10CE8", "name": "OLD HUNGARIAN SMALL LETTER ETY", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA8", "lowercase_mapping": "", "titlecase_mapping": "10CA8", "symbol": "\u0CE8" }, 68841: { "value": "10CE9", "name": "OLD HUNGARIAN SMALL LETTER ECH", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CA9", "lowercase_mapping": "", "titlecase_mapping": "10CA9", "symbol": "\u0CE9" }, 68842: { "value": "10CEA", "name": "OLD HUNGARIAN SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAA", "lowercase_mapping": "", "titlecase_mapping": "10CAA", "symbol": "\u0CEA" }, 68843: { "value": "10CEB", "name": "OLD HUNGARIAN SMALL LETTER UU", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAB", "lowercase_mapping": "", "titlecase_mapping": "10CAB", "symbol": "\u0CEB" }, 68844: { "value": "10CEC", "name": "OLD HUNGARIAN SMALL LETTER NIKOLSBURG UE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAC", "lowercase_mapping": "", "titlecase_mapping": "10CAC", "symbol": "\u0CEC" }, 68845: { "value": "10CED", "name": "OLD HUNGARIAN SMALL LETTER RUDIMENTA UE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAD", "lowercase_mapping": "", "titlecase_mapping": "10CAD", "symbol": "\u0CED" }, 68846: { "value": "10CEE", "name": "OLD HUNGARIAN SMALL LETTER EV", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAE", "lowercase_mapping": "", "titlecase_mapping": "10CAE", "symbol": "\u0CEE" }, 68847: { "value": "10CEF", "name": "OLD HUNGARIAN SMALL LETTER EZ", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CAF", "lowercase_mapping": "", "titlecase_mapping": "10CAF", "symbol": "\u0CEF" }, 68848: { "value": "10CF0", "name": "OLD HUNGARIAN SMALL LETTER EZS", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CB0", "lowercase_mapping": "", "titlecase_mapping": "10CB0", "symbol": "\u0CF0" }, 68849: { "value": "10CF1", "name": "OLD HUNGARIAN SMALL LETTER ENT-SHAPED SIGN", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CB1", "lowercase_mapping": "", "titlecase_mapping": "10CB1", "symbol": "\u0CF1" }, 68850: { "value": "10CF2", "name": "OLD HUNGARIAN SMALL LETTER US", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "10CB2", "lowercase_mapping": "", "titlecase_mapping": "10CB2", "symbol": "\u0CF2" }, 71872: { "value": "118C0", "name": "WARANG CITI SMALL LETTER NGAA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A0", "lowercase_mapping": "", "titlecase_mapping": "118A0", "symbol": "\u18C0" }, 71873: { "value": "118C1", "name": "WARANG CITI SMALL LETTER A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A1", "lowercase_mapping": "", "titlecase_mapping": "118A1", "symbol": "\u18C1" }, 71874: { "value": "118C2", "name": "WARANG CITI SMALL LETTER WI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A2", "lowercase_mapping": "", "titlecase_mapping": "118A2", "symbol": "\u18C2" }, 71875: { "value": "118C3", "name": "WARANG CITI SMALL LETTER YU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A3", "lowercase_mapping": "", "titlecase_mapping": "118A3", "symbol": "\u18C3" }, 71876: { "value": "118C4", "name": "WARANG CITI SMALL LETTER YA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A4", "lowercase_mapping": "", "titlecase_mapping": "118A4", "symbol": "\u18C4" }, 71877: { "value": "118C5", "name": "WARANG CITI SMALL LETTER YO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A5", "lowercase_mapping": "", "titlecase_mapping": "118A5", "symbol": "\u18C5" }, 71878: { "value": "118C6", "name": "WARANG CITI SMALL LETTER II", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A6", "lowercase_mapping": "", "titlecase_mapping": "118A6", "symbol": "\u18C6" }, 71879: { "value": "118C7", "name": "WARANG CITI SMALL LETTER UU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A7", "lowercase_mapping": "", "titlecase_mapping": "118A7", "symbol": "\u18C7" }, 71880: { "value": "118C8", "name": "WARANG CITI SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A8", "lowercase_mapping": "", "titlecase_mapping": "118A8", "symbol": "\u18C8" }, 71881: { "value": "118C9", "name": "WARANG CITI SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118A9", "lowercase_mapping": "", "titlecase_mapping": "118A9", "symbol": "\u18C9" }, 71882: { "value": "118CA", "name": "WARANG CITI SMALL LETTER ANG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AA", "lowercase_mapping": "", "titlecase_mapping": "118AA", "symbol": "\u18CA" }, 71883: { "value": "118CB", "name": "WARANG CITI SMALL LETTER GA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AB", "lowercase_mapping": "", "titlecase_mapping": "118AB", "symbol": "\u18CB" }, 71884: { "value": "118CC", "name": "WARANG CITI SMALL LETTER KO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AC", "lowercase_mapping": "", "titlecase_mapping": "118AC", "symbol": "\u18CC" }, 71885: { "value": "118CD", "name": "WARANG CITI SMALL LETTER ENY", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AD", "lowercase_mapping": "", "titlecase_mapping": "118AD", "symbol": "\u18CD" }, 71886: { "value": "118CE", "name": "WARANG CITI SMALL LETTER YUJ", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AE", "lowercase_mapping": "", "titlecase_mapping": "118AE", "symbol": "\u18CE" }, 71887: { "value": "118CF", "name": "WARANG CITI SMALL LETTER UC", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118AF", "lowercase_mapping": "", "titlecase_mapping": "118AF", "symbol": "\u18CF" }, 71888: { "value": "118D0", "name": "WARANG CITI SMALL LETTER ENN", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B0", "lowercase_mapping": "", "titlecase_mapping": "118B0", "symbol": "\u18D0" }, 71889: { "value": "118D1", "name": "WARANG CITI SMALL LETTER ODD", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B1", "lowercase_mapping": "", "titlecase_mapping": "118B1", "symbol": "\u18D1" }, 71890: { "value": "118D2", "name": "WARANG CITI SMALL LETTER TTE", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B2", "lowercase_mapping": "", "titlecase_mapping": "118B2", "symbol": "\u18D2" }, 71891: { "value": "118D3", "name": "WARANG CITI SMALL LETTER NUNG", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B3", "lowercase_mapping": "", "titlecase_mapping": "118B3", "symbol": "\u18D3" }, 71892: { "value": "118D4", "name": "WARANG CITI SMALL LETTER DA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B4", "lowercase_mapping": "", "titlecase_mapping": "118B4", "symbol": "\u18D4" }, 71893: { "value": "118D5", "name": "WARANG CITI SMALL LETTER AT", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B5", "lowercase_mapping": "", "titlecase_mapping": "118B5", "symbol": "\u18D5" }, 71894: { "value": "118D6", "name": "WARANG CITI SMALL LETTER AM", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B6", "lowercase_mapping": "", "titlecase_mapping": "118B6", "symbol": "\u18D6" }, 71895: { "value": "118D7", "name": "WARANG CITI SMALL LETTER BU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B7", "lowercase_mapping": "", "titlecase_mapping": "118B7", "symbol": "\u18D7" }, 71896: { "value": "118D8", "name": "WARANG CITI SMALL LETTER PU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B8", "lowercase_mapping": "", "titlecase_mapping": "118B8", "symbol": "\u18D8" }, 71897: { "value": "118D9", "name": "WARANG CITI SMALL LETTER HIYO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118B9", "lowercase_mapping": "", "titlecase_mapping": "118B9", "symbol": "\u18D9" }, 71898: { "value": "118DA", "name": "WARANG CITI SMALL LETTER HOLO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BA", "lowercase_mapping": "", "titlecase_mapping": "118BA", "symbol": "\u18DA" }, 71899: { "value": "118DB", "name": "WARANG CITI SMALL LETTER HORR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BB", "lowercase_mapping": "", "titlecase_mapping": "118BB", "symbol": "\u18DB" }, 71900: { "value": "118DC", "name": "WARANG CITI SMALL LETTER HAR", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BC", "lowercase_mapping": "", "titlecase_mapping": "118BC", "symbol": "\u18DC" }, 71901: { "value": "118DD", "name": "WARANG CITI SMALL LETTER SSUU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BD", "lowercase_mapping": "", "titlecase_mapping": "118BD", "symbol": "\u18DD" }, 71902: { "value": "118DE", "name": "WARANG CITI SMALL LETTER SII", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BE", "lowercase_mapping": "", "titlecase_mapping": "118BE", "symbol": "\u18DE" }, 71903: { "value": "118DF", "name": "WARANG CITI SMALL LETTER VIYO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "118BF", "lowercase_mapping": "", "titlecase_mapping": "118BF", "symbol": "\u18DF" }, 119834: { "value": "1D41A", "name": "MATHEMATICAL BOLD SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41A" }, 119835: { "value": "1D41B", "name": "MATHEMATICAL BOLD SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41B" }, 119836: { "value": "1D41C", "name": "MATHEMATICAL BOLD SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41C" }, 119837: { "value": "1D41D", "name": "MATHEMATICAL BOLD SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41D" }, 119838: { "value": "1D41E", "name": "MATHEMATICAL BOLD SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41E" }, 119839: { "value": "1D41F", "name": "MATHEMATICAL BOLD SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD41F" }, 119840: { "value": "1D420", "name": "MATHEMATICAL BOLD SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD420" }, 119841: { "value": "1D421", "name": "MATHEMATICAL BOLD SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD421" }, 119842: { "value": "1D422", "name": "MATHEMATICAL BOLD SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD422" }, 119843: { "value": "1D423", "name": "MATHEMATICAL BOLD SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD423" }, 119844: { "value": "1D424", "name": "MATHEMATICAL BOLD SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD424" }, 119845: { "value": "1D425", "name": "MATHEMATICAL BOLD SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD425" }, 119846: { "value": "1D426", "name": "MATHEMATICAL BOLD SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD426" }, 119847: { "value": "1D427", "name": "MATHEMATICAL BOLD SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD427" }, 119848: { "value": "1D428", "name": "MATHEMATICAL BOLD SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD428" }, 119849: { "value": "1D429", "name": "MATHEMATICAL BOLD SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD429" }, 119850: { "value": "1D42A", "name": "MATHEMATICAL BOLD SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42A" }, 119851: { "value": "1D42B", "name": "MATHEMATICAL BOLD SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42B" }, 119852: { "value": "1D42C", "name": "MATHEMATICAL BOLD SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42C" }, 119853: { "value": "1D42D", "name": "MATHEMATICAL BOLD SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42D" }, 119854: { "value": "1D42E", "name": "MATHEMATICAL BOLD SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42E" }, 119855: { "value": "1D42F", "name": "MATHEMATICAL BOLD SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD42F" }, 119856: { "value": "1D430", "name": "MATHEMATICAL BOLD SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD430" }, 119857: { "value": "1D431", "name": "MATHEMATICAL BOLD SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD431" }, 119858: { "value": "1D432", "name": "MATHEMATICAL BOLD SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD432" }, 119859: { "value": "1D433", "name": "MATHEMATICAL BOLD SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD433" }, 119886: { "value": "1D44E", "name": "MATHEMATICAL ITALIC SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD44E" }, 119887: { "value": "1D44F", "name": "MATHEMATICAL ITALIC SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD44F" }, 119888: { "value": "1D450", "name": "MATHEMATICAL ITALIC SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD450" }, 119889: { "value": "1D451", "name": "MATHEMATICAL ITALIC SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD451" }, 119890: { "value": "1D452", "name": "MATHEMATICAL ITALIC SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD452" }, 119891: { "value": "1D453", "name": "MATHEMATICAL ITALIC SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD453" }, 119892: { "value": "1D454", "name": "MATHEMATICAL ITALIC SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD454" }, 119894: { "value": "1D456", "name": "MATHEMATICAL ITALIC SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD456" }, 119895: { "value": "1D457", "name": "MATHEMATICAL ITALIC SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD457" }, 119896: { "value": "1D458", "name": "MATHEMATICAL ITALIC SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD458" }, 119897: { "value": "1D459", "name": "MATHEMATICAL ITALIC SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD459" }, 119898: { "value": "1D45A", "name": "MATHEMATICAL ITALIC SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45A" }, 119899: { "value": "1D45B", "name": "MATHEMATICAL ITALIC SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45B" }, 119900: { "value": "1D45C", "name": "MATHEMATICAL ITALIC SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45C" }, 119901: { "value": "1D45D", "name": "MATHEMATICAL ITALIC SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45D" }, 119902: { "value": "1D45E", "name": "MATHEMATICAL ITALIC SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45E" }, 119903: { "value": "1D45F", "name": "MATHEMATICAL ITALIC SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD45F" }, 119904: { "value": "1D460", "name": "MATHEMATICAL ITALIC SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD460" }, 119905: { "value": "1D461", "name": "MATHEMATICAL ITALIC SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD461" }, 119906: { "value": "1D462", "name": "MATHEMATICAL ITALIC SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD462" }, 119907: { "value": "1D463", "name": "MATHEMATICAL ITALIC SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD463" }, 119908: { "value": "1D464", "name": "MATHEMATICAL ITALIC SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD464" }, 119909: { "value": "1D465", "name": "MATHEMATICAL ITALIC SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD465" }, 119910: { "value": "1D466", "name": "MATHEMATICAL ITALIC SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD466" }, 119911: { "value": "1D467", "name": "MATHEMATICAL ITALIC SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD467" }, 119938: { "value": "1D482", "name": "MATHEMATICAL BOLD ITALIC SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD482" }, 119939: { "value": "1D483", "name": "MATHEMATICAL BOLD ITALIC SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD483" }, 119940: { "value": "1D484", "name": "MATHEMATICAL BOLD ITALIC SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD484" }, 119941: { "value": "1D485", "name": "MATHEMATICAL BOLD ITALIC SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD485" }, 119942: { "value": "1D486", "name": "MATHEMATICAL BOLD ITALIC SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD486" }, 119943: { "value": "1D487", "name": "MATHEMATICAL BOLD ITALIC SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD487" }, 119944: { "value": "1D488", "name": "MATHEMATICAL BOLD ITALIC SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD488" }, 119945: { "value": "1D489", "name": "MATHEMATICAL BOLD ITALIC SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD489" }, 119946: { "value": "1D48A", "name": "MATHEMATICAL BOLD ITALIC SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48A" }, 119947: { "value": "1D48B", "name": "MATHEMATICAL BOLD ITALIC SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48B" }, 119948: { "value": "1D48C", "name": "MATHEMATICAL BOLD ITALIC SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48C" }, 119949: { "value": "1D48D", "name": "MATHEMATICAL BOLD ITALIC SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48D" }, 119950: { "value": "1D48E", "name": "MATHEMATICAL BOLD ITALIC SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48E" }, 119951: { "value": "1D48F", "name": "MATHEMATICAL BOLD ITALIC SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD48F" }, 119952: { "value": "1D490", "name": "MATHEMATICAL BOLD ITALIC SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD490" }, 119953: { "value": "1D491", "name": "MATHEMATICAL BOLD ITALIC SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD491" }, 119954: { "value": "1D492", "name": "MATHEMATICAL BOLD ITALIC SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD492" }, 119955: { "value": "1D493", "name": "MATHEMATICAL BOLD ITALIC SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD493" }, 119956: { "value": "1D494", "name": "MATHEMATICAL BOLD ITALIC SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD494" }, 119957: { "value": "1D495", "name": "MATHEMATICAL BOLD ITALIC SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD495" }, 119958: { "value": "1D496", "name": "MATHEMATICAL BOLD ITALIC SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD496" }, 119959: { "value": "1D497", "name": "MATHEMATICAL BOLD ITALIC SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD497" }, 119960: { "value": "1D498", "name": "MATHEMATICAL BOLD ITALIC SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD498" }, 119961: { "value": "1D499", "name": "MATHEMATICAL BOLD ITALIC SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD499" }, 119962: { "value": "1D49A", "name": "MATHEMATICAL BOLD ITALIC SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD49A" }, 119963: { "value": "1D49B", "name": "MATHEMATICAL BOLD ITALIC SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD49B" }, 119990: { "value": "1D4B6", "name": "MATHEMATICAL SCRIPT SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4B6" }, 119991: { "value": "1D4B7", "name": "MATHEMATICAL SCRIPT SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4B7" }, 119992: { "value": "1D4B8", "name": "MATHEMATICAL SCRIPT SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4B8" }, 119993: { "value": "1D4B9", "name": "MATHEMATICAL SCRIPT SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4B9" }, 119995: { "value": "1D4BB", "name": "MATHEMATICAL SCRIPT SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4BB" }, 119997: { "value": "1D4BD", "name": "MATHEMATICAL SCRIPT SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4BD" }, 119998: { "value": "1D4BE", "name": "MATHEMATICAL SCRIPT SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4BE" }, 119999: { "value": "1D4BF", "name": "MATHEMATICAL SCRIPT SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4BF" }, 120000: { "value": "1D4C0", "name": "MATHEMATICAL SCRIPT SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C0" }, 120001: { "value": "1D4C1", "name": "MATHEMATICAL SCRIPT SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C1" }, 120002: { "value": "1D4C2", "name": "MATHEMATICAL SCRIPT SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C2" }, 120003: { "value": "1D4C3", "name": "MATHEMATICAL SCRIPT SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C3" }, 120005: { "value": "1D4C5", "name": "MATHEMATICAL SCRIPT SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C5" }, 120006: { "value": "1D4C6", "name": "MATHEMATICAL SCRIPT SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C6" }, 120007: { "value": "1D4C7", "name": "MATHEMATICAL SCRIPT SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C7" }, 120008: { "value": "1D4C8", "name": "MATHEMATICAL SCRIPT SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C8" }, 120009: { "value": "1D4C9", "name": "MATHEMATICAL SCRIPT SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4C9" }, 120010: { "value": "1D4CA", "name": "MATHEMATICAL SCRIPT SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CA" }, 120011: { "value": "1D4CB", "name": "MATHEMATICAL SCRIPT SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CB" }, 120012: { "value": "1D4CC", "name": "MATHEMATICAL SCRIPT SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CC" }, 120013: { "value": "1D4CD", "name": "MATHEMATICAL SCRIPT SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CD" }, 120014: { "value": "1D4CE", "name": "MATHEMATICAL SCRIPT SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CE" }, 120015: { "value": "1D4CF", "name": "MATHEMATICAL SCRIPT SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4CF" }, 120042: { "value": "1D4EA", "name": "MATHEMATICAL BOLD SCRIPT SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4EA" }, 120043: { "value": "1D4EB", "name": "MATHEMATICAL BOLD SCRIPT SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4EB" }, 120044: { "value": "1D4EC", "name": "MATHEMATICAL BOLD SCRIPT SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4EC" }, 120045: { "value": "1D4ED", "name": "MATHEMATICAL BOLD SCRIPT SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4ED" }, 120046: { "value": "1D4EE", "name": "MATHEMATICAL BOLD SCRIPT SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4EE" }, 120047: { "value": "1D4EF", "name": "MATHEMATICAL BOLD SCRIPT SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4EF" }, 120048: { "value": "1D4F0", "name": "MATHEMATICAL BOLD SCRIPT SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F0" }, 120049: { "value": "1D4F1", "name": "MATHEMATICAL BOLD SCRIPT SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F1" }, 120050: { "value": "1D4F2", "name": "MATHEMATICAL BOLD SCRIPT SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F2" }, 120051: { "value": "1D4F3", "name": "MATHEMATICAL BOLD SCRIPT SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F3" }, 120052: { "value": "1D4F4", "name": "MATHEMATICAL BOLD SCRIPT SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F4" }, 120053: { "value": "1D4F5", "name": "MATHEMATICAL BOLD SCRIPT SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F5" }, 120054: { "value": "1D4F6", "name": "MATHEMATICAL BOLD SCRIPT SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F6" }, 120055: { "value": "1D4F7", "name": "MATHEMATICAL BOLD SCRIPT SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F7" }, 120056: { "value": "1D4F8", "name": "MATHEMATICAL BOLD SCRIPT SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F8" }, 120057: { "value": "1D4F9", "name": "MATHEMATICAL BOLD SCRIPT SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4F9" }, 120058: { "value": "1D4FA", "name": "MATHEMATICAL BOLD SCRIPT SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FA" }, 120059: { "value": "1D4FB", "name": "MATHEMATICAL BOLD SCRIPT SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FB" }, 120060: { "value": "1D4FC", "name": "MATHEMATICAL BOLD SCRIPT SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FC" }, 120061: { "value": "1D4FD", "name": "MATHEMATICAL BOLD SCRIPT SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FD" }, 120062: { "value": "1D4FE", "name": "MATHEMATICAL BOLD SCRIPT SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FE" }, 120063: { "value": "1D4FF", "name": "MATHEMATICAL BOLD SCRIPT SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD4FF" }, 120064: { "value": "1D500", "name": "MATHEMATICAL BOLD SCRIPT SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD500" }, 120065: { "value": "1D501", "name": "MATHEMATICAL BOLD SCRIPT SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD501" }, 120066: { "value": "1D502", "name": "MATHEMATICAL BOLD SCRIPT SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD502" }, 120067: { "value": "1D503", "name": "MATHEMATICAL BOLD SCRIPT SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD503" }, 120094: { "value": "1D51E", "name": "MATHEMATICAL FRAKTUR SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD51E" }, 120095: { "value": "1D51F", "name": "MATHEMATICAL FRAKTUR SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD51F" }, 120096: { "value": "1D520", "name": "MATHEMATICAL FRAKTUR SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD520" }, 120097: { "value": "1D521", "name": "MATHEMATICAL FRAKTUR SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD521" }, 120098: { "value": "1D522", "name": "MATHEMATICAL FRAKTUR SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD522" }, 120099: { "value": "1D523", "name": "MATHEMATICAL FRAKTUR SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD523" }, 120100: { "value": "1D524", "name": "MATHEMATICAL FRAKTUR SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD524" }, 120101: { "value": "1D525", "name": "MATHEMATICAL FRAKTUR SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD525" }, 120102: { "value": "1D526", "name": "MATHEMATICAL FRAKTUR SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD526" }, 120103: { "value": "1D527", "name": "MATHEMATICAL FRAKTUR SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD527" }, 120104: { "value": "1D528", "name": "MATHEMATICAL FRAKTUR SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD528" }, 120105: { "value": "1D529", "name": "MATHEMATICAL FRAKTUR SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD529" }, 120106: { "value": "1D52A", "name": "MATHEMATICAL FRAKTUR SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52A" }, 120107: { "value": "1D52B", "name": "MATHEMATICAL FRAKTUR SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52B" }, 120108: { "value": "1D52C", "name": "MATHEMATICAL FRAKTUR SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52C" }, 120109: { "value": "1D52D", "name": "MATHEMATICAL FRAKTUR SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52D" }, 120110: { "value": "1D52E", "name": "MATHEMATICAL FRAKTUR SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52E" }, 120111: { "value": "1D52F", "name": "MATHEMATICAL FRAKTUR SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD52F" }, 120112: { "value": "1D530", "name": "MATHEMATICAL FRAKTUR SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD530" }, 120113: { "value": "1D531", "name": "MATHEMATICAL FRAKTUR SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD531" }, 120114: { "value": "1D532", "name": "MATHEMATICAL FRAKTUR SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD532" }, 120115: { "value": "1D533", "name": "MATHEMATICAL FRAKTUR SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD533" }, 120116: { "value": "1D534", "name": "MATHEMATICAL FRAKTUR SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD534" }, 120117: { "value": "1D535", "name": "MATHEMATICAL FRAKTUR SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD535" }, 120118: { "value": "1D536", "name": "MATHEMATICAL FRAKTUR SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD536" }, 120119: { "value": "1D537", "name": "MATHEMATICAL FRAKTUR SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD537" }, 120146: { "value": "1D552", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD552" }, 120147: { "value": "1D553", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD553" }, 120148: { "value": "1D554", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD554" }, 120149: { "value": "1D555", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD555" }, 120150: { "value": "1D556", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD556" }, 120151: { "value": "1D557", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD557" }, 120152: { "value": "1D558", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD558" }, 120153: { "value": "1D559", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD559" }, 120154: { "value": "1D55A", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55A" }, 120155: { "value": "1D55B", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55B" }, 120156: { "value": "1D55C", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55C" }, 120157: { "value": "1D55D", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55D" }, 120158: { "value": "1D55E", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55E" }, 120159: { "value": "1D55F", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD55F" }, 120160: { "value": "1D560", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD560" }, 120161: { "value": "1D561", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD561" }, 120162: { "value": "1D562", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD562" }, 120163: { "value": "1D563", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD563" }, 120164: { "value": "1D564", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD564" }, 120165: { "value": "1D565", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD565" }, 120166: { "value": "1D566", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD566" }, 120167: { "value": "1D567", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD567" }, 120168: { "value": "1D568", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD568" }, 120169: { "value": "1D569", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD569" }, 120170: { "value": "1D56A", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD56A" }, 120171: { "value": "1D56B", "name": "MATHEMATICAL DOUBLE-STRUCK SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD56B" }, 120198: { "value": "1D586", "name": "MATHEMATICAL BOLD FRAKTUR SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD586" }, 120199: { "value": "1D587", "name": "MATHEMATICAL BOLD FRAKTUR SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD587" }, 120200: { "value": "1D588", "name": "MATHEMATICAL BOLD FRAKTUR SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD588" }, 120201: { "value": "1D589", "name": "MATHEMATICAL BOLD FRAKTUR SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD589" }, 120202: { "value": "1D58A", "name": "MATHEMATICAL BOLD FRAKTUR SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58A" }, 120203: { "value": "1D58B", "name": "MATHEMATICAL BOLD FRAKTUR SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58B" }, 120204: { "value": "1D58C", "name": "MATHEMATICAL BOLD FRAKTUR SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58C" }, 120205: { "value": "1D58D", "name": "MATHEMATICAL BOLD FRAKTUR SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58D" }, 120206: { "value": "1D58E", "name": "MATHEMATICAL BOLD FRAKTUR SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58E" }, 120207: { "value": "1D58F", "name": "MATHEMATICAL BOLD FRAKTUR SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD58F" }, 120208: { "value": "1D590", "name": "MATHEMATICAL BOLD FRAKTUR SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD590" }, 120209: { "value": "1D591", "name": "MATHEMATICAL BOLD FRAKTUR SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD591" }, 120210: { "value": "1D592", "name": "MATHEMATICAL BOLD FRAKTUR SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD592" }, 120211: { "value": "1D593", "name": "MATHEMATICAL BOLD FRAKTUR SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD593" }, 120212: { "value": "1D594", "name": "MATHEMATICAL BOLD FRAKTUR SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD594" }, 120213: { "value": "1D595", "name": "MATHEMATICAL BOLD FRAKTUR SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD595" }, 120214: { "value": "1D596", "name": "MATHEMATICAL BOLD FRAKTUR SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD596" }, 120215: { "value": "1D597", "name": "MATHEMATICAL BOLD FRAKTUR SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD597" }, 120216: { "value": "1D598", "name": "MATHEMATICAL BOLD FRAKTUR SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD598" }, 120217: { "value": "1D599", "name": "MATHEMATICAL BOLD FRAKTUR SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD599" }, 120218: { "value": "1D59A", "name": "MATHEMATICAL BOLD FRAKTUR SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59A" }, 120219: { "value": "1D59B", "name": "MATHEMATICAL BOLD FRAKTUR SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59B" }, 120220: { "value": "1D59C", "name": "MATHEMATICAL BOLD FRAKTUR SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59C" }, 120221: { "value": "1D59D", "name": "MATHEMATICAL BOLD FRAKTUR SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59D" }, 120222: { "value": "1D59E", "name": "MATHEMATICAL BOLD FRAKTUR SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59E" }, 120223: { "value": "1D59F", "name": "MATHEMATICAL BOLD FRAKTUR SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD59F" }, 120250: { "value": "1D5BA", "name": "MATHEMATICAL SANS-SERIF SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BA" }, 120251: { "value": "1D5BB", "name": "MATHEMATICAL SANS-SERIF SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BB" }, 120252: { "value": "1D5BC", "name": "MATHEMATICAL SANS-SERIF SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BC" }, 120253: { "value": "1D5BD", "name": "MATHEMATICAL SANS-SERIF SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BD" }, 120254: { "value": "1D5BE", "name": "MATHEMATICAL SANS-SERIF SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BE" }, 120255: { "value": "1D5BF", "name": "MATHEMATICAL SANS-SERIF SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5BF" }, 120256: { "value": "1D5C0", "name": "MATHEMATICAL SANS-SERIF SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C0" }, 120257: { "value": "1D5C1", "name": "MATHEMATICAL SANS-SERIF SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C1" }, 120258: { "value": "1D5C2", "name": "MATHEMATICAL SANS-SERIF SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C2" }, 120259: { "value": "1D5C3", "name": "MATHEMATICAL SANS-SERIF SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C3" }, 120260: { "value": "1D5C4", "name": "MATHEMATICAL SANS-SERIF SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C4" }, 120261: { "value": "1D5C5", "name": "MATHEMATICAL SANS-SERIF SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C5" }, 120262: { "value": "1D5C6", "name": "MATHEMATICAL SANS-SERIF SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C6" }, 120263: { "value": "1D5C7", "name": "MATHEMATICAL SANS-SERIF SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C7" }, 120264: { "value": "1D5C8", "name": "MATHEMATICAL SANS-SERIF SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C8" }, 120265: { "value": "1D5C9", "name": "MATHEMATICAL SANS-SERIF SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5C9" }, 120266: { "value": "1D5CA", "name": "MATHEMATICAL SANS-SERIF SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CA" }, 120267: { "value": "1D5CB", "name": "MATHEMATICAL SANS-SERIF SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CB" }, 120268: { "value": "1D5CC", "name": "MATHEMATICAL SANS-SERIF SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CC" }, 120269: { "value": "1D5CD", "name": "MATHEMATICAL SANS-SERIF SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CD" }, 120270: { "value": "1D5CE", "name": "MATHEMATICAL SANS-SERIF SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CE" }, 120271: { "value": "1D5CF", "name": "MATHEMATICAL SANS-SERIF SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5CF" }, 120272: { "value": "1D5D0", "name": "MATHEMATICAL SANS-SERIF SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5D0" }, 120273: { "value": "1D5D1", "name": "MATHEMATICAL SANS-SERIF SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5D1" }, 120274: { "value": "1D5D2", "name": "MATHEMATICAL SANS-SERIF SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5D2" }, 120275: { "value": "1D5D3", "name": "MATHEMATICAL SANS-SERIF SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5D3" }, 120302: { "value": "1D5EE", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5EE" }, 120303: { "value": "1D5EF", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5EF" }, 120304: { "value": "1D5F0", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F0" }, 120305: { "value": "1D5F1", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F1" }, 120306: { "value": "1D5F2", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F2" }, 120307: { "value": "1D5F3", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F3" }, 120308: { "value": "1D5F4", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F4" }, 120309: { "value": "1D5F5", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F5" }, 120310: { "value": "1D5F6", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F6" }, 120311: { "value": "1D5F7", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F7" }, 120312: { "value": "1D5F8", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F8" }, 120313: { "value": "1D5F9", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5F9" }, 120314: { "value": "1D5FA", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FA" }, 120315: { "value": "1D5FB", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FB" }, 120316: { "value": "1D5FC", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FC" }, 120317: { "value": "1D5FD", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FD" }, 120318: { "value": "1D5FE", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FE" }, 120319: { "value": "1D5FF", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD5FF" }, 120320: { "value": "1D600", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD600" }, 120321: { "value": "1D601", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD601" }, 120322: { "value": "1D602", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD602" }, 120323: { "value": "1D603", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD603" }, 120324: { "value": "1D604", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD604" }, 120325: { "value": "1D605", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD605" }, 120326: { "value": "1D606", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD606" }, 120327: { "value": "1D607", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD607" }, 120354: { "value": "1D622", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD622" }, 120355: { "value": "1D623", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD623" }, 120356: { "value": "1D624", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD624" }, 120357: { "value": "1D625", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD625" }, 120358: { "value": "1D626", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD626" }, 120359: { "value": "1D627", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD627" }, 120360: { "value": "1D628", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD628" }, 120361: { "value": "1D629", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD629" }, 120362: { "value": "1D62A", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62A" }, 120363: { "value": "1D62B", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62B" }, 120364: { "value": "1D62C", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62C" }, 120365: { "value": "1D62D", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62D" }, 120366: { "value": "1D62E", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62E" }, 120367: { "value": "1D62F", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD62F" }, 120368: { "value": "1D630", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD630" }, 120369: { "value": "1D631", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD631" }, 120370: { "value": "1D632", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD632" }, 120371: { "value": "1D633", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD633" }, 120372: { "value": "1D634", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD634" }, 120373: { "value": "1D635", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD635" }, 120374: { "value": "1D636", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD636" }, 120375: { "value": "1D637", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD637" }, 120376: { "value": "1D638", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD638" }, 120377: { "value": "1D639", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD639" }, 120378: { "value": "1D63A", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD63A" }, 120379: { "value": "1D63B", "name": "MATHEMATICAL SANS-SERIF ITALIC SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD63B" }, 120406: { "value": "1D656", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD656" }, 120407: { "value": "1D657", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD657" }, 120408: { "value": "1D658", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD658" }, 120409: { "value": "1D659", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD659" }, 120410: { "value": "1D65A", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65A" }, 120411: { "value": "1D65B", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65B" }, 120412: { "value": "1D65C", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65C" }, 120413: { "value": "1D65D", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65D" }, 120414: { "value": "1D65E", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65E" }, 120415: { "value": "1D65F", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD65F" }, 120416: { "value": "1D660", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD660" }, 120417: { "value": "1D661", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD661" }, 120418: { "value": "1D662", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD662" }, 120419: { "value": "1D663", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD663" }, 120420: { "value": "1D664", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD664" }, 120421: { "value": "1D665", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD665" }, 120422: { "value": "1D666", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD666" }, 120423: { "value": "1D667", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD667" }, 120424: { "value": "1D668", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD668" }, 120425: { "value": "1D669", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD669" }, 120426: { "value": "1D66A", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66A" }, 120427: { "value": "1D66B", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66B" }, 120428: { "value": "1D66C", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66C" }, 120429: { "value": "1D66D", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66D" }, 120430: { "value": "1D66E", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66E" }, 120431: { "value": "1D66F", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD66F" }, 120458: { "value": "1D68A", "name": "MATHEMATICAL MONOSPACE SMALL A", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0061", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68A" }, 120459: { "value": "1D68B", "name": "MATHEMATICAL MONOSPACE SMALL B", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0062", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68B" }, 120460: { "value": "1D68C", "name": "MATHEMATICAL MONOSPACE SMALL C", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0063", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68C" }, 120461: { "value": "1D68D", "name": "MATHEMATICAL MONOSPACE SMALL D", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0064", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68D" }, 120462: { "value": "1D68E", "name": "MATHEMATICAL MONOSPACE SMALL E", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0065", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68E" }, 120463: { "value": "1D68F", "name": "MATHEMATICAL MONOSPACE SMALL F", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0066", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD68F" }, 120464: { "value": "1D690", "name": "MATHEMATICAL MONOSPACE SMALL G", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0067", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD690" }, 120465: { "value": "1D691", "name": "MATHEMATICAL MONOSPACE SMALL H", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0068", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD691" }, 120466: { "value": "1D692", "name": "MATHEMATICAL MONOSPACE SMALL I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0069", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD692" }, 120467: { "value": "1D693", "name": "MATHEMATICAL MONOSPACE SMALL J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD693" }, 120468: { "value": "1D694", "name": "MATHEMATICAL MONOSPACE SMALL K", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006B", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD694" }, 120469: { "value": "1D695", "name": "MATHEMATICAL MONOSPACE SMALL L", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006C", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD695" }, 120470: { "value": "1D696", "name": "MATHEMATICAL MONOSPACE SMALL M", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006D", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD696" }, 120471: { "value": "1D697", "name": "MATHEMATICAL MONOSPACE SMALL N", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006E", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD697" }, 120472: { "value": "1D698", "name": "MATHEMATICAL MONOSPACE SMALL O", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 006F", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD698" }, 120473: { "value": "1D699", "name": "MATHEMATICAL MONOSPACE SMALL P", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0070", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD699" }, 120474: { "value": "1D69A", "name": "MATHEMATICAL MONOSPACE SMALL Q", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0071", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69A" }, 120475: { "value": "1D69B", "name": "MATHEMATICAL MONOSPACE SMALL R", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0072", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69B" }, 120476: { "value": "1D69C", "name": "MATHEMATICAL MONOSPACE SMALL S", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0073", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69C" }, 120477: { "value": "1D69D", "name": "MATHEMATICAL MONOSPACE SMALL T", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0074", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69D" }, 120478: { "value": "1D69E", "name": "MATHEMATICAL MONOSPACE SMALL U", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0075", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69E" }, 120479: { "value": "1D69F", "name": "MATHEMATICAL MONOSPACE SMALL V", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0076", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD69F" }, 120480: { "value": "1D6A0", "name": "MATHEMATICAL MONOSPACE SMALL W", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0077", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A0" }, 120481: { "value": "1D6A1", "name": "MATHEMATICAL MONOSPACE SMALL X", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0078", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A1" }, 120482: { "value": "1D6A2", "name": "MATHEMATICAL MONOSPACE SMALL Y", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0079", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A2" }, 120483: { "value": "1D6A3", "name": "MATHEMATICAL MONOSPACE SMALL Z", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 007A", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A3" }, 120484: { "value": "1D6A4", "name": "MATHEMATICAL ITALIC SMALL DOTLESS I", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0131", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A4" }, 120485: { "value": "1D6A5", "name": "MATHEMATICAL ITALIC SMALL DOTLESS J", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 0237", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6A5" }, 120514: { "value": "1D6C2", "name": "MATHEMATICAL BOLD SMALL ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C2" }, 120515: { "value": "1D6C3", "name": "MATHEMATICAL BOLD SMALL BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C3" }, 120516: { "value": "1D6C4", "name": "MATHEMATICAL BOLD SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C4" }, 120517: { "value": "1D6C5", "name": "MATHEMATICAL BOLD SMALL DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C5" }, 120518: { "value": "1D6C6", "name": "MATHEMATICAL BOLD SMALL EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C6" }, 120519: { "value": "1D6C7", "name": "MATHEMATICAL BOLD SMALL ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C7" }, 120520: { "value": "1D6C8", "name": "MATHEMATICAL BOLD SMALL ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C8" }, 120521: { "value": "1D6C9", "name": "MATHEMATICAL BOLD SMALL THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6C9" }, 120522: { "value": "1D6CA", "name": "MATHEMATICAL BOLD SMALL IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CA" }, 120523: { "value": "1D6CB", "name": "MATHEMATICAL BOLD SMALL KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CB" }, 120524: { "value": "1D6CC", "name": "MATHEMATICAL BOLD SMALL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BB", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CC" }, 120525: { "value": "1D6CD", "name": "MATHEMATICAL BOLD SMALL MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CD" }, 120526: { "value": "1D6CE", "name": "MATHEMATICAL BOLD SMALL NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CE" }, 120527: { "value": "1D6CF", "name": "MATHEMATICAL BOLD SMALL XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6CF" }, 120528: { "value": "1D6D0", "name": "MATHEMATICAL BOLD SMALL OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D0" }, 120529: { "value": "1D6D1", "name": "MATHEMATICAL BOLD SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D1" }, 120530: { "value": "1D6D2", "name": "MATHEMATICAL BOLD SMALL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D2" }, 120531: { "value": "1D6D3", "name": "MATHEMATICAL BOLD SMALL FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D3" }, 120532: { "value": "1D6D4", "name": "MATHEMATICAL BOLD SMALL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D4" }, 120533: { "value": "1D6D5", "name": "MATHEMATICAL BOLD SMALL TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D5" }, 120534: { "value": "1D6D6", "name": "MATHEMATICAL BOLD SMALL UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D6" }, 120535: { "value": "1D6D7", "name": "MATHEMATICAL BOLD SMALL PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D7" }, 120536: { "value": "1D6D8", "name": "MATHEMATICAL BOLD SMALL CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D8" }, 120537: { "value": "1D6D9", "name": "MATHEMATICAL BOLD SMALL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6D9" }, 120538: { "value": "1D6DA", "name": "MATHEMATICAL BOLD SMALL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6DA" }, 120540: { "value": "1D6DC", "name": "MATHEMATICAL BOLD EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6DC" }, 120541: { "value": "1D6DD", "name": "MATHEMATICAL BOLD THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6DD" }, 120542: { "value": "1D6DE", "name": "MATHEMATICAL BOLD KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6DE" }, 120543: { "value": "1D6DF", "name": "MATHEMATICAL BOLD PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6DF" }, 120544: { "value": "1D6E0", "name": "MATHEMATICAL BOLD RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6E0" }, 120545: { "value": "1D6E1", "name": "MATHEMATICAL BOLD PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6E1" }, 120572: { "value": "1D6FC", "name": "MATHEMATICAL ITALIC SMALL ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6FC" }, 120573: { "value": "1D6FD", "name": "MATHEMATICAL ITALIC SMALL BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6FD" }, 120574: { "value": "1D6FE", "name": "MATHEMATICAL ITALIC SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6FE" }, 120575: { "value": "1D6FF", "name": "MATHEMATICAL ITALIC SMALL DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD6FF" }, 120576: { "value": "1D700", "name": "MATHEMATICAL ITALIC SMALL EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD700" }, 120577: { "value": "1D701", "name": "MATHEMATICAL ITALIC SMALL ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD701" }, 120578: { "value": "1D702", "name": "MATHEMATICAL ITALIC SMALL ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD702" }, 120579: { "value": "1D703", "name": "MATHEMATICAL ITALIC SMALL THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD703" }, 120580: { "value": "1D704", "name": "MATHEMATICAL ITALIC SMALL IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD704" }, 120581: { "value": "1D705", "name": "MATHEMATICAL ITALIC SMALL KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD705" }, 120582: { "value": "1D706", "name": "MATHEMATICAL ITALIC SMALL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BB", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD706" }, 120583: { "value": "1D707", "name": "MATHEMATICAL ITALIC SMALL MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD707" }, 120584: { "value": "1D708", "name": "MATHEMATICAL ITALIC SMALL NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD708" }, 120585: { "value": "1D709", "name": "MATHEMATICAL ITALIC SMALL XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD709" }, 120586: { "value": "1D70A", "name": "MATHEMATICAL ITALIC SMALL OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70A" }, 120587: { "value": "1D70B", "name": "MATHEMATICAL ITALIC SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70B" }, 120588: { "value": "1D70C", "name": "MATHEMATICAL ITALIC SMALL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70C" }, 120589: { "value": "1D70D", "name": "MATHEMATICAL ITALIC SMALL FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70D" }, 120590: { "value": "1D70E", "name": "MATHEMATICAL ITALIC SMALL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70E" }, 120591: { "value": "1D70F", "name": "MATHEMATICAL ITALIC SMALL TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD70F" }, 120592: { "value": "1D710", "name": "MATHEMATICAL ITALIC SMALL UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD710" }, 120593: { "value": "1D711", "name": "MATHEMATICAL ITALIC SMALL PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD711" }, 120594: { "value": "1D712", "name": "MATHEMATICAL ITALIC SMALL CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD712" }, 120595: { "value": "1D713", "name": "MATHEMATICAL ITALIC SMALL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD713" }, 120596: { "value": "1D714", "name": "MATHEMATICAL ITALIC SMALL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD714" }, 120598: { "value": "1D716", "name": "MATHEMATICAL ITALIC EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD716" }, 120599: { "value": "1D717", "name": "MATHEMATICAL ITALIC THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD717" }, 120600: { "value": "1D718", "name": "MATHEMATICAL ITALIC KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD718" }, 120601: { "value": "1D719", "name": "MATHEMATICAL ITALIC PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD719" }, 120602: { "value": "1D71A", "name": "MATHEMATICAL ITALIC RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD71A" }, 120603: { "value": "1D71B", "name": "MATHEMATICAL ITALIC PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD71B" }, 120630: { "value": "1D736", "name": "MATHEMATICAL BOLD ITALIC SMALL ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD736" }, 120631: { "value": "1D737", "name": "MATHEMATICAL BOLD ITALIC SMALL BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD737" }, 120632: { "value": "1D738", "name": "MATHEMATICAL BOLD ITALIC SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD738" }, 120633: { "value": "1D739", "name": "MATHEMATICAL BOLD ITALIC SMALL DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD739" }, 120634: { "value": "1D73A", "name": "MATHEMATICAL BOLD ITALIC SMALL EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73A" }, 120635: { "value": "1D73B", "name": "MATHEMATICAL BOLD ITALIC SMALL ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73B" }, 120636: { "value": "1D73C", "name": "MATHEMATICAL BOLD ITALIC SMALL ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73C" }, 120637: { "value": "1D73D", "name": "MATHEMATICAL BOLD ITALIC SMALL THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73D" }, 120638: { "value": "1D73E", "name": "MATHEMATICAL BOLD ITALIC SMALL IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73E" }, 120639: { "value": "1D73F", "name": "MATHEMATICAL BOLD ITALIC SMALL KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD73F" }, 120640: { "value": "1D740", "name": "MATHEMATICAL BOLD ITALIC SMALL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BB", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD740" }, 120641: { "value": "1D741", "name": "MATHEMATICAL BOLD ITALIC SMALL MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD741" }, 120642: { "value": "1D742", "name": "MATHEMATICAL BOLD ITALIC SMALL NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD742" }, 120643: { "value": "1D743", "name": "MATHEMATICAL BOLD ITALIC SMALL XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD743" }, 120644: { "value": "1D744", "name": "MATHEMATICAL BOLD ITALIC SMALL OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD744" }, 120645: { "value": "1D745", "name": "MATHEMATICAL BOLD ITALIC SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD745" }, 120646: { "value": "1D746", "name": "MATHEMATICAL BOLD ITALIC SMALL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD746" }, 120647: { "value": "1D747", "name": "MATHEMATICAL BOLD ITALIC SMALL FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD747" }, 120648: { "value": "1D748", "name": "MATHEMATICAL BOLD ITALIC SMALL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD748" }, 120649: { "value": "1D749", "name": "MATHEMATICAL BOLD ITALIC SMALL TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD749" }, 120650: { "value": "1D74A", "name": "MATHEMATICAL BOLD ITALIC SMALL UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD74A" }, 120651: { "value": "1D74B", "name": "MATHEMATICAL BOLD ITALIC SMALL PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD74B" }, 120652: { "value": "1D74C", "name": "MATHEMATICAL BOLD ITALIC SMALL CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD74C" }, 120653: { "value": "1D74D", "name": "MATHEMATICAL BOLD ITALIC SMALL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD74D" }, 120654: { "value": "1D74E", "name": "MATHEMATICAL BOLD ITALIC SMALL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD74E" }, 120656: { "value": "1D750", "name": "MATHEMATICAL BOLD ITALIC EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD750" }, 120657: { "value": "1D751", "name": "MATHEMATICAL BOLD ITALIC THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD751" }, 120658: { "value": "1D752", "name": "MATHEMATICAL BOLD ITALIC KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD752" }, 120659: { "value": "1D753", "name": "MATHEMATICAL BOLD ITALIC PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD753" }, 120660: { "value": "1D754", "name": "MATHEMATICAL BOLD ITALIC RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD754" }, 120661: { "value": "1D755", "name": "MATHEMATICAL BOLD ITALIC PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD755" }, 120688: { "value": "1D770", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD770" }, 120689: { "value": "1D771", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD771" }, 120690: { "value": "1D772", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD772" }, 120691: { "value": "1D773", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD773" }, 120692: { "value": "1D774", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD774" }, 120693: { "value": "1D775", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD775" }, 120694: { "value": "1D776", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD776" }, 120695: { "value": "1D777", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD777" }, 120696: { "value": "1D778", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD778" }, 120697: { "value": "1D779", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD779" }, 120698: { "value": "1D77A", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BB", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77A" }, 120699: { "value": "1D77B", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77B" }, 120700: { "value": "1D77C", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77C" }, 120701: { "value": "1D77D", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77D" }, 120702: { "value": "1D77E", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77E" }, 120703: { "value": "1D77F", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD77F" }, 120704: { "value": "1D780", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD780" }, 120705: { "value": "1D781", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD781" }, 120706: { "value": "1D782", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD782" }, 120707: { "value": "1D783", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD783" }, 120708: { "value": "1D784", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD784" }, 120709: { "value": "1D785", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD785" }, 120710: { "value": "1D786", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD786" }, 120711: { "value": "1D787", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD787" }, 120712: { "value": "1D788", "name": "MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD788" }, 120714: { "value": "1D78A", "name": "MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78A" }, 120715: { "value": "1D78B", "name": "MATHEMATICAL SANS-SERIF BOLD THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78B" }, 120716: { "value": "1D78C", "name": "MATHEMATICAL SANS-SERIF BOLD KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78C" }, 120717: { "value": "1D78D", "name": "MATHEMATICAL SANS-SERIF BOLD PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78D" }, 120718: { "value": "1D78E", "name": "MATHEMATICAL SANS-SERIF BOLD RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78E" }, 120719: { "value": "1D78F", "name": "MATHEMATICAL SANS-SERIF BOLD PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD78F" }, 120746: { "value": "1D7AA", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AA" }, 120747: { "value": "1D7AB", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL BETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AB" }, 120748: { "value": "1D7AC", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL GAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AC" }, 120749: { "value": "1D7AD", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL DELTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AD" }, 120750: { "value": "1D7AE", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL EPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AE" }, 120751: { "value": "1D7AF", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ZETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7AF" }, 120752: { "value": "1D7B0", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B0" }, 120753: { "value": "1D7B1", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL THETA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B1" }, 120754: { "value": "1D7B2", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL IOTA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03B9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B2" }, 120755: { "value": "1D7B3", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL KAPPA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BA", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B3" }, 120756: { "value": "1D7B4", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL LAMDA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BB", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B4" }, 120757: { "value": "1D7B5", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL MU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BC", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B5" }, 120758: { "value": "1D7B6", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL NU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B6" }, 120759: { "value": "1D7B7", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL XI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BE", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B7" }, 120760: { "value": "1D7B8", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMICRON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03BF", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B8" }, 120761: { "value": "1D7B9", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7B9" }, 120762: { "value": "1D7BA", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL RHO", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BA" }, 120763: { "value": "1D7BB", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL FINAL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C2", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BB" }, 120764: { "value": "1D7BC", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL SIGMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C3", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BC" }, 120765: { "value": "1D7BD", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL TAU", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C4", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BD" }, 120766: { "value": "1D7BE", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL UPSILON", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BE" }, 120767: { "value": "1D7BF", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7BF" }, 120768: { "value": "1D7C0", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL CHI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C7", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C0" }, 120769: { "value": "1D7C1", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PSI", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C8", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C1" }, 120770: { "value": "1D7C2", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03C9", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C2" }, 120772: { "value": "1D7C4", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C4" }, 120773: { "value": "1D7C5", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC THETA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C5" }, 120774: { "value": "1D7C6", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC KAPPA SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F0", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C6" }, 120775: { "value": "1D7C7", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC PHI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D5", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C7" }, 120776: { "value": "1D7C8", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC RHO SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03F1", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C8" }, 120777: { "value": "1D7C9", "name": "MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03D6", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7C9" }, 120779: { "value": "1D7CB", "name": "MATHEMATICAL BOLD SMALL DIGAMMA", "category": "Ll", "class": "0", "bidirectional_category": "L", "mapping": " 03DD", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "", "lowercase_mapping": "", "titlecase_mapping": "", "symbol": "\uD7CB" }, 125218: { "value": "1E922", "name": "ADLAM SMALL LETTER ALIF", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E900", "lowercase_mapping": "", "titlecase_mapping": "1E900", "symbol": "\uE922" }, 125219: { "value": "1E923", "name": "ADLAM SMALL LETTER DAALI", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E901", "lowercase_mapping": "", "titlecase_mapping": "1E901", "symbol": "\uE923" }, 125220: { "value": "1E924", "name": "ADLAM SMALL LETTER LAAM", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E902", "lowercase_mapping": "", "titlecase_mapping": "1E902", "symbol": "\uE924" }, 125221: { "value": "1E925", "name": "ADLAM SMALL LETTER MIIM", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E903", "lowercase_mapping": "", "titlecase_mapping": "1E903", "symbol": "\uE925" }, 125222: { "value": "1E926", "name": "ADLAM SMALL LETTER BA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E904", "lowercase_mapping": "", "titlecase_mapping": "1E904", "symbol": "\uE926" }, 125223: { "value": "1E927", "name": "ADLAM SMALL LETTER SINNYIIYHE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E905", "lowercase_mapping": "", "titlecase_mapping": "1E905", "symbol": "\uE927" }, 125224: { "value": "1E928", "name": "ADLAM SMALL LETTER PE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E906", "lowercase_mapping": "", "titlecase_mapping": "1E906", "symbol": "\uE928" }, 125225: { "value": "1E929", "name": "ADLAM SMALL LETTER BHE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E907", "lowercase_mapping": "", "titlecase_mapping": "1E907", "symbol": "\uE929" }, 125226: { "value": "1E92A", "name": "ADLAM SMALL LETTER RA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E908", "lowercase_mapping": "", "titlecase_mapping": "1E908", "symbol": "\uE92A" }, 125227: { "value": "1E92B", "name": "ADLAM SMALL LETTER E", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E909", "lowercase_mapping": "", "titlecase_mapping": "1E909", "symbol": "\uE92B" }, 125228: { "value": "1E92C", "name": "ADLAM SMALL LETTER FA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90A", "lowercase_mapping": "", "titlecase_mapping": "1E90A", "symbol": "\uE92C" }, 125229: { "value": "1E92D", "name": "ADLAM SMALL LETTER I", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90B", "lowercase_mapping": "", "titlecase_mapping": "1E90B", "symbol": "\uE92D" }, 125230: { "value": "1E92E", "name": "ADLAM SMALL LETTER O", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90C", "lowercase_mapping": "", "titlecase_mapping": "1E90C", "symbol": "\uE92E" }, 125231: { "value": "1E92F", "name": "ADLAM SMALL LETTER DHA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90D", "lowercase_mapping": "", "titlecase_mapping": "1E90D", "symbol": "\uE92F" }, 125232: { "value": "1E930", "name": "ADLAM SMALL LETTER YHE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90E", "lowercase_mapping": "", "titlecase_mapping": "1E90E", "symbol": "\uE930" }, 125233: { "value": "1E931", "name": "ADLAM SMALL LETTER WAW", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E90F", "lowercase_mapping": "", "titlecase_mapping": "1E90F", "symbol": "\uE931" }, 125234: { "value": "1E932", "name": "ADLAM SMALL LETTER NUN", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E910", "lowercase_mapping": "", "titlecase_mapping": "1E910", "symbol": "\uE932" }, 125235: { "value": "1E933", "name": "ADLAM SMALL LETTER KAF", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E911", "lowercase_mapping": "", "titlecase_mapping": "1E911", "symbol": "\uE933" }, 125236: { "value": "1E934", "name": "ADLAM SMALL LETTER YA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E912", "lowercase_mapping": "", "titlecase_mapping": "1E912", "symbol": "\uE934" }, 125237: { "value": "1E935", "name": "ADLAM SMALL LETTER U", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E913", "lowercase_mapping": "", "titlecase_mapping": "1E913", "symbol": "\uE935" }, 125238: { "value": "1E936", "name": "ADLAM SMALL LETTER JIIM", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E914", "lowercase_mapping": "", "titlecase_mapping": "1E914", "symbol": "\uE936" }, 125239: { "value": "1E937", "name": "ADLAM SMALL LETTER CHI", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E915", "lowercase_mapping": "", "titlecase_mapping": "1E915", "symbol": "\uE937" }, 125240: { "value": "1E938", "name": "ADLAM SMALL LETTER HA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E916", "lowercase_mapping": "", "titlecase_mapping": "1E916", "symbol": "\uE938" }, 125241: { "value": "1E939", "name": "ADLAM SMALL LETTER QAAF", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E917", "lowercase_mapping": "", "titlecase_mapping": "1E917", "symbol": "\uE939" }, 125242: { "value": "1E93A", "name": "ADLAM SMALL LETTER GA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E918", "lowercase_mapping": "", "titlecase_mapping": "1E918", "symbol": "\uE93A" }, 125243: { "value": "1E93B", "name": "ADLAM SMALL LETTER NYA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E919", "lowercase_mapping": "", "titlecase_mapping": "1E919", "symbol": "\uE93B" }, 125244: { "value": "1E93C", "name": "ADLAM SMALL LETTER TU", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91A", "lowercase_mapping": "", "titlecase_mapping": "1E91A", "symbol": "\uE93C" }, 125245: { "value": "1E93D", "name": "ADLAM SMALL LETTER NHA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91B", "lowercase_mapping": "", "titlecase_mapping": "1E91B", "symbol": "\uE93D" }, 125246: { "value": "1E93E", "name": "ADLAM SMALL LETTER VA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91C", "lowercase_mapping": "", "titlecase_mapping": "1E91C", "symbol": "\uE93E" }, 125247: { "value": "1E93F", "name": "ADLAM SMALL LETTER KHA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91D", "lowercase_mapping": "", "titlecase_mapping": "1E91D", "symbol": "\uE93F" }, 125248: { "value": "1E940", "name": "ADLAM SMALL LETTER GBE", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91E", "lowercase_mapping": "", "titlecase_mapping": "1E91E", "symbol": "\uE940" }, 125249: { "value": "1E941", "name": "ADLAM SMALL LETTER ZAL", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E91F", "lowercase_mapping": "", "titlecase_mapping": "1E91F", "symbol": "\uE941" }, 125250: { "value": "1E942", "name": "ADLAM SMALL LETTER KPO", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E920", "lowercase_mapping": "", "titlecase_mapping": "1E920", "symbol": "\uE942" }, 125251: { "value": "1E943", "name": "ADLAM SMALL LETTER SHA", "category": "Ll", "class": "0", "bidirectional_category": "R", "mapping": "", "decimal_digit_value": "", "digit_value": "", "numeric_value": "", "mirrored": "N", "unicode_name": "", "comment": "", "uppercase_mapping": "1E921", "lowercase_mapping": "", "titlecase_mapping": "1E921", "symbol": "\uE943" } }; -},{}],684:[function(require,module,exports){ +},{}],690:[function(require,module,exports){ "use strict"; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -126098,7 +126405,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol } })(undefined); -},{}],685:[function(require,module,exports){ +},{}],691:[function(require,module,exports){ (function (global){ 'use strict'; @@ -126346,7 +126653,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol })(undefined); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],686:[function(require,module,exports){ +},{}],692:[function(require,module,exports){ (function (global){ 'use strict'; @@ -126418,9 +126725,9 @@ function config(name) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],687:[function(require,module,exports){ -arguments[4][608][0].apply(exports,arguments) -},{"dup":608}],688:[function(require,module,exports){ +},{}],693:[function(require,module,exports){ +arguments[4][614][0].apply(exports,arguments) +},{"dup":614}],694:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -126429,7 +126736,7 @@ module.exports = function isBuffer(arg) { return arg && (typeof arg === 'undefined' ? 'undefined' : _typeof(arg)) === 'object' && typeof arg.copy === 'function' && typeof arg.fill === 'function' && typeof arg.readUInt8 === 'function'; }; -},{}],689:[function(require,module,exports){ +},{}],695:[function(require,module,exports){ (function (process,global){ 'use strict'; @@ -126981,7 +127288,7 @@ function hasOwnProperty(obj, prop) { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./support/isBuffer":688,"_process":638,"inherits":687}],690:[function(require,module,exports){ +},{"./support/isBuffer":694,"_process":644,"inherits":693}],696:[function(require,module,exports){ 'use strict'; var v1 = require('./v1'); @@ -126993,7 +127300,7 @@ uuid.v4 = v4; module.exports = uuid; -},{"./v1":693,"./v4":694}],691:[function(require,module,exports){ +},{"./v1":699,"./v4":700}],697:[function(require,module,exports){ 'use strict'; /** @@ -127013,7 +127320,7 @@ function bytesToUuid(buf, offset) { module.exports = bytesToUuid; -},{}],692:[function(require,module,exports){ +},{}],698:[function(require,module,exports){ (function (global){ "use strict"; @@ -127052,7 +127359,7 @@ if (!rng) { module.exports = rng; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],693:[function(require,module,exports){ +},{}],699:[function(require,module,exports){ 'use strict'; var rng = require('./lib/rng'); @@ -127154,7 +127461,7 @@ function v1(options, buf, offset) { module.exports = v1; -},{"./lib/bytesToUuid":691,"./lib/rng":692}],694:[function(require,module,exports){ +},{"./lib/bytesToUuid":697,"./lib/rng":698}],700:[function(require,module,exports){ 'use strict'; var rng = require('./lib/rng'); @@ -127187,7 +127494,7 @@ function v4(options, buf, offset) { module.exports = v4; -},{"./lib/bytesToUuid":691,"./lib/rng":692}],695:[function(require,module,exports){ +},{"./lib/bytesToUuid":697,"./lib/rng":698}],701:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -127327,7 +127634,7 @@ exports.createContext = Script.createContext = function (context) { return copy; }; -},{"indexof":607}],696:[function(require,module,exports){ +},{"indexof":613}],702:[function(require,module,exports){ 'use strict'; // Base58 encoding/decoding @@ -127389,7 +127696,7 @@ exports.createContext = Script.createContext = function (context) { } })(typeof module !== 'undefined' && typeof module.exports !== 'undefined'); -},{}],697:[function(require,module,exports){ +},{}],703:[function(require,module,exports){ 'use strict'; (function (isNode) { @@ -127428,7 +127735,7 @@ exports.createContext = Script.createContext = function (context) { } })(typeof module !== 'undefined' && typeof module.exports !== 'undefined'); -},{"jssha":612}],698:[function(require,module,exports){ +},{"jssha":618}],704:[function(require,module,exports){ 'use strict'; (function (isNode) { @@ -127507,7 +127814,7 @@ exports.createContext = Script.createContext = function (context) { } })(typeof module !== 'undefined' && typeof module.exports !== 'undefined'); -},{}],699:[function(require,module,exports){ +},{}],705:[function(require,module,exports){ 'use strict'; (function (isNode) { @@ -127577,7 +127884,7 @@ exports.createContext = Script.createContext = function (context) { } })(typeof module !== 'undefined' && typeof module.exports !== 'undefined'); -},{"./base58":696,"./crypto_utils":697,"./currencies":698}],700:[function(require,module,exports){ +},{"./base58":702,"./crypto_utils":703,"./currencies":704}],706:[function(require,module,exports){ 'use strict'; /* @@ -128641,4 +128948,4 @@ exports.uriFragmentInHTMLData = exports.uriComponentInHTMLData; */ exports.uriFragmentInHTMLComment = exports.uriComponentInHTMLComment; -},{}]},{},[73]); +},{}]},{},[76]); diff --git a/dist/phishing.html b/dist/phishing.html index c81b6ba0e7..575d3ff416 100644 --- a/dist/phishing.html +++ b/dist/phishing.html @@ -98,13 +98,13 @@ MyEtherWallet -

      3.21.08

      +

      3.21.09

      - + diff --git a/package-lock.json b/package-lock.json index a811b999ac..5c0afb4db5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,8 +10,8 @@ "integrity": "sha1-wQI3G27Dp887hHygDCC7D85Mbeo=", "dev": true, "requires": { - "jsonparse": "1.3.1", - "through": "2.3.8" + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" } }, "acorn": { @@ -25,9 +25,9 @@ "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", "requires": { - "kind-of": "3.2.2", - "longest": "1.0.1", - "repeat-string": "1.6.1" + "kind-of": "^3.0.2", + "longest": "^1.0.1", + "repeat-string": "^1.5.2" }, "dependencies": { "kind-of": { @@ -35,7 +35,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -69,7 +69,7 @@ "integrity": "sha512-SudfI0R0Hhtvngc0X3wFChXQGmw90o95i+QPZ11LhJJryneTq8LR3+3E4E7jgHA4fu6TcswgcfZ9+cp5ckbUHw==", "dev": true, "requires": { - "angular": "1.6.8" + "angular": ">=1.2.26 <=1.6" } }, "angular-translate-handler-log": { @@ -78,7 +78,7 @@ "integrity": "sha512-1aGo/8KmcF1qNM9k8KXjx1AdUO5qjrAuBzYeurKAhpb1eFf+7cqcZ7QUrGbhQ2+N6RQG/0k2ithMgLku1uHsfw==", "dev": true, "requires": { - "angular-translate": "2.17.0" + "angular-translate": "~2.17.0" } }, "ansi-colors": { @@ -86,7 +86,7 @@ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.0.1.tgz", "integrity": "sha512-yopkAU0ZD/WQ56Tms3xLn6jRuX3SyUMAVi0FdmDIbmmnHW3jHiI1sQFdUl3gfVddjnrsP3Y6ywFKvCRopvoVIA==", "requires": { - "ansi-wrap": "0.1.0" + "ansi-wrap": "^0.1.0" } }, "ansi-cyan": { @@ -133,15 +133,15 @@ "resolved": "https://registry.npmjs.org/archiver/-/archiver-1.3.0.tgz", "integrity": "sha1-TyGU1tj5nfP1MeaIHxTxXVX6ryI=", "requires": { - "archiver-utils": "1.3.0", - "async": "2.6.0", - "buffer-crc32": "0.2.13", - "glob": "7.1.2", - "lodash": "4.17.4", - "readable-stream": "2.3.3", - "tar-stream": "1.5.5", - "walkdir": "0.0.11", - "zip-stream": "1.2.0" + "archiver-utils": "^1.3.0", + "async": "^2.0.0", + "buffer-crc32": "^0.2.1", + "glob": "^7.0.0", + "lodash": "^4.8.0", + "readable-stream": "^2.0.0", + "tar-stream": "^1.5.0", + "walkdir": "^0.0.11", + "zip-stream": "^1.1.0" } }, "archiver-utils": { @@ -149,12 +149,12 @@ "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-1.3.0.tgz", "integrity": "sha1-5QtMCccL89aA4y/xt5lOn52JUXQ=", "requires": { - "glob": "7.1.2", - "graceful-fs": "4.1.11", - "lazystream": "1.0.0", - "lodash": "4.17.4", - "normalize-path": "2.1.1", - "readable-stream": "2.3.3" + "glob": "^7.0.0", + "graceful-fs": "^4.1.0", + "lazystream": "^1.0.0", + "lodash": "^4.8.0", + "normalize-path": "^2.0.0", + "readable-stream": "^2.0.0" } }, "archy": { @@ -167,7 +167,7 @@ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=", "requires": { - "sprintf-js": "1.0.3" + "sprintf-js": "~1.0.2" } }, "arr-diff": { @@ -250,9 +250,9 @@ "integrity": "sha512-b/OsSjvWEo8Pi8H0zsDd2P6Uqo2TK2pH8gNLSJtNLM2Db0v2QaAZ0pBQJXVjAn4gBuugeVDr7s63ZogpUIwWDg==", "dev": true, "requires": { - "bn.js": "4.11.8", - "inherits": "2.0.3", - "minimalistic-assert": "1.0.0" + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" } }, "assert": { @@ -275,7 +275,7 @@ "integrity": "sha1-e9QXhNMkk5h66yOba04cV6hzuRc=", "dev": true, "requires": { - "acorn": "4.0.13" + "acorn": "^4.0.3" } }, "async": { @@ -283,7 +283,7 @@ "resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz", "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==", "requires": { - "lodash": "4.17.4" + "lodash": "^4.14.0" } }, "asynckit": { @@ -302,12 +302,12 @@ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.2.5.tgz", "integrity": "sha512-XqHfo8Ht0VU+T5P+eWEVoXza456KJ4l62BPewu3vpNf3LP9s2+zYXkXBznzYby4XeECXgG3N4i+hGvOhXErZmA==", "requires": { - "browserslist": "2.11.2", - "caniuse-lite": "1.0.30000792", - "normalize-range": "0.1.2", - "num2fraction": "1.2.2", - "postcss": "6.0.16", - "postcss-value-parser": "3.3.0" + "browserslist": "^2.11.1", + "caniuse-lite": "^1.0.30000791", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^6.0.16", + "postcss-value-parser": "^3.2.3" } }, "aws4": { @@ -321,9 +321,9 @@ "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", "requires": { - "chalk": "1.1.3", - "esutils": "2.0.2", - "js-tokens": "3.0.2" + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" } }, "babel-core": { @@ -331,25 +331,25 @@ "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz", "integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=", "requires": { - "babel-code-frame": "6.26.0", - "babel-generator": "6.26.0", - "babel-helpers": "6.24.1", - "babel-messages": "6.23.0", - "babel-register": "6.26.0", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0", - "babylon": "6.18.0", - "convert-source-map": "1.5.1", - "debug": "2.6.9", - "json5": "0.5.1", - "lodash": "4.17.4", - "minimatch": "3.0.4", - "path-is-absolute": "1.0.1", - "private": "0.1.8", - "slash": "1.0.0", - "source-map": "0.5.7" + "babel-code-frame": "^6.26.0", + "babel-generator": "^6.26.0", + "babel-helpers": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "convert-source-map": "^1.5.0", + "debug": "^2.6.8", + "json5": "^0.5.1", + "lodash": "^4.17.4", + "minimatch": "^3.0.4", + "path-is-absolute": "^1.0.1", + "private": "^0.1.7", + "slash": "^1.0.0", + "source-map": "^0.5.6" } }, "babel-generator": { @@ -357,14 +357,14 @@ "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz", "integrity": "sha1-rBriAHC3n248odMmlhMFN3TyDcU=", "requires": { - "babel-messages": "6.23.0", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0", - "detect-indent": "4.0.0", - "jsesc": "1.3.0", - "lodash": "4.17.4", - "source-map": "0.5.7", - "trim-right": "1.0.1" + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "detect-indent": "^4.0.0", + "jsesc": "^1.3.0", + "lodash": "^4.17.4", + "source-map": "^0.5.6", + "trim-right": "^1.0.1" }, "dependencies": { "jsesc": { @@ -379,9 +379,9 @@ "resolved": "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz", "integrity": "sha1-FMGeXxQte0fxmlJDHlKxzLxAozA=", "requires": { - "babel-runtime": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" } }, "babel-helper-builder-binary-assignment-operator-visitor": { @@ -389,9 +389,9 @@ "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz", "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=", "requires": { - "babel-helper-explode-assignable-expression": "6.24.1", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" + "babel-helper-explode-assignable-expression": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" } }, "babel-helper-call-delegate": { @@ -399,10 +399,10 @@ "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz", "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=", "requires": { - "babel-helper-hoist-variables": "6.24.1", - "babel-runtime": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" + "babel-helper-hoist-variables": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" } }, "babel-helper-define-map": { @@ -410,10 +410,10 @@ "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz", "integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=", "requires": { - "babel-helper-function-name": "6.24.1", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0", - "lodash": "4.17.4" + "babel-helper-function-name": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "lodash": "^4.17.4" } }, "babel-helper-explode-assignable-expression": { @@ -421,9 +421,9 @@ "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz", "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=", "requires": { - "babel-runtime": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" } }, "babel-helper-explode-class": { @@ -431,10 +431,10 @@ "resolved": "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz", "integrity": "sha1-fcKjkQ3uAHBW4eMdZAztPVTqqes=", "requires": { - "babel-helper-bindify-decorators": "6.24.1", - "babel-runtime": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" + "babel-helper-bindify-decorators": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" } }, "babel-helper-function-name": { @@ -442,11 +442,11 @@ "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", "requires": { - "babel-helper-get-function-arity": "6.24.1", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" + "babel-helper-get-function-arity": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" } }, "babel-helper-get-function-arity": { @@ -454,8 +454,8 @@ "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" } }, "babel-helper-hoist-variables": { @@ -463,8 +463,8 @@ "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz", "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=", "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" } }, "babel-helper-optimise-call-expression": { @@ -472,8 +472,8 @@ "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz", "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=", "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" } }, "babel-helper-regex": { @@ -481,9 +481,9 @@ "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz", "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=", "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0", - "lodash": "4.17.4" + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "lodash": "^4.17.4" } }, "babel-helper-remap-async-to-generator": { @@ -491,11 +491,11 @@ "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz", "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=", "requires": { - "babel-helper-function-name": "6.24.1", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" + "babel-helper-function-name": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" } }, "babel-helper-replace-supers": { @@ -503,12 +503,12 @@ "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz", "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=", "requires": { - "babel-helper-optimise-call-expression": "6.24.1", - "babel-messages": "6.23.0", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" + "babel-helper-optimise-call-expression": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" } }, "babel-helpers": { @@ -516,8 +516,8 @@ "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=", "requires": { - "babel-runtime": "6.26.0", - "babel-template": "6.26.0" + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" } }, "babel-messages": { @@ -525,7 +525,7 @@ "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-check-es2015-constants": { @@ -533,7 +533,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz", "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-syntax-async-functions": { @@ -601,9 +601,9 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz", "integrity": "sha1-8FiQAUX9PpkHpt3yjaWfIVJYpds=", "requires": { - "babel-helper-remap-async-to-generator": "6.24.1", - "babel-plugin-syntax-async-generators": "6.13.0", - "babel-runtime": "6.26.0" + "babel-helper-remap-async-to-generator": "^6.24.1", + "babel-plugin-syntax-async-generators": "^6.5.0", + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-async-to-generator": { @@ -611,9 +611,9 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz", "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=", "requires": { - "babel-helper-remap-async-to-generator": "6.24.1", - "babel-plugin-syntax-async-functions": "6.13.0", - "babel-runtime": "6.26.0" + "babel-helper-remap-async-to-generator": "^6.24.1", + "babel-plugin-syntax-async-functions": "^6.8.0", + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-class-constructor-call": { @@ -621,9 +621,9 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz", "integrity": "sha1-gNwoVQWsBn3LjWxl4vbxGrd2Xvk=", "requires": { - "babel-plugin-syntax-class-constructor-call": "6.18.0", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0" + "babel-plugin-syntax-class-constructor-call": "^6.18.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" } }, "babel-plugin-transform-class-properties": { @@ -631,10 +631,10 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz", "integrity": "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=", "requires": { - "babel-helper-function-name": "6.24.1", - "babel-plugin-syntax-class-properties": "6.13.0", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0" + "babel-helper-function-name": "^6.24.1", + "babel-plugin-syntax-class-properties": "^6.8.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" } }, "babel-plugin-transform-decorators": { @@ -642,11 +642,11 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz", "integrity": "sha1-eIAT2PjGtSIr33s0Q5Df13Vp4k0=", "requires": { - "babel-helper-explode-class": "6.24.1", - "babel-plugin-syntax-decorators": "6.13.0", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-types": "6.26.0" + "babel-helper-explode-class": "^6.24.1", + "babel-plugin-syntax-decorators": "^6.13.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-types": "^6.24.1" } }, "babel-plugin-transform-do-expressions": { @@ -654,8 +654,8 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz", "integrity": "sha1-KMyvkoEtlJws0SgfaQyP3EaK6bs=", "requires": { - "babel-plugin-syntax-do-expressions": "6.13.0", - "babel-runtime": "6.26.0" + "babel-plugin-syntax-do-expressions": "^6.8.0", + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-es2015-arrow-functions": { @@ -663,7 +663,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-es2015-block-scoped-functions": { @@ -671,7 +671,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz", "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-es2015-block-scoping": { @@ -679,11 +679,11 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz", "integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=", "requires": { - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0", - "lodash": "4.17.4" + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "lodash": "^4.17.4" } }, "babel-plugin-transform-es2015-classes": { @@ -691,15 +691,15 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz", "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=", "requires": { - "babel-helper-define-map": "6.26.0", - "babel-helper-function-name": "6.24.1", - "babel-helper-optimise-call-expression": "6.24.1", - "babel-helper-replace-supers": "6.24.1", - "babel-messages": "6.23.0", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" + "babel-helper-define-map": "^6.24.1", + "babel-helper-function-name": "^6.24.1", + "babel-helper-optimise-call-expression": "^6.24.1", + "babel-helper-replace-supers": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" } }, "babel-plugin-transform-es2015-computed-properties": { @@ -707,8 +707,8 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz", "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=", "requires": { - "babel-runtime": "6.26.0", - "babel-template": "6.26.0" + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" } }, "babel-plugin-transform-es2015-destructuring": { @@ -716,7 +716,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-es2015-duplicate-keys": { @@ -724,8 +724,8 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz", "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=", "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" } }, "babel-plugin-transform-es2015-for-of": { @@ -733,7 +733,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz", "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-es2015-function-name": { @@ -741,9 +741,9 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz", "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=", "requires": { - "babel-helper-function-name": "6.24.1", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" + "babel-helper-function-name": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" } }, "babel-plugin-transform-es2015-literals": { @@ -751,7 +751,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz", "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-es2015-modules-amd": { @@ -759,9 +759,9 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz", "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=", "requires": { - "babel-plugin-transform-es2015-modules-commonjs": "6.26.0", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0" + "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" } }, "babel-plugin-transform-es2015-modules-commonjs": { @@ -769,10 +769,10 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz", "integrity": "sha1-DYOUApt9xqvhqX7xgeAHWN0uXYo=", "requires": { - "babel-plugin-transform-strict-mode": "6.24.1", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-types": "6.26.0" + "babel-plugin-transform-strict-mode": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-types": "^6.26.0" } }, "babel-plugin-transform-es2015-modules-systemjs": { @@ -780,9 +780,9 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz", "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=", "requires": { - "babel-helper-hoist-variables": "6.24.1", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0" + "babel-helper-hoist-variables": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" } }, "babel-plugin-transform-es2015-modules-umd": { @@ -790,9 +790,9 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz", "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=", "requires": { - "babel-plugin-transform-es2015-modules-amd": "6.24.1", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0" + "babel-plugin-transform-es2015-modules-amd": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" } }, "babel-plugin-transform-es2015-object-super": { @@ -800,8 +800,8 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz", "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=", "requires": { - "babel-helper-replace-supers": "6.24.1", - "babel-runtime": "6.26.0" + "babel-helper-replace-supers": "^6.24.1", + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-es2015-parameters": { @@ -809,12 +809,12 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz", "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=", "requires": { - "babel-helper-call-delegate": "6.24.1", - "babel-helper-get-function-arity": "6.24.1", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" + "babel-helper-call-delegate": "^6.24.1", + "babel-helper-get-function-arity": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" } }, "babel-plugin-transform-es2015-shorthand-properties": { @@ -822,8 +822,8 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz", "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=", "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" } }, "babel-plugin-transform-es2015-spread": { @@ -831,7 +831,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz", "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-es2015-sticky-regex": { @@ -839,9 +839,9 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=", "requires": { - "babel-helper-regex": "6.26.0", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" + "babel-helper-regex": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" } }, "babel-plugin-transform-es2015-template-literals": { @@ -849,7 +849,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz", "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-es2015-typeof-symbol": { @@ -857,7 +857,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz", "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-es2015-unicode-regex": { @@ -865,9 +865,9 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=", "requires": { - "babel-helper-regex": "6.26.0", - "babel-runtime": "6.26.0", - "regexpu-core": "2.0.0" + "babel-helper-regex": "^6.24.1", + "babel-runtime": "^6.22.0", + "regexpu-core": "^2.0.0" } }, "babel-plugin-transform-es3-member-expression-literals": { @@ -875,7 +875,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es3-member-expression-literals/-/babel-plugin-transform-es3-member-expression-literals-6.22.0.tgz", "integrity": "sha1-cz00RPPsxBvvjtGmpOCWV7iWnrs=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-es3-property-literals": { @@ -883,7 +883,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.22.0.tgz", "integrity": "sha1-sgeNWELiKr9A9z6M3pzTcRq9V1g=", "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-exponentiation-operator": { @@ -891,9 +891,9 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz", "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=", "requires": { - "babel-helper-builder-binary-assignment-operator-visitor": "6.24.1", - "babel-plugin-syntax-exponentiation-operator": "6.13.0", - "babel-runtime": "6.26.0" + "babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1", + "babel-plugin-syntax-exponentiation-operator": "^6.8.0", + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-export-extensions": { @@ -901,8 +901,8 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz", "integrity": "sha1-U3OLR+deghhYnuqUbLvTkQm75lM=", "requires": { - "babel-plugin-syntax-export-extensions": "6.13.0", - "babel-runtime": "6.26.0" + "babel-plugin-syntax-export-extensions": "^6.8.0", + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-function-bind": { @@ -910,8 +910,8 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz", "integrity": "sha1-xvuOlqwpajELjPjqQBRiQH3fapc=", "requires": { - "babel-plugin-syntax-function-bind": "6.13.0", - "babel-runtime": "6.26.0" + "babel-plugin-syntax-function-bind": "^6.8.0", + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-object-rest-spread": { @@ -919,8 +919,8 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz", "integrity": "sha1-h11ryb52HFiirj/u5dxIldjH+SE=", "requires": { - "babel-plugin-syntax-object-rest-spread": "6.13.0", - "babel-runtime": "6.26.0" + "babel-plugin-syntax-object-rest-spread": "^6.8.0", + "babel-runtime": "^6.22.0" } }, "babel-plugin-transform-regenerator": { @@ -928,7 +928,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz", "integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=", "requires": { - "regenerator-transform": "0.10.1" + "regenerator-transform": "^0.10.0" } }, "babel-plugin-transform-strict-mode": { @@ -936,8 +936,8 @@ "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz", "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=", "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" } }, "babel-polyfill": { @@ -946,9 +946,9 @@ "integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=", "dev": true, "requires": { - "babel-runtime": "6.26.0", - "core-js": "2.5.3", - "regenerator-runtime": "0.10.5" + "babel-runtime": "^6.26.0", + "core-js": "^2.5.0", + "regenerator-runtime": "^0.10.5" }, "dependencies": { "regenerator-runtime": { @@ -965,36 +965,36 @@ "integrity": "sha512-W6VIyA6Ch9ePMI7VptNn2wBM6dbG0eSz25HEiL40nQXCsXGTGZSTZu1Iap+cj3Q0S5a7T9+529l/5Bkvd+afNA==", "dev": true, "requires": { - "babel-plugin-check-es2015-constants": "6.22.0", - "babel-plugin-syntax-trailing-function-commas": "6.22.0", - "babel-plugin-transform-async-to-generator": "6.24.1", - "babel-plugin-transform-es2015-arrow-functions": "6.22.0", - "babel-plugin-transform-es2015-block-scoped-functions": "6.22.0", - "babel-plugin-transform-es2015-block-scoping": "6.26.0", - "babel-plugin-transform-es2015-classes": "6.24.1", - "babel-plugin-transform-es2015-computed-properties": "6.24.1", - "babel-plugin-transform-es2015-destructuring": "6.23.0", - "babel-plugin-transform-es2015-duplicate-keys": "6.24.1", - "babel-plugin-transform-es2015-for-of": "6.23.0", - "babel-plugin-transform-es2015-function-name": "6.24.1", - "babel-plugin-transform-es2015-literals": "6.22.0", - "babel-plugin-transform-es2015-modules-amd": "6.24.1", - "babel-plugin-transform-es2015-modules-commonjs": "6.26.0", - "babel-plugin-transform-es2015-modules-systemjs": "6.24.1", - "babel-plugin-transform-es2015-modules-umd": "6.24.1", - "babel-plugin-transform-es2015-object-super": "6.24.1", - "babel-plugin-transform-es2015-parameters": "6.24.1", - "babel-plugin-transform-es2015-shorthand-properties": "6.24.1", - "babel-plugin-transform-es2015-spread": "6.22.0", - "babel-plugin-transform-es2015-sticky-regex": "6.24.1", - "babel-plugin-transform-es2015-template-literals": "6.22.0", - "babel-plugin-transform-es2015-typeof-symbol": "6.23.0", - "babel-plugin-transform-es2015-unicode-regex": "6.24.1", - "babel-plugin-transform-exponentiation-operator": "6.24.1", - "babel-plugin-transform-regenerator": "6.26.0", - "browserslist": "2.11.2", - "invariant": "2.2.2", - "semver": "5.4.1" + "babel-plugin-check-es2015-constants": "^6.22.0", + "babel-plugin-syntax-trailing-function-commas": "^6.22.0", + "babel-plugin-transform-async-to-generator": "^6.22.0", + "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", + "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0", + "babel-plugin-transform-es2015-block-scoping": "^6.23.0", + "babel-plugin-transform-es2015-classes": "^6.23.0", + "babel-plugin-transform-es2015-computed-properties": "^6.22.0", + "babel-plugin-transform-es2015-destructuring": "^6.23.0", + "babel-plugin-transform-es2015-duplicate-keys": "^6.22.0", + "babel-plugin-transform-es2015-for-of": "^6.23.0", + "babel-plugin-transform-es2015-function-name": "^6.22.0", + "babel-plugin-transform-es2015-literals": "^6.22.0", + "babel-plugin-transform-es2015-modules-amd": "^6.22.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.23.0", + "babel-plugin-transform-es2015-modules-systemjs": "^6.23.0", + "babel-plugin-transform-es2015-modules-umd": "^6.23.0", + "babel-plugin-transform-es2015-object-super": "^6.22.0", + "babel-plugin-transform-es2015-parameters": "^6.23.0", + "babel-plugin-transform-es2015-shorthand-properties": "^6.22.0", + "babel-plugin-transform-es2015-spread": "^6.22.0", + "babel-plugin-transform-es2015-sticky-regex": "^6.22.0", + "babel-plugin-transform-es2015-template-literals": "^6.22.0", + "babel-plugin-transform-es2015-typeof-symbol": "^6.23.0", + "babel-plugin-transform-es2015-unicode-regex": "^6.22.0", + "babel-plugin-transform-exponentiation-operator": "^6.22.0", + "babel-plugin-transform-regenerator": "^6.22.0", + "browserslist": "^2.1.2", + "invariant": "^2.2.2", + "semver": "^5.3.0" }, "dependencies": { "semver": { @@ -1010,30 +1010,30 @@ "resolved": "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz", "integrity": "sha1-1EBQ1rwsn+6nAqrzjXJ6AhBTiTk=", "requires": { - "babel-plugin-check-es2015-constants": "6.22.0", - "babel-plugin-transform-es2015-arrow-functions": "6.22.0", - "babel-plugin-transform-es2015-block-scoped-functions": "6.22.0", - "babel-plugin-transform-es2015-block-scoping": "6.26.0", - "babel-plugin-transform-es2015-classes": "6.24.1", - "babel-plugin-transform-es2015-computed-properties": "6.24.1", - "babel-plugin-transform-es2015-destructuring": "6.23.0", - "babel-plugin-transform-es2015-duplicate-keys": "6.24.1", - "babel-plugin-transform-es2015-for-of": "6.23.0", - "babel-plugin-transform-es2015-function-name": "6.24.1", - "babel-plugin-transform-es2015-literals": "6.22.0", - "babel-plugin-transform-es2015-modules-amd": "6.24.1", - "babel-plugin-transform-es2015-modules-commonjs": "6.26.0", - "babel-plugin-transform-es2015-modules-systemjs": "6.24.1", - "babel-plugin-transform-es2015-modules-umd": "6.24.1", - "babel-plugin-transform-es2015-object-super": "6.24.1", - "babel-plugin-transform-es2015-parameters": "6.24.1", - "babel-plugin-transform-es2015-shorthand-properties": "6.24.1", - "babel-plugin-transform-es2015-spread": "6.22.0", - "babel-plugin-transform-es2015-sticky-regex": "6.24.1", - "babel-plugin-transform-es2015-template-literals": "6.22.0", - "babel-plugin-transform-es2015-typeof-symbol": "6.23.0", - "babel-plugin-transform-es2015-unicode-regex": "6.24.1", - "babel-plugin-transform-regenerator": "6.26.0" + "babel-plugin-check-es2015-constants": "^6.22.0", + "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", + "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0", + "babel-plugin-transform-es2015-block-scoping": "^6.24.1", + "babel-plugin-transform-es2015-classes": "^6.24.1", + "babel-plugin-transform-es2015-computed-properties": "^6.24.1", + "babel-plugin-transform-es2015-destructuring": "^6.22.0", + "babel-plugin-transform-es2015-duplicate-keys": "^6.24.1", + "babel-plugin-transform-es2015-for-of": "^6.22.0", + "babel-plugin-transform-es2015-function-name": "^6.24.1", + "babel-plugin-transform-es2015-literals": "^6.22.0", + "babel-plugin-transform-es2015-modules-amd": "^6.24.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", + "babel-plugin-transform-es2015-modules-systemjs": "^6.24.1", + "babel-plugin-transform-es2015-modules-umd": "^6.24.1", + "babel-plugin-transform-es2015-object-super": "^6.24.1", + "babel-plugin-transform-es2015-parameters": "^6.24.1", + "babel-plugin-transform-es2015-shorthand-properties": "^6.24.1", + "babel-plugin-transform-es2015-spread": "^6.22.0", + "babel-plugin-transform-es2015-sticky-regex": "^6.24.1", + "babel-plugin-transform-es2015-template-literals": "^6.22.0", + "babel-plugin-transform-es2015-typeof-symbol": "^6.22.0", + "babel-plugin-transform-es2015-unicode-regex": "^6.24.1", + "babel-plugin-transform-regenerator": "^6.24.1" } }, "babel-preset-stage-0": { @@ -1041,9 +1041,9 @@ "resolved": "https://registry.npmjs.org/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz", "integrity": "sha1-VkLRUEL5E4TX5a+LyIsduVsDnmo=", "requires": { - "babel-plugin-transform-do-expressions": "6.22.0", - "babel-plugin-transform-function-bind": "6.22.0", - "babel-preset-stage-1": "6.24.1" + "babel-plugin-transform-do-expressions": "^6.22.0", + "babel-plugin-transform-function-bind": "^6.22.0", + "babel-preset-stage-1": "^6.24.1" } }, "babel-preset-stage-1": { @@ -1051,9 +1051,9 @@ "resolved": "https://registry.npmjs.org/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz", "integrity": "sha1-dpLNfc1oSZB+auSgqFWJz7niv7A=", "requires": { - "babel-plugin-transform-class-constructor-call": "6.24.1", - "babel-plugin-transform-export-extensions": "6.22.0", - "babel-preset-stage-2": "6.24.1" + "babel-plugin-transform-class-constructor-call": "^6.24.1", + "babel-plugin-transform-export-extensions": "^6.22.0", + "babel-preset-stage-2": "^6.24.1" } }, "babel-preset-stage-2": { @@ -1061,10 +1061,10 @@ "resolved": "https://registry.npmjs.org/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz", "integrity": "sha1-2eKWD7PXEYfw5k7sYrwHdnIZvcE=", "requires": { - "babel-plugin-syntax-dynamic-import": "6.18.0", - "babel-plugin-transform-class-properties": "6.24.1", - "babel-plugin-transform-decorators": "6.24.1", - "babel-preset-stage-3": "6.24.1" + "babel-plugin-syntax-dynamic-import": "^6.18.0", + "babel-plugin-transform-class-properties": "^6.24.1", + "babel-plugin-transform-decorators": "^6.24.1", + "babel-preset-stage-3": "^6.24.1" } }, "babel-preset-stage-3": { @@ -1072,11 +1072,11 @@ "resolved": "https://registry.npmjs.org/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz", "integrity": "sha1-g2raCp56f6N8sTj7kyb4eTSkg5U=", "requires": { - "babel-plugin-syntax-trailing-function-commas": "6.22.0", - "babel-plugin-transform-async-generator-functions": "6.24.1", - "babel-plugin-transform-async-to-generator": "6.24.1", - "babel-plugin-transform-exponentiation-operator": "6.24.1", - "babel-plugin-transform-object-rest-spread": "6.23.0" + "babel-plugin-syntax-trailing-function-commas": "^6.22.0", + "babel-plugin-transform-async-generator-functions": "^6.24.1", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-exponentiation-operator": "^6.24.1", + "babel-plugin-transform-object-rest-spread": "^6.22.0" } }, "babel-register": { @@ -1084,13 +1084,13 @@ "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz", "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=", "requires": { - "babel-core": "6.26.0", - "babel-runtime": "6.26.0", - "core-js": "2.5.3", - "home-or-tmp": "2.0.0", - "lodash": "4.17.4", - "mkdirp": "0.5.1", - "source-map-support": "0.4.18" + "babel-core": "^6.26.0", + "babel-runtime": "^6.26.0", + "core-js": "^2.5.0", + "home-or-tmp": "^2.0.0", + "lodash": "^4.17.4", + "mkdirp": "^0.5.1", + "source-map-support": "^0.4.15" } }, "babel-runtime": { @@ -1098,8 +1098,8 @@ "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", "requires": { - "core-js": "2.5.3", - "regenerator-runtime": "0.11.1" + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" } }, "babel-template": { @@ -1107,11 +1107,11 @@ "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", "requires": { - "babel-runtime": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0", - "babylon": "6.18.0", - "lodash": "4.17.4" + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" } }, "babel-traverse": { @@ -1119,15 +1119,15 @@ "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", "requires": { - "babel-code-frame": "6.26.0", - "babel-messages": "6.23.0", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0", - "babylon": "6.18.0", - "debug": "2.6.9", - "globals": "9.18.0", - "invariant": "2.2.2", - "lodash": "4.17.4" + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" } }, "babel-types": { @@ -1135,10 +1135,10 @@ "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", "requires": { - "babel-runtime": "6.26.0", - "esutils": "2.0.2", - "lodash": "4.17.4", - "to-fast-properties": "1.0.3" + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" } }, "babelify": { @@ -1146,8 +1146,8 @@ "resolved": "https://registry.npmjs.org/babelify/-/babelify-7.3.0.tgz", "integrity": "sha1-qlau3nBn/XvVSWZu4W3ChQh+iOU=", "requires": { - "babel-core": "6.26.0", - "object-assign": "4.1.1" + "babel-core": "^6.0.14", + "object-assign": "^4.0.0" } }, "babylon": { @@ -1165,13 +1165,13 @@ "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "requires": { - "cache-base": "1.0.1", - "class-utils": "0.3.6", - "component-emitter": "1.2.1", - "define-property": "1.0.0", - "isobject": "3.0.1", - "mixin-deep": "1.3.0", - "pascalcase": "0.1.1" + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" } }, "base64-js": { @@ -1186,7 +1186,7 @@ "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", "optional": true, "requires": { - "tweetnacl": "0.14.5" + "tweetnacl": "^0.14.3" } }, "beeper": { @@ -1212,11 +1212,11 @@ "integrity": "sha512-xwIx/8JKoT2+IPJpFEfXoWdYwP7UVAoUxxLNfGCfVowaJE7yg1Y5B1BVPqlUNsBq5/nGwmFkwRJ8xDW4sX8OdA==", "dev": true, "requires": { - "create-hash": "1.1.3", - "pbkdf2": "3.0.14", - "randombytes": "2.0.6", - "safe-buffer": "5.1.1", - "unorm": "1.4.1" + "create-hash": "^1.1.0", + "pbkdf2": "^3.0.9", + "randombytes": "^2.0.1", + "safe-buffer": "^5.0.1", + "unorm": "^1.3.3" } }, "bip66": { @@ -1225,7 +1225,7 @@ "integrity": "sha1-AfqHSHhcpwlV1QESF9GzE5lpyiI=", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "^5.0.1" } }, "bitcore-lib": { @@ -1234,13 +1234,13 @@ "integrity": "sha1-+mP047G1KrcGgVeZ2neTYjE1TJ0=", "dev": true, "requires": { - "bn.js": "2.0.4", - "bs58": "2.0.0", - "buffer-compare": "1.0.0", - "elliptic": "3.0.3", - "inherits": "2.0.1", - "lodash": "3.10.1", - "sha512": "0.0.1" + "bn.js": "=2.0.4", + "bs58": "=2.0.0", + "buffer-compare": "=1.0.0", + "elliptic": "=3.0.3", + "inherits": "=2.0.1", + "lodash": "=3.10.1", + "sha512": "=0.0.1" }, "dependencies": { "bn.js": { @@ -1267,10 +1267,10 @@ "integrity": "sha1-hlybQgv75VAGuflp+XoNLESWZZU=", "dev": true, "requires": { - "bn.js": "2.0.4", - "brorand": "1.0.5", - "hash.js": "1.0.3", - "inherits": "2.0.1" + "bn.js": "^2.0.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "inherits": "^2.0.1" }, "dependencies": { "brorand": { @@ -1285,7 +1285,7 @@ "integrity": "sha1-EzL/ABVsCg/92CNgE9B7d6BFFXM=", "dev": true, "requires": { - "inherits": "2.0.1" + "inherits": "^2.0.1" } } } @@ -1315,7 +1315,7 @@ "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.1.tgz", "integrity": "sha1-ysMo977kVzDUBLaSID/LWQ4XLV4=", "requires": { - "readable-stream": "2.3.3" + "readable-stream": "^2.0.5" } }, "bn.js": { @@ -1329,7 +1329,7 @@ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", "requires": { - "balanced-match": "1.0.0", + "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, @@ -1338,17 +1338,17 @@ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.0.tgz", "integrity": "sha512-P4O8UQRdGiMLWSizsApmXVQDBS6KCt7dSexgLKBmH5Hr1CZq7vsnscFh8oR1sP1ab1Zj0uCHCEzZeV6SfUf3rA==", "requires": { - "arr-flatten": "1.1.0", - "array-unique": "0.3.2", - "define-property": "1.0.0", - "extend-shallow": "2.0.1", - "fill-range": "4.0.0", - "isobject": "3.0.1", - "repeat-element": "1.1.2", - "snapdragon": "0.8.1", - "snapdragon-node": "2.1.1", - "split-string": "3.1.0", - "to-regex": "3.0.1" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" } }, "brorand": { @@ -1363,11 +1363,11 @@ "integrity": "sha1-+GzWzvT1MAyOY+B6TVEvZfv/RTE=", "dev": true, "requires": { - "JSONStream": "1.3.2", - "combine-source-map": "0.7.2", - "defined": "1.0.0", - "through2": "2.0.3", - "umd": "3.0.1" + "JSONStream": "^1.0.3", + "combine-source-map": "~0.7.1", + "defined": "^1.0.0", + "through2": "^2.0.0", + "umd": "^3.0.0" } }, "browser-resolve": { @@ -1393,53 +1393,53 @@ "integrity": "sha512-gKfOsNQv/toWz+60nSPfYzuwSEdzvV2WdxrVPUbPD/qui44rAkB3t3muNtmmGYHqrG56FGwX9SUEQmzNLAeS7g==", "dev": true, "requires": { - "JSONStream": "1.3.2", - "assert": "1.4.1", - "browser-pack": "6.0.2", - "browser-resolve": "1.11.2", - "browserify-zlib": "0.2.0", - "buffer": "5.0.8", - "cached-path-relative": "1.0.1", - "concat-stream": "1.5.2", - "console-browserify": "1.1.0", - "constants-browserify": "1.0.0", - "crypto-browserify": "3.12.0", - "defined": "1.0.0", - "deps-sort": "2.0.0", - "domain-browser": "1.1.7", - "duplexer2": "0.1.4", - "events": "1.1.1", - "glob": "7.1.2", - "has": "1.0.1", - "htmlescape": "1.1.1", - "https-browserify": "1.0.0", - "inherits": "2.0.3", - "insert-module-globals": "7.0.1", - "labeled-stream-splicer": "2.0.0", - "module-deps": "4.1.1", - "os-browserify": "0.3.0", - "parents": "1.0.1", - "path-browserify": "0.0.0", - "process": "0.11.10", - "punycode": "1.4.1", - "querystring-es3": "0.2.1", - "read-only-stream": "2.0.0", - "readable-stream": "2.3.3", - "resolve": "1.5.0", - "shasum": "1.0.2", - "shell-quote": "1.6.1", - "stream-browserify": "2.0.1", - "stream-http": "2.7.2", - "string_decoder": "1.0.3", - "subarg": "1.0.0", - "syntax-error": "1.3.0", - "through2": "2.0.3", - "timers-browserify": "1.4.2", - "tty-browserify": "0.0.0", - "url": "0.11.0", - "util": "0.10.3", - "vm-browserify": "0.0.4", - "xtend": "4.0.1" + "JSONStream": "^1.0.3", + "assert": "^1.4.0", + "browser-pack": "^6.0.1", + "browser-resolve": "^1.11.0", + "browserify-zlib": "~0.2.0", + "buffer": "^5.0.2", + "cached-path-relative": "^1.0.0", + "concat-stream": "~1.5.1", + "console-browserify": "^1.1.0", + "constants-browserify": "~1.0.0", + "crypto-browserify": "^3.0.0", + "defined": "^1.0.0", + "deps-sort": "^2.0.0", + "domain-browser": "~1.1.0", + "duplexer2": "~0.1.2", + "events": "~1.1.0", + "glob": "^7.1.0", + "has": "^1.0.0", + "htmlescape": "^1.1.0", + "https-browserify": "^1.0.0", + "inherits": "~2.0.1", + "insert-module-globals": "^7.0.0", + "labeled-stream-splicer": "^2.0.0", + "module-deps": "^4.0.8", + "os-browserify": "~0.3.0", + "parents": "^1.0.1", + "path-browserify": "~0.0.0", + "process": "~0.11.0", + "punycode": "^1.3.2", + "querystring-es3": "~0.2.0", + "read-only-stream": "^2.0.0", + "readable-stream": "^2.0.2", + "resolve": "^1.1.4", + "shasum": "^1.0.0", + "shell-quote": "^1.6.1", + "stream-browserify": "^2.0.0", + "stream-http": "^2.0.0", + "string_decoder": "~1.0.0", + "subarg": "^1.0.0", + "syntax-error": "^1.1.1", + "through2": "^2.0.0", + "timers-browserify": "^1.0.1", + "tty-browserify": "~0.0.0", + "url": "~0.11.0", + "util": "~0.10.1", + "vm-browserify": "~0.0.1", + "xtend": "^4.0.0" }, "dependencies": { "concat-stream": { @@ -1448,9 +1448,9 @@ "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", "dev": true, "requires": { - "inherits": "2.0.3", - "readable-stream": "2.0.6", - "typedarray": "0.0.6" + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" }, "dependencies": { "readable-stream": { @@ -1459,12 +1459,12 @@ "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "0.10.31", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -1481,7 +1481,7 @@ "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", "dev": true, "requires": { - "readable-stream": "2.3.3" + "readable-stream": "^2.0.2" } }, "punycode": { @@ -1498,12 +1498,12 @@ "integrity": "sha512-UGnTYAnB2a3YuYKIRy1/4FB2HdM866E0qC46JXvVTYKlBlZlnvfpSfY6OKfXZAkv70eJ2a1SqzpAo5CRhZGDFg==", "dev": true, "requires": { - "buffer-xor": "1.0.3", - "cipher-base": "1.0.4", - "create-hash": "1.1.3", - "evp_bytestokey": "1.0.3", - "inherits": "2.0.3", - "safe-buffer": "5.1.1" + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" } }, "browserify-cipher": { @@ -1512,9 +1512,9 @@ "integrity": "sha1-mYgkSHS/XtTijalWZtzWasj8Njo=", "dev": true, "requires": { - "browserify-aes": "1.1.1", - "browserify-des": "1.0.0", - "evp_bytestokey": "1.0.3" + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" } }, "browserify-des": { @@ -1523,9 +1523,9 @@ "integrity": "sha1-2qJ3cXRwki7S/hhZQRihdUOXId0=", "dev": true, "requires": { - "cipher-base": "1.0.4", - "des.js": "1.0.0", - "inherits": "2.0.3" + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1" } }, "browserify-rsa": { @@ -1534,8 +1534,8 @@ "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", "dev": true, "requires": { - "bn.js": "4.11.8", - "randombytes": "2.0.6" + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" } }, "browserify-sha3": { @@ -1544,7 +1544,7 @@ "integrity": "sha1-P/NKMAbvFcD7NWflQbkaI0ASPRE=", "dev": true, "requires": { - "js-sha3": "0.3.1" + "js-sha3": "^0.3.1" } }, "browserify-sign": { @@ -1553,13 +1553,13 @@ "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", "dev": true, "requires": { - "bn.js": "4.11.8", - "browserify-rsa": "4.0.1", - "create-hash": "1.1.3", - "create-hmac": "1.1.6", - "elliptic": "6.4.0", - "inherits": "2.0.3", - "parse-asn1": "5.1.0" + "bn.js": "^4.1.1", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.2", + "elliptic": "^6.0.0", + "inherits": "^2.0.1", + "parse-asn1": "^5.0.0" } }, "browserify-zlib": { @@ -1568,7 +1568,7 @@ "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", "dev": true, "requires": { - "pako": "1.0.6" + "pako": "~1.0.5" } }, "browserslist": { @@ -1576,8 +1576,8 @@ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.2.tgz", "integrity": "sha512-BWT1zhRqq8BG/HrUQWB4pgkU6u27OyC1r5ErMn8zRaYTLtRS4cDtDCdZA3XYLsSmYWP2PPlBR8sggzrofImzgg==", "requires": { - "caniuse-lite": "1.0.30000792", - "electron-to-chromium": "1.3.30" + "caniuse-lite": "^1.0.30000791", + "electron-to-chromium": "^1.3.30" } }, "bs58": { @@ -1592,8 +1592,8 @@ "integrity": "sha512-xXvjQhVNz50v2nPeoOsNqWCLGfiv4ji/gXZM28jnVwdLJxH4mFyqgqCKfaK9zf1KUbG6zTkjLOy7ou+jSMarGA==", "dev": true, "requires": { - "base64-js": "1.2.1", - "ieee754": "1.1.8" + "base64-js": "^1.0.2", + "ieee754": "^1.1.4" } }, "buffer-crc32": { @@ -1623,8 +1623,8 @@ "resolved": "https://registry.npmjs.org/bump-regex/-/bump-regex-2.9.0.tgz", "integrity": "sha512-o4WC1mKw/kM0zScuOxZKi243lc+/h09b41u2A7HlWbxHsEDsTTZtqDZYkQj65l24J8+9Saahn5ep+EyeqpQoCg==", "requires": { - "semver": "5.4.1", - "xtend": "4.0.1" + "semver": "^5.1.0", + "xtend": "^4.0.1" }, "dependencies": { "semver": { @@ -1639,15 +1639,15 @@ "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "requires": { - "collection-visit": "1.0.0", - "component-emitter": "1.2.1", - "get-value": "2.0.6", - "has-value": "1.0.0", - "isobject": "3.0.1", - "set-value": "2.0.0", - "to-object-path": "0.3.0", - "union-value": "1.0.0", - "unset-value": "1.0.0" + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" } }, "cached-path-relative": { @@ -1662,8 +1662,8 @@ "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", "dev": true, "requires": { - "no-case": "2.3.2", - "upper-case": "1.1.3" + "no-case": "^2.2.0", + "upper-case": "^1.1.1" } }, "camelcase": { @@ -1676,8 +1676,8 @@ "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", "requires": { - "camelcase": "2.1.1", - "map-obj": "1.0.1" + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" } }, "caniuse-api": { @@ -1685,10 +1685,10 @@ "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz", "integrity": "sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=", "requires": { - "browserslist": "1.7.7", - "caniuse-db": "1.0.30000792", - "lodash.memoize": "4.1.2", - "lodash.uniq": "4.5.0" + "browserslist": "^1.3.6", + "caniuse-db": "^1.0.30000529", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" }, "dependencies": { "browserslist": { @@ -1696,8 +1696,8 @@ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", "requires": { - "caniuse-db": "1.0.30000792", - "electron-to-chromium": "1.3.30" + "caniuse-db": "^1.0.30000639", + "electron-to-chromium": "^1.2.7" } } } @@ -1723,8 +1723,8 @@ "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", "requires": { - "align-text": "0.1.4", - "lazy-cache": "1.0.4" + "align-text": "^0.1.3", + "lazy-cache": "^1.0.3" }, "dependencies": { "lazy-cache": { @@ -1739,11 +1739,11 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" } }, "cipher-base": { @@ -1752,8 +1752,8 @@ "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", "dev": true, "requires": { - "inherits": "2.0.3", - "safe-buffer": "5.1.1" + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" } }, "clap": { @@ -1761,7 +1761,7 @@ "resolved": "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz", "integrity": "sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==", "requires": { - "chalk": "1.1.3" + "chalk": "^1.1.3" } }, "class-utils": { @@ -1769,10 +1769,10 @@ "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "requires": { - "arr-union": "3.1.0", - "define-property": "0.2.5", - "isobject": "3.0.1", - "static-extend": "0.1.2" + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" }, "dependencies": { "define-property": { @@ -1780,7 +1780,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "is-accessor-descriptor": { @@ -1788,7 +1788,7 @@ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -1796,7 +1796,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -1806,7 +1806,7 @@ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -1814,7 +1814,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -1824,9 +1824,9 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" } }, "kind-of": { @@ -1842,7 +1842,7 @@ "integrity": "sha1-/rKhdgYtcqbD5iTZITysagxIXoA=", "dev": true, "requires": { - "source-map": "0.5.7" + "source-map": "0.5.x" } }, "cliui": { @@ -1850,8 +1850,8 @@ "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", "requires": { - "center-align": "0.1.3", - "right-align": "0.1.3", + "center-align": "^0.1.1", + "right-align": "^0.1.1", "wordwrap": "0.0.2" } }, @@ -1875,9 +1875,9 @@ "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.0.0.tgz", "integrity": "sha1-pikNQT8hemEjL5XkWP84QYz7ARc=", "requires": { - "inherits": "2.0.3", - "process-nextick-args": "1.0.7", - "through2": "2.0.3" + "inherits": "^2.0.1", + "process-nextick-args": "^1.0.6", + "through2": "^2.0.1" } }, "co": { @@ -1891,7 +1891,7 @@ "resolved": "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz", "integrity": "sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=", "requires": { - "q": "1.5.1" + "q": "^1.1.2" } }, "coinstring": { @@ -1900,8 +1900,8 @@ "integrity": "sha1-zbYzY6lhUCQEolr7gsLibV/2J6Q=", "dev": true, "requires": { - "bs58": "2.0.1", - "create-hash": "1.1.3" + "bs58": "^2.0.1", + "create-hash": "^1.1.1" } }, "collection-visit": { @@ -1909,8 +1909,8 @@ "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", "requires": { - "map-visit": "1.0.0", - "object-visit": "1.0.1" + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" } }, "color": { @@ -1918,9 +1918,9 @@ "resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz", "integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=", "requires": { - "clone": "1.0.3", - "color-convert": "1.9.1", - "color-string": "0.3.0" + "clone": "^1.0.2", + "color-convert": "^1.3.0", + "color-string": "^0.3.0" } }, "color-convert": { @@ -1928,7 +1928,7 @@ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz", "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", "requires": { - "color-name": "1.1.3" + "color-name": "^1.1.1" } }, "color-name": { @@ -1941,7 +1941,7 @@ "resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz", "integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=", "requires": { - "color-name": "1.1.3" + "color-name": "^1.0.0" } }, "color-support": { @@ -1954,9 +1954,9 @@ "resolved": "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz", "integrity": "sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=", "requires": { - "color": "0.11.4", + "color": "^0.11.0", "css-color-names": "0.0.4", - "has": "1.0.1" + "has": "^1.0.1" } }, "colors": { @@ -1970,10 +1970,10 @@ "integrity": "sha1-CHAxKFazB6h8xKxIbzqaYq7MwJ4=", "dev": true, "requires": { - "convert-source-map": "1.1.3", - "inline-source-map": "0.6.2", - "lodash.memoize": "3.0.4", - "source-map": "0.5.7" + "convert-source-map": "~1.1.0", + "inline-source-map": "~0.6.0", + "lodash.memoize": "~3.0.3", + "source-map": "~0.5.3" }, "dependencies": { "convert-source-map": { @@ -1996,7 +1996,7 @@ "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", "optional": true, "requires": { - "delayed-stream": "1.0.0" + "delayed-stream": "~1.0.0" } }, "commander": { @@ -2005,7 +2005,7 @@ "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", "dev": true, "requires": { - "graceful-readlink": "1.0.1" + "graceful-readlink": ">= 1.0.0" } }, "component-emitter": { @@ -2018,10 +2018,10 @@ "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-1.2.2.tgz", "integrity": "sha1-UkqfEJA/OoEzibAiXSfEi7dRiQ8=", "requires": { - "buffer-crc32": "0.2.13", - "crc32-stream": "2.0.0", - "normalize-path": "2.1.1", - "readable-stream": "2.3.3" + "buffer-crc32": "^0.2.1", + "crc32-stream": "^2.0.0", + "normalize-path": "^2.0.0", + "readable-stream": "^2.0.0" } }, "concat-map": { @@ -2034,9 +2034,9 @@ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz", "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=", "requires": { - "inherits": "2.0.3", - "readable-stream": "2.3.3", - "typedarray": "0.0.6" + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" } }, "concat-with-sourcemaps": { @@ -2044,7 +2044,7 @@ "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.0.5.tgz", "integrity": "sha512-YtnS0VEY+e2Khzsey/6mra9EoM6h/5gxaC0e3mcHpA5yfDxafhygytNmcJWodvUgyXzSiL5MSkPO6bQGgfliHw==", "requires": { - "source-map": "0.6.1" + "source-map": "^0.6.1" }, "dependencies": { "source-map": { @@ -2060,7 +2060,7 @@ "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", "dev": true, "requires": { - "date-now": "0.1.4" + "date-now": "^0.1.4" } }, "constants-browserify": { @@ -2099,8 +2099,8 @@ "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-2.0.0.tgz", "integrity": "sha1-483TtN8xaN10494/u8t7KX/pCPQ=", "requires": { - "crc": "3.5.0", - "readable-stream": "2.3.3" + "crc": "^3.4.4", + "readable-stream": "^2.0.0" } }, "create-ecdh": { @@ -2109,8 +2109,8 @@ "integrity": "sha1-iIxyNZbN92EvZJgjPuvXo1MBc30=", "dev": true, "requires": { - "bn.js": "4.11.8", - "elliptic": "6.4.0" + "bn.js": "^4.1.0", + "elliptic": "^6.0.0" } }, "create-hash": { @@ -2119,10 +2119,10 @@ "integrity": "sha1-YGBCrIuSYnUPSDyt2rD1gZFy2P0=", "dev": true, "requires": { - "cipher-base": "1.0.4", - "inherits": "2.0.3", - "ripemd160": "2.0.1", - "sha.js": "2.4.9" + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "sha.js": "^2.4.0" } }, "create-hmac": { @@ -2131,12 +2131,12 @@ "integrity": "sha1-rLniIaThe9sHbpBlfEK5PjcmzwY=", "dev": true, "requires": { - "cipher-base": "1.0.4", - "create-hash": "1.1.3", - "inherits": "2.0.3", - "ripemd160": "2.0.1", - "safe-buffer": "5.1.1", - "sha.js": "2.4.9" + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" } }, "crypto-browserify": { @@ -2145,17 +2145,17 @@ "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", "dev": true, "requires": { - "browserify-cipher": "1.0.0", - "browserify-sign": "4.0.4", - "create-ecdh": "4.0.0", - "create-hash": "1.1.3", - "create-hmac": "1.1.6", - "diffie-hellman": "5.0.2", - "inherits": "2.0.3", - "pbkdf2": "3.0.14", - "public-encrypt": "4.0.0", - "randombytes": "2.0.6", - "randomfill": "1.0.3" + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" } }, "css-color-names": { @@ -2168,38 +2168,38 @@ "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz", "integrity": "sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=", "requires": { - "autoprefixer": "6.7.7", - "decamelize": "1.2.0", - "defined": "1.0.0", - "has": "1.0.1", - "object-assign": "4.1.1", - "postcss": "5.2.18", - "postcss-calc": "5.3.1", - "postcss-colormin": "2.2.2", - "postcss-convert-values": "2.6.1", - "postcss-discard-comments": "2.0.4", - "postcss-discard-duplicates": "2.1.0", - "postcss-discard-empty": "2.1.0", - "postcss-discard-overridden": "0.1.1", - "postcss-discard-unused": "2.2.3", - "postcss-filter-plugins": "2.0.2", - "postcss-merge-idents": "2.1.7", - "postcss-merge-longhand": "2.0.2", - "postcss-merge-rules": "2.1.2", - "postcss-minify-font-values": "1.0.5", - "postcss-minify-gradients": "1.0.5", - "postcss-minify-params": "1.2.2", - "postcss-minify-selectors": "2.1.1", - "postcss-normalize-charset": "1.1.1", - "postcss-normalize-url": "3.0.8", - "postcss-ordered-values": "2.2.3", - "postcss-reduce-idents": "2.4.0", - "postcss-reduce-initial": "1.0.1", - "postcss-reduce-transforms": "1.0.4", - "postcss-svgo": "2.1.6", - "postcss-unique-selectors": "2.0.2", - "postcss-value-parser": "3.3.0", - "postcss-zindex": "2.2.0" + "autoprefixer": "^6.3.1", + "decamelize": "^1.1.2", + "defined": "^1.0.0", + "has": "^1.0.1", + "object-assign": "^4.0.1", + "postcss": "^5.0.14", + "postcss-calc": "^5.2.0", + "postcss-colormin": "^2.1.8", + "postcss-convert-values": "^2.3.4", + "postcss-discard-comments": "^2.0.4", + "postcss-discard-duplicates": "^2.0.1", + "postcss-discard-empty": "^2.0.1", + "postcss-discard-overridden": "^0.1.1", + "postcss-discard-unused": "^2.2.1", + "postcss-filter-plugins": "^2.0.0", + "postcss-merge-idents": "^2.1.5", + "postcss-merge-longhand": "^2.0.1", + "postcss-merge-rules": "^2.0.3", + "postcss-minify-font-values": "^1.0.2", + "postcss-minify-gradients": "^1.0.1", + "postcss-minify-params": "^1.0.4", + "postcss-minify-selectors": "^2.0.4", + "postcss-normalize-charset": "^1.1.0", + "postcss-normalize-url": "^3.0.7", + "postcss-ordered-values": "^2.1.0", + "postcss-reduce-idents": "^2.2.2", + "postcss-reduce-initial": "^1.0.0", + "postcss-reduce-transforms": "^1.0.3", + "postcss-svgo": "^2.1.1", + "postcss-unique-selectors": "^2.0.2", + "postcss-value-parser": "^3.2.3", + "postcss-zindex": "^2.0.1" }, "dependencies": { "autoprefixer": { @@ -2207,12 +2207,12 @@ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz", "integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=", "requires": { - "browserslist": "1.7.7", - "caniuse-db": "1.0.30000792", - "normalize-range": "0.1.2", - "num2fraction": "1.2.2", - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0" + "browserslist": "^1.7.6", + "caniuse-db": "^1.0.30000634", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^5.2.16", + "postcss-value-parser": "^3.2.3" } }, "browserslist": { @@ -2220,8 +2220,8 @@ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", "requires": { - "caniuse-db": "1.0.30000792", - "electron-to-chromium": "1.3.30" + "caniuse-db": "^1.0.30000639", + "electron-to-chromium": "^1.2.7" } }, "has-flag": { @@ -2234,10 +2234,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -2245,7 +2245,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -2255,8 +2255,8 @@ "resolved": "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz", "integrity": "sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=", "requires": { - "clap": "1.2.3", - "source-map": "0.5.7" + "clap": "^1.0.9", + "source-map": "^0.5.3" } }, "currently-unhandled": { @@ -2264,7 +2264,7 @@ "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", "requires": { - "array-find-index": "1.0.2" + "array-find-index": "^1.0.1" } }, "dashdash": { @@ -2273,7 +2273,7 @@ "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", "optional": true, "requires": { - "assert-plus": "1.0.0" + "assert-plus": "^1.0.0" }, "dependencies": { "assert-plus": { @@ -2318,7 +2318,7 @@ "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", "requires": { - "clone": "1.0.3" + "clone": "^1.0.2" } }, "define-property": { @@ -2326,7 +2326,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", "requires": { - "is-descriptor": "1.0.2" + "is-descriptor": "^1.0.0" } }, "defined": { @@ -2350,10 +2350,10 @@ "integrity": "sha1-CRckkC6EZYJg65EHSMzNGvbiH7U=", "dev": true, "requires": { - "JSONStream": "1.3.2", - "shasum": "1.0.2", - "subarg": "1.0.0", - "through2": "2.0.3" + "JSONStream": "^1.0.3", + "shasum": "^1.0.0", + "subarg": "^1.0.0", + "through2": "^2.0.0" } }, "des.js": { @@ -2362,8 +2362,8 @@ "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", "dev": true, "requires": { - "inherits": "2.0.3", - "minimalistic-assert": "1.0.0" + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" } }, "detect-browser": { @@ -2382,7 +2382,7 @@ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", "requires": { - "repeating": "2.0.1" + "repeating": "^2.0.0" } }, "detective": { @@ -2391,8 +2391,8 @@ "integrity": "sha512-H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig==", "dev": true, "requires": { - "acorn": "5.3.0", - "defined": "1.0.0" + "acorn": "^5.2.1", + "defined": "^1.0.0" }, "dependencies": { "acorn": { @@ -2408,8 +2408,8 @@ "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz", "integrity": "sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY=", "requires": { - "asap": "2.0.6", - "wrappy": "1.0.2" + "asap": "^2.0.0", + "wrappy": "1" } }, "diffie-hellman": { @@ -2418,9 +2418,9 @@ "integrity": "sha1-tYNXOScM/ias9jIJn97SoH8gnl4=", "dev": true, "requires": { - "bn.js": "4.11.8", - "miller-rabin": "4.0.1", - "randombytes": "2.0.6" + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" } }, "domain-browser": { @@ -2435,9 +2435,9 @@ "integrity": "sha1-Pja2xCs3BDgjzbwzLVjzHiRFSAs=", "dev": true, "requires": { - "browserify-aes": "1.1.1", - "create-hash": "1.1.3", - "create-hmac": "1.1.6" + "browserify-aes": "^1.0.6", + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4" } }, "duplexer2": { @@ -2445,7 +2445,7 @@ "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=", "requires": { - "readable-stream": "1.1.14" + "readable-stream": "~1.1.9" }, "dependencies": { "isarray": { @@ -2458,10 +2458,10 @@ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", "isarray": "0.0.1", - "string_decoder": "0.10.31" + "string_decoder": "~0.10.x" } }, "string_decoder": { @@ -2477,7 +2477,7 @@ "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", "optional": true, "requires": { - "jsbn": "0.1.1" + "jsbn": "~0.1.0" } }, "electron-releases": { @@ -2490,7 +2490,7 @@ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz", "integrity": "sha512-zx1Prv7kYLfc4OA60FhxGbSo4qrEjgSzpo1/37i7l9ltXPYOoQBtjQxY9KmsgfHnBxHlBGXwLlsbt/gub1w5lw==", "requires": { - "electron-releases": "2.1.0" + "electron-releases": "^2.1.0" } }, "elliptic": { @@ -2499,13 +2499,13 @@ "integrity": "sha1-ysmvh2LIWDYYcAPI3+GT5eLq5d8=", "dev": true, "requires": { - "bn.js": "4.11.8", - "brorand": "1.1.0", - "hash.js": "1.1.3", - "hmac-drbg": "1.0.1", - "inherits": "2.0.3", - "minimalistic-assert": "1.0.0", - "minimalistic-crypto-utils": "1.0.1" + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" } }, "end-of-stream": { @@ -2513,7 +2513,7 @@ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", "requires": { - "once": "1.4.0" + "once": "^1.4.0" } }, "errno": { @@ -2522,7 +2522,7 @@ "integrity": "sha512-IsORQDpaaSwcDP4ZZnHxgE85werpo34VYn1Ud3mq+eUsF593faR8oCZNXrROVkpFu2TsbrNhHin0aUrTsQ9vNw==", "optional": true, "requires": { - "prr": "1.0.1" + "prr": "~1.0.1" } }, "error-ex": { @@ -2530,7 +2530,7 @@ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", "requires": { - "is-arrayish": "0.2.1" + "is-arrayish": "^0.2.1" } }, "escape-string-regexp": { @@ -2554,7 +2554,7 @@ "integrity": "sha1-sf3b99knMWJo0Q0FNfippmdVHS4=", "dev": true, "requires": { - "assert": "1.4.1", + "assert": "^1.3.0", "bitcore-lib": "0.13.13", "elliptic": "6.2.3", "ethereumjs-util": "4.0.1" @@ -2566,10 +2566,10 @@ "integrity": "sha1-GORtcwawlRJ1otQgYycKFLdOvpk=", "dev": true, "requires": { - "bn.js": "4.11.8", - "brorand": "1.1.0", - "hash.js": "1.1.3", - "inherits": "2.0.3" + "bn.js": "^4.0.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "inherits": "^2.0.1" } }, "ethereumjs-util": { @@ -2578,10 +2578,10 @@ "integrity": "sha1-+2PsFR4DMC70Xe8lZM5lyVYMbco=", "dev": true, "requires": { - "bn.js": "4.11.8", - "keccakjs": "0.1.0", - "rlp": "2.0.0", - "secp256k1": "3.4.0" + "bn.js": "^4.8.0", + "keccakjs": "^0.1.0", + "rlp": "^2.0.0", + "secp256k1": "^3.0.1" } } } @@ -2598,8 +2598,8 @@ "integrity": "sha1-WmN+8Wq0NHP6cqKa2QhxQFs/UkE=", "dev": true, "requires": { - "bn.js": "4.11.8", - "ethereumjs-util": "4.5.0" + "bn.js": "^4.10.0", + "ethereumjs-util": "^4.3.0" }, "dependencies": { "ethereumjs-util": { @@ -2608,11 +2608,11 @@ "integrity": "sha1-PpQosxfuvaPXJg2FT93alUsfG8Y=", "dev": true, "requires": { - "bn.js": "4.11.8", - "create-hash": "1.1.3", - "keccakjs": "0.2.1", - "rlp": "2.0.0", - "secp256k1": "3.4.0" + "bn.js": "^4.8.0", + "create-hash": "^1.1.2", + "keccakjs": "^0.2.0", + "rlp": "^2.0.0", + "secp256k1": "^3.0.1" } }, "keccakjs": { @@ -2621,8 +2621,8 @@ "integrity": "sha1-HWM6+QfvMFu/ny+mFtVsRFYd+k0=", "dev": true, "requires": { - "browserify-sha3": "0.0.1", - "sha3": "1.2.0" + "browserify-sha3": "^0.0.1", + "sha3": "^1.1.0" } } } @@ -2633,8 +2633,8 @@ "integrity": "sha1-7OBR0+/b53GtKlGNYWMsoqt17Ls=", "dev": true, "requires": { - "ethereum-common": "0.0.18", - "ethereumjs-util": "5.1.5" + "ethereum-common": "^0.0.18", + "ethereumjs-util": "^5.0.0" } }, "ethereumjs-util": { @@ -2643,13 +2643,13 @@ "integrity": "sha512-xPaSEATYJpMTCGowIt0oMZwFP4R1bxd6QsWgkcDvFL0JtXsr39p32WEcD14RscCjfP41YXZPCVWA4yAg0nrJmw==", "dev": true, "requires": { - "bn.js": "4.11.8", - "create-hash": "1.1.3", - "ethjs-util": "0.1.4", - "keccak": "1.4.0", - "rlp": "2.0.0", - "safe-buffer": "5.1.1", - "secp256k1": "3.4.0" + "bn.js": "^4.11.0", + "create-hash": "^1.1.2", + "ethjs-util": "^0.1.3", + "keccak": "^1.0.2", + "rlp": "^2.0.0", + "safe-buffer": "^5.1.1", + "secp256k1": "^3.0.1" } }, "ethjs-util": { @@ -2674,8 +2674,8 @@ "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", "dev": true, "requires": { - "md5.js": "1.3.4", - "safe-buffer": "5.1.1" + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" } }, "expand-brackets": { @@ -2683,13 +2683,13 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", "requires": { - "debug": "2.6.9", - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "posix-character-classes": "0.1.1", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.1" + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "dependencies": { "define-property": { @@ -2697,7 +2697,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "is-accessor-descriptor": { @@ -2705,7 +2705,7 @@ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -2713,7 +2713,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -2723,7 +2723,7 @@ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -2731,7 +2731,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -2741,9 +2741,9 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" } }, "kind-of": { @@ -2758,7 +2758,7 @@ "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", "requires": { - "homedir-polyfill": "1.0.1" + "homedir-polyfill": "^1.0.1" } }, "extend": { @@ -2771,7 +2771,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } }, "extglob": { @@ -2779,14 +2779,14 @@ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "requires": { - "array-unique": "0.3.2", - "define-property": "1.0.0", - "expand-brackets": "2.1.4", - "extend-shallow": "2.0.1", - "fragment-cache": "0.2.1", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.1" + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" } }, "extsprintf": { @@ -2799,9 +2799,9 @@ "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz", "integrity": "sha1-9BEl49hPLn2JpD0G2VjI94vha+E=", "requires": { - "ansi-gray": "0.1.1", - "color-support": "1.1.3", - "time-stamp": "1.1.0" + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "time-stamp": "^1.0.0" } }, "fast-deep-equal": { @@ -2821,10 +2821,10 @@ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "requires": { - "extend-shallow": "2.0.1", - "is-number": "3.0.0", - "repeat-string": "1.6.1", - "to-regex-range": "2.1.1" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" } }, "find-index": { @@ -2837,8 +2837,8 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", "requires": { - "path-exists": "2.1.0", - "pinkie-promise": "2.0.1" + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" } }, "findup-sync": { @@ -2846,10 +2846,10 @@ "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", "requires": { - "detect-file": "1.0.0", - "is-glob": "3.1.0", - "micromatch": "3.1.5", - "resolve-dir": "1.0.1" + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" } }, "fined": { @@ -2857,11 +2857,11 @@ "resolved": "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz", "integrity": "sha1-s33IRLdqL15wgeiE98CuNE8VNHY=", "requires": { - "expand-tilde": "2.0.2", - "is-plain-object": "2.0.4", - "object.defaults": "1.1.0", - "object.pick": "1.3.0", - "parse-filepath": "1.0.2" + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" } }, "first-chunk-stream": { @@ -2894,7 +2894,7 @@ "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", "requires": { - "for-in": "1.0.2" + "for-in": "^1.0.1" } }, "forever-agent": { @@ -2908,7 +2908,7 @@ "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", "requires": { - "map-cache": "0.2.2" + "map-cache": "^0.2.2" } }, "fs.realpath": { @@ -2926,7 +2926,7 @@ "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz", "integrity": "sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8=", "requires": { - "globule": "0.1.0" + "globule": "~0.1.0" } }, "get-stdin": { @@ -2950,7 +2950,7 @@ "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", "optional": true, "requires": { - "assert-plus": "1.0.0" + "assert-plus": "^1.0.0" }, "dependencies": { "assert-plus": { @@ -2966,12 +2966,12 @@ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, "glob-stream": { @@ -2979,12 +2979,12 @@ "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz", "integrity": "sha1-kXCl8St5Awb9/lmPMT+PeVT9FDs=", "requires": { - "glob": "4.5.3", - "glob2base": "0.0.12", - "minimatch": "2.0.10", - "ordered-read-streams": "0.1.0", - "through2": "0.6.5", - "unique-stream": "1.0.0" + "glob": "^4.3.1", + "glob2base": "^0.0.12", + "minimatch": "^2.0.1", + "ordered-read-streams": "^0.1.0", + "through2": "^0.6.1", + "unique-stream": "^1.0.0" }, "dependencies": { "glob": { @@ -2992,10 +2992,10 @@ "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=", "requires": { - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "2.0.10", - "once": "1.4.0" + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1", + "once": "^1.3.0" } }, "isarray": { @@ -3008,7 +3008,7 @@ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", "requires": { - "brace-expansion": "1.1.8" + "brace-expansion": "^1.0.0" } }, "readable-stream": { @@ -3016,10 +3016,10 @@ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", "isarray": "0.0.1", - "string_decoder": "0.10.31" + "string_decoder": "~0.10.x" } }, "string_decoder": { @@ -3032,8 +3032,8 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", "requires": { - "readable-stream": "1.0.34", - "xtend": "4.0.1" + "readable-stream": ">=1.0.33-1 <1.1.0-0", + "xtend": ">=4.0.0 <4.1.0-0" } } } @@ -3043,7 +3043,7 @@ "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz", "integrity": "sha1-uVtKjfdLOcgymLDAXJeLTZo7cQs=", "requires": { - "gaze": "0.5.2" + "gaze": "^0.5.1" } }, "glob2base": { @@ -3051,7 +3051,7 @@ "resolved": "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz", "integrity": "sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=", "requires": { - "find-index": "0.1.1" + "find-index": "^0.1.1" } }, "global-modules": { @@ -3059,9 +3059,9 @@ "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", "requires": { - "global-prefix": "1.0.2", - "is-windows": "1.0.1", - "resolve-dir": "1.0.1" + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" } }, "global-prefix": { @@ -3069,11 +3069,11 @@ "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", "requires": { - "expand-tilde": "2.0.2", - "homedir-polyfill": "1.0.1", - "ini": "1.3.5", - "is-windows": "1.0.1", - "which": "1.3.0" + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" } }, "globals": { @@ -3086,9 +3086,9 @@ "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz", "integrity": "sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU=", "requires": { - "glob": "3.1.21", - "lodash": "1.0.2", - "minimatch": "0.2.14" + "glob": "~3.1.21", + "lodash": "~1.0.1", + "minimatch": "~0.2.11" }, "dependencies": { "glob": { @@ -3096,9 +3096,9 @@ "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", "integrity": "sha1-0p4KBV3qUTj00H7UDomC6DwgZs0=", "requires": { - "graceful-fs": "1.2.3", - "inherits": "1.0.2", - "minimatch": "0.2.14" + "graceful-fs": "~1.2.0", + "inherits": "1", + "minimatch": "~0.2.11" } }, "graceful-fs": { @@ -3121,8 +3121,8 @@ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=", "requires": { - "lru-cache": "2.7.3", - "sigmund": "1.0.1" + "lru-cache": "2", + "sigmund": "~1.0.0" } } } @@ -3132,7 +3132,7 @@ "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz", "integrity": "sha1-f+DxmfV6yQbPUS/urY+Q7kooT8U=", "requires": { - "sparkles": "1.0.0" + "sparkles": "^1.0.0" } }, "graceful-fs": { @@ -3156,19 +3156,19 @@ "resolved": "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz", "integrity": "sha1-VxzkWSjdQK9lFPxAEYZgFsE4RbQ=", "requires": { - "archy": "1.0.0", - "chalk": "1.1.3", - "deprecated": "0.0.1", - "gulp-util": "3.0.8", - "interpret": "1.1.0", - "liftoff": "2.5.0", - "minimist": "1.2.0", - "orchestrator": "0.3.8", - "pretty-hrtime": "1.0.3", - "semver": "4.3.6", - "tildify": "1.2.0", - "v8flags": "2.1.1", - "vinyl-fs": "0.3.14" + "archy": "^1.0.0", + "chalk": "^1.0.0", + "deprecated": "^0.0.1", + "gulp-util": "^3.0.0", + "interpret": "^1.0.0", + "liftoff": "^2.1.0", + "minimist": "^1.1.0", + "orchestrator": "^0.3.0", + "pretty-hrtime": "^1.0.0", + "semver": "^4.1.0", + "tildify": "^1.0.0", + "v8flags": "^2.0.2", + "vinyl-fs": "^0.3.0" }, "dependencies": { "minimist": { @@ -3183,12 +3183,12 @@ "resolved": "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-4.1.0.tgz", "integrity": "sha1-Bkr3PMAsrayP800L+T/9+5TqEqo=", "requires": { - "autoprefixer": "7.2.5", - "fancy-log": "1.3.2", - "plugin-error": "0.1.2", - "postcss": "6.0.16", - "through2": "2.0.3", - "vinyl-sourcemaps-apply": "0.2.1" + "autoprefixer": "^7.0.0", + "fancy-log": "^1.3.2", + "plugin-error": "^0.1.2", + "postcss": "^6.0.1", + "through2": "^2.0.0", + "vinyl-sourcemaps-apply": "^0.2.0" } }, "gulp-bump": { @@ -3196,11 +3196,11 @@ "resolved": "https://registry.npmjs.org/gulp-bump/-/gulp-bump-2.9.0.tgz", "integrity": "sha512-Cu+QOhwb2Jr2K6yo2u2mh4GWQRpSAMZD/z0v8FStlrOGaqML9u1On7XcyR1pS/PN3HQ9wsd/Ks6AcCQb+j3BgA==", "requires": { - "bump-regex": "2.9.0", - "plugin-error": "0.1.2", - "plugin-log": "0.1.0", - "semver": "5.4.1", - "through2": "2.0.3" + "bump-regex": "^2.9.0", + "plugin-error": "^0.1.2", + "plugin-log": "^0.1.0", + "semver": "^5.3.0", + "through2": "^2.0.1" }, "dependencies": { "semver": { @@ -3215,9 +3215,9 @@ "resolved": "https://registry.npmjs.org/gulp-clean/-/gulp-clean-0.3.2.tgz", "integrity": "sha1-o0fUc6zqQBgvk1WHpFGUFnGSgQI=", "requires": { - "gulp-util": "2.2.20", - "rimraf": "2.6.2", - "through2": "0.4.2" + "gulp-util": "^2.2.14", + "rimraf": "^2.2.8", + "through2": "^0.4.2" }, "dependencies": { "ansi-regex": { @@ -3235,11 +3235,11 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz", "integrity": "sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=", "requires": { - "ansi-styles": "1.1.0", - "escape-string-regexp": "1.0.5", - "has-ansi": "0.1.0", - "strip-ansi": "0.3.0", - "supports-color": "0.2.0" + "ansi-styles": "^1.1.0", + "escape-string-regexp": "^1.0.0", + "has-ansi": "^0.1.0", + "strip-ansi": "^0.3.0", + "supports-color": "^0.2.0" } }, "dateformat": { @@ -3247,8 +3247,8 @@ "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz", "integrity": "sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=", "requires": { - "get-stdin": "4.0.1", - "meow": "3.7.0" + "get-stdin": "^4.0.1", + "meow": "^3.3.0" } }, "gulp-util": { @@ -3256,14 +3256,14 @@ "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-2.2.20.tgz", "integrity": "sha1-1xRuVyiRC9jwR6awseVJvCLb1kw=", "requires": { - "chalk": "0.5.1", - "dateformat": "1.0.12", - "lodash._reinterpolate": "2.4.1", - "lodash.template": "2.4.1", - "minimist": "0.2.0", - "multipipe": "0.1.2", - "through2": "0.5.1", - "vinyl": "0.2.3" + "chalk": "^0.5.0", + "dateformat": "^1.0.7-1.2.3", + "lodash._reinterpolate": "^2.4.1", + "lodash.template": "^2.4.1", + "minimist": "^0.2.0", + "multipipe": "^0.1.0", + "through2": "^0.5.0", + "vinyl": "^0.2.1" }, "dependencies": { "through2": { @@ -3271,8 +3271,8 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-0.5.1.tgz", "integrity": "sha1-390BLrnHAOIyP9M084rGIqs3Lac=", "requires": { - "readable-stream": "1.0.34", - "xtend": "3.0.0" + "readable-stream": "~1.0.17", + "xtend": "~3.0.0" } } } @@ -3282,7 +3282,7 @@ "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz", "integrity": "sha1-hPJlqujA5qiKEtcCKJS3VoiUxi4=", "requires": { - "ansi-regex": "0.2.1" + "ansi-regex": "^0.2.0" } }, "isarray": { @@ -3300,9 +3300,9 @@ "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-2.4.1.tgz", "integrity": "sha1-LOEsXghNsKV92l5dHu659dF1o7Q=", "requires": { - "lodash._escapehtmlchar": "2.4.1", - "lodash._reunescapedhtml": "2.4.1", - "lodash.keys": "2.4.1" + "lodash._escapehtmlchar": "~2.4.1", + "lodash._reunescapedhtml": "~2.4.1", + "lodash.keys": "~2.4.1" } }, "lodash.keys": { @@ -3310,9 +3310,9 @@ "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz", "integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=", "requires": { - "lodash._isnative": "2.4.1", - "lodash._shimkeys": "2.4.1", - "lodash.isobject": "2.4.1" + "lodash._isnative": "~2.4.1", + "lodash._shimkeys": "~2.4.1", + "lodash.isobject": "~2.4.1" } }, "lodash.template": { @@ -3320,13 +3320,13 @@ "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-2.4.1.tgz", "integrity": "sha1-nmEQB+32KRKal0qzxIuBez4c8g0=", "requires": { - "lodash._escapestringchar": "2.4.1", - "lodash._reinterpolate": "2.4.1", - "lodash.defaults": "2.4.1", - "lodash.escape": "2.4.1", - "lodash.keys": "2.4.1", - "lodash.templatesettings": "2.4.1", - "lodash.values": "2.4.1" + "lodash._escapestringchar": "~2.4.1", + "lodash._reinterpolate": "~2.4.1", + "lodash.defaults": "~2.4.1", + "lodash.escape": "~2.4.1", + "lodash.keys": "~2.4.1", + "lodash.templatesettings": "~2.4.1", + "lodash.values": "~2.4.1" } }, "lodash.templatesettings": { @@ -3334,8 +3334,8 @@ "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-2.4.1.tgz", "integrity": "sha1-6nbHXRHrhtTb6JqDiTu4YZKaxpk=", "requires": { - "lodash._reinterpolate": "2.4.1", - "lodash.escape": "2.4.1" + "lodash._reinterpolate": "~2.4.1", + "lodash.escape": "~2.4.1" } }, "minimist": { @@ -3348,10 +3348,10 @@ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", "isarray": "0.0.1", - "string_decoder": "0.10.31" + "string_decoder": "~0.10.x" } }, "string_decoder": { @@ -3364,7 +3364,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz", "integrity": "sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA=", "requires": { - "ansi-regex": "0.2.1" + "ansi-regex": "^0.2.1" } }, "supports-color": { @@ -3377,8 +3377,8 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz", "integrity": "sha1-2/WGYDEVHsg1K7bE22SiKSqEC5s=", "requires": { - "readable-stream": "1.0.34", - "xtend": "2.1.2" + "readable-stream": "~1.0.17", + "xtend": "~2.1.1" }, "dependencies": { "xtend": { @@ -3386,7 +3386,7 @@ "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", "requires": { - "object-keys": "0.4.0" + "object-keys": "~0.4.0" } } } @@ -3396,7 +3396,7 @@ "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.2.3.tgz", "integrity": "sha1-vKk4IJWC7FpJrVOKAPofEl5RMlI=", "requires": { - "clone-stats": "0.0.1" + "clone-stats": "~0.0.1" } }, "xtend": { @@ -3411,9 +3411,9 @@ "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz", "integrity": "sha1-Yz0WyV2IUEYorQJmVmPO5aR5M1M=", "requires": { - "concat-with-sourcemaps": "1.0.5", - "through2": "2.0.3", - "vinyl": "2.1.0" + "concat-with-sourcemaps": "^1.0.0", + "through2": "^2.0.0", + "vinyl": "^2.0.0" }, "dependencies": { "clone": { @@ -3436,12 +3436,12 @@ "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz", "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", "requires": { - "clone": "2.1.1", - "clone-buffer": "1.0.0", - "clone-stats": "1.0.0", - "cloneable-readable": "1.0.0", - "remove-trailing-separator": "1.1.0", - "replace-ext": "1.0.0" + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" } } } @@ -3451,10 +3451,10 @@ "resolved": "https://registry.npmjs.org/gulp-cssnano/-/gulp-cssnano-2.1.2.tgz", "integrity": "sha1-4IoJdx7FRUpUnxoAW90lbLjl4KM=", "requires": { - "cssnano": "3.10.0", - "gulp-util": "3.0.8", - "object-assign": "4.1.1", - "vinyl-sourcemaps-apply": "0.2.1" + "cssnano": "^3.0.0", + "gulp-util": "^3.0.6", + "object-assign": "^4.0.1", + "vinyl-sourcemaps-apply": "^0.2.1" } }, "gulp-file-include": { @@ -3462,12 +3462,12 @@ "resolved": "https://registry.npmjs.org/gulp-file-include/-/gulp-file-include-1.2.0.tgz", "integrity": "sha512-MC1BEgjWjaArLHczefhLwU1FWSJEUhTk97wI4l/OfJDjl3XXNh3g52ZoRbUcRuoigayVRcQSQYKOaoblT7+4Kg==", "requires": { - "balanced-match": "1.0.0", - "concat-stream": "1.6.0", - "extend": "3.0.1", - "flatnest": "1.0.0", - "gulp-util": "3.0.8", - "through2": "2.0.3" + "balanced-match": "^1.0.0", + "concat-stream": "^1.6.0", + "extend": "^3.0.1", + "flatnest": "^1.0.0", + "gulp-util": "^3.0.8", + "through2": "^2.0.3" } }, "gulp-less": { @@ -3475,13 +3475,13 @@ "resolved": "https://registry.npmjs.org/gulp-less/-/gulp-less-4.0.0.tgz", "integrity": "sha512-cHSgNy6TEGpjuGkjBEhWBtt//YPxtw/Og4VQUlJ2w5izQOk1S+m1v98c4bAYsG79M944mv5x/Ct84RWiF8UvCw==", "requires": { - "accord": "0.29.0", - "less": "3.0.2", - "object-assign": "4.1.1", - "plugin-error": "0.1.2", - "replace-ext": "1.0.0", - "through2": "2.0.3", - "vinyl-sourcemaps-apply": "0.2.1" + "accord": "^0.29.0", + "less": "2.6.x || ^3.0.0", + "object-assign": "^4.0.1", + "plugin-error": "^0.1.2", + "replace-ext": "^1.0.0", + "through2": "^2.0.0", + "vinyl-sourcemaps-apply": "^0.2.0" }, "dependencies": { "accord": { @@ -3489,20 +3489,20 @@ "resolved": "https://registry.npmjs.org/accord/-/accord-0.29.0.tgz", "integrity": "sha512-3OOR92FTc2p5/EcOzPcXp+Cbo+3C15nV9RXHlOUBCBpHhcB+0frbSNR9ehED/o7sTcyGVtqGJpguToEdlXhD0w==", "requires": { - "convert-source-map": "1.5.1", - "glob": "7.1.2", - "indx": "0.2.3", - "lodash.clone": "4.5.0", - "lodash.defaults": "4.2.0", - "lodash.flatten": "4.4.0", - "lodash.merge": "4.6.0", - "lodash.partialright": "4.2.1", - "lodash.pick": "4.4.0", - "lodash.uniq": "4.5.0", - "resolve": "1.5.0", - "semver": "5.5.0", - "uglify-js": "2.8.29", - "when": "3.7.8" + "convert-source-map": "^1.5.0", + "glob": "^7.0.5", + "indx": "^0.2.3", + "lodash.clone": "^4.3.2", + "lodash.defaults": "^4.0.1", + "lodash.flatten": "^4.2.0", + "lodash.merge": "^4.4.0", + "lodash.partialright": "^4.1.4", + "lodash.pick": "^4.2.1", + "lodash.uniq": "^4.3.0", + "resolve": "^1.5.0", + "semver": "^5.3.0", + "uglify-js": "^2.8.22", + "when": "^3.7.8" } }, "ajv": { @@ -3511,10 +3511,10 @@ "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", "optional": true, "requires": { - "co": "4.6.0", - "fast-deep-equal": "1.1.0", - "fast-json-stable-stringify": "2.0.0", - "json-schema-traverse": "0.3.1" + "co": "^4.6.0", + "fast-deep-equal": "^1.0.0", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.3.0" } }, "assert-plus": { @@ -3535,7 +3535,7 @@ "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", "optional": true, "requires": { - "hoek": "4.2.1" + "hoek": "4.x.x" } }, "cryptiles": { @@ -3544,7 +3544,7 @@ "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", "optional": true, "requires": { - "boom": "5.2.0" + "boom": "5.x.x" }, "dependencies": { "boom": { @@ -3553,7 +3553,7 @@ "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", "optional": true, "requires": { - "hoek": "4.2.1" + "hoek": "4.x.x" } } } @@ -3564,9 +3564,9 @@ "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", "optional": true, "requires": { - "asynckit": "0.4.0", + "asynckit": "^0.4.0", "combined-stream": "1.0.6", - "mime-types": "2.1.17" + "mime-types": "^2.1.12" }, "dependencies": { "combined-stream": { @@ -3575,7 +3575,7 @@ "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", "optional": true, "requires": { - "delayed-stream": "1.0.0" + "delayed-stream": "~1.0.0" } } } @@ -3592,8 +3592,8 @@ "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", "optional": true, "requires": { - "ajv": "5.5.2", - "har-schema": "2.0.0" + "ajv": "^5.1.0", + "har-schema": "^2.0.0" } }, "hawk": { @@ -3602,10 +3602,10 @@ "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", "optional": true, "requires": { - "boom": "4.3.1", - "cryptiles": "3.1.2", - "hoek": "4.2.1", - "sntp": "2.1.0" + "boom": "4.x.x", + "cryptiles": "3.x.x", + "hoek": "4.x.x", + "sntp": "2.x.x" } }, "hoek": { @@ -3619,9 +3619,9 @@ "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", "optional": true, "requires": { - "assert-plus": "1.0.0", - "jsprim": "1.4.1", - "sshpk": "1.13.1" + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" } }, "less": { @@ -3629,14 +3629,14 @@ "resolved": "https://registry.npmjs.org/less/-/less-3.0.2.tgz", "integrity": "sha512-konnFwWXpUQwzuwyN3Zfw/2Ziah2BKzqTfGoHBZjJdQWCmR+yrjmIG3QLwnlXNFWz27QetOmhGNSbHgGRdqhYQ==", "requires": { - "errno": "0.1.6", - "graceful-fs": "4.1.11", - "image-size": "0.5.5", - "mime": "1.6.0", - "mkdirp": "0.5.1", - "promise": "7.3.1", - "request": "2.85.0", - "source-map": "0.5.7" + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "mime": "^1.4.1", + "mkdirp": "^0.5.0", + "promise": "^7.1.1", + "request": "^2.83.0", + "source-map": "^0.5.3" } }, "lodash.defaults": { @@ -3667,28 +3667,28 @@ "integrity": "sha512-8H7Ehijd4js+s6wuVPLjwORxD4zeuyjYugprdOXlPSqaApmL/QOy+EB/beICHVCHkGMKNh5rvihb5ov+IDw4mg==", "optional": true, "requires": { - "aws-sign2": "0.7.0", - "aws4": "1.6.0", - "caseless": "0.12.0", - "combined-stream": "1.0.5", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.3.2", - "har-validator": "5.0.3", - "hawk": "6.0.2", - "http-signature": "1.2.0", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.17", - "oauth-sign": "0.8.2", - "performance-now": "2.1.0", - "qs": "6.5.1", - "safe-buffer": "5.1.1", - "stringstream": "0.0.5", - "tough-cookie": "2.3.3", - "tunnel-agent": "0.6.0", - "uuid": "3.1.0" + "aws-sign2": "~0.7.0", + "aws4": "^1.6.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.5", + "extend": "~3.0.1", + "forever-agent": "~0.6.1", + "form-data": "~2.3.1", + "har-validator": "~5.0.3", + "hawk": "~6.0.2", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.17", + "oauth-sign": "~0.8.2", + "performance-now": "^2.1.0", + "qs": "~6.5.1", + "safe-buffer": "^5.1.1", + "stringstream": "~0.0.5", + "tough-cookie": "~2.3.3", + "tunnel-agent": "^0.6.0", + "uuid": "^3.1.0" } }, "semver": { @@ -3702,7 +3702,7 @@ "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", "optional": true, "requires": { - "hoek": "4.2.1" + "hoek": "4.x.x" } } } @@ -3712,13 +3712,13 @@ "resolved": "https://registry.npmjs.org/gulp-notify/-/gulp-notify-3.2.0.tgz", "integrity": "sha512-qEocs1UVoDKKUjfsxJNMNwkRla0PbsyJwsqNNXpzYWsLQ29LhxRMY3wnTGZcc4hMHtalnvah/Dwlwb4NijH/0A==", "requires": { - "ansi-colors": "1.0.1", - "fancy-log": "1.3.2", - "lodash.template": "4.4.0", - "node-notifier": "5.2.1", - "node.extend": "2.0.0", - "plugin-error": "0.1.2", - "through2": "2.0.3" + "ansi-colors": "^1.0.1", + "fancy-log": "^1.3.2", + "lodash.template": "^4.4.0", + "node-notifier": "^5.2.1", + "node.extend": "^2.0.0", + "plugin-error": "^0.1.2", + "through2": "^2.0.3" }, "dependencies": { "lodash.template": { @@ -3726,8 +3726,8 @@ "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz", "integrity": "sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A=", "requires": { - "lodash._reinterpolate": "3.0.0", - "lodash.templatesettings": "4.1.0" + "lodash._reinterpolate": "~3.0.0", + "lodash.templatesettings": "^4.0.0" } }, "lodash.templatesettings": { @@ -3735,7 +3735,7 @@ "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz", "integrity": "sha1-K01OlbpEDZFf8IvImeRVNmZxMxY=", "requires": { - "lodash._reinterpolate": "3.0.0" + "lodash._reinterpolate": "~3.0.0" } } } @@ -3745,10 +3745,10 @@ "resolved": "https://registry.npmjs.org/gulp-plumber/-/gulp-plumber-1.2.0.tgz", "integrity": "sha512-L/LJftsbKoHbVj6dN5pvMsyJn9jYI0wT0nMg3G6VZhDac4NesezecYTi8/48rHi+yEic3sUpw6jlSc7qNWh32A==", "requires": { - "chalk": "1.1.3", - "fancy-log": "1.3.2", - "plugin-error": "0.1.2", - "through2": "2.0.3" + "chalk": "^1.1.3", + "fancy-log": "^1.3.2", + "plugin-error": "^0.1.2", + "through2": "^2.0.3" } }, "gulp-rename": { @@ -3761,13 +3761,13 @@ "resolved": "https://registry.npmjs.org/gulp-shell/-/gulp-shell-0.6.5.tgz", "integrity": "sha512-f3m1WcS0o2B72/PGj1Jbv9zYR9rynBh/EQJv64n01xQUo7j7anols0eww9GG/WtDTzGVQLrupVDYkifRFnj5Zg==", "requires": { - "async": "2.6.0", - "chalk": "2.3.0", - "fancy-log": "1.3.2", - "lodash": "4.17.4", - "lodash.template": "4.4.0", - "plugin-error": "0.1.2", - "through2": "2.0.3" + "async": "^2.1.5", + "chalk": "^2.3.0", + "fancy-log": "^1.3.2", + "lodash": "^4.17.4", + "lodash.template": "^4.4.0", + "plugin-error": "^0.1.2", + "through2": "^2.0.3" }, "dependencies": { "ansi-styles": { @@ -3775,7 +3775,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", "requires": { - "color-convert": "1.9.1" + "color-convert": "^1.9.0" } }, "chalk": { @@ -3783,9 +3783,9 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", "requires": { - "ansi-styles": "3.2.0", - "escape-string-regexp": "1.0.5", - "supports-color": "4.5.0" + "ansi-styles": "^3.1.0", + "escape-string-regexp": "^1.0.5", + "supports-color": "^4.0.0" } }, "lodash.template": { @@ -3793,8 +3793,8 @@ "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz", "integrity": "sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A=", "requires": { - "lodash._reinterpolate": "3.0.0", - "lodash.templatesettings": "4.1.0" + "lodash._reinterpolate": "~3.0.0", + "lodash.templatesettings": "^4.0.0" } }, "lodash.templatesettings": { @@ -3802,7 +3802,7 @@ "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz", "integrity": "sha1-K01OlbpEDZFf8IvImeRVNmZxMxY=", "requires": { - "lodash._reinterpolate": "3.0.0" + "lodash._reinterpolate": "~3.0.0" } }, "supports-color": { @@ -3810,7 +3810,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", "requires": { - "has-flag": "2.0.0" + "has-flag": "^2.0.0" } } } @@ -3820,9 +3820,9 @@ "resolved": "https://registry.npmjs.org/gulp-template/-/gulp-template-4.0.0.tgz", "integrity": "sha1-Bd42gIxvuZZleNWpTucs7gjNxTs=", "requires": { - "gulp-util": "3.0.8", - "lodash": "4.17.4", - "through2": "2.0.3" + "gulp-util": "^3.0.0", + "lodash": "^4.8.2", + "through2": "^2.0.0" } }, "gulp-uglify": { @@ -3830,14 +3830,14 @@ "resolved": "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-2.1.2.tgz", "integrity": "sha1-bbhbHQ7mPRgFhZK2WGSdZcLsRUE=", "requires": { - "gulplog": "1.0.0", - "has-gulplog": "0.1.0", - "lodash": "4.17.4", - "make-error-cause": "1.2.2", - "through2": "2.0.3", - "uglify-js": "2.8.29", - "uglify-save-license": "0.4.1", - "vinyl-sourcemaps-apply": "0.2.1" + "gulplog": "^1.0.0", + "has-gulplog": "^0.1.0", + "lodash": "^4.13.1", + "make-error-cause": "^1.1.1", + "through2": "^2.0.0", + "uglify-js": "~2.8.10", + "uglify-save-license": "^0.4.1", + "vinyl-sourcemaps-apply": "^0.2.0" } }, "gulp-util": { @@ -3845,24 +3845,24 @@ "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz", "integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=", "requires": { - "array-differ": "1.0.0", - "array-uniq": "1.0.3", - "beeper": "1.1.1", - "chalk": "1.1.3", - "dateformat": "2.2.0", - "fancy-log": "1.3.2", - "gulplog": "1.0.0", - "has-gulplog": "0.1.0", - "lodash._reescape": "3.0.0", - "lodash._reevaluate": "3.0.0", - "lodash._reinterpolate": "3.0.0", - "lodash.template": "3.6.2", - "minimist": "1.2.0", - "multipipe": "0.1.2", - "object-assign": "3.0.0", + "array-differ": "^1.0.0", + "array-uniq": "^1.0.2", + "beeper": "^1.0.0", + "chalk": "^1.0.0", + "dateformat": "^2.0.0", + "fancy-log": "^1.1.0", + "gulplog": "^1.0.0", + "has-gulplog": "^0.1.0", + "lodash._reescape": "^3.0.0", + "lodash._reevaluate": "^3.0.0", + "lodash._reinterpolate": "^3.0.0", + "lodash.template": "^3.0.0", + "minimist": "^1.1.0", + "multipipe": "^0.1.2", + "object-assign": "^3.0.0", "replace-ext": "0.0.1", - "through2": "2.0.3", - "vinyl": "0.5.3" + "through2": "^2.0.0", + "vinyl": "^0.5.0" }, "dependencies": { "minimist": { @@ -3882,11 +3882,11 @@ "resolved": "https://registry.npmjs.org/gulp-zip/-/gulp-zip-4.1.0.tgz", "integrity": "sha1-2rF4vZmvoZCSPx63irrw20eBdwQ=", "requires": { - "get-stream": "3.0.0", - "plugin-error": "0.1.2", - "through2": "2.0.3", - "vinyl": "2.1.0", - "yazl": "2.4.3" + "get-stream": "^3.0.0", + "plugin-error": "^0.1.2", + "through2": "^2.0.1", + "vinyl": "^2.1.0", + "yazl": "^2.1.0" }, "dependencies": { "clone": { @@ -3909,12 +3909,12 @@ "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz", "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", "requires": { - "clone": "2.1.1", - "clone-buffer": "1.0.0", - "clone-stats": "1.0.0", - "cloneable-readable": "1.0.0", - "remove-trailing-separator": "1.1.0", - "replace-ext": "1.0.0" + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" } } } @@ -3924,7 +3924,7 @@ "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", "requires": { - "glogg": "1.0.0" + "glogg": "^1.0.0" } }, "has": { @@ -3932,7 +3932,7 @@ "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz", "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=", "requires": { - "function-bind": "1.1.1" + "function-bind": "^1.0.2" } }, "has-ansi": { @@ -3940,7 +3940,7 @@ "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", "requires": { - "ansi-regex": "2.1.1" + "ansi-regex": "^2.0.0" } }, "has-flag": { @@ -3953,7 +3953,7 @@ "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=", "requires": { - "sparkles": "1.0.0" + "sparkles": "^1.0.0" } }, "has-value": { @@ -3961,9 +3961,9 @@ "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", "requires": { - "get-value": "2.0.6", - "has-values": "1.0.0", - "isobject": "3.0.1" + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" } }, "has-values": { @@ -3971,8 +3971,8 @@ "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", "requires": { - "is-number": "3.0.0", - "kind-of": "4.0.0" + "is-number": "^3.0.0", + "kind-of": "^4.0.0" }, "dependencies": { "kind-of": { @@ -3980,7 +3980,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -3991,7 +3991,7 @@ "integrity": "sha1-ZuodhW206KVHDK32/OI65SRO8uE=", "dev": true, "requires": { - "inherits": "2.0.3" + "inherits": "^2.0.1" } }, "hash.js": { @@ -4000,8 +4000,8 @@ "integrity": "sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==", "dev": true, "requires": { - "inherits": "2.0.3", - "minimalistic-assert": "1.0.0" + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.0" } }, "hdkey": { @@ -4010,8 +4010,8 @@ "integrity": "sha1-yu5L6BqneSHpCbjSKN0PKayu5jI=", "dev": true, "requires": { - "coinstring": "2.3.0", - "secp256k1": "3.4.0" + "coinstring": "^2.0.0", + "secp256k1": "^3.0.1" } }, "he": { @@ -4026,9 +4026,9 @@ "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", "dev": true, "requires": { - "hash.js": "1.1.3", - "minimalistic-assert": "1.0.0", - "minimalistic-crypto-utils": "1.0.1" + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" } }, "home-or-tmp": { @@ -4036,8 +4036,8 @@ "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=", "requires": { - "os-homedir": "1.0.2", - "os-tmpdir": "1.0.2" + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.1" } }, "homedir-polyfill": { @@ -4045,7 +4045,7 @@ "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz", "integrity": "sha1-TCu8inWJmP7r9e1oWA921GdotLw=", "requires": { - "parse-passwd": "1.0.0" + "parse-passwd": "^1.0.0" } }, "hosted-git-info": { @@ -4064,14 +4064,14 @@ "integrity": "sha1-qbW47aUBNi1MVpnbAqjccgE9H6s=", "dev": true, "requires": { - "camel-case": "3.0.0", - "clean-css": "4.0.13", - "commander": "2.9.0", - "he": "1.1.1", - "ncname": "1.0.0", - "param-case": "2.1.1", - "relateurl": "0.2.7", - "uglify-js": "2.7.5" + "camel-case": "3.0.x", + "clean-css": "4.0.x", + "commander": "2.9.x", + "he": "1.1.x", + "ncname": "1.0.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "2.7.x" }, "dependencies": { "async": { @@ -4086,10 +4086,10 @@ "integrity": "sha1-RhLAx7qu4rp8SH3kkErhIgefLKg=", "dev": true, "requires": { - "async": "0.2.10", - "source-map": "0.5.7", - "uglify-to-browserify": "1.0.2", - "yargs": "3.10.0" + "async": "~0.2.6", + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" } } } @@ -4101,7 +4101,7 @@ "dev": true, "requires": { "html-minifier": "3.3.0", - "through": "2.3.8" + "through": "^2.3.8" } }, "htmlescape": { @@ -4122,7 +4122,7 @@ "integrity": "sha1-vgmLK3wcq/vvh6i4D2JvrDc2auo=", "dev": true, "requires": { - "punycode": "2.1.0" + "punycode": "^2.1.0" }, "dependencies": { "punycode": { @@ -4155,7 +4155,7 @@ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", "requires": { - "repeating": "2.0.1" + "repeating": "^2.0.0" } }, "indexes-of": { @@ -4179,8 +4179,8 @@ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" + "once": "^1.3.0", + "wrappy": "1" } }, "inherits": { @@ -4199,7 +4199,7 @@ "integrity": "sha1-+Tk0ccGKedFyT4Y/o4tYY3Ct4qU=", "dev": true, "requires": { - "source-map": "0.5.7" + "source-map": "~0.5.3" } }, "insert-module-globals": { @@ -4208,14 +4208,14 @@ "integrity": "sha1-wDv04BywhtW15azorQr+eInWOMM=", "dev": true, "requires": { - "JSONStream": "1.3.2", - "combine-source-map": "0.7.2", - "concat-stream": "1.5.2", - "is-buffer": "1.1.6", - "lexical-scope": "1.2.0", - "process": "0.11.10", - "through2": "2.0.3", - "xtend": "4.0.1" + "JSONStream": "^1.0.3", + "combine-source-map": "~0.7.1", + "concat-stream": "~1.5.1", + "is-buffer": "^1.1.0", + "lexical-scope": "^1.2.0", + "process": "~0.11.0", + "through2": "^2.0.0", + "xtend": "^4.0.0" }, "dependencies": { "concat-stream": { @@ -4224,9 +4224,9 @@ "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", "dev": true, "requires": { - "inherits": "2.0.3", - "readable-stream": "2.0.6", - "typedarray": "0.0.6" + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" } }, "readable-stream": { @@ -4235,12 +4235,12 @@ "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "0.10.31", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -4267,7 +4267,7 @@ "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz", "integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=", "requires": { - "loose-envify": "1.3.1" + "loose-envify": "^1.0.0" } }, "is": { @@ -4280,8 +4280,8 @@ "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", "requires": { - "is-relative": "1.0.0", - "is-windows": "1.0.1" + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" } }, "is-absolute-url": { @@ -4294,7 +4294,7 @@ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.0" } }, "is-arrayish": { @@ -4312,7 +4312,7 @@ "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", "requires": { - "builtin-modules": "1.1.1" + "builtin-modules": "^1.0.0" } }, "is-data-descriptor": { @@ -4320,7 +4320,7 @@ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.0" } }, "is-descriptor": { @@ -4328,9 +4328,9 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { - "is-accessor-descriptor": "1.0.0", - "is-data-descriptor": "1.0.0", - "kind-of": "6.0.2" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, "is-extendable": { @@ -4348,7 +4348,7 @@ "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", "requires": { - "number-is-nan": "1.0.1" + "number-is-nan": "^1.0.0" } }, "is-glob": { @@ -4356,7 +4356,7 @@ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", "requires": { - "is-extglob": "2.1.1" + "is-extglob": "^2.1.0" } }, "is-hex-prefixed": { @@ -4370,7 +4370,7 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -4378,7 +4378,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -4388,7 +4388,7 @@ "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-1.0.0.tgz", "integrity": "sha1-O4qTLrAos3dcObsJ6RdnrM22kIg=", "requires": { - "is-number": "3.0.0" + "is-number": "^3.0.0" } }, "is-plain-obj": { @@ -4401,7 +4401,7 @@ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "requires": { - "isobject": "3.0.1" + "isobject": "^3.0.1" } }, "is-relative": { @@ -4409,7 +4409,7 @@ "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", "requires": { - "is-unc-path": "1.0.0" + "is-unc-path": "^1.0.0" } }, "is-svg": { @@ -4417,7 +4417,7 @@ "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz", "integrity": "sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk=", "requires": { - "html-comment-regex": "1.1.1" + "html-comment-regex": "^1.1.0" } }, "is-typedarray": { @@ -4431,7 +4431,7 @@ "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", "requires": { - "unc-path-regex": "0.1.2" + "unc-path-regex": "^0.1.2" } }, "is-utf8": { @@ -4486,8 +4486,8 @@ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz", "integrity": "sha1-XJZ93YN6m/3KXy3oQlOr6KHAO4A=", "requires": { - "argparse": "1.0.9", - "esprima": "2.7.3" + "argparse": "^1.0.7", + "esprima": "^2.6.0" } }, "jsbn": { @@ -4568,10 +4568,10 @@ "integrity": "sha512-eZVaCpblK5formjPjeTBik7TAg+pqnDrMHIffSvi9Lh7PQgM1+hSzakUeZFCk9DVVG0dacZJuaz2ntwlzZUIBw==", "dev": true, "requires": { - "bindings": "1.3.0", - "inherits": "2.0.3", - "nan": "2.8.0", - "safe-buffer": "5.1.1" + "bindings": "^1.2.1", + "inherits": "^2.0.3", + "nan": "^2.2.1", + "safe-buffer": "^5.1.0" } }, "keccakjs": { @@ -4580,8 +4580,8 @@ "integrity": "sha1-Q6pxv1+mbzhBQLTwYoMfachro9A=", "dev": true, "requires": { - "browserify-sha3": "0.0.1", - "sha3": "1.2.0" + "browserify-sha3": "^0.0.1", + "sha3": "^1.1.0" } }, "kind-of": { @@ -4595,9 +4595,9 @@ "integrity": "sha1-pS4dE4AkwAuGscDJH2d5GLiuClk=", "dev": true, "requires": { - "inherits": "2.0.3", - "isarray": "0.0.1", - "stream-splicer": "2.0.0" + "inherits": "^2.0.1", + "isarray": "~0.0.1", + "stream-splicer": "^2.0.0" }, "dependencies": { "isarray": { @@ -4613,7 +4613,7 @@ "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", "integrity": "sha1-uRkKT5EzVGlIQIWfio9whNiCImQ=", "requires": { - "set-getter": "0.1.0" + "set-getter": "^0.1.0" } }, "lazystream": { @@ -4621,7 +4621,7 @@ "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz", "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", "requires": { - "readable-stream": "2.3.3" + "readable-stream": "^2.0.5" } }, "leven": { @@ -4642,7 +4642,7 @@ "integrity": "sha1-/Ope3HBKSzqHls3KQZw6CvryLfQ=", "dev": true, "requires": { - "astw": "2.2.0" + "astw": "^2.0.0" } }, "liftoff": { @@ -4650,14 +4650,14 @@ "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz", "integrity": "sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=", "requires": { - "extend": "3.0.1", - "findup-sync": "2.0.0", - "fined": "1.1.0", - "flagged-respawn": "1.0.0", - "is-plain-object": "2.0.4", - "object.map": "1.0.1", - "rechoir": "0.6.2", - "resolve": "1.5.0" + "extend": "^3.0.0", + "findup-sync": "^2.0.0", + "fined": "^1.0.1", + "flagged-respawn": "^1.0.0", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.0", + "rechoir": "^0.6.2", + "resolve": "^1.1.7" } }, "load-json-file": { @@ -4665,11 +4665,11 @@ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", "requires": { - "graceful-fs": "4.1.11", - "parse-json": "2.2.0", - "pify": "2.3.0", - "pinkie-promise": "2.0.1", - "strip-bom": "2.0.0" + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" }, "dependencies": { "strip-bom": { @@ -4677,7 +4677,7 @@ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", "requires": { - "is-utf8": "0.2.1" + "is-utf8": "^0.2.0" } } } @@ -4707,7 +4707,7 @@ "resolved": "https://registry.npmjs.org/lodash._escapehtmlchar/-/lodash._escapehtmlchar-2.4.1.tgz", "integrity": "sha1-32fDu2t+jh6DGrSL+geVuSr+iZ0=", "requires": { - "lodash._htmlescapes": "2.4.1" + "lodash._htmlescapes": "~2.4.1" } }, "lodash._escapestringchar": { @@ -4760,8 +4760,8 @@ "resolved": "https://registry.npmjs.org/lodash._reunescapedhtml/-/lodash._reunescapedhtml-2.4.1.tgz", "integrity": "sha1-dHxPxAED6zu4oJduVx96JlnpO6c=", "requires": { - "lodash._htmlescapes": "2.4.1", - "lodash.keys": "2.4.1" + "lodash._htmlescapes": "~2.4.1", + "lodash.keys": "~2.4.1" }, "dependencies": { "lodash.keys": { @@ -4769,9 +4769,9 @@ "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz", "integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=", "requires": { - "lodash._isnative": "2.4.1", - "lodash._shimkeys": "2.4.1", - "lodash.isobject": "2.4.1" + "lodash._isnative": "~2.4.1", + "lodash._shimkeys": "~2.4.1", + "lodash.isobject": "~2.4.1" } } } @@ -4786,7 +4786,7 @@ "resolved": "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz", "integrity": "sha1-bpzJZm/wgfC1psl4uD4kLmlJ0gM=", "requires": { - "lodash._objecttypes": "2.4.1" + "lodash._objecttypes": "~2.4.1" } }, "lodash.clone": { @@ -4799,8 +4799,8 @@ "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-2.4.1.tgz", "integrity": "sha1-p+iIXwXmiFEUS24SqPNngCa8TFQ=", "requires": { - "lodash._objecttypes": "2.4.1", - "lodash.keys": "2.4.1" + "lodash._objecttypes": "~2.4.1", + "lodash.keys": "~2.4.1" }, "dependencies": { "lodash.keys": { @@ -4808,9 +4808,9 @@ "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz", "integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=", "requires": { - "lodash._isnative": "2.4.1", - "lodash._shimkeys": "2.4.1", - "lodash.isobject": "2.4.1" + "lodash._isnative": "~2.4.1", + "lodash._shimkeys": "~2.4.1", + "lodash.isobject": "~2.4.1" } } } @@ -4820,7 +4820,7 @@ "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=", "requires": { - "lodash._root": "3.0.1" + "lodash._root": "^3.0.0" } }, "lodash.flatten": { @@ -4843,7 +4843,7 @@ "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz", "integrity": "sha1-Wi5H/mmVPx7mMafrof5k0tBlWPU=", "requires": { - "lodash._objecttypes": "2.4.1" + "lodash._objecttypes": "~2.4.1" } }, "lodash.keys": { @@ -4851,9 +4851,9 @@ "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", "requires": { - "lodash._getnative": "3.9.1", - "lodash.isarguments": "3.1.0", - "lodash.isarray": "3.0.4" + "lodash._getnative": "^3.0.0", + "lodash.isarguments": "^3.0.0", + "lodash.isarray": "^3.0.0" } }, "lodash.memoize": { @@ -4886,15 +4886,15 @@ "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=", "requires": { - "lodash._basecopy": "3.0.1", - "lodash._basetostring": "3.0.1", - "lodash._basevalues": "3.0.0", - "lodash._isiterateecall": "3.0.9", - "lodash._reinterpolate": "3.0.0", - "lodash.escape": "3.2.0", - "lodash.keys": "3.1.2", - "lodash.restparam": "3.6.1", - "lodash.templatesettings": "3.1.1" + "lodash._basecopy": "^3.0.0", + "lodash._basetostring": "^3.0.0", + "lodash._basevalues": "^3.0.0", + "lodash._isiterateecall": "^3.0.0", + "lodash._reinterpolate": "^3.0.0", + "lodash.escape": "^3.0.0", + "lodash.keys": "^3.0.0", + "lodash.restparam": "^3.0.0", + "lodash.templatesettings": "^3.0.0" } }, "lodash.templatesettings": { @@ -4902,8 +4902,8 @@ "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=", "requires": { - "lodash._reinterpolate": "3.0.0", - "lodash.escape": "3.2.0" + "lodash._reinterpolate": "^3.0.0", + "lodash.escape": "^3.0.0" } }, "lodash.uniq": { @@ -4916,7 +4916,7 @@ "resolved": "https://registry.npmjs.org/lodash.values/-/lodash.values-2.4.1.tgz", "integrity": "sha1-q/UUQ2s8twUAFieXjLzzCxKA7qQ=", "requires": { - "lodash.keys": "2.4.1" + "lodash.keys": "~2.4.1" }, "dependencies": { "lodash.keys": { @@ -4924,9 +4924,9 @@ "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz", "integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=", "requires": { - "lodash._isnative": "2.4.1", - "lodash._shimkeys": "2.4.1", - "lodash.isobject": "2.4.1" + "lodash._isnative": "~2.4.1", + "lodash._shimkeys": "~2.4.1", + "lodash.isobject": "~2.4.1" } } } @@ -4941,7 +4941,7 @@ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", "requires": { - "js-tokens": "3.0.2" + "js-tokens": "^3.0.0" } }, "loud-rejection": { @@ -4949,8 +4949,8 @@ "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", "requires": { - "currently-unhandled": "0.4.1", - "signal-exit": "3.0.2" + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" } }, "lower-case": { @@ -4979,7 +4979,7 @@ "resolved": "https://registry.npmjs.org/make-error-cause/-/make-error-cause-1.2.2.tgz", "integrity": "sha1-3wOI/NCzeBbf8KX7gQiTl3fcvJ0=", "requires": { - "make-error": "1.3.2" + "make-error": "^1.2.0" } }, "make-iterator": { @@ -4987,7 +4987,7 @@ "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.0.tgz", "integrity": "sha1-V7713IXSOSO6I3ZzJNjo+PPZaUs=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.1.0" }, "dependencies": { "kind-of": { @@ -4995,7 +4995,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -5015,7 +5015,7 @@ "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", "requires": { - "object-visit": "1.0.1" + "object-visit": "^1.0.0" } }, "marked": { @@ -5035,8 +5035,8 @@ "integrity": "sha1-6b296UogpawYsENA/Fdk1bCdkB0=", "dev": true, "requires": { - "hash-base": "3.0.4", - "inherits": "2.0.3" + "hash-base": "^3.0.0", + "inherits": "^2.0.1" }, "dependencies": { "hash-base": { @@ -5045,8 +5045,8 @@ "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", "dev": true, "requires": { - "inherits": "2.0.3", - "safe-buffer": "5.1.1" + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" } } } @@ -5056,16 +5056,16 @@ "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", "requires": { - "camelcase-keys": "2.1.0", - "decamelize": "1.2.0", - "loud-rejection": "1.6.0", - "map-obj": "1.0.1", - "minimist": "1.2.0", - "normalize-package-data": "2.4.0", - "object-assign": "4.1.1", - "read-pkg-up": "1.0.1", - "redent": "1.0.0", - "trim-newlines": "1.0.0" + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" }, "dependencies": { "minimist": { @@ -5080,19 +5080,19 @@ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.5.tgz", "integrity": "sha512-ykttrLPQrz1PUJcXjwsTUjGoPJ64StIGNE2lGVD1c9CuguJ+L7/navsE8IcDNndOoCMvYV0qc/exfVbMHkUhvA==", "requires": { - "arr-diff": "4.0.0", - "array-unique": "0.3.2", - "braces": "2.3.0", - "define-property": "1.0.0", - "extend-shallow": "2.0.1", - "extglob": "2.0.4", - "fragment-cache": "0.2.1", - "kind-of": "6.0.2", - "nanomatch": "1.2.7", - "object.pick": "1.3.0", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.1" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.0", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "extglob": "^2.0.2", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.0", + "nanomatch": "^1.2.5", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" } }, "miller-rabin": { @@ -5101,8 +5101,8 @@ "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", "dev": true, "requires": { - "bn.js": "4.11.8", - "brorand": "1.1.0" + "bn.js": "^4.0.0", + "brorand": "^1.0.1" } }, "mime": { @@ -5121,7 +5121,7 @@ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", "requires": { - "mime-db": "1.30.0" + "mime-db": "~1.30.0" } }, "minimalistic-assert": { @@ -5141,7 +5141,7 @@ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "requires": { - "brace-expansion": "1.1.8" + "brace-expansion": "^1.1.7" } }, "minimist": { @@ -5154,8 +5154,8 @@ "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.0.tgz", "integrity": "sha512-dgaCvoh6i1nosAUBKb0l0pfJ78K8+S9fluyIR2YvAeUD/QuMahnFnF3xYty5eYXMjhGSsB0DsW6A0uAZyetoAg==", "requires": { - "for-in": "1.0.2", - "is-extendable": "1.0.1" + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" }, "dependencies": { "is-extendable": { @@ -5163,7 +5163,7 @@ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "requires": { - "is-plain-object": "2.0.4" + "is-plain-object": "^2.0.4" } } } @@ -5182,21 +5182,21 @@ "integrity": "sha1-IyFYM/HaE/1gbMuAh7RIUty4If0=", "dev": true, "requires": { - "JSONStream": "1.3.2", - "browser-resolve": "1.11.2", - "cached-path-relative": "1.0.1", - "concat-stream": "1.5.2", - "defined": "1.0.0", - "detective": "4.7.1", - "duplexer2": "0.1.4", - "inherits": "2.0.3", - "parents": "1.0.1", - "readable-stream": "2.3.3", - "resolve": "1.5.0", - "stream-combiner2": "1.1.1", - "subarg": "1.0.0", - "through2": "2.0.3", - "xtend": "4.0.1" + "JSONStream": "^1.0.3", + "browser-resolve": "^1.7.0", + "cached-path-relative": "^1.0.0", + "concat-stream": "~1.5.0", + "defined": "^1.0.0", + "detective": "^4.0.0", + "duplexer2": "^0.1.2", + "inherits": "^2.0.1", + "parents": "^1.0.0", + "readable-stream": "^2.0.2", + "resolve": "^1.1.3", + "stream-combiner2": "^1.1.1", + "subarg": "^1.0.0", + "through2": "^2.0.0", + "xtend": "^4.0.0" }, "dependencies": { "concat-stream": { @@ -5205,9 +5205,9 @@ "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", "dev": true, "requires": { - "inherits": "2.0.3", - "readable-stream": "2.0.6", - "typedarray": "0.0.6" + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" }, "dependencies": { "readable-stream": { @@ -5216,12 +5216,12 @@ "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "0.10.31", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" } } } @@ -5232,7 +5232,7 @@ "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", "dev": true, "requires": { - "readable-stream": "2.3.3" + "readable-stream": "^2.0.2" } }, "string_decoder": { @@ -5267,17 +5267,17 @@ "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.7.tgz", "integrity": "sha512-/5ldsnyurvEw7wNpxLFgjVvBLMta43niEYOy0CJ4ntcYSbx6bugRUTQeFb4BR/WanEL1o3aQgHuVLHQaB6tOqg==", "requires": { - "arr-diff": "4.0.0", - "array-unique": "0.3.2", - "define-property": "1.0.0", - "extend-shallow": "2.0.1", - "fragment-cache": "0.2.1", - "is-odd": "1.0.0", - "kind-of": "5.1.0", - "object.pick": "1.3.0", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.1" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "is-odd": "^1.0.0", + "kind-of": "^5.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "dependencies": { "kind-of": { @@ -5298,7 +5298,7 @@ "integrity": "sha1-W1etGLHKCShk72Kwse2BlPODtxw=", "dev": true, "requires": { - "xml-char-classes": "1.0.0" + "xml-char-classes": "^1.0.0" } }, "no-case": { @@ -5307,7 +5307,7 @@ "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", "dev": true, "requires": { - "lower-case": "1.1.4" + "lower-case": "^1.1.1" } }, "node-notifier": { @@ -5315,10 +5315,10 @@ "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.2.1.tgz", "integrity": "sha512-MIBs+AAd6dJ2SklbbE8RUDRlIVhU8MaNLh1A9SUZDUHPiZkWLFde6UNwG41yQHZEToHgJMXqyVZ9UcS/ReOVTg==", "requires": { - "growly": "1.3.0", - "semver": "5.4.1", - "shellwords": "0.1.1", - "which": "1.3.0" + "growly": "^1.3.0", + "semver": "^5.4.1", + "shellwords": "^0.1.1", + "which": "^1.3.0" }, "dependencies": { "semver": { @@ -5333,7 +5333,7 @@ "resolved": "https://registry.npmjs.org/node.extend/-/node.extend-2.0.0.tgz", "integrity": "sha1-dSWih1Z36lNHhKXhCseJVhOWFN8=", "requires": { - "is": "3.2.1" + "is": "^3.2.1" } }, "normalize-git-url": { @@ -5346,10 +5346,10 @@ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", "requires": { - "hosted-git-info": "2.5.0", - "is-builtin-module": "1.0.0", - "semver": "4.3.6", - "validate-npm-package-license": "3.0.1" + "hosted-git-info": "^2.1.4", + "is-builtin-module": "^1.0.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, "normalize-path": { @@ -5357,7 +5357,7 @@ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", "requires": { - "remove-trailing-separator": "1.1.0" + "remove-trailing-separator": "^1.0.1" } }, "normalize-range": { @@ -5370,10 +5370,10 @@ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", "requires": { - "object-assign": "4.1.1", - "prepend-http": "1.0.4", - "query-string": "4.3.4", - "sort-keys": "1.1.2" + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" } }, "npm": { @@ -5381,105 +5381,105 @@ "resolved": "https://registry.npmjs.org/npm/-/npm-4.6.1.tgz", "integrity": "sha1-+Osa0A3FilUUNjtBylNCgX8L1kY=", "requires": { - "JSONStream": "1.3.1", - "abbrev": "1.1.0", - "ansi-regex": "2.1.1", - "ansicolors": "0.3.2", - "ansistyles": "0.1.3", - "aproba": "1.1.1", - "archy": "1.0.0", - "asap": "2.0.5", - "bluebird": "3.5.0", - "call-limit": "1.1.0", - "chownr": "1.0.1", - "cmd-shim": "2.0.2", - "columnify": "1.5.4", - "config-chain": "1.1.11", - "debuglog": "1.0.1", - "dezalgo": "1.0.3", - "editor": "1.0.0", - "fs-vacuum": "1.2.10", - "fs-write-stream-atomic": "1.0.10", - "fstream": "1.0.11", - "fstream-npm": "1.2.0", - "glob": "7.1.1", - "graceful-fs": "4.1.11", - "has-unicode": "2.0.1", - "hosted-git-info": "2.4.2", - "iferr": "0.1.5", - "imurmurhash": "0.1.4", - "inflight": "1.0.6", - "inherits": "2.0.3", - "ini": "1.3.4", - "init-package-json": "1.10.1", - "lazy-property": "1.0.0", - "lockfile": "1.0.3", - "lodash._baseindexof": "3.1.0", - "lodash._baseuniq": "4.6.0", - "lodash._bindcallback": "3.0.1", - "lodash._cacheindexof": "3.0.2", - "lodash._createcache": "3.1.2", - "lodash._getnative": "3.9.1", - "lodash.clonedeep": "4.5.0", - "lodash.restparam": "3.6.1", - "lodash.union": "4.6.0", - "lodash.uniq": "4.5.0", - "lodash.without": "4.4.0", - "mississippi": "1.3.0", - "mkdirp": "0.5.1", - "move-concurrently": "1.0.1", - "node-gyp": "3.6.0", - "nopt": "4.0.1", - "normalize-git-url": "3.0.2", - "normalize-package-data": "2.3.8", - "npm-cache-filename": "1.0.2", - "npm-install-checks": "3.0.0", - "npm-package-arg": "4.2.1", - "npm-registry-client": "8.1.1", - "npm-user-validate": "0.1.5", - "npmlog": "4.0.2", - "once": "1.4.0", - "opener": "1.4.3", - "osenv": "0.1.4", - "path-is-inside": "1.0.2", - "read": "1.0.7", - "read-cmd-shim": "1.0.1", - "read-installed": "4.0.3", - "read-package-json": "2.0.5", - "read-package-tree": "5.1.5", - "readable-stream": "2.2.9", - "readdir-scoped-modules": "1.0.2", - "realize-package-specifier": "3.0.3", - "request": "2.81.0", - "retry": "0.10.1", - "rimraf": "2.6.1", - "semver": "5.3.0", - "sha": "2.0.1", - "slide": "1.1.6", - "sorted-object": "2.0.1", - "sorted-union-stream": "2.1.3", - "strip-ansi": "3.0.1", - "tar": "2.2.1", - "text-table": "0.2.0", + "JSONStream": "~1.3.1", + "abbrev": "~1.1.0", + "ansi-regex": "~2.1.1", + "ansicolors": "~0.3.2", + "ansistyles": "~0.1.3", + "aproba": "~1.1.1", + "archy": "~1.0.0", + "asap": "~2.0.5", + "bluebird": "~3.5.0", + "call-limit": "~1.1.0", + "chownr": "~1.0.1", + "cmd-shim": "~2.0.2", + "columnify": "~1.5.4", + "config-chain": "~1.1.11", + "debuglog": "*", + "dezalgo": "~1.0.3", + "editor": "~1.0.0", + "fs-vacuum": "~1.2.10", + "fs-write-stream-atomic": "~1.0.10", + "fstream": "~1.0.11", + "fstream-npm": "~1.2.0", + "glob": "~7.1.1", + "graceful-fs": "~4.1.11", + "has-unicode": "~2.0.1", + "hosted-git-info": "~2.4.2", + "iferr": "~0.1.5", + "imurmurhash": "*", + "inflight": "~1.0.6", + "inherits": "~2.0.3", + "ini": "~1.3.4", + "init-package-json": "~1.10.1", + "lazy-property": "~1.0.0", + "lockfile": "~1.0.3", + "lodash._baseindexof": "*", + "lodash._baseuniq": "~4.6.0", + "lodash._bindcallback": "*", + "lodash._cacheindexof": "*", + "lodash._createcache": "*", + "lodash._getnative": "*", + "lodash.clonedeep": "~4.5.0", + "lodash.restparam": "*", + "lodash.union": "~4.6.0", + "lodash.uniq": "~4.5.0", + "lodash.without": "~4.4.0", + "mississippi": "~1.3.0", + "mkdirp": "~0.5.1", + "move-concurrently": "~1.0.1", + "node-gyp": "~3.6.0", + "nopt": "~4.0.1", + "normalize-git-url": "~3.0.2", + "normalize-package-data": "~2.3.8", + "npm-cache-filename": "~1.0.2", + "npm-install-checks": "~3.0.0", + "npm-package-arg": "~4.2.1", + "npm-registry-client": "~8.1.1", + "npm-user-validate": "~0.1.5", + "npmlog": "~4.0.2", + "once": "~1.4.0", + "opener": "~1.4.3", + "osenv": "~0.1.4", + "path-is-inside": "~1.0.2", + "read": "~1.0.7", + "read-cmd-shim": "~1.0.1", + "read-installed": "~4.0.3", + "read-package-json": "~2.0.5", + "read-package-tree": "~5.1.5", + "readable-stream": "~2.2.9", + "readdir-scoped-modules": "*", + "realize-package-specifier": "~3.0.3", + "request": "~2.81.0", + "retry": "~0.10.1", + "rimraf": "~2.6.1", + "semver": "~5.3.0", + "sha": "~2.0.1", + "slide": "~1.1.6", + "sorted-object": "~2.0.1", + "sorted-union-stream": "~2.1.3", + "strip-ansi": "~3.0.1", + "tar": "~2.2.1", + "text-table": "~0.2.0", "uid-number": "0.0.6", - "umask": "1.1.0", - "unique-filename": "1.1.0", - "unpipe": "1.0.0", - "update-notifier": "2.1.0", - "uuid": "3.0.1", - "validate-npm-package-license": "3.0.1", - "validate-npm-package-name": "3.0.0", - "which": "1.2.14", - "wrappy": "1.0.2", - "write-file-atomic": "1.3.3" + "umask": "~1.1.0", + "unique-filename": "~1.1.0", + "unpipe": "~1.0.0", + "update-notifier": "~2.1.0", + "uuid": "~3.0.1", + "validate-npm-package-license": "*", + "validate-npm-package-name": "~3.0.0", + "which": "~1.2.14", + "wrappy": "~1.0.2", + "write-file-atomic": "~1.3.3" }, "dependencies": { "JSONStream": { "version": "1.3.1", "bundled": true, "requires": { - "jsonparse": "1.3.0", - "through": "2.3.8" + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" }, "dependencies": { "jsonparse": { @@ -5536,30 +5536,30 @@ "version": "2.0.2", "bundled": true, "requires": { - "graceful-fs": "4.1.11", - "mkdirp": "0.5.1" + "graceful-fs": "^4.1.2", + "mkdirp": "~0.5.0" } }, "columnify": { "version": "1.5.4", "bundled": true, "requires": { - "strip-ansi": "3.0.1", - "wcwidth": "1.0.0" + "strip-ansi": "^3.0.0", + "wcwidth": "^1.0.0" }, "dependencies": { "wcwidth": { "version": "1.0.0", "bundled": true, "requires": { - "defaults": "1.0.3" + "defaults": "^1.0.0" }, "dependencies": { "defaults": { "version": "1.0.3", "bundled": true, "requires": { - "clone": "1.0.2" + "clone": "^1.0.2" }, "dependencies": { "clone": { @@ -5576,8 +5576,8 @@ "version": "1.1.11", "bundled": true, "requires": { - "ini": "1.3.4", - "proto-list": "1.2.4" + "ini": "^1.3.4", + "proto-list": "~1.2.1" }, "dependencies": { "proto-list": { @@ -5603,60 +5603,60 @@ "version": "1.2.10", "bundled": true, "requires": { - "graceful-fs": "4.1.11", - "path-is-inside": "1.0.2", - "rimraf": "2.6.1" + "graceful-fs": "^4.1.2", + "path-is-inside": "^1.0.1", + "rimraf": "^2.5.2" } }, "fs-write-stream-atomic": { "version": "1.0.10", "bundled": true, "requires": { - "graceful-fs": "4.1.11", - "iferr": "0.1.5", - "imurmurhash": "0.1.4", - "readable-stream": "2.2.9" + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" } }, "fstream": { "version": "1.0.11", "bundled": true, "requires": { - "graceful-fs": "4.1.11", - "inherits": "2.0.3", - "mkdirp": "0.5.1", - "rimraf": "2.6.1" + "graceful-fs": "^4.1.2", + "inherits": "~2.0.0", + "mkdirp": ">=0.5 0", + "rimraf": "2" } }, "fstream-npm": { "version": "1.2.0", "bundled": true, "requires": { - "fstream-ignore": "1.0.5", - "inherits": "2.0.3" + "fstream-ignore": "^1.0.0", + "inherits": "2" }, "dependencies": { "fstream-ignore": { "version": "1.0.5", "bundled": true, "requires": { - "fstream": "1.0.11", - "inherits": "2.0.3", - "minimatch": "3.0.3" + "fstream": "^1.0.0", + "inherits": "2", + "minimatch": "^3.0.0" }, "dependencies": { "minimatch": { "version": "3.0.3", "bundled": true, "requires": { - "brace-expansion": "1.1.6" + "brace-expansion": "^1.0.0" }, "dependencies": { "brace-expansion": { "version": "1.1.6", "bundled": true, "requires": { - "balanced-match": "0.4.2", + "balanced-match": "^0.4.1", "concat-map": "0.0.1" }, "dependencies": { @@ -5680,12 +5680,12 @@ "version": "7.1.1", "bundled": true, "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.3", - "once": "1.4.0", - "path-is-absolute": "1.0.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "dependencies": { "fs.realpath": { @@ -5696,14 +5696,14 @@ "version": "3.0.3", "bundled": true, "requires": { - "brace-expansion": "1.1.6" + "brace-expansion": "^1.0.0" }, "dependencies": { "brace-expansion": { "version": "1.1.6", "bundled": true, "requires": { - "balanced-match": "0.4.2", + "balanced-match": "^0.4.1", "concat-map": "0.0.1" }, "dependencies": { @@ -5749,8 +5749,8 @@ "version": "1.0.6", "bundled": true, "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" + "once": "^1.3.0", + "wrappy": "1" } }, "inherits": { @@ -5765,21 +5765,21 @@ "version": "1.10.1", "bundled": true, "requires": { - "glob": "7.1.1", - "npm-package-arg": "4.2.1", - "promzard": "0.3.0", - "read": "1.0.7", - "read-package-json": "2.0.5", - "semver": "5.3.0", - "validate-npm-package-license": "3.0.1", - "validate-npm-package-name": "3.0.0" + "glob": "^7.1.1", + "npm-package-arg": "^4.0.0 || ^5.0.0", + "promzard": "^0.3.0", + "read": "~1.0.1", + "read-package-json": "1 || 2", + "semver": "2.x || 3.x || 4 || 5", + "validate-npm-package-license": "^3.0.1", + "validate-npm-package-name": "^3.0.0" }, "dependencies": { "promzard": { "version": "0.3.0", "bundled": true, "requires": { - "read": "1.0.7" + "read": "1" } } } @@ -5800,8 +5800,8 @@ "version": "4.6.0", "bundled": true, "requires": { - "lodash._createset": "4.0.3", - "lodash._root": "3.0.1" + "lodash._createset": "~4.0.0", + "lodash._root": "~3.0.0" }, "dependencies": { "lodash._createset": { @@ -5826,7 +5826,7 @@ "version": "3.1.2", "bundled": true, "requires": { - "lodash._getnative": "3.9.1" + "lodash._getnative": "^3.0.0" } }, "lodash._getnative": { @@ -5857,25 +5857,25 @@ "version": "1.3.0", "bundled": true, "requires": { - "concat-stream": "1.6.0", - "duplexify": "3.5.0", - "end-of-stream": "1.1.0", - "flush-write-stream": "1.0.2", - "from2": "2.3.0", - "parallel-transform": "1.1.0", - "pump": "1.0.2", - "pumpify": "1.3.5", - "stream-each": "1.2.0", - "through2": "2.0.3" + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^1.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" }, "dependencies": { "concat-stream": { "version": "1.6.0", "bundled": true, "requires": { - "inherits": "2.0.3", - "readable-stream": "2.2.9", - "typedarray": "0.0.6" + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" }, "dependencies": { "typedarray": { @@ -5889,23 +5889,23 @@ "bundled": true, "requires": { "end-of-stream": "1.0.0", - "inherits": "2.0.3", - "readable-stream": "2.2.9", - "stream-shift": "1.0.0" + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" }, "dependencies": { "end-of-stream": { "version": "1.0.0", "bundled": true, "requires": { - "once": "1.3.3" + "once": "~1.3.0" }, "dependencies": { "once": { "version": "1.3.3", "bundled": true, "requires": { - "wrappy": "1.0.2" + "wrappy": "1" } } } @@ -5920,14 +5920,14 @@ "version": "1.1.0", "bundled": true, "requires": { - "once": "1.3.3" + "once": "~1.3.0" }, "dependencies": { "once": { "version": "1.3.3", "bundled": true, "requires": { - "wrappy": "1.0.2" + "wrappy": "1" } } } @@ -5936,25 +5936,25 @@ "version": "1.0.2", "bundled": true, "requires": { - "inherits": "2.0.3", - "readable-stream": "2.2.9" + "inherits": "^2.0.1", + "readable-stream": "^2.0.4" } }, "from2": { "version": "2.3.0", "bundled": true, "requires": { - "inherits": "2.0.3", - "readable-stream": "2.2.9" + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" } }, "parallel-transform": { "version": "1.1.0", "bundled": true, "requires": { - "cyclist": "0.2.2", - "inherits": "2.0.3", - "readable-stream": "2.2.9" + "cyclist": "~0.2.2", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" }, "dependencies": { "cyclist": { @@ -5967,25 +5967,25 @@ "version": "1.0.2", "bundled": true, "requires": { - "end-of-stream": "1.1.0", - "once": "1.4.0" + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, "pumpify": { "version": "1.3.5", "bundled": true, "requires": { - "duplexify": "3.5.0", - "inherits": "2.0.3", - "pump": "1.0.2" + "duplexify": "^3.1.2", + "inherits": "^2.0.1", + "pump": "^1.0.0" } }, "stream-each": { "version": "1.2.0", "bundled": true, "requires": { - "end-of-stream": "1.1.0", - "stream-shift": "1.0.0" + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" }, "dependencies": { "stream-shift": { @@ -5998,8 +5998,8 @@ "version": "2.0.3", "bundled": true, "requires": { - "readable-stream": "2.2.9", - "xtend": "4.0.1" + "readable-stream": "^2.1.5", + "xtend": "~4.0.1" }, "dependencies": { "xtend": { @@ -6027,31 +6027,31 @@ "version": "1.0.1", "bundled": true, "requires": { - "aproba": "1.1.1", - "copy-concurrently": "1.0.3", - "fs-write-stream-atomic": "1.0.10", - "mkdirp": "0.5.1", - "rimraf": "2.6.1", - "run-queue": "1.0.3" + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" }, "dependencies": { "copy-concurrently": { "version": "1.0.3", "bundled": true, "requires": { - "aproba": "1.1.1", - "fs-write-stream-atomic": "1.0.10", - "iferr": "0.1.5", - "mkdirp": "0.5.1", - "rimraf": "2.6.1", - "run-queue": "1.0.3" + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" } }, "run-queue": { "version": "1.0.3", "bundled": true, "requires": { - "aproba": "1.1.1" + "aproba": "^1.1.1" } } } @@ -6060,33 +6060,33 @@ "version": "3.6.0", "bundled": true, "requires": { - "fstream": "1.0.11", - "glob": "7.1.1", - "graceful-fs": "4.1.11", - "minimatch": "3.0.3", - "mkdirp": "0.5.1", - "nopt": "3.0.6", - "npmlog": "4.0.2", - "osenv": "0.1.4", - "request": "2.81.0", - "rimraf": "2.6.1", - "semver": "5.3.0", - "tar": "2.2.1", - "which": "1.2.14" + "fstream": "^1.0.0", + "glob": "^7.0.3", + "graceful-fs": "^4.1.2", + "minimatch": "^3.0.2", + "mkdirp": "^0.5.0", + "nopt": "2 || 3", + "npmlog": "0 || 1 || 2 || 3 || 4", + "osenv": "0", + "request": "2", + "rimraf": "2", + "semver": "~5.3.0", + "tar": "^2.0.0", + "which": "1" }, "dependencies": { "minimatch": { "version": "3.0.3", "bundled": true, "requires": { - "brace-expansion": "1.1.6" + "brace-expansion": "^1.0.0" }, "dependencies": { "brace-expansion": { "version": "1.1.6", "bundled": true, "requires": { - "balanced-match": "0.4.2", + "balanced-match": "^0.4.1", "concat-map": "0.0.1" }, "dependencies": { @@ -6106,7 +6106,7 @@ "version": "3.0.6", "bundled": true, "requires": { - "abbrev": "1.1.0" + "abbrev": "1" } } } @@ -6115,16 +6115,16 @@ "version": "4.0.1", "bundled": true, "requires": { - "abbrev": "1.1.0", - "osenv": "0.1.4" + "abbrev": "1", + "osenv": "^0.1.4" }, "dependencies": { "osenv": { "version": "0.1.4", "bundled": true, "requires": { - "os-homedir": "1.0.2", - "os-tmpdir": "1.0.2" + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" }, "dependencies": { "os-homedir": { @@ -6143,17 +6143,17 @@ "version": "2.3.8", "bundled": true, "requires": { - "hosted-git-info": "2.4.2", - "is-builtin-module": "1.0.0", - "semver": "5.3.0", - "validate-npm-package-license": "3.0.1" + "hosted-git-info": "^2.1.4", + "is-builtin-module": "^1.0.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" }, "dependencies": { "is-builtin-module": { "version": "1.0.0", "bundled": true, "requires": { - "builtin-modules": "1.1.1" + "builtin-modules": "^1.0.0" }, "dependencies": { "builtin-modules": { @@ -6172,33 +6172,33 @@ "version": "4.2.1", "bundled": true, "requires": { - "hosted-git-info": "2.4.2", - "semver": "5.3.0" + "hosted-git-info": "^2.1.5", + "semver": "^5.1.0" } }, "npm-registry-client": { "version": "8.1.1", "bundled": true, "requires": { - "concat-stream": "1.6.0", - "graceful-fs": "4.1.11", - "normalize-package-data": "2.3.8", - "npm-package-arg": "4.2.1", - "npmlog": "4.0.2", - "once": "1.4.0", - "request": "2.81.0", - "retry": "0.10.1", - "semver": "5.3.0", - "slide": "1.1.6" + "concat-stream": "^1.5.2", + "graceful-fs": "^4.1.6", + "normalize-package-data": "~1.0.1 || ^2.0.0", + "npm-package-arg": "^3.0.0 || ^4.0.0 || ^5.0.0", + "npmlog": "2 || ^3.1.0 || ^4.0.0", + "once": "^1.3.3", + "request": "^2.74.0", + "retry": "^0.10.0", + "semver": "2 >=2.2.1 || 3.x || 4 || 5", + "slide": "^1.1.3" }, "dependencies": { "concat-stream": { "version": "1.6.0", "bundled": true, "requires": { - "inherits": "2.0.3", - "readable-stream": "2.2.9", - "typedarray": "0.0.6" + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" }, "dependencies": { "typedarray": { @@ -6217,18 +6217,18 @@ "version": "4.0.2", "bundled": true, "requires": { - "are-we-there-yet": "1.1.4", - "console-control-strings": "1.1.0", - "gauge": "2.7.4", - "set-blocking": "2.0.0" + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.1", + "set-blocking": "~2.0.0" }, "dependencies": { "are-we-there-yet": { "version": "1.1.4", "bundled": true, "requires": { - "delegates": "1.0.0", - "readable-stream": "2.2.9" + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" }, "dependencies": { "delegates": { @@ -6245,14 +6245,14 @@ "version": "2.7.4", "bundled": true, "requires": { - "aproba": "1.1.1", - "console-control-strings": "1.1.0", - "has-unicode": "2.0.1", - "object-assign": "4.1.1", - "signal-exit": "3.0.2", - "string-width": "1.0.2", - "strip-ansi": "3.0.1", - "wide-align": "1.1.0" + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" }, "dependencies": { "object-assign": { @@ -6267,9 +6267,9 @@ "version": "1.0.2", "bundled": true, "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" }, "dependencies": { "code-point-at": { @@ -6280,7 +6280,7 @@ "version": "1.0.0", "bundled": true, "requires": { - "number-is-nan": "1.0.1" + "number-is-nan": "^1.0.0" }, "dependencies": { "number-is-nan": { @@ -6295,7 +6295,7 @@ "version": "1.1.0", "bundled": true, "requires": { - "string-width": "1.0.2" + "string-width": "^1.0.1" } } } @@ -6310,7 +6310,7 @@ "version": "1.4.0", "bundled": true, "requires": { - "wrappy": "1.0.2" + "wrappy": "1" } }, "opener": { @@ -6321,8 +6321,8 @@ "version": "0.1.4", "bundled": true, "requires": { - "os-homedir": "1.0.2", - "os-tmpdir": "1.0.2" + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" }, "dependencies": { "os-homedir": { @@ -6343,7 +6343,7 @@ "version": "1.0.7", "bundled": true, "requires": { - "mute-stream": "0.0.5" + "mute-stream": "~0.0.4" }, "dependencies": { "mute-stream": { @@ -6356,20 +6356,20 @@ "version": "1.0.1", "bundled": true, "requires": { - "graceful-fs": "4.1.11" + "graceful-fs": "^4.1.2" } }, "read-installed": { "version": "4.0.3", "bundled": true, "requires": { - "debuglog": "1.0.1", - "graceful-fs": "4.1.11", - "read-package-json": "2.0.5", - "readdir-scoped-modules": "1.0.2", - "semver": "5.3.0", - "slide": "1.1.6", - "util-extend": "1.0.3" + "debuglog": "^1.0.1", + "graceful-fs": "^4.1.2", + "read-package-json": "^2.0.0", + "readdir-scoped-modules": "^1.0.0", + "semver": "2 || 3 || 4 || 5", + "slide": "~1.1.3", + "util-extend": "^1.0.1" }, "dependencies": { "util-extend": { @@ -6382,17 +6382,17 @@ "version": "2.0.5", "bundled": true, "requires": { - "glob": "7.1.1", - "graceful-fs": "4.1.11", - "json-parse-helpfulerror": "1.0.3", - "normalize-package-data": "2.3.8" + "glob": "^7.1.1", + "graceful-fs": "^4.1.2", + "json-parse-helpfulerror": "^1.0.2", + "normalize-package-data": "^2.0.0" }, "dependencies": { "json-parse-helpfulerror": { "version": "1.0.3", "bundled": true, "requires": { - "jju": "1.3.0" + "jju": "^1.1.0" }, "dependencies": { "jju": { @@ -6407,24 +6407,24 @@ "version": "5.1.5", "bundled": true, "requires": { - "debuglog": "1.0.1", - "dezalgo": "1.0.3", - "once": "1.4.0", - "read-package-json": "2.0.5", - "readdir-scoped-modules": "1.0.2" + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "once": "^1.3.0", + "read-package-json": "^2.0.0", + "readdir-scoped-modules": "^1.0.0" } }, "readable-stream": { "version": "2.2.9", "bundled": true, "requires": { - "buffer-shims": "1.0.0", - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "1.0.0", - "util-deprecate": "1.0.2" + "buffer-shims": "~1.0.0", + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~1.0.0", + "util-deprecate": "~1.0.1" }, "dependencies": { "buffer-shims": { @@ -6443,7 +6443,7 @@ "version": "1.0.0", "bundled": true, "requires": { - "buffer-shims": "1.0.0" + "buffer-shims": "~1.0.0" } }, "util-deprecate": { @@ -6456,38 +6456,38 @@ "version": "1.0.2", "bundled": true, "requires": { - "debuglog": "1.0.1", - "dezalgo": "1.0.3", - "graceful-fs": "4.1.11", - "once": "1.4.0" + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" } }, "request": { "version": "2.81.0", "bundled": true, "requires": { - "aws-sign2": "0.6.0", - "aws4": "1.6.0", - "caseless": "0.12.0", - "combined-stream": "1.0.5", - "extend": "3.0.0", - "forever-agent": "0.6.1", - "form-data": "2.1.2", - "har-validator": "4.2.1", - "hawk": "3.1.3", - "http-signature": "1.1.1", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.14", - "oauth-sign": "0.8.2", - "performance-now": "0.2.0", - "qs": "6.4.0", - "safe-buffer": "5.0.1", - "stringstream": "0.0.5", - "tough-cookie": "2.3.2", - "tunnel-agent": "0.6.0", - "uuid": "3.0.1" + "aws-sign2": "~0.6.0", + "aws4": "^1.2.1", + "caseless": "~0.12.0", + "combined-stream": "~1.0.5", + "extend": "~3.0.0", + "forever-agent": "~0.6.1", + "form-data": "~2.1.1", + "har-validator": "~4.2.1", + "hawk": "~3.1.3", + "http-signature": "~1.1.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.7", + "oauth-sign": "~0.8.1", + "performance-now": "^0.2.0", + "qs": "~6.4.0", + "safe-buffer": "^5.0.1", + "stringstream": "~0.0.4", + "tough-cookie": "~2.3.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.0.0" }, "dependencies": { "aws-sign2": { @@ -6506,7 +6506,7 @@ "version": "1.0.5", "bundled": true, "requires": { - "delayed-stream": "1.0.0" + "delayed-stream": "~1.0.0" }, "dependencies": { "delayed-stream": { @@ -6527,9 +6527,9 @@ "version": "2.1.2", "bundled": true, "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.5", - "mime-types": "2.1.14" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.5", + "mime-types": "^2.1.12" }, "dependencies": { "asynckit": { @@ -6542,16 +6542,16 @@ "version": "4.2.1", "bundled": true, "requires": { - "ajv": "4.11.4", - "har-schema": "1.0.5" + "ajv": "^4.9.1", + "har-schema": "^1.0.5" }, "dependencies": { "ajv": { "version": "4.11.4", "bundled": true, "requires": { - "co": "4.6.0", - "json-stable-stringify": "1.0.1" + "co": "^4.6.0", + "json-stable-stringify": "^1.0.1" }, "dependencies": { "co": { @@ -6562,7 +6562,7 @@ "version": "1.0.1", "bundled": true, "requires": { - "jsonify": "0.0.0" + "jsonify": "~0.0.0" }, "dependencies": { "jsonify": { @@ -6583,24 +6583,24 @@ "version": "3.1.3", "bundled": true, "requires": { - "boom": "2.10.1", - "cryptiles": "2.0.5", - "hoek": "2.16.3", - "sntp": "1.0.9" + "boom": "2.x.x", + "cryptiles": "2.x.x", + "hoek": "2.x.x", + "sntp": "1.x.x" }, "dependencies": { "boom": { "version": "2.10.1", "bundled": true, "requires": { - "hoek": "2.16.3" + "hoek": "2.x.x" } }, "cryptiles": { "version": "2.0.5", "bundled": true, "requires": { - "boom": "2.10.1" + "boom": "2.x.x" } }, "hoek": { @@ -6611,7 +6611,7 @@ "version": "1.0.9", "bundled": true, "requires": { - "hoek": "2.16.3" + "hoek": "2.x.x" } } } @@ -6620,9 +6620,9 @@ "version": "1.1.1", "bundled": true, "requires": { - "assert-plus": "0.2.0", - "jsprim": "1.3.1", - "sshpk": "1.11.0" + "assert-plus": "^0.2.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" }, "dependencies": { "assert-plus": { @@ -6659,15 +6659,15 @@ "version": "1.11.0", "bundled": true, "requires": { - "asn1": "0.2.3", - "assert-plus": "1.0.0", - "bcrypt-pbkdf": "1.0.1", - "dashdash": "1.14.1", - "ecc-jsbn": "0.1.1", - "getpass": "0.1.6", - "jodid25519": "1.0.2", - "jsbn": "0.1.1", - "tweetnacl": "0.14.5" + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jodid25519": "^1.0.0", + "jsbn": "~0.1.0", + "tweetnacl": "~0.14.0" }, "dependencies": { "asn1": { @@ -6683,14 +6683,14 @@ "bundled": true, "optional": true, "requires": { - "tweetnacl": "0.14.5" + "tweetnacl": "^0.14.3" } }, "dashdash": { "version": "1.14.1", "bundled": true, "requires": { - "assert-plus": "1.0.0" + "assert-plus": "^1.0.0" } }, "ecc-jsbn": { @@ -6698,14 +6698,14 @@ "bundled": true, "optional": true, "requires": { - "jsbn": "0.1.1" + "jsbn": "~0.1.0" } }, "getpass": { "version": "0.1.6", "bundled": true, "requires": { - "assert-plus": "1.0.0" + "assert-plus": "^1.0.0" } }, "jodid25519": { @@ -6713,7 +6713,7 @@ "bundled": true, "optional": true, "requires": { - "jsbn": "0.1.1" + "jsbn": "~0.1.0" } }, "jsbn": { @@ -6746,7 +6746,7 @@ "version": "2.1.14", "bundled": true, "requires": { - "mime-db": "1.26.0" + "mime-db": "~1.26.0" }, "dependencies": { "mime-db": { @@ -6779,7 +6779,7 @@ "version": "2.3.2", "bundled": true, "requires": { - "punycode": "1.4.1" + "punycode": "^1.4.1" }, "dependencies": { "punycode": { @@ -6792,7 +6792,7 @@ "version": "0.6.0", "bundled": true, "requires": { - "safe-buffer": "5.0.1" + "safe-buffer": "^5.0.1" } } } @@ -6805,7 +6805,7 @@ "version": "2.6.1", "bundled": true, "requires": { - "glob": "7.1.1" + "glob": "^7.0.5" } }, "semver": { @@ -6816,8 +6816,8 @@ "version": "2.0.1", "bundled": true, "requires": { - "graceful-fs": "4.1.11", - "readable-stream": "2.2.9" + "graceful-fs": "^4.1.2", + "readable-stream": "^2.0.2" } }, "slide": { @@ -6832,26 +6832,26 @@ "version": "2.1.3", "bundled": true, "requires": { - "from2": "1.3.0", - "stream-iterate": "1.1.1" + "from2": "^1.3.0", + "stream-iterate": "^1.1.0" }, "dependencies": { "from2": { "version": "1.3.0", "bundled": true, "requires": { - "inherits": "2.0.3", - "readable-stream": "1.1.14" + "inherits": "~2.0.1", + "readable-stream": "~1.1.10" }, "dependencies": { "readable-stream": { "version": "1.1.14", "bundled": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", "isarray": "0.0.1", - "string_decoder": "0.10.31" + "string_decoder": "~0.10.x" }, "dependencies": { "core-util-is": { @@ -6885,23 +6885,23 @@ "version": "3.0.1", "bundled": true, "requires": { - "ansi-regex": "2.1.1" + "ansi-regex": "^2.0.0" } }, "tar": { "version": "2.2.1", "bundled": true, "requires": { - "block-stream": "0.0.8", - "fstream": "1.0.11", - "inherits": "2.0.3" + "block-stream": "*", + "fstream": "^1.0.2", + "inherits": "2" }, "dependencies": { "block-stream": { "version": "0.0.8", "bundled": true, "requires": { - "inherits": "2.0.3" + "inherits": "~2.0.0" } } } @@ -6922,7 +6922,7 @@ "version": "1.1.0", "bundled": true, "requires": { - "unique-slug": "2.0.0" + "unique-slug": "^2.0.0" } }, "unpipe": { @@ -6933,43 +6933,43 @@ "version": "2.1.0", "bundled": true, "requires": { - "boxen": "1.0.0", - "chalk": "1.1.3", - "configstore": "3.0.0", - "is-npm": "1.0.0", - "latest-version": "3.0.0", - "lazy-req": "2.0.0", - "semver-diff": "2.1.0", - "xdg-basedir": "3.0.0" + "boxen": "^1.0.0", + "chalk": "^1.0.0", + "configstore": "^3.0.0", + "is-npm": "^1.0.0", + "latest-version": "^3.0.0", + "lazy-req": "^2.0.0", + "semver-diff": "^2.0.0", + "xdg-basedir": "^3.0.0" }, "dependencies": { "boxen": { "version": "1.0.0", "bundled": true, "requires": { - "ansi-align": "1.1.0", - "camelcase": "4.0.0", - "chalk": "1.1.3", - "cli-boxes": "1.0.0", - "string-width": "2.0.0", - "term-size": "0.1.1", - "widest-line": "1.0.0" + "ansi-align": "^1.1.0", + "camelcase": "^4.0.0", + "chalk": "^1.1.1", + "cli-boxes": "^1.0.0", + "string-width": "^2.0.0", + "term-size": "^0.1.0", + "widest-line": "^1.0.0" }, "dependencies": { "ansi-align": { "version": "1.1.0", "bundled": true, "requires": { - "string-width": "1.0.2" + "string-width": "^1.0.1" }, "dependencies": { "string-width": { "version": "1.0.2", "bundled": true, "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" }, "dependencies": { "code-point-at": { @@ -6980,7 +6980,7 @@ "version": "1.0.0", "bundled": true, "requires": { - "number-is-nan": "1.0.1" + "number-is-nan": "^1.0.0" }, "dependencies": { "number-is-nan": { @@ -7005,8 +7005,8 @@ "version": "2.0.0", "bundled": true, "requires": { - "is-fullwidth-code-point": "2.0.0", - "strip-ansi": "3.0.1" + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^3.0.0" }, "dependencies": { "is-fullwidth-code-point": { @@ -7019,35 +7019,35 @@ "version": "0.1.1", "bundled": true, "requires": { - "execa": "0.4.0" + "execa": "^0.4.0" }, "dependencies": { "execa": { "version": "0.4.0", "bundled": true, "requires": { - "cross-spawn-async": "2.2.5", - "is-stream": "1.1.0", - "npm-run-path": "1.0.0", - "object-assign": "4.1.1", - "path-key": "1.0.0", - "strip-eof": "1.0.0" + "cross-spawn-async": "^2.1.1", + "is-stream": "^1.1.0", + "npm-run-path": "^1.0.0", + "object-assign": "^4.0.1", + "path-key": "^1.0.0", + "strip-eof": "^1.0.0" }, "dependencies": { "cross-spawn-async": { "version": "2.2.5", "bundled": true, "requires": { - "lru-cache": "4.0.2", - "which": "1.2.14" + "lru-cache": "^4.0.0", + "which": "^1.2.8" }, "dependencies": { "lru-cache": { "version": "4.0.2", "bundled": true, "requires": { - "pseudomap": "1.0.2", - "yallist": "2.0.0" + "pseudomap": "^1.0.1", + "yallist": "^2.0.0" }, "dependencies": { "pseudomap": { @@ -7070,7 +7070,7 @@ "version": "1.0.0", "bundled": true, "requires": { - "path-key": "1.0.0" + "path-key": "^1.0.0" } }, "object-assign": { @@ -7093,16 +7093,16 @@ "version": "1.0.0", "bundled": true, "requires": { - "string-width": "1.0.2" + "string-width": "^1.0.1" }, "dependencies": { "string-width": { "version": "1.0.2", "bundled": true, "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" }, "dependencies": { "code-point-at": { @@ -7113,7 +7113,7 @@ "version": "1.0.0", "bundled": true, "requires": { - "number-is-nan": "1.0.1" + "number-is-nan": "^1.0.0" }, "dependencies": { "number-is-nan": { @@ -7132,11 +7132,11 @@ "version": "1.1.3", "bundled": true, "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" }, "dependencies": { "ansi-styles": { @@ -7151,7 +7151,7 @@ "version": "2.0.0", "bundled": true, "requires": { - "ansi-regex": "2.1.1" + "ansi-regex": "^2.0.0" } }, "supports-color": { @@ -7164,19 +7164,19 @@ "version": "3.0.0", "bundled": true, "requires": { - "dot-prop": "4.1.1", - "graceful-fs": "4.1.11", - "mkdirp": "0.5.1", - "unique-string": "1.0.0", - "write-file-atomic": "1.3.3", - "xdg-basedir": "3.0.0" + "dot-prop": "^4.1.0", + "graceful-fs": "^4.1.2", + "mkdirp": "^0.5.0", + "unique-string": "^1.0.0", + "write-file-atomic": "^1.1.2", + "xdg-basedir": "^3.0.0" }, "dependencies": { "dot-prop": { "version": "4.1.1", "bundled": true, "requires": { - "is-obj": "1.0.1" + "is-obj": "^1.0.0" }, "dependencies": { "is-obj": { @@ -7189,7 +7189,7 @@ "version": "1.0.0", "bundled": true, "requires": { - "crypto-random-string": "1.0.0" + "crypto-random-string": "^1.0.0" }, "dependencies": { "crypto-random-string": { @@ -7208,41 +7208,41 @@ "version": "3.0.0", "bundled": true, "requires": { - "package-json": "3.1.0" + "package-json": "^3.0.0" }, "dependencies": { "package-json": { "version": "3.1.0", "bundled": true, "requires": { - "got": "6.7.1", - "registry-auth-token": "3.1.0", - "registry-url": "3.1.0", - "semver": "5.3.0" + "got": "^6.7.1", + "registry-auth-token": "^3.0.1", + "registry-url": "^3.0.3", + "semver": "^5.1.0" }, "dependencies": { "got": { "version": "6.7.1", "bundled": true, "requires": { - "create-error-class": "3.0.2", - "duplexer3": "0.1.4", - "get-stream": "3.0.0", - "is-redirect": "1.0.0", - "is-retry-allowed": "1.1.0", - "is-stream": "1.1.0", - "lowercase-keys": "1.0.0", - "safe-buffer": "5.0.1", - "timed-out": "4.0.1", - "unzip-response": "2.0.1", - "url-parse-lax": "1.0.0" + "create-error-class": "^3.0.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-redirect": "^1.0.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "lowercase-keys": "^1.0.0", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "unzip-response": "^2.0.1", + "url-parse-lax": "^1.0.0" }, "dependencies": { "create-error-class": { "version": "3.0.2", "bundled": true, "requires": { - "capture-stack-trace": "1.0.0" + "capture-stack-trace": "^1.0.0" }, "dependencies": { "capture-stack-trace": { @@ -7291,7 +7291,7 @@ "version": "1.0.0", "bundled": true, "requires": { - "prepend-http": "1.0.4" + "prepend-http": "^1.0.1" }, "dependencies": { "prepend-http": { @@ -7306,17 +7306,17 @@ "version": "3.1.0", "bundled": true, "requires": { - "rc": "1.1.7" + "rc": "^1.1.6" }, "dependencies": { "rc": { "version": "1.1.7", "bundled": true, "requires": { - "deep-extend": "0.4.1", - "ini": "1.3.4", - "minimist": "1.2.0", - "strip-json-comments": "2.0.1" + "deep-extend": "~0.4.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" }, "dependencies": { "deep-extend": { @@ -7339,17 +7339,17 @@ "version": "3.1.0", "bundled": true, "requires": { - "rc": "1.1.7" + "rc": "^1.0.1" }, "dependencies": { "rc": { "version": "1.1.7", "bundled": true, "requires": { - "deep-extend": "0.4.1", - "ini": "1.3.4", - "minimist": "1.2.0", - "strip-json-comments": "2.0.1" + "deep-extend": "~0.4.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" }, "dependencies": { "deep-extend": { @@ -7380,7 +7380,7 @@ "version": "2.1.0", "bundled": true, "requires": { - "semver": "5.3.0" + "semver": "^5.0.3" } }, "xdg-basedir": { @@ -7397,15 +7397,15 @@ "version": "3.0.1", "bundled": true, "requires": { - "spdx-correct": "1.0.2", - "spdx-expression-parse": "1.0.2" + "spdx-correct": "~1.0.0", + "spdx-expression-parse": "~1.0.0" }, "dependencies": { "spdx-correct": { "version": "1.0.2", "bundled": true, "requires": { - "spdx-license-ids": "1.2.0" + "spdx-license-ids": "^1.0.2" }, "dependencies": { "spdx-license-ids": { @@ -7418,8 +7418,8 @@ "version": "1.0.2", "bundled": true, "requires": { - "spdx-exceptions": "1.0.4", - "spdx-license-ids": "1.2.0" + "spdx-exceptions": "^1.0.4", + "spdx-license-ids": "^1.0.0" }, "dependencies": { "spdx-exceptions": { @@ -7434,7 +7434,7 @@ "version": "3.0.0", "bundled": true, "requires": { - "builtins": "1.0.3" + "builtins": "^1.0.3" }, "dependencies": { "builtins": { @@ -7447,7 +7447,7 @@ "version": "1.2.14", "bundled": true, "requires": { - "isexe": "2.0.0" + "isexe": "^2.0.0" }, "dependencies": { "isexe": { @@ -7464,9 +7464,9 @@ "version": "1.3.3", "bundled": true, "requires": { - "graceful-fs": "4.1.11", - "imurmurhash": "0.1.4", - "slide": "1.1.6" + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "slide": "^1.1.5" } } } @@ -7476,7 +7476,7 @@ "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-3.0.0.tgz", "integrity": "sha1-1K7N/VGlPjcjt7L5Oy7ijjB7wNc=", "requires": { - "semver": "4.3.6" + "semver": "^2.3.0 || 3.x || 4 || 5" } }, "npm-package-arg": { @@ -7484,8 +7484,8 @@ "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-4.2.1.tgz", "integrity": "sha1-WTMD/eqF98Qid18X+et2cPaA4+w=", "requires": { - "hosted-git-info": "2.5.0", - "semver": "5.5.0" + "hosted-git-info": "^2.1.5", + "semver": "^5.1.0" }, "dependencies": { "semver": { @@ -7521,9 +7521,9 @@ "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", "requires": { - "copy-descriptor": "0.1.1", - "define-property": "0.2.5", - "kind-of": "3.2.2" + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" }, "dependencies": { "define-property": { @@ -7531,7 +7531,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "is-accessor-descriptor": { @@ -7539,7 +7539,7 @@ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" } }, "is-data-descriptor": { @@ -7547,7 +7547,7 @@ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" } }, "is-descriptor": { @@ -7555,9 +7555,9 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" }, "dependencies": { "kind-of": { @@ -7572,7 +7572,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -7587,7 +7587,7 @@ "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", "requires": { - "isobject": "3.0.1" + "isobject": "^3.0.0" } }, "object.defaults": { @@ -7595,10 +7595,10 @@ "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", "requires": { - "array-each": "1.0.1", - "array-slice": "1.1.0", - "for-own": "1.0.0", - "isobject": "3.0.1" + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" } }, "object.map": { @@ -7606,8 +7606,8 @@ "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", "requires": { - "for-own": "1.0.0", - "make-iterator": "1.0.0" + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" } }, "object.pick": { @@ -7615,7 +7615,7 @@ "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", "requires": { - "isobject": "3.0.1" + "isobject": "^3.0.1" } }, "once": { @@ -7623,7 +7623,7 @@ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "requires": { - "wrappy": "1.0.2" + "wrappy": "1" } }, "open": { @@ -7637,9 +7637,9 @@ "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz", "integrity": "sha1-FOfp4nZPcxX7rBhOUGx6pt+UrX4=", "requires": { - "end-of-stream": "0.1.5", - "sequencify": "0.0.7", - "stream-consume": "0.1.0" + "end-of-stream": "~0.1.5", + "sequencify": "~0.0.7", + "stream-consume": "~0.1.0" }, "dependencies": { "end-of-stream": { @@ -7647,7 +7647,7 @@ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz", "integrity": "sha1-jhdyBsPICDfYVjLouTWd/osvbq8=", "requires": { - "once": "1.3.3" + "once": "~1.3.0" } }, "once": { @@ -7655,7 +7655,7 @@ "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=", "requires": { - "wrappy": "1.0.2" + "wrappy": "1" } } } @@ -7693,7 +7693,7 @@ "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", "dev": true, "requires": { - "no-case": "2.3.2" + "no-case": "^2.2.0" } }, "parents": { @@ -7702,7 +7702,7 @@ "integrity": "sha1-/t1NK/GTp3dF/nHjcdc8MwfZx1E=", "dev": true, "requires": { - "path-platform": "0.11.15" + "path-platform": "~0.11.15" } }, "parse-asn1": { @@ -7711,11 +7711,11 @@ "integrity": "sha1-N8T5t+06tlx0gXtfJICTf7+XxxI=", "dev": true, "requires": { - "asn1.js": "4.9.2", - "browserify-aes": "1.1.1", - "create-hash": "1.1.3", - "evp_bytestokey": "1.0.3", - "pbkdf2": "3.0.14" + "asn1.js": "^4.0.0", + "browserify-aes": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3" } }, "parse-filepath": { @@ -7723,9 +7723,9 @@ "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", "requires": { - "is-absolute": "1.0.0", - "map-cache": "0.2.2", - "path-root": "0.1.1" + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" } }, "parse-json": { @@ -7733,7 +7733,7 @@ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", "requires": { - "error-ex": "1.3.1" + "error-ex": "^1.2.0" } }, "parse-passwd": { @@ -7757,7 +7757,7 @@ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", "requires": { - "pinkie-promise": "2.0.1" + "pinkie-promise": "^2.0.0" } }, "path-is-absolute": { @@ -7781,7 +7781,7 @@ "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", "requires": { - "path-root-regex": "0.1.2" + "path-root-regex": "^0.1.0" } }, "path-root-regex": { @@ -7794,9 +7794,9 @@ "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", "requires": { - "graceful-fs": "4.1.11", - "pify": "2.3.0", - "pinkie-promise": "2.0.1" + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" } }, "pbkdf2": { @@ -7805,11 +7805,11 @@ "integrity": "sha512-gjsZW9O34fm0R7PaLHRJmLLVfSoesxztjPjE9o6R+qtVJij90ltg1joIovN9GKrRW3t1PzhDDG3UMEMFfZ+1wA==", "dev": true, "requires": { - "create-hash": "1.1.3", - "create-hmac": "1.1.6", - "ripemd160": "2.0.1", - "safe-buffer": "5.1.1", - "sha.js": "2.4.9" + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" } }, "pify": { @@ -7827,7 +7827,7 @@ "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", "requires": { - "pinkie": "2.0.4" + "pinkie": "^2.0.0" } }, "plugin-error": { @@ -7835,11 +7835,11 @@ "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", "integrity": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=", "requires": { - "ansi-cyan": "0.1.1", - "ansi-red": "0.1.1", - "arr-diff": "1.1.0", - "arr-union": "2.1.0", - "extend-shallow": "1.1.4" + "ansi-cyan": "^0.1.1", + "ansi-red": "^0.1.1", + "arr-diff": "^1.0.1", + "arr-union": "^2.0.1", + "extend-shallow": "^1.1.2" }, "dependencies": { "arr-diff": { @@ -7847,8 +7847,8 @@ "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", "integrity": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=", "requires": { - "arr-flatten": "1.1.0", - "array-slice": "0.2.3" + "arr-flatten": "^1.0.1", + "array-slice": "^0.2.3" } }, "arr-union": { @@ -7866,7 +7866,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", "integrity": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=", "requires": { - "kind-of": "1.1.0" + "kind-of": "^1.1.0" } }, "kind-of": { @@ -7881,8 +7881,8 @@ "resolved": "https://registry.npmjs.org/plugin-log/-/plugin-log-0.1.0.tgz", "integrity": "sha1-hgSc9qsQgzOYqTHzaJy67nteEzM=", "requires": { - "chalk": "1.1.3", - "dateformat": "1.0.12" + "chalk": "^1.1.1", + "dateformat": "^1.0.11" }, "dependencies": { "dateformat": { @@ -7890,8 +7890,8 @@ "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz", "integrity": "sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=", "requires": { - "get-stdin": "4.0.1", - "meow": "3.7.0" + "get-stdin": "^4.0.1", + "meow": "^3.3.0" } } } @@ -7906,9 +7906,9 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.16.tgz", "integrity": "sha512-m758RWPmSjFH/2MyyG3UOW1fgYbR9rtdzz5UNJnlm7OLtu4B2h9C6gi+bE4qFKghsBRFfZT8NzoQBs6JhLotoA==", "requires": { - "chalk": "2.3.0", - "source-map": "0.6.1", - "supports-color": "5.1.0" + "chalk": "^2.3.0", + "source-map": "^0.6.1", + "supports-color": "^5.1.0" }, "dependencies": { "ansi-styles": { @@ -7916,7 +7916,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", "requires": { - "color-convert": "1.9.1" + "color-convert": "^1.9.0" } }, "chalk": { @@ -7924,9 +7924,9 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", "requires": { - "ansi-styles": "3.2.0", - "escape-string-regexp": "1.0.5", - "supports-color": "4.5.0" + "ansi-styles": "^3.1.0", + "escape-string-regexp": "^1.0.5", + "supports-color": "^4.0.0" }, "dependencies": { "supports-color": { @@ -7934,7 +7934,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", "requires": { - "has-flag": "2.0.0" + "has-flag": "^2.0.0" } } } @@ -7949,7 +7949,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.1.0.tgz", "integrity": "sha512-Ry0AwkoKjDpVKK4sV4h6o3UJmNRbjYm2uXhwfj3J56lMVdvnUNqzQVRztOOMGQ++w1K/TjNDFvpJk0F/LoeBCQ==", "requires": { - "has-flag": "2.0.0" + "has-flag": "^2.0.0" } } } @@ -7959,9 +7959,9 @@ "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz", "integrity": "sha1-d7rnypKK2FcW4v2kLyYb98HWW14=", "requires": { - "postcss": "5.2.18", - "postcss-message-helpers": "2.0.0", - "reduce-css-calc": "1.3.0" + "postcss": "^5.0.2", + "postcss-message-helpers": "^2.0.0", + "reduce-css-calc": "^1.2.6" }, "dependencies": { "has-flag": { @@ -7974,10 +7974,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -7985,7 +7985,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -7995,9 +7995,9 @@ "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz", "integrity": "sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks=", "requires": { - "colormin": "1.1.2", - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0" + "colormin": "^1.0.5", + "postcss": "^5.0.13", + "postcss-value-parser": "^3.2.3" }, "dependencies": { "has-flag": { @@ -8010,10 +8010,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8021,7 +8021,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8031,8 +8031,8 @@ "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz", "integrity": "sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0=", "requires": { - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0" + "postcss": "^5.0.11", + "postcss-value-parser": "^3.1.2" }, "dependencies": { "has-flag": { @@ -8045,10 +8045,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8056,7 +8056,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8066,7 +8066,7 @@ "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz", "integrity": "sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0=", "requires": { - "postcss": "5.2.18" + "postcss": "^5.0.14" }, "dependencies": { "has-flag": { @@ -8079,10 +8079,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8090,7 +8090,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8100,7 +8100,7 @@ "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz", "integrity": "sha1-uavye4isGIFYpesSq8riAmO5GTI=", "requires": { - "postcss": "5.2.18" + "postcss": "^5.0.4" }, "dependencies": { "has-flag": { @@ -8113,10 +8113,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8124,7 +8124,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8134,7 +8134,7 @@ "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz", "integrity": "sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU=", "requires": { - "postcss": "5.2.18" + "postcss": "^5.0.14" }, "dependencies": { "has-flag": { @@ -8147,10 +8147,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8158,7 +8158,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8168,7 +8168,7 @@ "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz", "integrity": "sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg=", "requires": { - "postcss": "5.2.18" + "postcss": "^5.0.16" }, "dependencies": { "has-flag": { @@ -8181,10 +8181,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8192,7 +8192,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8202,8 +8202,8 @@ "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz", "integrity": "sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM=", "requires": { - "postcss": "5.2.18", - "uniqs": "2.0.0" + "postcss": "^5.0.14", + "uniqs": "^2.0.0" }, "dependencies": { "has-flag": { @@ -8216,10 +8216,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8227,7 +8227,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8237,8 +8237,8 @@ "resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz", "integrity": "sha1-bYWGJTTXNaxCDkqFgG4fXUKG2Ew=", "requires": { - "postcss": "5.2.18", - "uniqid": "4.1.1" + "postcss": "^5.0.4", + "uniqid": "^4.0.0" }, "dependencies": { "has-flag": { @@ -8251,10 +8251,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8262,7 +8262,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8272,9 +8272,9 @@ "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz", "integrity": "sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=", "requires": { - "has": "1.0.1", - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0" + "has": "^1.0.1", + "postcss": "^5.0.10", + "postcss-value-parser": "^3.1.1" }, "dependencies": { "has-flag": { @@ -8287,10 +8287,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8298,7 +8298,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8308,7 +8308,7 @@ "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz", "integrity": "sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg=", "requires": { - "postcss": "5.2.18" + "postcss": "^5.0.4" }, "dependencies": { "has-flag": { @@ -8321,10 +8321,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8332,7 +8332,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8342,11 +8342,11 @@ "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz", "integrity": "sha1-0d9d+qexrMO+VT8OnhDofGG19yE=", "requires": { - "browserslist": "1.7.7", - "caniuse-api": "1.6.1", - "postcss": "5.2.18", - "postcss-selector-parser": "2.2.3", - "vendors": "1.0.1" + "browserslist": "^1.5.2", + "caniuse-api": "^1.5.2", + "postcss": "^5.0.4", + "postcss-selector-parser": "^2.2.2", + "vendors": "^1.0.0" }, "dependencies": { "browserslist": { @@ -8354,8 +8354,8 @@ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", "requires": { - "caniuse-db": "1.0.30000792", - "electron-to-chromium": "1.3.30" + "caniuse-db": "^1.0.30000639", + "electron-to-chromium": "^1.2.7" } }, "has-flag": { @@ -8368,10 +8368,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8379,7 +8379,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8394,9 +8394,9 @@ "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz", "integrity": "sha1-S1jttWZB66fIR0qzUmyv17vey2k=", "requires": { - "object-assign": "4.1.1", - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0" + "object-assign": "^4.0.1", + "postcss": "^5.0.4", + "postcss-value-parser": "^3.0.2" }, "dependencies": { "has-flag": { @@ -8409,10 +8409,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8420,7 +8420,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8430,8 +8430,8 @@ "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz", "integrity": "sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE=", "requires": { - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0" + "postcss": "^5.0.12", + "postcss-value-parser": "^3.3.0" }, "dependencies": { "has-flag": { @@ -8444,10 +8444,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8455,7 +8455,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8465,10 +8465,10 @@ "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz", "integrity": "sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM=", "requires": { - "alphanum-sort": "1.0.2", - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0", - "uniqs": "2.0.0" + "alphanum-sort": "^1.0.1", + "postcss": "^5.0.2", + "postcss-value-parser": "^3.0.2", + "uniqs": "^2.0.0" }, "dependencies": { "has-flag": { @@ -8481,10 +8481,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8492,7 +8492,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8502,10 +8502,10 @@ "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz", "integrity": "sha1-ssapjAByz5G5MtGkllCBFDEXNb8=", "requires": { - "alphanum-sort": "1.0.2", - "has": "1.0.1", - "postcss": "5.2.18", - "postcss-selector-parser": "2.2.3" + "alphanum-sort": "^1.0.2", + "has": "^1.0.1", + "postcss": "^5.0.14", + "postcss-selector-parser": "^2.0.0" }, "dependencies": { "has-flag": { @@ -8518,10 +8518,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8529,7 +8529,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8539,7 +8539,7 @@ "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz", "integrity": "sha1-757nEhLX/nWceO0WL2HtYrXLk/E=", "requires": { - "postcss": "5.2.18" + "postcss": "^5.0.5" }, "dependencies": { "has-flag": { @@ -8552,10 +8552,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8563,7 +8563,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8573,10 +8573,10 @@ "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz", "integrity": "sha1-EI90s/L82viRov+j6kWSJ5/HgiI=", "requires": { - "is-absolute-url": "2.1.0", - "normalize-url": "1.9.1", - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0" + "is-absolute-url": "^2.0.0", + "normalize-url": "^1.4.0", + "postcss": "^5.0.14", + "postcss-value-parser": "^3.2.3" }, "dependencies": { "has-flag": { @@ -8589,10 +8589,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8600,7 +8600,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8610,8 +8610,8 @@ "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz", "integrity": "sha1-7sbCpntsQSqNsgQud/6NpD+VwR0=", "requires": { - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0" + "postcss": "^5.0.4", + "postcss-value-parser": "^3.0.1" }, "dependencies": { "has-flag": { @@ -8624,10 +8624,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8635,7 +8635,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8645,8 +8645,8 @@ "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz", "integrity": "sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM=", "requires": { - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0" + "postcss": "^5.0.4", + "postcss-value-parser": "^3.0.2" }, "dependencies": { "has-flag": { @@ -8659,10 +8659,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8670,7 +8670,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8680,7 +8680,7 @@ "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz", "integrity": "sha1-aPgGlfBF0IJjqHmtJA343WT2ROo=", "requires": { - "postcss": "5.2.18" + "postcss": "^5.0.4" }, "dependencies": { "has-flag": { @@ -8693,10 +8693,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8704,7 +8704,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8714,9 +8714,9 @@ "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz", "integrity": "sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=", "requires": { - "has": "1.0.1", - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0" + "has": "^1.0.1", + "postcss": "^5.0.8", + "postcss-value-parser": "^3.0.1" }, "dependencies": { "has-flag": { @@ -8729,10 +8729,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8740,7 +8740,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8750,9 +8750,9 @@ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz", "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=", "requires": { - "flatten": "1.0.2", - "indexes-of": "1.0.1", - "uniq": "1.0.1" + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" } }, "postcss-svgo": { @@ -8760,10 +8760,10 @@ "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz", "integrity": "sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0=", "requires": { - "is-svg": "2.1.0", - "postcss": "5.2.18", - "postcss-value-parser": "3.3.0", - "svgo": "0.7.2" + "is-svg": "^2.0.0", + "postcss": "^5.0.14", + "postcss-value-parser": "^3.2.3", + "svgo": "^0.7.0" }, "dependencies": { "has-flag": { @@ -8776,10 +8776,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8787,7 +8787,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8797,9 +8797,9 @@ "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz", "integrity": "sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0=", "requires": { - "alphanum-sort": "1.0.2", - "postcss": "5.2.18", - "uniqs": "2.0.0" + "alphanum-sort": "^1.0.1", + "postcss": "^5.0.4", + "uniqs": "^2.0.0" }, "dependencies": { "has-flag": { @@ -8812,10 +8812,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8823,7 +8823,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8838,9 +8838,9 @@ "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz", "integrity": "sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=", "requires": { - "has": "1.0.1", - "postcss": "5.2.18", - "uniqs": "2.0.0" + "has": "^1.0.1", + "postcss": "^5.0.4", + "uniqs": "^2.0.0" }, "dependencies": { "has-flag": { @@ -8853,10 +8853,10 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "chalk": "1.1.3", - "js-base64": "2.4.0", - "source-map": "0.5.7", - "supports-color": "3.2.3" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { @@ -8864,7 +8864,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -8901,7 +8901,7 @@ "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "optional": true, "requires": { - "asap": "2.0.6" + "asap": "~2.0.3" } }, "prr": { @@ -8916,11 +8916,11 @@ "integrity": "sha1-OfaZ86RlYN1eusvKaTyvfGXBjMY=", "dev": true, "requires": { - "bn.js": "4.11.8", - "browserify-rsa": "4.0.1", - "create-hash": "1.1.3", - "parse-asn1": "5.1.0", - "randombytes": "2.0.6" + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1" } }, "punycode": { @@ -8939,8 +8939,8 @@ "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", "requires": { - "object-assign": "4.1.1", - "strict-uri-encode": "1.1.0" + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" } }, "querystring": { @@ -8961,7 +8961,7 @@ "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "^5.1.0" } }, "randomfill": { @@ -8970,8 +8970,8 @@ "integrity": "sha512-YL6GrhrWoic0Eq8rXVbMptH7dAxCs0J+mh5Y0euNekPPYaxEmdVGim6GdoxoRzKW2yJoU8tueifS7mYxvcFDEQ==", "dev": true, "requires": { - "randombytes": "2.0.6", - "safe-buffer": "5.1.1" + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" } }, "read-only-stream": { @@ -8980,7 +8980,7 @@ "integrity": "sha1-JyT9aoET1zdkrCiNQ4YnDB2/F/A=", "dev": true, "requires": { - "readable-stream": "2.3.3" + "readable-stream": "^2.0.2" } }, "read-pkg": { @@ -8988,9 +8988,9 @@ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", "requires": { - "load-json-file": "1.1.0", - "normalize-package-data": "2.4.0", - "path-type": "1.1.0" + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" } }, "read-pkg-up": { @@ -8998,8 +8998,8 @@ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", "requires": { - "find-up": "1.1.2", - "read-pkg": "1.1.0" + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" } }, "readable-stream": { @@ -9007,13 +9007,13 @@ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.0.3", + "util-deprecate": "~1.0.1" } }, "realize-package-specifier": { @@ -9021,8 +9021,8 @@ "resolved": "https://registry.npmjs.org/realize-package-specifier/-/realize-package-specifier-3.0.3.tgz", "integrity": "sha1-0N74gpUrjeP2frpekRmWYScfQfQ=", "requires": { - "dezalgo": "1.0.3", - "npm-package-arg": "4.2.1" + "dezalgo": "^1.0.1", + "npm-package-arg": "^4.1.1" } }, "rechoir": { @@ -9030,7 +9030,7 @@ "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", "requires": { - "resolve": "1.5.0" + "resolve": "^1.1.6" } }, "redent": { @@ -9038,8 +9038,8 @@ "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", "requires": { - "indent-string": "2.1.0", - "strip-indent": "1.0.1" + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" } }, "reduce-css-calc": { @@ -9047,9 +9047,9 @@ "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz", "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=", "requires": { - "balanced-match": "0.4.2", - "math-expression-evaluator": "1.2.17", - "reduce-function-call": "1.0.2" + "balanced-match": "^0.4.2", + "math-expression-evaluator": "^1.2.14", + "reduce-function-call": "^1.0.1" }, "dependencies": { "balanced-match": { @@ -9064,7 +9064,7 @@ "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz", "integrity": "sha1-WiAL+S4ON3UXUv5FsKszD9S2vpk=", "requires": { - "balanced-match": "0.4.2" + "balanced-match": "^0.4.2" }, "dependencies": { "balanced-match": { @@ -9089,9 +9089,9 @@ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz", "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==", "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0", - "private": "0.1.8" + "babel-runtime": "^6.18.0", + "babel-types": "^6.19.0", + "private": "^0.1.6" } }, "regex-not": { @@ -9099,7 +9099,7 @@ "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.0.tgz", "integrity": "sha1-Qvg+OXcWIt+CawKvF2Ul1qXxV/k=", "requires": { - "extend-shallow": "2.0.1" + "extend-shallow": "^2.0.1" } }, "regexpu-core": { @@ -9107,9 +9107,9 @@ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz", "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=", "requires": { - "regenerate": "1.3.3", - "regjsgen": "0.2.0", - "regjsparser": "0.1.5" + "regenerate": "^1.2.1", + "regjsgen": "^0.2.0", + "regjsparser": "^0.1.4" } }, "regjsgen": { @@ -9122,7 +9122,7 @@ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", "requires": { - "jsesc": "0.5.0" + "jsesc": "~0.5.0" } }, "relateurl": { @@ -9151,7 +9151,7 @@ "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", "requires": { - "is-finite": "1.0.2" + "is-finite": "^1.0.0" } }, "replace-ext": { @@ -9164,7 +9164,7 @@ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz", "integrity": "sha512-hgoSGrc3pjzAPHNBg+KnFcK2HwlHTs/YrAGUr6qgTVUZmXv1UEXXl0bZNBKMA9fud6lRYFdPGz0xXxycPzmmiw==", "requires": { - "path-parse": "1.0.5" + "path-parse": "^1.0.5" } }, "resolve-dir": { @@ -9172,8 +9172,8 @@ "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", "requires": { - "expand-tilde": "2.0.2", - "global-modules": "1.0.0" + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" } }, "resolve-url": { @@ -9186,7 +9186,7 @@ "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", "requires": { - "align-text": "0.1.4" + "align-text": "^0.1.1" } }, "rimraf": { @@ -9194,7 +9194,7 @@ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", "requires": { - "glob": "7.1.2" + "glob": "^7.0.5" } }, "ripemd160": { @@ -9203,8 +9203,8 @@ "integrity": "sha1-D0WEKVxTo2KK9+bXmsohzlfRxuc=", "dev": true, "requires": { - "hash-base": "2.0.2", - "inherits": "2.0.3" + "hash-base": "^2.0.0", + "inherits": "^2.0.1" } }, "rlp": { @@ -9218,8 +9218,8 @@ "resolved": "https://registry.npmjs.org/run-sequence/-/run-sequence-1.2.2.tgz", "integrity": "sha1-UJWgvr6YczsBQL0I3YDsAw3azes=", "requires": { - "chalk": "1.1.3", - "gulp-util": "3.0.8" + "chalk": "*", + "gulp-util": "*" } }, "safe-buffer": { @@ -9244,14 +9244,14 @@ "integrity": "sha512-eC120ESQ6MB3gMkxj0PVcSjv/9VtSUmm9uPGNc58yTs93iMCUQZ1xeGPidQMY1z1O4psbCtOxRu3vNqpbuck6Q==", "dev": true, "requires": { - "bindings": "1.3.0", - "bip66": "1.1.5", - "bn.js": "4.11.8", - "create-hash": "1.1.3", - "drbg.js": "1.0.1", - "elliptic": "6.4.0", - "nan": "2.8.0", - "safe-buffer": "5.1.1" + "bindings": "^1.2.1", + "bip66": "^1.1.3", + "bn.js": "^4.11.3", + "create-hash": "^1.1.2", + "drbg.js": "^1.0.1", + "elliptic": "^6.2.3", + "nan": "^2.2.1", + "safe-buffer": "^5.1.0" } }, "semver": { @@ -9269,7 +9269,7 @@ "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.0.tgz", "integrity": "sha1-12nBgsnVpR9AkUXy+6guXoboA3Y=", "requires": { - "to-object-path": "0.3.0" + "to-object-path": "^0.3.0" } }, "set-value": { @@ -9277,10 +9277,10 @@ "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", "requires": { - "extend-shallow": "2.0.1", - "is-extendable": "0.1.1", - "is-plain-object": "2.0.4", - "split-string": "3.1.0" + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" } }, "sha.js": { @@ -9289,8 +9289,8 @@ "integrity": "sha512-G8zektVqbiPHrylgew9Zg1VRB1L/DtXNUVAM6q4QLy8NE3qtHlFXTf8VLL4k1Yl6c7NMjtZUTdXV+X44nFaT6A==", "dev": true, "requires": { - "inherits": "2.0.3", - "safe-buffer": "5.1.1" + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" } }, "sha3": { @@ -9299,7 +9299,7 @@ "integrity": "sha1-aYnxtwpJhwWHajc+LGKs6WqpOZo=", "dev": true, "requires": { - "nan": "2.8.0" + "nan": "^2.0.5" } }, "shasum": { @@ -9308,8 +9308,8 @@ "integrity": "sha1-5wEjENj0F/TetXEhUOVni4euVl8=", "dev": true, "requires": { - "json-stable-stringify": "0.0.1", - "sha.js": "2.4.9" + "json-stable-stringify": "~0.0.0", + "sha.js": "~2.4.4" }, "dependencies": { "json-stable-stringify": { @@ -9318,7 +9318,7 @@ "integrity": "sha1-YRwj6BTbN1Un34URk9tZ3Sryf0U=", "dev": true, "requires": { - "jsonify": "0.0.0" + "jsonify": "~0.0.0" } } } @@ -9329,10 +9329,10 @@ "integrity": "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=", "dev": true, "requires": { - "array-filter": "0.0.1", - "array-map": "0.0.0", - "array-reduce": "0.0.0", - "jsonify": "0.0.0" + "array-filter": "~0.0.0", + "array-map": "~0.0.0", + "array-reduce": "~0.0.0", + "jsonify": "~0.0.0" } }, "shellwords": { @@ -9356,7 +9356,7 @@ "integrity": "sha1-QcNwtPXQ+QTT1JB/lvLj0yvpuTE=", "dev": true, "requires": { - "leven": "2.1.0" + "leven": "^2.0.0" } }, "slash": { @@ -9369,14 +9369,14 @@ "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.1.tgz", "integrity": "sha1-4StUh/re0+PeoKyR6UAL91tAE3A=", "requires": { - "base": "0.11.2", - "debug": "2.6.9", - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "map-cache": "0.2.2", - "source-map": "0.5.7", - "source-map-resolve": "0.5.1", - "use": "2.0.2" + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^2.0.0" }, "dependencies": { "define-property": { @@ -9384,7 +9384,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "is-accessor-descriptor": { @@ -9392,7 +9392,7 @@ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -9400,7 +9400,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -9410,7 +9410,7 @@ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -9418,7 +9418,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -9428,9 +9428,9 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" } }, "kind-of": { @@ -9445,9 +9445,9 @@ "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "requires": { - "define-property": "1.0.0", - "isobject": "3.0.1", - "snapdragon-util": "3.0.1" + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" } }, "snapdragon-util": { @@ -9455,7 +9455,7 @@ "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.2.0" }, "dependencies": { "kind-of": { @@ -9463,7 +9463,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -9473,7 +9473,7 @@ "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", "requires": { - "is-plain-obj": "1.1.0" + "is-plain-obj": "^1.0.0" } }, "source-map": { @@ -9486,11 +9486,11 @@ "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz", "integrity": "sha512-0KW2wvzfxm8NCTb30z0LMNyPqWCdDGE2viwzUaucqJdkTRXtZiSY3I+2A6nVAjmdOy0I4gU8DwnVVGsk9jvP2A==", "requires": { - "atob": "2.0.3", - "decode-uri-component": "0.2.0", - "resolve-url": "0.2.1", - "source-map-url": "0.4.0", - "urix": "0.1.0" + "atob": "^2.0.0", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" } }, "source-map-support": { @@ -9498,7 +9498,7 @@ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", "requires": { - "source-map": "0.5.7" + "source-map": "^0.5.6" } }, "source-map-url": { @@ -9516,7 +9516,7 @@ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", "requires": { - "spdx-license-ids": "1.2.2" + "spdx-license-ids": "^1.0.2" } }, "spdx-expression-parse": { @@ -9534,7 +9534,7 @@ "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "requires": { - "extend-shallow": "3.0.2" + "extend-shallow": "^3.0.0" }, "dependencies": { "extend-shallow": { @@ -9542,8 +9542,8 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", "requires": { - "assign-symbols": "1.0.0", - "is-extendable": "1.0.1" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" } }, "is-extendable": { @@ -9551,7 +9551,7 @@ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "requires": { - "is-plain-object": "2.0.4" + "is-plain-object": "^2.0.4" } } } @@ -9567,14 +9567,14 @@ "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", "optional": true, "requires": { - "asn1": "0.2.3", - "assert-plus": "1.0.0", - "bcrypt-pbkdf": "1.0.1", - "dashdash": "1.14.1", - "ecc-jsbn": "0.1.1", - "getpass": "0.1.7", - "jsbn": "0.1.1", - "tweetnacl": "0.14.5" + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "tweetnacl": "~0.14.0" }, "dependencies": { "assert-plus": { @@ -9590,8 +9590,8 @@ "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", "requires": { - "define-property": "0.2.5", - "object-copy": "0.1.0" + "define-property": "^0.2.5", + "object-copy": "^0.1.0" }, "dependencies": { "define-property": { @@ -9599,7 +9599,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "is-accessor-descriptor": { @@ -9607,7 +9607,7 @@ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -9615,7 +9615,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -9625,7 +9625,7 @@ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -9633,7 +9633,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -9643,9 +9643,9 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" } }, "kind-of": { @@ -9661,8 +9661,8 @@ "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", "dev": true, "requires": { - "inherits": "2.0.3", - "readable-stream": "2.3.3" + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" } }, "stream-combiner2": { @@ -9671,8 +9671,8 @@ "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=", "dev": true, "requires": { - "duplexer2": "0.1.4", - "readable-stream": "2.3.3" + "duplexer2": "~0.1.0", + "readable-stream": "^2.0.2" }, "dependencies": { "duplexer2": { @@ -9681,7 +9681,7 @@ "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", "dev": true, "requires": { - "readable-stream": "2.3.3" + "readable-stream": "^2.0.2" } } } @@ -9697,11 +9697,11 @@ "integrity": "sha512-c0yTD2rbQzXtSsFSVhtpvY/vS6u066PcXOX9kBB3mSO76RiUQzL340uJkGBWnlBg4/HZzqiUXtaVA7wcRcJgEw==", "dev": true, "requires": { - "builtin-status-codes": "3.0.0", - "inherits": "2.0.3", - "readable-stream": "2.3.3", - "to-arraybuffer": "1.0.1", - "xtend": "4.0.1" + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.2.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" } }, "stream-splicer": { @@ -9710,8 +9710,8 @@ "integrity": "sha1-G2O+Q4oTPktnHMGTUZdgAXWRDYM=", "dev": true, "requires": { - "inherits": "2.0.3", - "readable-stream": "2.3.3" + "inherits": "^2.0.1", + "readable-stream": "^2.0.2" } }, "strict-uri-encode": { @@ -9730,7 +9730,7 @@ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } }, "stringstream": { @@ -9744,7 +9744,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "requires": { - "ansi-regex": "2.1.1" + "ansi-regex": "^2.0.0" } }, "strip-bom": { @@ -9752,8 +9752,8 @@ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz", "integrity": "sha1-hbiGLzhEtabV7IRnqTWYFzo295Q=", "requires": { - "first-chunk-stream": "1.0.0", - "is-utf8": "0.2.1" + "first-chunk-stream": "^1.0.0", + "is-utf8": "^0.2.0" } }, "strip-hex-prefix": { @@ -9770,7 +9770,7 @@ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", "requires": { - "get-stdin": "4.0.1" + "get-stdin": "^4.0.1" } }, "subarg": { @@ -9779,7 +9779,7 @@ "integrity": "sha1-9izxdYHplrSPyWVpn1TAauJouNI=", "dev": true, "requires": { - "minimist": "1.2.0" + "minimist": "^1.1.0" }, "dependencies": { "minimist": { @@ -9800,13 +9800,13 @@ "resolved": "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz", "integrity": "sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U=", "requires": { - "coa": "1.0.4", - "colors": "1.1.2", - "csso": "2.3.2", - "js-yaml": "3.7.0", - "mkdirp": "0.5.1", - "sax": "1.2.4", - "whet.extend": "0.9.9" + "coa": "~1.0.1", + "colors": "~1.1.2", + "csso": "~2.3.1", + "js-yaml": "~3.7.0", + "mkdirp": "~0.5.1", + "sax": "~1.2.1", + "whet.extend": "~0.9.9" } }, "syntax-error": { @@ -9815,7 +9815,7 @@ "integrity": "sha1-HtkmbE1AvnXcVb+bsct3Biu5bKE=", "dev": true, "requires": { - "acorn": "4.0.13" + "acorn": "^4.0.3" } }, "tar-stream": { @@ -9823,10 +9823,10 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.5.tgz", "integrity": "sha512-mQdgLPc/Vjfr3VWqWbfxW8yQNiJCbAZ+Gf6GDu1Cy0bdb33ofyiNGBtAY96jHFhDuivCwgW1H9DgTON+INiXgg==", "requires": { - "bl": "1.2.1", - "end-of-stream": "1.4.1", - "readable-stream": "2.3.3", - "xtend": "4.0.1" + "bl": "^1.0.0", + "end-of-stream": "^1.0.0", + "readable-stream": "^2.0.0", + "xtend": "^4.0.0" } }, "through": { @@ -9840,8 +9840,8 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", "requires": { - "readable-stream": "2.3.3", - "xtend": "4.0.1" + "readable-stream": "^2.1.5", + "xtend": "~4.0.1" } }, "tildify": { @@ -9849,7 +9849,7 @@ "resolved": "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz", "integrity": "sha1-3OwD9V3Km3qj5bBPIYF+tW5jWIo=", "requires": { - "os-homedir": "1.0.2" + "os-homedir": "^1.0.0" } }, "time-stamp": { @@ -9863,7 +9863,7 @@ "integrity": "sha1-ycWLV1voQHN1y14kYtrO50NZ9B0=", "dev": true, "requires": { - "process": "0.11.10" + "process": "~0.11.0" } }, "to-arraybuffer": { @@ -9882,7 +9882,7 @@ "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -9890,7 +9890,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -9900,9 +9900,9 @@ "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.1.tgz", "integrity": "sha1-FTWL7kosg712N3uh3ASdDxiDeq4=", "requires": { - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "regex-not": "1.0.0" + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "regex-not": "^1.0.0" }, "dependencies": { "define-property": { @@ -9910,7 +9910,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "is-accessor-descriptor": { @@ -9918,7 +9918,7 @@ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -9926,7 +9926,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -9936,7 +9936,7 @@ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -9944,7 +9944,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -9954,9 +9954,9 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" } }, "kind-of": { @@ -9971,8 +9971,8 @@ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", "requires": { - "is-number": "3.0.0", - "repeat-string": "1.6.1" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" } }, "tough-cookie": { @@ -9981,7 +9981,7 @@ "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", "optional": true, "requires": { - "punycode": "1.4.1" + "punycode": "^1.4.1" }, "dependencies": { "punycode": { @@ -10014,7 +10014,7 @@ "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", "optional": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "^5.0.1" } }, "tweetnacl": { @@ -10033,9 +10033,9 @@ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", "requires": { - "source-map": "0.5.7", - "uglify-to-browserify": "1.0.2", - "yargs": "3.10.0" + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" } }, "uglify-save-license": { @@ -10070,10 +10070,10 @@ "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", "requires": { - "arr-union": "3.1.0", - "get-value": "2.0.6", - "is-extendable": "0.1.1", - "set-value": "0.4.3" + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^0.4.3" }, "dependencies": { "set-value": { @@ -10081,10 +10081,10 @@ "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", "requires": { - "extend-shallow": "2.0.1", - "is-extendable": "0.1.1", - "is-plain-object": "2.0.4", - "to-object-path": "0.3.0" + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.1", + "to-object-path": "^0.3.0" } } } @@ -10099,7 +10099,7 @@ "resolved": "https://registry.npmjs.org/uniqid/-/uniqid-4.1.1.tgz", "integrity": "sha1-iSIN32t1GuUrX3JISGNShZa7hME=", "requires": { - "macaddress": "0.2.8" + "macaddress": "^0.2.8" } }, "uniqs": { @@ -10112,7 +10112,7 @@ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.0.tgz", "integrity": "sha1-22Z258fMBimHj/GWCXx4hVrp9Ks=", "requires": { - "imurmurhash": "0.1.4" + "imurmurhash": "^0.1.4" } }, "unique-stream": { @@ -10131,8 +10131,8 @@ "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", "requires": { - "has-value": "0.3.1", - "isobject": "3.0.1" + "has-value": "^0.3.1", + "isobject": "^3.0.0" }, "dependencies": { "has-value": { @@ -10140,9 +10140,9 @@ "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", "requires": { - "get-value": "2.0.6", - "has-values": "0.1.4", - "isobject": "2.1.0" + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" }, "dependencies": { "isobject": { @@ -10196,9 +10196,9 @@ "resolved": "https://registry.npmjs.org/use/-/use-2.0.2.tgz", "integrity": "sha1-riig1y+TvyJCKhii43mZMRLeyOg=", "requires": { - "define-property": "0.2.5", - "isobject": "3.0.1", - "lazy-cache": "2.0.2" + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "lazy-cache": "^2.0.2" }, "dependencies": { "define-property": { @@ -10206,7 +10206,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "is-accessor-descriptor": { @@ -10214,7 +10214,7 @@ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -10222,7 +10222,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -10232,7 +10232,7 @@ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -10240,7 +10240,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -10250,9 +10250,9 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" } }, "kind-of": { @@ -10305,7 +10305,7 @@ "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz", "integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=", "requires": { - "user-home": "1.1.1" + "user-home": "^1.1.1" } }, "validate-npm-package-license": { @@ -10313,8 +10313,8 @@ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", "requires": { - "spdx-correct": "1.0.2", - "spdx-expression-parse": "1.0.4" + "spdx-correct": "~1.0.0", + "spdx-expression-parse": "~1.0.0" } }, "vendors": { @@ -10328,9 +10328,9 @@ "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", "optional": true, "requires": { - "assert-plus": "1.0.0", + "assert-plus": "^1.0.0", "core-util-is": "1.0.2", - "extsprintf": "1.3.0" + "extsprintf": "^1.2.0" }, "dependencies": { "assert-plus": { @@ -10346,8 +10346,8 @@ "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=", "requires": { - "clone": "1.0.3", - "clone-stats": "0.0.1", + "clone": "^1.0.0", + "clone-stats": "^0.0.1", "replace-ext": "0.0.1" } }, @@ -10356,8 +10356,8 @@ "resolved": "https://registry.npmjs.org/vinyl-buffer/-/vinyl-buffer-1.0.1.tgz", "integrity": "sha1-lsGjR5uMU5JULGEgKQE7Wyf4i78=", "requires": { - "bl": "1.2.1", - "through2": "2.0.3" + "bl": "^1.2.1", + "through2": "^2.0.3" } }, "vinyl-fs": { @@ -10365,14 +10365,14 @@ "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz", "integrity": "sha1-mmhRzhysHBzqX+hsCTHWIMLPqeY=", "requires": { - "defaults": "1.0.3", - "glob-stream": "3.1.18", - "glob-watcher": "0.0.6", - "graceful-fs": "3.0.11", - "mkdirp": "0.5.1", - "strip-bom": "1.0.0", - "through2": "0.6.5", - "vinyl": "0.4.6" + "defaults": "^1.0.0", + "glob-stream": "^3.1.5", + "glob-watcher": "^0.0.6", + "graceful-fs": "^3.0.0", + "mkdirp": "^0.5.0", + "strip-bom": "^1.0.0", + "through2": "^0.6.1", + "vinyl": "^0.4.0" }, "dependencies": { "clone": { @@ -10385,7 +10385,7 @@ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", "requires": { - "natives": "1.1.1" + "natives": "^1.1.0" } }, "isarray": { @@ -10398,10 +10398,10 @@ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", "isarray": "0.0.1", - "string_decoder": "0.10.31" + "string_decoder": "~0.10.x" } }, "string_decoder": { @@ -10414,8 +10414,8 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", "requires": { - "readable-stream": "1.0.34", - "xtend": "4.0.1" + "readable-stream": ">=1.0.33-1 <1.1.0-0", + "xtend": ">=4.0.0 <4.1.0-0" } }, "vinyl": { @@ -10423,8 +10423,8 @@ "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", "requires": { - "clone": "0.2.0", - "clone-stats": "0.0.1" + "clone": "^0.2.0", + "clone-stats": "^0.0.1" } } } @@ -10434,8 +10434,8 @@ "resolved": "https://registry.npmjs.org/vinyl-source-stream/-/vinyl-source-stream-1.1.2.tgz", "integrity": "sha1-YrU6E1YQqJbpjKlr7jqH8Aio54A=", "requires": { - "through2": "2.0.3", - "vinyl": "0.4.6" + "through2": "^2.0.3", + "vinyl": "^0.4.3" }, "dependencies": { "clone": { @@ -10448,8 +10448,8 @@ "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", "requires": { - "clone": "0.2.0", - "clone-stats": "0.0.1" + "clone": "^0.2.0", + "clone-stats": "^0.0.1" } } } @@ -10459,7 +10459,7 @@ "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", "integrity": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=", "requires": { - "source-map": "0.5.7" + "source-map": "^0.5.1" } }, "vm-browserify": { @@ -10500,7 +10500,7 @@ "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz", "integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==", "requires": { - "isexe": "2.0.0" + "isexe": "^2.0.0" } }, "window-size": { @@ -10539,9 +10539,9 @@ "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", "requires": { - "camelcase": "1.2.1", - "cliui": "2.1.0", - "decamelize": "1.2.0", + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", "window-size": "0.1.0" }, "dependencies": { @@ -10557,7 +10557,7 @@ "resolved": "https://registry.npmjs.org/yazl/-/yazl-2.4.3.tgz", "integrity": "sha1-7CblzIfVYBud+EMtvdPNLlFzoHE=", "requires": { - "buffer-crc32": "0.2.13" + "buffer-crc32": "~0.2.3" } }, "zip-stream": { @@ -10565,10 +10565,10 @@ "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-1.2.0.tgz", "integrity": "sha1-qLxF9MG0lpnGuQGYuqyqzbzUugQ=", "requires": { - "archiver-utils": "1.3.0", - "compress-commons": "1.2.2", - "lodash": "4.17.4", - "readable-stream": "2.3.3" + "archiver-utils": "^1.3.0", + "compress-commons": "^1.2.0", + "lodash": "^4.8.0", + "readable-stream": "^2.0.0" } } }