-
Notifications
You must be signed in to change notification settings - Fork 16
/
bip39.min.js
1 lines (1 loc) · 266 KB
/
bip39.min.js
1
!function(e){if(typeof exports==="object"&&typeof module!=="undefined")module.exports=e();else if(typeof define==="function"&&define.amd)define([],e);else{var r;typeof window!=="undefined"?(r=window):typeof global!=="undefined"?(r=global):typeof self!=="undefined"?(r=self):(r=this);r.bip39=e()}}(function(){return(function(){function e(r,t,a){function o(i,l){if(!t[i]){if(!r[i]){var s="function"==typeof require&&require;if(!l&&s)return s(i,!0);if(n)return n(i,!0);var u=new Error("Cannot find module '"+i+"'");throw u.code="MODULE_NOT_FOUND",u}var c=t[i]={exports:{}};r[i][0].call(c.exports,function(e){var t=r[i][1][e];return o(t||e)},c,c.exports,e,r,t,a)}return t[i].exports}for(var n="function"==typeof require&&require,i=0;i<a.length;i++)o(a[i]);return o}return e})()({1:[function(e,r,t){"use strict";t.byteLength=c;t.toByteArray=f;t.fromByteArray=g;var a=[],o=[],n=typeof Uint8Array!=='undefined'?Uint8Array:Array,i='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';for(var l=0,s=i.length;l<s;++l)a[l]=i[l],o[i.charCodeAt(l)]=l;o[45]=62;o[95]=63;function u(e){var r=e.length;if(r%4>0){throw new Error('Invalid string. Length must be a multiple of 4')}var t=e.indexOf('=');t===-1&&(t=r);var a=t===r?0:4-t%4;return[t,a]}function c(e){var r=u(e),t=r[0],a=r[1];return(t+a)*3/4-a}function d(e,r,t){return(r+t)*3/4-t}function f(e){var r,t=u(e),a=t[0],i=t[1],l=new n(d(e,a,i)),s=0,c=i>0?a-4:a;for(var f=0;f<c;f+=4)r=o[e.charCodeAt(f)]<<18|o[e.charCodeAt(f+1)]<<12|o[e.charCodeAt(f+2)]<<6|o[e.charCodeAt(f+3)],l[s++]=r>>16&255,l[s++]=r>>8&255,l[s++]=r&255;i===2&&(r=o[e.charCodeAt(f)]<<2|o[e.charCodeAt(f+1)]>>4,l[s++]=r&255);i===1&&(r=o[e.charCodeAt(f)]<<10|o[e.charCodeAt(f+1)]<<4|o[e.charCodeAt(f+2)]>>2,l[s++]=r>>8&255,l[s++]=r&255);return l}function p(e){return a[e>>18&63]+a[e>>12&63]+a[e>>6&63]+a[e&63]}function m(e,r,t){var a,o=[];for(var n=r;n<t;n+=3)a=(e[n]<<16&16711680)+(e[n+1]<<8&65280)+(e[n+2]&255),o.push(p(a));return o.join('')}function g(e){var r,t=e.length,o=t%3,n=[],i=16383;for(var l=0,s=t-o;l<s;l+=i)n.push(m(e,l,l+i>s?s:l+i));o===1?(r=e[t-1],n.push(a[r>>2]+a[r<<4&63]+'==')):o===2&&(r=(e[t-2]<<8)+e[t-1],n.push(a[r>>10]+a[r>>4&63]+a[r<<2&63]+'='));return n.join('')}},{}],2:[function(e,r,t){},{}],3:[function(e,r,t){(function(r){"use strict";var a=e('base64-js'),o=e('ieee754');t.Buffer=r;t.SlowBuffer=h;t.INSPECT_MAX_BYTES=50;var n=2147483647;t.kMaxLength=n;r.TYPED_ARRAY_SUPPORT=i();!r.TYPED_ARRAY_SUPPORT&&typeof console!=='undefined'&&typeof console.error==='function'&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function i(){try{var e=new Uint8Array(1);e.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}};return e.foo()===42}catch(e){return!1}}Object.defineProperty(r.prototype,'parent',{enumerable:!0,get:function(){if(!r.isBuffer(this))return void 0;return this.buffer}});Object.defineProperty(r.prototype,'offset',{enumerable:!0,get:function(){if(!r.isBuffer(this))return void 0;return this.byteOffset}});function l(e){if(e>n){throw new RangeError('The value "'+e+'" is invalid for option "size"')}var t=new Uint8Array(e);t.__proto__=r.prototype;return t}function r(e,r,t){if(typeof e==='number'){if(typeof r==='string'){throw new TypeError('The "string" argument must be of type string. Received type number')}return d(e)}return s(e,r,t)}typeof Symbol!=='undefined'&&Symbol.species!=null&&r[Symbol.species]===r&&Object.defineProperty(r,Symbol.species,{value:null,configurable:!0,enumerable:!1,writable:!1});r.poolSize=8192;function s(e,t,a){if(typeof e==='string'){return f(e,t)}if(ArrayBuffer.isView(e)){return p(e)}if(e==null){throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}if(G(e,ArrayBuffer)||e&&G(e.buffer,ArrayBuffer)){return m(e,t,a)}if(typeof e==='number'){throw new TypeError('The "value" argument must not be of type number. Received type number')}var o=e.valueOf&&e.valueOf();if(o!=null&&o!==e){return r.from(o,t,a)}var n=g(e);if(n)return n;if(typeof Symbol!=='undefined'&&Symbol.toPrimitive!=null&&typeof e[Symbol.toPrimitive]==='function'){return r.from(e[Symbol.toPrimitive]('string'),t,a)}throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}r.from=function(e,r,t){return s(e,r,t)};r.prototype.__proto__=Uint8Array.prototype;r.__proto__=Uint8Array;function u(e){if(typeof e!=='number'){throw new TypeError('"size" argument must be of type number')}else if(e<0){throw new RangeError('The value "'+e+'" is invalid for option "size"')}}function c(e,r,t){u(e);if(e<=0){return l(e)}if(r!==void 0){return typeof t==='string'?l(e).fill(r,t):l(e).fill(r)}return l(e)}r.alloc=function(e,r,t){return c(e,r,t)};function d(e){u(e);return l(e<0?0:b(e)|0)}r.allocUnsafe=function(e){return d(e)};r.allocUnsafeSlow=function(e){return d(e)};function f(e,t){(typeof t!=='string'||t==='')&&(t='utf8');if(!r.isEncoding(t)){throw new TypeError('Unknown encoding: '+t)}var a=v(e,t)|0,o=l(a),n=o.write(e,t);n!==a&&(o=o.slice(0,n));return o}function p(e){var r=e.length<0?0:b(e.length)|0,t=l(r);for(var a=0;a<r;a+=1)t[a]=e[a]&255;return t}function m(e,t,a){if(t<0||e.byteLength<t){throw new RangeError('"offset" is outside of buffer bounds')}if(e.byteLength<t+(a||0)){throw new RangeError('"length" is outside of buffer bounds')}var o;t===void 0&&a===void 0?(o=new Uint8Array(e)):a===void 0?(o=new Uint8Array(e,t)):(o=new Uint8Array(e,t,a));o.__proto__=r.prototype;return o}function g(e){if(r.isBuffer(e)){var t=b(e.length)|0,a=l(t);if(a.length===0){return a}e.copy(a,0,0,t);return a}if(e.length!==void 0){if(typeof e.length!=='number'||Q(e.length)){return l(0)}return p(e)}if(e.type==='Buffer'&&Array.isArray(e.data)){return p(e.data)}}function b(e){if(e>=n){throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+n.toString(16)+' bytes')}return e|0}function h(e){+e!=e&&(e=0);return r.alloc(+e)}r.isBuffer=function(e){return e!=null&&e._isBuffer===!0&&e!==r.prototype};r.compare=function(e,t){G(e,Uint8Array)&&(e=r.from(e,e.offset,e.byteLength));G(t,Uint8Array)&&(t=r.from(t,t.offset,t.byteLength));if(!r.isBuffer(e)||!r.isBuffer(t)){throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array')}if(e===t)return 0;var a=e.length,o=t.length;for(var n=0,i=Math.min(a,o);n<i;++n){if(e[n]!==t[n]){a=e[n];o=t[n];break}}if(a<o)return-1;if(o<a)return 1;return 0};r.isEncoding=function(e){switch(String(e).toLowerCase()){case 'hex':;case 'utf8':;case 'utf-8':;case 'ascii':;case 'latin1':;case 'binary':;case 'base64':;case 'ucs2':;case 'ucs-2':;case 'utf16le':;case 'utf-16le':return!0;default:return!1}};r.concat=function(e,t){if(!Array.isArray(e)){throw new TypeError('"list" argument must be an Array of Buffers')}if(e.length===0){return r.alloc(0)}var a;if(t===void 0){t=0;for(a=0;a<e.length;++a)t+=e[a].length}var o=r.allocUnsafe(t),n=0;for(a=0;a<e.length;++a){var i=e[a];G(i,Uint8Array)&&(i=r.from(i));if(!r.isBuffer(i)){throw new TypeError('"list" argument must be an Array of Buffers')}i.copy(o,n);n+=i.length}return o};function v(e,t){if(r.isBuffer(e)){return e.length}if(ArrayBuffer.isView(e)||G(e,ArrayBuffer)){return e.byteLength}if(typeof e!=='string'){throw new TypeError("The \"string\" argument must be one of type string, Buffer, or ArrayBuffer. Received type "+typeof e)}var a=e.length,o=arguments.length>2&&arguments[2]===!0;if(!o&&a===0)return 0;var n=!1;for(;;){switch(t){case 'ascii':;case 'latin1':;case 'binary':return a;case 'utf8':;case 'utf-8':return K(e).length;case 'ucs2':;case 'ucs-2':;case 'utf16le':;case 'utf-16le':return a*2;case 'hex':return a>>>1;case 'base64':return J(e).length;default:if(n){return o?-1:K(e).length};t=(''+t).toLowerCase();n=!0}}}r.byteLength=v;function _(e,r,t){var a=!1;(r===void 0||r<0)&&(r=0);if(r>this.length){return''}(t===void 0||t>this.length)&&(t=this.length);if(t<=0){return''}t>>>=0;r>>>=0;if(t<=r){return''}e||(e='utf8');while(!0){switch(e){case 'hex':return A(this,r,t);case 'utf8':;case 'utf-8':return L(this,r,t);case 'ascii':return T(this,r,t);case 'latin1':;case 'binary':return M(this,r,t);case 'base64':return E(this,r,t);case 'ucs2':;case 'ucs-2':;case 'utf16le':;case 'utf-16le':return U(this,r,t);default:if(a)throw new TypeError('Unknown encoding: '+e);e=(e+'').toLowerCase();a=!0}}}r.prototype._isBuffer=!0;function y(e,r,t){var a=e[r];e[r]=e[t];e[t]=a}r.prototype.swap16=function(){var e=this.length;if(e%2!==0){throw new RangeError('Buffer size must be a multiple of 16-bits')}for(var r=0;r<e;r+=2)y(this,r,r+1);return this};r.prototype.swap32=function(){var e=this.length;if(e%4!==0){throw new RangeError('Buffer size must be a multiple of 32-bits')}for(var r=0;r<e;r+=4)y(this,r,r+3),y(this,r+1,r+2);return this};r.prototype.swap64=function(){var e=this.length;if(e%8!==0){throw new RangeError('Buffer size must be a multiple of 64-bits')}for(var r=0;r<e;r+=8)y(this,r,r+7),y(this,r+1,r+6),y(this,r+2,r+5),y(this,r+3,r+4);return this};r.prototype.toString=function(){var e=this.length;if(e===0)return'';if(arguments.length===0)return L(this,0,e);return _.apply(this,arguments)};r.prototype.toLocaleString=r.prototype.toString;r.prototype.equals=function(e){if(!r.isBuffer(e))throw new TypeError('Argument must be a Buffer');if(this===e)return!0;return r.compare(this,e)===0};r.prototype.inspect=function(){var e='',r=t.INSPECT_MAX_BYTES;e=this.toString('hex',0,r).replace(/(.{2})/g,'$1 ').trim();this.length>r&&(e+=' ... ');return'<Buffer '+e+'>'};r.prototype.compare=function(e,t,a,o,n){G(e,Uint8Array)&&(e=r.from(e,e.offset,e.byteLength));if(!r.isBuffer(e)){throw new TypeError("The \"target\" argument must be one of type Buffer or Uint8Array. Received type "+typeof e)}t===void 0&&(t=0);a===void 0&&(a=e?e.length:0);o===void 0&&(o=0);n===void 0&&(n=this.length);if(t<0||a>e.length||o<0||n>this.length){throw new RangeError('out of range index')}if(o>=n&&t>=a){return 0}if(o>=n){return-1}if(t>=a){return 1}t>>>=0;a>>>=0;o>>>=0;n>>>=0;if(this===e)return 0;var i=n-o,l=a-t,s=Math.min(i,l),u=this.slice(o,n),c=e.slice(t,a);for(var d=0;d<s;++d){if(u[d]!==c[d]){i=u[d];l=c[d];break}}if(i<l)return-1;if(l<i)return 1;return 0};function w(e,t,a,o,n){if(e.length===0)return-1;typeof a==='string'?(o=a,a=0):a>2147483647?(a=2147483647):a<-2147483648&&(a=-2147483648);a=+a;Q(a)&&(a=n?0:e.length-1);a<0&&(a=e.length+a);if(a>=e.length){if(n)return-1;else a=e.length-1}else if(a<0){if(n)a=0;else return-1}typeof t==='string'&&(t=r.from(t,o));if(r.isBuffer(t)){if(t.length===0){return-1}return x(e,t,a,o,n)}else if(typeof t==='number'){t&=255;if(typeof Uint8Array.prototype.indexOf==='function'){if(n){return Uint8Array.prototype.indexOf.call(e,t,a)}else{return Uint8Array.prototype.lastIndexOf.call(e,t,a)}}return x(e,[t],a,o,n)}throw new TypeError('val must be string, number or Buffer')}function x(e,r,t,a,o){var n=1,i=e.length,l=r.length;if(a!==void 0){a=String(a).toLowerCase();if(a==='ucs2'||a==='ucs-2'||a==='utf16le'||a==='utf-16le'){if(e.length<2||r.length<2){return-1}n=2;i/=2;l/=2;t/=2}}function s(e,r){if(n===1){return e[r]}else{return e.readUInt16BE(r*n)}}var u;if(o){var c=-1;for(u=t;u<i;u++){if(s(e,u)===s(r,c===-1?0:u-c)){c===-1&&(c=u);if(u-c+1===l)return c*n}else c!==-1&&(u-=u-c),c=-1}}else{t+l>i&&(t=i-l);for(u=t;u>=0;u--){var d=!0;for(var f=0;f<l;f++){if(s(e,u+f)!==s(r,f)){d=!1;break}}if(d)return u}}return-1}r.prototype.includes=function(e,r,t){return this.indexOf(e,r,t)!==-1};r.prototype.indexOf=function(e,r,t){return w(this,e,r,t,!0)};r.prototype.lastIndexOf=function(e,r,t){return w(this,e,r,t,!1)};function z(e,r,t,a){t=Number(t)||0;var o=e.length-t;a?(a=Number(a),a>o&&(a=o)):(a=o);var n=r.length;a>n/2&&(a=n/2);for(var i=0;i<a;++i){var l=parseInt(r.substr(i*2,2),16);if(Q(l))return i;e[t+i]=l}return i}function k(e,r,t,a){return X(K(r,e.length-t),e,t,a)}function j(e,r,t,a){return X(Y(r),e,t,a)}function S(e,r,t,a){return j(e,r,t,a)}function B(e,r,t,a){return X(J(r),e,t,a)}function q(e,r,t,a){return X(V(r,e.length-t),e,t,a)}r.prototype.write=function(e,r,t,a){if(r===void 0)a='utf8',t=this.length,r=0;else if(t===void 0&&typeof r==='string')a=r,t=this.length,r=0;else if(isFinite(r))r>>>=0,isFinite(t)?(t>>>=0,a===void 0&&(a='utf8')):(a=t,t=void 0);else{throw new Error('Buffer.write(string, encoding, offset[, length]) is no longer supported')}var o=this.length-r;(t===void 0||t>o)&&(t=o);if(e.length>0&&(t<0||r<0)||r>this.length){throw new RangeError('Attempt to write outside buffer bounds')}a||(a='utf8');var n=!1;for(;;){switch(a){case 'hex':return z(this,e,r,t);case 'utf8':;case 'utf-8':return k(this,e,r,t);case 'ascii':return j(this,e,r,t);case 'latin1':;case 'binary':return S(this,e,r,t);case 'base64':return B(this,e,r,t);case 'ucs2':;case 'ucs-2':;case 'utf16le':;case 'utf-16le':return q(this,e,r,t);default:if(n)throw new TypeError('Unknown encoding: '+a);a=(''+a).toLowerCase();n=!0}}};r.prototype.toJSON=function(){return{type:'Buffer',data:Array.prototype.slice.call(this._arr||this,0)}};function E(e,r,t){if(r===0&&t===e.length){return a.fromByteArray(e)}else{return a.fromByteArray(e.slice(r,t))}}function L(e,r,t){t=Math.min(e.length,t);var a=[],o=r;while(o<t){var n=e[o],i=null,l=n>239?4:n>223?3:n>191?2:1;if(o+l<=t){var s,u,c,d;switch(l){case 1:n<128&&(i=n);break;case 2:s=e[o+1];(s&192)===128&&(d=(n&31)<<6|s&63,d>127&&(i=d));break;case 3:s=e[o+1];u=e[o+2];(s&192)===128&&(u&192)===128&&(d=(n&15)<<12|(s&63)<<6|u&63,d>2047&&(d<55296||d>57343)&&(i=d));break;case 4:s=e[o+1];u=e[o+2];c=e[o+3];(s&192)===128&&(u&192)===128&&(c&192)===128&&(d=(n&15)<<18|(s&63)<<12|(u&63)<<6|c&63,d>65535&&d<1114112&&(i=d))}}i===null?(i=65533,l=1):i>65535&&(i-=65536,a.push(i>>>10&1023|55296),i=56320|i&1023);a.push(i);o+=l}return C(a)}var I=4096;function C(e){var r=e.length;if(r<=I){return String.fromCharCode.apply(String,e)}var t='',a=0;while(a<r)t+=String.fromCharCode.apply(String,e.slice(a,a+=I));return t}function T(e,r,t){var a='';t=Math.min(e.length,t);for(var o=r;o<t;++o)a+=String.fromCharCode(e[o]&127);return a}function M(e,r,t){var a='';t=Math.min(e.length,t);for(var o=r;o<t;++o)a+=String.fromCharCode(e[o]);return a}function A(e,r,t){var a=e.length;(!r||r<0)&&(r=0);(!t||t<0||t>a)&&(t=a);var o='';for(var n=r;n<t;++n)o+=H(e[n]);return o}function U(e,r,t){var a=e.slice(r,t),o='';for(var n=0;n<a.length;n+=2)o+=String.fromCharCode(a[n]+a[n+1]*256);return o}r.prototype.slice=function(e,t){var a=this.length;e=~~e;t=t===void 0?a:~~t;e<0?(e+=a,e<0&&(e=0)):e>a&&(e=a);t<0?(t+=a,t<0&&(t=0)):t>a&&(t=a);t<e&&(t=e);var o=this.subarray(e,t);o.__proto__=r.prototype;return o};function R(e,r,t){if(e%1!==0||e<0)throw new RangeError('offset is not uint');if(e+r>t)throw new RangeError('Trying to access beyond buffer length')}r.prototype.readUIntLE=function(e,r,t){e>>>=0;r>>>=0;t||R(e,r,this.length);var a=this[e],o=1,n=0;while(++n<r&&(o*=256))a+=this[e+n]*o;return a};r.prototype.readUIntBE=function(e,r,t){e>>>=0;r>>>=0;t||R(e,r,this.length);var a=this[e+--r],o=1;while(r>0&&(o*=256))a+=this[e+--r]*o;return a};r.prototype.readUInt8=function(e,r){e>>>=0;r||R(e,1,this.length);return this[e]};r.prototype.readUInt16LE=function(e,r){e>>>=0;r||R(e,2,this.length);return this[e]|this[e+1]<<8};r.prototype.readUInt16BE=function(e,r){e>>>=0;r||R(e,2,this.length);return this[e]<<8|this[e+1]};r.prototype.readUInt32LE=function(e,r){e>>>=0;r||R(e,4,this.length);return(this[e]|this[e+1]<<8|this[e+2]<<16)+this[e+3]*16777216};r.prototype.readUInt32BE=function(e,r){e>>>=0;r||R(e,4,this.length);return this[e]*16777216+(this[e+1]<<16|this[e+2]<<8|this[e+3])};r.prototype.readIntLE=function(e,r,t){e>>>=0;r>>>=0;t||R(e,r,this.length);var a=this[e],o=1,n=0;while(++n<r&&(o*=256))a+=this[e+n]*o;o*=128;a>=o&&(a-=Math.pow(2,8*r));return a};r.prototype.readIntBE=function(e,r,t){e>>>=0;r>>>=0;t||R(e,r,this.length);var a=r,o=1,n=this[e+--a];while(a>0&&(o*=256))n+=this[e+--a]*o;o*=128;n>=o&&(n-=Math.pow(2,8*r));return n};r.prototype.readInt8=function(e,r){e>>>=0;r||R(e,1,this.length);if(!(this[e]&128))return this[e];return(255-this[e]+1)*-1};r.prototype.readInt16LE=function(e,r){e>>>=0;r||R(e,2,this.length);var t=this[e]|this[e+1]<<8;return t&32768?t|4294901760:t};r.prototype.readInt16BE=function(e,r){e>>>=0;r||R(e,2,this.length);var t=this[e+1]|this[e]<<8;return t&32768?t|4294901760:t};r.prototype.readInt32LE=function(e,r){e>>>=0;r||R(e,4,this.length);return this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24};r.prototype.readInt32BE=function(e,r){e>>>=0;r||R(e,4,this.length);return this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]};r.prototype.readFloatLE=function(e,r){e>>>=0;r||R(e,4,this.length);return o.read(this,e,!0,23,4)};r.prototype.readFloatBE=function(e,r){e>>>=0;r||R(e,4,this.length);return o.read(this,e,!1,23,4)};r.prototype.readDoubleLE=function(e,r){e>>>=0;r||R(e,8,this.length);return o.read(this,e,!0,52,8)};r.prototype.readDoubleBE=function(e,r){e>>>=0;r||R(e,8,this.length);return o.read(this,e,!1,52,8)};function O(e,t,a,o,n,i){if(!r.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>n||t<i)throw new RangeError('"value" argument is out of bounds');if(a+o>e.length)throw new RangeError('Index out of range')}r.prototype.writeUIntLE=function(e,r,t,a){e=+e;r>>>=0;t>>>=0;if(!a){var o=Math.pow(2,8*t)-1;O(this,e,r,t,o,0)}var n=1,i=0;this[r]=e&255;while(++i<t&&(n*=256))this[r+i]=e/n&255;return r+t};r.prototype.writeUIntBE=function(e,r,t,a){e=+e;r>>>=0;t>>>=0;if(!a){var o=Math.pow(2,8*t)-1;O(this,e,r,t,o,0)}var n=t-1,i=1;this[r+n]=e&255;while(--n>=0&&(i*=256))this[r+n]=e/i&255;return r+t};r.prototype.writeUInt8=function(e,r,t){e=+e;r>>>=0;t||O(this,e,r,1,255,0);this[r]=e&255;return r+1};r.prototype.writeUInt16LE=function(e,r,t){e=+e;r>>>=0;t||O(this,e,r,2,65535,0);this[r]=e&255;this[r+1]=e>>>8;return r+2};r.prototype.writeUInt16BE=function(e,r,t){e=+e;r>>>=0;t||O(this,e,r,2,65535,0);this[r]=e>>>8;this[r+1]=e&255;return r+2};r.prototype.writeUInt32LE=function(e,r,t){e=+e;r>>>=0;t||O(this,e,r,4,4294967295,0);this[r+3]=e>>>24;this[r+2]=e>>>16;this[r+1]=e>>>8;this[r]=e&255;return r+4};r.prototype.writeUInt32BE=function(e,r,t){e=+e;r>>>=0;t||O(this,e,r,4,4294967295,0);this[r]=e>>>24;this[r+1]=e>>>16;this[r+2]=e>>>8;this[r+3]=e&255;return r+4};r.prototype.writeIntLE=function(e,r,t,a){e=+e;r>>>=0;if(!a){var o=Math.pow(2,8*t-1);O(this,e,r,t,o-1,-o)}var n=0,i=1,l=0;this[r]=e&255;while(++n<t&&(i*=256))e<0&&l===0&&this[r+n-1]!==0&&(l=1),this[r+n]=(e/i>>0)-l&255;return r+t};r.prototype.writeIntBE=function(e,r,t,a){e=+e;r>>>=0;if(!a){var o=Math.pow(2,8*t-1);O(this,e,r,t,o-1,-o)}var n=t-1,i=1,l=0;this[r+n]=e&255;while(--n>=0&&(i*=256))e<0&&l===0&&this[r+n+1]!==0&&(l=1),this[r+n]=(e/i>>0)-l&255;return r+t};r.prototype.writeInt8=function(e,r,t){e=+e;r>>>=0;t||O(this,e,r,1,127,-128);e<0&&(e=255+e+1);this[r]=e&255;return r+1};r.prototype.writeInt16LE=function(e,r,t){e=+e;r>>>=0;t||O(this,e,r,2,32767,-32768);this[r]=e&255;this[r+1]=e>>>8;return r+2};r.prototype.writeInt16BE=function(e,r,t){e=+e;r>>>=0;t||O(this,e,r,2,32767,-32768);this[r]=e>>>8;this[r+1]=e&255;return r+2};r.prototype.writeInt32LE=function(e,r,t){e=+e;r>>>=0;t||O(this,e,r,4,2147483647,-2147483648);this[r]=e&255;this[r+1]=e>>>8;this[r+2]=e>>>16;this[r+3]=e>>>24;return r+4};r.prototype.writeInt32BE=function(e,r,t){e=+e;r>>>=0;t||O(this,e,r,4,2147483647,-2147483648);e<0&&(e=4294967295+e+1);this[r]=e>>>24;this[r+1]=e>>>16;this[r+2]=e>>>8;this[r+3]=e&255;return r+4};function D(e,r,t,a,o,n){if(t+a>e.length)throw new RangeError('Index out of range');if(t<0)throw new RangeError('Index out of range')}function N(e,r,t,a,n){r=+r;t>>>=0;n||D(e,r,t,4,3.4028234663852886e38,-3.4028234663852886e38);o.write(e,r,t,a,23,4);return t+4}r.prototype.writeFloatLE=function(e,r,t){return N(this,e,r,!0,t)};r.prototype.writeFloatBE=function(e,r,t){return N(this,e,r,!1,t)};function P(e,r,t,a,n){r=+r;t>>>=0;n||D(e,r,t,8,1.7976931348623157e308,-1.7976931348623157e308);o.write(e,r,t,a,52,8);return t+8}r.prototype.writeDoubleLE=function(e,r,t){return P(this,e,r,!0,t)};r.prototype.writeDoubleBE=function(e,r,t){return P(this,e,r,!1,t)};r.prototype.copy=function(e,t,a,o){if(!r.isBuffer(e))throw new TypeError('argument should be a Buffer');a||(a=0);!o&&o!==0&&(o=this.length);t>=e.length&&(t=e.length);t||(t=0);o>0&&o<a&&(o=a);if(o===a)return 0;if(e.length===0||this.length===0)return 0;if(t<0){throw new RangeError('targetStart out of bounds')}if(a<0||a>=this.length)throw new RangeError('Index out of range');if(o<0)throw new RangeError('sourceEnd out of bounds');o>this.length&&(o=this.length);e.length-t<o-a&&(o=e.length-t+a);var n=o-a;if(this===e&&typeof Uint8Array.prototype.copyWithin==='function')this.copyWithin(t,a,o);else if(this===e&&a<t&&t<o){for(var i=n-1;i>=0;--i)e[i+t]=this[i+a]}else Uint8Array.prototype.set.call(e,this.subarray(a,o),t);return n};r.prototype.fill=function(e,t,a,o){if(typeof e==='string'){typeof t==='string'?(o=t,t=0,a=this.length):typeof a==='string'&&(o=a,a=this.length);if(o!==void 0&&typeof o!=='string'){throw new TypeError('encoding must be a string')}if(typeof o==='string'&&!r.isEncoding(o)){throw new TypeError('Unknown encoding: '+o)}if(e.length===1){var n=e.charCodeAt(0);(o==='utf8'&&n<128||o==='latin1')&&(e=n)}}else typeof e==='number'&&(e&=255);if(t<0||this.length<t||this.length<a){throw new RangeError('Out of range index')}if(a<=t){return this}t>>>=0;a=a===void 0?this.length:a>>>0;e||(e=0);var i;if(typeof e==='number'){for(i=t;i<a;++i)this[i]=e}else{var l=r.isBuffer(e)?e:r.from(e,o),s=l.length;if(s===0){throw new TypeError('The value "'+e+'" is invalid for argument "value"')}for(i=0;i<a-t;++i)this[i+t]=l[i%s]}return this};var W=/[^+/0-9A-Za-z-_]/g;function F(e){e=e.split('=')[0];e=e.trim().replace(W,'');if(e.length<2)return'';while(e.length%4!==0)e+='=';return e}function H(e){if(e<16)return'0'+e.toString(16);return e.toString(16)}function K(e,r){r=r||1/0;var t,a=e.length,o=null,n=[];for(var i=0;i<a;++i){t=e.charCodeAt(i);if(t>55295&&t<57344){if(!o){if(t>56319){(r-=3)>-1&&n.push(239,191,189);continue}else if(i+1===a){(r-=3)>-1&&n.push(239,191,189);continue}o=t;continue}if(t<56320){(r-=3)>-1&&n.push(239,191,189);o=t;continue}t=(o-55296<<10|t-56320)+65536}else o&&((r-=3)>-1&&n.push(239,191,189));o=null;if(t<128){if((r-=1)<0)break;n.push(t)}else if(t<2048){if((r-=2)<0)break;n.push(t>>6|192,t&63|128)}else if(t<65536){if((r-=3)<0)break;n.push(t>>12|224,t>>6&63|128,t&63|128)}else if(t<1114112){if((r-=4)<0)break;n.push(t>>18|240,t>>12&63|128,t>>6&63|128,t&63|128)}else{throw new Error('Invalid code point')}}return n}function Y(e){var r=[];for(var t=0;t<e.length;++t)r.push(e.charCodeAt(t)&255);return r}function V(e,r){var t,a,o,n=[];for(var i=0;i<e.length;++i){if((r-=2)<0)break;t=e.charCodeAt(i);a=t>>8;o=t%256;n.push(o);n.push(a)}return n}function J(e){return a.toByteArray(F(e))}function X(e,r,t,a){for(var o=0;o<a;++o){if(o+t>=r.length||o>=e.length)break;r[o+t]=e[o]}return o}function G(e,r){return e instanceof r||e!=null&&e.constructor!=null&&e.constructor.name!=null&&e.constructor.name===r.name}function Q(e){return e!==e}}).call(this,e("buffer").Buffer)},{"base64-js":1,"buffer":3,"ieee754":6}],4:[function(e,r,t){(function(e){function r(e){if(Array.isArray){return Array.isArray(e)}return b(e)==='[object Array]'}t.isArray=r;function a(e){return typeof e==='boolean'}t.isBoolean=a;function o(e){return e===null}t.isNull=o;function n(e){return e==null}t.isNullOrUndefined=n;function i(e){return typeof e==='number'}t.isNumber=i;function l(e){return typeof e==='string'}t.isString=l;function s(e){return typeof e==='symbol'}t.isSymbol=s;function u(e){return e===void 0}t.isUndefined=u;function c(e){return b(e)==='[object RegExp]'}t.isRegExp=c;function d(e){return typeof e==='object'&&e!==null}t.isObject=d;function f(e){return b(e)==='[object Date]'}t.isDate=f;function p(e){return b(e)==='[object Error]'||e instanceof Error}t.isError=p;function m(e){return typeof e==='function'}t.isFunction=m;function g(e){return e===null||typeof e==='boolean'||typeof e==='number'||typeof e==='string'||typeof e==='symbol'||typeof e==='undefined'}t.isPrimitive=g;t.isBuffer=e.isBuffer;function b(e){return Object.prototype.toString.call(e)}}).call(this,{"isBuffer":e("../../is-buffer/index.js")})},{"../../is-buffer/index.js":8}],5:[function(e,r,t){var a=Object.create||k,o=Object.keys||j,n=Function.prototype.bind||S;function i(){(!this._events||!Object.prototype.hasOwnProperty.call(this,'_events'))&&(this._events=a(null),this._eventsCount=0);this._maxListeners=this._maxListeners||void 0}r.exports=i;i.EventEmitter=i;i.prototype._events=void 0;i.prototype._maxListeners=void 0;var l=10,s;try{var u={};Object.defineProperty&&Object.defineProperty(u,'x',{value:0});s=u.x===0}catch(e){s=!1};s?Object.defineProperty(i,'defaultMaxListeners',{enumerable:!0,get:function(){return l},set:function(e){if(typeof e!=='number'||e<0||e!==e)throw new TypeError('"defaultMaxListeners" must be a positive number');l=e}}):(i.defaultMaxListeners=l);i.prototype.setMaxListeners=function(e){if(typeof e!=='number'||e<0||isNaN(e))throw new TypeError('"n" argument must be a positive number');this._maxListeners=e;return this};function c(e){if(e._maxListeners===void 0)return i.defaultMaxListeners;return e._maxListeners}i.prototype.getMaxListeners=function(){return c(this)};function d(e,r,t){if(r)e.call(t);else{var a=e.length,o=x(e,a);for(var n=0;n<a;++n)o[n].call(t)}}function f(e,r,t,a){if(r)e.call(t,a);else{var o=e.length,n=x(e,o);for(var i=0;i<o;++i)n[i].call(t,a)}}function p(e,r,t,a,o){if(r)e.call(t,a,o);else{var n=e.length,i=x(e,n);for(var l=0;l<n;++l)i[l].call(t,a,o)}}function m(e,r,t,a,o,n){if(r)e.call(t,a,o,n);else{var i=e.length,l=x(e,i);for(var s=0;s<i;++s)l[s].call(t,a,o,n)}}function g(e,r,t,a){if(r)e.apply(t,a);else{var o=e.length,n=x(e,o);for(var i=0;i<o;++i)n[i].apply(t,a)}}i.prototype.emit=function(e){var r,t,a,o,n,i,l=e==='error';i=this._events;if(i)l=l&&i.error==null;else if(!l)return!1;if(l){arguments.length>1&&(r=arguments[1]);if(r instanceof Error){throw r}else{var s=new Error('Unhandled "error" event. ('+r+')');s.context=r;throw s}return!1}t=i[e];if(!t)return!1;var u=typeof t==='function';a=arguments.length;switch(a){case 1:d(t,u,this);break;case 2:f(t,u,this,arguments[1]);break;case 3:p(t,u,this,arguments[1],arguments[2]);break;case 4:m(t,u,this,arguments[1],arguments[2],arguments[3]);break;default:o=new Array(a-1);for(n=1;n<a;n++)o[n-1]=arguments[n];g(t,u,this,o)}return!0};function b(e,r,t,o){var n,i,l;if(typeof t!=='function')throw new TypeError('"listener" argument must be a function');i=e._events;i?(i.newListener&&(e.emit('newListener',r,t.listener?t.listener:t),i=e._events),l=i[r]):(i=e._events=a(null),e._eventsCount=0);if(!l)l=i[r]=t,++e._eventsCount;else{typeof l==='function'?(l=i[r]=o?[t,l]:[l,t]):(o?l.unshift(t):l.push(t));if(!l.warned){n=c(e);if(n&&n>0&&l.length>n){l.warned=!0;var s=new Error('Possible EventEmitter memory leak detected. '+l.length+' "'+String(r)+'" listeners '+'added. Use emitter.setMaxListeners() to '+'increase limit.');s.name='MaxListenersExceededWarning';s.emitter=e;s.type=r;s.count=l.length;typeof console==='object'&&console.warn&&console.warn('%s: %s',s.name,s.message)}}}return e}i.prototype.addListener=function(e,r){return b(this,e,r,!1)};i.prototype.on=i.prototype.addListener;i.prototype.prependListener=function(e,r){return b(this,e,r,!0)};function h(){if(!this.fired){this.target.removeListener(this.type,this.wrapFn);this.fired=!0;switch(arguments.length){case 0:return this.listener.call(this.target);case 1:return this.listener.call(this.target,arguments[0]);case 2:return this.listener.call(this.target,arguments[0],arguments[1]);case 3:return this.listener.call(this.target,arguments[0],arguments[1],arguments[2]);default:var r=new Array(arguments.length);for(var e=0;e<r.length;++e)r[e]=arguments[e];this.listener.apply(this.target,r)}}}function v(e,r,t){var a={fired:!1,wrapFn:void 0,target:e,type:r,listener:t},o=n.call(h,a);o.listener=t;a.wrapFn=o;return o}i.prototype.once=function(e,r){if(typeof r!=='function')throw new TypeError('"listener" argument must be a function');this.on(e,v(this,e,r));return this};i.prototype.prependOnceListener=function(e,r){if(typeof r!=='function')throw new TypeError('"listener" argument must be a function');this.prependListener(e,v(this,e,r));return this};i.prototype.removeListener=function(e,r){var t,o,n,i,l;if(typeof r!=='function')throw new TypeError('"listener" argument must be a function');o=this._events;if(!o)return this;t=o[e];if(!t)return this;if(t===r||t.listener===r)--this._eventsCount===0?(this._events=a(null)):(delete o[e],o.removeListener&&this.emit('removeListener',e,t.listener||r));else if(typeof t!=='function'){n=-1;for(i=t.length-1;i>=0;i--){if(t[i]===r||t[i].listener===r){l=t[i].listener;n=i;break}}if(n<0)return this;n===0?t.shift():w(t,n);t.length===1&&(o[e]=t[0]);o.removeListener&&this.emit('removeListener',e,l||r)}return this};i.prototype.removeAllListeners=function(e){var r,t,n;t=this._events;if(!t)return this;if(!t.removeListener){arguments.length===0?(this._events=a(null),this._eventsCount=0):t[e]&&(--this._eventsCount===0?(this._events=a(null)):delete t[e]);return this}if(arguments.length===0){var i=o(t),l;for(n=0;n<i.length;++n){l=i[n];if(l==='removeListener')continue;this.removeAllListeners(l)}this.removeAllListeners('removeListener');this._events=a(null);this._eventsCount=0;return this}r=t[e];if(typeof r==='function')this.removeListener(e,r);else if(r){for(n=r.length-1;n>=0;n--)this.removeListener(e,r[n])}return this};function _(e,r,t){var a=e._events;if(!a)return[];var o=a[r];if(!o)return[];if(typeof o==='function')return t?[o.listener||o]:[o];return t?z(o):x(o,o.length)}i.prototype.listeners=function(e){return _(this,e,!0)};i.prototype.rawListeners=function(e){return _(this,e,!1)};i.listenerCount=function(e,r){if(typeof e.listenerCount==='function'){return e.listenerCount(r)}else{return y.call(e,r)}};i.prototype.listenerCount=y;function y(e){var r=this._events;if(r){var t=r[e];if(typeof t==='function'){return 1}else if(t){return t.length}}return 0}i.prototype.eventNames=function(){return this._eventsCount>0?Reflect.ownKeys(this._events):[]};function w(e,r){for(var t=r,a=t+1,o=e.length;a<o;t+=1, a+=1)e[t]=e[a];e.pop()}function x(e,r){var t=new Array(r);for(var a=0;a<r;++a)t[a]=e[a];return t}function z(e){var r=new Array(e.length);for(var t=0;t<r.length;++t)r[t]=e[t].listener||e[t];return r}function k(e){var r=function(){};r.prototype=e;return new r}function j(e){var r=[];for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&r.push(t);return t}function S(e){var r=this;return function(){return r.apply(e,arguments)}}},{}],6:[function(e,r,t){t.read=function(e,r,t,a,o){var n,i,l=o*8-a-1,s=(1<<l)-1,u=s>>1,c=-7,d=t?o-1:0,f=t?-1:1,p=e[r+d];d+=f;n=p&(1<<-c)-1;p>>=-c;c+=l;for(;c>0;n=n*256+e[r+d], d+=f, c-=8);;i=n&(1<<-c)-1;n>>=-c;c+=a;for(;c>0;i=i*256+e[r+d], d+=f, c-=8);;if(n===0)n=1-u;else if(n===s){return i?NaN:(p?-1:1)*1/0}else i+=Math.pow(2,a),n-=u;return(p?-1:1)*i*Math.pow(2,n-a)};t.write=function(e,r,t,a,o,n){var i,l,s,u=n*8-o-1,c=(1<<u)-1,d=c>>1,f=o===23?Math.pow(2,-24)-Math.pow(2,-77):0,p=a?0:n-1,m=a?1:-1,g=r<0||r===0&&1/r<0?1:0;r=Math.abs(r);isNaN(r)||r===1/0?(l=isNaN(r)?1:0,i=c):(i=Math.floor(Math.log(r)/Math.LN2),r*(s=Math.pow(2,-i))<1&&(i--,s*=2),i+d>=1?(r+=f/s):(r+=f*Math.pow(2,1-d)),r*s>=2&&(i++,s/=2),i+d>=c?(l=0,i=c):i+d>=1?(l=(r*s-1)*Math.pow(2,o),i+=d):(l=r*Math.pow(2,d-1)*Math.pow(2,o),i=0));for(;o>=8;e[t+p]=l&255, p+=m, l/=256, o-=8);;i=i<<o|l;u+=o;for(;u>0;e[t+p]=i&255, p+=m, i/=256, u-=8);;e[t+p-m]|=g*128}},{}],7:[function(e,r,t){typeof Object.create==='function'?(r.exports=function(e,r){e.super_=r;e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}):(r.exports=function(e,r){e.super_=r;var t=function(){};t.prototype=r.prototype;e.prototype=new t;e.prototype.constructor=e})},{}],8:[function(e,r,t){r.exports=function(e){return e!=null&&(a(e)||o(e)||!!e._isBuffer)};function a(e){return!!e.constructor&&typeof e.constructor.isBuffer==='function'&&e.constructor.isBuffer(e)}function o(e){return typeof e.readFloatLE==='function'&&typeof e.slice==='function'&&a(e.slice(0,0))}},{}],9:[function(e,r,t){var a={}.toString;r.exports=Array.isArray||function(e){return a.call(e)=='[object Array]'}},{}],10:[function(e,r,t){(function(e){"use strict";!e.version||e.version.indexOf('v0.')===0||e.version.indexOf('v1.')===0&&e.version.indexOf('v1.8.')!==0?(r.exports={nextTick:t}):(r.exports=e);function t(r,t,a,o){if(typeof r!=='function'){throw new TypeError('"callback" argument must be a function')}var n=arguments.length,i,l;switch(n){case 0:;case 1:return e.nextTick(r);case 2:return e.nextTick(function(){r.call(null,t)});case 3:return e.nextTick(function(){r.call(null,t,a)});case 4:return e.nextTick(function(){r.call(null,t,a,o)});default:i=new Array(n-1);l=0;while(l<i.length)i[l++]=arguments[l];return e.nextTick(function(){r.apply(null,i)})}}}).call(this,e('_process'))},{"_process":11}],11:[function(e,r,t){var a=r.exports={},o,n;function i(){throw new Error('setTimeout has not been defined')}function l(){throw new Error('clearTimeout has not been defined')}!function(){try{typeof setTimeout==='function'?(o=setTimeout):(o=i)}catch(e){o=i};try{typeof clearTimeout==='function'?(n=clearTimeout):(n=l)}catch(e){n=l}}();function s(e){if(o===setTimeout){return setTimeout(e,0)}if((o===i||!o)&&setTimeout){o=setTimeout;return setTimeout(e,0)}try{return o(e,0)}catch(r){try{return o.call(null,e,0)}catch(r){return o.call(this,e,0)}}}function u(e){if(n===clearTimeout){return clearTimeout(e)}if((n===l||!n)&&clearTimeout){n=clearTimeout;return clearTimeout(e)}try{return n(e)}catch(r){try{return n.call(null,e)}catch(r){return n.call(this,e)}}}var c=[],d=!1,f,p=-1;function m(){if(!d||!f){return}d=!1;f.length?(c=f.concat(c)):(p=-1);c.length&&g()}function g(){if(d){return}var e=s(m);d=!0;var r=c.length;while(r){f=c;c=[];while(++p<r)f&&f[p].run();p=-1;r=c.length}f=null;d=!1;u(e)}a.nextTick=function(e){var r=new Array(arguments.length-1);if(arguments.length>1){for(var t=1;t<arguments.length;t++)r[t-1]=arguments[t]}c.push(new b(e,r));c.length===1&&!d&&s(g)};function b(e,r){this.fun=e;this.array=r}b.prototype.run=function(){this.fun.apply(null,this.array)};a.title='browser';a.browser=!0;a.env={};a.argv=[];a.version='';a.versions={};function h(){}a.on=h;a.addListener=h;a.once=h;a.off=h;a.removeListener=h;a.removeAllListeners=h;a.emit=h;a.prependListener=h;a.prependOnceListener=h;a.listeners=function(e){return[]};a.binding=function(e){throw new Error('process.binding is not supported')};a.cwd=function(){return'/'};a.chdir=function(e){throw new Error('process.chdir is not supported')};a.umask=function(){return 0}},{}],12:[function(e,r,t){r.exports=e('./lib/_stream_duplex.js')},{"./lib/_stream_duplex.js":13}],13:[function(e,r,t){"use strict";var a=e('process-nextick-args'),o=Object.keys||function(e){var r=[];for(var t in e)r.push(t);return r};r.exports=d;var n=e('core-util-is');n.inherits=e('inherits');var i=e('./_stream_readable'),l=e('./_stream_writable');n.inherits(d,i);function d(e){if(!(this instanceof d))return new d(e);i.call(this,e);l.call(this,e);e&&e.readable===!1&&(this.readable=!1);e&&e.writable===!1&&(this.writable=!1);this.allowHalfOpen=!0;e&&e.allowHalfOpen===!1&&(this.allowHalfOpen=!1);this.once('end',f)}Object.defineProperty(d.prototype,'writableHighWaterMark',{enumerable:!1,get:function(){return this._writableState.highWaterMark}});function f(){if(this.allowHalfOpen||this._writableState.ended)return;a.nextTick(p,this)}function p(e){e.end()}Object.defineProperty(d.prototype,'destroyed',{get:function(){if(this._readableState===void 0||this._writableState===void 0){return!1}return this._readableState.destroyed&&this._writableState.destroyed},set:function(e){if(this._readableState===void 0||this._writableState===void 0){return}this._readableState.destroyed=e;this._writableState.destroyed=e}});d.prototype._destroy=function(e,r){this.push(null);this.end();a.nextTick(r,e)}},{"./_stream_readable":15,"./_stream_writable":17,"core-util-is":4,"inherits":7,"process-nextick-args":10}],14:[function(e,r,t){"use strict";r.exports=n;var a=e('./_stream_transform'),o=e('core-util-is');o.inherits=e('inherits');o.inherits(n,a);function n(e){if(!(this instanceof n))return new n(e);a.call(this,e)}n.prototype._transform=function(e,r,t){t(null,e)}},{"./_stream_transform":16,"core-util-is":4,"inherits":7}],15:[function(e,r,t){(function(t,a){"use strict";var o=e('process-nextick-args');r.exports=x;var n=e('isarray'),i;x.ReadableState=w;e('events').EventEmitter;var l=function(e,r){return e.listeners(r).length},s=e('./internal/streams/stream'),u=e('safe-buffer').Buffer,c=a.Uint8Array||function(){};function d(e){return u.from(e)}function f(e){return u.isBuffer(e)||e instanceof c}var p=e('core-util-is');p.inherits=e('inherits');var m=e('util'),g=void 0;m&&m.debuglog?(g=m.debuglog('stream')):(g=function(){});var b=e('./internal/streams/BufferList'),h=e('./internal/streams/destroy'),v;p.inherits(x,s);var _=['error','close','destroy','pause','resume'];function y(e,r,t){if(typeof e.prependListener==='function')return e.prependListener(r,t);!e._events||!e._events[r]?e.on(r,t):n(e._events[r])?e._events[r].unshift(t):(e._events[r]=[t,e._events[r]])}function w(r,t){i=i||e('./_stream_duplex');r=r||{};var a=t instanceof i;this.objectMode=!!r.objectMode;a&&(this.objectMode=this.objectMode||!!r.readableObjectMode);var o=r.highWaterMark,n=r.readableHighWaterMark,l=this.objectMode?16:16384;o||o===0?(this.highWaterMark=o):a&&(n||n===0)?(this.highWaterMark=n):(this.highWaterMark=l);this.highWaterMark=Math.floor(this.highWaterMark);this.buffer=new b;this.length=0;this.pipes=null;this.pipesCount=0;this.flowing=null;this.ended=!1;this.endEmitted=!1;this.reading=!1;this.sync=!0;this.needReadable=!1;this.emittedReadable=!1;this.readableListening=!1;this.resumeScheduled=!1;this.destroyed=!1;this.defaultEncoding=r.defaultEncoding||'utf8';this.awaitDrain=0;this.readingMore=!1;this.decoder=null;this.encoding=null;r.encoding&&(v||(v=e('string_decoder/').StringDecoder),this.decoder=new v(r.encoding),this.encoding=r.encoding)}function x(r){i=i||e('./_stream_duplex');if(!(this instanceof x))return new x(r);this._readableState=new w(r,this);this.readable=!0;r&&(typeof r.read==='function'&&(this._read=r.read),typeof r.destroy==='function'&&(this._destroy=r.destroy));s.call(this)}Object.defineProperty(x.prototype,'destroyed',{get:function(){if(this._readableState===void 0){return!1}return this._readableState.destroyed},set:function(e){if(!this._readableState){return}this._readableState.destroyed=e}});x.prototype.destroy=h.destroy;x.prototype._undestroy=h.undestroy;x.prototype._destroy=function(e,r){this.push(null);r(e)};x.prototype.push=function(e,r){var t=this._readableState,a;t.objectMode?(a=!0):(typeof e==='string'&&(r=r||t.defaultEncoding,r!==t.encoding&&(e=u.from(e,r),r=''),a=!0));return z(this,e,r,!1,a)};x.prototype.unshift=function(e){return z(this,e,null,!0,!1)};function z(e,r,t,a,o){var n=e._readableState;if(r===null)n.reading=!1,L(e,n);else{var i;o||(i=j(n,r));i?e.emit('error',i):n.objectMode||r&&r.length>0?(typeof r!=='string'&&!n.objectMode&&Object.getPrototypeOf(r)!==u.prototype&&(r=d(r)),a?(n.endEmitted?e.emit('error',new Error('stream.unshift() after end event')):k(e,n,r,!0)):n.ended?e.emit('error',new Error('stream.push() after EOF')):(n.reading=!1,n.decoder&&!t?(r=n.decoder.write(r),n.objectMode||r.length!==0?k(e,n,r,!1):T(e,n)):k(e,n,r,!1))):a||(n.reading=!1)}return S(n)}function k(e,r,t,a){r.flowing&&r.length===0&&!r.sync?(e.emit('data',t),e.read(0)):(r.length+=r.objectMode?1:t.length,a?r.buffer.unshift(t):r.buffer.push(t),r.needReadable&&I(e));T(e,r)}function j(e,r){var t;!f(r)&&typeof r!=='string'&&r!==void 0&&!e.objectMode&&(t=new TypeError('Invalid non-string/buffer chunk'));return t}function S(e){return!e.ended&&(e.needReadable||e.length<e.highWaterMark||e.length===0)}x.prototype.isPaused=function(){return this._readableState.flowing===!1};x.prototype.setEncoding=function(r){v||(v=e('string_decoder/').StringDecoder);this._readableState.decoder=new v(r);this._readableState.encoding=r;return this};var B=8388608;function q(e){e>=B?(e=B):(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++);return e}function E(e,r){if(e<=0||r.length===0&&r.ended)return 0;if(r.objectMode)return 1;if(e!==e){if(r.flowing&&r.length)return r.buffer.head.data.length;else return r.length}e>r.highWaterMark&&(r.highWaterMark=q(e));if(e<=r.length)return e;if(!r.ended){r.needReadable=!0;return 0}return r.length}x.prototype.read=function(e){g('read',e);e=parseInt(e,10);var r=this._readableState,t=e;e!==0&&(r.emittedReadable=!1);if(e===0&&r.needReadable&&(r.length>=r.highWaterMark||r.ended)){g('read: emitReadable',r.length,r.ended);r.length===0&&r.ended?H(this):I(this);return null}e=E(e,r);if(e===0&&r.ended){r.length===0&&H(this);return null}var a=r.needReadable;g('need readable',a);(r.length===0||r.length-e<r.highWaterMark)&&(a=!0,g('length less than watermark',a));r.ended||r.reading?(a=!1,g('reading or ended',a)):a&&(g('do read'),r.reading=!0,r.sync=!0,r.length===0&&(r.needReadable=!0),this._read(r.highWaterMark),r.sync=!1,r.reading||(e=E(t,r)));var o;e>0?(o=N(e,r)):(o=null);o===null?(r.needReadable=!0,e=0):(r.length-=e);r.length===0&&(r.ended||(r.needReadable=!0),t!==e&&r.ended&&H(this));o!==null&&this.emit('data',o);return o};function L(e,r){if(r.ended)return;if(r.decoder){var t=r.decoder.end();t&&t.length&&(r.buffer.push(t),r.length+=r.objectMode?1:t.length)}r.ended=!0;I(e)}function I(e){var r=e._readableState;r.needReadable=!1;r.emittedReadable||(g('emitReadable',r.flowing),r.emittedReadable=!0,r.sync?o.nextTick(C,e):C(e))}function C(e){g('emit readable');e.emit('readable');D(e)}function T(e,r){r.readingMore||(r.readingMore=!0,o.nextTick(M,e,r))}function M(e,r){var t=r.length;while(!r.reading&&!r.flowing&&!r.ended&&r.length<r.highWaterMark){g('maybeReadMore read 0');e.read(0);if(t===r.length)break;else t=r.length}r.readingMore=!1}x.prototype._read=function(e){this.emit('error',new Error('_read() is not implemented'))};x.prototype.pipe=function(e,r){var a=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=e;break;case 1:n.pipes=[n.pipes,e];break;default:n.pipes.push(e);break}n.pipesCount+=1;g('pipe count=%d opts=%j',n.pipesCount,r);var i=(!r||r.end!==!1)&&e!==t.stdout&&e!==t.stderr,s=i?c:w;n.endEmitted?o.nextTick(s):a.once('end',s);e.on('unpipe',u);function u(e,r){g('onunpipe');e===a&&(r&&r.hasUnpiped===!1&&(r.hasUnpiped=!0,p()))}function c(){g('onend');e.end()}var d=A(a);e.on('drain',d);var f=!1;function p(){g('cleanup');e.removeListener('close',v);e.removeListener('finish',_);e.removeListener('drain',d);e.removeListener('error',h);e.removeListener('unpipe',u);a.removeListener('end',c);a.removeListener('end',w);a.removeListener('data',b);f=!0;n.awaitDrain&&(!e._writableState||e._writableState.needDrain)&&d()}var m=!1;a.on('data',b);function b(r){g('ondata');m=!1;var t=e.write(r);!1===t&&!m&&((n.pipesCount===1&&n.pipes===e||n.pipesCount>1&&Y(n.pipes,e)!==-1)&&!f&&(g('false write response, pause',a._readableState.awaitDrain),a._readableState.awaitDrain++,m=!0),a.pause())}function h(r){g('onerror',r);w();e.removeListener('error',h);l(e,'error')===0&&e.emit('error',r)}y(e,'error',h);function v(){e.removeListener('finish',_);w()}e.once('close',v);function _(){g('onfinish');e.removeListener('close',v);w()}e.once('finish',_);function w(){g('unpipe');a.unpipe(e)}e.emit('pipe',a);n.flowing||(g('pipe resume'),a.resume());return e};function A(e){return function(){var r=e._readableState;g('pipeOnDrain',r.awaitDrain);r.awaitDrain&&r.awaitDrain--;r.awaitDrain===0&&l(e,'data')&&(r.flowing=!0,D(e))}}x.prototype.unpipe=function(e){var r=this._readableState,t={hasUnpiped:!1};if(r.pipesCount===0)return this;if(r.pipesCount===1){if(e&&e!==r.pipes)return this;e||(e=r.pipes);r.pipes=null;r.pipesCount=0;r.flowing=!1;e&&e.emit('unpipe',this,t);return this}if(!e){var a=r.pipes,o=r.pipesCount;r.pipes=null;r.pipesCount=0;r.flowing=!1;for(var n=0;n<o;n++)a[n].emit('unpipe',this,t);return this}var i=Y(r.pipes,e);if(i===-1)return this;r.pipes.splice(i,1);r.pipesCount-=1;r.pipesCount===1&&(r.pipes=r.pipes[0]);e.emit('unpipe',this,t);return this};x.prototype.on=function(e,r){var t=s.prototype.on.call(this,e,r);if(e==='data')this._readableState.flowing!==!1&&this.resume();else if(e==='readable'){var a=this._readableState;!a.endEmitted&&!a.readableListening&&(a.readableListening=a.needReadable=!0,a.emittedReadable=!1,a.reading?a.length&&I(this):o.nextTick(U,this))}return t};x.prototype.addListener=x.prototype.on;function U(e){g('readable nexttick read 0');e.read(0)}x.prototype.resume=function(){var e=this._readableState;e.flowing||(g('resume'),e.flowing=!0,R(this,e));return this};function R(e,r){r.resumeScheduled||(r.resumeScheduled=!0,o.nextTick(O,e,r))}function O(e,r){r.reading||(g('resume read 0'),e.read(0));r.resumeScheduled=!1;r.awaitDrain=0;e.emit('resume');D(e);r.flowing&&!r.reading&&e.read(0)}x.prototype.pause=function(){g('call pause flowing=%j',this._readableState.flowing);!1!==this._readableState.flowing&&(g('pause'),this._readableState.flowing=!1,this.emit('pause'));return this};function D(e){var r=e._readableState;g('flow',r.flowing);while(r.flowing&&e.read()!==null);}x.prototype.wrap=function(e){var r=this,t=this._readableState,a=!1;e.on('end',function(){g('wrapped end');if(t.decoder&&!t.ended){var e=t.decoder.end();e&&e.length&&r.push(e)}r.push(null)});e.on('data',function(o){g('wrapped data');t.decoder&&(o=t.decoder.write(o));if(t.objectMode&&(o===null||o===void 0))return;else if(!t.objectMode&&(!o||!o.length))return;var n=r.push(o);n||(a=!0,e.pause())});for(var o in e)this[o]===void 0&&typeof e[o]==='function'&&(this[o]=function(r){return function(){return e[r].apply(e,arguments)}}(o));for(var n=0;n<_.length;n++)e.on(_[n],this.emit.bind(this,_[n]));this._read=function(r){g('wrapped _read',r);a&&(a=!1,e.resume())};return this};Object.defineProperty(x.prototype,'readableHighWaterMark',{enumerable:!1,get:function(){return this._readableState.highWaterMark}});x._fromList=N;function N(e,r){if(r.length===0)return null;var t;r.objectMode?(t=r.buffer.shift()):!e||e>=r.length?(r.decoder?(t=r.buffer.join('')):r.buffer.length===1?(t=r.buffer.head.data):(t=r.buffer.concat(r.length)),r.buffer.clear()):(t=P(e,r.buffer,r.decoder));return t}function P(e,r,t){var a;e<r.head.data.length?(a=r.head.data.slice(0,e),r.head.data=r.head.data.slice(e)):e===r.head.data.length?(a=r.shift()):(a=t?W(e,r):F(e,r));return a}function W(e,r){var t=r.head,a=1,o=t.data;e-=o.length;while(t=t.next){var n=t.data,i=e>n.length?n.length:e;i===n.length?(o+=n):(o+=n.slice(0,e));e-=i;if(e===0){i===n.length?(++a,t.next?(r.head=t.next):(r.head=r.tail=null)):(r.head=t,t.data=n.slice(i));break}++a}r.length-=a;return o}function F(e,r){var t=u.allocUnsafe(e),a=r.head,o=1;a.data.copy(t);e-=a.data.length;while(a=a.next){var n=a.data,i=e>n.length?n.length:e;n.copy(t,t.length-e,0,i);e-=i;if(e===0){i===n.length?(++o,a.next?(r.head=a.next):(r.head=r.tail=null)):(r.head=a,a.data=n.slice(i));break}++o}r.length-=o;return t}function H(e){var r=e._readableState;if(r.length>0)throw new Error('"endReadable()" called on non-empty stream');r.endEmitted||(r.ended=!0,o.nextTick(K,r,e))}function K(e,r){!e.endEmitted&&e.length===0&&(e.endEmitted=!0,r.readable=!1,r.emit('end'))}function Y(e,r){for(var t=0,a=e.length;t<a;t++){if(e[t]===r)return t}return-1}}).call(this,e('_process'),typeof global!=="undefined"?global:typeof self!=="undefined"?self:typeof window!=="undefined"?window:{})},{"./_stream_duplex":13,"./internal/streams/BufferList":18,"./internal/streams/destroy":19,"./internal/streams/stream":20,"_process":11,"core-util-is":4,"events":5,"inherits":7,"isarray":9,"process-nextick-args":10,"safe-buffer":26,"string_decoder/":21,"util":2}],16:[function(e,r,t){"use strict";r.exports=i;var a=e('./_stream_duplex'),o=e('core-util-is');o.inherits=e('inherits');o.inherits(i,a);function n(e,r){var t=this._transformState;t.transforming=!1;var a=t.writecb;if(!a){return this.emit('error',new Error('write callback called multiple times'))}t.writechunk=null;t.writecb=null;r!=null&&this.push(r);a(e);var o=this._readableState;o.reading=!1;(o.needReadable||o.length<o.highWaterMark)&&this._read(o.highWaterMark)}function i(e){if(!(this instanceof i))return new i(e);a.call(this,e);this._transformState={afterTransform:n.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null};this._readableState.needReadable=!0;this._readableState.sync=!1;e&&(typeof e.transform==='function'&&(this._transform=e.transform),typeof e.flush==='function'&&(this._flush=e.flush));this.on('prefinish',l)}function l(){var e=this;typeof this._flush==='function'?this._flush(function(r,t){s(e,r,t)}):s(this,null,null)}i.prototype.push=function(e,r){this._transformState.needTransform=!1;return a.prototype.push.call(this,e,r)};i.prototype._transform=function(e,r,t){throw new Error('_transform() is not implemented')};i.prototype._write=function(e,r,t){var a=this._transformState;a.writecb=t;a.writechunk=e;a.writeencoding=r;if(!a.transforming){var o=this._readableState;(a.needTransform||o.needReadable||o.length<o.highWaterMark)&&this._read(o.highWaterMark)}};i.prototype._read=function(e){var r=this._transformState;r.writechunk!==null&&r.writecb&&!r.transforming?(r.transforming=!0,this._transform(r.writechunk,r.writeencoding,r.afterTransform)):(r.needTransform=!0)};i.prototype._destroy=function(e,r){var t=this;a.prototype._destroy.call(this,e,function(e){r(e);t.emit('close')})};function s(e,r,t){if(r)return e.emit('error',r);t!=null&&e.push(t);if(e._writableState.length)throw new Error('Calling transform done when ws.length != 0');if(e._transformState.transforming)throw new Error('Calling transform done when still transforming');return e.push(null)}},{"./_stream_duplex":13,"core-util-is":4,"inherits":7}],17:[function(e,r,t){(function(t,a,o){"use strict";var n=e('process-nextick-args');r.exports=y;function i(e){var r=this;this.next=null;this.entry=null;this.finish=function(){R(r,e)}}var l=!t.browser&&['v0.10','v0.9.'].indexOf(t.version.slice(0,5))>-1?o:n.nextTick,s;y.WritableState=v;var u=e('core-util-is');u.inherits=e('inherits');var c={deprecate:e('util-deprecate')},d=e('./internal/streams/stream'),f=e('safe-buffer').Buffer,p=a.Uint8Array||function(){};function m(e){return f.from(e)}function g(e){return f.isBuffer(e)||e instanceof p}var b=e('./internal/streams/destroy');u.inherits(y,d);function h(){}function v(r,t){s=s||e('./_stream_duplex');r=r||{};var a=t instanceof s;this.objectMode=!!r.objectMode;a&&(this.objectMode=this.objectMode||!!r.writableObjectMode);var o=r.highWaterMark,n=r.writableHighWaterMark,l=this.objectMode?16:16384;o||o===0?(this.highWaterMark=o):a&&(n||n===0)?(this.highWaterMark=n):(this.highWaterMark=l);this.highWaterMark=Math.floor(this.highWaterMark);this.finalCalled=!1;this.needDrain=!1;this.ending=!1;this.ended=!1;this.finished=!1;this.destroyed=!1;var u=r.decodeStrings===!1;this.decodeStrings=!u;this.defaultEncoding=r.defaultEncoding||'utf8';this.length=0;this.writing=!1;this.corked=0;this.sync=!0;this.bufferProcessing=!1;this.onwrite=function(e){q(t,e)};this.writecb=null;this.writelen=0;this.bufferedRequest=null;this.lastBufferedRequest=null;this.pendingcb=0;this.prefinished=!1;this.errorEmitted=!1;this.bufferedRequestCount=0;this.corkedRequestsFree=new i(this)}v.prototype.getBuffer=function(){var e=this.bufferedRequest,r=[];while(e)r.push(e),e=e.next;return r};!function(){try{Object.defineProperty(v.prototype,'buffer',{get:c.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.",'DEP0003')})}catch(e){}}();var _;typeof Symbol==='function'&&Symbol.hasInstance&&typeof Function.prototype[Symbol.hasInstance]==='function'?(_=Function.prototype[Symbol.hasInstance],Object.defineProperty(y,Symbol.hasInstance,{value:function(e){if(_.call(this,e))return!0;if(this!==y)return!1;return e&&e._writableState instanceof v}})):(_=function(e){return e instanceof this});function y(r){s=s||e('./_stream_duplex');if(!_.call(y,this)&&!(this instanceof s)){return new y(r)}this._writableState=new v(r,this);this.writable=!0;r&&(typeof r.write==='function'&&(this._write=r.write),typeof r.writev==='function'&&(this._writev=r.writev),typeof r.destroy==='function'&&(this._destroy=r.destroy),typeof r.final==='function'&&(this._final=r.final));d.call(this)}y.prototype.pipe=function(){this.emit('error',new Error('Cannot pipe, not readable'))};function w(e,r){var t=new Error('write after end');e.emit('error',t);n.nextTick(r,t)}function x(e,r,t,a){var o=!0,i=!1;t===null?(i=new TypeError('May not write null values to stream')):typeof t!=='string'&&t!==void 0&&!r.objectMode&&(i=new TypeError('Invalid non-string/buffer chunk'));i&&(e.emit('error',i),n.nextTick(a,i),o=!1);return o}y.prototype.write=function(e,r,t){var a=this._writableState,o=!1,n=!a.objectMode&&g(e);n&&!f.isBuffer(e)&&(e=m(e));typeof r==='function'&&(t=r,r=null);n?(r='buffer'):r||(r=a.defaultEncoding);typeof t!=='function'&&(t=h);a.ended?w(this,t):(n||x(this,a,e,t))&&(a.pendingcb++,o=k(this,a,n,e,r,t));return o};y.prototype.cork=function(){var e=this._writableState;e.corked++};y.prototype.uncork=function(){var e=this._writableState;e.corked&&(e.corked--,!e.writing&&!e.corked&&!e.finished&&!e.bufferProcessing&&e.bufferedRequest&&I(this,e))};y.prototype.setDefaultEncoding=function(e){typeof e==='string'&&(e=e.toLowerCase());if(!(['hex','utf8','utf-8','ascii','binary','base64','ucs2','ucs-2','utf16le','utf-16le','raw'].indexOf((e+'').toLowerCase())>-1))throw new TypeError('Unknown encoding: '+e);this._writableState.defaultEncoding=e;return this};function z(e,r,t){!e.objectMode&&e.decodeStrings!==!1&&typeof r==='string'&&(r=f.from(r,t));return r}Object.defineProperty(y.prototype,'writableHighWaterMark',{enumerable:!1,get:function(){return this._writableState.highWaterMark}});function k(e,r,t,a,o,n){if(!t){var i=z(r,a,o);a!==i&&(t=!0,o='buffer',a=i)}var l=r.objectMode?1:a.length;r.length+=l;var s=r.length<r.highWaterMark;s||(r.needDrain=!0);if(r.writing||r.corked){var u=r.lastBufferedRequest;r.lastBufferedRequest={chunk:a,encoding:o,isBuf:t,callback:n,next:null};u?(u.next=r.lastBufferedRequest):(r.bufferedRequest=r.lastBufferedRequest);r.bufferedRequestCount+=1}else j(e,r,!1,l,a,o,n);return s}function j(e,r,t,a,o,n,i){r.writelen=a;r.writecb=i;r.writing=!0;r.sync=!0;t?e._writev(o,r.onwrite):e._write(o,n,r.onwrite);r.sync=!1}function S(e,r,t,a,o){--r.pendingcb;t?(n.nextTick(o,a),n.nextTick(A,e,r),e._writableState.errorEmitted=!0,e.emit('error',a)):(o(a),e._writableState.errorEmitted=!0,e.emit('error',a),A(e,r))}function B(e){e.writing=!1;e.writecb=null;e.length-=e.writelen;e.writelen=0}function q(e,r){var t=e._writableState,a=t.sync,o=t.writecb;B(t);if(r)S(e,t,a,r,o);else{var n=C(t);!n&&!t.corked&&!t.bufferProcessing&&t.bufferedRequest&&I(e,t);a?l(E,e,t,n,o):E(e,t,n,o)}}function E(e,r,t,a){t||L(e,r);r.pendingcb--;a();A(e,r)}function L(e,r){r.length===0&&r.needDrain&&(r.needDrain=!1,e.emit('drain'))}function I(e,r){r.bufferProcessing=!0;var t=r.bufferedRequest;if(e._writev&&t&&t.next){var a=r.bufferedRequestCount,o=new Array(a),n=r.corkedRequestsFree;n.entry=t;var l=0,s=!0;while(t)o[l]=t,t.isBuf||(s=!1),t=t.next,l+=1;o.allBuffers=s;j(e,r,!0,r.length,o,'',n.finish);r.pendingcb++;r.lastBufferedRequest=null;n.next?(r.corkedRequestsFree=n.next,n.next=null):(r.corkedRequestsFree=new i(r));r.bufferedRequestCount=0}else{while(t){var u=t.chunk,c=t.encoding,d=t.callback,f=r.objectMode?1:u.length;j(e,r,!1,f,u,c,d);t=t.next;r.bufferedRequestCount--;if(r.writing){break}}t===null&&(r.lastBufferedRequest=null)}r.bufferedRequest=t;r.bufferProcessing=!1}y.prototype._write=function(e,r,t){t(new Error('_write() is not implemented'))};y.prototype._writev=null;y.prototype.end=function(e,r,t){var a=this._writableState;typeof e==='function'?(t=e,e=null,r=null):typeof r==='function'&&(t=r,r=null);e!==null&&e!==void 0&&this.write(e,r);a.corked&&(a.corked=1,this.uncork());!a.ending&&!a.finished&&U(this,a,t)};function C(e){return e.ending&&e.length===0&&e.bufferedRequest===null&&!e.finished&&!e.writing}function T(e,r){e._final(function(t){r.pendingcb--;t&&e.emit('error',t);r.prefinished=!0;e.emit('prefinish');A(e,r)})}function M(e,r){!r.prefinished&&!r.finalCalled&&(typeof e._final==='function'?(r.pendingcb++,r.finalCalled=!0,n.nextTick(T,e,r)):(r.prefinished=!0,e.emit('prefinish')))}function A(e,r){var t=C(r);t&&(M(e,r),r.pendingcb===0&&(r.finished=!0,e.emit('finish')));return t}function U(e,r,t){r.ending=!0;A(e,r);t&&(r.finished?n.nextTick(t):e.once('finish',t));r.ended=!0;e.writable=!1}function R(e,r,t){var a=e.entry;e.entry=null;while(a){var o=a.callback;r.pendingcb--;o(t);a=a.next}r.corkedRequestsFree?(r.corkedRequestsFree.next=e):(r.corkedRequestsFree=e)}Object.defineProperty(y.prototype,'destroyed',{get:function(){if(this._writableState===void 0){return!1}return this._writableState.destroyed},set:function(e){if(!this._writableState){return}this._writableState.destroyed=e}});y.prototype.destroy=b.destroy;y.prototype._undestroy=b.undestroy;y.prototype._destroy=function(e,r){this.end();r(e)}}).call(this,e('_process'),typeof global!=="undefined"?global:typeof self!=="undefined"?self:typeof window!=="undefined"?window:{},e("timers").setImmediate)},{"./_stream_duplex":13,"./internal/streams/destroy":19,"./internal/streams/stream":20,"_process":11,"core-util-is":4,"inherits":7,"process-nextick-args":10,"safe-buffer":26,"timers":29,"util-deprecate":30}],18:[function(e,r,t){"use strict";function a(e,r){if(!(e instanceof r)){throw new TypeError("Cannot call a class as a function")}}var o=e('safe-buffer').Buffer,n=e('util');function i(e,r,t){e.copy(r,t)}r.exports=function(){function e(){a(this,e);this.head=null;this.tail=null;this.length=0}e.prototype.push=function(e){var r={data:e,next:null};this.length>0?(this.tail.next=r):(this.head=r);this.tail=r;++this.length};e.prototype.unshift=function(e){var r={data:e,next:this.head};this.length===0&&(this.tail=r);this.head=r;++this.length};e.prototype.shift=function(){if(this.length===0)return;var e=this.head.data;this.length===1?(this.head=this.tail=null):(this.head=this.head.next);--this.length;return e};e.prototype.clear=function(){this.head=this.tail=null;this.length=0};e.prototype.join=function(e){if(this.length===0)return'';var r=this.head,t=''+r.data;while(r=r.next)t+=e+r.data;return t};e.prototype.concat=function(e){if(this.length===0)return o.alloc(0);if(this.length===1)return this.head.data;var r=o.allocUnsafe(e>>>0),t=this.head,a=0;while(t)i(t.data,r,a),a+=t.data.length,t=t.next;return r};return e}();n&&n.inspect&&n.inspect.custom&&(r.exports.prototype[n.inspect.custom]=function(){var e=n.inspect({length:this.length});return this.constructor.name+' '+e})},{"safe-buffer":26,"util":2}],19:[function(e,r,t){"use strict";var a=e('process-nextick-args');function o(e,r){var t=this,o=this._readableState&&this._readableState.destroyed,n=this._writableState&&this._writableState.destroyed;if(o||n){r?r(e):e&&(!this._writableState||!this._writableState.errorEmitted)&&a.nextTick(i,this,e);return this}this._readableState&&(this._readableState.destroyed=!0);this._writableState&&(this._writableState.destroyed=!0);this._destroy(e||null,function(e){!r&&e?(a.nextTick(i,t,e),t._writableState&&(t._writableState.errorEmitted=!0)):r&&r(e)});return this}function n(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1);this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}function i(e,r){e.emit('error',r)}r.exports={destroy:o,undestroy:n}},{"process-nextick-args":10}],20:[function(e,r,t){r.exports=e('events').EventEmitter},{"events":5}],21:[function(e,r,t){"use strict";var a=e('safe-buffer').Buffer,o=a.isEncoding||function(e){e=''+e;switch(e&&e.toLowerCase()){case 'hex':;case 'utf8':;case 'utf-8':;case 'ascii':;case 'binary':;case 'base64':;case 'ucs2':;case 'ucs-2':;case 'utf16le':;case 'utf-16le':;case 'raw':return!0;default:return!1}};function n(e){if(!e)return'utf8';var r;while(!0){switch(e){case 'utf8':;case 'utf-8':return'utf8';case 'ucs2':;case 'ucs-2':;case 'utf16le':;case 'utf-16le':return'utf16le';case 'latin1':;case 'binary':return'latin1';case 'base64':;case 'ascii':;case 'hex':return e;default:if(r)return;e=(''+e).toLowerCase();r=!0}}}function i(e){var r=n(e);if(typeof r!=='string'&&(a.isEncoding===o||!o(e)))throw new Error('Unknown encoding: '+e);return r||e}t.StringDecoder=l;function l(e){this.encoding=i(e);var r;switch(this.encoding){case 'utf16le':this.text=m;this.end=g;r=4;break;case 'utf8':this.fillLast=d;r=4;break;case 'base64':this.text=b;this.end=h;r=3;break;default:this.write=v;this.end=_;return}this.lastNeed=0;this.lastTotal=0;this.lastChar=a.allocUnsafe(r)}l.prototype.write=function(e){if(e.length===0)return'';var r,t;if(this.lastNeed){r=this.fillLast(e);if(r===void 0)return'';t=this.lastNeed;this.lastNeed=0}else t=0;if(t<e.length)return r?r+this.text(e,t):this.text(e,t);return r||''};l.prototype.end=p;l.prototype.text=f;l.prototype.fillLast=function(e){if(this.lastNeed<=e.length){e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed);return this.lastChar.toString(this.encoding,0,this.lastTotal)}e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,e.length);this.lastNeed-=e.length};function s(e){if(e<=127)return 0;else if(e>>5===6)return 2;else if(e>>4===14)return 3;else if(e>>3===30)return 4;return e>>6===2?-1:-2}function u(e,r,t){var a=r.length-1;if(a<t)return 0;var o=s(r[a]);if(o>=0){o>0&&(e.lastNeed=o-1);return o}if(--a<t||o===-2)return 0;o=s(r[a]);if(o>=0){o>0&&(e.lastNeed=o-2);return o}if(--a<t||o===-2)return 0;o=s(r[a]);if(o>=0){o>0&&(o===2?(o=0):(e.lastNeed=o-3));return o}return 0}function c(e,r,t){if((r[0]&192)!==128){e.lastNeed=0;return'\ufffd'}if(e.lastNeed>1&&r.length>1){if((r[1]&192)!==128){e.lastNeed=1;return'\ufffd'}if(e.lastNeed>2&&r.length>2){if((r[2]&192)!==128){e.lastNeed=2;return'\ufffd'}}}}function d(e){var r=this.lastTotal-this.lastNeed,t=c(this,e,r);if(t!==void 0)return t;if(this.lastNeed<=e.length){e.copy(this.lastChar,r,0,this.lastNeed);return this.lastChar.toString(this.encoding,0,this.lastTotal)}e.copy(this.lastChar,r,0,e.length);this.lastNeed-=e.length}function f(e,r){var t=u(this,e,r);if(!this.lastNeed)return e.toString('utf8',r);this.lastTotal=t;var a=e.length-(t-this.lastNeed);e.copy(this.lastChar,0,a);return e.toString('utf8',r,a)}function p(e){var r=e&&e.length?this.write(e):'';if(this.lastNeed)return r+'\ufffd';return r}function m(e,r){if((e.length-r)%2===0){var t=e.toString('utf16le',r);if(t){var a=t.charCodeAt(t.length-1);if(a>=55296&&a<=56319){this.lastNeed=2;this.lastTotal=4;this.lastChar[0]=e[e.length-2];this.lastChar[1]=e[e.length-1];return t.slice(0,-1)}}return t}this.lastNeed=1;this.lastTotal=2;this.lastChar[0]=e[e.length-1];return e.toString('utf16le',r,e.length-1)}function g(e){var r=e&&e.length?this.write(e):'';if(this.lastNeed){var t=this.lastTotal-this.lastNeed;return r+this.lastChar.toString('utf16le',0,t)}return r}function b(e,r){var t=(e.length-r)%3;if(t===0)return e.toString('base64',r);this.lastNeed=3-t;this.lastTotal=3;t===1?(this.lastChar[0]=e[e.length-1]):(this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1]);return e.toString('base64',r,e.length-t)}function h(e){var r=e&&e.length?this.write(e):'';if(this.lastNeed)return r+this.lastChar.toString('base64',0,3-this.lastNeed);return r}function v(e){return e.toString(this.encoding)}function _(e){return e&&e.length?this.write(e):''}},{"safe-buffer":26}],22:[function(e,r,t){r.exports=e('./readable').PassThrough},{"./readable":23}],23:[function(e,r,t){t=r.exports=e('./lib/_stream_readable.js');t.Stream=t;t.Readable=t;t.Writable=e('./lib/_stream_writable.js');t.Duplex=e('./lib/_stream_duplex.js');t.Transform=e('./lib/_stream_transform.js');t.PassThrough=e('./lib/_stream_passthrough.js')},{"./lib/_stream_duplex.js":13,"./lib/_stream_passthrough.js":14,"./lib/_stream_readable.js":15,"./lib/_stream_transform.js":16,"./lib/_stream_writable.js":17}],24:[function(e,r,t){r.exports=e('./readable').Transform},{"./readable":23}],25:[function(e,r,t){r.exports=e('./lib/_stream_writable.js')},{"./lib/_stream_writable.js":17}],26:[function(e,r,t){var a=e('buffer'),o=a.Buffer;function n(e,r){for(var t in e)r[t]=e[t]}o.from&&o.alloc&&o.allocUnsafe&&o.allocUnsafeSlow?(r.exports=a):(n(a,t),t.Buffer=i);function i(e,r,t){return o(e,r,t)}n(o,i);i.from=function(e,r,t){if(typeof e==='number'){throw new TypeError('Argument must not be a number')}return o(e,r,t)};i.alloc=function(e,r,t){if(typeof e!=='number'){throw new TypeError('Argument must be a number')}var a=o(e);r!==void 0?(typeof t==='string'?a.fill(r,t):a.fill(r)):a.fill(0);return a};i.allocUnsafe=function(e){if(typeof e!=='number'){throw new TypeError('Argument must be a number')}return o(e)};i.allocUnsafeSlow=function(e){if(typeof e!=='number'){throw new TypeError('Argument must be a number')}return a.SlowBuffer(e)}},{"buffer":3}],27:[function(e,r,t){r.exports=n;var a=e('events').EventEmitter,o=e('inherits');o(n,a);n.Readable=e('readable-stream/readable.js');n.Writable=e('readable-stream/writable.js');n.Duplex=e('readable-stream/duplex.js');n.Transform=e('readable-stream/transform.js');n.PassThrough=e('readable-stream/passthrough.js');n.Stream=n;function n(){a.call(this)}n.prototype.pipe=function(e,r){var t=this;function o(r){e.writable&&(!1===e.write(r)&&t.pause&&t.pause())}t.on('data',o);function n(){t.readable&&t.resume&&t.resume()}e.on('drain',n);!e._isStdio&&(!r||r.end!==!1)&&(t.on('end',l),t.on('close',s));var i=!1;function l(){if(i)return;i=!0;e.end()}function s(){if(i)return;i=!0;typeof e.destroy==='function'&&e.destroy()}function u(e){c();if(a.listenerCount(this,'error')===0){throw e}}t.on('error',u);e.on('error',u);function c(){t.removeListener('data',o);e.removeListener('drain',n);t.removeListener('end',l);t.removeListener('close',s);t.removeListener('error',u);e.removeListener('error',u);t.removeListener('end',c);t.removeListener('close',c);e.removeListener('close',c)}t.on('end',c);t.on('close',c);e.on('close',c);e.emit('pipe',t);return e}},{"events":5,"inherits":7,"readable-stream/duplex.js":12,"readable-stream/passthrough.js":22,"readable-stream/readable.js":23,"readable-stream/transform.js":24,"readable-stream/writable.js":25}],28:[function(e,r,t){arguments[4][21][0].apply(t,arguments)},{"dup":21,"safe-buffer":26}],29:[function(e,r,t){(function(r,a){var o=e('process/browser.js').nextTick,n=Function.prototype.apply,i=Array.prototype.slice,l={},s=0;t.setTimeout=function(){return new u(n.call(setTimeout,window,arguments),clearTimeout)};t.setInterval=function(){return new u(n.call(setInterval,window,arguments),clearInterval)};t.clearTimeout=t.clearInterval=function(e){e.close()};function u(e,r){this._id=e;this._clearFn=r}u.prototype.unref=u.prototype.ref=function(){};u.prototype.close=function(){this._clearFn.call(window,this._id)};t.enroll=function(e,r){clearTimeout(e._idleTimeoutId);e._idleTimeout=r};t.unenroll=function(e){clearTimeout(e._idleTimeoutId);e._idleTimeout=-1};t._unrefActive=t.active=function(e){clearTimeout(e._idleTimeoutId);var r=e._idleTimeout;r>=0&&(e._idleTimeoutId=setTimeout(function(){e._onTimeout&&e._onTimeout()},r))};t.setImmediate=typeof r==="function"?r:function(e){var r=s++,a=arguments.length<2?!1:i.call(arguments,1);l[r]=!0;o(function(){l[r]&&(a?e.apply(null,a):e.call(null),t.clearImmediate(r))});return r};t.clearImmediate=typeof a==="function"?a:function(e){delete l[e]}}).call(this,e("timers").setImmediate,e("timers").clearImmediate)},{"process/browser.js":11,"timers":29}],30:[function(e,r,t){(function(e){r.exports=t;function t(e,r){if(a('noDeprecation')){return e}var t=!1;function o(){if(!t){if(a('throwDeprecation')){throw new Error(r)}else a('traceDeprecation')?console.trace(r):console.warn(r);t=!0}return e.apply(this,arguments)}return o}function a(r){try{if(!e.localStorage)return!1}catch(e){return!1};var t=e.localStorage[r];if(null==t)return!1;return String(t).toLowerCase()==='true'}}).call(this,typeof global!=="undefined"?global:typeof self!=="undefined"?self:typeof window!=="undefined"?window:{})},{}],31:[function(e,r,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});let a={};t.wordlists=a;let o;t._default=o;try{t._default=o=e('./wordlists/chinese_simplified.json'),a.chinese_simplified=o}catch(e){};try{t._default=o=e('./wordlists/chinese_traditional.json'),a.chinese_traditional=o}catch(e){};try{t._default=o=e('./wordlists/korean.json'),a.korean=o}catch(e){};try{t._default=o=e('./wordlists/french.json'),a.french=o}catch(e){};try{t._default=o=e('./wordlists/italian.json'),a.italian=o}catch(e){};try{t._default=o=e('./wordlists/spanish.json'),a.spanish=o}catch(e){};try{t._default=o=e('./wordlists/japanese.json'),a.japanese=o,a.JA=o}catch(e){};try{t._default=o=e('./wordlists/english.json'),a.english=o,a.EN=o}catch(e){}},{"./wordlists/chinese_simplified.json":32,"./wordlists/chinese_traditional.json":33,"./wordlists/english.json":34,"./wordlists/french.json":35,"./wordlists/italian.json":36,"./wordlists/japanese.json":37,"./wordlists/korean.json":38,"./wordlists/spanish.json":39}],32:[function(e,r,t){r.exports=["的","一","是","在","不","了","有","和","人","这","中","大","为","上","个","国","我","以","要","他","时","来","用","们","生","到","作","地","于","出","就","分","对","成","会","可","主","发","年","动","同","工","也","能","下","过","子","说","产","种","面","而","方","后","多","定","行","学","法","所","民","得","经","十","三","之","进","着","等","部","度","家","电","力","里","如","水","化","高","自","二","理","起","小","物","现","实","加","量","都","两","体","制","机","当","使","点","从","业","本","去","把","性","好","应","开","它","合","还","因","由","其","些","然","前","外","天","政","四","日","那","社","义","事","平","形","相","全","表","间","样","与","关","各","重","新","线","内","数","正","心","反","你","明","看","原","又","么","利","比","或","但","质","气","第","向","道","命","此","变","条","只","没","结","解","问","意","建","月","公","无","系","军","很","情","者","最","立","代","想","已","通","并","提","直","题","党","程","展","五","果","料","象","员","革","位","入","常","文","总","次","品","式","活","设","及","管","特","件","长","求","老","头","基","资","边","流","路","级","少","图","山","统","接","知","较","将","组","见","计","别","她","手","角","期","根","论","运","农","指","几","九","区","强","放","决","西","被","干","做","必","战","先","回","则","任","取","据","处","队","南","给","色","光","门","即","保","治","北","造","百","规","热","领","七","海","口","东","导","器","压","志","世","金","增","争","济","阶","油","思","术","极","交","受","联","什","认","六","共","权","收","证","改","清","美","再","采","转","更","单","风","切","打","白","教","速","花","带","安","场","身","车","例","真","务","具","万","每","目","至","达","走","积","示","议","声","报","斗","完","类","八","离","华","名","确","才","科","张","信","马","节","话","米","整","空","元","况","今","集","温","传","土","许","步","群","广","石","记","需","段","研","界","拉","林","律","叫","且","究","观","越","织","装","影","算","低","持","音","众","书","布","复","容","儿","须","际","商","非","验","连","断","深","难","近","矿","千","周","委","素","技","备","半","办","青","省","列","习","响","约","支","般","史","感","劳","便","团","往","酸","历","市","克","何","除","消","构","府","称","太","准","精","值","号","率","族","维","划","选","标","写","存","候","毛","亲","快","效","斯","院","查","江","型","眼","王","按","格","养","易","置","派","层","片","始","却","专","状","育","厂","京","识","适","属","圆","包","火","住","调","满","县","局","照","参","红","细","引","听","该","铁","价","严","首","底","液","官","德","随","病","苏","失","尔","死","讲","配","女","黄","推","显","谈","罪","神","艺","呢","席","含","企","望","密","批","营","项","防","举","球","英","氧","势","告","李","台","落","木","帮","轮","破","亚","师","围","注","远","字","材","排","供","河","态","封","另","施","减","树","溶","怎","止","案","言","士","均","武","固","叶","鱼","波","视","仅","费","紧","爱","左","章","早","朝","害","续","轻","服","试","食","充","兵","源","判","护","司","足","某","练","差","致","板","田","降","黑","犯","负","击","范","继","兴","似","余","坚","曲","输","修","故","城","夫","够","送","笔","船","占","右","财","吃","富","春","职","觉","汉","画","功","巴","跟","虽","杂","飞","检","吸","助","升","阳","互","初","创","抗","考","投","坏","策","古","径","换","未","跑","留","钢","曾","端","责","站","简","述","钱","副","尽","帝","射","草","冲","承","独","令","限","阿","宣","环","双","请","超","微","让","控","州","良","轴","找","否","纪","益","依","优","顶","础","载","倒","房","突","坐","粉","敌","略","客","袁","冷","胜","绝","析","块","剂","测","丝","协","诉","念","陈","仍","罗","盐","友","洋","错","苦","夜","刑","移","频","逐","靠","混","母","短","皮","终","聚","汽","村","云","哪","既","距","卫","停","烈","央","察","烧","迅","境","若","印","洲","刻","括","激","孔","搞","甚","室","待","核","校","散","侵","吧","甲","游","久","菜","味","旧","模","湖","货","损","预","阻","毫","普","稳","乙","妈","植","息","扩","银","语","挥","酒","守","拿","序","纸","医","缺","雨","吗","针","刘","啊","急","唱","误","训","愿","审","附","获","茶","鲜","粮","斤","孩","脱","硫","肥","善","龙","演","父","渐","血","欢","械","掌","歌","沙","刚","攻","谓","盾","讨","晚","粒","乱","燃","矛","乎","杀","药","宁","鲁","贵","钟","煤","读","班","伯","香","介","迫","句","丰","培","握","兰","担","弦","蛋","沉","假","穿","执","答","乐","谁","顺","烟","缩","征","脸","喜","松","脚","困","异","免","背","星","福","买","染","井","概","慢","怕","磁","倍","祖","皇","促","静","补","评","翻","肉","践","尼","衣","宽","扬","棉","希","伤","操","垂","秋","宜","氢","套","督","振","架","亮","末","宪","庆","编","牛","触","映","雷","销","诗","座","居","抓","裂","胞","呼","娘","景","威","绿","晶","厚","盟","衡","鸡","孙","延","危","胶","屋","乡","临","陆","顾","掉","呀","灯","岁","措","束","耐","剧","玉","赵","跳","哥","季","课","凯","胡","额","款","绍","卷","齐","伟","蒸","殖","永","宗","苗","川","炉","岩","弱","零","杨","奏","沿","露","杆","探","滑","镇","饭","浓","航","怀","赶","库","夺","伊","灵","税","途","灭","赛","归","召","鼓","播","盘","裁","险","康","唯","录","菌","纯","借","糖","盖","横","符","私","努","堂","域","枪","润","幅","哈","竟","熟","虫","泽","脑","壤","碳","欧","遍","侧","寨","敢","彻","虑","斜","薄","庭","纳","弹","饲","伸","折","麦","湿","暗","荷","瓦","塞","床","筑","恶","户","访","塔","奇","透","梁","刀","旋","迹","卡","氯","遇","份","毒","泥","退","洗","摆","灰","彩","卖","耗","夏","择","忙","铜","献","硬","予","繁","圈","雪","函","亦","抽","篇","阵","阴","丁","尺","追","堆","雄","迎","泛","爸","楼","避","谋","吨","野","猪","旗","累","偏","典","馆","索","秦","脂","潮","爷","豆","忽","托","惊","塑","遗","愈","朱","替","纤","粗","倾","尚","痛","楚","谢","奋","购","磨","君","池","旁","碎","骨","监","捕","弟","暴","割","贯","殊","释","词","亡","壁","顿","宝","午","尘","闻","揭","炮","残","冬","桥","妇","警","综","招","吴","付","浮","遭","徐","您","摇","谷","赞","箱","隔","订","男","吹","园","纷","唐","败","宋","玻","巨","耕","坦","荣","闭","湾","键","凡","驻","锅","救","恩","剥","凝","碱","齿","截","炼","麻","纺","禁","废","盛","版","缓","净","睛","昌","婚","涉","筒","嘴","插","岸","朗","庄","街","藏","姑","贸","腐","奴","啦","惯","乘","伙","恢","匀","纱","扎","辩","耳","彪","臣","亿","璃","抵","脉","秀","萨","俄","网","舞","店","喷","纵","寸","汗","挂","洪","贺","闪","柬","爆","烯","津","稻","墙","软","勇","像","滚","厘","蒙","芳","肯","坡","柱","荡","腿","仪","旅","尾","轧","冰","贡","登","黎","削","钻","勒","逃","障","氨","郭","峰","币","港","伏","轨","亩","毕","擦","莫","刺","浪","秘","援","株","健","售","股","岛","甘","泡","睡","童","铸","汤","阀","休","汇","舍","牧","绕","炸","哲","磷","绩","朋","淡","尖","启","陷","柴","呈","徒","颜","泪","稍","忘","泵","蓝","拖","洞","授","镜","辛","壮","锋","贫","虚","弯","摩","泰","幼","廷","尊","窗","纲","弄","隶","疑","氏","宫","姐","震","瑞","怪","尤","琴","循","描","膜","违","夹","腰","缘","珠","穷","森","枝","竹","沟","催","绳","忆","邦","剩","幸","浆","栏","拥","牙","贮","礼","滤","钠","纹","罢","拍","咱","喊","袖","埃","勤","罚","焦","潜","伍","墨","欲","缝","姓","刊","饱","仿","奖","铝","鬼","丽","跨","默","挖","链","扫","喝","袋","炭","污","幕","诸","弧","励","梅","奶","洁","灾","舟","鉴","苯","讼","抱","毁","懂","寒","智","埔","寄","届","跃","渡","挑","丹","艰","贝","碰","拔","爹","戴","码","梦","芽","熔","赤","渔","哭","敬","颗","奔","铅","仲","虎","稀","妹","乏","珍","申","桌","遵","允","隆","螺","仓","魏","锐","晓","氮","兼","隐","碍","赫","拨","忠","肃","缸","牵","抢","博","巧","壳","兄","杜","讯","诚","碧","祥","柯","页","巡","矩","悲","灌","龄","伦","票","寻","桂","铺","圣","恐","恰","郑","趣","抬","荒","腾","贴","柔","滴","猛","阔","辆","妻","填","撤","储","签","闹","扰","紫","砂","递","戏","吊","陶","伐","喂","疗","瓶","婆","抚","臂","摸","忍","虾","蜡","邻","胸","巩","挤","偶","弃","槽","劲","乳","邓","吉","仁","烂","砖","租","乌","舰","伴","瓜","浅","丙","暂","燥","橡","柳","迷","暖","牌","秧","胆","详","簧","踏","瓷","谱","呆","宾","糊","洛","辉","愤","竞","隙","怒","粘","乃","绪","肩","籍","敏","涂","熙","皆","侦","悬","掘","享","纠","醒","狂","锁","淀","恨","牲","霸","爬","赏","逆","玩","陵","祝","秒","浙","貌","役","彼","悉","鸭","趋","凤","晨","畜","辈","秩","卵","署","梯","炎","滩","棋","驱","筛","峡","冒","啥","寿","译","浸","泉","帽","迟","硅","疆","贷","漏","稿","冠","嫩","胁","芯","牢","叛","蚀","奥","鸣","岭","羊","凭","串","塘","绘","酵","融","盆","锡","庙","筹","冻","辅","摄","袭","筋","拒","僚","旱","钾","鸟","漆","沈","眉","疏","添","棒","穗","硝","韩","逼","扭","侨","凉","挺","碗","栽","炒","杯","患","馏","劝","豪","辽","勃","鸿","旦","吏","拜","狗","埋","辊","掩","饮","搬","骂","辞","勾","扣","估","蒋","绒","雾","丈","朵","姆","拟","宇","辑","陕","雕","偿","蓄","崇","剪","倡","厅","咬","驶","薯","刷","斥","番","赋","奉","佛","浇","漫","曼","扇","钙","桃","扶","仔","返","俗","亏","腔","鞋","棱","覆","框","悄","叔","撞","骗","勘","旺","沸","孤","吐","孟","渠","屈","疾","妙","惜","仰","狠","胀","谐","抛","霉","桑","岗","嘛","衰","盗","渗","脏","赖","涌","甜","曹","阅","肌","哩","厉","烃","纬","毅","昨","伪","症","煮","叹","钉","搭","茎","笼","酷","偷","弓","锥","恒","杰","坑","鼻","翼","纶","叙","狱","逮","罐","络","棚","抑","膨","蔬","寺","骤","穆","冶","枯","册","尸","凸","绅","坯","牺","焰","轰","欣","晋","瘦","御","锭","锦","丧","旬","锻","垄","搜","扑","邀","亭","酯","迈","舒","脆","酶","闲","忧","酚","顽","羽","涨","卸","仗","陪","辟","惩","杭","姚","肚","捉","飘","漂","昆","欺","吾","郎","烷","汁","呵","饰","萧","雅","邮","迁","燕","撒","姻","赴","宴","烦","债","帐","斑","铃","旨","醇","董","饼","雏","姿","拌","傅","腹","妥","揉","贤","拆","歪","葡","胺","丢","浩","徽","昂","垫","挡","览","贪","慰","缴","汪","慌","冯","诺","姜","谊","凶","劣","诬","耀","昏","躺","盈","骑","乔","溪","丛","卢","抹","闷","咨","刮","驾","缆","悟","摘","铒","掷","颇","幻","柄","惠","惨","佳","仇","腊","窝","涤","剑","瞧","堡","泼","葱","罩","霍","捞","胎","苍","滨","俩","捅","湘","砍","霞","邵","萄","疯","淮","遂","熊","粪","烘","宿","档","戈","驳","嫂","裕","徙","箭","捐","肠","撑","晒","辨","殿","莲","摊","搅","酱","屏","疫","哀","蔡","堵","沫","皱","畅","叠","阁","莱","敲","辖","钩","痕","坝","巷","饿","祸","丘","玄","溜","曰","逻","彭","尝","卿","妨","艇","吞","韦","怨","矮","歇"]},{}],33:[function(e,r,t){r.exports=["的","一","是","在","不","了","有","和","人","這","中","大","為","上","個","國","我","以","要","他","時","來","用","們","生","到","作","地","於","出","就","分","對","成","會","可","主","發","年","動","同","工","也","能","下","過","子","說","產","種","面","而","方","後","多","定","行","學","法","所","民","得","經","十","三","之","進","著","等","部","度","家","電","力","裡","如","水","化","高","自","二","理","起","小","物","現","實","加","量","都","兩","體","制","機","當","使","點","從","業","本","去","把","性","好","應","開","它","合","還","因","由","其","些","然","前","外","天","政","四","日","那","社","義","事","平","形","相","全","表","間","樣","與","關","各","重","新","線","內","數","正","心","反","你","明","看","原","又","麼","利","比","或","但","質","氣","第","向","道","命","此","變","條","只","沒","結","解","問","意","建","月","公","無","系","軍","很","情","者","最","立","代","想","已","通","並","提","直","題","黨","程","展","五","果","料","象","員","革","位","入","常","文","總","次","品","式","活","設","及","管","特","件","長","求","老","頭","基","資","邊","流","路","級","少","圖","山","統","接","知","較","將","組","見","計","別","她","手","角","期","根","論","運","農","指","幾","九","區","強","放","決","西","被","幹","做","必","戰","先","回","則","任","取","據","處","隊","南","給","色","光","門","即","保","治","北","造","百","規","熱","領","七","海","口","東","導","器","壓","志","世","金","增","爭","濟","階","油","思","術","極","交","受","聯","什","認","六","共","權","收","證","改","清","美","再","採","轉","更","單","風","切","打","白","教","速","花","帶","安","場","身","車","例","真","務","具","萬","每","目","至","達","走","積","示","議","聲","報","鬥","完","類","八","離","華","名","確","才","科","張","信","馬","節","話","米","整","空","元","況","今","集","溫","傳","土","許","步","群","廣","石","記","需","段","研","界","拉","林","律","叫","且","究","觀","越","織","裝","影","算","低","持","音","眾","書","布","复","容","兒","須","際","商","非","驗","連","斷","深","難","近","礦","千","週","委","素","技","備","半","辦","青","省","列","習","響","約","支","般","史","感","勞","便","團","往","酸","歷","市","克","何","除","消","構","府","稱","太","準","精","值","號","率","族","維","劃","選","標","寫","存","候","毛","親","快","效","斯","院","查","江","型","眼","王","按","格","養","易","置","派","層","片","始","卻","專","狀","育","廠","京","識","適","屬","圓","包","火","住","調","滿","縣","局","照","參","紅","細","引","聽","該","鐵","價","嚴","首","底","液","官","德","隨","病","蘇","失","爾","死","講","配","女","黃","推","顯","談","罪","神","藝","呢","席","含","企","望","密","批","營","項","防","舉","球","英","氧","勢","告","李","台","落","木","幫","輪","破","亞","師","圍","注","遠","字","材","排","供","河","態","封","另","施","減","樹","溶","怎","止","案","言","士","均","武","固","葉","魚","波","視","僅","費","緊","愛","左","章","早","朝","害","續","輕","服","試","食","充","兵","源","判","護","司","足","某","練","差","致","板","田","降","黑","犯","負","擊","范","繼","興","似","餘","堅","曲","輸","修","故","城","夫","夠","送","筆","船","佔","右","財","吃","富","春","職","覺","漢","畫","功","巴","跟","雖","雜","飛","檢","吸","助","昇","陽","互","初","創","抗","考","投","壞","策","古","徑","換","未","跑","留","鋼","曾","端","責","站","簡","述","錢","副","盡","帝","射","草","衝","承","獨","令","限","阿","宣","環","雙","請","超","微","讓","控","州","良","軸","找","否","紀","益","依","優","頂","礎","載","倒","房","突","坐","粉","敵","略","客","袁","冷","勝","絕","析","塊","劑","測","絲","協","訴","念","陳","仍","羅","鹽","友","洋","錯","苦","夜","刑","移","頻","逐","靠","混","母","短","皮","終","聚","汽","村","雲","哪","既","距","衛","停","烈","央","察","燒","迅","境","若","印","洲","刻","括","激","孔","搞","甚","室","待","核","校","散","侵","吧","甲","遊","久","菜","味","舊","模","湖","貨","損","預","阻","毫","普","穩","乙","媽","植","息","擴","銀","語","揮","酒","守","拿","序","紙","醫","缺","雨","嗎","針","劉","啊","急","唱","誤","訓","願","審","附","獲","茶","鮮","糧","斤","孩","脫","硫","肥","善","龍","演","父","漸","血","歡","械","掌","歌","沙","剛","攻","謂","盾","討","晚","粒","亂","燃","矛","乎","殺","藥","寧","魯","貴","鐘","煤","讀","班","伯","香","介","迫","句","豐","培","握","蘭","擔","弦","蛋","沉","假","穿","執","答","樂","誰","順","煙","縮","徵","臉","喜","松","腳","困","異","免","背","星","福","買","染","井","概","慢","怕","磁","倍","祖","皇","促","靜","補","評","翻","肉","踐","尼","衣","寬","揚","棉","希","傷","操","垂","秋","宜","氫","套","督","振","架","亮","末","憲","慶","編","牛","觸","映","雷","銷","詩","座","居","抓","裂","胞","呼","娘","景","威","綠","晶","厚","盟","衡","雞","孫","延","危","膠","屋","鄉","臨","陸","顧","掉","呀","燈","歲","措","束","耐","劇","玉","趙","跳","哥","季","課","凱","胡","額","款","紹","卷","齊","偉","蒸","殖","永","宗","苗","川","爐","岩","弱","零","楊","奏","沿","露","桿","探","滑","鎮","飯","濃","航","懷","趕","庫","奪","伊","靈","稅","途","滅","賽","歸","召","鼓","播","盤","裁","險","康","唯","錄","菌","純","借","糖","蓋","橫","符","私","努","堂","域","槍","潤","幅","哈","竟","熟","蟲","澤","腦","壤","碳","歐","遍","側","寨","敢","徹","慮","斜","薄","庭","納","彈","飼","伸","折","麥","濕","暗","荷","瓦","塞","床","築","惡","戶","訪","塔","奇","透","梁","刀","旋","跡","卡","氯","遇","份","毒","泥","退","洗","擺","灰","彩","賣","耗","夏","擇","忙","銅","獻","硬","予","繁","圈","雪","函","亦","抽","篇","陣","陰","丁","尺","追","堆","雄","迎","泛","爸","樓","避","謀","噸","野","豬","旗","累","偏","典","館","索","秦","脂","潮","爺","豆","忽","托","驚","塑","遺","愈","朱","替","纖","粗","傾","尚","痛","楚","謝","奮","購","磨","君","池","旁","碎","骨","監","捕","弟","暴","割","貫","殊","釋","詞","亡","壁","頓","寶","午","塵","聞","揭","炮","殘","冬","橋","婦","警","綜","招","吳","付","浮","遭","徐","您","搖","谷","贊","箱","隔","訂","男","吹","園","紛","唐","敗","宋","玻","巨","耕","坦","榮","閉","灣","鍵","凡","駐","鍋","救","恩","剝","凝","鹼","齒","截","煉","麻","紡","禁","廢","盛","版","緩","淨","睛","昌","婚","涉","筒","嘴","插","岸","朗","莊","街","藏","姑","貿","腐","奴","啦","慣","乘","夥","恢","勻","紗","扎","辯","耳","彪","臣","億","璃","抵","脈","秀","薩","俄","網","舞","店","噴","縱","寸","汗","掛","洪","賀","閃","柬","爆","烯","津","稻","牆","軟","勇","像","滾","厘","蒙","芳","肯","坡","柱","盪","腿","儀","旅","尾","軋","冰","貢","登","黎","削","鑽","勒","逃","障","氨","郭","峰","幣","港","伏","軌","畝","畢","擦","莫","刺","浪","秘","援","株","健","售","股","島","甘","泡","睡","童","鑄","湯","閥","休","匯","舍","牧","繞","炸","哲","磷","績","朋","淡","尖","啟","陷","柴","呈","徒","顏","淚","稍","忘","泵","藍","拖","洞","授","鏡","辛","壯","鋒","貧","虛","彎","摩","泰","幼","廷","尊","窗","綱","弄","隸","疑","氏","宮","姐","震","瑞","怪","尤","琴","循","描","膜","違","夾","腰","緣","珠","窮","森","枝","竹","溝","催","繩","憶","邦","剩","幸","漿","欄","擁","牙","貯","禮","濾","鈉","紋","罷","拍","咱","喊","袖","埃","勤","罰","焦","潛","伍","墨","欲","縫","姓","刊","飽","仿","獎","鋁","鬼","麗","跨","默","挖","鏈","掃","喝","袋","炭","污","幕","諸","弧","勵","梅","奶","潔","災","舟","鑑","苯","訟","抱","毀","懂","寒","智","埔","寄","屆","躍","渡","挑","丹","艱","貝","碰","拔","爹","戴","碼","夢","芽","熔","赤","漁","哭","敬","顆","奔","鉛","仲","虎","稀","妹","乏","珍","申","桌","遵","允","隆","螺","倉","魏","銳","曉","氮","兼","隱","礙","赫","撥","忠","肅","缸","牽","搶","博","巧","殼","兄","杜","訊","誠","碧","祥","柯","頁","巡","矩","悲","灌","齡","倫","票","尋","桂","鋪","聖","恐","恰","鄭","趣","抬","荒","騰","貼","柔","滴","猛","闊","輛","妻","填","撤","儲","簽","鬧","擾","紫","砂","遞","戲","吊","陶","伐","餵","療","瓶","婆","撫","臂","摸","忍","蝦","蠟","鄰","胸","鞏","擠","偶","棄","槽","勁","乳","鄧","吉","仁","爛","磚","租","烏","艦","伴","瓜","淺","丙","暫","燥","橡","柳","迷","暖","牌","秧","膽","詳","簧","踏","瓷","譜","呆","賓","糊","洛","輝","憤","競","隙","怒","粘","乃","緒","肩","籍","敏","塗","熙","皆","偵","懸","掘","享","糾","醒","狂","鎖","淀","恨","牲","霸","爬","賞","逆","玩","陵","祝","秒","浙","貌","役","彼","悉","鴨","趨","鳳","晨","畜","輩","秩","卵","署","梯","炎","灘","棋","驅","篩","峽","冒","啥","壽","譯","浸","泉","帽","遲","矽","疆","貸","漏","稿","冠","嫩","脅","芯","牢","叛","蝕","奧","鳴","嶺","羊","憑","串","塘","繪","酵","融","盆","錫","廟","籌","凍","輔","攝","襲","筋","拒","僚","旱","鉀","鳥","漆","沈","眉","疏","添","棒","穗","硝","韓","逼","扭","僑","涼","挺","碗","栽","炒","杯","患","餾","勸","豪","遼","勃","鴻","旦","吏","拜","狗","埋","輥","掩","飲","搬","罵","辭","勾","扣","估","蔣","絨","霧","丈","朵","姆","擬","宇","輯","陝","雕","償","蓄","崇","剪","倡","廳","咬","駛","薯","刷","斥","番","賦","奉","佛","澆","漫","曼","扇","鈣","桃","扶","仔","返","俗","虧","腔","鞋","棱","覆","框","悄","叔","撞","騙","勘","旺","沸","孤","吐","孟","渠","屈","疾","妙","惜","仰","狠","脹","諧","拋","黴","桑","崗","嘛","衰","盜","滲","臟","賴","湧","甜","曹","閱","肌","哩","厲","烴","緯","毅","昨","偽","症","煮","嘆","釘","搭","莖","籠","酷","偷","弓","錐","恆","傑","坑","鼻","翼","綸","敘","獄","逮","罐","絡","棚","抑","膨","蔬","寺","驟","穆","冶","枯","冊","屍","凸","紳","坯","犧","焰","轟","欣","晉","瘦","禦","錠","錦","喪","旬","鍛","壟","搜","撲","邀","亭","酯","邁","舒","脆","酶","閒","憂","酚","頑","羽","漲","卸","仗","陪","闢","懲","杭","姚","肚","捉","飄","漂","昆","欺","吾","郎","烷","汁","呵","飾","蕭","雅","郵","遷","燕","撒","姻","赴","宴","煩","債","帳","斑","鈴","旨","醇","董","餅","雛","姿","拌","傅","腹","妥","揉","賢","拆","歪","葡","胺","丟","浩","徽","昂","墊","擋","覽","貪","慰","繳","汪","慌","馮","諾","姜","誼","兇","劣","誣","耀","昏","躺","盈","騎","喬","溪","叢","盧","抹","悶","諮","刮","駕","纜","悟","摘","鉺","擲","頗","幻","柄","惠","慘","佳","仇","臘","窩","滌","劍","瞧","堡","潑","蔥","罩","霍","撈","胎","蒼","濱","倆","捅","湘","砍","霞","邵","萄","瘋","淮","遂","熊","糞","烘","宿","檔","戈","駁","嫂","裕","徙","箭","捐","腸","撐","曬","辨","殿","蓮","攤","攪","醬","屏","疫","哀","蔡","堵","沫","皺","暢","疊","閣","萊","敲","轄","鉤","痕","壩","巷","餓","禍","丘","玄","溜","曰","邏","彭","嘗","卿","妨","艇","吞","韋","怨","矮","歇"]},{}],34:[function(e,r,t){r.exports=["abandon","ability","able","about","above","absent","absorb","abstract","absurd","abuse","access","accident","account","accuse","achieve","acid","acoustic","acquire","across","act","action","actor","actress","actual","adapt","add","addict","address","adjust","admit","adult","advance","advice","aerobic","affair","afford","afraid","again","age","agent","agree","ahead","aim","air","airport","aisle","alarm","album","alcohol","alert","alien","all","alley","allow","almost","alone","alpha","already","also","alter","always","amateur","amazing","among","amount","amused","analyst","anchor","ancient","anger","angle","angry","animal","ankle","announce","annual","another","answer","antenna","antique","anxiety","any","apart","apology","appear","apple","approve","april","arch","arctic","area","arena","argue","arm","armed","armor","army","around","arrange","arrest","arrive","arrow","art","artefact","artist","artwork","ask","aspect","assault","asset","assist","assume","asthma","athlete","atom","attack","attend","attitude","attract","auction","audit","august","aunt","author","auto","autumn","average","avocado","avoid","awake","aware","away","awesome","awful","awkward","axis","baby","bachelor","bacon","badge","bag","balance","balcony","ball","bamboo","banana","banner","bar","barely","bargain","barrel","base","basic","basket","battle","beach","bean","beauty","because","become","beef","before","begin","behave","behind","believe","below","belt","bench","benefit","best","betray","better","between","beyond","bicycle","bid","bike","bind","biology","bird","birth","bitter","black","blade","blame","blanket","blast","bleak","bless","blind","blood","blossom","blouse","blue","blur","blush","board","boat","body","boil","bomb","bone","bonus","book","boost","border","boring","borrow","boss","bottom","bounce","box","boy","bracket","brain","brand","brass","brave","bread","breeze","brick","bridge","brief","bright","bring","brisk","broccoli","broken","bronze","broom","brother","brown","brush","bubble","buddy","budget","buffalo","build","bulb","bulk","bullet","bundle","bunker","burden","burger","burst","bus","business","busy","butter","buyer","buzz","cabbage","cabin","cable","cactus","cage","cake","call","calm","camera","camp","can","canal","cancel","candy","cannon","canoe","canvas","canyon","capable","capital","captain","car","carbon","card","cargo","carpet","carry","cart","case","cash","casino","castle","casual","cat","catalog","catch","category","cattle","caught","cause","caution","cave","ceiling","celery","cement","census","century","cereal","certain","chair","chalk","champion","change","chaos","chapter","charge","chase","chat","cheap","check","cheese","chef","cherry","chest","chicken","chief","child","chimney","choice","choose","chronic","chuckle","chunk","churn","cigar","cinnamon","circle","citizen","city","civil","claim","clap","clarify","claw","clay","clean","clerk","clever","click","client","cliff","climb","clinic","clip","clock","clog","close","cloth","cloud","clown","club","clump","cluster","clutch","coach","coast","coconut","code","coffee","coil","coin","collect","color","column","combine","come","comfort","comic","common","company","concert","conduct","confirm","congress","connect","consider","control","convince","cook","cool","copper","copy","coral","core","corn","correct","cost","cotton","couch","country","couple","course","cousin","cover","coyote","crack","cradle","craft","cram","crane","crash","crater","crawl","crazy","cream","credit","creek","crew","cricket","crime","crisp","critic","crop","cross","crouch","crowd","crucial","cruel","cruise","crumble","crunch","crush","cry","crystal","cube","culture","cup","cupboard","curious","current","curtain","curve","cushion","custom","cute","cycle","dad","damage","damp","dance","danger","daring","dash","daughter","dawn","day","deal","debate","debris","decade","december","decide","decline","decorate","decrease","deer","defense","define","defy","degree","delay","deliver","demand","demise","denial","dentist","deny","depart","depend","deposit","depth","deputy","derive","describe","desert","design","desk","despair","destroy","detail","detect","develop","device","devote","diagram","dial","diamond","diary","dice","diesel","diet","differ","digital","dignity","dilemma","dinner","dinosaur","direct","dirt","disagree","discover","disease","dish","dismiss","disorder","display","distance","divert","divide","divorce","dizzy","doctor","document","dog","doll","dolphin","domain","donate","donkey","donor","door","dose","double","dove","draft","dragon","drama","drastic","draw","dream","dress","drift","drill","drink","drip","drive","drop","drum","dry","duck","dumb","dune","during","dust","dutch","duty","dwarf","dynamic","eager","eagle","early","earn","earth","easily","east","easy","echo","ecology","economy","edge","edit","educate","effort","egg","eight","either","elbow","elder","electric","elegant","element","elephant","elevator","elite","else","embark","embody","embrace","emerge","emotion","employ","empower","empty","enable","enact","end","endless","endorse","enemy","energy","enforce","engage","engine","enhance","enjoy","enlist","enough","enrich","enroll","ensure","enter","entire","entry","envelope","episode","equal","equip","era","erase","erode","erosion","error","erupt","escape","essay","essence","estate","eternal","ethics","evidence","evil","evoke","evolve","exact","example","excess","exchange","excite","exclude","excuse","execute","exercise","exhaust","exhibit","exile","exist","exit","exotic","expand","expect","expire","explain","expose","express","extend","extra","eye","eyebrow","fabric","face","faculty","fade","faint","faith","fall","false","fame","family","famous","fan","fancy","fantasy","farm","fashion","fat","fatal","father","fatigue","fault","favorite","feature","february","federal","fee","feed","feel","female","fence","festival","fetch","fever","few","fiber","fiction","field","figure","file","film","filter","final","find","fine","finger","finish","fire","firm","first","fiscal","fish","fit","fitness","fix","flag","flame","flash","flat","flavor","flee","flight","flip","float","flock","floor","flower","fluid","flush","fly","foam","focus","fog","foil","fold","follow","food","foot","force","forest","forget","fork","fortune","forum","forward","fossil","foster","found","fox","fragile","frame","frequent","fresh","friend","fringe","frog","front","frost","frown","frozen","fruit","fuel","fun","funny","furnace","fury","future","gadget","gain","galaxy","gallery","game","gap","garage","garbage","garden","garlic","garment","gas","gasp","gate","gather","gauge","gaze","general","genius","genre","gentle","genuine","gesture","ghost","giant","gift","giggle","ginger","giraffe","girl","give","glad","glance","glare","glass","glide","glimpse","globe","gloom","glory","glove","glow","glue","goat","goddess","gold","good","goose","gorilla","gospel","gossip","govern","gown","grab","grace","grain","grant","grape","grass","gravity","great","green","grid","grief","grit","grocery","group","grow","grunt","guard","guess","guide","guilt","guitar","gun","gym","habit","hair","half","hammer","hamster","hand","happy","harbor","hard","harsh","harvest","hat","have","hawk","hazard","head","health","heart","heavy","hedgehog","height","hello","helmet","help","hen","hero","hidden","high","hill","hint","hip","hire","history","hobby","hockey","hold","hole","holiday","hollow","home","honey","hood","hope","horn","horror","horse","hospital","host","hotel","hour","hover","hub","huge","human","humble","humor","hundred","hungry","hunt","hurdle","hurry","hurt","husband","hybrid","ice","icon","idea","identify","idle","ignore","ill","illegal","illness","image","imitate","immense","immune","impact","impose","improve","impulse","inch","include","income","increase","index","indicate","indoor","industry","infant","inflict","inform","inhale","inherit","initial","inject","injury","inmate","inner","innocent","input","inquiry","insane","insect","inside","inspire","install","intact","interest","into","invest","invite","involve","iron","island","isolate","issue","item","ivory","jacket","jaguar","jar","jazz","jealous","jeans","jelly","jewel","job","join","joke","journey","joy","judge","juice","jump","jungle","junior","junk","just","kangaroo","keen","keep","ketchup","key","kick","kid","kidney","kind","kingdom","kiss","kit","kitchen","kite","kitten","kiwi","knee","knife","knock","know","lab","label","labor","ladder","lady","lake","lamp","language","laptop","large","later","latin","laugh","laundry","lava","law","lawn","lawsuit","layer","lazy","leader","leaf","learn","leave","lecture","left","leg","legal","legend","leisure","lemon","lend","length","lens","leopard","lesson","letter","level","liar","liberty","library","license","life","lift","light","like","limb","limit","link","lion","liquid","list","little","live","lizard","load","loan","lobster","local","lock","logic","lonely","long","loop","lottery","loud","lounge","love","loyal","lucky","luggage","lumber","lunar","lunch","luxury","lyrics","machine","mad","magic","magnet","maid","mail","main","major","make","mammal","man","manage","mandate","mango","mansion","manual","maple","marble","march","margin","marine","market","marriage","mask","mass","master","match","material","math","matrix","matter","maximum","maze","meadow","mean","measure","meat","mechanic","medal","media","melody","melt","member","memory","mention","menu","mercy","merge","merit","merry","mesh","message","metal","method","middle","midnight","milk","million","mimic","mind","minimum","minor","minute","miracle","mirror","misery","miss","mistake","mix","mixed","mixture","mobile","model","modify","mom","moment","monitor","monkey","monster","month","moon","moral","more","morning","mosquito","mother","motion","motor","mountain","mouse","move","movie","much","muffin","mule","multiply","muscle","museum","mushroom","music","must","mutual","myself","mystery","myth","naive","name","napkin","narrow","nasty","nation","nature","near","neck","need","negative","neglect","neither","nephew","nerve","nest","net","network","neutral","never","news","next","nice","night","noble","noise","nominee","noodle","normal","north","nose","notable","note","nothing","notice","novel","now","nuclear","number","nurse","nut","oak","obey","object","oblige","obscure","observe","obtain","obvious","occur","ocean","october","odor","off","offer","office","often","oil","okay","old","olive","olympic","omit","once","one","onion","online","only","open","opera","opinion","oppose","option","orange","orbit","orchard","order","ordinary","organ","orient","original","orphan","ostrich","other","outdoor","outer","output","outside","oval","oven","over","own","owner","oxygen","oyster","ozone","pact","paddle","page","pair","palace","palm","panda","panel","panic","panther","paper","parade","parent","park","parrot","party","pass","patch","path","patient","patrol","pattern","pause","pave","payment","peace","peanut","pear","peasant","pelican","pen","penalty","pencil","people","pepper","perfect","permit","person","pet","phone","photo","phrase","physical","piano","picnic","picture","piece","pig","pigeon","pill","pilot","pink","pioneer","pipe","pistol","pitch","pizza","place","planet","plastic","plate","play","please","pledge","pluck","plug","plunge","poem","poet","point","polar","pole","police","pond","pony","pool","popular","portion","position","possible","post","potato","pottery","poverty","powder","power","practice","praise","predict","prefer","prepare","present","pretty","prevent","price","pride","primary","print","priority","prison","private","prize","problem","process","produce","profit","program","project","promote","proof","property","prosper","protect","proud","provide","public","pudding","pull","pulp","pulse","pumpkin","punch","pupil","puppy","purchase","purity","purpose","purse","push","put","puzzle","pyramid","quality","quantum","quarter","question","quick","quit","quiz","quote","rabbit","raccoon","race","rack","radar","radio","rail","rain","raise","rally","ramp","ranch","random","range","rapid","rare","rate","rather","raven","raw","razor","ready","real","reason","rebel","rebuild","recall","receive","recipe","record","recycle","reduce","reflect","reform","refuse","region","regret","regular","reject","relax","release","relief","rely","remain","remember","remind","remove","render","renew","rent","reopen","repair","repeat","replace","report","require","rescue","resemble","resist","resource","response","result","retire","retreat","return","reunion","reveal","review","reward","rhythm","rib","ribbon","rice","rich","ride","ridge","rifle","right","rigid","ring","riot","ripple","risk","ritual","rival","river","road","roast","robot","robust","rocket","romance","roof","rookie","room","rose","rotate","rough","round","route","royal","rubber","rude","rug","rule","run","runway","rural","sad","saddle","sadness","safe","sail","salad","salmon","salon","salt","salute","same","sample","sand","satisfy","satoshi","sauce","sausage","save","say","scale","scan","scare","scatter","scene","scheme","school","science","scissors","scorpion","scout","scrap","screen","script","scrub","sea","search","season","seat","second","secret","section","security","seed","seek","segment","select","sell","seminar","senior","sense","sentence","series","service","session","settle","setup","seven","shadow","shaft","shallow","share","shed","shell","sheriff","shield","shift","shine","ship","shiver","shock","shoe","shoot","shop","short","shoulder","shove","shrimp","shrug","shuffle","shy","sibling","sick","side","siege","sight","sign","silent","silk","silly","silver","similar","simple","since","sing","siren","sister","situate","six","size","skate","sketch","ski","skill","skin","skirt","skull","slab","slam","sleep","slender","slice","slide","slight","slim","slogan","slot","slow","slush","small","smart","smile","smoke","smooth","snack","snake","snap","sniff","snow","soap","soccer","social","sock","soda","soft","solar","soldier","solid","solution","solve","someone","song","soon","sorry","sort","soul","sound","soup","source","south","space","spare","spatial","spawn","speak","special","speed","spell","spend","sphere","spice","spider","spike","spin","spirit","split","spoil","sponsor","spoon","sport","spot","spray","spread","spring","spy","square","squeeze","squirrel","stable","stadium","staff","stage","stairs","stamp","stand","start","state","stay","steak","steel","stem","step","stereo","stick","still","sting","stock","stomach","stone","stool","story","stove","strategy","street","strike","strong","struggle","student","stuff","stumble","style","subject","submit","subway","success","such","sudden","suffer","sugar","suggest","suit","summer","sun","sunny","sunset","super","supply","supreme","sure","surface","surge","surprise","surround","survey","suspect","sustain","swallow","swamp","swap","swarm","swear","sweet","swift","swim","swing","switch","sword","symbol","symptom","syrup","system","table","tackle","tag","tail","talent","talk","tank","tape","target","task","taste","tattoo","taxi","teach","team","tell","ten","tenant","tennis","tent","term","test","text","thank","that","theme","then","theory","there","they","thing","this","thought","three","thrive","throw","thumb","thunder","ticket","tide","tiger","tilt","timber","time","tiny","tip","tired","tissue","title","toast","tobacco","today","toddler","toe","together","toilet","token","tomato","tomorrow","tone","tongue","tonight","tool","tooth","top","topic","topple","torch","tornado","tortoise","toss","total","tourist","toward","tower","town","toy","track","trade","traffic","tragic","train","transfer","trap","trash","travel","tray","treat","tree","trend","trial","tribe","trick","trigger","trim","trip","trophy","trouble","truck","true","truly","trumpet","trust","truth","try","tube","tuition","tumble","tuna","tunnel","turkey","turn","turtle","twelve","twenty","twice","twin","twist","two","type","typical","ugly","umbrella","unable","unaware","uncle","uncover","under","undo","unfair","unfold","unhappy","uniform","unique","unit","universe","unknown","unlock","until","unusual","unveil","update","upgrade","uphold","upon","upper","upset","urban","urge","usage","use","used","useful","useless","usual","utility","vacant","vacuum","vague","valid","valley","valve","van","vanish","vapor","various","vast","vault","vehicle","velvet","vendor","venture","venue","verb","verify","version","very","vessel","veteran","viable","vibrant","vicious","victory","video","view","village","vintage","violin","virtual","virus","visa","visit","visual","vital","vivid","vocal","voice","void","volcano","volume","vote","voyage","wage","wagon","wait","walk","wall","walnut","want","warfare","warm","warrior","wash","wasp","waste","water","wave","way","wealth","weapon","wear","weasel","weather","web","wedding","weekend","weird","welcome","west","wet","whale","what","wheat","wheel","when","where","whip","whisper","wide","width","wife","wild","will","win","window","wine","wing","wink","winner","winter","wire","wisdom","wise","wish","witness","wolf","woman","wonder","wood","wool","word","work","world","worry","worth","wrap","wreck","wrestle","wrist","write","wrong","yard","year","yellow","you","young","youth","zebra","zero","zone","zoo"]},{}],35:[function(e,r,t){r.exports=["abaisser","abandon","abdiquer","abeille","abolir","aborder","aboutir","aboyer","abrasif","abreuver","abriter","abroger","abrupt","absence","absolu","absurde","abusif","abyssal","académie","acajou","acarien","accabler","accepter","acclamer","accolade","accroche","accuser","acerbe","achat","acheter","aciduler","acier","acompte","acquérir","acronyme","acteur","actif","actuel","adepte","adéquat","adhésif","adjectif","adjuger","admettre","admirer","adopter","adorer","adoucir","adresse","adroit","adulte","adverbe","aérer","aéronef","affaire","affecter","affiche","affreux","affubler","agacer","agencer","agile","agiter","agrafer","agréable","agrume","aider","aiguille","ailier","aimable","aisance","ajouter","ajuster","alarmer","alchimie","alerte","algèbre","algue","aliéner","aliment","alléger","alliage","allouer","allumer","alourdir","alpaga","altesse","alvéole","amateur","ambigu","ambre","aménager","amertume","amidon","amiral","amorcer","amour","amovible","amphibie","ampleur","amusant","analyse","anaphore","anarchie","anatomie","ancien","anéantir","angle","angoisse","anguleux","animal","annexer","annonce","annuel","anodin","anomalie","anonyme","anormal","antenne","antidote","anxieux","apaiser","apéritif","aplanir","apologie","appareil","appeler","apporter","appuyer","aquarium","aqueduc","arbitre","arbuste","ardeur","ardoise","argent","arlequin","armature","armement","armoire","armure","arpenter","arracher","arriver","arroser","arsenic","artériel","article","aspect","asphalte","aspirer","assaut","asservir","assiette","associer","assurer","asticot","astre","astuce","atelier","atome","atrium","atroce","attaque","attentif","attirer","attraper","aubaine","auberge","audace","audible","augurer","aurore","automne","autruche","avaler","avancer","avarice","avenir","averse","aveugle","aviateur","avide","avion","aviser","avoine","avouer","avril","axial","axiome","badge","bafouer","bagage","baguette","baignade","balancer","balcon","baleine","balisage","bambin","bancaire","bandage","banlieue","bannière","banquier","barbier","baril","baron","barque","barrage","bassin","bastion","bataille","bateau","batterie","baudrier","bavarder","belette","bélier","belote","bénéfice","berceau","berger","berline","bermuda","besace","besogne","bétail","beurre","biberon","bicycle","bidule","bijou","bilan","bilingue","billard","binaire","biologie","biopsie","biotype","biscuit","bison","bistouri","bitume","bizarre","blafard","blague","blanchir","blessant","blinder","blond","bloquer","blouson","bobard","bobine","boire","boiser","bolide","bonbon","bondir","bonheur","bonifier","bonus","bordure","borne","botte","boucle","boueux","bougie","boulon","bouquin","bourse","boussole","boutique","boxeur","branche","brasier","brave","brebis","brèche","breuvage","bricoler","brigade","brillant","brioche","brique","brochure","broder","bronzer","brousse","broyeur","brume","brusque","brutal","bruyant","buffle","buisson","bulletin","bureau","burin","bustier","butiner","butoir","buvable","buvette","cabanon","cabine","cachette","cadeau","cadre","caféine","caillou","caisson","calculer","calepin","calibre","calmer","calomnie","calvaire","camarade","caméra","camion","campagne","canal","caneton","canon","cantine","canular","capable","caporal","caprice","capsule","capter","capuche","carabine","carbone","caresser","caribou","carnage","carotte","carreau","carton","cascade","casier","casque","cassure","causer","caution","cavalier","caverne","caviar","cédille","ceinture","céleste","cellule","cendrier","censurer","central","cercle","cérébral","cerise","cerner","cerveau","cesser","chagrin","chaise","chaleur","chambre","chance","chapitre","charbon","chasseur","chaton","chausson","chavirer","chemise","chenille","chéquier","chercher","cheval","chien","chiffre","chignon","chimère","chiot","chlorure","chocolat","choisir","chose","chouette","chrome","chute","cigare","cigogne","cimenter","cinéma","cintrer","circuler","cirer","cirque","citerne","citoyen","citron","civil","clairon","clameur","claquer","classe","clavier","client","cligner","climat","clivage","cloche","clonage","cloporte","cobalt","cobra","cocasse","cocotier","coder","codifier","coffre","cogner","cohésion","coiffer","coincer","colère","colibri","colline","colmater","colonel","combat","comédie","commande","compact","concert","conduire","confier","congeler","connoter","consonne","contact","convexe","copain","copie","corail","corbeau","cordage","corniche","corpus","correct","cortège","cosmique","costume","coton","coude","coupure","courage","couteau","couvrir","coyote","crabe","crainte","cravate","crayon","créature","créditer","crémeux","creuser","crevette","cribler","crier","cristal","critère","croire","croquer","crotale","crucial","cruel","crypter","cubique","cueillir","cuillère","cuisine","cuivre","culminer","cultiver","cumuler","cupide","curatif","curseur","cyanure","cycle","cylindre","cynique","daigner","damier","danger","danseur","dauphin","débattre","débiter","déborder","débrider","débutant","décaler","décembre","déchirer","décider","déclarer","décorer","décrire","décupler","dédale","déductif","déesse","défensif","défiler","défrayer","dégager","dégivrer","déglutir","dégrafer","déjeuner","délice","déloger","demander","demeurer","démolir","dénicher","dénouer","dentelle","dénuder","départ","dépenser","déphaser","déplacer","déposer","déranger","dérober","désastre","descente","désert","désigner","désobéir","dessiner","destrier","détacher","détester","détourer","détresse","devancer","devenir","deviner","devoir","diable","dialogue","diamant","dicter","différer","digérer","digital","digne","diluer","dimanche","diminuer","dioxyde","directif","diriger","discuter","disposer","dissiper","distance","divertir","diviser","docile","docteur","dogme","doigt","domaine","domicile","dompter","donateur","donjon","donner","dopamine","dortoir","dorure","dosage","doseur","dossier","dotation","douanier","double","douceur","douter","doyen","dragon","draper","dresser","dribbler","droiture","duperie","duplexe","durable","durcir","dynastie","éblouir","écarter","écharpe","échelle","éclairer","éclipse","éclore","écluse","école","économie","écorce","écouter","écraser","écrémer","écrivain","écrou","écume","écureuil","édifier","éduquer","effacer","effectif","effigie","effort","effrayer","effusion","égaliser","égarer","éjecter","élaborer","élargir","électron","élégant","éléphant","élève","éligible","élitisme","éloge","élucider","éluder","emballer","embellir","embryon","émeraude","émission","emmener","émotion","émouvoir","empereur","employer","emporter","emprise","émulsion","encadrer","enchère","enclave","encoche","endiguer","endosser","endroit","enduire","énergie","enfance","enfermer","enfouir","engager","engin","englober","énigme","enjamber","enjeu","enlever","ennemi","ennuyeux","enrichir","enrobage","enseigne","entasser","entendre","entier","entourer","entraver","énumérer","envahir","enviable","envoyer","enzyme","éolien","épaissir","épargne","épatant","épaule","épicerie","épidémie","épier","épilogue","épine","épisode","épitaphe","époque","épreuve","éprouver","épuisant","équerre","équipe","ériger","érosion","erreur","éruption","escalier","espadon","espèce","espiègle","espoir","esprit","esquiver","essayer","essence","essieu","essorer","estime","estomac","estrade","étagère","étaler","étanche","étatique","éteindre","étendoir","éternel","éthanol","éthique","ethnie","étirer","étoffer","étoile","étonnant","étourdir","étrange","étroit","étude","euphorie","évaluer","évasion","éventail","évidence","éviter","évolutif","évoquer","exact","exagérer","exaucer","exceller","excitant","exclusif","excuse","exécuter","exemple","exercer","exhaler","exhorter","exigence","exiler","exister","exotique","expédier","explorer","exposer","exprimer","exquis","extensif","extraire","exulter","fable","fabuleux","facette","facile","facture","faiblir","falaise","fameux","famille","farceur","farfelu","farine","farouche","fasciner","fatal","fatigue","faucon","fautif","faveur","favori","fébrile","féconder","fédérer","félin","femme","fémur","fendoir","féodal","fermer","féroce","ferveur","festival","feuille","feutre","février","fiasco","ficeler","fictif","fidèle","figure","filature","filetage","filière","filleul","filmer","filou","filtrer","financer","finir","fiole","firme","fissure","fixer","flairer","flamme","flasque","flatteur","fléau","flèche","fleur","flexion","flocon","flore","fluctuer","fluide","fluvial","folie","fonderie","fongible","fontaine","forcer","forgeron","formuler","fortune","fossile","foudre","fougère","fouiller","foulure","fourmi","fragile","fraise","franchir","frapper","frayeur","frégate","freiner","frelon","frémir","frénésie","frère","friable","friction","frisson","frivole","froid","fromage","frontal","frotter","fruit","fugitif","fuite","fureur","furieux","furtif","fusion","futur","gagner","galaxie","galerie","gambader","garantir","gardien","garnir","garrigue","gazelle","gazon","géant","gélatine","gélule","gendarme","général","génie","genou","gentil","géologie","géomètre","géranium","germe","gestuel","geyser","gibier","gicler","girafe","givre","glace","glaive","glisser","globe","gloire","glorieux","golfeur","gomme","gonfler","gorge","gorille","goudron","gouffre","goulot","goupille","gourmand","goutte","graduel","graffiti","graine","grand","grappin","gratuit","gravir","grenat","griffure","griller","grimper","grogner","gronder","grotte","groupe","gruger","grutier","gruyère","guépard","guerrier","guide","guimauve","guitare","gustatif","gymnaste","gyrostat","habitude","hachoir","halte","hameau","hangar","hanneton","haricot","harmonie","harpon","hasard","hélium","hématome","herbe","hérisson","hermine","héron","hésiter","heureux","hiberner","hibou","hilarant","histoire","hiver","homard","hommage","homogène","honneur","honorer","honteux","horde","horizon","horloge","hormone","horrible","houleux","housse","hublot","huileux","humain","humble","humide","humour","hurler","hydromel","hygiène","hymne","hypnose","idylle","ignorer","iguane","illicite","illusion","image","imbiber","imiter","immense","immobile","immuable","impact","impérial","implorer","imposer","imprimer","imputer","incarner","incendie","incident","incliner","incolore","indexer","indice","inductif","inédit","ineptie","inexact","infini","infliger","informer","infusion","ingérer","inhaler","inhiber","injecter","injure","innocent","inoculer","inonder","inscrire","insecte","insigne","insolite","inspirer","instinct","insulter","intact","intense","intime","intrigue","intuitif","inutile","invasion","inventer","inviter","invoquer","ironique","irradier","irréel","irriter","isoler","ivoire","ivresse","jaguar","jaillir","jambe","janvier","jardin","jauger","jaune","javelot","jetable","jeton","jeudi","jeunesse","joindre","joncher","jongler","joueur","jouissif","journal","jovial","joyau","joyeux","jubiler","jugement","junior","jupon","juriste","justice","juteux","juvénile","kayak","kimono","kiosque","label","labial","labourer","lacérer","lactose","lagune","laine","laisser","laitier","lambeau","lamelle","lampe","lanceur","langage","lanterne","lapin","largeur","larme","laurier","lavabo","lavoir","lecture","légal","léger","légume","lessive","lettre","levier","lexique","lézard","liasse","libérer","libre","licence","licorne","liège","lièvre","ligature","ligoter","ligue","limer","limite","limonade","limpide","linéaire","lingot","lionceau","liquide","lisière","lister","lithium","litige","littoral","livreur","logique","lointain","loisir","lombric","loterie","louer","lourd","loutre","louve","loyal","lubie","lucide","lucratif","lueur","lugubre","luisant","lumière","lunaire","lundi","luron","lutter","luxueux","machine","magasin","magenta","magique","maigre","maillon","maintien","mairie","maison","majorer","malaxer","maléfice","malheur","malice","mallette","mammouth","mandater","maniable","manquant","manteau","manuel","marathon","marbre","marchand","mardi","maritime","marqueur","marron","marteler","mascotte","massif","matériel","matière","matraque","maudire","maussade","mauve","maximal","méchant","méconnu","médaille","médecin","méditer","méduse","meilleur","mélange","mélodie","membre","mémoire","menacer","mener","menhir","mensonge","mentor","mercredi","mérite","merle","messager","mesure","métal","météore","méthode","métier","meuble","miauler","microbe","miette","mignon","migrer","milieu","million","mimique","mince","minéral","minimal","minorer","minute","miracle","miroiter","missile","mixte","mobile","moderne","moelleux","mondial","moniteur","monnaie","monotone","monstre","montagne","monument","moqueur","morceau","morsure","mortier","moteur","motif","mouche","moufle","moulin","mousson","mouton","mouvant","multiple","munition","muraille","murène","murmure","muscle","muséum","musicien","mutation","muter","mutuel","myriade","myrtille","mystère","mythique","nageur","nappe","narquois","narrer","natation","nation","nature","naufrage","nautique","navire","nébuleux","nectar","néfaste","négation","négliger","négocier","neige","nerveux","nettoyer","neurone","neutron","neveu","niche","nickel","nitrate","niveau","noble","nocif","nocturne","noirceur","noisette","nomade","nombreux","nommer","normatif","notable","notifier","notoire","nourrir","nouveau","novateur","novembre","novice","nuage","nuancer","nuire","nuisible","numéro","nuptial","nuque","nutritif","obéir","objectif","obliger","obscur","observer","obstacle","obtenir","obturer","occasion","occuper","océan","octobre","octroyer","octupler","oculaire","odeur","odorant","offenser","officier","offrir","ogive","oiseau","oisillon","olfactif","olivier","ombrage","omettre","onctueux","onduler","onéreux","onirique","opale","opaque","opérer","opinion","opportun","opprimer","opter","optique","orageux","orange","orbite","ordonner","oreille","organe","orgueil","orifice","ornement","orque","ortie","osciller","osmose","ossature","otarie","ouragan","ourson","outil","outrager","ouvrage","ovation","oxyde","oxygène","ozone","paisible","palace","palmarès","palourde","palper","panache","panda","pangolin","paniquer","panneau","panorama","pantalon","papaye","papier","papoter","papyrus","paradoxe","parcelle","paresse","parfumer","parler","parole","parrain","parsemer","partager","parure","parvenir","passion","pastèque","paternel","patience","patron","pavillon","pavoiser","payer","paysage","peigne","peintre","pelage","pélican","pelle","pelouse","peluche","pendule","pénétrer","pénible","pensif","pénurie","pépite","péplum","perdrix","perforer","période","permuter","perplexe","persil","perte","peser","pétale","petit","pétrir","peuple","pharaon","phobie","phoque","photon","phrase","physique","piano","pictural","pièce","pierre","pieuvre","pilote","pinceau","pipette","piquer","pirogue","piscine","piston","pivoter","pixel","pizza","placard","plafond","plaisir","planer","plaque","plastron","plateau","pleurer","plexus","pliage","plomb","plonger","pluie","plumage","pochette","poésie","poète","pointe","poirier","poisson","poivre","polaire","policier","pollen","polygone","pommade","pompier","ponctuel","pondérer","poney","portique","position","posséder","posture","potager","poteau","potion","pouce","poulain","poumon","pourpre","poussin","pouvoir","prairie","pratique","précieux","prédire","préfixe","prélude","prénom","présence","prétexte","prévoir","primitif","prince","prison","priver","problème","procéder","prodige","profond","progrès","proie","projeter","prologue","promener","propre","prospère","protéger","prouesse","proverbe","prudence","pruneau","psychose","public","puceron","puiser","pulpe","pulsar","punaise","punitif","pupitre","purifier","puzzle","pyramide","quasar","querelle","question","quiétude","quitter","quotient","racine","raconter","radieux","ragondin","raideur","raisin","ralentir","rallonge","ramasser","rapide","rasage","ratisser","ravager","ravin","rayonner","réactif","réagir","réaliser","réanimer","recevoir","réciter","réclamer","récolter","recruter","reculer","recycler","rédiger","redouter","refaire","réflexe","réformer","refrain","refuge","régalien","région","réglage","régulier","réitérer","rejeter","rejouer","relatif","relever","relief","remarque","remède","remise","remonter","remplir","remuer","renard","renfort","renifler","renoncer","rentrer","renvoi","replier","reporter","reprise","reptile","requin","réserve","résineux","résoudre","respect","rester","résultat","rétablir","retenir","réticule","retomber","retracer","réunion","réussir","revanche","revivre","révolte","révulsif","richesse","rideau","rieur","rigide","rigoler","rincer","riposter","risible","risque","rituel","rival","rivière","rocheux","romance","rompre","ronce","rondin","roseau","rosier","rotatif","rotor","rotule","rouge","rouille","rouleau","routine","royaume","ruban","rubis","ruche","ruelle","rugueux","ruiner","ruisseau","ruser","rustique","rythme","sabler","saboter","sabre","sacoche","safari","sagesse","saisir","salade","salive","salon","saluer","samedi","sanction","sanglier","sarcasme","sardine","saturer","saugrenu","saumon","sauter","sauvage","savant","savonner","scalpel","scandale","scélérat","scénario","sceptre","schéma","science","scinder","score","scrutin","sculpter","séance","sécable","sécher","secouer","sécréter","sédatif","séduire","seigneur","séjour","sélectif","semaine","sembler","semence","séminal","sénateur","sensible","sentence","séparer","séquence","serein","sergent","sérieux","serrure","sérum","service","sésame","sévir","sevrage","sextuple","sidéral","siècle","siéger","siffler","sigle","signal","silence","silicium","simple","sincère","sinistre","siphon","sirop","sismique","situer","skier","social","socle","sodium","soigneux","soldat","soleil","solitude","soluble","sombre","sommeil","somnoler","sonde","songeur","sonnette","sonore","sorcier","sortir","sosie","sottise","soucieux","soudure","souffle","soulever","soupape","source","soutirer","souvenir","spacieux","spatial","spécial","sphère","spiral","stable","station","sternum","stimulus","stipuler","strict","studieux","stupeur","styliste","sublime","substrat","subtil","subvenir","succès","sucre","suffixe","suggérer","suiveur","sulfate","superbe","supplier","surface","suricate","surmener","surprise","sursaut","survie","suspect","syllabe","symbole","symétrie","synapse","syntaxe","système","tabac","tablier","tactile","tailler","talent","talisman","talonner","tambour","tamiser","tangible","tapis","taquiner","tarder","tarif","tartine","tasse","tatami","tatouage","taupe","taureau","taxer","témoin","temporel","tenaille","tendre","teneur","tenir","tension","terminer","terne","terrible","tétine","texte","thème","théorie","thérapie","thorax","tibia","tiède","timide","tirelire","tiroir","tissu","titane","titre","tituber","toboggan","tolérant","tomate","tonique","tonneau","toponyme","torche","tordre","tornade","torpille","torrent","torse","tortue","totem","toucher","tournage","tousser","toxine","traction","trafic","tragique","trahir","train","trancher","travail","trèfle","tremper","trésor","treuil","triage","tribunal","tricoter","trilogie","triomphe","tripler","triturer","trivial","trombone","tronc","tropical","troupeau","tuile","tulipe","tumulte","tunnel","turbine","tuteur","tutoyer","tuyau","tympan","typhon","typique","tyran","ubuesque","ultime","ultrason","unanime","unifier","union","unique","unitaire","univers","uranium","urbain","urticant","usage","usine","usuel","usure","utile","utopie","vacarme","vaccin","vagabond","vague","vaillant","vaincre","vaisseau","valable","valise","vallon","valve","vampire","vanille","vapeur","varier","vaseux","vassal","vaste","vecteur","vedette","végétal","véhicule","veinard","véloce","vendredi","vénérer","venger","venimeux","ventouse","verdure","vérin","vernir","verrou","verser","vertu","veston","vétéran","vétuste","vexant","vexer","viaduc","viande","victoire","vidange","vidéo","vignette","vigueur","vilain","village","vinaigre","violon","vipère","virement","virtuose","virus","visage","viseur","vision","visqueux","visuel","vital","vitesse","viticole","vitrine","vivace","vivipare","vocation","voguer","voile","voisin","voiture","volaille","volcan","voltiger","volume","vorace","vortex","voter","vouloir","voyage","voyelle","wagon","xénon","yacht","zèbre","zénith","zeste","zoologie"]},{}],36:[function(e,r,t){r.exports=["abaco","abbaglio","abbinato","abete","abisso","abolire","abrasivo","abrogato","accadere","accenno","accusato","acetone","achille","acido","acqua","acre","acrilico","acrobata","acuto","adagio","addebito","addome","adeguato","aderire","adipe","adottare","adulare","affabile","affetto","affisso","affranto","aforisma","afoso","africano","agave","agente","agevole","aggancio","agire","agitare","agonismo","agricolo","agrumeto","aguzzo","alabarda","alato","albatro","alberato","albo","albume","alce","alcolico","alettone","alfa","algebra","aliante","alibi","alimento","allagato","allegro","allievo","allodola","allusivo","almeno","alogeno","alpaca","alpestre","altalena","alterno","alticcio","altrove","alunno","alveolo","alzare","amalgama","amanita","amarena","ambito","ambrato","ameba","america","ametista","amico","ammasso","ammenda","ammirare","ammonito","amore","ampio","ampliare","amuleto","anacardo","anagrafe","analista","anarchia","anatra","anca","ancella","ancora","andare","andrea","anello","angelo","angolare","angusto","anima","annegare","annidato","anno","annuncio","anonimo","anticipo","anzi","apatico","apertura","apode","apparire","appetito","appoggio","approdo","appunto","aprile","arabica","arachide","aragosta","araldica","arancio","aratura","arazzo","arbitro","archivio","ardito","arenile","argento","argine","arguto","aria","armonia","arnese","arredato","arringa","arrosto","arsenico","arso","artefice","arzillo","asciutto","ascolto","asepsi","asettico","asfalto","asino","asola","aspirato","aspro","assaggio","asse","assoluto","assurdo","asta","astenuto","astice","astratto","atavico","ateismo","atomico","atono","attesa","attivare","attorno","attrito","attuale","ausilio","austria","autista","autonomo","autunno","avanzato","avere","avvenire","avviso","avvolgere","azione","azoto","azzimo","azzurro","babele","baccano","bacino","baco","badessa","badilata","bagnato","baita","balcone","baldo","balena","ballata","balzano","bambino","bandire","baraonda","barbaro","barca","baritono","barlume","barocco","basilico","basso","batosta","battuto","baule","bava","bavosa","becco","beffa","belgio","belva","benda","benevole","benigno","benzina","bere","berlina","beta","bibita","bici","bidone","bifido","biga","bilancia","bimbo","binocolo","biologo","bipede","bipolare","birbante","birra","biscotto","bisesto","bisnonno","bisonte","bisturi","bizzarro","blando","blatta","bollito","bonifico","bordo","bosco","botanico","bottino","bozzolo","braccio","bradipo","brama","branca","bravura","bretella","brevetto","brezza","briglia","brillante","brindare","broccolo","brodo","bronzina","brullo","bruno","bubbone","buca","budino","buffone","buio","bulbo","buono","burlone","burrasca","bussola","busta","cadetto","caduco","calamaro","calcolo","calesse","calibro","calmo","caloria","cambusa","camerata","camicia","cammino","camola","campale","canapa","candela","cane","canino","canotto","cantina","capace","capello","capitolo","capogiro","cappero","capra","capsula","carapace","carcassa","cardo","carisma","carovana","carretto","cartolina","casaccio","cascata","caserma","caso","cassone","castello","casuale","catasta","catena","catrame","cauto","cavillo","cedibile","cedrata","cefalo","celebre","cellulare","cena","cenone","centesimo","ceramica","cercare","certo","cerume","cervello","cesoia","cespo","ceto","chela","chiaro","chicca","chiedere","chimera","china","chirurgo","chitarra","ciao","ciclismo","cifrare","cigno","cilindro","ciottolo","circa","cirrosi","citrico","cittadino","ciuffo","civetta","civile","classico","clinica","cloro","cocco","codardo","codice","coerente","cognome","collare","colmato","colore","colposo","coltivato","colza","coma","cometa","commando","comodo","computer","comune","conciso","condurre","conferma","congelare","coniuge","connesso","conoscere","consumo","continuo","convegno","coperto","copione","coppia","copricapo","corazza","cordata","coricato","cornice","corolla","corpo","corredo","corsia","cortese","cosmico","costante","cottura","covato","cratere","cravatta","creato","credere","cremoso","crescita","creta","criceto","crinale","crisi","critico","croce","cronaca","crostata","cruciale","crusca","cucire","cuculo","cugino","cullato","cupola","curatore","cursore","curvo","cuscino","custode","dado","daino","dalmata","damerino","daniela","dannoso","danzare","datato","davanti","davvero","debutto","decennio","deciso","declino","decollo","decreto","dedicato","definito","deforme","degno","delegare","delfino","delirio","delta","demenza","denotato","dentro","deposito","derapata","derivare","deroga","descritto","deserto","desiderio","desumere","detersivo","devoto","diametro","dicembre","diedro","difeso","diffuso","digerire","digitale","diluvio","dinamico","dinnanzi","dipinto","diploma","dipolo","diradare","dire","dirotto","dirupo","disagio","discreto","disfare","disgelo","disposto","distanza","disumano","dito","divano","divelto","dividere","divorato","doblone","docente","doganale","dogma","dolce","domato","domenica","dominare","dondolo","dono","dormire","dote","dottore","dovuto","dozzina","drago","druido","dubbio","dubitare","ducale","duna","duomo","duplice","duraturo","ebano","eccesso","ecco","eclissi","economia","edera","edicola","edile","editoria","educare","egemonia","egli","egoismo","egregio","elaborato","elargire","elegante","elencato","eletto","elevare","elfico","elica","elmo","elsa","eluso","emanato","emblema","emesso","emiro","emotivo","emozione","empirico","emulo","endemico","enduro","energia","enfasi","enoteca","entrare","enzima","epatite","epilogo","episodio","epocale","eppure","equatore","erario","erba","erboso","erede","eremita","erigere","ermetico","eroe","erosivo","errante","esagono","esame","esanime","esaudire","esca","esempio","esercito","esibito","esigente","esistere","esito","esofago","esortato","esoso","espanso","espresso","essenza","esso","esteso","estimare","estonia","estroso","esultare","etilico","etnico","etrusco","etto","euclideo","europa","evaso","evidenza","evitato","evoluto","evviva","fabbrica","faccenda","fachiro","falco","famiglia","fanale","fanfara","fango","fantasma","fare","farfalla","farinoso","farmaco","fascia","fastoso","fasullo","faticare","fato","favoloso","febbre","fecola","fede","fegato","felpa","feltro","femmina","fendere","fenomeno","fermento","ferro","fertile","fessura","festivo","fetta","feudo","fiaba","fiducia","fifa","figurato","filo","finanza","finestra","finire","fiore","fiscale","fisico","fiume","flacone","flamenco","flebo","flemma","florido","fluente","fluoro","fobico","focaccia","focoso","foderato","foglio","folata","folclore","folgore","fondente","fonetico","fonia","fontana","forbito","forchetta","foresta","formica","fornaio","foro","fortezza","forzare","fosfato","fosso","fracasso","frana","frassino","fratello","freccetta","frenata","fresco","frigo","frollino","fronde","frugale","frutta","fucilata","fucsia","fuggente","fulmine","fulvo","fumante","fumetto","fumoso","fune","funzione","fuoco","furbo","furgone","furore","fuso","futile","gabbiano","gaffe","galateo","gallina","galoppo","gambero","gamma","garanzia","garbo","garofano","garzone","gasdotto","gasolio","gastrico","gatto","gaudio","gazebo","gazzella","geco","gelatina","gelso","gemello","gemmato","gene","genitore","gennaio","genotipo","gergo","ghepardo","ghiaccio","ghisa","giallo","gilda","ginepro","giocare","gioiello","giorno","giove","girato","girone","gittata","giudizio","giurato","giusto","globulo","glutine","gnomo","gobba","golf","gomito","gommone","gonfio","gonna","governo","gracile","grado","grafico","grammo","grande","grattare","gravoso","grazia","greca","gregge","grifone","grigio","grinza","grotta","gruppo","guadagno","guaio","guanto","guardare","gufo","guidare","ibernato","icona","identico","idillio","idolo","idra","idrico","idrogeno","igiene","ignaro","ignorato","ilare","illeso","illogico","illudere","imballo","imbevuto","imbocco","imbuto","immane","immerso","immolato","impacco","impeto","impiego","importo","impronta","inalare","inarcare","inattivo","incanto","incendio","inchino","incisivo","incluso","incontro","incrocio","incubo","indagine","india","indole","inedito","infatti","infilare","inflitto","ingaggio","ingegno","inglese","ingordo","ingrosso","innesco","inodore","inoltrare","inondato","insano","insetto","insieme","insonnia","insulina","intasato","intero","intonaco","intuito","inumidire","invalido","invece","invito","iperbole","ipnotico","ipotesi","ippica","iride","irlanda","ironico","irrigato","irrorare","isolato","isotopo","isterico","istituto","istrice","italia","iterare","labbro","labirinto","lacca","lacerato","lacrima","lacuna","laddove","lago","lampo","lancetta","lanterna","lardoso","larga","laringe","lastra","latenza","latino","lattuga","lavagna","lavoro","legale","leggero","lembo","lentezza","lenza","leone","lepre","lesivo","lessato","lesto","letterale","leva","levigato","libero","lido","lievito","lilla","limatura","limitare","limpido","lineare","lingua","liquido","lira","lirica","lisca","lite","litigio","livrea","locanda","lode","logica","lombare","londra","longevo","loquace","lorenzo","loto","lotteria","luce","lucidato","lumaca","luminoso","lungo","lupo","luppolo","lusinga","lusso","lutto","macabro","macchina","macero","macinato","madama","magico","maglia","magnete","magro","maiolica","malafede","malgrado","malinteso","malsano","malto","malumore","mana","mancia","mandorla","mangiare","manifesto","mannaro","manovra","mansarda","mantide","manubrio","mappa","maratona","marcire","maretta","marmo","marsupio","maschera","massaia","mastino","materasso","matricola","mattone","maturo","mazurca","meandro","meccanico","mecenate","medesimo","meditare","mega","melassa","melis","melodia","meninge","meno","mensola","mercurio","merenda","merlo","meschino","mese","messere","mestolo","metallo","metodo","mettere","miagolare","mica","micelio","michele","microbo","midollo","miele","migliore","milano","milite","mimosa","minerale","mini","minore","mirino","mirtillo","miscela","missiva","misto","misurare","mitezza","mitigare","mitra","mittente","mnemonico","modello","modifica","modulo","mogano","mogio","mole","molosso","monastero","monco","mondina","monetario","monile","monotono","monsone","montato","monviso","mora","mordere","morsicato","mostro","motivato","motosega","motto","movenza","movimento","mozzo","mucca","mucosa","muffa","mughetto","mugnaio","mulatto","mulinello","multiplo","mummia","munto","muovere","murale","musa","muscolo","musica","mutevole","muto","nababbo","nafta","nanometro","narciso","narice","narrato","nascere","nastrare","naturale","nautica","naviglio","nebulosa","necrosi","negativo","negozio","nemmeno","neofita","neretto","nervo","nessuno","nettuno","neutrale","neve","nevrotico","nicchia","ninfa","nitido","nobile","nocivo","nodo","nome","nomina","nordico","normale","norvegese","nostrano","notare","notizia","notturno","novella","nucleo","nulla","numero","nuovo","nutrire","nuvola","nuziale","oasi","obbedire","obbligo","obelisco","oblio","obolo","obsoleto","occasione","occhio","occidente","occorrere","occultare","ocra","oculato","odierno","odorare","offerta","offrire","offuscato","oggetto","oggi","ognuno","olandese","olfatto","oliato","oliva","ologramma","oltre","omaggio","ombelico","ombra","omega","omissione","ondoso","onere","onice","onnivoro","onorevole","onta","operato","opinione","opposto","oracolo","orafo","ordine","orecchino","orefice","orfano","organico","origine","orizzonte","orma","ormeggio","ornativo","orologio","orrendo","orribile","ortensia","ortica","orzata","orzo","osare","oscurare","osmosi","ospedale","ospite","ossa","ossidare","ostacolo","oste","otite","otre","ottagono","ottimo","ottobre","ovale","ovest","ovino","oviparo","ovocito","ovunque","ovviare","ozio","pacchetto","pace","pacifico","padella","padrone","paese","paga","pagina","palazzina","palesare","pallido","palo","palude","pandoro","pannello","paolo","paonazzo","paprica","parabola","parcella","parere","pargolo","pari","parlato","parola","partire","parvenza","parziale","passivo","pasticca","patacca","patologia","pattume","pavone","peccato","pedalare","pedonale","peggio","peloso","penare","pendice","penisola","pennuto","penombra","pensare","pentola","pepe","pepita","perbene","percorso","perdonato","perforare","pergamena","periodo","permesso","perno","perplesso","persuaso","pertugio","pervaso","pesatore","pesista","peso","pestifero","petalo","pettine","petulante","pezzo","piacere","pianta","piattino","piccino","picozza","piega","pietra","piffero","pigiama","pigolio","pigro","pila","pilifero","pillola","pilota","pimpante","pineta","pinna","pinolo","pioggia","piombo","piramide","piretico","pirite","pirolisi","pitone","pizzico","placebo","planare","plasma","platano","plenario","pochezza","poderoso","podismo","poesia","poggiare","polenta","poligono","pollice","polmonite","polpetta","polso","poltrona","polvere","pomice","pomodoro","ponte","popoloso","porfido","poroso","porpora","porre","portata","posa","positivo","possesso","postulato","potassio","potere","pranzo","prassi","pratica","precluso","predica","prefisso","pregiato","prelievo","premere","prenotare","preparato","presenza","pretesto","prevalso","prima","principe","privato","problema","procura","produrre","profumo","progetto","prolunga","promessa","pronome","proposta","proroga","proteso","prova","prudente","prugna","prurito","psiche","pubblico","pudica","pugilato","pugno","pulce","pulito","pulsante","puntare","pupazzo","pupilla","puro","quadro","qualcosa","quasi","querela","quota","raccolto","raddoppio","radicale","radunato","raffica","ragazzo","ragione","ragno","ramarro","ramingo","ramo","randagio","rantolare","rapato","rapina","rappreso","rasatura","raschiato","rasente","rassegna","rastrello","rata","ravveduto","reale","recepire","recinto","recluta","recondito","recupero","reddito","redimere","regalato","registro","regola","regresso","relazione","remare","remoto","renna","replica","reprimere","reputare","resa","residente","responso","restauro","rete","retina","retorica","rettifica","revocato","riassunto","ribadire","ribelle","ribrezzo","ricarica","ricco","ricevere","riciclato","ricordo","ricreduto","ridicolo","ridurre","rifasare","riflesso","riforma","rifugio","rigare","rigettato","righello","rilassato","rilevato","rimanere","rimbalzo","rimedio","rimorchio","rinascita","rincaro","rinforzo","rinnovo","rinomato","rinsavito","rintocco","rinuncia","rinvenire","riparato","ripetuto","ripieno","riportare","ripresa","ripulire","risata","rischio","riserva","risibile","riso","rispetto","ristoro","risultato","risvolto","ritardo","ritegno","ritmico","ritrovo","riunione","riva","riverso","rivincita","rivolto","rizoma","roba","robotico","robusto","roccia","roco","rodaggio","rodere","roditore","rogito","rollio","romantico","rompere","ronzio","rosolare","rospo","rotante","rotondo","rotula","rovescio","rubizzo","rubrica","ruga","rullino","rumine","rumoroso","ruolo","rupe","russare","rustico","sabato","sabbiare","sabotato","sagoma","salasso","saldatura","salgemma","salivare","salmone","salone","saltare","saluto","salvo","sapere","sapido","saporito","saraceno","sarcasmo","sarto","sassoso","satellite","satira","satollo","saturno","savana","savio","saziato","sbadiglio","sbalzo","sbancato","sbarra","sbattere","sbavare","sbendare","sbirciare","sbloccato","sbocciato","sbrinare","sbruffone","sbuffare","scabroso","scadenza","scala","scambiare","scandalo","scapola","scarso","scatenare","scavato","scelto","scenico","scettro","scheda","schiena","sciarpa","scienza","scindere","scippo","sciroppo","scivolo","sclerare","scodella","scolpito","scomparto","sconforto","scoprire","scorta","scossone","scozzese","scriba","scrollare","scrutinio","scuderia","scultore","scuola","scuro","scusare","sdebitare","sdoganare","seccatura","secondo","sedano","seggiola","segnalato","segregato","seguito","selciato","selettivo","sella","selvaggio","semaforo","sembrare","seme","seminato","sempre","senso","sentire","sepolto","sequenza","serata","serbato","sereno","serio","serpente","serraglio","servire","sestina","setola","settimana","sfacelo","sfaldare","sfamato","sfarzoso","sfaticato","sfera","sfida","sfilato","sfinge","sfocato","sfoderare","sfogo","sfoltire","sforzato","sfratto","sfruttato","sfuggito","sfumare","sfuso","sgabello","sgarbato","sgonfiare","sgorbio","sgrassato","sguardo","sibilo","siccome","sierra","sigla","signore","silenzio","sillaba","simbolo","simpatico","simulato","sinfonia","singolo","sinistro","sino","sintesi","sinusoide","sipario","sisma","sistole","situato","slitta","slogatura","sloveno","smarrito","smemorato","smentito","smeraldo","smilzo","smontare","smottato","smussato","snellire","snervato","snodo","sobbalzo","sobrio","soccorso","sociale","sodale","soffitto","sogno","soldato","solenne","solido","sollazzo","solo","solubile","solvente","somatico","somma","sonda","sonetto","sonnifero","sopire","soppeso","sopra","sorgere","sorpasso","sorriso","sorso","sorteggio","sorvolato","sospiro","sosta","sottile","spada","spalla","spargere","spatola","spavento","spazzola","specie","spedire","spegnere","spelatura","speranza","spessore","spettrale","spezzato","spia","spigoloso","spillato","spinoso","spirale","splendido","sportivo","sposo","spranga","sprecare","spronato","spruzzo","spuntino","squillo","sradicare","srotolato","stabile","stacco","staffa","stagnare","stampato","stantio","starnuto","stasera","statuto","stelo","steppa","sterzo","stiletto","stima","stirpe","stivale","stizzoso","stonato","storico","strappo","stregato","stridulo","strozzare","strutto","stuccare","stufo","stupendo","subentro","succoso","sudore","suggerito","sugo","sultano","suonare","superbo","supporto","surgelato","surrogato","sussurro","sutura","svagare","svedese","sveglio","svelare","svenuto","svezia","sviluppo","svista","svizzera","svolta","svuotare","tabacco","tabulato","tacciare","taciturno","tale","talismano","tampone","tannino","tara","tardivo","targato","tariffa","tarpare","tartaruga","tasto","tattico","taverna","tavolata","tazza","teca","tecnico","telefono","temerario","tempo","temuto","tendone","tenero","tensione","tentacolo","teorema","terme","terrazzo","terzetto","tesi","tesserato","testato","tetro","tettoia","tifare","tigella","timbro","tinto","tipico","tipografo","tiraggio","tiro","titanio","titolo","titubante","tizio","tizzone","toccare","tollerare","tolto","tombola","tomo","tonfo","tonsilla","topazio","topologia","toppa","torba","tornare","torrone","tortora","toscano","tossire","tostatura","totano","trabocco","trachea","trafila","tragedia","tralcio","tramonto","transito","trapano","trarre","trasloco","trattato","trave","treccia","tremolio","trespolo","tributo","tricheco","trifoglio","trillo","trincea","trio","tristezza","triturato","trivella","tromba","trono","troppo","trottola","trovare","truccato","tubatura","tuffato","tulipano","tumulto","tunisia","turbare","turchino","tuta","tutela","ubicato","uccello","uccisore","udire","uditivo","uffa","ufficio","uguale","ulisse","ultimato","umano","umile","umorismo","uncinetto","ungere","ungherese","unicorno","unificato","unisono","unitario","unte","uovo","upupa","uragano","urgenza","urlo","usanza","usato","uscito","usignolo","usuraio","utensile","utilizzo","utopia","vacante","vaccinato","vagabondo","vagliato","valanga","valgo","valico","valletta","valoroso","valutare","valvola","vampata","vangare","vanitoso","vano","vantaggio","vanvera","vapore","varano","varcato","variante","vasca","vedetta","vedova","veduto","vegetale","veicolo","velcro","velina","velluto","veloce","venato","vendemmia","vento","verace","verbale","vergogna","verifica","vero","verruca","verticale","vescica","vessillo","vestale","veterano","vetrina","vetusto","viandante","vibrante","vicenda","vichingo","vicinanza","vidimare","vigilia","vigneto","vigore","vile","villano","vimini","vincitore","viola","vipera","virgola","virologo","virulento","viscoso","visione","vispo","vissuto","visura","vita","vitello","vittima","vivanda","vivido","viziare","voce","voga","volatile","volere","volpe","voragine","vulcano","zampogna","zanna","zappato","zattera","zavorra","zefiro","zelante","zelo","zenzero","zerbino","zibetto","zinco","zircone","zitto","zolla","zotico","zucchero","zufolo","zulu","zuppa"]},{}],37:[function(e,r,t){r.exports=["あいこくしん","あいさつ","あいだ","あおぞら","あかちゃん","あきる","あけがた","あける","あこがれる","あさい","あさひ","あしあと","あじわう","あずかる","あずき","あそぶ","あたえる","あたためる","あたりまえ","あたる","あつい","あつかう","あっしゅく","あつまり","あつめる","あてな","あてはまる","あひる","あぶら","あぶる","あふれる","あまい","あまど","あまやかす","あまり","あみもの","あめりか","あやまる","あゆむ","あらいぐま","あらし","あらすじ","あらためる","あらゆる","あらわす","ありがとう","あわせる","あわてる","あんい","あんがい","あんこ","あんぜん","あんてい","あんない","あんまり","いいだす","いおん","いがい","いがく","いきおい","いきなり","いきもの","いきる","いくじ","いくぶん","いけばな","いけん","いこう","いこく","いこつ","いさましい","いさん","いしき","いじゅう","いじょう","いじわる","いずみ","いずれ","いせい","いせえび","いせかい","いせき","いぜん","いそうろう","いそがしい","いだい","いだく","いたずら","いたみ","いたりあ","いちおう","いちじ","いちど","いちば","いちぶ","いちりゅう","いつか","いっしゅん","いっせい","いっそう","いったん","いっち","いってい","いっぽう","いてざ","いてん","いどう","いとこ","いない","いなか","いねむり","いのち","いのる","いはつ","いばる","いはん","いびき","いひん","いふく","いへん","いほう","いみん","いもうと","いもたれ","いもり","いやがる","いやす","いよかん","いよく","いらい","いらすと","いりぐち","いりょう","いれい","いれもの","いれる","いろえんぴつ","いわい","いわう","いわかん","いわば","いわゆる","いんげんまめ","いんさつ","いんしょう","いんよう","うえき","うえる","うおざ","うがい","うかぶ","うかべる","うきわ","うくらいな","うくれれ","うけたまわる","うけつけ","うけとる","うけもつ","うける","うごかす","うごく","うこん","うさぎ","うしなう","うしろがみ","うすい","うすぎ","うすぐらい","うすめる","うせつ","うちあわせ","うちがわ","うちき","うちゅう","うっかり","うつくしい","うったえる","うつる","うどん","うなぎ","うなじ","うなずく","うなる","うねる","うのう","うぶげ","うぶごえ","うまれる","うめる","うもう","うやまう","うよく","うらがえす","うらぐち","うらない","うりあげ","うりきれ","うるさい","うれしい","うれゆき","うれる","うろこ","うわき","うわさ","うんこう","うんちん","うんてん","うんどう","えいえん","えいが","えいきょう","えいご","えいせい","えいぶん","えいよう","えいわ","えおり","えがお","えがく","えきたい","えくせる","えしゃく","えすて","えつらん","えのぐ","えほうまき","えほん","えまき","えもじ","えもの","えらい","えらぶ","えりあ","えんえん","えんかい","えんぎ","えんげき","えんしゅう","えんぜつ","えんそく","えんちょう","えんとつ","おいかける","おいこす","おいしい","おいつく","おうえん","おうさま","おうじ","おうせつ","おうたい","おうふく","おうべい","おうよう","おえる","おおい","おおう","おおどおり","おおや","おおよそ","おかえり","おかず","おがむ","おかわり","おぎなう","おきる","おくさま","おくじょう","おくりがな","おくる","おくれる","おこす","おこなう","おこる","おさえる","おさない","おさめる","おしいれ","おしえる","おじぎ","おじさん","おしゃれ","おそらく","おそわる","おたがい","おたく","おだやか","おちつく","おっと","おつり","おでかけ","おとしもの","おとなしい","おどり","おどろかす","おばさん","おまいり","おめでとう","おもいで","おもう","おもたい","おもちゃ","おやつ","おやゆび","およぼす","おらんだ","おろす","おんがく","おんけい","おんしゃ","おんせん","おんだん","おんちゅう","おんどけい","かあつ","かいが","がいき","がいけん","がいこう","かいさつ","かいしゃ","かいすいよく","かいぜん","かいぞうど","かいつう","かいてん","かいとう","かいふく","がいへき","かいほう","かいよう","がいらい","かいわ","かえる","かおり","かかえる","かがく","かがし","かがみ","かくご","かくとく","かざる","がぞう","かたい","かたち","がちょう","がっきゅう","がっこう","がっさん","がっしょう","かなざわし","かのう","がはく","かぶか","かほう","かほご","かまう","かまぼこ","かめれおん","かゆい","かようび","からい","かるい","かろう","かわく","かわら","がんか","かんけい","かんこう","かんしゃ","かんそう","かんたん","かんち","がんばる","きあい","きあつ","きいろ","ぎいん","きうい","きうん","きえる","きおう","きおく","きおち","きおん","きかい","きかく","きかんしゃ","ききて","きくばり","きくらげ","きけんせい","きこう","きこえる","きこく","きさい","きさく","きさま","きさらぎ","ぎじかがく","ぎしき","ぎじたいけん","ぎじにってい","ぎじゅつしゃ","きすう","きせい","きせき","きせつ","きそう","きぞく","きぞん","きたえる","きちょう","きつえん","ぎっちり","きつつき","きつね","きてい","きどう","きどく","きない","きなが","きなこ","きぬごし","きねん","きのう","きのした","きはく","きびしい","きひん","きふく","きぶん","きぼう","きほん","きまる","きみつ","きむずかしい","きめる","きもだめし","きもち","きもの","きゃく","きやく","ぎゅうにく","きよう","きょうりゅう","きらい","きらく","きりん","きれい","きれつ","きろく","ぎろん","きわめる","ぎんいろ","きんかくじ","きんじょ","きんようび","ぐあい","くいず","くうかん","くうき","くうぐん","くうこう","ぐうせい","くうそう","ぐうたら","くうふく","くうぼ","くかん","くきょう","くげん","ぐこう","くさい","くさき","くさばな","くさる","くしゃみ","くしょう","くすのき","くすりゆび","くせげ","くせん","ぐたいてき","くださる","くたびれる","くちこみ","くちさき","くつした","ぐっすり","くつろぐ","くとうてん","くどく","くなん","くねくね","くのう","くふう","くみあわせ","くみたてる","くめる","くやくしょ","くらす","くらべる","くるま","くれる","くろう","くわしい","ぐんかん","ぐんしょく","ぐんたい","ぐんて","けあな","けいかく","けいけん","けいこ","けいさつ","げいじゅつ","けいたい","げいのうじん","けいれき","けいろ","けおとす","けおりもの","げきか","げきげん","げきだん","げきちん","げきとつ","げきは","げきやく","げこう","げこくじょう","げざい","けさき","げざん","けしき","けしごむ","けしょう","げすと","けたば","けちゃっぷ","けちらす","けつあつ","けつい","けつえき","けっこん","けつじょ","けっせき","けってい","けつまつ","げつようび","げつれい","けつろん","げどく","けとばす","けとる","けなげ","けなす","けなみ","けぬき","げねつ","けねん","けはい","げひん","けぶかい","げぼく","けまり","けみかる","けむし","けむり","けもの","けらい","けろけろ","けわしい","けんい","けんえつ","けんお","けんか","げんき","けんげん","けんこう","けんさく","けんしゅう","けんすう","げんそう","けんちく","けんてい","けんとう","けんない","けんにん","げんぶつ","けんま","けんみん","けんめい","けんらん","けんり","こあくま","こいぬ","こいびと","ごうい","こうえん","こうおん","こうかん","ごうきゅう","ごうけい","こうこう","こうさい","こうじ","こうすい","ごうせい","こうそく","こうたい","こうちゃ","こうつう","こうてい","こうどう","こうない","こうはい","ごうほう","ごうまん","こうもく","こうりつ","こえる","こおり","ごかい","ごがつ","ごかん","こくご","こくさい","こくとう","こくない","こくはく","こぐま","こけい","こける","ここのか","こころ","こさめ","こしつ","こすう","こせい","こせき","こぜん","こそだて","こたい","こたえる","こたつ","こちょう","こっか","こつこつ","こつばん","こつぶ","こてい","こてん","ことがら","ことし","ことば","ことり","こなごな","こねこね","このまま","このみ","このよ","ごはん","こひつじ","こふう","こふん","こぼれる","ごまあぶら","こまかい","ごますり","こまつな","こまる","こむぎこ","こもじ","こもち","こもの","こもん","こやく","こやま","こゆう","こゆび","こよい","こよう","こりる","これくしょん","ころっけ","こわもて","こわれる","こんいん","こんかい","こんき","こんしゅう","こんすい","こんだて","こんとん","こんなん","こんびに","こんぽん","こんまけ","こんや","こんれい","こんわく","ざいえき","さいかい","さいきん","ざいげん","ざいこ","さいしょ","さいせい","ざいたく","ざいちゅう","さいてき","ざいりょう","さうな","さかいし","さがす","さかな","さかみち","さがる","さぎょう","さくし","さくひん","さくら","さこく","さこつ","さずかる","ざせき","さたん","さつえい","ざつおん","ざっか","ざつがく","さっきょく","ざっし","さつじん","ざっそう","さつたば","さつまいも","さてい","さといも","さとう","さとおや","さとし","さとる","さのう","さばく","さびしい","さべつ","さほう","さほど","さます","さみしい","さみだれ","さむけ","さめる","さやえんどう","さゆう","さよう","さよく","さらだ","ざるそば","さわやか","さわる","さんいん","さんか","さんきゃく","さんこう","さんさい","ざんしょ","さんすう","さんせい","さんそ","さんち","さんま","さんみ","さんらん","しあい","しあげ","しあさって","しあわせ","しいく","しいん","しうち","しえい","しおけ","しかい","しかく","じかん","しごと","しすう","じだい","したうけ","したぎ","したて","したみ","しちょう","しちりん","しっかり","しつじ","しつもん","してい","してき","してつ","じてん","じどう","しなぎれ","しなもの","しなん","しねま","しねん","しのぐ","しのぶ","しはい","しばかり","しはつ","しはらい","しはん","しひょう","しふく","じぶん","しへい","しほう","しほん","しまう","しまる","しみん","しむける","じむしょ","しめい","しめる","しもん","しゃいん","しゃうん","しゃおん","じゃがいも","しやくしょ","しゃくほう","しゃけん","しゃこ","しゃざい","しゃしん","しゃせん","しゃそう","しゃたい","しゃちょう","しゃっきん","じゃま","しゃりん","しゃれい","じゆう","じゅうしょ","しゅくはく","じゅしん","しゅっせき","しゅみ","しゅらば","じゅんばん","しょうかい","しょくたく","しょっけん","しょどう","しょもつ","しらせる","しらべる","しんか","しんこう","じんじゃ","しんせいじ","しんちく","しんりん","すあげ","すあし","すあな","ずあん","すいえい","すいか","すいとう","ずいぶん","すいようび","すうがく","すうじつ","すうせん","すおどり","すきま","すくう","すくない","すける","すごい","すこし","ずさん","すずしい","すすむ","すすめる","すっかり","ずっしり","ずっと","すてき","すてる","すねる","すのこ","すはだ","すばらしい","ずひょう","ずぶぬれ","すぶり","すふれ","すべて","すべる","ずほう","すぼん","すまい","すめし","すもう","すやき","すらすら","するめ","すれちがう","すろっと","すわる","すんぜん","すんぽう","せあぶら","せいかつ","せいげん","せいじ","せいよう","せおう","せかいかん","せきにん","せきむ","せきゆ","せきらんうん","せけん","せこう","せすじ","せたい","せたけ","せっかく","せっきゃく","ぜっく","せっけん","せっこつ","せっさたくま","せつぞく","せつだん","せつでん","せっぱん","せつび","せつぶん","せつめい","せつりつ","せなか","せのび","せはば","せびろ","せぼね","せまい","せまる","せめる","せもたれ","せりふ","ぜんあく","せんい","せんえい","せんか","せんきょ","せんく","せんげん","ぜんご","せんさい","せんしゅ","せんすい","せんせい","せんぞ","せんたく","せんちょう","せんてい","せんとう","せんぬき","せんねん","せんぱい","ぜんぶ","ぜんぽう","せんむ","せんめんじょ","せんもん","せんやく","せんゆう","せんよう","ぜんら","ぜんりゃく","せんれい","せんろ","そあく","そいとげる","そいね","そうがんきょう","そうき","そうご","そうしん","そうだん","そうなん","そうび","そうめん","そうり","そえもの","そえん","そがい","そげき","そこう","そこそこ","そざい","そしな","そせい","そせん","そそぐ","そだてる","そつう","そつえん","そっかん","そつぎょう","そっけつ","そっこう","そっせん","そっと","そとがわ","そとづら","そなえる","そなた","そふぼ","そぼく","そぼろ","そまつ","そまる","そむく","そむりえ","そめる","そもそも","そよかぜ","そらまめ","そろう","そんかい","そんけい","そんざい","そんしつ","そんぞく","そんちょう","ぞんび","ぞんぶん","そんみん","たあい","たいいん","たいうん","たいえき","たいおう","だいがく","たいき","たいぐう","たいけん","たいこ","たいざい","だいじょうぶ","だいすき","たいせつ","たいそう","だいたい","たいちょう","たいてい","だいどころ","たいない","たいねつ","たいのう","たいはん","だいひょう","たいふう","たいへん","たいほ","たいまつばな","たいみんぐ","たいむ","たいめん","たいやき","たいよう","たいら","たいりょく","たいる","たいわん","たうえ","たえる","たおす","たおる","たおれる","たかい","たかね","たきび","たくさん","たこく","たこやき","たさい","たしざん","だじゃれ","たすける","たずさわる","たそがれ","たたかう","たたく","ただしい","たたみ","たちばな","だっかい","だっきゃく","だっこ","だっしゅつ","だったい","たてる","たとえる","たなばた","たにん","たぬき","たのしみ","たはつ","たぶん","たべる","たぼう","たまご","たまる","だむる","ためいき","ためす","ためる","たもつ","たやすい","たよる","たらす","たりきほんがん","たりょう","たりる","たると","たれる","たれんと","たろっと","たわむれる","だんあつ","たんい","たんおん","たんか","たんき","たんけん","たんご","たんさん","たんじょうび","だんせい","たんそく","たんたい","だんち","たんてい","たんとう","だんな","たんにん","だんねつ","たんのう","たんぴん","だんぼう","たんまつ","たんめい","だんれつ","だんろ","だんわ","ちあい","ちあん","ちいき","ちいさい","ちえん","ちかい","ちから","ちきゅう","ちきん","ちけいず","ちけん","ちこく","ちさい","ちしき","ちしりょう","ちせい","ちそう","ちたい","ちたん","ちちおや","ちつじょ","ちてき","ちてん","ちぬき","ちぬり","ちのう","ちひょう","ちへいせん","ちほう","ちまた","ちみつ","ちみどろ","ちめいど","ちゃんこなべ","ちゅうい","ちゆりょく","ちょうし","ちょさくけん","ちらし","ちらみ","ちりがみ","ちりょう","ちるど","ちわわ","ちんたい","ちんもく","ついか","ついたち","つうか","つうじょう","つうはん","つうわ","つかう","つかれる","つくね","つくる","つけね","つける","つごう","つたえる","つづく","つつじ","つつむ","つとめる","つながる","つなみ","つねづね","つのる","つぶす","つまらない","つまる","つみき","つめたい","つもり","つもる","つよい","つるぼ","つるみく","つわもの","つわり","てあし","てあて","てあみ","ていおん","ていか","ていき","ていけい","ていこく","ていさつ","ていし","ていせい","ていたい","ていど","ていねい","ていひょう","ていへん","ていぼう","てうち","ておくれ","てきとう","てくび","でこぼこ","てさぎょう","てさげ","てすり","てそう","てちがい","てちょう","てつがく","てつづき","でっぱ","てつぼう","てつや","でぬかえ","てぬき","てぬぐい","てのひら","てはい","てぶくろ","てふだ","てほどき","てほん","てまえ","てまきずし","てみじか","てみやげ","てらす","てれび","てわけ","てわたし","でんあつ","てんいん","てんかい","てんき","てんぐ","てんけん","てんごく","てんさい","てんし","てんすう","でんち","てんてき","てんとう","てんない","てんぷら","てんぼうだい","てんめつ","てんらんかい","でんりょく","でんわ","どあい","といれ","どうかん","とうきゅう","どうぐ","とうし","とうむぎ","とおい","とおか","とおく","とおす","とおる","とかい","とかす","ときおり","ときどき","とくい","とくしゅう","とくてん","とくに","とくべつ","とけい","とける","とこや","とさか","としょかん","とそう","とたん","とちゅう","とっきゅう","とっくん","とつぜん","とつにゅう","とどける","ととのえる","とない","となえる","となり","とのさま","とばす","どぶがわ","とほう","とまる","とめる","ともだち","ともる","どようび","とらえる","とんかつ","どんぶり","ないかく","ないこう","ないしょ","ないす","ないせん","ないそう","なおす","ながい","なくす","なげる","なこうど","なさけ","なたでここ","なっとう","なつやすみ","ななおし","なにごと","なにもの","なにわ","なのか","なふだ","なまいき","なまえ","なまみ","なみだ","なめらか","なめる","なやむ","ならう","ならび","ならぶ","なれる","なわとび","なわばり","にあう","にいがた","にうけ","におい","にかい","にがて","にきび","にくしみ","にくまん","にげる","にさんかたんそ","にしき","にせもの","にちじょう","にちようび","にっか","にっき","にっけい","にっこう","にっさん","にっしょく","にっすう","にっせき","にってい","になう","にほん","にまめ","にもつ","にやり","にゅういん","にりんしゃ","にわとり","にんい","にんか","にんき","にんげん","にんしき","にんずう","にんそう","にんたい","にんち","にんてい","にんにく","にんぷ","にんまり","にんむ","にんめい","にんよう","ぬいくぎ","ぬかす","ぬぐいとる","ぬぐう","ぬくもり","ぬすむ","ぬまえび","ぬめり","ぬらす","ぬんちゃく","ねあげ","ねいき","ねいる","ねいろ","ねぐせ","ねくたい","ねくら","ねこぜ","ねこむ","ねさげ","ねすごす","ねそべる","ねだん","ねつい","ねっしん","ねつぞう","ねったいぎょ","ねぶそく","ねふだ","ねぼう","ねほりはほり","ねまき","ねまわし","ねみみ","ねむい","ねむたい","ねもと","ねらう","ねわざ","ねんいり","ねんおし","ねんかん","ねんきん","ねんぐ","ねんざ","ねんし","ねんちゃく","ねんど","ねんぴ","ねんぶつ","ねんまつ","ねんりょう","ねんれい","のいず","のおづま","のがす","のきなみ","のこぎり","のこす","のこる","のせる","のぞく","のぞむ","のたまう","のちほど","のっく","のばす","のはら","のべる","のぼる","のみもの","のやま","のらいぬ","のらねこ","のりもの","のりゆき","のれん","のんき","ばあい","はあく","ばあさん","ばいか","ばいく","はいけん","はいご","はいしん","はいすい","はいせん","はいそう","はいち","ばいばい","はいれつ","はえる","はおる","はかい","ばかり","はかる","はくしゅ","はけん","はこぶ","はさみ","はさん","はしご","ばしょ","はしる","はせる","ぱそこん","はそん","はたん","はちみつ","はつおん","はっかく","はづき","はっきり","はっくつ","はっけん","はっこう","はっさん","はっしん","はったつ","はっちゅう","はってん","はっぴょう","はっぽう","はなす","はなび","はにかむ","はぶらし","はみがき","はむかう","はめつ","はやい","はやし","はらう","はろうぃん","はわい","はんい","はんえい","はんおん","はんかく","はんきょう","ばんぐみ","はんこ","はんしゃ","はんすう","はんだん","ぱんち","ぱんつ","はんてい","はんとし","はんのう","はんぱ","はんぶん","はんぺん","はんぼうき","はんめい","はんらん","はんろん","ひいき","ひうん","ひえる","ひかく","ひかり","ひかる","ひかん","ひくい","ひけつ","ひこうき","ひこく","ひさい","ひさしぶり","ひさん","びじゅつかん","ひしょ","ひそか","ひそむ","ひたむき","ひだり","ひたる","ひつぎ","ひっこし","ひっし","ひつじゅひん","ひっす","ひつぜん","ぴったり","ぴっちり","ひつよう","ひてい","ひとごみ","ひなまつり","ひなん","ひねる","ひはん","ひびく","ひひょう","ひほう","ひまわり","ひまん","ひみつ","ひめい","ひめじし","ひやけ","ひやす","ひよう","びょうき","ひらがな","ひらく","ひりつ","ひりょう","ひるま","ひるやすみ","ひれい","ひろい","ひろう","ひろき","ひろゆき","ひんかく","ひんけつ","ひんこん","ひんしゅ","ひんそう","ぴんち","ひんぱん","びんぼう","ふあん","ふいうち","ふうけい","ふうせん","ぷうたろう","ふうとう","ふうふ","ふえる","ふおん","ふかい","ふきん","ふくざつ","ふくぶくろ","ふこう","ふさい","ふしぎ","ふじみ","ふすま","ふせい","ふせぐ","ふそく","ぶたにく","ふたん","ふちょう","ふつう","ふつか","ふっかつ","ふっき","ふっこく","ぶどう","ふとる","ふとん","ふのう","ふはい","ふひょう","ふへん","ふまん","ふみん","ふめつ","ふめん","ふよう","ふりこ","ふりる","ふるい","ふんいき","ぶんがく","ぶんぐ","ふんしつ","ぶんせき","ふんそう","ぶんぽう","へいあん","へいおん","へいがい","へいき","へいげん","へいこう","へいさ","へいしゃ","へいせつ","へいそ","へいたく","へいてん","へいねつ","へいわ","へきが","へこむ","べにいろ","べにしょうが","へらす","へんかん","べんきょう","べんごし","へんさい","へんたい","べんり","ほあん","ほいく","ぼうぎょ","ほうこく","ほうそう","ほうほう","ほうもん","ほうりつ","ほえる","ほおん","ほかん","ほきょう","ぼきん","ほくろ","ほけつ","ほけん","ほこう","ほこる","ほしい","ほしつ","ほしゅ","ほしょう","ほせい","ほそい","ほそく","ほたて","ほたる","ぽちぶくろ","ほっきょく","ほっさ","ほったん","ほとんど","ほめる","ほんい","ほんき","ほんけ","ほんしつ","ほんやく","まいにち","まかい","まかせる","まがる","まける","まこと","まさつ","まじめ","ますく","まぜる","まつり","まとめ","まなぶ","まぬけ","まねく","まほう","まもる","まゆげ","まよう","まろやか","まわす","まわり","まわる","まんが","まんきつ","まんぞく","まんなか","みいら","みうち","みえる","みがく","みかた","みかん","みけん","みこん","みじかい","みすい","みすえる","みせる","みっか","みつかる","みつける","みてい","みとめる","みなと","みなみかさい","みねらる","みのう","みのがす","みほん","みもと","みやげ","みらい","みりょく","みわく","みんか","みんぞく","むいか","むえき","むえん","むかい","むかう","むかえ","むかし","むぎちゃ","むける","むげん","むさぼる","むしあつい","むしば","むじゅん","むしろ","むすう","むすこ","むすぶ","むすめ","むせる","むせん","むちゅう","むなしい","むのう","むやみ","むよう","むらさき","むりょう","むろん","めいあん","めいうん","めいえん","めいかく","めいきょく","めいさい","めいし","めいそう","めいぶつ","めいれい","めいわく","めぐまれる","めざす","めした","めずらしい","めだつ","めまい","めやす","めんきょ","めんせき","めんどう","もうしあげる","もうどうけん","もえる","もくし","もくてき","もくようび","もちろん","もどる","もらう","もんく","もんだい","やおや","やける","やさい","やさしい","やすい","やすたろう","やすみ","やせる","やそう","やたい","やちん","やっと","やっぱり","やぶる","やめる","ややこしい","やよい","やわらかい","ゆうき","ゆうびんきょく","ゆうべ","ゆうめい","ゆけつ","ゆしゅつ","ゆせん","ゆそう","ゆたか","ゆちゃく","ゆでる","ゆにゅう","ゆびわ","ゆらい","ゆれる","ようい","ようか","ようきゅう","ようじ","ようす","ようちえん","よかぜ","よかん","よきん","よくせい","よくぼう","よけい","よごれる","よさん","よしゅう","よそう","よそく","よっか","よてい","よどがわく","よねつ","よやく","よゆう","よろこぶ","よろしい","らいう","らくがき","らくご","らくさつ","らくだ","らしんばん","らせん","らぞく","らたい","らっか","られつ","りえき","りかい","りきさく","りきせつ","りくぐん","りくつ","りけん","りこう","りせい","りそう","りそく","りてん","りねん","りゆう","りゅうがく","りよう","りょうり","りょかん","りょくちゃ","りょこう","りりく","りれき","りろん","りんご","るいけい","るいさい","るいじ","るいせき","るすばん","るりがわら","れいかん","れいぎ","れいせい","れいぞうこ","れいとう","れいぼう","れきし","れきだい","れんあい","れんけい","れんこん","れんさい","れんしゅう","れんぞく","れんらく","ろうか","ろうご","ろうじん","ろうそく","ろくが","ろこつ","ろじうら","ろしゅつ","ろせん","ろてん","ろめん","ろれつ","ろんぎ","ろんぱ","ろんぶん","ろんり","わかす","わかめ","わかやま","わかれる","わしつ","わじまし","わすれもの","わらう","われる"]},{}],38:[function(e,r,t){r.exports=["가격","가끔","가난","가능","가득","가르침","가뭄","가방","가상","가슴","가운데","가을","가이드","가입","가장","가정","가족","가죽","각오","각자","간격","간부","간섭","간장","간접","간판","갈등","갈비","갈색","갈증","감각","감기","감소","감수성","감자","감정","갑자기","강남","강당","강도","강력히","강변","강북","강사","강수량","강아지","강원도","강의","강제","강조","같이","개구리","개나리","개방","개별","개선","개성","개인","객관적","거실","거액","거울","거짓","거품","걱정","건강","건물","건설","건조","건축","걸음","검사","검토","게시판","게임","겨울","견해","결과","결국","결론","결석","결승","결심","결정","결혼","경계","경고","경기","경력","경복궁","경비","경상도","경영","경우","경쟁","경제","경주","경찰","경치","경향","경험","계곡","계단","계란","계산","계속","계약","계절","계층","계획","고객","고구려","고궁","고급","고등학생","고무신","고민","고양이","고장","고전","고집","고춧가루","고통","고향","곡식","골목","골짜기","골프","공간","공개","공격","공군","공급","공기","공동","공무원","공부","공사","공식","공업","공연","공원","공장","공짜","공책","공통","공포","공항","공휴일","과목","과일","과장","과정","과학","관객","관계","관광","관념","관람","관련","관리","관습","관심","관점","관찰","광경","광고","광장","광주","괴로움","굉장히","교과서","교문","교복","교실","교양","교육","교장","교직","교통","교환","교훈","구경","구름","구멍","구별","구분","구석","구성","구속","구역","구입","구청","구체적","국가","국기","국내","국립","국물","국민","국수","국어","국왕","국적","국제","국회","군대","군사","군인","궁극적","권리","권위","권투","귀국","귀신","규정","규칙","균형","그날","그냥","그늘","그러나","그룹","그릇","그림","그제서야","그토록","극복","극히","근거","근교","근래","근로","근무","근본","근원","근육","근처","글씨","글자","금강산","금고","금년","금메달","금액","금연","금요일","금지","긍정적","기간","기관","기념","기능","기독교","기둥","기록","기름","기법","기본","기분","기쁨","기숙사","기술","기억","기업","기온","기운","기원","기적","기준","기침","기혼","기획","긴급","긴장","길이","김밥","김치","김포공항","깍두기","깜빡","깨달음","깨소금","껍질","꼭대기","꽃잎","나들이","나란히","나머지","나물","나침반","나흘","낙엽","난방","날개","날씨","날짜","남녀","남대문","남매","남산","남자","남편","남학생","낭비","낱말","내년","내용","내일","냄비","냄새","냇물","냉동","냉면","냉방","냉장고","넥타이","넷째","노동","노란색","노력","노인","녹음","녹차","녹화","논리","논문","논쟁","놀이","농구","농담","농민","농부","농업","농장","농촌","높이","눈동자","눈물","눈썹","뉴욕","느낌","늑대","능동적","능력","다방","다양성","다음","다이어트","다행","단계","단골","단독","단맛","단순","단어","단위","단점","단체","단추","단편","단풍","달걀","달러","달력","달리","닭고기","담당","담배","담요","담임","답변","답장","당근","당분간","당연히","당장","대규모","대낮","대단히","대답","대도시","대략","대량","대륙","대문","대부분","대신","대응","대장","대전","대접","대중","대책","대출","대충","대통령","대학","대한민국","대합실","대형","덩어리","데이트","도대체","도덕","도둑","도망","도서관","도심","도움","도입","도자기","도저히","도전","도중","도착","독감","독립","독서","독일","독창적","동화책","뒷모습","뒷산","딸아이","마누라","마늘","마당","마라톤","마련","마무리","마사지","마약","마요네즈","마을","마음","마이크","마중","마지막","마찬가지","마찰","마흔","막걸리","막내","막상","만남","만두","만세","만약","만일","만점","만족","만화","많이","말기","말씀","말투","맘대로","망원경","매년","매달","매력","매번","매스컴","매일","매장","맥주","먹이","먼저","먼지","멀리","메일","며느리","며칠","면담","멸치","명단","명령","명예","명의","명절","명칭","명함","모금","모니터","모델","모든","모범","모습","모양","모임","모조리","모집","모퉁이","목걸이","목록","목사","목소리","목숨","목적","목표","몰래","몸매","몸무게","몸살","몸속","몸짓","몸통","몹시","무관심","무궁화","무더위","무덤","무릎","무슨","무엇","무역","무용","무조건","무지개","무척","문구","문득","문법","문서","문제","문학","문화","물가","물건","물결","물고기","물론","물리학","물음","물질","물체","미국","미디어","미사일","미술","미역","미용실","미움","미인","미팅","미혼","민간","민족","민주","믿음","밀가루","밀리미터","밑바닥","바가지","바구니","바나나","바늘","바닥","바닷가","바람","바이러스","바탕","박물관","박사","박수","반대","반드시","반말","반발","반성","반응","반장","반죽","반지","반찬","받침","발가락","발걸음","발견","발달","발레","발목","발바닥","발생","발음","발자국","발전","발톱","발표","밤하늘","밥그릇","밥맛","밥상","밥솥","방금","방면","방문","방바닥","방법","방송","방식","방안","방울","방지","방학","방해","방향","배경","배꼽","배달","배드민턴","백두산","백색","백성","백인","백제","백화점","버릇","버섯","버튼","번개","번역","번지","번호","벌금","벌레","벌써","범위","범인","범죄","법률","법원","법적","법칙","베이징","벨트","변경","변동","변명","변신","변호사","변화","별도","별명","별일","병실","병아리","병원","보관","보너스","보라색","보람","보름","보상","보안","보자기","보장","보전","보존","보통","보편적","보험","복도","복사","복숭아","복습","볶음","본격적","본래","본부","본사","본성","본인","본질","볼펜","봉사","봉지","봉투","부근","부끄러움","부담","부동산","부문","부분","부산","부상","부엌","부인","부작용","부장","부정","부족","부지런히","부친","부탁","부품","부회장","북부","북한","분노","분량","분리","분명","분석","분야","분위기","분필","분홍색","불고기","불과","불교","불꽃","불만","불법","불빛","불안","불이익","불행","브랜드","비극","비난","비닐","비둘기","비디오","비로소","비만","비명","비밀","비바람","비빔밥","비상","비용","비율","비중","비타민","비판","빌딩","빗물","빗방울","빗줄기","빛깔","빨간색","빨래","빨리","사건","사계절","사나이","사냥","사람","사랑","사립","사모님","사물","사방","사상","사생활","사설","사슴","사실","사업","사용","사월","사장","사전","사진","사촌","사춘기","사탕","사투리","사흘","산길","산부인과","산업","산책","살림","살인","살짝","삼계탕","삼국","삼십","삼월","삼촌","상관","상금","상대","상류","상반기","상상","상식","상업","상인","상자","상점","상처","상추","상태","상표","상품","상황","새벽","색깔","색연필","생각","생명","생물","생방송","생산","생선","생신","생일","생활","서랍","서른","서명","서민","서비스","서양","서울","서적","서점","서쪽","서클","석사","석유","선거","선물","선배","선생","선수","선원","선장","선전","선택","선풍기","설거지","설날","설렁탕","설명","설문","설사","설악산","설치","설탕","섭씨","성공","성당","성명","성별","성인","성장","성적","성질","성함","세금","세미나","세상","세월","세종대왕","세탁","센터","센티미터","셋째","소규모","소극적","소금","소나기","소년","소득","소망","소문","소설","소속","소아과","소용","소원","소음","소중히","소지품","소질","소풍","소형","속담","속도","속옷","손가락","손길","손녀","손님","손등","손목","손뼉","손실","손질","손톱","손해","솔직히","솜씨","송아지","송이","송편","쇠고기","쇼핑","수건","수년","수단","수돗물","수동적","수면","수명","수박","수상","수석","수술","수시로","수업","수염","수영","수입","수준","수집","수출","수컷","수필","수학","수험생","수화기","숙녀","숙소","숙제","순간","순서","순수","순식간","순위","숟가락","술병","술집","숫자","스님","스물","스스로","스승","스웨터","스위치","스케이트","스튜디오","스트레스","스포츠","슬쩍","슬픔","습관","습기","승객","승리","승부","승용차","승진","시각","시간","시골","시금치","시나리오","시댁","시리즈","시멘트","시민","시부모","시선","시설","시스템","시아버지","시어머니","시월","시인","시일","시작","시장","시절","시점","시중","시즌","시집","시청","시합","시험","식구","식기","식당","식량","식료품","식물","식빵","식사","식생활","식초","식탁","식품","신고","신규","신념","신문","신발","신비","신사","신세","신용","신제품","신청","신체","신화","실감","실내","실력","실례","실망","실수","실습","실시","실장","실정","실질적","실천","실체","실컷","실태","실패","실험","실현","심리","심부름","심사","심장","심정","심판","쌍둥이","씨름","씨앗","아가씨","아나운서","아드님","아들","아쉬움","아스팔트","아시아","아울러","아저씨","아줌마","아직","아침","아파트","아프리카","아픔","아홉","아흔","악기","악몽","악수","안개","안경","안과","안내","안녕","안동","안방","안부","안주","알루미늄","알코올","암시","암컷","압력","앞날","앞문","애인","애정","액수","앨범","야간","야단","야옹","약간","약국","약속","약수","약점","약품","약혼녀","양념","양력","양말","양배추","양주","양파","어둠","어려움","어른","어젯밤","어쨌든","어쩌다가","어쩐지","언니","언덕","언론","언어","얼굴","얼른","얼음","얼핏","엄마","업무","업종","업체","엉덩이","엉망","엉터리","엊그제","에너지","에어컨","엔진","여건","여고생","여관","여군","여권","여대생","여덟","여동생","여든","여론","여름","여섯","여성","여왕","여인","여전히","여직원","여학생","여행","역사","역시","역할","연결","연구","연극","연기","연락","연설","연세","연속","연습","연애","연예인","연인","연장","연주","연출","연필","연합","연휴","열기","열매","열쇠","열심히","열정","열차","열흘","염려","엽서","영국","영남","영상","영양","영역","영웅","영원히","영하","영향","영혼","영화","옆구리","옆방","옆집","예감","예금","예방","예산","예상","예선","예술","예습","예식장","예약","예전","예절","예정","예컨대","옛날","오늘","오락","오랫동안","오렌지","오로지","오른발","오븐","오십","오염","오월","오전","오직","오징어","오페라","오피스텔","오히려","옥상","옥수수","온갖","온라인","온몸","온종일","온통","올가을","올림픽","올해","옷차림","와이셔츠","와인","완성","완전","왕비","왕자","왜냐하면","왠지","외갓집","외국","외로움","외삼촌","외출","외침","외할머니","왼발","왼손","왼쪽","요금","요일","요즘","요청","용기","용서","용어","우산","우선","우승","우연히","우정","우체국","우편","운동","운명","운반","운전","운행","울산","울음","움직임","웃어른","웃음","워낙","원고","원래","원서","원숭이","원인","원장","원피스","월급","월드컵","월세","월요일","웨이터","위반","위법","위성","위원","위험","위협","윗사람","유난히","유럽","유명","유물","유산","유적","유치원","유학","유행","유형","육군","육상","육십","육체","은행","음력","음료","음반","음성","음식","음악","음주","의견","의논","의문","의복","의식","의심","의외로","의욕","의원","의학","이것","이곳","이념","이놈","이달","이대로","이동","이렇게","이력서","이론적","이름","이민","이발소","이별","이불","이빨","이상","이성","이슬","이야기","이용","이웃","이월","이윽고","이익","이전","이중","이튿날","이틀","이혼","인간","인격","인공","인구","인근","인기","인도","인류","인물","인생","인쇄","인연","인원","인재","인종","인천","인체","인터넷","인하","인형","일곱","일기","일단","일대","일등","일반","일본","일부","일상","일생","일손","일요일","일월","일정","일종","일주일","일찍","일체","일치","일행","일회용","임금","임무","입대","입력","입맛","입사","입술","입시","입원","입장","입학","자가용","자격","자극","자동","자랑","자부심","자식","자신","자연","자원","자율","자전거","자정","자존심","자판","작가","작년","작성","작업","작용","작은딸","작품","잔디","잔뜩","잔치","잘못","잠깐","잠수함","잠시","잠옷","잠자리","잡지","장관","장군","장기간","장래","장례","장르","장마","장면","장모","장미","장비","장사","장소","장식","장애인","장인","장점","장차","장학금","재능","재빨리","재산","재생","재작년","재정","재채기","재판","재학","재활용","저것","저고리","저곳","저녁","저런","저렇게","저번","저울","저절로","저축","적극","적당히","적성","적용","적응","전개","전공","전기","전달","전라도","전망","전문","전반","전부","전세","전시","전용","전자","전쟁","전주","전철","전체","전통","전혀","전후","절대","절망","절반","절약","절차","점검","점수","점심","점원","점점","점차","접근","접시","접촉","젓가락","정거장","정도","정류장","정리","정말","정면","정문","정반대","정보","정부","정비","정상","정성","정오","정원","정장","정지","정치","정확히","제공","제과점","제대로","제목","제발","제법","제삿날","제안","제일","제작","제주도","제출","제품","제한","조각","조건","조금","조깅","조명","조미료","조상","조선","조용히","조절","조정","조직","존댓말","존재","졸업","졸음","종교","종로","종류","종소리","종업원","종종","종합","좌석","죄인","주관적","주름","주말","주머니","주먹","주문","주민","주방","주변","주식","주인","주일","주장","주전자","주택","준비","줄거리","줄기","줄무늬","중간","중계방송","중국","중년","중단","중독","중반","중부","중세","중소기업","중순","중앙","중요","중학교","즉석","즉시","즐거움","증가","증거","증권","증상","증세","지각","지갑","지경","지극히","지금","지급","지능","지름길","지리산","지방","지붕","지식","지역","지우개","지원","지적","지점","지진","지출","직선","직업","직원","직장","진급","진동","진로","진료","진리","진짜","진찰","진출","진통","진행","질문","질병","질서","짐작","집단","집안","집중","짜증","찌꺼기","차남","차라리","차량","차림","차별","차선","차츰","착각","찬물","찬성","참가","참기름","참새","참석","참여","참외","참조","찻잔","창가","창고","창구","창문","창밖","창작","창조","채널","채점","책가방","책방","책상","책임","챔피언","처벌","처음","천국","천둥","천장","천재","천천히","철도","철저히","철학","첫날","첫째","청년","청바지","청소","청춘","체계","체력","체온","체육","체중","체험","초등학생","초반","초밥","초상화","초순","초여름","초원","초저녁","초점","초청","초콜릿","촛불","총각","총리","총장","촬영","최근","최상","최선","최신","최악","최종","추석","추억","추진","추천","추측","축구","축소","축제","축하","출근","출발","출산","출신","출연","출입","출장","출판","충격","충고","충돌","충분히","충청도","취업","취직","취향","치약","친구","친척","칠십","칠월","칠판","침대","침묵","침실","칫솔","칭찬","카메라","카운터","칼국수","캐릭터","캠퍼스","캠페인","커튼","컨디션","컬러","컴퓨터","코끼리","코미디","콘서트","콜라","콤플렉스","콩나물","쾌감","쿠데타","크림","큰길","큰딸","큰소리","큰아들","큰어머니","큰일","큰절","클래식","클럽","킬로","타입","타자기","탁구","탁자","탄생","태권도","태양","태풍","택시","탤런트","터널","터미널","테니스","테스트","테이블","텔레비전","토론","토마토","토요일","통계","통과","통로","통신","통역","통일","통장","통제","통증","통합","통화","퇴근","퇴원","퇴직금","튀김","트럭","특급","특별","특성","특수","특징","특히","튼튼히","티셔츠","파란색","파일","파출소","판결","판단","판매","판사","팔십","팔월","팝송","패션","팩스","팩시밀리","팬티","퍼센트","페인트","편견","편의","편지","편히","평가","평균","평생","평소","평양","평일","평화","포스터","포인트","포장","포함","표면","표정","표준","표현","품목","품질","풍경","풍속","풍습","프랑스","프린터","플라스틱","피곤","피망","피아노","필름","필수","필요","필자","필통","핑계","하느님","하늘","하드웨어","하룻밤","하반기","하숙집","하순","하여튼","하지만","하천","하품","하필","학과","학교","학급","학기","학년","학력","학번","학부모","학비","학생","학술","학습","학용품","학원","학위","학자","학점","한계","한글","한꺼번에","한낮","한눈","한동안","한때","한라산","한마디","한문","한번","한복","한식","한여름","한쪽","할머니","할아버지","할인","함께","함부로","합격","합리적","항공","항구","항상","항의","해결","해군","해답","해당","해물","해석","해설","해수욕장","해안","핵심","핸드백","햄버거","햇볕","햇살","행동","행복","행사","행운","행위","향기","향상","향수","허락","허용","헬기","현관","현금","현대","현상","현실","현장","현재","현지","혈액","협력","형부","형사","형수","형식","형제","형태","형편","혜택","호기심","호남","호랑이","호박","호텔","호흡","혹시","홀로","홈페이지","홍보","홍수","홍차","화면","화분","화살","화요일","화장","화학","확보","확인","확장","확정","환갑","환경","환영","환율","환자","활기","활동","활발히","활용","활짝","회견","회관","회복","회색","회원","회장","회전","횟수","횡단보도","효율적","후반","후춧가루","훈련","훨씬","휴식","휴일","흉내","흐름","흑백","흑인","흔적","흔히","흥미","흥분","희곡","희망","희생","흰색","힘껏"]},{}],39:[function(e,r,t){r.exports=["ábaco","abdomen","abeja","abierto","abogado","abono","aborto","abrazo","abrir","abuelo","abuso","acabar","academia","acceso","acción","aceite","acelga","acento","aceptar","ácido","aclarar","acné","acoger","acoso","activo","acto","actriz","actuar","acudir","acuerdo","acusar","adicto","admitir","adoptar","adorno","aduana","adulto","aéreo","afectar","afición","afinar","afirmar","ágil","agitar","agonía","agosto","agotar","agregar","agrio","agua","agudo","águila","aguja","ahogo","ahorro","aire","aislar","ajedrez","ajeno","ajuste","alacrán","alambre","alarma","alba","álbum","alcalde","aldea","alegre","alejar","alerta","aleta","alfiler","alga","algodón","aliado","aliento","alivio","alma","almeja","almíbar","altar","alteza","altivo","alto","altura","alumno","alzar","amable","amante","amapola","amargo","amasar","ámbar","ámbito","ameno","amigo","amistad","amor","amparo","amplio","ancho","anciano","ancla","andar","andén","anemia","ángulo","anillo","ánimo","anís","anotar","antena","antiguo","antojo","anual","anular","anuncio","añadir","añejo","año","apagar","aparato","apetito","apio","aplicar","apodo","aporte","apoyo","aprender","aprobar","apuesta","apuro","arado","araña","arar","árbitro","árbol","arbusto","archivo","arco","arder","ardilla","arduo","área","árido","aries","armonía","arnés","aroma","arpa","arpón","arreglo","arroz","arruga","arte","artista","asa","asado","asalto","ascenso","asegurar","aseo","asesor","asiento","asilo","asistir","asno","asombro","áspero","astilla","astro","astuto","asumir","asunto","atajo","ataque","atar","atento","ateo","ático","atleta","átomo","atraer","atroz","atún","audaz","audio","auge","aula","aumento","ausente","autor","aval","avance","avaro","ave","avellana","avena","avestruz","avión","aviso","ayer","ayuda","ayuno","azafrán","azar","azote","azúcar","azufre","azul","baba","babor","bache","bahía","baile","bajar","balanza","balcón","balde","bambú","banco","banda","baño","barba","barco","barniz","barro","báscula","bastón","basura","batalla","batería","batir","batuta","baúl","bazar","bebé","bebida","bello","besar","beso","bestia","bicho","bien","bingo","blanco","bloque","blusa","boa","bobina","bobo","boca","bocina","boda","bodega","boina","bola","bolero","bolsa","bomba","bondad","bonito","bono","bonsái","borde","borrar","bosque","bote","botín","bóveda","bozal","bravo","brazo","brecha","breve","brillo","brinco","brisa","broca","broma","bronce","brote","bruja","brusco","bruto","buceo","bucle","bueno","buey","bufanda","bufón","búho","buitre","bulto","burbuja","burla","burro","buscar","butaca","buzón","caballo","cabeza","cabina","cabra","cacao","cadáver","cadena","caer","café","caída","caimán","caja","cajón","cal","calamar","calcio","caldo","calidad","calle","calma","calor","calvo","cama","cambio","camello","camino","campo","cáncer","candil","canela","canguro","canica","canto","caña","cañón","caoba","caos","capaz","capitán","capote","captar","capucha","cara","carbón","cárcel","careta","carga","cariño","carne","carpeta","carro","carta","casa","casco","casero","caspa","castor","catorce","catre","caudal","causa","cazo","cebolla","ceder","cedro","celda","célebre","celoso","célula","cemento","ceniza","centro","cerca","cerdo","cereza","cero","cerrar","certeza","césped","cetro","chacal","chaleco","champú","chancla","chapa","charla","chico","chiste","chivo","choque","choza","chuleta","chupar","ciclón","ciego","cielo","cien","cierto","cifra","cigarro","cima","cinco","cine","cinta","ciprés","circo","ciruela","cisne","cita","ciudad","clamor","clan","claro","clase","clave","cliente","clima","clínica","cobre","cocción","cochino","cocina","coco","código","codo","cofre","coger","cohete","cojín","cojo","cola","colcha","colegio","colgar","colina","collar","colmo","columna","combate","comer","comida","cómodo","compra","conde","conejo","conga","conocer","consejo","contar","copa","copia","corazón","corbata","corcho","cordón","corona","correr","coser","cosmos","costa","cráneo","cráter","crear","crecer","creído","crema","cría","crimen","cripta","crisis","cromo","crónica","croqueta","crudo","cruz","cuadro","cuarto","cuatro","cubo","cubrir","cuchara","cuello","cuento","cuerda","cuesta","cueva","cuidar","culebra","culpa","culto","cumbre","cumplir","cuna","cuneta","cuota","cupón","cúpula","curar","curioso","curso","curva","cutis","dama","danza","dar","dardo","dátil","deber","débil","década","decir","dedo","defensa","definir","dejar","delfín","delgado","delito","demora","denso","dental","deporte","derecho","derrota","desayuno","deseo","desfile","desnudo","destino","desvío","detalle","detener","deuda","día","diablo","diadema","diamante","diana","diario","dibujo","dictar","diente","dieta","diez","difícil","digno","dilema","diluir","dinero","directo","dirigir","disco","diseño","disfraz","diva","divino","doble","doce","dolor","domingo","don","donar","dorado","dormir","dorso","dos","dosis","dragón","droga","ducha","duda","duelo","dueño","dulce","dúo","duque","durar","dureza","duro","ébano","ebrio","echar","eco","ecuador","edad","edición","edificio","editor","educar","efecto","eficaz","eje","ejemplo","elefante","elegir","elemento","elevar","elipse","élite","elixir","elogio","eludir","embudo","emitir","emoción","empate","empeño","empleo","empresa","enano","encargo","enchufe","encía","enemigo","enero","enfado","enfermo","engaño","enigma","enlace","enorme","enredo","ensayo","enseñar","entero","entrar","envase","envío","época","equipo","erizo","escala","escena","escolar","escribir","escudo","esencia","esfera","esfuerzo","espada","espejo","espía","esposa","espuma","esquí","estar","este","estilo","estufa","etapa","eterno","ética","etnia","evadir","evaluar","evento","evitar","exacto","examen","exceso","excusa","exento","exigir","exilio","existir","éxito","experto","explicar","exponer","extremo","fábrica","fábula","fachada","fácil","factor","faena","faja","falda","fallo","falso","faltar","fama","familia","famoso","faraón","farmacia","farol","farsa","fase","fatiga","fauna","favor","fax","febrero","fecha","feliz","feo","feria","feroz","fértil","fervor","festín","fiable","fianza","fiar","fibra","ficción","ficha","fideo","fiebre","fiel","fiera","fiesta","figura","fijar","fijo","fila","filete","filial","filtro","fin","finca","fingir","finito","firma","flaco","flauta","flecha","flor","flota","fluir","flujo","flúor","fobia","foca","fogata","fogón","folio","folleto","fondo","forma","forro","fortuna","forzar","fosa","foto","fracaso","frágil","franja","frase","fraude","freír","freno","fresa","frío","frito","fruta","fuego","fuente","fuerza","fuga","fumar","función","funda","furgón","furia","fusil","fútbol","futuro","gacela","gafas","gaita","gajo","gala","galería","gallo","gamba","ganar","gancho","ganga","ganso","garaje","garza","gasolina","gastar","gato","gavilán","gemelo","gemir","gen","género","genio","gente","geranio","gerente","germen","gesto","gigante","gimnasio","girar","giro","glaciar","globo","gloria","gol","golfo","goloso","golpe","goma","gordo","gorila","gorra","gota","goteo","gozar","grada","gráfico","grano","grasa","gratis","grave","grieta","grillo","gripe","gris","grito","grosor","grúa","grueso","grumo","grupo","guante","guapo","guardia","guerra","guía","guiño","guion","guiso","guitarra","gusano","gustar","haber","hábil","hablar","hacer","hacha","hada","hallar","hamaca","harina","haz","hazaña","hebilla","hebra","hecho","helado","helio","hembra","herir","hermano","héroe","hervir","hielo","hierro","hígado","higiene","hijo","himno","historia","hocico","hogar","hoguera","hoja","hombre","hongo","honor","honra","hora","hormiga","horno","hostil","hoyo","hueco","huelga","huerta","hueso","huevo","huida","huir","humano","húmedo","humilde","humo","hundir","huracán","hurto","icono","ideal","idioma","ídolo","iglesia","iglú","igual","ilegal","ilusión","imagen","imán","imitar","impar","imperio","imponer","impulso","incapaz","índice","inerte","infiel","informe","ingenio","inicio","inmenso","inmune","innato","insecto","instante","interés","íntimo","intuir","inútil","invierno","ira","iris","ironía","isla","islote","jabalí","jabón","jamón","jarabe","jardín","jarra","jaula","jazmín","jefe","jeringa","jinete","jornada","joroba","joven","joya","juerga","jueves","juez","jugador","jugo","juguete","juicio","junco","jungla","junio","juntar","júpiter","jurar","justo","juvenil","juzgar","kilo","koala","labio","lacio","lacra","lado","ladrón","lagarto","lágrima","laguna","laico","lamer","lámina","lámpara","lana","lancha","langosta","lanza","lápiz","largo","larva","lástima","lata","látex","latir","laurel","lavar","lazo","leal","lección","leche","lector","leer","legión","legumbre","lejano","lengua","lento","leña","león","leopardo","lesión","letal","letra","leve","leyenda","libertad","libro","licor","líder","lidiar","lienzo","liga","ligero","lima","límite","limón","limpio","lince","lindo","línea","lingote","lino","linterna","líquido","liso","lista","litera","litio","litro","llaga","llama","llanto","llave","llegar","llenar","llevar","llorar","llover","lluvia","lobo","loción","loco","locura","lógica","logro","lombriz","lomo","lonja","lote","lucha","lucir","lugar","lujo","luna","lunes","lupa","lustro","luto","luz","maceta","macho","madera","madre","maduro","maestro","mafia","magia","mago","maíz","maldad","maleta","malla","malo","mamá","mambo","mamut","manco","mando","manejar","manga","maniquí","manjar","mano","manso","manta","mañana","mapa","máquina","mar","marco","marea","marfil","margen","marido","mármol","marrón","martes","marzo","masa","máscara","masivo","matar","materia","matiz","matriz","máximo","mayor","mazorca","mecha","medalla","medio","médula","mejilla","mejor","melena","melón","memoria","menor","mensaje","mente","menú","mercado","merengue","mérito","mes","mesón","meta","meter","método","metro","mezcla","miedo","miel","miembro","miga","mil","milagro","militar","millón","mimo","mina","minero","mínimo","minuto","miope","mirar","misa","miseria","misil","mismo","mitad","mito","mochila","moción","moda","modelo","moho","mojar","molde","moler","molino","momento","momia","monarca","moneda","monja","monto","moño","morada","morder","moreno","morir","morro","morsa","mortal","mosca","mostrar","motivo","mover","móvil","mozo","mucho","mudar","mueble","muela","muerte","muestra","mugre","mujer","mula","muleta","multa","mundo","muñeca","mural","muro","músculo","museo","musgo","música","muslo","nácar","nación","nadar","naipe","naranja","nariz","narrar","nasal","natal","nativo","natural","náusea","naval","nave","navidad","necio","néctar","negar","negocio","negro","neón","nervio","neto","neutro","nevar","nevera","nicho","nido","niebla","nieto","niñez","niño","nítido","nivel","nobleza","noche","nómina","noria","norma","norte","nota","noticia","novato","novela","novio","nube","nuca","núcleo","nudillo","nudo","nuera","nueve","nuez","nulo","número","nutria","oasis","obeso","obispo","objeto","obra","obrero","observar","obtener","obvio","oca","ocaso","océano","ochenta","ocho","ocio","ocre","octavo","octubre","oculto","ocupar","ocurrir","odiar","odio","odisea","oeste","ofensa","oferta","oficio","ofrecer","ogro","oído","oír","ojo","ola","oleada","olfato","olivo","olla","olmo","olor","olvido","ombligo","onda","onza","opaco","opción","ópera","opinar","oponer","optar","óptica","opuesto","oración","orador","oral","órbita","orca","orden","oreja","órgano","orgía","orgullo","oriente","origen","orilla","oro","orquesta","oruga","osadía","oscuro","osezno","oso","ostra","otoño","otro","oveja","óvulo","óxido","oxígeno","oyente","ozono","pacto","padre","paella","página","pago","país","pájaro","palabra","palco","paleta","pálido","palma","paloma","palpar","pan","panal","pánico","pantera","pañuelo","papá","papel","papilla","paquete","parar","parcela","pared","parir","paro","párpado","parque","párrafo","parte","pasar","paseo","pasión","paso","pasta","pata","patio","patria","pausa","pauta","pavo","payaso","peatón","pecado","pecera","pecho","pedal","pedir","pegar","peine","pelar","peldaño","pelea","peligro","pellejo","pelo","peluca","pena","pensar","peñón","peón","peor","pepino","pequeño","pera","percha","perder","pereza","perfil","perico","perla","permiso","perro","persona","pesa","pesca","pésimo","pestaña","pétalo","petróleo","pez","pezuña","picar","pichón","pie","piedra","pierna","pieza","pijama","pilar","piloto","pimienta","pino","pintor","pinza","piña","piojo","pipa","pirata","pisar","piscina","piso","pista","pitón","pizca","placa","plan","plata","playa","plaza","pleito","pleno","plomo","pluma","plural","pobre","poco","poder","podio","poema","poesía","poeta","polen","policía","pollo","polvo","pomada","pomelo","pomo","pompa","poner","porción","portal","posada","poseer","posible","poste","potencia","potro","pozo","prado","precoz","pregunta","premio","prensa","preso","previo","primo","príncipe","prisión","privar","proa","probar","proceso","producto","proeza","profesor","programa","prole","promesa","pronto","propio","próximo","prueba","público","puchero","pudor","pueblo","puerta","puesto","pulga","pulir","pulmón","pulpo","pulso","puma","punto","puñal","puño","pupa","pupila","puré","quedar","queja","quemar","querer","queso","quieto","química","quince","quitar","rábano","rabia","rabo","ración","radical","raíz","rama","rampa","rancho","rango","rapaz","rápido","rapto","rasgo","raspa","rato","rayo","raza","razón","reacción","realidad","rebaño","rebote","recaer","receta","rechazo","recoger","recreo","recto","recurso","red","redondo","reducir","reflejo","reforma","refrán","refugio","regalo","regir","regla","regreso","rehén","reino","reír","reja","relato","relevo","relieve","relleno","reloj","remar","remedio","remo","rencor","rendir","renta","reparto","repetir","reposo","reptil","res","rescate","resina","respeto","resto","resumen","retiro","retorno","retrato","reunir","revés","revista","rey","rezar","rico","riego","rienda","riesgo","rifa","rígido","rigor","rincón","riñón","río","riqueza","risa","ritmo","rito","rizo","roble","roce","rociar","rodar","rodeo","rodilla","roer","rojizo","rojo","romero","romper","ron","ronco","ronda","ropa","ropero","rosa","rosca","rostro","rotar","rubí","rubor","rudo","rueda","rugir","ruido","ruina","ruleta","rulo","rumbo","rumor","ruptura","ruta","rutina","sábado","saber","sabio","sable","sacar","sagaz","sagrado","sala","saldo","salero","salir","salmón","salón","salsa","salto","salud","salvar","samba","sanción","sandía","sanear","sangre","sanidad","sano","santo","sapo","saque","sardina","sartén","sastre","satán","sauna","saxofón","sección","seco","secreto","secta","sed","seguir","seis","sello","selva","semana","semilla","senda","sensor","señal","señor","separar","sepia","sequía","ser","serie","sermón","servir","sesenta","sesión","seta","setenta","severo","sexo","sexto","sidra","siesta","siete","siglo","signo","sílaba","silbar","silencio","silla","símbolo","simio","sirena","sistema","sitio","situar","sobre","socio","sodio","sol","solapa","soldado","soledad","sólido","soltar","solución","sombra","sondeo","sonido","sonoro","sonrisa","sopa","soplar","soporte","sordo","sorpresa","sorteo","sostén","sótano","suave","subir","suceso","sudor","suegra","suelo","sueño","suerte","sufrir","sujeto","sultán","sumar","superar","suplir","suponer","supremo","sur","surco","sureño","surgir","susto","sutil","tabaco","tabique","tabla","tabú","taco","tacto","tajo","talar","talco","talento","talla","talón","tamaño","tambor","tango","tanque","tapa","tapete","tapia","tapón","taquilla","tarde","tarea","tarifa","tarjeta","tarot","tarro","tarta","tatuaje","tauro","taza","tazón","teatro","techo","tecla","técnica","tejado","tejer","tejido","tela","teléfono","tema","temor","templo","tenaz","tender","tener","tenis","tenso","teoría","terapia","terco","término","ternura","terror","tesis","tesoro","testigo","tetera","texto","tez","tibio","tiburón","tiempo","tienda","tierra","tieso","tigre","tijera","tilde","timbre","tímido","timo","tinta","tío","típico","tipo","tira","tirón","titán","títere","título","tiza","toalla","tobillo","tocar","tocino","todo","toga","toldo","tomar","tono","tonto","topar","tope","toque","tórax","torero","tormenta","torneo","toro","torpedo","torre","torso","tortuga","tos","tosco","toser","tóxico","trabajo","tractor","traer","tráfico","trago","traje","tramo","trance","trato","trauma","trazar","trébol","tregua","treinta","tren","trepar","tres","tribu","trigo","tripa","triste","triunfo","trofeo","trompa","tronco","tropa","trote","trozo","truco","trueno","trufa","tubería","tubo","tuerto","tumba","tumor","túnel","túnica","turbina","turismo","turno","tutor","ubicar","úlcera","umbral","unidad","unir","universo","uno","untar","uña","urbano","urbe","urgente","urna","usar","usuario","útil","utopía","uva","vaca","vacío","vacuna","vagar","vago","vaina","vajilla","vale","válido","valle","valor","válvula","vampiro","vara","variar","varón","vaso","vecino","vector","vehículo","veinte","vejez","vela","velero","veloz","vena","vencer","venda","veneno","vengar","venir","venta","venus","ver","verano","verbo","verde","vereda","verja","verso","verter","vía","viaje","vibrar","vicio","víctima","vida","vídeo","vidrio","viejo","viernes","vigor","vil","villa","vinagre","vino","viñedo","violín","viral","virgo","virtud","visor","víspera","vista","vitamina","viudo","vivaz","vivero","vivir","vivo","volcán","volumen","volver","voraz","votar","voto","voz","vuelo","vulgar","yacer","yate","yegua","yema","yerno","yeso","yodo","yoga","yogur","zafiro","zanja","zapato","zarza","zona","zorro","zumo","zurdo"]},{}],40:[function(e,r,t){var a=e('safe-buffer').Buffer,o=e('stream').Transform,n=e('string_decoder').StringDecoder,i=e('inherits');function l(e){o.call(this);this.hashMode=typeof e==='string';this.hashMode?(this[e]=this._finalOrDigest):(this.final=this._finalOrDigest);this._final&&(this.__final=this._final,this._final=null);this._decoder=null;this._encoding=null}i(l,o);l.prototype.update=function(e,r,t){typeof e==='string'&&(e=a.from(e,r));var o=this._update(e);if(this.hashMode)return this;t&&(o=this._toString(o,t));return o};l.prototype.setAutoPadding=function(){};l.prototype.getAuthTag=function(){throw new Error('trying to get auth tag in unsupported state')};l.prototype.setAuthTag=function(){throw new Error('trying to set auth tag in unsupported state')};l.prototype.setAAD=function(){throw new Error('trying to set aad in unsupported state')};l.prototype._transform=function(e,r,t){var a;try{this.hashMode?this._update(e):this.push(this._update(e))}catch(e){a=e}finally{t(a)}};l.prototype._flush=function(e){var r;try{this.push(this.__final())}catch(e){r=e};e(r)};l.prototype._finalOrDigest=function(e){var r=this.__final()||a.alloc(0);e&&(r=this._toString(r,e,!0));return r};l.prototype._toString=function(e,r,t){this._decoder||(this._decoder=new n(r),this._encoding=r);if(this._encoding!==r)throw new Error('can\'t switch encodings');var a=this._decoder.write(e);t&&(a+=this._decoder.end());return a};r.exports=l},{"inherits":44,"safe-buffer":53,"stream":27,"string_decoder":28}],41:[function(e,r,t){"use strict";var a=e('inherits'),o=e('md5.js'),n=e('ripemd160'),i=e('sha.js'),l=e('cipher-base');function s(e){l.call(this,'digest');this._hash=e}a(s,l);s.prototype._update=function(e){this._hash.update(e)};s.prototype._final=function(){return this._hash.digest()};r.exports=function(e){e=e.toLowerCase();if(e==='md5')return new o;if(e==='rmd160'||e==='ripemd160')return new n;return new s(i(e))}},{"cipher-base":40,"inherits":44,"md5.js":45,"ripemd160":52,"sha.js":55}],42:[function(e,r,t){var a=e('md5.js');r.exports=function(e){return new a.update(e).digest()}},{"md5.js":45}],43:[function(e,r,t){"use strict";var a=e('safe-buffer').Buffer,o=e('stream').Transform,n=e('inherits');function i(e,r){if(!a.isBuffer(e)&&typeof e!=='string'){throw new TypeError(r+' must be a string or a buffer')}}function l(e){o.call(this);this._block=a.allocUnsafe(e);this._blockSize=e;this._blockOffset=0;this._length=[0,0,0,0];this._finalized=!1}n(l,o);l.prototype._transform=function(e,r,t){var a=null;try{this.update(e,r)}catch(e){a=e};t(a)};l.prototype._flush=function(e){var r=null;try{this.push(this.digest())}catch(e){r=e};e(r)};l.prototype.update=function(e,r){i(e,'Data');if(this._finalized)throw new Error('Digest already called');a.isBuffer(e)||(e=a.from(e,r));var t=this._block,o=0;while(this._blockOffset+e.length-o>=this._blockSize){for(var n=this._blockOffset;n<this._blockSize;)t[n++]=e[o++];this._update();this._blockOffset=0}while(o<e.length)t[this._blockOffset++]=e[o++];for(var l=0,s=e.length*8;s>0;++l)this._length[l]+=s,s=this._length[l]/4294967296|0,s>0&&(this._length[l]-=4294967296*s);return this};l.prototype._update=function(){throw new Error('_update is not implemented')};l.prototype.digest=function(e){if(this._finalized)throw new Error('Digest already called');this._finalized=!0;var r=this._digest();e!==void 0&&(r=r.toString(e));this._block.fill(0);this._blockOffset=0;for(var t=0;t<4;++t)this._length[t]=0;return r};l.prototype._digest=function(){throw new Error('_digest is not implemented')};r.exports=l},{"inherits":44,"safe-buffer":53,"stream":27}],44:[function(e,r,t){arguments[4][7][0].apply(t,arguments)},{"dup":7}],45:[function(e,r,t){"use strict";var a=e('inherits'),o=e('hash-base'),n=e('safe-buffer').Buffer,i=new Array(16);function l(){o.call(this,64);this._a=1732584193;this._b=4023233417;this._c=2562383102;this._d=271733878}a(l,o);l.prototype._update=function(){var e=i;for(var r=0;r<16;++r)e[r]=this._block.readInt32LE(r*4);var t=this._a,a=this._b,o=this._c,n=this._d;t=u(t,a,o,n,e[0],3614090360,7);n=u(n,t,a,o,e[1],3905402710,12);o=u(o,n,t,a,e[2],606105819,17);a=u(a,o,n,t,e[3],3250441966,22);t=u(t,a,o,n,e[4],4118548399,7);n=u(n,t,a,o,e[5],1200080426,12);o=u(o,n,t,a,e[6],2821735955,17);a=u(a,o,n,t,e[7],4249261313,22);t=u(t,a,o,n,e[8],1770035416,7);n=u(n,t,a,o,e[9],2336552879,12);o=u(o,n,t,a,e[10],4294925233,17);a=u(a,o,n,t,e[11],2304563134,22);t=u(t,a,o,n,e[12],1804603682,7);n=u(n,t,a,o,e[13],4254626195,12);o=u(o,n,t,a,e[14],2792965006,17);a=u(a,o,n,t,e[15],1236535329,22);t=c(t,a,o,n,e[1],4129170786,5);n=c(n,t,a,o,e[6],3225465664,9);o=c(o,n,t,a,e[11],643717713,14);a=c(a,o,n,t,e[0],3921069994,20);t=c(t,a,o,n,e[5],3593408605,5);n=c(n,t,a,o,e[10],38016083,9);o=c(o,n,t,a,e[15],3634488961,14);a=c(a,o,n,t,e[4],3889429448,20);t=c(t,a,o,n,e[9],568446438,5);n=c(n,t,a,o,e[14],3275163606,9);o=c(o,n,t,a,e[3],4107603335,14);a=c(a,o,n,t,e[8],1163531501,20);t=c(t,a,o,n,e[13],2850285829,5);n=c(n,t,a,o,e[2],4243563512,9);o=c(o,n,t,a,e[7],1735328473,14);a=c(a,o,n,t,e[12],2368359562,20);t=d(t,a,o,n,e[5],4294588738,4);n=d(n,t,a,o,e[8],2272392833,11);o=d(o,n,t,a,e[11],1839030562,16);a=d(a,o,n,t,e[14],4259657740,23);t=d(t,a,o,n,e[1],2763975236,4);n=d(n,t,a,o,e[4],1272893353,11);o=d(o,n,t,a,e[7],4139469664,16);a=d(a,o,n,t,e[10],3200236656,23);t=d(t,a,o,n,e[13],681279174,4);n=d(n,t,a,o,e[0],3936430074,11);o=d(o,n,t,a,e[3],3572445317,16);a=d(a,o,n,t,e[6],76029189,23);t=d(t,a,o,n,e[9],3654602809,4);n=d(n,t,a,o,e[12],3873151461,11);o=d(o,n,t,a,e[15],530742520,16);a=d(a,o,n,t,e[2],3299628645,23);t=f(t,a,o,n,e[0],4096336452,6);n=f(n,t,a,o,e[7],1126891415,10);o=f(o,n,t,a,e[14],2878612391,15);a=f(a,o,n,t,e[5],4237533241,21);t=f(t,a,o,n,e[12],1700485571,6);n=f(n,t,a,o,e[3],2399980690,10);o=f(o,n,t,a,e[10],4293915773,15);a=f(a,o,n,t,e[1],2240044497,21);t=f(t,a,o,n,e[8],1873313359,6);n=f(n,t,a,o,e[15],4264355552,10);o=f(o,n,t,a,e[6],2734768916,15);a=f(a,o,n,t,e[13],1309151649,21);t=f(t,a,o,n,e[4],4149444226,6);n=f(n,t,a,o,e[11],3174756917,10);o=f(o,n,t,a,e[2],718787259,15);a=f(a,o,n,t,e[9],3951481745,21);this._a=this._a+t|0;this._b=this._b+a|0;this._c=this._c+o|0;this._d=this._d+n|0};l.prototype._digest=function(){this._block[this._blockOffset++]=128;this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0);this._block.fill(0,this._blockOffset,56);this._block.writeUInt32LE(this._length[0],56);this._block.writeUInt32LE(this._length[1],60);this._update();var e=n.allocUnsafe(16);e.writeInt32LE(this._a,0);e.writeInt32LE(this._b,4);e.writeInt32LE(this._c,8);e.writeInt32LE(this._d,12);return e};function s(e,r){return e<<r|e>>>32-r}function u(e,r,t,a,o,n,i){return s(e+(r&t|~r&a)+o+n|0,i)+r|0}function c(e,r,t,a,o,n,i){return s(e+(r&a|t&~a)+o+n|0,i)+r|0}function d(e,r,t,a,o,n,i){return s(e+(r^t^a)+o+n|0,i)+r|0}function f(e,r,t,a,o,n,i){return s(e+(t^(r|~a))+o+n|0,i)+r|0}r.exports=l},{"hash-base":43,"inherits":44,"safe-buffer":53}],46:[function(e,r,t){t.pbkdf2=e('./lib/async');t.pbkdf2Sync=e('./lib/sync')},{"./lib/async":47,"./lib/sync":50}],47:[function(e,r,t){(function(t,a){var o=e('./precondition'),n=e('./default-encoding'),i=e('./sync'),l=e('safe-buffer').Buffer,s,u=a.crypto&&a.crypto.subtle,c={'sha':'SHA-1','sha-1':'SHA-1','sha1':'SHA-1','sha256':'SHA-256','sha-256':'SHA-256','sha384':'SHA-384','sha-384':'SHA-384','sha-512':'SHA-512','sha512':'SHA-512'},d=[];function f(e){if(a.process&&!a.process.browser){return Promise.resolve(!1)}if(!u||!u.importKey||!u.deriveBits){return Promise.resolve(!1)}if(d[e]!==void 0){return d[e]}s=s||l.alloc(8);var r=p(s,s,10,128,e).then(function(){return!0}).catch(function(){return!1});d[e]=r;return r}function p(e,r,t,a,o){return u.importKey('raw',e,{name:'PBKDF2'},!1,['deriveBits']).then(function(e){return u.deriveBits({name:'PBKDF2',salt:r,iterations:t,hash:{name:o}},e,a<<3)}).then(function(e){return l.from(e)})}function m(e,r){e.then(function(e){t.nextTick(function(){r(null,e)})},function(e){t.nextTick(function(){r(e)})})}r.exports=function(e,r,s,u,d,g){typeof d==='function'&&(g=d,d=void 0);d=d||'sha1';var b=c[d.toLowerCase()];if(!b||typeof a.Promise!=='function'){return t.nextTick(function(){var t;try{t=i(e,r,s,u,d)}catch(e){return g(e)};g(null,t)})}o(e,r,s,u);if(typeof g!=='function')throw new Error('No callback provided to pbkdf2');l.isBuffer(e)||(e=l.from(e,n));l.isBuffer(r)||(r=l.from(r,n));m(f(b).then(function(t){if(t)return p(e,r,s,u,b);return i(e,r,s,u,d)}),g)}}).call(this,e('_process'),typeof global!=="undefined"?global:typeof self!=="undefined"?self:typeof window!=="undefined"?window:{})},{"./default-encoding":48,"./precondition":49,"./sync":50,"_process":11,"safe-buffer":53}],48:[function(e,r,t){(function(e){var t;if(e.browser)t='utf-8';else{var a=parseInt(e.version.split('.')[0].slice(1),10);t=a>=6?'utf-8':'binary'}r.exports=t}).call(this,e('_process'))},{"_process":11}],49:[function(e,r,t){(function(e){var t=Math.pow(2,30)-1;function a(r,t){if(typeof r!=='string'&&!e.isBuffer(r)){throw new TypeError(t+' must be a buffer or string')}}r.exports=function(e,r,o,n){a(e,'Password');a(r,'Salt');if(typeof o!=='number'){throw new TypeError('Iterations not a number')}if(o<0){throw new TypeError('Bad iterations')}if(typeof n!=='number'){throw new TypeError('Key length not a number')}if(n<0||n>t||n!==n){throw new TypeError('Bad key length')}}}).call(this,{"isBuffer":e("../../../../../../../.nmv/versions/node/v8.15.1/lib/node_modules/browserify/node_modules/is-buffer/index.js")})},{"../../../../../../../.nmv/versions/node/v8.15.1/lib/node_modules/browserify/node_modules/is-buffer/index.js":8}],50:[function(e,r,t){var a=e('create-hash/md5'),o=e('ripemd160'),n=e('sha.js'),i=e('./precondition'),l=e('./default-encoding'),s=e('safe-buffer').Buffer,u=s.alloc(128),c={md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,rmd160:20,ripemd160:20};function d(e,r,t){var a=f(e),o=e==='sha512'||e==='sha384'?128:64;r.length>o?(r=a(r)):r.length<o&&(r=s.concat([r,u],o));var n=s.allocUnsafe(o+c[e]),i=s.allocUnsafe(o+c[e]);for(var l=0;l<o;l++)n[l]=r[l]^54,i[l]=r[l]^92;var d=s.allocUnsafe(o+t+4);n.copy(d,0,0,o);this.ipad1=d;this.ipad2=n;this.opad=i;this.alg=e;this.blocksize=o;this.hash=a;this.size=c[e]}d.prototype.run=function(e,r){e.copy(r,this.blocksize);var t=this.hash(r);t.copy(this.opad,this.blocksize);return this.hash(this.opad)};function f(e){function r(r){return n(e).update(r).digest()}function t(e){return new o.update(e).digest()}if(e==='rmd160'||e==='ripemd160')return t;if(e==='md5')return a;return r}function p(e,r,t,a,o){i(e,r,t,a);s.isBuffer(e)||(e=s.from(e,l));s.isBuffer(r)||(r=s.from(r,l));o=o||'sha1';var n=new d(o,e,r.length),u=s.allocUnsafe(a),f=s.allocUnsafe(r.length+4);r.copy(f,0,0,r.length);var p=0,m=c[o],g=Math.ceil(a/m);for(var b=1;b<=g;b++){f.writeUInt32BE(b,r.length);var h=n.run(f,n.ipad1),v=h;for(var _=1;_<t;_++){v=n.run(v,n.ipad2);for(var y=0;y<m;y++)h[y]^=v[y]}h.copy(u,p);p+=m}return u}r.exports=p},{"./default-encoding":48,"./precondition":49,"create-hash/md5":42,"ripemd160":52,"safe-buffer":53,"sha.js":55}],51:[function(e,r,t){(function(t,a){"use strict";var o=65536,n=4294967295;function i(){throw new Error('Secure random number generation is not supported by this browser.\nUse Chrome, Firefox or Internet Explorer 11')}var l=e('safe-buffer').Buffer,s=a.crypto||a.msCrypto;s&&s.getRandomValues?(r.exports=u):(r.exports=i);function u(e,r){if(e>n)throw new RangeError('requested too many random bytes');var a=l.allocUnsafe(e);if(e>0){if(e>o){for(var i=0;i<e;i+=o)s.getRandomValues(a.slice(i,i+o))}else s.getRandomValues(a)}if(typeof r==='function'){return t.nextTick(function(){r(null,a)})}return a}}).call(this,e('_process'),typeof global!=="undefined"?global:typeof self!=="undefined"?self:typeof window!=="undefined"?window:{})},{"_process":11,"safe-buffer":53}],52:[function(e,r,t){"use strict";var a=e('buffer').Buffer,o=e('inherits'),n=e('hash-base'),i=new Array(16),l=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13],s=[5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11],u=[11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6],c=[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],d=[0,1518500249,1859775393,2400959708,2840853838],f=[1352829926,1548603684,1836072691,2053994217,0];function p(){n.call(this,64);this._a=1732584193;this._b=4023233417;this._c=2562383102;this._d=271733878;this._e=3285377520}o(p,n);p.prototype._update=function(){var e=i;for(var r=0;r<16;++r)e[r]=this._block.readInt32LE(r*4);var t=this._a|0,a=this._b|0,o=this._c|0,n=this._d|0,p=this._e|0,y=this._a|0,w=this._b|0,x=this._c|0,z=this._d|0,k=this._e|0;for(var j=0;j<80;j+=1){var S,B;j<16?(S=g(t,a,o,n,p,e[l[j]],d[0],u[j]),B=_(y,w,x,z,k,e[s[j]],f[0],c[j])):j<32?(S=b(t,a,o,n,p,e[l[j]],d[1],u[j]),B=v(y,w,x,z,k,e[s[j]],f[1],c[j])):j<48?(S=h(t,a,o,n,p,e[l[j]],d[2],u[j]),B=h(y,w,x,z,k,e[s[j]],f[2],c[j])):j<64?(S=v(t,a,o,n,p,e[l[j]],d[3],u[j]),B=b(y,w,x,z,k,e[s[j]],f[3],c[j])):(S=_(t,a,o,n,p,e[l[j]],d[4],u[j]),B=g(y,w,x,z,k,e[s[j]],f[4],c[j]));t=p;p=n;n=m(o,10);o=a;a=S;y=k;k=z;z=m(x,10);x=w;w=B}var q=this._b+o+z|0;this._b=this._c+n+k|0;this._c=this._d+p+y|0;this._d=this._e+t+w|0;this._e=this._a+a+x|0;this._a=q};p.prototype._digest=function(){this._block[this._blockOffset++]=128;this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0);this._block.fill(0,this._blockOffset,56);this._block.writeUInt32LE(this._length[0],56);this._block.writeUInt32LE(this._length[1],60);this._update();var e=a.alloc?a.alloc(20):new a(20);e.writeInt32LE(this._a,0);e.writeInt32LE(this._b,4);e.writeInt32LE(this._c,8);e.writeInt32LE(this._d,12);e.writeInt32LE(this._e,16);return e};function m(e,r){return e<<r|e>>>32-r}function g(e,r,t,a,o,n,i,l){return m(e+(r^t^a)+n+i|0,l)+o|0}function b(e,r,t,a,o,n,i,l){return m(e+(r&t|~r&a)+n+i|0,l)+o|0}function h(e,r,t,a,o,n,i,l){return m(e+((r|~t)^a)+n+i|0,l)+o|0}function v(e,r,t,a,o,n,i,l){return m(e+(r&a|t&~a)+n+i|0,l)+o|0}function _(e,r,t,a,o,n,i,l){return m(e+(r^(t|~a))+n+i|0,l)+o|0}r.exports=p},{"buffer":3,"hash-base":43,"inherits":44}],53:[function(e,r,t){arguments[4][26][0].apply(t,arguments)},{"buffer":3,"dup":26}],54:[function(e,r,t){var a=e('safe-buffer').Buffer;function o(e,r){this._block=a.alloc(e);this._finalSize=r;this._blockSize=e;this._len=0}o.prototype.update=function(e,r){typeof e==='string'&&(r=r||'utf8',e=a.from(e,r));var t=this._block,o=this._blockSize,n=e.length,i=this._len;for(var l=0;l<n;){var s=i%o,u=Math.min(n-l,o-s);for(var c=0;c<u;c++)t[s+c]=e[l+c];i+=u;l+=u;i%o===0&&this._update(t)}this._len+=n;return this};o.prototype.digest=function(e){var r=this._len%this._blockSize;this._block[r]=128;this._block.fill(0,r+1);r>=this._finalSize&&(this._update(this._block),this._block.fill(0));var t=this._len*8;if(t<=4294967295)this._block.writeUInt32BE(t,this._blockSize-4);else{var a=(t&4294967295)>>>0,o=(t-a)/4294967296;this._block.writeUInt32BE(o,this._blockSize-8);this._block.writeUInt32BE(a,this._blockSize-4)}this._update(this._block);var n=this._hash();return e?n.toString(e):n};o.prototype._update=function(){throw new Error('_update must be implemented by subclass')};r.exports=o},{"safe-buffer":53}],55:[function(e,r,t){t=r.exports=function(e){e=e.toLowerCase();var r=t[e];if(!r)throw new Error(e+' is not supported (we accept pull requests)');return new r};t.sha=e('./sha');t.sha1=e('./sha1');t.sha224=e('./sha224');t.sha256=e('./sha256');t.sha384=e('./sha384');t.sha512=e('./sha512')},{"./sha":56,"./sha1":57,"./sha224":58,"./sha256":59,"./sha384":60,"./sha512":61}],56:[function(e,r,t){var a=e('inherits'),o=e('./hash'),n=e('safe-buffer').Buffer,i=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function s(){this.init();this._w=l;o.call(this,64,56)}a(s,o);s.prototype.init=function(){this._a=1732584193;this._b=4023233417;this._c=2562383102;this._d=271733878;this._e=3285377520;return this};function u(e){return e<<5|e>>>27}function c(e){return e<<30|e>>>2}function d(e,r,t,a){if(e===0)return r&t|~r&a;if(e===2)return r&t|r&a|t&a;return r^t^a}s.prototype._update=function(e){var r=this._w,t=this._a|0,a=this._b|0,o=this._c|0,n=this._d|0,l=this._e|0;for(var s=0;s<16;++s)r[s]=e.readInt32BE(s*4);for(;s<80;++s)r[s]=r[s-3]^r[s-8]^r[s-14]^r[s-16];for(var f=0;f<80;++f){var p=~~(f/20),m=u(t)+d(p,a,o,n)+l+r[f]+i[p]|0;l=n;n=o;o=c(a);a=t;t=m}this._a=t+this._a|0;this._b=a+this._b|0;this._c=o+this._c|0;this._d=n+this._d|0;this._e=l+this._e|0};s.prototype._hash=function(){var e=n.allocUnsafe(20);e.writeInt32BE(this._a|0,0);e.writeInt32BE(this._b|0,4);e.writeInt32BE(this._c|0,8);e.writeInt32BE(this._d|0,12);e.writeInt32BE(this._e|0,16);return e};r.exports=s},{"./hash":54,"inherits":44,"safe-buffer":53}],57:[function(e,r,t){var a=e('inherits'),o=e('./hash'),n=e('safe-buffer').Buffer,i=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function s(){this.init();this._w=l;o.call(this,64,56)}a(s,o);s.prototype.init=function(){this._a=1732584193;this._b=4023233417;this._c=2562383102;this._d=271733878;this._e=3285377520;return this};function u(e){return e<<1|e>>>31}function c(e){return e<<5|e>>>27}function d(e){return e<<30|e>>>2}function f(e,r,t,a){if(e===0)return r&t|~r&a;if(e===2)return r&t|r&a|t&a;return r^t^a}s.prototype._update=function(e){var r=this._w,t=this._a|0,a=this._b|0,o=this._c|0,n=this._d|0,l=this._e|0;for(var s=0;s<16;++s)r[s]=e.readInt32BE(s*4);for(;s<80;++s)r[s]=u(r[s-3]^r[s-8]^r[s-14]^r[s-16]);for(var p=0;p<80;++p){var m=~~(p/20),g=c(t)+f(m,a,o,n)+l+r[p]+i[m]|0;l=n;n=o;o=d(a);a=t;t=g}this._a=t+this._a|0;this._b=a+this._b|0;this._c=o+this._c|0;this._d=n+this._d|0;this._e=l+this._e|0};s.prototype._hash=function(){var e=n.allocUnsafe(20);e.writeInt32BE(this._a|0,0);e.writeInt32BE(this._b|0,4);e.writeInt32BE(this._c|0,8);e.writeInt32BE(this._d|0,12);e.writeInt32BE(this._e|0,16);return e};r.exports=s},{"./hash":54,"inherits":44,"safe-buffer":53}],58:[function(e,r,t){var a=e('inherits'),o=e('./sha256'),n=e('./hash'),i=e('safe-buffer').Buffer,l=new Array(64);function s(){this.init();this._w=l;n.call(this,64,56)}a(s,o);s.prototype.init=function(){this._a=3238371032;this._b=914150663;this._c=812702999;this._d=4144912697;this._e=4290775857;this._f=1750603025;this._g=1694076839;this._h=3204075428;return this};s.prototype._hash=function(){var e=i.allocUnsafe(28);e.writeInt32BE(this._a,0);e.writeInt32BE(this._b,4);e.writeInt32BE(this._c,8);e.writeInt32BE(this._d,12);e.writeInt32BE(this._e,16);e.writeInt32BE(this._f,20);e.writeInt32BE(this._g,24);return e};r.exports=s},{"./hash":54,"./sha256":59,"inherits":44,"safe-buffer":53}],59:[function(e,r,t){var a=e('inherits'),o=e('./hash'),n=e('safe-buffer').Buffer,i=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],l=new Array(64);function s(){this.init();this._w=l;o.call(this,64,56)}a(s,o);s.prototype.init=function(){this._a=1779033703;this._b=3144134277;this._c=1013904242;this._d=2773480762;this._e=1359893119;this._f=2600822924;this._g=528734635;this._h=1541459225;return this};function u(e,r,t){return t^e&(r^t)}function c(e,r,t){return e&r|t&(e|r)}function d(e){return(e>>>2|e<<30)^(e>>>13|e<<19)^(e>>>22|e<<10)}function f(e){return(e>>>6|e<<26)^(e>>>11|e<<21)^(e>>>25|e<<7)}function p(e){return(e>>>7|e<<25)^(e>>>18|e<<14)^e>>>3}function m(e){return(e>>>17|e<<15)^(e>>>19|e<<13)^e>>>10}s.prototype._update=function(e){var r=this._w,t=this._a|0,a=this._b|0,o=this._c|0,n=this._d|0,l=this._e|0,s=this._f|0,g=this._g|0,b=this._h|0;for(var h=0;h<16;++h)r[h]=e.readInt32BE(h*4);for(;h<64;++h)r[h]=m(r[h-2])+r[h-7]+p(r[h-15])+r[h-16]|0;for(var v=0;v<64;++v){var _=b+f(l)+u(l,s,g)+i[v]+r[v]|0,y=d(t)+c(t,a,o)|0;b=g;g=s;s=l;l=n+_|0;n=o;o=a;a=t;t=_+y|0}this._a=t+this._a|0;this._b=a+this._b|0;this._c=o+this._c|0;this._d=n+this._d|0;this._e=l+this._e|0;this._f=s+this._f|0;this._g=g+this._g|0;this._h=b+this._h|0};s.prototype._hash=function(){var e=n.allocUnsafe(32);e.writeInt32BE(this._a,0);e.writeInt32BE(this._b,4);e.writeInt32BE(this._c,8);e.writeInt32BE(this._d,12);e.writeInt32BE(this._e,16);e.writeInt32BE(this._f,20);e.writeInt32BE(this._g,24);e.writeInt32BE(this._h,28);return e};r.exports=s},{"./hash":54,"inherits":44,"safe-buffer":53}],60:[function(e,r,t){var a=e('inherits'),o=e('./sha512'),n=e('./hash'),i=e('safe-buffer').Buffer,l=new Array(160);function s(){this.init();this._w=l;n.call(this,128,112)}a(s,o);s.prototype.init=function(){this._ah=3418070365;this._bh=1654270250;this._ch=2438529370;this._dh=355462360;this._eh=1731405415;this._fh=2394180231;this._gh=3675008525;this._hh=1203062813;this._al=3238371032;this._bl=914150663;this._cl=812702999;this._dl=4144912697;this._el=4290775857;this._fl=1750603025;this._gl=1694076839;this._hl=3204075428;return this};s.prototype._hash=function(){var e=i.allocUnsafe(48);function r(r,t,a){e.writeInt32BE(r,a);e.writeInt32BE(t,a+4)}r(this._ah,this._al,0);r(this._bh,this._bl,8);r(this._ch,this._cl,16);r(this._dh,this._dl,24);r(this._eh,this._el,32);r(this._fh,this._fl,40);return e};r.exports=s},{"./hash":54,"./sha512":61,"inherits":44,"safe-buffer":53}],61:[function(e,r,t){var a=e('inherits'),o=e('./hash'),n=e('safe-buffer').Buffer,i=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591],l=new Array(160);function s(){this.init();this._w=l;o.call(this,128,112)}a(s,o);s.prototype.init=function(){this._ah=1779033703;this._bh=3144134277;this._ch=1013904242;this._dh=2773480762;this._eh=1359893119;this._fh=2600822924;this._gh=528734635;this._hh=1541459225;this._al=4089235720;this._bl=2227873595;this._cl=4271175723;this._dl=1595750129;this._el=2917565137;this._fl=725511199;this._gl=4215389547;this._hl=327033209;return this};function u(e,r,t){return t^e&(r^t)}function c(e,r,t){return e&r|t&(e|r)}function d(e,r){return(e>>>28|r<<4)^(r>>>2|e<<30)^(r>>>7|e<<25)}function f(e,r){return(e>>>14|r<<18)^(e>>>18|r<<14)^(r>>>9|e<<23)}function p(e,r){return(e>>>1|r<<31)^(e>>>8|r<<24)^e>>>7}function m(e,r){return(e>>>1|r<<31)^(e>>>8|r<<24)^(e>>>7|r<<25)}function g(e,r){return(e>>>19|r<<13)^(r>>>29|e<<3)^e>>>6}function b(e,r){return(e>>>19|r<<13)^(r>>>29|e<<3)^(e>>>6|r<<26)}function h(e,r){return e>>>0<r>>>0?1:0}s.prototype._update=function(e){var r=this._w,t=this._ah|0,a=this._bh|0,o=this._ch|0,n=this._dh|0,l=this._eh|0,s=this._fh|0,v=this._gh|0,_=this._hh|0,y=this._al|0,w=this._bl|0,x=this._cl|0,z=this._dl|0,k=this._el|0,j=this._fl|0,S=this._gl|0,B=this._hl|0;for(var q=0;q<32;q+=2)r[q]=e.readInt32BE(q*4),r[q+1]=e.readInt32BE(q*4+4);for(;q<160;q+=2){var E=r[q-30],L=r[q-30+1],I=p(E,L),C=m(L,E);E=r[q-4];L=r[q-4+1];var T=g(E,L),M=b(L,E),A=r[q-14],U=r[q-14+1],R=r[q-32],O=r[q-32+1],D=C+U|0,N=I+A+h(D,C)|0;D=D+M|0;N=N+T+h(D,M)|0;D=D+O|0;N=N+R+h(D,O)|0;r[q]=N;r[q+1]=D}for(var P=0;P<160;P+=2){N=r[P];D=r[P+1];var W=c(t,a,o),F=c(y,w,x),H=d(t,y),K=d(y,t),Y=f(l,k),V=f(k,l),J=i[P],X=i[P+1],G=u(l,s,v),Q=u(k,j,S),Z=B+V|0,$=_+Y+h(Z,B)|0;Z=Z+Q|0;$=$+G+h(Z,Q)|0;Z=Z+X|0;$=$+J+h(Z,X)|0;Z=Z+D|0;$=$+N+h(Z,D)|0;var ee=K+F|0,re=H+W+h(ee,K)|0;_=v;B=S;v=s;S=j;s=l;j=k;k=z+Z|0;l=n+$+h(k,z)|0;n=o;z=x;o=a;x=w;a=t;w=y;y=Z+ee|0;t=$+re+h(y,Z)|0}this._al=this._al+y|0;this._bl=this._bl+w|0;this._cl=this._cl+x|0;this._dl=this._dl+z|0;this._el=this._el+k|0;this._fl=this._fl+j|0;this._gl=this._gl+S|0;this._hl=this._hl+B|0;this._ah=this._ah+t+h(this._al,y)|0;this._bh=this._bh+a+h(this._bl,w)|0;this._ch=this._ch+o+h(this._cl,x)|0;this._dh=this._dh+n+h(this._dl,z)|0;this._eh=this._eh+l+h(this._el,k)|0;this._fh=this._fh+s+h(this._fl,j)|0;this._gh=this._gh+v+h(this._gl,S)|0;this._hh=this._hh+_+h(this._hl,B)|0};s.prototype._hash=function(){var e=n.allocUnsafe(64);function r(r,t,a){e.writeInt32BE(r,a);e.writeInt32BE(t,a+4)}r(this._ah,this._al,0);r(this._bh,this._bl,8);r(this._ch,this._cl,16);r(this._dh,this._dl,24);r(this._eh,this._el,32);r(this._fh,this._fl,40);r(this._gh,this._gl,48);r(this._hh,this._hl,56);return e};r.exports=s},{"./hash":54,"inherits":44,"safe-buffer":53}],"bip39":[function(e,r,t){(function(r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});let a=e("create-hash"),o=e("pbkdf2"),n=e("randombytes"),i=e("./_wordlists"),l=i._default,s='Invalid mnemonic',u='Invalid entropy',c='Invalid mnemonic checksum',d="A wordlist is required but a default could not be found.\nPlease explicitly pass a 2048 word array explicitly.";function f(e,r,t){while(e.length<t)e=r+e;return e}function p(e){return parseInt(e,2)}function m(e){return e.map(e=>f(e.toString(2),'0',8)).join('')}function g(e){let r=e.length*8,t=r/32,o=a('sha256').update(e).digest();return m([...o]).slice(0,t)}function b(e){return'mnemonic'+(e||'')}function h(e,t){let a=r.from((e||'').normalize('NFKD'),'utf8'),n=r.from(b((t||'').normalize('NFKD')),'utf8');return o.pbkdf2Sync(a,n,2048,64,'sha512')}t.mnemonicToSeedSync=h;function v(e,t){return new Promise((a,n)=>{try{let i=r.from((e||'').normalize('NFKD'),'utf8'),l=r.from(b((t||'').normalize('NFKD')),'utf8');o.pbkdf2(i,l,2048,64,'sha512',(e,r)=>{if(e)return n(e);else return a(r)})}catch(e){return n(e)}})}t.mnemonicToSeed=v;function _(e,t){t=t||l;if(!t){throw new Error(d)}let a=(e||'').normalize('NFKD').split(' ');if(a.length%3!==0)throw new Error(s);let o=a.map(e=>{let r=t.indexOf(e);if(r===-1)throw new Error(s);return f(r.toString(2),'0',11)}).join(''),n=Math.floor(o.length/33)*32,i=o.slice(0,n),m=o.slice(n),b=i.match(/(.{1,8})/g).map(p);if(b.length<16)throw new Error(u);if(b.length>32)throw new Error(u);if(b.length%4!==0)throw new Error(u);let h=r.from(b),v=g(h);if(v!==m)throw new Error(c);return h.toString('hex')}t.mnemonicToEntropy=_;function y(e,t){r.isBuffer(e)||(e=r.from(e,'hex'));t=t||l;if(!t){throw new Error(d)}if(e.length<16)throw new TypeError(u);if(e.length>32)throw new TypeError(u);if(e.length%4!==0)throw new TypeError(u);let a=m([...e]),o=g(e),n=a+o,i=n.match(/(.{1,11})/g),s=i.map(e=>{let r=p(e);return t[r]});return t[0]==='\u3042\u3044\u3053\u304f\u3057\u3093'?s.join('\u3000'):s.join(' ')}t.entropyToMnemonic=y;function w(e,r,t){e=e||128;if(e%32!==0)throw new TypeError(u);r=r||n;return y(r(e/8),t)}t.generateMnemonic=w;function x(e,r){try{_(e,r)}catch(e){return!1};return!0}t.validateMnemonic=x;function z(e){let r=i.wordlists[e];if(r)l=r;else throw new Error('Could not find wordlist for language "'+e+'"')}t.setDefaultWordlist=z;function k(){if(!l)throw new Error('No Default Wordlist set');return Object.keys(i.wordlists).filter(e=>{if(e==='JA'||e==='EN')return!1;return i.wordlists[e].every((e,r)=>e===l[r])})[0]}t.getDefaultWordlist=k;var j=e("./_wordlists");t.wordlists=j.wordlists}).call(this,e("buffer").Buffer)},{"./_wordlists":31,"buffer":3,"create-hash":41,"pbkdf2":46,"randombytes":51}]},{},[])("bip39")})