UNPKG

vue-country-selector

Version:

A component base on Vue.js for selecting country.

1,267 lines (1,014 loc) 84.8 kB
module.exports = /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); /******/ } /******/ }; /******/ /******/ // define __esModule on exports /******/ __webpack_require__.r = function(exports) { /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ /******/ // create a fake namespace object /******/ // mode & 1: value is a module id, require it /******/ // mode & 2: merge all properties of value into the ns /******/ // mode & 4: return value when already ns object /******/ // mode & 8|1: behave like require /******/ __webpack_require__.t = function(value, mode) { /******/ if(mode & 1) value = __webpack_require__(value); /******/ if(mode & 8) return value; /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; /******/ var ns = Object.create(null); /******/ __webpack_require__.r(ns); /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); /******/ return ns; /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = "fb15"); /******/ }) /************************************************************************/ /******/ ({ /***/ "01f9": /***/ (function(module, exports, __webpack_require__) { "use strict"; var LIBRARY = __webpack_require__("2d00"); var $export = __webpack_require__("5ca1"); var redefine = __webpack_require__("2aba"); var hide = __webpack_require__("32e9"); var Iterators = __webpack_require__("84f2"); var $iterCreate = __webpack_require__("41a0"); var setToStringTag = __webpack_require__("7f20"); var getPrototypeOf = __webpack_require__("38fd"); var ITERATOR = __webpack_require__("2b4c")('iterator'); var BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next` var FF_ITERATOR = '@@iterator'; var KEYS = 'keys'; var VALUES = 'values'; var returnThis = function () { return this; }; module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) { $iterCreate(Constructor, NAME, next); var getMethod = function (kind) { if (!BUGGY && kind in proto) return proto[kind]; switch (kind) { case KEYS: return function keys() { return new Constructor(this, kind); }; case VALUES: return function values() { return new Constructor(this, kind); }; } return function entries() { return new Constructor(this, kind); }; }; var TAG = NAME + ' Iterator'; var DEF_VALUES = DEFAULT == VALUES; var VALUES_BUG = false; var proto = Base.prototype; var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT]; var $default = $native || getMethod(DEFAULT); var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined; var $anyNative = NAME == 'Array' ? proto.entries || $native : $native; var methods, key, IteratorPrototype; // Fix native if ($anyNative) { IteratorPrototype = getPrototypeOf($anyNative.call(new Base())); if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) { // Set @@toStringTag to native iterators setToStringTag(IteratorPrototype, TAG, true); // fix for some old engines if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis); } } // fix Array#{values, @@iterator}.name in V8 / FF if (DEF_VALUES && $native && $native.name !== VALUES) { VALUES_BUG = true; $default = function values() { return $native.call(this); }; } // Define iterator if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) { hide(proto, ITERATOR, $default); } // Plug for library Iterators[NAME] = $default; Iterators[TAG] = returnThis; if (DEFAULT) { methods = { values: DEF_VALUES ? $default : getMethod(VALUES), keys: IS_SET ? $default : getMethod(KEYS), entries: $entries }; if (FORCED) for (key in methods) { if (!(key in proto)) redefine(proto, key, methods[key]); } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods); } return methods; }; /***/ }), /***/ "0bfb": /***/ (function(module, exports, __webpack_require__) { "use strict"; // 21.2.5.3 get RegExp.prototype.flags var anObject = __webpack_require__("cb7c"); module.exports = function () { var that = anObject(this); var result = ''; if (that.global) result += 'g'; if (that.ignoreCase) result += 'i'; if (that.multiline) result += 'm'; if (that.unicode) result += 'u'; if (that.sticky) result += 'y'; return result; }; /***/ }), /***/ "0d58": /***/ (function(module, exports, __webpack_require__) { // 19.1.2.14 / 15.2.3.14 Object.keys(O) var $keys = __webpack_require__("ce10"); var enumBugKeys = __webpack_require__("e11e"); module.exports = Object.keys || function keys(O) { return $keys(O, enumBugKeys); }; /***/ }), /***/ "11e9": /***/ (function(module, exports, __webpack_require__) { var pIE = __webpack_require__("52a7"); var createDesc = __webpack_require__("4630"); var toIObject = __webpack_require__("6821"); var toPrimitive = __webpack_require__("6a99"); var has = __webpack_require__("69a8"); var IE8_DOM_DEFINE = __webpack_require__("c69a"); var gOPD = Object.getOwnPropertyDescriptor; exports.f = __webpack_require__("9e1e") ? gOPD : function getOwnPropertyDescriptor(O, P) { O = toIObject(O); P = toPrimitive(P, true); if (IE8_DOM_DEFINE) try { return gOPD(O, P); } catch (e) { /* empty */ } if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]); }; /***/ }), /***/ "1495": /***/ (function(module, exports, __webpack_require__) { var dP = __webpack_require__("86cc"); var anObject = __webpack_require__("cb7c"); var getKeys = __webpack_require__("0d58"); module.exports = __webpack_require__("9e1e") ? Object.defineProperties : function defineProperties(O, Properties) { anObject(O); var keys = getKeys(Properties); var length = keys.length; var i = 0; var P; while (length > i) dP.f(O, P = keys[i++], Properties[P]); return O; }; /***/ }), /***/ "1eb2": /***/ (function(module, exports, __webpack_require__) { // This file is imported into lib/wc client bundles. if (typeof window !== 'undefined') { var i if ((i = window.document.currentScript) && (i = i.src.match(/(.+\/)[^/]+\.js$/))) { __webpack_require__.p = i[1] // eslint-disable-line } } /***/ }), /***/ "214f": /***/ (function(module, exports, __webpack_require__) { "use strict"; var hide = __webpack_require__("32e9"); var redefine = __webpack_require__("2aba"); var fails = __webpack_require__("79e5"); var defined = __webpack_require__("be13"); var wks = __webpack_require__("2b4c"); module.exports = function (KEY, length, exec) { var SYMBOL = wks(KEY); var fns = exec(defined, SYMBOL, ''[KEY]); var strfn = fns[0]; var rxfn = fns[1]; if (fails(function () { var O = {}; O[SYMBOL] = function () { return 7; }; return ''[KEY](O) != 7; })) { redefine(String.prototype, KEY, strfn); hide(RegExp.prototype, SYMBOL, length == 2 // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue) // 21.2.5.11 RegExp.prototype[@@split](string, limit) ? function (string, arg) { return rxfn.call(string, this, arg); } // 21.2.5.6 RegExp.prototype[@@match](string) // 21.2.5.9 RegExp.prototype[@@search](string) : function (string) { return rxfn.call(string, this); } ); } }; /***/ }), /***/ "230e": /***/ (function(module, exports, __webpack_require__) { var isObject = __webpack_require__("d3f4"); var document = __webpack_require__("7726").document; // typeof document.createElement is 'object' in old IE var is = isObject(document) && isObject(document.createElement); module.exports = function (it) { return is ? document.createElement(it) : {}; }; /***/ }), /***/ "2aba": /***/ (function(module, exports, __webpack_require__) { var global = __webpack_require__("7726"); var hide = __webpack_require__("32e9"); var has = __webpack_require__("69a8"); var SRC = __webpack_require__("ca5a")('src'); var TO_STRING = 'toString'; var $toString = Function[TO_STRING]; var TPL = ('' + $toString).split(TO_STRING); __webpack_require__("8378").inspectSource = function (it) { return $toString.call(it); }; (module.exports = function (O, key, val, safe) { var isFunction = typeof val == 'function'; if (isFunction) has(val, 'name') || hide(val, 'name', key); if (O[key] === val) return; if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key))); if (O === global) { O[key] = val; } else if (!safe) { delete O[key]; hide(O, key, val); } else if (O[key]) { O[key] = val; } else { hide(O, key, val); } // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative })(Function.prototype, TO_STRING, function toString() { return typeof this == 'function' && this[SRC] || $toString.call(this); }); /***/ }), /***/ "2aeb": /***/ (function(module, exports, __webpack_require__) { // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) var anObject = __webpack_require__("cb7c"); var dPs = __webpack_require__("1495"); var enumBugKeys = __webpack_require__("e11e"); var IE_PROTO = __webpack_require__("613b")('IE_PROTO'); var Empty = function () { /* empty */ }; var PROTOTYPE = 'prototype'; // Create object with fake `null` prototype: use iframe Object with cleared prototype var createDict = function () { // Thrash, waste and sodomy: IE GC bug var iframe = __webpack_require__("230e")('iframe'); var i = enumBugKeys.length; var lt = '<'; var gt = '>'; var iframeDocument; iframe.style.display = 'none'; __webpack_require__("fab2").appendChild(iframe); iframe.src = 'javascript:'; // eslint-disable-line no-script-url // createDict = iframe.contentWindow.Object; // html.removeChild(iframe); iframeDocument = iframe.contentWindow.document; iframeDocument.open(); iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt); iframeDocument.close(); createDict = iframeDocument.F; while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]]; return createDict(); }; module.exports = Object.create || function create(O, Properties) { var result; if (O !== null) { Empty[PROTOTYPE] = anObject(O); result = new Empty(); Empty[PROTOTYPE] = null; // add "__proto__" for Object.getPrototypeOf polyfill result[IE_PROTO] = O; } else result = createDict(); return Properties === undefined ? result : dPs(result, Properties); }; /***/ }), /***/ "2b4c": /***/ (function(module, exports, __webpack_require__) { var store = __webpack_require__("5537")('wks'); var uid = __webpack_require__("ca5a"); var Symbol = __webpack_require__("7726").Symbol; var USE_SYMBOL = typeof Symbol == 'function'; var $exports = module.exports = function (name) { return store[name] || (store[name] = USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name)); }; $exports.store = store; /***/ }), /***/ "2d00": /***/ (function(module, exports) { module.exports = false; /***/ }), /***/ "2d95": /***/ (function(module, exports) { var toString = {}.toString; module.exports = function (it) { return toString.call(it).slice(8, -1); }; /***/ }), /***/ "32e9": /***/ (function(module, exports, __webpack_require__) { var dP = __webpack_require__("86cc"); var createDesc = __webpack_require__("4630"); module.exports = __webpack_require__("9e1e") ? function (object, key, value) { return dP.f(object, key, createDesc(1, value)); } : function (object, key, value) { object[key] = value; return object; }; /***/ }), /***/ "386d": /***/ (function(module, exports, __webpack_require__) { // @@search logic __webpack_require__("214f")('search', 1, function (defined, SEARCH, $search) { // 21.1.3.15 String.prototype.search(regexp) return [function search(regexp) { 'use strict'; var O = defined(this); var fn = regexp == undefined ? undefined : regexp[SEARCH]; return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O)); }, $search]; }); /***/ }), /***/ "38fd": /***/ (function(module, exports, __webpack_require__) { // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) var has = __webpack_require__("69a8"); var toObject = __webpack_require__("4bf8"); var IE_PROTO = __webpack_require__("613b")('IE_PROTO'); var ObjectProto = Object.prototype; module.exports = Object.getPrototypeOf || function (O) { O = toObject(O); if (has(O, IE_PROTO)) return O[IE_PROTO]; if (typeof O.constructor == 'function' && O instanceof O.constructor) { return O.constructor.prototype; } return O instanceof Object ? ObjectProto : null; }; /***/ }), /***/ "3b2b": /***/ (function(module, exports, __webpack_require__) { var global = __webpack_require__("7726"); var inheritIfRequired = __webpack_require__("5dbc"); var dP = __webpack_require__("86cc").f; var gOPN = __webpack_require__("9093").f; var isRegExp = __webpack_require__("aae3"); var $flags = __webpack_require__("0bfb"); var $RegExp = global.RegExp; var Base = $RegExp; var proto = $RegExp.prototype; var re1 = /a/g; var re2 = /a/g; // "new" creates a new object, old webkit buggy here var CORRECT_NEW = new $RegExp(re1) !== re1; if (__webpack_require__("9e1e") && (!CORRECT_NEW || __webpack_require__("79e5")(function () { re2[__webpack_require__("2b4c")('match')] = false; // RegExp constructor can alter flags and IsRegExp works correct with @@match return $RegExp(re1) != re1 || $RegExp(re2) == re2 || $RegExp(re1, 'i') != '/a/i'; }))) { $RegExp = function RegExp(p, f) { var tiRE = this instanceof $RegExp; var piRE = isRegExp(p); var fiU = f === undefined; return !tiRE && piRE && p.constructor === $RegExp && fiU ? p : inheritIfRequired(CORRECT_NEW ? new Base(piRE && !fiU ? p.source : p, f) : Base((piRE = p instanceof $RegExp) ? p.source : p, piRE && fiU ? $flags.call(p) : f) , tiRE ? this : proto, $RegExp); }; var proxy = function (key) { key in $RegExp || dP($RegExp, key, { configurable: true, get: function () { return Base[key]; }, set: function (it) { Base[key] = it; } }); }; for (var keys = gOPN(Base), i = 0; keys.length > i;) proxy(keys[i++]); proto.constructor = $RegExp; $RegExp.prototype = proto; __webpack_require__("2aba")(global, 'RegExp', $RegExp); } __webpack_require__("7a56")('RegExp'); /***/ }), /***/ "41a0": /***/ (function(module, exports, __webpack_require__) { "use strict"; var create = __webpack_require__("2aeb"); var descriptor = __webpack_require__("4630"); var setToStringTag = __webpack_require__("7f20"); var IteratorPrototype = {}; // 25.1.2.1.1 %IteratorPrototype%[@@iterator]() __webpack_require__("32e9")(IteratorPrototype, __webpack_require__("2b4c")('iterator'), function () { return this; }); module.exports = function (Constructor, NAME, next) { Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) }); setToStringTag(Constructor, NAME + ' Iterator'); }; /***/ }), /***/ "456d": /***/ (function(module, exports, __webpack_require__) { // 19.1.2.14 Object.keys(O) var toObject = __webpack_require__("4bf8"); var $keys = __webpack_require__("0d58"); __webpack_require__("5eda")('keys', function () { return function keys(it) { return $keys(toObject(it)); }; }); /***/ }), /***/ "4588": /***/ (function(module, exports) { // 7.1.4 ToInteger var ceil = Math.ceil; var floor = Math.floor; module.exports = function (it) { return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); }; /***/ }), /***/ "4630": /***/ (function(module, exports) { module.exports = function (bitmap, value) { return { enumerable: !(bitmap & 1), configurable: !(bitmap & 2), writable: !(bitmap & 4), value: value }; }; /***/ }), /***/ "4bf8": /***/ (function(module, exports, __webpack_require__) { // 7.1.13 ToObject(argument) var defined = __webpack_require__("be13"); module.exports = function (it) { return Object(defined(it)); }; /***/ }), /***/ "52a7": /***/ (function(module, exports) { exports.f = {}.propertyIsEnumerable; /***/ }), /***/ "5537": /***/ (function(module, exports, __webpack_require__) { var core = __webpack_require__("8378"); var global = __webpack_require__("7726"); var SHARED = '__core-js_shared__'; var store = global[SHARED] || (global[SHARED] = {}); (module.exports = function (key, value) { return store[key] || (store[key] = value !== undefined ? value : {}); })('versions', []).push({ version: core.version, mode: __webpack_require__("2d00") ? 'pure' : 'global', copyright: '© 2018 Denis Pushkarev (zloirock.ru)' }); /***/ }), /***/ "5ca1": /***/ (function(module, exports, __webpack_require__) { var global = __webpack_require__("7726"); var core = __webpack_require__("8378"); var hide = __webpack_require__("32e9"); var redefine = __webpack_require__("2aba"); var ctx = __webpack_require__("9b43"); var PROTOTYPE = 'prototype'; var $export = function (type, name, source) { var IS_FORCED = type & $export.F; var IS_GLOBAL = type & $export.G; var IS_STATIC = type & $export.S; var IS_PROTO = type & $export.P; var IS_BIND = type & $export.B; var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE]; var exports = IS_GLOBAL ? core : core[name] || (core[name] = {}); var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {}); var key, own, out, exp; if (IS_GLOBAL) source = name; for (key in source) { // contains in native own = !IS_FORCED && target && target[key] !== undefined; // export native or passed out = (own ? target : source)[key]; // bind timers to global for call from export context exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out; // extend global if (target) redefine(target, key, out, type & $export.U); // export if (exports[key] != out) hide(exports, key, exp); if (IS_PROTO && expProto[key] != out) expProto[key] = out; } }; global.core = core; // type bitmap $export.F = 1; // forced $export.G = 2; // global $export.S = 4; // static $export.P = 8; // proto $export.B = 16; // bind $export.W = 32; // wrap $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; /***/ }), /***/ "5dbc": /***/ (function(module, exports, __webpack_require__) { var isObject = __webpack_require__("d3f4"); var setPrototypeOf = __webpack_require__("8b97").set; module.exports = function (that, target, C) { var S = target.constructor; var P; if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) { setPrototypeOf(that, P); } return that; }; /***/ }), /***/ "5eda": /***/ (function(module, exports, __webpack_require__) { // most Object methods by ES6 should accept primitives var $export = __webpack_require__("5ca1"); var core = __webpack_require__("8378"); var fails = __webpack_require__("79e5"); module.exports = function (KEY, exec) { var fn = (core.Object || {})[KEY] || Object[KEY]; var exp = {}; exp[KEY] = exec(fn); $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp); }; /***/ }), /***/ "613b": /***/ (function(module, exports, __webpack_require__) { var shared = __webpack_require__("5537")('keys'); var uid = __webpack_require__("ca5a"); module.exports = function (key) { return shared[key] || (shared[key] = uid(key)); }; /***/ }), /***/ "626a": /***/ (function(module, exports, __webpack_require__) { // fallback for non-array-like ES3 and non-enumerable old V8 strings var cof = __webpack_require__("2d95"); // eslint-disable-next-line no-prototype-builtins module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) { return cof(it) == 'String' ? it.split('') : Object(it); }; /***/ }), /***/ "6821": /***/ (function(module, exports, __webpack_require__) { // to indexed object, toObject with fallback for non-array-like ES3 strings var IObject = __webpack_require__("626a"); var defined = __webpack_require__("be13"); module.exports = function (it) { return IObject(defined(it)); }; /***/ }), /***/ "69a8": /***/ (function(module, exports) { var hasOwnProperty = {}.hasOwnProperty; module.exports = function (it, key) { return hasOwnProperty.call(it, key); }; /***/ }), /***/ "6a99": /***/ (function(module, exports, __webpack_require__) { // 7.1.1 ToPrimitive(input [, PreferredType]) var isObject = __webpack_require__("d3f4"); // instead of the ES6 spec version, we didn't implement @@toPrimitive case // and the second argument - flag - preferred type is a string module.exports = function (it, S) { if (!isObject(it)) return it; var fn, val; if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val; if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val; if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val; throw TypeError("Can't convert object to primitive value"); }; /***/ }), /***/ "7726": /***/ (function(module, exports) { // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 var global = module.exports = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self // eslint-disable-next-line no-new-func : Function('return this')(); if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef /***/ }), /***/ "77f1": /***/ (function(module, exports, __webpack_require__) { var toInteger = __webpack_require__("4588"); var max = Math.max; var min = Math.min; module.exports = function (index, length) { index = toInteger(index); return index < 0 ? max(index + length, 0) : min(index, length); }; /***/ }), /***/ "79e5": /***/ (function(module, exports) { module.exports = function (exec) { try { return !!exec(); } catch (e) { return true; } }; /***/ }), /***/ "7a56": /***/ (function(module, exports, __webpack_require__) { "use strict"; var global = __webpack_require__("7726"); var dP = __webpack_require__("86cc"); var DESCRIPTORS = __webpack_require__("9e1e"); var SPECIES = __webpack_require__("2b4c")('species'); module.exports = function (KEY) { var C = global[KEY]; if (DESCRIPTORS && C && !C[SPECIES]) dP.f(C, SPECIES, { configurable: true, get: function () { return this; } }); }; /***/ }), /***/ "7f20": /***/ (function(module, exports, __webpack_require__) { var def = __webpack_require__("86cc").f; var has = __webpack_require__("69a8"); var TAG = __webpack_require__("2b4c")('toStringTag'); module.exports = function (it, tag, stat) { if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag }); }; /***/ }), /***/ "8378": /***/ (function(module, exports) { var core = module.exports = { version: '2.5.7' }; if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef /***/ }), /***/ "84f2": /***/ (function(module, exports) { module.exports = {}; /***/ }), /***/ "86cc": /***/ (function(module, exports, __webpack_require__) { var anObject = __webpack_require__("cb7c"); var IE8_DOM_DEFINE = __webpack_require__("c69a"); var toPrimitive = __webpack_require__("6a99"); var dP = Object.defineProperty; exports.f = __webpack_require__("9e1e") ? Object.defineProperty : function defineProperty(O, P, Attributes) { anObject(O); P = toPrimitive(P, true); anObject(Attributes); if (IE8_DOM_DEFINE) try { return dP(O, P, Attributes); } catch (e) { /* empty */ } if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!'); if ('value' in Attributes) O[P] = Attributes.value; return O; }; /***/ }), /***/ "8b97": /***/ (function(module, exports, __webpack_require__) { // Works with __proto__ only. Old v8 can't work with null proto objects. /* eslint-disable no-proto */ var isObject = __webpack_require__("d3f4"); var anObject = __webpack_require__("cb7c"); var check = function (O, proto) { anObject(O); if (!isObject(proto) && proto !== null) throw TypeError(proto + ": can't set as prototype!"); }; module.exports = { set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line function (test, buggy, set) { try { set = __webpack_require__("9b43")(Function.call, __webpack_require__("11e9").f(Object.prototype, '__proto__').set, 2); set(test, []); buggy = !(test instanceof Array); } catch (e) { buggy = true; } return function setPrototypeOf(O, proto) { check(O, proto); if (buggy) O.__proto__ = proto; else set(O, proto); return O; }; }({}, false) : undefined), check: check }; /***/ }), /***/ "9093": /***/ (function(module, exports, __webpack_require__) { // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) var $keys = __webpack_require__("ce10"); var hiddenKeys = __webpack_require__("e11e").concat('length', 'prototype'); exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { return $keys(O, hiddenKeys); }; /***/ }), /***/ "9b43": /***/ (function(module, exports, __webpack_require__) { // optional / simple context binding var aFunction = __webpack_require__("d8e8"); module.exports = function (fn, that, length) { aFunction(fn); if (that === undefined) return fn; switch (length) { case 1: return function (a) { return fn.call(that, a); }; case 2: return function (a, b) { return fn.call(that, a, b); }; case 3: return function (a, b, c) { return fn.call(that, a, b, c); }; } return function (/* ...args */) { return fn.apply(that, arguments); }; }; /***/ }), /***/ "9c6c": /***/ (function(module, exports, __webpack_require__) { // 22.1.3.31 Array.prototype[@@unscopables] var UNSCOPABLES = __webpack_require__("2b4c")('unscopables'); var ArrayProto = Array.prototype; if (ArrayProto[UNSCOPABLES] == undefined) __webpack_require__("32e9")(ArrayProto, UNSCOPABLES, {}); module.exports = function (key) { ArrayProto[UNSCOPABLES][key] = true; }; /***/ }), /***/ "9def": /***/ (function(module, exports, __webpack_require__) { // 7.1.15 ToLength var toInteger = __webpack_require__("4588"); var min = Math.min; module.exports = function (it) { return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 }; /***/ }), /***/ "9e1e": /***/ (function(module, exports, __webpack_require__) { // Thank's IE8 for his funny defineProperty module.exports = !__webpack_require__("79e5")(function () { return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7; }); /***/ }), /***/ "aa77": /***/ (function(module, exports, __webpack_require__) { var $export = __webpack_require__("5ca1"); var defined = __webpack_require__("be13"); var fails = __webpack_require__("79e5"); var spaces = __webpack_require__("fdef"); var space = '[' + spaces + ']'; var non = '\u200b\u0085'; var ltrim = RegExp('^' + space + space + '*'); var rtrim = RegExp(space + space + '*$'); var exporter = function (KEY, exec, ALIAS) { var exp = {}; var FORCE = fails(function () { return !!spaces[KEY]() || non[KEY]() != non; }); var fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY]; if (ALIAS) exp[ALIAS] = fn; $export($export.P + $export.F * FORCE, 'String', exp); }; // 1 -> String#trimLeft // 2 -> String#trimRight // 3 -> String#trim var trim = exporter.trim = function (string, TYPE) { string = String(defined(string)); if (TYPE & 1) string = string.replace(ltrim, ''); if (TYPE & 2) string = string.replace(rtrim, ''); return string; }; module.exports = exporter; /***/ }), /***/ "aae3": /***/ (function(module, exports, __webpack_require__) { // 7.2.8 IsRegExp(argument) var isObject = __webpack_require__("d3f4"); var cof = __webpack_require__("2d95"); var MATCH = __webpack_require__("2b4c")('match'); module.exports = function (it) { var isRegExp; return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp'); }; /***/ }), /***/ "ac6a": /***/ (function(module, exports, __webpack_require__) { var $iterators = __webpack_require__("cadf"); var getKeys = __webpack_require__("0d58"); var redefine = __webpack_require__("2aba"); var global = __webpack_require__("7726"); var hide = __webpack_require__("32e9"); var Iterators = __webpack_require__("84f2"); var wks = __webpack_require__("2b4c"); var ITERATOR = wks('iterator'); var TO_STRING_TAG = wks('toStringTag'); var ArrayValues = Iterators.Array; var DOMIterables = { CSSRuleList: true, // TODO: Not spec compliant, should be false. CSSStyleDeclaration: false, CSSValueList: false, ClientRectList: false, DOMRectList: false, DOMStringList: false, DOMTokenList: true, DataTransferItemList: false, FileList: false, HTMLAllCollection: false, HTMLCollection: false, HTMLFormElement: false, HTMLSelectElement: false, MediaList: true, // TODO: Not spec compliant, should be false. MimeTypeArray: false, NamedNodeMap: false, NodeList: true, PaintRequestList: false, Plugin: false, PluginArray: false, SVGLengthList: false, SVGNumberList: false, SVGPathSegList: false, SVGPointList: false, SVGStringList: false, SVGTransformList: false, SourceBufferList: false, StyleSheetList: true, // TODO: Not spec compliant, should be false. TextTrackCueList: false, TextTrackList: false, TouchList: false }; for (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) { var NAME = collections[i]; var explicit = DOMIterables[NAME]; var Collection = global[NAME]; var proto = Collection && Collection.prototype; var key; if (proto) { if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues); if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME); Iterators[NAME] = ArrayValues; if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true); } } /***/ }), /***/ "be13": /***/ (function(module, exports) { // 7.2.1 RequireObjectCoercible(argument) module.exports = function (it) { if (it == undefined) throw TypeError("Can't call method on " + it); return it; }; /***/ }), /***/ "c366": /***/ (function(module, exports, __webpack_require__) { // false -> Array#indexOf // true -> Array#includes var toIObject = __webpack_require__("6821"); var toLength = __webpack_require__("9def"); var toAbsoluteIndex = __webpack_require__("77f1"); module.exports = function (IS_INCLUDES) { return function ($this, el, fromIndex) { var O = toIObject($this); var length = toLength(O.length); var index = toAbsoluteIndex(fromIndex, length); var value; // Array#includes uses SameValueZero equality algorithm // eslint-disable-next-line no-self-compare if (IS_INCLUDES && el != el) while (length > index) { value = O[index++]; // eslint-disable-next-line no-self-compare if (value != value) return true; // Array#indexOf ignores holes, Array#includes - not } else for (;length > index; index++) if (IS_INCLUDES || index in O) { if (O[index] === el) return IS_INCLUDES || index || 0; } return !IS_INCLUDES && -1; }; }; /***/ }), /***/ "c5f6": /***/ (function(module, exports, __webpack_require__) { "use strict"; var global = __webpack_require__("7726"); var has = __webpack_require__("69a8"); var cof = __webpack_require__("2d95"); var inheritIfRequired = __webpack_require__("5dbc"); var toPrimitive = __webpack_require__("6a99"); var fails = __webpack_require__("79e5"); var gOPN = __webpack_require__("9093").f; var gOPD = __webpack_require__("11e9").f; var dP = __webpack_require__("86cc").f; var $trim = __webpack_require__("aa77").trim; var NUMBER = 'Number'; var $Number = global[NUMBER]; var Base = $Number; var proto = $Number.prototype; // Opera ~12 has broken Object#toString var BROKEN_COF = cof(__webpack_require__("2aeb")(proto)) == NUMBER; var TRIM = 'trim' in String.prototype; // 7.1.3 ToNumber(argument) var toNumber = function (argument) { var it = toPrimitive(argument, false); if (typeof it == 'string' && it.length > 2) { it = TRIM ? it.trim() : $trim(it, 3); var first = it.charCodeAt(0); var third, radix, maxCode; if (first === 43 || first === 45) { third = it.charCodeAt(2); if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix } else if (first === 48) { switch (it.charCodeAt(1)) { case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i default: return +it; } for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) { code = digits.charCodeAt(i); // parseInt parses a string to a first unavailable symbol // but ToNumber should return NaN if a string contains unavailable symbols if (code < 48 || code > maxCode) return NaN; } return parseInt(digits, radix); } } return +it; }; if (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) { $Number = function Number(value) { var it = arguments.length < 1 ? 0 : value; var that = this; return that instanceof $Number // check on 1..constructor(foo) case && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER) ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it); }; for (var keys = __webpack_require__("9e1e") ? gOPN(Base) : ( // ES3: 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' + // ES6 (in case, if modules with ES6 Number statics required before): 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' + 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger' ).split(','), j = 0, key; keys.length > j; j++) { if (has(Base, key = keys[j]) && !has($Number, key)) { dP($Number, key, gOPD(Base, key)); } } $Number.prototype = proto; proto.constructor = $Number; __webpack_require__("2aba")(global, NUMBER, $Number); } /***/ }), /***/ "c69a": /***/ (function(module, exports, __webpack_require__) { module.exports = !__webpack_require__("9e1e") && !__webpack_require__("79e5")(function () { return Object.defineProperty(__webpack_require__("230e")('div'), 'a', { get: function () { return 7; } }).a != 7; }); /***/ }), /***/ "c895": /***/ (function(module) { module.exports = [{"cnName":"安道尔","cnSpell":"ANDAOER","code":"AD","enName":"Andorra","hot":false},{"cnName":"阿拉伯联合酋长国","cnSpell":"ALABOLIANHEQIUCHANGGUO","code":"AE","enName":"United Arab Emirates","hot":false},{"cnName":"阿富汗","cnSpell":"AFUHAN","code":"AF","enName":"Afghanistan","hot":false},{"cnName":"安提瓜及巴布达","cnSpell":"ANTIGUAJIBABUDA","code":"AG","enName":"Antigua and Barbuda","hot":false},{"cnName":"安圭拉岛","cnSpell":"ANGUILADAO","code":"AI","enName":"Anguilla","hot":false},{"cnName":"阿尔巴尼亚","cnSpell":"AERBANIYA","code":"AL","enName":"Albania","hot":false},{"cnName":"亚美尼亚","cnSpell":"YAMEINIYA","code":"AM","enName":"Armenia","hot":false},{"cnName":"荷属安的列斯群岛","cnSpell":"HESHUANDELIESIQUNDAO","code":"AN","enName":"NETHERLANDS ANTILLES","hot":false},{"cnName":"安哥拉","cnSpell":"ANGELA","code":"AO","enName":"ANGOLA","hot":false},{"cnName":"阿根廷","cnSpell":"AGENTING","code":"AR","enName":"ARGENTINA","hot":false},{"cnName":"美属萨摩亚群岛","cnSpell":"MEISHUSAMOYAQUNDAO","code":"AS","enName":"AMERICAN SAMOA","hot":false},{"cnName":"奥地利","cnSpell":"AODILI","code":"AT","enName":"AUSTRIA","hot":false},{"cnName":"澳大利亚","cnSpell":"AODALIYA","code":"AU","enName":"AUSTRALIA","hot":true},{"cnName":"阿鲁巴岛","cnSpell":"ALUBADAO","code":"AW","enName":"ARUBA","hot":false},{"cnName":"阿塞拜疆(独联体)","cnSpell":"ASAIBAIJIANG(DULIANTI)","code":"AZ","enName":"AZERBAIJAN","hot":false},{"cnName":"波斯尼亚-黑塞哥维那共和国","cnSpell":"BOSINIYA-HEISAIGEWEINAGONGHEGUO","code":"BA","enName":"BOSNIA AND HERZEGOVINA","hot":false},{"cnName":"巴巴多斯","cnSpell":"BABADUOSI","code":"BB","enName":"BARBADOS","hot":false},{"cnName":"孟加拉国","cnSpell":"MENGJIALAGUO","code":"BD","enName":"BANGLADESH","hot":false},{"cnName":"比利时","cnSpell":"BILISHI","code":"BE","enName":"BELGIUM","hot":false},{"cnName":"布基纳法索","cnSpell":"BUJINAFASUO","code":"BF","enName":"BURKINA FASO","hot":false},{"cnName":"保加利亚","cnSpell":"BAOJIALIYA","code":"BG","enName":"BULGARIA","hot":false},{"cnName":"巴林","cnSpell":"BALIN","code":"BH","enName":"BAHRAIN","hot":false},{"cnName":"布隆迪","cnSpell":"BULONGDI","code":"BI","enName":"BURUNDI","hot":false},{"cnName":"贝宁","cnSpell":"BEINING","code":"BJ","enName":"BENIN","hot":false},{"cnName":"百慕大","cnSpell":"BAIMUDA","code":"BM","enName":"BERMUDA","hot":false},{"cnName":"文莱","cnSpell":"WENLAI","code":"BN","enName":"BRUNEI","hot":false},{"cnName":"波利维亚","cnSpell":"BOLIWEIYA","code":"BO","enName":"BOLIVIA","hot":false},{"cnName":"巴西","cnSpell":"BAXI","code":"BR","enName":"BRAZIL","hot":true},{"cnName":"巴哈马","cnSpell":"BAHAMA","code":"BS","enName":"BAHAMAS","hot":false},{"cnName":"不丹","cnSpell":"BUDAN","code":"BT","enName":"BHUTAN","hot":false},{"cnName":"布维岛","cnSpell":"BUWEIDAO","code":"BV","enName":"BOUVET ISLAND","hot":false},{"cnName":"博茨瓦纳","cnSpell":"BOCIWANA","code":"BW","enName":"BOTSWANA","hot":false},{"cnName":"白俄罗斯(独联体)","cnSpell":"BAIELUOSI(DULIANTI)","code":"BY","enName":"BELARUS","hot":false},{"cnName":"伯利兹","cnSpell":"BOLIZI","code":"BZ","enName":"BELIZE","hot":false},{"cnName":"加拿大","cnSpell":"JIANADA","code":"CA","enName":"Canada","hot":true},{"cnName":"科科斯群岛","cnSpell":"KEKESIQUNDAO","code":"CC","enName":"COCOS(KEELING)ISLANDS","hot":false},{"cnName":"刚果民主共和国","cnSpell":"GANGGUOMINZHUGONGHEGUO","code":"CD","enName":"CONGO REPUBLIC ","hot":false},{"cnName":"中非共和国","cnSpell":"ZHONGFEIGONGHEGUO","code":"CF","enName":"CENTRAL REPUBLIC","hot":false},{"cnName":"刚果","cnSpell":"GANGGUO","code":"CG","enName":"CONGO","hot":false},{"cnName":"瑞士","cnSpell":"RUISHI","code":"CH","enName":"SWITZERLAND","hot":false},{"cnName":"科特迪瓦(象牙海岸)","cnSpell":"KETEDIWAXIANGYAHAIAN","code":"CI","enName":"COTE D`LVOIRE(IVORY)","hot":false},{"cnName":"库克群岛","cnSpell":"KUKEQUNDAO","code":"CK","enName":"COOK ISLANDS","hot":false},{"cnName":"智利","cnSpell":"ZHILI","code":"CL","enName":"CHILE","hot":false},{"cnName":"喀麦隆","cnSpell":"KAMAILONG","code":"CM","enName":"CAMEROON","hot":false},{"cnName":"中国","cnSpell":"ZHONGGUO","code":"CN","enName":"CHINA","hot":true},{"cnName":"哥伦比亚","cnSpell":"GELUNBIYA","code":"CO","enName":"COLOMBIA","hot":false},{"cnName":"哥斯达黎加","cnSpell":"GESIDALIJIA","code":"CR","enName":"COSTA RICA","hot":false},{"cnName":"古巴","cnSpell":"GUBA","code":"CU","enName":"CUBA","hot":false},{"cnName":"佛得角群岛","cnSpell":"FODEJIAOQUNDAO","code":"CV","enName":"CAPE VERDE","hot":false},{"cnName":"圣诞岛","cnSpell":"SHENGDANDAO","code":"CX","enName":"CHRISTMAS ISLAND","hot":false},{"cnName":"塞浦路斯","cnSpell":"SAIPULUSI","code":"CY","enName":"CYPRUS","hot":false},{"cnName":"捷克共和国","cnSpell":"JIEKEGONGHEGUO","code":"CZ","enName":"CZECH REPUBLIC","hot":false},{"cnName":"德国","cnSpell":"DEGUO","code":"DE","enName":"GERMANY","hot":true},{"cnName":"吉布提","cnSpell":"JIBUTI","code":"DJ","enName":"DJIBOUTI","hot":false},{"cnName":"丹麦","cnSpell":"DANMAI","code":"DK","enName":"DENMARK","hot":false},{"cnName":"多米尼克","cnSpell":"DUOMINIKE","code":"DM","enName":"DOMINICA","hot":false},{"cnName":"多米尼加共合国","cnSpell":"DUOMINIJIAGONGHEGUO","code":"DO","enName":"DOMINICAN REPUBLIC","hot":false},{"cnName":"阿尔及利亚","cnSpell":"AERJILIYA","code":"DZ","enName":"ALGERIA","hot":false},{"cnName":"厄瓜多尔","cnSpell":"EGUADUOER","code":"EC","enName":"ECUADOR","hot":false},{"cnName":"爱沙尼亚","cnSpell":"AISHANIYA","code":"EE","enName":"ESTONIA","hot":false},{"cnName":"埃及","cnSpell":"AIJI","code":"EG","enName":"EGYPT","hot":false},{"cnName":"西撒哈拉","cnSpell":"XISAHALA","code":"EH","enName":"WESTERN SAHARA ","hot":false},{"cnName":"厄里特立亚","cnSpell":"ELITELIYA","code":"ER","enName":"ERITREA","hot":false},{"cnName":"西班牙","cnSpell":"XIBANYA","code":"ES","enName":"SPAIN","hot":true},{"cnName":"埃塞俄比亚","cnSpell":"AISAIEBIYA","code":"ET","enName":"ETHIOPIA","hot":false},{"cnName":"芬兰","cnSpell":"FENLAN","code":"FI","enName":"FINLAND","hot":false},{"cnName":"斐济","cnSpell":"FEIJI","code":"FJ","enName":"FIJI","hot":false},{"cnName":"福克兰群岛","cnSpell":"FUKELANQUNDAO","code":"FK","enName":"FALKLAND ISLAND","hot":false},{"cnName":"密克罗尼西亚","cnSpell":"MIKELUONIXIYA","code":"FM","enName":"MICRONESIA","hot":false},{"cnName":"法鲁群岛","cnSpell":"FALUOQUNDAO","code":"FO","enName":"FAROE ISLANDS","hot":false},{"cnName":"法国","cnSpell":"FAGUO","code":"FR","enName":"FRANCE","hot":true},{"cnName":"法属美特罗波利坦","cnSpell":"FASHUMEITELUOBOLITAN","code":"FX","enName":"FRANCE, METROPOLITAN","hot":false},{"cnName":"加蓬","cnSpell":"JIAPENG","code":"GA","enName":"GABON","hot":false},{"cnName":"英国","cnSpell":"YINGGUO","code":"GB","enName":"UNITED KINGDOM","hot":true},{"cnName":"格林纳达","cnSpell":"GELINNADA","code":"GD","enName":"GRENADA","hot":false},{"cnName":"格鲁吉亚","cnSpell":"GELUJIYA","code":"GE","enName":"GEORGIA","hot":false},{"cnName":"法属圭亚那","cnSpell":"FASHUGUIYANA","code":"GF","enName":"FRENCH GUIANA","hot":false},{"cnName":"根西岛","cnSpell":"GENXIDAO","code":"GG","enName":"GUERNSEY","hot":false},{"cnName":"加纳","cnSpell":"JIANA","code":"GH","enName":"GHANA","hot":false},{"cnName":"直布罗陀","cnSpell":"ZHIBULUOTUO","code":"GI","enName":"GIBRALTAR","hot":false},{"cnName":"格陵兰","cnSpell":"GELINGLAN","code":"GL","enName":"GREENLAND","hot":false},{"cnName":"冈比亚","cnSpell":"GANGBIYA","code":"GM","enName":"GAMBIA","hot":false},{"cnName":"几内亚","cnSpell":"JINEIYA","code":"GN","enName":"GUINEA ","hot":false},{"cnName":"瓜德罗普","cnSpell":"GUADELUOPU","code":"GP","enName":"GUADELOUPE","hot":false},{"cnName":"赤道几内亚","cnSpell":"CHIDAOJINEIYA","code":"GQ","enName":"EQUATORIAL GUINEA ","hot":false},{"cnName":"希腊","cnSpell":"XILA","code":"GR","enName":"GREECE","hot":false},{"cnName":"南乔治亚岛和南桑威奇群岛","cnSpell":"NANQIAOZHIYADAOHENANSANGWEIQIQUNDAO","code":"GS","enName":"SOUTH GEORGIA AND THE SOUTH SANDWICH ISL","hot":false},{"cnName":"危地马拉","cnSpell":"WEIDIMALA","code":"GT","enName":"GUATEMALA","hot":false},{"cnName":"关岛","cnSpell":"GUANDAO","code":"GU","enName":"GUAM","hot":false},{"cnName":"几内亚比绍","cnSpell":"JINEIYABISHAO","code":"GW","enName":"GUINEA BISSAU","hot":false},{"cnName":"圭亚那","cnSpell":"GUIYANA","code":"GY","enName":"GUYANA (BRITISH)","hot":false},{"cnName":"香港","cnSpell":"XIANGGANG","code":"HK","enName":"HONG KONG","hot":true},{"cnName":"赫德岛和麦克唐纳岛","cnSpell":"HEDEDAOHEMAIKETANGNADAO","code":"HM","enName":"HEARD ISLAND AND MCDONALD ISLANDS","hot":false},{"cnName":"洪都拉斯","cnSpell":"HONGDULASI","code":"HN","enName":"HONDURAS","hot":false},{"cnName":"克罗地亚","cnSpell":"KELUODIYA","code":"HR","enName":"CROATIA","hot":false},{"cnName":"海地","cnSpell":"HAIDI","code":"HT","enName":"HAITI","hot":false},{"cnName":"匈牙利","cnSpell":"XIONGYALI","code":"HU","enName":"HUNGARY","hot":false},{"cnName":"加那利群岛","cnSpell":"JIANALIQUNDAO","code":"IC","enName":"CANARY ISLANDS","hot":false},{"cnName":"印度尼西亚","cnSpell":"YINDUNIXIYA","code":"ID","enName":"INDONESIA","hot":true},{"cnName":"爱尔兰","cnSpell":"AIERLAN","code":"IE","enName":"IRELAND","hot":false},{"cnName":"以色列","cnSpell":"YISELIE","code":"IL","enName":"ISRAEL","hot":false},{"cnName":"印度","cnSpell":"YINDU","code":"IN","enName":"INDIA","hot":false},{"cnName":"英属印度洋地区(查各群岛)","cnSpell":"YINGSHUYINDUYANGDIQUCHAGEQUNDAO","code":"IO","enName":"BRITISH INDIAN OCEAN TERRITORY","hot":false},{"cnName":"伊拉克","cnSpell":"YILAKE","code":"IQ","enName":"IRAQ","hot":false},{"cnName":"伊朗","cnSpell":"YILANG","code":"IR","enName":"IRAN (ISLAMIC REPUBLIC OF)","hot":false},{"cnName":"冰岛","cnSpell":"BINGDAO","code":"IS","enName":"ICELAND","hot":false},{"cnName":"意大利","cnSpell":"YIDALI","code":"IT","enName":"ITALY","hot":true},{"cnName":"泽西岛(英属)","cnSpell":"ZEXIDAO(YINGSHU)","code":"JE","enName":"JERSEY","hot":false},{"cnName":"牙买加","cnSpell":"YAMAIJIA","code":"JM","enName":"JAMAICA","hot":false},{"cnName":"约旦","cnSpell":"YUEDAN","code":"JO","enName":"JORDAN","hot":false},{"cnName":"日本","cnSpell":"RIBEN","code":"JP","enName":"JAPAN","hot":true},{"cnName":"南斯拉夫","cnSpell":"NANSILAFU","code":"JU","enName":"YUGOSLAVIA","hot":false},{"cnName":"肯尼亚","cnSpell":"KENNIYA","code":"KE","enName":"KENYA","hot":false},{"cnName":"吉尔吉斯斯坦","cnSpell":"JIERJISISITAN","code":"KG","enName":"KYRGYZSTAN","hot":false},{"cnName":"柬埔寨","cnSpell":"JIANPUZHAI","code":"KH","enName":"CAMBODIA","hot":false},{"cnName":"基利巴斯共和国","cnSpell":"JILIBASIGONGHEGUO","code":"KI","enName":"KIRIBATI REPUBILC","hot":false},{"cnName":"科摩罗","cnSpell":"KEMOLUO","code":"KM","enName":"COMOROS","hot":false},{"cnName":"圣基茨","cnSpell":"SHENGJICI","code":"KN","enName":"SAINT KITTS ","hot":false},{"cnName":"朝鲜","cnSpell":"CHAOXIAN","code":"KP","enName":"NORTH KOREA","hot":false},{"cnName":"韩国","cnSpell":"HANGUO","code":"KR","enName":"SOUTH KOREA","hot":true},{"cnName":"科索沃","cnSpell":"KESUOWO","code":"KV","enName":"KOSOVO","hot":false},{"cnName":"科威特","cnSpell":"KEWEITE","code":"KW","enName":"KUWAIT","hot":false},{"cnName":"开曼群岛","cnSpell":"KAIMANQUNDAO","code":"KY","enName":"CAYMAN ISLANDS","hot":false},{"cnName":"哈萨克斯坦","cnSpell":"HASAKESITAN","code":"KZ","enName":"KAZAKHSTAN","hot":false},{"cnName":"老挝","cnSpell":"LAOWO","code":"LA","enName":"LAOS","hot":false},{"cnName":"黎巴嫩","cnSpell":"LIBANEN","code":"LB","enName":"LEBANON","hot":false},{"cnName":"圣卢西亚","cnSpell":"SHENGLUXIYA","code":"LC","enName":"ST. LUCIA","hot":false},{"cnName":"列支敦士登","cnSpell":"LIEZHIDUNSHIDENG","code":"LI","enName":"LIECHTENSTEIN","hot":false},{"cnName":"斯里兰卡","cnSpell":"SILILANKA","code":"LK","enName":"SRI LANKA","hot":false},{"cnName":"利比里亚","cnSpell":"LIBILIYA","code":"LR","enName":"LIBERIA","hot":false},{"cnName":"莱索托","cnSpell":"LAISUOTUO","code":"LS","enName":"LESOTHO","hot":false},{"cnName":"立陶宛","cnSpell":"LITAOWAN","code":"LT","enName":"LITHUANIA","hot":false},{"cnName":"卢森堡","cnSpell":"LUSENBAO","code":"LU","enName":"LUXEMBOURG","hot":false},{"cnName":"拉脱维亚","cnSpell":"LATUOWEIYA","code":"LV","enName":"LATVIA","hot":false},{"cnName":"利比亚","cnSpell":"LIBIYA","code":"LY","enName":"LIBYA","hot":false},{"cnName":"摩洛哥","cnSpell":"MOLUOGE","code":"MA","enName":"MOROCCO","hot":false},{"cnName":"摩纳哥","cnSpell":"MONAGE","code":"MC","enName":"MONACO","hot":false},{"cnName":"摩尔多瓦","cnSpell":"MOERDUOWA","code":"MD","enName":"MOLDOVA","hot":false},{"cnName":"黑山共和国","cnSpell":"HEISHANGONGHEGUO","code":"ME","enName":"MONTENEGRO","hot":false},{"cnName":"马达加斯加","cnSpell":"MADAJIASIJIA","code":"MG","enName":"MADAGASCAR","hot":false},{"cnName":"马绍尔群岛","cnSpell":"MASHAOERQUNDAO","code":"MH","enName":"MARSHALL ISLANDS","hot":false},{"cnName":"马其顿","cnSpell":"MAQIDUN","code":"MK","enName":"MACEDONIA","hot":false},{"cnName":"马里","cnSpell":"MALI","code":"ML","enName":"MALI","hot":false},{"cnName":"缅甸","cnSpell":"MIANDIAN","code":"MM","enName":"MYANMAR","hot":false},{"cnName":"蒙古","cnSpell":"MENGGU","code":"MN","enName":"MONGOLIA","hot":false},{"cnName":"澳门","cnSpell":"AOMEN","code":"MO","enName":"MACAU","hot":true},{"cnName":"塞班岛","cnSpell":"SAIBANDAO","code":"MP","enName":"SAIPAN","hot":false},{"cnName":"马提尼克岛","cnSpell":"MATINIKEDAO","code":"MQ","enName":"MARTINIQUE","hot":false},{"cnName":"毛里塔尼亚","cnSp